﻿:root {
  --bg: #f6f0e4;
  --surface: #fffdfa;
  --surface-strong: #ffffff;
  --ink: #161616;
  --muted: #5f5d56;
  --line: rgba(22, 22, 22, 0.12);
  --olive: #556a36;
  --olive-soft: #dde6cd;
  --sand: #ebe1ce;
  --shadow: 0 24px 80px rgba(45, 44, 33, 0.12);
  --radius-xl: 48px;
  --radius-lg: 32px;
  --radius-md: 20px;
  --container: min(1280px, calc(100vw - 40px));
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  color: var(--ink);
  background:
    radial-gradient(circle at top left, rgba(85, 106, 54, 0.08), transparent 30%),
    linear-gradient(180deg, #fbf8f2 0%, var(--bg) 100%);
  font-family: "Manrope", sans-serif;
}

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

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

button {
  font: inherit;
}

strong,
code {
  font-weight: 700;
}

code {
  padding: 0.08rem 0.35rem;
  border-radius: 0.4rem;
  background: rgba(22, 22, 22, 0.06);
  font-family: ui-monospace, SFMono-Regular, Menlo, Consolas, monospace;
  font-size: 0.92em;
}

.container {
  width: var(--container);
  margin: 0 auto;
}

.site-shell {
  overflow: clip;
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 20;
  backdrop-filter: blur(14px);
  background: rgba(251, 248, 242, 0.8);
  border-bottom: 1px solid rgba(22, 22, 22, 0.06);
}

.nav {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
  padding: 24px 0;
}

.brand,
.footer-brand {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  font-weight: 800;
  letter-spacing: -0.04em;
}

.brand img,
.footer-brand img {
  width: 42px;
  height: 42px;
  border-radius: 14px;
  box-shadow: 0 10px 22px rgba(85, 106, 54, 0.2);
}

.brand span,
.footer-brand span {
  font-size: 1.5rem;
}

.nav-links {
  display: flex;
  align-items: center;
  gap: 28px;
  font-size: 0.95rem;
  font-weight: 700;
}

.nav-links a,
.footer-links a {
  opacity: 0.72;
  transition: opacity 0.2s ease, transform 0.2s ease;
}

.nav-links a:hover,
.nav-links a.is-active,
.footer-links a:hover {
  opacity: 1;
  transform: translateY(-1px);
}

.nav-toggle {
  display: none;
  border: 1px solid var(--line);
  background: transparent;
  padding: 10px 14px;
  border-radius: 999px;
}

.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  padding: 14px 22px;
  border-radius: 999px;
  border: 1px solid transparent;
  font-weight: 700;
  transition: transform 0.2s ease, box-shadow 0.2s ease, background 0.2s ease;
}

.button:hover {
  transform: translateY(-2px);
}

.button-dark {
  color: #fff;
  background: var(--olive);
  box-shadow: 0 12px 30px rgba(85, 106, 54, 0.24);
}

.button-light {
  color: var(--ink);
  background: rgba(255, 255, 255, 0.62);
  border-color: rgba(22, 22, 22, 0.08);
}

.hero,
.trust,
.features,
.split-section,
.comparison,
.quote-section,
.steps,
.cta,
.legal-main,
.site-footer {
  padding-top: 72px;
}

.hero {
  display: grid;
  grid-template-columns: 1.05fr 0.95fr;
  gap: 48px;
  align-items: center;
  min-height: calc(100vh - 112px);
  padding-bottom: 64px;
}

.eyebrow {
  margin: 0 0 14px;
  font-size: 0.78rem;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--olive);
  font-weight: 800;
}

.hero h1,
.section-heading h2,
.split-copy h2,
.quote-copy h2,
.steps-header h2,
.cta-panel h2 {
  margin: 0;
  font-family: "Cormorant Garamond", serif;
  font-weight: 600;
  letter-spacing: -0.015em;
  word-spacing: 0.02em;
  font-kerning: normal;
  line-height: 1;
}

.hero h1 {
  font-size: clamp(4rem, 9vw, 7.6rem);
  max-width: 10ch;
  text-wrap: balance;
}

