:root {
  --cave: #120d18;
  --cave-2: #1e1726;
  --ink: #f7ebc4;
  --muted: #c7b78e;
  --green: #94cf4a;
  --gold: #efc44c;
  --purple: #4e3568;
  --paper: #d9bd7a;
  --paper-dark: #8c672a;
  --line: rgba(239, 196, 76, 0.22);
  --line-strong: rgba(239, 196, 76, 0.46);
  --surface: rgba(20, 15, 25, 0.88);
  --surface-2: rgba(34, 24, 39, 0.94);
  --shadow: 0 22px 60px rgba(0, 0, 0, 0.36);
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
  background: var(--cave);
}

body {
  margin: 0;
  font-family: "Avenir Next", "SF Pro Display", -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  color: var(--ink);
  background: linear-gradient(180deg, #191121 0%, #100c17 42%, #171020 100%);
}

img {
  max-width: 100%;
}

a {
  color: inherit;
}

.skip-link {
  position: absolute;
  left: -999px;
  top: 0.75rem;
  z-index: 20;
  padding: 0.65rem 0.85rem;
  background: var(--ink);
  color: #181018;
  border-radius: 8px;
  font-weight: 800;
}

.skip-link:focus {
  left: 0.75rem;
}

.topbar {
  position: fixed;
  inset: 0 0 auto;
  z-index: 10;
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 1rem;
  padding: 0.9rem max(1rem, calc((100vw - 1160px) / 2));
  background: rgba(13, 9, 18, 0.72);
  border-bottom: 1px solid rgba(239, 196, 76, 0.16);
  backdrop-filter: blur(18px);
}

.brand-link,
.topbar nav a,
.footer nav a {
  text-decoration: none;
  font-size: 0.92rem;
  font-weight: 850;
}

.brand-link {
  color: var(--green);
}

.topbar nav,
.footer nav {
  display: flex;
  flex-wrap: wrap;
  gap: 0.9rem;
  color: var(--muted);
}

.hero {
  min-height: 84svh;
  display: grid;
  align-items: center;
  background:
    linear-gradient(90deg, rgba(13, 9, 18, 0.96) 0%, rgba(13, 9, 18, 0.78) 46%, rgba(13, 9, 18, 0.15) 100%),
    url("./assets/hero-background.jpg") center / cover no-repeat;
  border-bottom: 1px solid var(--line);
}

.hero-inner {
  width: min(1160px, calc(100% - 2rem));
  margin: 0 auto;
  padding: 5.5rem 0 3.5rem;
}

.product-lockup {
  display: inline-flex;
  align-items: center;
  gap: 0.75rem;
  color: var(--green);
  font-weight: 900;
}

.product-lockup img {
  width: 3.8rem;
  height: 3.8rem;
  border-radius: 8px;
  box-shadow: 0 14px 30px rgba(0, 0, 0, 0.36);
}

h1,
h2,
h3,
p {
  margin-top: 0;
}

h1 {
  margin-bottom: 1rem;
  max-width: 720px;
  font-size: 5.25rem;
  line-height: 0.94;
  color: var(--green);
}

h2 {
  margin-bottom: 1rem;
  max-width: 780px;
  font-size: 3.05rem;
  line-height: 1.02;
}

p {
  color: var(--muted);
  line-height: 1.68;
  font-size: 1.02rem;
}

.hero-copy {
  max-width: 680px;
  color: #ead9a9;
  font-size: 1.25rem;
  font-weight: 650;
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 0.75rem;
  margin-top: 1.5rem;
}

.button {
  display: inline-flex;
  min-height: 2.9rem;
  align-items: center;
  justify-content: center;
  padding: 0 1.1rem;
  border-radius: 999px;
  text-decoration: none;
  font-weight: 900;
  border: 1px solid transparent;
}

.button.primary {
  background: var(--green);
  color: #11130d;
  box-shadow: 0 14px 34px rgba(148, 207, 74, 0.2);
}

.button.secondary {
  border-color: var(--line-strong);
  color: var(--gold);
  background: rgba(18, 13, 24, 0.58);
}

.trust-strip {
  display: flex;
  flex-wrap: wrap;
  gap: 0.55rem;
  margin: 1.4rem 0 0;
  padding: 0;
  list-style: none;
}

.trust-strip li {
  padding: 0.5rem 0.68rem;
  border: 1px solid var(--line);
  border-radius: 999px;
  color: var(--ink);
  background: rgba(18, 13, 24, 0.7);
  font-size: 0.9rem;
  font-weight: 800;
}

.band {
  border-top: 1px solid var(--line);
  padding: 4.6rem max(1rem, calc((100vw - 1160px) / 2));
}

.band:nth-of-type(even) {
  background: rgba(10, 8, 14, 0.36);
}

.content-grid {
  display: grid;
  grid-template-columns: minmax(0, 0.9fr) minmax(280px, 0.55fr);
  gap: 3rem;
  align-items: center;
}

.kicker {
  margin-bottom: 0.7rem;
  color: var(--green);
  font-size: 0.78rem;
  font-weight: 950;
  text-transform: uppercase;
}

.phone-showcase {
  margin: 0;
  justify-self: center;
}

.phone-showcase img {
  display: block;
  width: min(320px, 100%);
  border-radius: 2rem;
  box-shadow: var(--shadow);
}

.phone-showcase figcaption,
.screenshot-grid figcaption {
  margin-top: 0.7rem;
  color: var(--muted);
  font-size: 0.86rem;
  font-weight: 850;
  text-align: center;
}

.section-head {
  max-width: 820px;
  margin-bottom: 1.5rem;
}

.feature-grid,
.proof-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 0.85rem;
}

