:root {
  --bg-dark: #0b0c0d;
  --bg-dark-elevated: #121416;
  --bg-light: #f4eee4;
  --surface-light: rgba(255, 250, 244, 0.78);
  --surface-dark: rgba(255, 255, 255, 0.04);
  --line-light: rgba(17, 20, 16, 0.1);
  --line-dark: rgba(255, 255, 255, 0.07);
  --text-light: #f4efe7;
  --text-dark: #11120f;
  --muted-light: rgba(244, 239, 231, 0.72);
  --muted-dark: rgba(17, 18, 15, 0.66);
  --olive: #708c45;
  --olive-deep: #4d6530;
  --gold: #d4b261;
  --blue: #2f6881;
  --rose: #c98778;
  --shadow-xl: 0 44px 120px rgba(0, 0, 0, 0.34);
  --shadow-lg: 0 24px 60px rgba(0, 0, 0, 0.18);
  --shadow-md: 0 16px 34px rgba(0, 0, 0, 0.12);
  --radius-xl: 42px;
  --radius-lg: 32px;
  --radius-md: 24px;
  --container: 1240px;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  background: var(--bg-dark);
  color: var(--text-light);
  font-family: "Inter", -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
}

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

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

button,
a.button,
a.header-cta,
a.app-store-link,
a.header-app-store {
  font: inherit;
  cursor: pointer;
}

.container {
  width: min(var(--container), calc(100% - 40px));
  margin: 0 auto;
}

.dark-section {
  position: relative;
  background: var(--bg-dark);
  color: var(--text-light);
}

.light-section {
  position: relative;
  background: var(--bg-light);
  color: var(--text-dark);
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 40;
  backdrop-filter: blur(18px);
  background: rgba(11, 12, 13, 0.72);
  border-bottom: 1px solid rgba(255, 255, 255, 0.04);
}

.nav-row,
.footer-row,
.legal-footer-row {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
}

.nav-row {
  min-height: 82px;
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  font-weight: 700;
  letter-spacing: -0.03em;
}

.brand-icon {
  width: 38px;
  height: 38px;
  border-radius: 12px;
  box-shadow: 0 10px 24px rgba(112, 140, 69, 0.22);
}

.brand-word {
  font-size: 1.05rem;
}

.site-nav,
.footer-nav,
.legal-nav {
  display: inline-flex;
  align-items: center;
  gap: 24px;
}

.site-header .brand,
.site-header .brand-word {
  color: var(--text-light);
}

.site-nav a,
.footer-nav a,
.legal-nav a {
  color: var(--muted-light);
  transition: color 180ms ease;
}

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

.header-cta,
.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 52px;
  padding: 0 22px;
  border-radius: 999px;
  transition: transform 180ms ease, box-shadow 180ms ease, background-color 180ms ease, border-color 180ms ease;
}

.header-cta:hover,
.button:hover,
.app-store-link:hover,
.header-app-store:hover {
  transform: translateY(-1px);
}

.header-cta,
.button-primary {
  background: linear-gradient(135deg, var(--olive) 0%, var(--olive-deep) 100%);
  color: #fff;
  box-shadow: 0 16px 30px rgba(77, 101, 48, 0.24);
}

.button-secondary {
  border: 1px solid rgba(255, 255, 255, 0.12);
  background: rgba(255, 255, 255, 0.03);
  color: var(--text-light);
}

.light-section .button-secondary {
  border-color: rgba(17, 18, 15, 0.12);
  background: rgba(17, 18, 15, 0.03);
  color: var(--text-dark);
}

.button-wide {
  min-width: 290px;
}

.header-app-store,
.app-store-link {
  display: inline-flex;
  align-items: center;
  justify-content: center;
}

.app-store-badge {
  width: 180px;
  height: auto;
}

.app-store-badge-header {
  width: 144px;
}

.hero-section {
  overflow: clip;
  padding: 86px 0 72px;
}

.hero-grid-lines,
.hero-glow {
  position: absolute;
  pointer-events: none;
}

.hero-grid-lines {
  inset: 0;
  opacity: 0.12;
  background-image:
    linear-gradient(rgba(255, 255, 255, 0.03) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255, 255, 255, 0.03) 1px, transparent 1px);
  background-size: 88px 88px;
}