.hero-text,
.section-heading p,
.split-copy p,
.legal-hero p,
.legal-content p,
.support-card p,
.faq-list p,
.step p,
.cta-panel p,
.logo-strip span:last-child,
.legal-content li {
  color: var(--muted);
  line-height: 1.8;
}

.hero-text {
  max-width: 58ch;
  font-size: 1.05rem;
  margin: 24px 0 0;
}

.hero-actions,
.cta-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
  margin-top: 32px;
}

.hero-visual {
  position: relative;
}

.hero-backdrop {
  position: absolute;
  inset: 14% 0 10% 0;
  background: linear-gradient(135deg, #98ab7d 0%, #6b7d50 100%);
  border-radius: 44px;
  transform: rotate(-4deg);
}

.device-stage {
  position: relative;
  padding: 36px;
}

.device-frame {
  border-radius: 36px;
  border: 12px solid #191919;
  box-shadow: var(--shadow);
  background: #d6d6d6;
}

.device-main {
  width: 100%;
  aspect-ratio: 4 / 3;
}

.device-stack {
  position: absolute;
  right: 4%;
  bottom: -6%;
  width: 42%;
  display: grid;
  gap: 16px;
}

.device-small {
  width: 58%;
  margin-left: auto;
  border-width: 10px;
  aspect-ratio: 1;
}

.placeholder-panel,
.panel-placeholder,
.quote-placeholder {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  text-align: center;
  gap: 10px;
}

.placeholder-panel {
  padding: 36px;
  background:
    linear-gradient(135deg, rgba(255,255,255,0.78), rgba(226, 233, 212, 0.9)),
    repeating-linear-gradient(
      -45deg,
      rgba(22,22,22,0.03) 0,
      rgba(22,22,22,0.03) 10px,
      rgba(255,255,255,0.12) 10px,
      rgba(255,255,255,0.12) 20px
    );
}

.placeholder-panel.wide {
  min-height: 420px;
  border: 1px solid rgba(22,22,22,0.08);
  border-radius: var(--radius-xl);
  box-shadow: 0 18px 48px rgba(38, 38, 28, 0.06);
}

.placeholder-panel.mini {
  padding: 20px;
}

.placeholder-icon-wrap {
  width: 112px;
  height: 112px;
  display: grid;
  place-items: center;
  border-radius: 28px;
  background: rgba(255,255,255,0.86);
  box-shadow: 0 14px 32px rgba(85, 106, 54, 0.16);
}

.placeholder-icon {
  width: 72px;
  height: 72px;
  border-radius: 20px;
}

.mini-icon {
  width: 48px;
  height: 48px;
  border-radius: 14px;
}

.placeholder-kicker {
  font-size: 0.72rem;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--olive);
  font-weight: 800;
}

.placeholder-panel strong,
.panel-placeholder strong {
  font-size: 1.08rem;
  letter-spacing: -0.03em;
}

.placeholder-panel p,
.panel-placeholder p {
  max-width: 28ch;
  margin: 0;
  color: var(--muted);
  line-height: 1.65;
  font-size: 0.95rem;
}

.floating-card {
  padding: 18px;
  border-radius: 24px;
  background: rgba(255, 253, 250, 0.94);
  box-shadow: var(--shadow);
}

.floating-label {
  display: block;
  margin-bottom: 8px;
  font-size: 0.78rem;
  text-transform: uppercase;
  letter-spacing: 0.16em;
  color: var(--olive);
}

.section-heading {
  max-width: 760px;
  margin-bottom: 48px;
}

.section-heading.narrow {
  max-width: 880px;
}

.section-heading.centered {
  text-align: center;
  margin-inline: auto;
}

.section-heading h2,
.split-copy h2,
.quote-copy h2,
.steps-header h2,
.cta-panel h2 {
  font-size: clamp(2.8rem, 6vw, 5.2rem);
  line-height: 1.02;
  text-wrap: balance;
}

.logo-strip {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 20px;
}

.logo-strip div,
.feature-card,
.step,
.support-card,
.comparison-card,
.legal-content article,
.faq-section article {
  background: rgba(255, 255, 255, 0.64);
  border: 1px solid rgba(22, 22, 22, 0.08);
  border-radius: 28px;
  box-shadow: 0 18px 48px rgba(38, 38, 28, 0.06);
}

