:root {
  --bg-top: #fae5a8;
  --bg-mid: #f2edcf;
  --bg-bottom: #d4e8c4;
  --sky: rgba(133, 191, 237, 0.28);
  --sun: rgba(252, 219, 92, 0.45);
  --leaf: rgba(84, 158, 66, 0.14);
  --amber: rgba(232, 150, 56, 0.16);
  --mist: rgba(252, 242, 209, 0.42);
  --card: rgba(255, 250, 241, 0.82);
  --card-strong: rgba(255, 248, 232, 0.94);
  --line: rgba(90, 61, 31, 0.12);
  --line-strong: rgba(119, 78, 28, 0.22);
  --text: #342618;
  --muted: #6f5a42;
  --accent: #b26c2a;
  --accent-strong: #8d4f16;
  --accent-soft: #f0c986;
  --green: #417655;
  --green-soft: rgba(65, 118, 85, 0.14);
  --shadow: 0 28px 60px rgba(96, 61, 21, 0.12);
  --shadow-soft: 0 18px 36px rgba(96, 61, 21, 0.08);
  --radius-xl: 34px;
  --radius-lg: 24px;
  --radius-md: 18px;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  min-height: 100vh;
  font-family: "Manrope", "Avenir Next", "Segoe UI", sans-serif;
  color: var(--text);
  background:
    radial-gradient(circle at calc(50% + 180px) -24px, var(--sun), transparent 220px),
    radial-gradient(ellipse 360px 150px at calc(50% - 180px) calc(100% - 140px), var(--leaf), transparent 72%),
    radial-gradient(ellipse 280px 140px at calc(100% - 60px) 62%, var(--amber), transparent 72%),
    radial-gradient(ellipse 360px 180px at 58% 92%, var(--mist), transparent 72%),
    radial-gradient(ellipse 440px 240px at calc(50% - 60px) 22%, rgba(255, 255, 255, 0.18), transparent 70%),
    linear-gradient(135deg, var(--bg-top) 0%, var(--bg-mid) 48%, var(--bg-bottom) 100%);
  background-attachment: fixed;
}

a {
  color: inherit;
  text-decoration: none;
}

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

.page-shell {
  max-width: 1280px;
  margin: 0 auto;
  padding: 24px 18px 52px;
}

.topbar {
  position: sticky;
  top: 12px;
  z-index: 20;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 18px;
  padding: 16px 20px;
  border-radius: 999px;
  border: 1px solid var(--line);
  background: rgba(255, 252, 246, 0.8);
  box-shadow: var(--shadow-soft);
  backdrop-filter: blur(18px);
}

.topbar-left {
  display: flex;
  align-items: center;
  gap: 14px;
  min-width: 0;
}

.brand-lockup {
  display: inline-flex;
  align-items: center;
  gap: 14px;
  min-width: 0;
}

.menu-toggle {
  display: none;
  width: 54px;
  height: 54px;
  padding: 0;
  border: 1px solid rgba(90, 61, 31, 0.1);
  border-radius: 18px;
  background: linear-gradient(180deg, rgba(255, 255, 255, 0.82), rgba(255, 248, 237, 0.9));
  box-shadow: var(--shadow-soft);
  align-items: center;
  justify-content: center;
  gap: 5px;
  cursor: pointer;
  flex-direction: column;
  transition: transform 180ms ease, border-color 180ms ease, box-shadow 180ms ease;
}

.menu-toggle:hover {
  transform: translateY(-1px);
  border-color: rgba(141, 79, 22, 0.2);
}

.menu-toggle span {
  display: block;
  width: 20px;
  height: 2px;
  border-radius: 999px;
  background: var(--accent-strong);
}

.brand-badge {
  width: 62px;
  height: 62px;
  border-radius: 18px;
  object-fit: contain;
  filter: drop-shadow(0 18px 20px rgba(181, 112, 34, 0.18));
}

.brand-kicker {
  display: block;
  font-size: 0.74rem;
  font-weight: 800;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--accent-strong);
}