.hero-glow {
  border-radius: 999px;
  filter: blur(54px);
}

.hero-glow-left {
  width: 360px;
  height: 360px;
  left: 4%;
  top: 90px;
  background: radial-gradient(circle, rgba(112, 140, 69, 0.18) 0%, rgba(112, 140, 69, 0) 72%);
}

.hero-glow-right {
  width: 340px;
  height: 340px;
  right: 6%;
  top: 120px;
  background: radial-gradient(circle, rgba(212, 178, 97, 0.14) 0%, rgba(212, 178, 97, 0) 72%);
}

.hero-layout,
.legal-shell {
  position: relative;
  z-index: 1;
}

.hero-copy {
  max-width: 760px;
  margin: 0 auto;
  text-align: center;
}

.section-kicker,
.dark-kicker,
.legal-kicker {
  display: inline-flex;
  align-items: center;
  min-height: 34px;
  padding: 0 13px;
  border-radius: 999px;
  border: 1px solid rgba(255, 255, 255, 0.08);
  background: rgba(255, 255, 255, 0.04);
  color: var(--text-light);
  font-size: 0.84rem;
  font-weight: 700;
  letter-spacing: 0.02em;
}

.section-kicker,
.legal-kicker {
  border-color: rgba(17, 18, 15, 0.08);
  background: rgba(17, 18, 15, 0.04);
  color: var(--text-dark);
}

.hero-copy h1,
.section-head h2,
.details-copy h2,
.positioning-copy h2,
.download-copy h2,
.availability-copy h2,
.legal-title h1 {
  margin: 22px 0 18px;
  font-family: "Plus Jakarta Sans", "Inter", sans-serif;
  font-weight: 800;
  letter-spacing: -0.06em;
  line-height: 0.9;
}

.hero-copy h1 {
  font-size: clamp(3.25rem, 6.2vw, 5.6rem);
  max-width: 8.6ch;
  margin-inline: auto;
}

.hero-lead,
.section-head p,
.feature-copy p,
.details-copy p,
.detail-card p,
.positioning-copy p,
.positioning-item p,
.download-copy p,
.footer-copy,
.download-note,
.availability-copy p,
.availability-card p,
.legal-title p,
.legal-section p,
.legal-section li,
.support-card p,
.support-card li {
  font-size: 1.06rem;
  line-height: 1.78;
}

.hero-lead,
.positioning-copy p,
.positioning-item p,
.footer-copy,
.legal-dark .legal-title p,
.legal-dark .legal-nav a {
  color: var(--muted-light);
}

.section-head p,
.feature-copy p,
.details-copy p,
.detail-card p,
.download-copy p,
.download-note,
.availability-copy p,
.availability-card p,
.legal-title p,
.legal-section p,
.legal-section li,
.support-card p,
.support-card li {
  color: var(--muted-dark);
}

.hero-actions {
  display: flex;
  justify-content: center;
  align-items: center;
  flex-wrap: wrap;
  gap: 14px;
  margin: 30px 0 28px;
}

.hero-tags {
  list-style: none;
  padding: 0;
  margin: 0;
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
  gap: 12px 20px;
}

.hero-tags li {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  color: rgba(244, 239, 231, 0.84);
  font-size: 0.95rem;
}

.hero-tags li::before {
  content: "";
  width: 7px;
  height: 7px;
  border-radius: 999px;
  background: rgba(212, 178, 97, 0.9);
  flex: 0 0 auto;
}

.hero-stage {
  position: relative;
  margin-top: 58px;
  padding-top: 30px;
}

.phone-stack {
  position: relative;
  min-height: 720px;
}

