:root {
  --bg: #07120f;
  --bg-soft: #0d1d18;
  --surface: #10251f;
  --surface-2: #16332b;
  --text: #f5fbf7;
  --muted: #bad0c6;
  --line: rgba(186, 208, 198, 0.18);
  --lime: #b8f043;
  --teal: #45d6b5;
  --gold: #f4c95d;
  --danger: #ffcf77;
  --shadow: 0 18px 55px rgba(0, 0, 0, 0.35);
  --radius: 8px;
  --max: 1180px;
}

*,
*::before,
*::after {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  background: var(--bg);
  color: var(--text);
  font-family: Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  font-size: 17px;
  line-height: 1.65;
  letter-spacing: 0;
}

body.admin-bar .site-header {
  top: 32px;
}

a {
  color: var(--teal);
  text-decoration-thickness: 1px;
  text-underline-offset: 0.18em;
}

a:hover {
  color: var(--lime);
}

img {
  display: block;
  max-width: 100%;
  height: auto;
}

.screen-reader-text {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  border: 0;
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 50;
  background: rgba(7, 18, 15, 0.92);
  border-bottom: 1px solid var(--line);
  backdrop-filter: blur(18px);
}

.site-header__inner {
  width: min(var(--max), calc(100% - 32px));
  min-height: 72px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: auto 1fr auto;
  align-items: center;
  gap: 22px;
}

.brand-link {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  min-width: 0;
  color: var(--text);
  text-decoration: none;
  font-weight: 900;
  text-transform: lowercase;
}

.brand-link__text {
  font-size: 1.12rem;
  white-space: nowrap;
}

.custom-logo,
.custom-logo-link img,
.site-branding img,
.brand-logo img,
.brand-logo__mark,
.site-footer .custom-logo,
.site-footer .custom-logo-link img {
  width: auto;
  height: auto;
  max-width: 150px;
  max-height: 56px;
  object-fit: contain;
}

.custom-logo-link {
  display: inline-flex;
  align-items: center;
  max-width: 150px;
}

.site-nav__list,
.footer-nav__list {
  list-style: none;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 18px;
  margin: 0;
  padding: 0;
}

.site-nav a,
.footer-nav a {
  color: var(--muted);
  text-decoration: none;
  font-weight: 750;
  font-size: 0.95rem;
}

.site-nav a:hover,
.footer-nav a:hover {
  color: var(--text);
}

.header-actions {
  display: flex;
  gap: 10px;
  align-items: center;
}

.btn,
.wp-block-button__link {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 46px;
  padding: 0.72rem 1.02rem;
  border-radius: var(--radius);
  border: 1px solid transparent;
  font-weight: 850;
  text-decoration: none;
  line-height: 1.1;
  white-space: normal;
  text-align: center;
}

.btn--primary,
.wp-block-button__link,
.is-style-fill .wp-block-button__link {
  background: var(--lime);
  color: #07120f;
  box-shadow: 0 14px 28px rgba(184, 240, 67, 0.22);
}

.btn--ghost,
.is-style-outline .wp-block-button__link {
  background: rgba(255, 255, 255, 0.04);
  color: var(--text);
  border-color: var(--line);
  box-shadow: none;
}

.nav-toggle {
  display: none;
  width: 44px;
  height: 44px;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: rgba(255, 255, 255, 0.05);
}

.nav-toggle__bar,
.nav-toggle__bar::before,
.nav-toggle__bar::after {
  display: block;
  width: 20px;
  height: 2px;
  margin: 0 auto;
  background: var(--text);
  content: "";
}

.nav-toggle__bar::before {
  transform: translateY(-7px);
}

.nav-toggle__bar::after {
  transform: translateY(5px);
}

.site-main {
  overflow: hidden;
}

.entry > .wp-block-group,
.page-shell > .wp-block-group,
.archive-shell {
  width: min(var(--max), calc(100% - 32px));
  margin-left: auto;
  margin-right: auto;
}

.wp-block-group {
  margin-top: 0;
  margin-bottom: 0;
}

.hero-band,
.section-band {
  padding: clamp(54px, 8vw, 94px) 0;
}

.hero-band {
  position: relative;
  min-height: 650px;
  display: grid;
  align-items: center;
}