.brand-wordmark {
  display: block;
  font-family: "Cormorant Garamond", Georgia, serif;
  font-size: 2.2rem;
  font-weight: 700;
  letter-spacing: 0.02em;
  line-height: 0.92;
}

.main-nav {
  display: inline-flex;
  align-items: center;
  gap: 18px;
  color: var(--muted);
  font-size: 0.94rem;
}

.main-nav a,
.lang-pill,
.site-footer a {
  transition: color 180ms ease, background-color 180ms ease, border-color 180ms ease;
}

.main-nav a:hover,
.lang-pill:hover,
.site-footer a:hover {
  color: var(--accent-strong);
}

.topbar-right {
  display: flex;
  align-items: center;
  gap: 12px;
}

.lang-switcher {
  display: flex;
  flex-wrap: wrap;
  justify-content: flex-end;
  gap: 8px;
}

.lang-pill {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 40px;
  padding: 0 14px;
  border-radius: 999px;
  border: 1px solid rgba(90, 61, 31, 0.08);
  background: rgba(255, 255, 255, 0.5);
  color: var(--muted);
  font-size: 0.84rem;
  font-weight: 700;
}

.lang-pill.active {
  color: #fff;
  background: linear-gradient(135deg, var(--accent), var(--accent-strong));
  box-shadow: 0 16px 28px rgba(141, 79, 22, 0.22);
}

.mobile-nav-backdrop,
.mobile-nav-drawer {
  display: none;
}

.mobile-nav-drawer {
  position: fixed;
  top: 0;
  left: 0;
  z-index: 31;
  width: min(82vw, 360px);
  height: 100vh;
  padding: 18px 0 18px 14px;
  pointer-events: none;
}

.mobile-nav-card {
  height: 100%;
  display: grid;
  grid-template-rows: auto auto 1fr;
  gap: 18px;
  padding: 96px 22px 24px;
  border-radius: 0 var(--radius-xl) var(--radius-xl) 0;
  border: 1px solid var(--line);
  background: var(--card);
  box-shadow: var(--shadow);
  transform: translateX(-112%);
  transition: transform 240ms ease;
}

.mobile-nav-links {
  display: grid;
  gap: 10px;
}

.mobile-nav-links a {
  display: block;
  padding: 14px 16px;
  border-radius: 18px;
  color: var(--text);
  background: rgba(255, 255, 255, 0.48);
  border: 1px solid rgba(90, 61, 31, 0.06);
  font-weight: 700;
}

.mobile-nav-links a:hover {
  color: var(--accent-strong);
  border-color: rgba(141, 79, 22, 0.16);
}

.mobile-nav-divider {
  height: 1px;
  background: var(--line);
}

.mobile-nav-langs {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  align-content: start;
}

.drawer-open {
  overflow: hidden;
}

.drawer-open .mobile-nav-backdrop {
  display: block;
  position: fixed;
  inset: 0;
  z-index: 30;
  background: rgba(43, 29, 14, 0.22);
  backdrop-filter: blur(2px);
}

.drawer-open .mobile-nav-drawer {
  display: block;
  pointer-events: auto;
}

.drawer-open .mobile-nav-card {
  transform: translateX(0);
}

main {
  display: grid;
  gap: 26px;
  margin-top: 28px;
}

.hero-block,
.section-block,
.site-footer {
  border-radius: var(--radius-xl);
  border: 1px solid var(--line);
  background: var(--card);
  box-shadow: var(--shadow);
}

.hero-block {
  display: grid;
  grid-template-columns: minmax(0, 1.1fr) minmax(360px, 0.9fr);
  gap: 0;
  overflow: hidden;
}

.hero-block.solo {
  grid-template-columns: minmax(0, 1fr);
}

.hero-block.solo .hero-copy {
  max-width: 780px;
}

.hero-copy,
.hero-panel,
.section-block,
.site-footer {
  padding: 34px;
}