.logo-strip div {
  padding: 28px;
}

.stat {
  display: block;
  margin-bottom: 8px;
  font-size: 1.1rem;
  font-weight: 800;
  letter-spacing: -0.03em;
}

.feature-grid,
.step-grid,
.support-grid {
  display: grid;
  gap: 22px;
}

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

.feature-card,
.step,
.support-card {
  padding: 28px;
}

.feature-card h3,
.step h3,
.support-card h2,
.faq-list h3,
.comparison-card h3,
.legal-content h2 {
  margin: 0 0 12px;
  font-size: 1.2rem;
  letter-spacing: -0.03em;
}

.feature-card p,
.step p,
.support-card p,
.faq-list p,
.comparison-card li,
.legal-content p,
.legal-content li,
.legal-content ul {
  margin: 0;
  color: var(--muted);
}

.immersive-media,
.art-panel,
.quote-panel,
.cta-panel {
  position: relative;
  overflow: hidden;
  border-radius: var(--radius-xl);
}

.immersive-media {
  margin-top: 32px;
}

.split-section,
.quote-section {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 48px;
  align-items: center;
}

.check-list {
  display: grid;
  gap: 18px;
  margin: 34px 0;
}

.check-list div {
  display: grid;
  grid-template-columns: 54px 1fr;
  gap: 14px;
  padding-top: 18px;
  border-top: 1px solid var(--line);
}

.check-list span,
.step span {
  font-weight: 800;
  color: rgba(22, 22, 22, 0.28);
  font-size: 1.1rem;
}

.art-panel {
  min-height: 620px;
  background: linear-gradient(180deg, #293020 0%, #73845b 100%);
  box-shadow: var(--shadow);
}

.panel-placeholder {
  position: absolute;
  inset: 12%;
  border-radius: 34px;
  background: rgba(255,255,255,0.14);
  border: 1px solid rgba(255,255,255,0.16);
  backdrop-filter: blur(4px);
  color: white;
  padding: 24px;
}

.panel-placeholder img {
  width: min(220px, 42%);
  border-radius: 30px;
  box-shadow: 0 24px 60px rgba(0, 0, 0, 0.28);
}

.art-glow {
  position: absolute;
  width: 340px;
  height: 340px;
  inset: auto auto 8% -8%;
  background: radial-gradient(circle, rgba(255,255,255,0.26), transparent 60%);
}

.comparison-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 16px;
}

.comparison-card {
  padding: 36px 28px;
}

.comparison-card ul {
  list-style: none;
  padding: 0;
  margin: 0;
  display: grid;
  gap: 16px;
}

.comparison-card li::before {
  content: "•";
  color: var(--olive);
  margin-right: 10px;
}

.comparison-card.featured {
  background: var(--surface-strong);
  transform: scale(1.03);
}