.device-frame {
  position: relative;
  overflow: hidden;
  border-radius: 40px;
  background: linear-gradient(180deg, #cec7bc 0%, #ebe2d7 100%);
  box-shadow: var(--shadow-xl);
  padding: 14px;
}

.device-frame img {
  position: relative;
  z-index: 1;
  border-radius: 28px;
  background: #fff;
}

.device-center,
.panel-frame-large {
  max-width: 420px;
}

.device-left,
.device-right,
.panel-frame {
  max-width: 260px;
}

.device-center {
  position: absolute;
  left: 50%;
  top: 0;
  transform: translateX(-50%);
  z-index: 3;
}

.device-left {
  position: absolute;
  left: 8%;
  top: 190px;
  transform: rotate(-9deg);
  z-index: 2;
}

.device-right {
  position: absolute;
  right: 8%;
  top: 76px;
  transform: rotate(8deg);
  z-index: 2;
}

.stage-note {
  position: absolute;
  z-index: 4;
  display: grid;
  gap: 6px;
  padding: 16px 18px;
  border-radius: 20px;
  border: 1px solid rgba(255, 255, 255, 0.08);
  background: rgba(255, 255, 255, 0.05);
  backdrop-filter: blur(14px);
  box-shadow: var(--shadow-md);
}

.stage-note span,
.fact-card span,
.panel-index {
  font-size: 0.8rem;
  font-weight: 700;
  letter-spacing: 0.05em;
  text-transform: uppercase;
}

.stage-note span,
.fact-card span {
  color: var(--muted-light);
}

.stage-note strong,
.fact-card strong,
.feature-copy h3,
.detail-card strong,
.positioning-item strong,
.legal-section h2,
.support-card h2,
.support-card h3,
.availability-card strong {
  letter-spacing: -0.04em;
}

.stage-note strong {
  font-size: 1rem;
}

.stage-note-left {
  left: 7%;
  top: 118px;
}

.stage-note-right {
  right: 7%;
  top: 360px;
}

.hero-facts {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 18px;
  margin-top: 22px;
}

.fact-card,
.positioning-item,
.support-card,
.legal-section,
.availability-card {
  border-radius: 24px;
  border: 1px solid var(--line-dark);
  background: rgba(255, 255, 255, 0.04);
  backdrop-filter: blur(14px);
  padding: 22px;
}

.fact-card strong {
  display: block;
  margin-top: 10px;
  font-size: 1.18rem;
}

.overview-section,
.details-section,
.availability-section,
.download-section,
.legal-main {
  padding: 104px 0;
}

.section-head {
  max-width: 860px;
  margin-bottom: 42px;
}

.section-head h2,
.details-copy h2,
.positioning-copy h2,
.download-copy h2,
.availability-copy h2,
.legal-title h1 {
  font-size: clamp(2rem, 3.8vw, 3.7rem);
}

.overview-grid,
.details-grid,
.positioning-grid,
.download-panel,
.availability-panel,
.legal-grid,
.support-grid {
  display: grid;
  gap: 28px;
}

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

.feature-panel,
.detail-card,
.download-panel,
.support-card {
  border-radius: 32px;
  overflow: hidden;
  border: 1px solid var(--line-light);
  box-shadow: 0 24px 60px rgba(30, 22, 10, 0.08);
}

.feature-panel {
  padding: 28px;
}

.feature-panel-large {
  grid-column: span 2;
  display: grid;
  grid-template-columns: minmax(0, 0.72fr) minmax(0, 0.92fr);
  align-items: center;
  gap: 26px;
}

.feature-panel-reverse {
  display: grid;
  grid-template-columns: 0.92fr 0.72fr;
  align-items: center;
  gap: 26px;
}

.feature-panel-reverse .panel-frame {
  margin-left: 0;
  margin-right: auto;
}

.olive-panel {
  background: linear-gradient(180deg, rgba(255, 250, 244, 0.86), rgba(226, 236, 216, 0.82));
}

.gold-panel {
  background: linear-gradient(180deg, rgba(255, 250, 244, 0.86), rgba(246, 232, 194, 0.82));
}

.blue-panel {
  background: linear-gradient(180deg, rgba(255, 250, 244, 0.86), rgba(216, 229, 237, 0.84));
}

.panel-index {
  color: var(--muted-dark);
}

.feature-copy h3 {
  margin: 10px 0 12px;
  font-family: "Plus Jakarta Sans", "Inter", sans-serif;
  font-weight: 800;
  font-size: clamp(1.4rem, 2.2vw, 2rem);
  line-height: 0.98;
}

.panel-frame,
.panel-frame-large {
  margin-left: auto;
}

.details-grid,
.positioning-grid,
.availability-panel,
.legal-grid,
.support-grid {
  grid-template-columns: minmax(0, 0.95fr) minmax(0, 1.05fr);
  align-items: start;
}

.details-cards,
.availability-cards {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 18px;
}

.detail-card {
  padding: 24px;
  background: rgba(255, 250, 244, 0.74);
}

.tint-olive {
  background: linear-gradient(180deg, rgba(239, 246, 232, 0.9), rgba(226, 236, 216, 0.84));
}

.tint-gold {
  background: linear-gradient(180deg, rgba(251, 242, 215, 0.94), rgba(246, 232, 194, 0.84));
}

.tint-blue {
  background: linear-gradient(180deg, rgba(232, 241, 246, 0.94), rgba(216, 229, 237, 0.84));
}

.tint-rose {
  background: linear-gradient(180deg, rgba(248, 235, 230, 0.94), rgba(240, 221, 215, 0.88));
}

.detail-card strong,
.availability-card strong {
  display: block;
  margin: 10px 0 10px;
  font-family: "Plus Jakarta Sans", "Inter", sans-serif;
  font-weight: 800;
  font-size: 1.18rem;
  line-height: 1.02;
}

.positioning-section {
  padding: 104px 0;
}

.positioning-list {
  display: grid;
  gap: 18px;
}

.positioning-item strong {
  display: block;
  margin-bottom: 10px;
  font-family: "Plus Jakarta Sans", "Inter", sans-serif;
  font-size: 1.16rem;
  line-height: 1.02;
}

.availability-card {
  border-color: rgba(17, 18, 15, 0.1);
  background: rgba(255, 250, 244, 0.8);
  box-shadow: 0 24px 60px rgba(30, 22, 10, 0.08);
}

.availability-card-live {
  background: linear-gradient(180deg, rgba(239, 246, 232, 0.9), rgba(226, 236, 216, 0.84));
}

.availability-card-soon {
  background: linear-gradient(180deg, rgba(251, 242, 215, 0.94), rgba(246, 232, 194, 0.84));
}

.download-panel,
.support-card,
.legal-section {
  background: rgba(255, 250, 244, 0.8);
}

.download-panel {
  grid-template-columns: minmax(0, 1fr) auto;
  align-items: center;
  padding: 34px;
  background:
    radial-gradient(circle at top right, rgba(112, 140, 69, 0.14), transparent 30%),
    linear-gradient(180deg, rgba(255, 250, 244, 0.86), rgba(249, 241, 229, 0.96));
}

.download-actions {
  display: grid;
  justify-items: start;
  gap: 12px;
}

.download-note {
  font-weight: 500;
}

.site-footer,
.legal-footer {
  padding: 0 0 44px;
}

.footer-row,
.legal-footer-row {
  padding-top: 22px;
  border-top: 1px solid rgba(255, 255, 255, 0.06);
}

.footer-copy {
  margin: 8px 0 0;
}

.footer-brand {
  margin-bottom: 8px;
}

.legal-body {
  background: var(--bg-light);
  color: var(--text-dark);
}

.legal-dark {
  background: var(--bg-dark);
  color: var(--text-light);
}

.legal-dark .site-header {
  background: rgba(11, 12, 13, 0.86);
}

.legal-dark .brand-word,
.legal-dark .brand,
.legal-dark .legal-nav a {
  color: var(--text-light);
}

.legal-dark .legal-nav a:hover {
  color: #fff;
}

.legal-main {
  min-height: calc(100vh - 82px);
}

.legal-grid,
.support-grid {
  align-items: start;
}

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

.legal-meta {
  display: grid;
  gap: 8px;
  margin-top: 22px;
  color: var(--muted-dark);
}

.legal-sections {
  display: grid;
  gap: 18px;
}

.legal-section {
  border-color: rgba(17, 18, 15, 0.1);
  box-shadow: 0 24px 60px rgba(30, 22, 10, 0.08);
}

.legal-section h2,
.support-card h2,
.support-card h3 {
  margin: 0 0 12px;
  font-family: "Plus Jakarta Sans", "Inter", sans-serif;
  font-weight: 800;
  font-size: 1.3rem;
  line-height: 1.02;
}

.support-grid {
  grid-template-columns: minmax(0, 0.9fr) minmax(0, 1.1fr);
}

.support-card {
  padding: 28px;
}

.support-card ul,
.legal-section ul {
  padding-left: 1.2rem;
  margin: 0.5rem 0 0;
}

.support-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-top: 22px;
}