.hero-panel {
  position: relative;
  display: grid;
  gap: 20px;
  align-content: start;
  background:
    radial-gradient(circle at 100% 0%, rgba(255, 218, 144, 0.56), transparent 38%),
    radial-gradient(circle at 0% 100%, rgba(97, 163, 114, 0.12), transparent 36%),
    linear-gradient(160deg, rgba(255, 248, 235, 0.96), rgba(255, 244, 224, 0.88));
  border-left: 1px solid var(--line);
}

.hero-badge {
  width: min(100%, 240px);
  margin: 0 auto;
  filter: drop-shadow(0 24px 40px rgba(177, 111, 35, 0.18));
}

.eyebrow {
  display: inline-flex;
  padding: 9px 14px;
  border-radius: 999px;
  border: 1px solid rgba(178, 108, 42, 0.12);
  background: rgba(255, 255, 255, 0.72);
  color: var(--accent-strong);
  font-size: 0.78rem;
  font-weight: 800;
  letter-spacing: 0.16em;
  text-transform: uppercase;
}

h1,
h2,
h3,
.site-footer strong {
  margin: 0;
  font-family: "Cormorant Garamond", Georgia, serif;
}

h1 {
  margin-top: 18px;
  font-size: clamp(2.9rem, 5vw, 5.1rem);
  line-height: 0.92;
}

h2 {
  font-size: clamp(2rem, 3vw, 3rem);
  line-height: 0.98;
}

h3 {
  font-size: 1.7rem;
  line-height: 1;
}

.hero-body,
.section-heading p,
.feature-card p,
.text-card p,
.device-card p,
.faq-item p,
.site-footer p,
.legal-list li,
.price-footnote,
.fine-print {
  color: var(--muted);
  line-height: 1.72;
}

.hero-actions,
.legal-links {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
}

.cta-button,
.ghost-button,
button,
input {
  font: inherit;
}

.cta-button,
.ghost-button,
button[type="submit"] {
  border: 0;
  cursor: pointer;
  transition: transform 180ms ease, box-shadow 180ms ease, opacity 180ms ease;
}

.cta-button:hover,
.ghost-button:hover,
button[type="submit"]:hover {
  transform: translateY(-1px);
}

.cta-button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 54px;
  padding: 0 22px;
  border-radius: 18px;
  color: #fff;
  background: linear-gradient(135deg, var(--accent), var(--accent-strong));
  box-shadow: 0 18px 28px rgba(141, 79, 22, 0.22);
}

.ghost-button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 54px;
  padding: 0 22px;
  border-radius: 18px;
  border: 1px solid rgba(90, 61, 31, 0.12);
  background: rgba(255, 255, 255, 0.58);
  color: var(--text);
}

.panel-grid,
.feature-grid,
.pricing-grid,
.split-block,
.faq-list,
.status-grid,
.status-meta {
  display: grid;
  gap: 18px;
}

.panel-grid,
.feature-grid,
.pricing-grid {
  grid-template-columns: repeat(3, minmax(0, 1fr));
}

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

.section-heading {
  display: grid;
  gap: 8px;
  margin-bottom: 22px;
}

.stat-card,
.feature-card,
.text-card,
.device-card,
.pricing-card,
.faq-item,
.legal-card,
.status-item {
  border-radius: var(--radius-lg);
  border: 1px solid rgba(90, 61, 31, 0.08);
  background: var(--card-strong);
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.6);
}

.stat-card,
.feature-card,
.text-card,
.device-card,
.pricing-card {
  padding: 24px;
}

.stat-card strong {
  display: block;
  font-size: 1.56rem;
  line-height: 1;
}

.stat-card span {
  display: block;
  margin-top: 10px;
  color: var(--muted);
  line-height: 1.58;
}

.warm-card {
  background: linear-gradient(180deg, rgba(255, 232, 184, 0.72), rgba(255, 249, 237, 0.92));
}