.hero-band::before {
  position: absolute;
  inset: 0;
  z-index: -1;
  content: "";
  background:
    radial-gradient(circle at 16% 22%, rgba(69, 214, 181, 0.23), transparent 34%),
    radial-gradient(circle at 82% 18%, rgba(184, 240, 67, 0.18), transparent 28%),
    linear-gradient(135deg, #07120f 0%, #0d241e 56%, #081511 100%);
}

.hero-grid,
.two-col,
.three-col,
.quick-grid,
.status-grid {
  display: grid;
  gap: 22px;
}

.hero-grid {
  grid-template-columns: minmax(0, 1.05fr) minmax(320px, 0.95fr);
  align-items: center;
}

.two-col {
  grid-template-columns: repeat(2, minmax(0, 1fr));
}

.three-col,
.quick-grid,
.status-grid {
  grid-template-columns: repeat(3, minmax(0, 1fr));
}

.hero-copy h1,
.page-hero h1 {
  margin: 0 0 18px;
  font-size: clamp(2.4rem, 4.8vw, 4.85rem);
  line-height: 1;
  letter-spacing: 0;
}

.page-hero h1 {
  font-size: clamp(2.2rem, 4vw, 4.2rem);
}

.eyebrow {
  display: inline-flex;
  width: fit-content;
  margin-bottom: 14px;
  padding: 0.34rem 0.64rem;
  border: 1px solid rgba(184, 240, 67, 0.35);
  border-radius: 999px;
  color: var(--lime);
  background: rgba(184, 240, 67, 0.08);
  font-size: 0.84rem;
  font-weight: 850;
}

.lead,
.hero-copy p:first-of-type,
.page-hero p:first-of-type {
  color: var(--muted);
  font-size: clamp(1.05rem, 1.4vw, 1.22rem);
  max-width: 68ch;
}

.hero-actions,
.action-row {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-top: 24px;
}

.visual-frame,
.wp-block-image img {
  border-radius: var(--radius);
  box-shadow: var(--shadow);
}

.visual-frame {
  position: relative;
  overflow: hidden;
  border: 1px solid rgba(69, 214, 181, 0.25);
  background: var(--surface);
}

.visual-frame img {
  width: 100%;
  aspect-ratio: 4 / 3;
  object-fit: cover;
}

.snapshot,
.info-card,
.quick-card,
.check-card,
.faq-card,
.wp-block-columns.is-style-lotus-cards > .wp-block-column,
.wp-block-table table {
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: linear-gradient(180deg, rgba(255, 255, 255, 0.055), rgba(255, 255, 255, 0.025));
  box-shadow: 0 12px 34px rgba(0, 0, 0, 0.18);
}

.snapshot,
.info-card,
.quick-card,
.check-card,
.faq-card {
  padding: 20px;
}

.snapshot {
  display: grid;
  gap: 10px;
  margin-top: 24px;
}

.snapshot-row {
  display: grid;
  grid-template-columns: 150px 1fr;
  gap: 14px;
  align-items: start;
  padding: 10px 0;
  border-bottom: 1px solid var(--line);
}

.snapshot-row:last-child {
  border-bottom: 0;
}

.snapshot-row strong,
.quick-card strong,
.check-card strong {
  color: var(--text);
}

.snapshot-row span,
.quick-card p,
.check-card p,
.faq-card p {
  color: var(--muted);
}

.section-heading {
  max-width: 780px;
  margin-bottom: 30px;
}

.section-heading h2,
.entry h2 {
  margin: 0 0 12px;
  font-size: clamp(1.75rem, 3vw, 2.75rem);
  line-height: 1.1;
  letter-spacing: 0;
}

.entry h3 {
  font-size: clamp(1.24rem, 2vw, 1.55rem);
  line-height: 1.2;
  margin-top: 1.6rem;
}

.entry p,
.entry li {
  color: var(--muted);
}

.entry strong {
  color: var(--text);
}

.quick-card {
  min-height: 190px;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
}

.quick-card a {
  font-weight: 850;
}

.wp-block-table {
  overflow-x: auto;
}

.wp-block-table table {
  width: 100%;
  border-collapse: collapse;
  overflow: hidden;
}

.wp-block-table th,
.wp-block-table td {
  padding: 14px;
  border-bottom: 1px solid var(--line);
  color: var(--muted);
  text-align: left;
  vertical-align: top;
}

.wp-block-table th {
  color: var(--text);
  background: rgba(69, 214, 181, 0.08);
}

.wp-block-list {
  padding-left: 1.2rem;
}

.wp-block-separator {
  border: 0;
  border-top: 1px solid var(--line);
  margin: 34px 0;
}

.faq-list {
  display: grid;
  gap: 14px;
}

.faq-card h3 {
  margin-top: 0;
}

.page-shell {
  padding: clamp(44px, 7vw, 78px) 0;
}

.page-hero {
  padding: clamp(42px, 7vw, 80px) 0 30px;
}

.site-footer {
  border-top: 1px solid var(--line);
  background: #050d0b;
  padding: 42px 0 86px;
}

.site-footer__inner {
  width: min(var(--max), calc(100% - 32px));
  margin: 0 auto;
  display: grid;
  grid-template-columns: minmax(0, 1.2fr) minmax(0, 1fr);
  gap: 28px;
}

.site-footer__note {
  max-width: 720px;
  color: var(--muted);
  font-size: 0.94rem;
}

.footer-nav__list {
  flex-wrap: wrap;
  justify-content: flex-end;
}

.mobile-sticky {
  display: none;
}

.archive-shell {
  padding: 56px 0;
}

.post-card {
  padding: 18px 0;
  border-bottom: 1px solid var(--line);
}

.has-lotus-surface-background-color {
  background-color: var(--surface);
}

.is-style-lotus-cards {
  gap: 18px;
}

.is-style-lotus-cards > .wp-block-column {
  padding: 20px;
}

@media (max-width: 920px) {
  body.admin-bar .site-header {
    top: 46px;
  }

  .site-header__inner {
    grid-template-columns: auto auto;
    justify-content: space-between;
    min-height: 64px;
  }

  .nav-toggle {
    display: inline-flex;
    align-items: center;
    justify-content: center;
  }

  .site-nav {
    grid-column: 1 / -1;
    display: none;
    width: 100%;
    padding-bottom: 14px;
  }

  .site-nav.is-open {
    display: block;
  }

  .site-nav__list {
    flex-direction: column;
    align-items: stretch;
    gap: 0;
  }

  .site-nav a {
    display: block;
    padding: 12px 0;
    border-top: 1px solid var(--line);
  }

  .header-actions {
    display: none;
  }

  .hero-grid,
  .two-col,
  .three-col,
  .quick-grid,
  .status-grid,
  .site-footer__inner {
    grid-template-columns: 1fr;
  }

  .hero-band {
    min-height: auto;
  }

  .footer-nav__list {
    justify-content: flex-start;
  }

  .mobile-sticky {
    position: fixed;
    left: 10px;
    right: 10px;
    bottom: 10px;
    z-index: 60;
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 8px;
    padding: 8px;
    border: 1px solid rgba(184, 240, 67, 0.22);
    border-radius: var(--radius);
    background: rgba(7, 18, 15, 0.95);
    box-shadow: var(--shadow);
    backdrop-filter: blur(18px);
  }

  .mobile-sticky a {
    display: flex;
    align-items: center;
    justify-content: center;
    min-height: 42px;
    border-radius: 6px;
    background: var(--lime);
    color: #07120f;
    font-weight: 900;
    text-decoration: none;
    font-size: 0.9rem;
  }

  .custom-logo,
  .custom-logo-link img,
  .site-branding img,
  .brand-logo img,
  .brand-logo__mark,
  .site-footer .custom-logo,
  .site-footer .custom-logo-link img {
    max-width: 132px;
    max-height: 44px;
  }
}

@media (max-width: 560px) {
  body {
    font-size: 16px;
    padding-bottom: 76px;
  }

  .site-header__inner,
  .entry > .wp-block-group,
  .page-shell > .wp-block-group,
  .archive-shell,
  .site-footer__inner {
    width: min(100% - 22px, var(--max));
  }

  .hero-copy h1,
  .page-hero h1 {
    font-size: clamp(2.08rem, 13vw, 3rem);
  }

  .hero-actions,
  .action-row {
    flex-direction: column;
  }

  .btn,
  .wp-block-button,
  .wp-block-button__link {
    width: 100%;
  }

  .snapshot-row {
    grid-template-columns: 1fr;
    gap: 3px;
  }

  .wp-block-table th,
  .wp-block-table td {
    padding: 12px;
    font-size: 0.94rem;
  }
}