.inline-link {
  text-decoration: underline;
  text-underline-offset: 0.18em;
}

.note-card {
  background: linear-gradient(180deg, rgba(239, 246, 232, 0.9), rgba(226, 236, 216, 0.84));
}

@media (prefers-reduced-motion: reduce) {
  html {
    scroll-behavior: auto;
  }

  .header-cta,
  .button,
  .site-nav a,
  .footer-nav a,
  .legal-nav a,
  .device-left,
  .device-right,
  .app-store-link,
  .header-app-store {
    transition: none !important;
  }
}

@media (max-width: 1180px) {
  .feature-panel-large,
  .details-grid,
  .positioning-grid,
  .download-panel,
  .availability-panel,
  .legal-grid,
  .support-grid {
    grid-template-columns: 1fr;
  }

  .hero-facts,
  .details-cards,
  .availability-cards {
    grid-template-columns: 1fr;
  }

  .phone-stack {
    min-height: 760px;
  }

  .device-left {
    left: 4%;
  }

  .device-right {
    right: 4%;
  }
}

@media (max-width: 980px) {
  .site-nav,
  .header-app-store,
  .legal-nav {
    display: none;
  }

  .overview-grid {
    grid-template-columns: 1fr;
  }

  .feature-panel-large {
    grid-column: span 1;
  }

  .phone-stack {
    min-height: 680px;
  }

  .device-center {
    max-width: 360px;
  }

  .device-left,
  .device-right,
  .panel-frame {
    max-width: 210px;
  }

  .stage-note-left,
  .stage-note-right {
    display: none;
  }
}