.feature-list,
.step-list,
.legal-list {
  margin: 0;
  padding-left: 22px;
  color: var(--muted);
  line-height: 1.82;
}

.feature-list li + li,
.step-list li + li,
.legal-list li + li {
  margin-top: 10px;
}

.pricing-card {
  position: relative;
  display: grid;
  gap: 12px;
  align-content: start;
}

.pricing-card.featured {
  transform: translateY(-8px);
  background: linear-gradient(180deg, rgba(255, 217, 136, 0.5), rgba(255, 248, 231, 0.94));
  border-color: rgba(178, 108, 42, 0.18);
}

.pricing-tag,
.store-pill,
.status-chip,
.status-overline,
.compliance-badge strong {
  display: inline-flex;
  width: fit-content;
  padding: 8px 12px;
  border-radius: 999px;
  font-size: 0.78rem;
  font-weight: 800;
  letter-spacing: 0.06em;
  text-transform: uppercase;
}

.pricing-tag,
.store-pill {
  background: rgba(255, 255, 255, 0.74);
  color: var(--accent-strong);
}

.price {
  margin: 0;
  font-size: 2.6rem;
  font-weight: 800;
  line-height: 1;
}

.stack-form {
  display: grid;
  gap: 14px;
  margin-top: 18px;
}

.stack-form label {
  display: grid;
  gap: 8px;
  color: var(--muted);
  font-size: 0.95rem;
}

.stack-form input[type="text"],
.stack-form input[type="number"],
.stack-form input[type="email"] {
  width: 100%;
  min-height: 56px;
  padding: 0 16px;
  border-radius: var(--radius-md);
  border: 1px solid rgba(90, 61, 31, 0.12);
  background: rgba(255, 255, 255, 0.78);
  color: var(--text);
  transition: border-color 160ms ease, box-shadow 160ms ease, background-color 160ms ease;
}

.stack-form input:focus {
  outline: none;
  border-color: rgba(178, 108, 42, 0.4);
  box-shadow: 0 0 0 5px rgba(241, 201, 134, 0.24);
  background: #fff;
}

.stack-form[data-busy="true"] button[type="submit"] {
  opacity: 0.72;
}

.result-box {
  margin-top: 16px;
}

.status-shell {
  display: grid;
  gap: 16px;
  padding: 20px;
  border-radius: 22px;
  border: 1px solid rgba(90, 61, 31, 0.1);
  background: rgba(255, 251, 243, 0.92);
  box-shadow: var(--shadow-soft);
}

.status-shell.tone-success {
  background: linear-gradient(180deg, rgba(232, 248, 236, 0.96), rgba(247, 252, 248, 0.95));
  border-color: rgba(65, 118, 85, 0.18);
}

.status-shell.tone-neutral {
  background: linear-gradient(180deg, rgba(255, 245, 223, 0.96), rgba(255, 251, 243, 0.95));
  border-color: rgba(178, 108, 42, 0.16);
}

.status-shell.tone-warning {
  background: linear-gradient(180deg, rgba(255, 236, 225, 0.98), rgba(255, 247, 242, 0.96));
  border-color: rgba(165, 92, 52, 0.16);
}

.status-hero {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  gap: 14px;
}

.status-hero-copy {
  display: grid;
  gap: 8px;
}

.status-hero h3 {
  font-size: 2rem;
}

.status-hero p {
  margin: 0;
  color: var(--muted);
}

.status-overline {
  background: rgba(255, 255, 255, 0.72);
  color: var(--accent-strong);
}