.feature-grid article,
.proof-grid article {
  min-height: 10rem;
  padding: 1.1rem;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: linear-gradient(180deg, var(--surface-2), rgba(10, 8, 14, 0.92));
  box-shadow: 0 12px 30px rgba(0, 0, 0, 0.16);
}

.feature-grid strong,
.proof-grid strong {
  display: block;
  margin-bottom: 0.65rem;
  color: var(--gold);
  font-size: 1.1rem;
}

.feature-grid span,
.proof-grid span {
  color: var(--muted);
  line-height: 1.55;
}

.screenshot-band {
  background: linear-gradient(180deg, rgba(31, 21, 39, 0.8), rgba(14, 10, 19, 0.92));
}

.screenshot-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(142px, 1fr));
  gap: 1rem;
}

.screenshot-grid figure {
  margin: 0;
  padding: 0.55rem;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: rgba(11, 8, 15, 0.72);
}

.screenshot-grid img {
  display: block;
  width: 100%;
  border-radius: 8px;
  box-shadow: 0 18px 34px rgba(0, 0, 0, 0.28);
}

.launch-band {
  display: grid;
  grid-template-columns: 0.8fr 1.2fr;
  gap: 2rem;
  align-items: start;
}

.faq-band details {
  max-width: 860px;
  border-top: 1px solid var(--line);
  padding: 1rem 0;
}

.faq-band summary {
  cursor: pointer;
  color: var(--ink);
  font-size: 1.08rem;
  font-weight: 900;
}

.final-band {
  padding: 4rem 1rem;
  text-align: center;
  background: linear-gradient(180deg, #261831, #121018);
  border-top: 1px solid var(--line);
}

.final-band img {
  width: 5.25rem;
  height: 5.25rem;
  border-radius: 8px;
  box-shadow: var(--shadow);
}

.final-band h2 {
  margin: 1rem auto;
}

.final-band p {
  max-width: 620px;
  margin-left: auto;
  margin-right: auto;
}

.final-band .hero-actions {
  justify-content: center;
}

.footer {
  display: flex;
  justify-content: space-between;
  gap: 1rem;
  padding: 2rem max(1rem, calc((100vw - 1160px) / 2));
  color: var(--muted);
  background: #0d0a12;
  border-top: 1px solid var(--line);
}

.footer p {
  max-width: 520px;
  margin: 0;
  font-size: 0.9rem;
}

.policy-main {
  width: min(900px, calc(100% - 2rem));
  margin: 0 auto;
  padding: 7rem 0 4rem;
}

.policy-main h1 {
  font-size: 3.8rem;
}

.policy-panel {
  border: 1px solid var(--line);
  border-radius: 8px;
  padding: 1.25rem;
  background: var(--surface);
}

.policy-panel h2 {
  margin-top: 2rem;
  font-size: 1.7rem;
}

.policy-panel li {
  margin: 0.55rem 0;
  color: var(--muted);
  line-height: 1.6;
}

.policy-panel strong {
  color: var(--ink);
}

:focus-visible {
  outline: 3px solid var(--gold);
  outline-offset: 4px;
}

@media (max-width: 860px) {
  .topbar {
    position: static;
    padding: 0.85rem 1rem;
    align-items: flex-start;
  }

  .hero {
    min-height: 78svh;
    background:
      linear-gradient(180deg, rgba(13, 9, 18, 0.94) 0%, rgba(13, 9, 18, 0.84) 62%, rgba(13, 9, 18, 0.45) 100%),
      url("./assets/hero-background.jpg") 68% center / cover no-repeat;
  }

  .hero-inner {
    padding-top: 3.5rem;
  }

  h1 {
    font-size: 3.65rem;
  }

  h2 {
    font-size: 2.25rem;
  }

  .content-grid,
  .launch-band {
    grid-template-columns: 1fr;
  }

  .feature-grid,
  .proof-grid {
    grid-template-columns: 1fr;
  }

  .footer {
    display: block;
  }

  .footer nav {
    margin-top: 1rem;
  }
}

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