.quote-panel {
  min-height: 560px;
  background: linear-gradient(135deg, #f1e7d8, #d9e3c7);
}

.quote-shape {
  position: absolute;
  border-radius: 999px;
  filter: blur(2px);
}

.quote-shape-a {
  width: 60%;
  height: 60%;
  left: 8%;
  top: 12%;
  background: rgba(85, 106, 54, 0.22);
}

.quote-shape-b {
  width: 42%;
  height: 42%;
  right: 8%;
  bottom: 14%;
  background: rgba(255, 255, 255, 0.72);
}

.quote-placeholder {
  position: absolute;
  inset: 0;
}

.quote-copy h2 {
  font-size: clamp(2.6rem, 5vw, 4.3rem);
  line-height: 1.08;
}

.quote-meta {
  margin-top: 24px;
  font-size: 0.9rem;
  text-transform: uppercase;
  letter-spacing: 0.18em;
}

.steps-header {
  display: flex;
  align-items: end;
  justify-content: space-between;
  gap: 24px;
  margin-bottom: 32px;
}

.step-grid,
.support-grid {
  grid-template-columns: repeat(3, minmax(0, 1fr));
}

.step {
  min-height: 240px;
}

.cta {
  padding-bottom: 72px;
}

.cta-panel {
  padding: 54px;
  background: linear-gradient(135deg, #f6f0e4 0%, #dfe8cf 100%);
  border: 1px solid rgba(22, 22, 22, 0.08);
}

.site-footer {
  padding-bottom: 48px;
}

.footer-links,
.footer-meta {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
}

.footer-links {
  padding-top: 22px;
  border-top: 1px solid var(--line);
}

.footer-meta {
  padding-top: 28px;
  color: var(--muted);
  font-size: 0.92rem;
}

.legal-shell {
  min-height: 100vh;
}

.legal-main {
  padding-bottom: 28px;
}

.legal-hero {
  max-width: 760px;
}

.legal-hero-doc h1 {
  font-family: "Manrope", sans-serif;
  font-size: clamp(2.3rem, 4vw, 3.4rem);
  line-height: 1.05;
  letter-spacing: -0.04em;
}

.legal-content {
  display: grid;
  gap: 14px;
}

.legal-content article,
.faq-section article {
  padding: 28px;
}

.legal-content article {
  border-radius: 22px;
  box-shadow: 0 8px 24px rgba(38, 38, 28, 0.04);
}

.legal-content h2 {
  font-size: 1.16rem;
  font-family: "Manrope", sans-serif;
  letter-spacing: -0.02em;
}

.legal-content ul {
  padding-left: 1.2rem;
  display: grid;
  gap: 0.45rem;
}

.legal-content a,
.support-card a,
.faq-section a {
  color: var(--olive);
  text-decoration: underline;
  text-decoration-thickness: 1px;
}

.faq-section {
  margin-top: 22px;
}

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

.compact-footer {
  padding-top: 0;
}

.reveal,
.reveal-delay {
  opacity: 0;
  transform: translateY(22px);
  animation: rise 0.7s ease forwards;
}

.reveal-delay {
  animation-delay: 0.18s;
}

@keyframes rise {
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

@media (max-width: 1100px) {
  .hero,
  .split-section,
  .quote-section,
  .feature-grid,
  .comparison-grid,
  .step-grid,
  .support-grid,
  .logo-strip {
    grid-template-columns: 1fr 1fr;
  }

  .hero {
    min-height: auto;
    padding-top: 48px;
  }

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

  .comparison-grid,
  .step-grid,
  .support-grid,
  .logo-strip {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .nav {
    flex-wrap: wrap;
  }
}

@media (max-width: 760px) {
  :root {
    --container: min(100vw - 28px, 100%);
    --radius-xl: 32px;
  }

  .site-header {
    position: static;
  }

  .nav {
    padding: 18px 0;
  }

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

  .nav-links {
    display: none;
    width: 100%;
    flex-direction: column;
    align-items: flex-start;
    padding: 18px 0 4px;
    gap: 16px;
  }

  .nav-links.open {
    display: flex;
  }

  .nav-cta {
    display: none;
  }

  .hero,
  .split-section,
  .quote-section,
  .feature-grid,
  .comparison-grid,
  .step-grid,
  .support-grid,
  .logo-strip,
  .steps-header,
  .footer-links,
  .footer-meta {
    grid-template-columns: 1fr;
    flex-direction: column;
    align-items: flex-start;
  }

  .hero,
  .trust,
  .features,
  .split-section,
  .comparison,
  .quote-section,
  .steps,
  .cta,
  .legal-main,
  .site-footer {
    padding-top: 52px;
  }

  .hero h1 {
    font-size: clamp(3rem, 14vw, 4.2rem);
    line-height: 1.04;
  }

  .section-heading h2,
  .split-copy h2,
  .quote-copy h2,
  .steps-header h2,
  .cta-panel h2 {
    font-size: clamp(2.2rem, 9vw, 3.1rem);
    line-height: 1.06;
  }

  .device-stage {
    padding: 14px 10px 44px;
  }

  .device-main {
    aspect-ratio: 3 / 4;
  }

  .device-stack {
    position: static;
    width: 100%;
    margin-top: 16px;
  }

  .device-small {
    width: 110px;
    margin-left: 0;
  }

  .art-panel,
  .quote-panel,
  .immersive-media {
    min-height: 360px;
  }

  .cta-panel {
    padding: 34px 22px;
  }

  .legal-content article,
  .faq-section article,
  .feature-card,
  .step,
  .support-card,
  .comparison-card {
    padding: 22px;
  }

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