.status-chip.tone-success {
  color: #fff;
  background: linear-gradient(135deg, var(--green), #2d5d3d);
}

.status-chip.tone-neutral {
  color: #fff;
  background: linear-gradient(135deg, var(--accent), var(--accent-strong));
}

.status-chip.tone-warning {
  color: #fff;
  background: linear-gradient(135deg, #b86840, #8e4726);
}

.status-grid {
  grid-template-columns: repeat(auto-fit, minmax(156px, 1fr));
}

.status-item {
  min-height: 108px;
  padding: 16px 18px;
  display: grid;
  align-content: space-between;
  gap: 12px;
}

.status-item.wide {
  grid-column: span 2;
}

.status-item.accent {
  background: linear-gradient(180deg, rgba(255, 222, 160, 0.72), rgba(255, 247, 227, 0.94));
}

.status-item span {
  color: var(--muted);
  font-size: 0.84rem;
}

.status-item strong {
  font-size: 1.08rem;
  line-height: 1.35;
}

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

.status-meta-row {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 14px;
  padding: 13px 16px;
  border-radius: 16px;
  border: 1px solid rgba(90, 61, 31, 0.08);
  background: rgba(255, 255, 255, 0.54);
}

.status-meta-row span {
  color: var(--muted);
  font-size: 0.9rem;
}

.status-meta-row strong {
  text-align: right;
  font-size: 0.95rem;
}

.elevated-card,
.legal-side-card {
  box-shadow: var(--shadow-soft);
}

.compliance-badge {
  margin-top: 24px;
  padding: 18px;
  border-radius: var(--radius-lg);
  border: 1px solid rgba(90, 61, 31, 0.08);
  background: linear-gradient(180deg, rgba(255, 236, 194, 0.62), rgba(255, 249, 237, 0.96));
}

.compliance-badge strong {
  background: rgba(255, 255, 255, 0.72);
  color: var(--accent-strong);
}

.compliance-badge span {
  display: block;
  margin-top: 12px;
  color: var(--muted);
  line-height: 1.68;
}

.legal-links {
  margin-top: 18px;
}

.faq-list {
  grid-template-columns: 1fr;
}

.faq-item {
  padding: 18px 22px;
}

.faq-item summary {
  cursor: pointer;
  font-weight: 700;
}

.faq-item summary::-webkit-details-marker {
  display: none;
}

.faq-item summary::after {
  content: "+";
  float: right;
  color: var(--accent-strong);
  font-size: 1.2rem;
}

.faq-item[open] summary::after {
  content: "−";
}

.legal-page {
  min-height: 60vh;
}

.site-footer {
  margin-top: 28px;
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 20px;
}

.site-footer strong {
  font-size: 1.55rem;
}

.fine-print {
  margin: 0;
  font-size: 0.92rem;
}

@media (max-width: 1120px) {
  .hero-block,
  .split-block,
  .panel-grid,
  .feature-grid,
  .pricing-grid,
  .site-footer {
    grid-template-columns: 1fr;
  }

  .hero-panel {
    border-left: 0;
    border-top: 1px solid var(--line);
  }

  .pricing-card.featured {
    transform: none;
  }

  .status-item.wide {
    grid-column: span 1;
  }
}

@media (max-width: 920px) {
  .topbar {
    position: static;
    border-radius: 30px;
    padding: 18px;
    align-items: center;
  }

  .main-nav {
    display: none;
  }

  .menu-toggle {
    display: inline-flex;
  }

  .topbar-left {
    flex: 1;
  }

  .topbar-right {
    width: auto;
    justify-content: flex-end;
  }

  .status-meta {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 720px) {
  .page-shell {
    padding: 16px 14px 40px;
  }

  .hero-copy,
  .hero-panel,
  .section-block,
  .site-footer {
    padding: 24px;
  }

  .brand-badge {
    width: 52px;
    height: 52px;
  }

  .brand-wordmark {
    font-size: 1.92rem;
  }

  .hero-actions,
  .legal-links,
  .topbar-right {
    gap: 10px;
  }

  .hero-actions > *,
  .legal-links > * {
    width: 100%;
  }

  .status-hero {
    flex-direction: column;
  }

  .topbar {
    gap: 14px;
  }

  .topbar-right {
    display: none;
  }

  .mobile-nav-card {
    padding-top: 106px;
  }

  .mobile-nav-links a {
    font-size: 0.96rem;
  }
}