@media (max-width: 720px) {
  .container {
    width: min(var(--container), calc(100% - 24px));
  }

  .site-header {
    position: sticky;
    top: 0;
  }

  .nav-row {
    min-height: 50px;
    gap: 10px;
  }

  .brand {
    gap: 10px;
  }

  .brand-icon {
    width: 30px;
    height: 30px;
    border-radius: 9px;
  }

  .brand-word {
    font-size: 0.96rem;
  }

  .app-store-badge-header {
    width: 118px;
  }

  .hero-section,
  .overview-section,
  .details-section,
  .positioning-section,
  .availability-section,
  .download-section,
  .legal-main {
    padding: 48px 0;
  }

  .hero-stage {
    margin-top: 30px;
    padding-top: 12px;
  }

  .hero-copy h1,
  .legal-title h1 {
    font-size: clamp(2.7rem, 11vw, 4rem);
  }

  .hero-actions,
  .support-actions {
    flex-direction: column;
    align-items: center;
  }

  .button,
  .button-wide,
  .app-store-link,
  .header-app-store {
    width: auto;
  }

  .app-store-badge {
    width: 172px;
  }

  .hero-tags {
    flex-direction: column;
    align-items: flex-start;
    width: fit-content;
    margin-inline: auto;
  }

  .phone-stack {
    min-height: 500px;
  }

  .device-center,
  .panel-frame-large {
    max-width: 270px;
  }

  .device-left,
  .device-right,
  .panel-frame {
    max-width: 150px;
  }

  .device-left {
    left: 0;
    top: 170px;
  }

  .device-right {
    right: 0;
    top: 64px;
  }

  .feature-panel,
  .detail-card,
  .download-panel,
  .fact-card,
  .positioning-item,
  .support-card,
  .legal-section,
  .availability-card {
    padding: 20px;
  }

  .feature-panel-reverse,
  .feature-panel-large {
    grid-template-columns: 1fr;
    gap: 20px;
  }

  .overview-grid > :nth-child(odd) .panel-frame,
  .overview-grid > :nth-child(odd) .panel-frame-large {
    margin-left: 0;
    margin-right: auto;
  }

  .overview-grid > :nth-child(even) .panel-frame,
  .overview-grid > :nth-child(even) .panel-frame-large {
    margin-left: auto;
    margin-right: 0;
  }

  .site-header .brand-word {
    color: var(--text-light);
  }

  .nav-row,
  .footer-row,
  .legal-footer-row {
    flex-direction: row;
    align-items: center;
  }
}
