:root {
  color-scheme: light dark;
  --night: #0e0d17;
  --night-soft: #171426;
  --surface: #1f1a38;
  --surface-raised: #27213f;
  --mist: #f5f0e3;
  --lavender: #c2b3f0;
  --amber: #ffad45;
  --amber-ink: #271608;
  --line: rgba(245, 240, 227, 0.14);
  --muted: rgba(245, 240, 227, 0.68);
  --shadow: rgba(7, 5, 17, 0.42);
  --content: 1180px;
  --radius: 18px;
  --font-sans: "Avenir Next", Avenir, "SF Pro Text", -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  --font-display: "Iowan Old Style", "Palatino Linotype", Palatino, Georgia, serif;
}

* {
  box-sizing: border-box;
}

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

body {
  margin: 0;
  min-width: 320px;
  background: var(--night);
  color: var(--mist);
  font-family: var(--font-sans);
  font-size: 16px;
  line-height: 1.6;
  text-rendering: optimizeLegibility;
  -webkit-font-smoothing: antialiased;
}

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

a {
  color: inherit;
  text-decoration-thickness: 1px;
  text-underline-offset: 0.22em;
}

a:focus-visible,
button:focus-visible {
  outline: 3px solid var(--amber);
  outline-offset: 4px;
}

.skip-link {
  position: fixed;
  top: 10px;
  left: 10px;
  z-index: 10;
  padding: 10px 14px;
  border-radius: 10px;
  background: var(--amber);
  color: var(--amber-ink);
  font-weight: 700;
  transform: translateY(-160%);
}

.skip-link:focus {
  transform: translateY(0);
}

.site-header {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  z-index: 3;
  display: grid;
  grid-template-columns: 1fr auto 1fr;
  align-items: center;
  width: min(calc(100% - 48px), var(--content));
  min-height: 72px;
  margin-inline: auto;
  border-bottom: 1px solid rgba(245, 240, 227, 0.2);
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 11px;
  width: max-content;
  color: var(--mist);
  font-weight: 700;
  letter-spacing: -0.02em;
  text-decoration: none;
}

.brand img {
  border-radius: 10px;
  box-shadow: 0 8px 24px rgba(9, 7, 19, 0.34);
}

.primary-nav {
  display: flex;
  align-items: center;
  gap: clamp(18px, 3vw, 36px);
  font-size: 0.9rem;
  font-weight: 600;
}

.primary-nav a {
  color: rgba(245, 240, 227, 0.78);
  text-decoration: none;
  transition: color 180ms ease;
}

.primary-nav a:hover,
.primary-nav a[aria-current="page"] {
  color: var(--mist);
}

.nav-cta {
  justify-self: end;
  display: inline-flex;
  align-items: center;
  min-height: 42px;
  padding: 0 18px;
  border: 1px solid rgba(245, 240, 227, 0.28);
  border-radius: 999px;
  background: rgba(14, 13, 23, 0.5);
  color: var(--mist);
  font-size: 0.86rem;
  font-weight: 700;
  text-decoration: none;
  backdrop-filter: blur(14px);
  -webkit-backdrop-filter: blur(14px);
  transition: transform 180ms ease, border-color 180ms ease, background 180ms ease;
}

.nav-cta:hover {
  border-color: rgba(255, 173, 69, 0.7);
  background: rgba(31, 26, 56, 0.82);
  transform: translateY(-1px);
}

.nav-cta:active,
.button:active {
  transform: translateY(1px) scale(0.99);
}

.nav-status {
  cursor: default;
}

.nav-status:hover {
  border-color: rgba(245, 240, 227, 0.28);
  background: rgba(14, 13, 23, 0.5);
  transform: none;
}

.hero {
  position: relative;
  isolation: isolate;
  display: grid;
  grid-template-columns: minmax(0, 1.15fr) minmax(280px, 0.85fr);
  align-items: center;
  min-height: 100dvh;
  overflow: hidden;
  padding: 116px max(24px, calc((100vw - var(--content)) / 2)) 72px;
}

.hero-photo,
.hero-shade {
  position: absolute;
  inset: 0;
  z-index: -2;
  width: 100%;
  height: 100%;
}

.hero-photo {
  object-fit: cover;
  object-position: center;
}

.hero-shade {
  z-index: -1;
  background:
    linear-gradient(90deg, rgba(9, 8, 15, 0.96) 0%, rgba(9, 8, 15, 0.82) 38%, rgba(9, 8, 15, 0.2) 78%),
    linear-gradient(0deg, var(--night) 0%, transparent 24%, rgba(9, 8, 15, 0.24) 100%);
}

.hero-copy {
  align-self: center;
  max-width: 660px;
}

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

.hero h1 {
  max-width: 720px;
  margin: 0;
  color: var(--mist);
  font-family: var(--font-display);
  font-size: clamp(3.25rem, 7vw, 6.8rem);
  font-weight: 600;
  letter-spacing: -0.065em;
  line-height: 0.91;
}

.hero-summary {
  max-width: 520px;
  margin: 30px 0 0;
  color: rgba(245, 240, 227, 0.8);
  font-size: clamp(1.05rem, 1.6vw, 1.28rem);
  line-height: 1.5;
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-top: 34px;
}

.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 52px;
  padding: 0 22px;
  border: 1px solid transparent;
  border-radius: 999px;
  font-size: 0.92rem;
  font-weight: 800;
  line-height: 1;
  text-decoration: none;
  white-space: nowrap;
  transition: transform 180ms ease, background 180ms ease, border-color 180ms ease;
}

.button-primary {
  background: var(--amber);
  color: var(--amber-ink);
  box-shadow: 0 16px 38px rgba(128, 68, 12, 0.26);
}

.button-primary:hover {
  background: #ffc06f;
  transform: translateY(-2px);
}

.button-secondary {
  border-color: rgba(245, 240, 227, 0.28);
  background: rgba(14, 13, 23, 0.54);
  color: var(--mist);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
}

.button-secondary:hover {
  border-color: rgba(245, 240, 227, 0.55);
  background: rgba(31, 26, 56, 0.78);
  transform: translateY(-2px);
}

.phone-stage {
  align-self: end;
  justify-self: end;
  width: min(100%, 400px);
  padding-right: clamp(0px, 3vw, 38px);
}

.phone-shell {
  position: relative;
  width: min(100%, 338px);
  margin-left: auto;
  padding: 9px;
  border: 1px solid rgba(245, 240, 227, 0.25);
  border-radius: 44px;
  background: rgba(8, 7, 14, 0.88);
  box-shadow: 0 34px 90px rgba(2, 1, 8, 0.62), inset 0 1px 0 rgba(255, 255, 255, 0.16);
  transform: rotate(2deg);
}

.phone-shell::before {
  content: "";
  position: absolute;
  top: 17px;
  left: 50%;
  z-index: 1;
  width: 31%;
  height: 24px;
  border-radius: 999px;
  background: #08070d;
  transform: translateX(-50%);
}

.phone-shell img {
  width: 100%;
  border-radius: 35px;
}

.proof-strip {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  width: min(calc(100% - 48px), var(--content));
  margin: 0 auto;
  border-bottom: 1px solid var(--line);
}

.proof-strip div {
  display: flex;
  flex-direction: column;
  gap: 2px;
  padding: 30px clamp(14px, 3vw, 44px);
  border-right: 1px solid var(--line);
}

.proof-strip div:first-child {
  padding-left: 0;
}

.proof-strip div:last-child {
  border-right: 0;
}

.proof-strip strong {
  color: var(--mist);
  font-family: var(--font-display);
  font-size: 1.35rem;
  font-weight: 600;
}

.proof-strip span {
  color: var(--muted);
  font-size: 0.82rem;
}

.section {
  width: min(calc(100% - 48px), var(--content));
  margin-inline: auto;
  padding-block: clamp(88px, 12vw, 160px);
}

.section h2 {
  margin: 0;
  font-family: var(--font-display);
  font-size: clamp(2.6rem, 5vw, 5.2rem);
  font-weight: 600;
  letter-spacing: -0.055em;
  line-height: 0.98;
}

.section-intro {
  max-width: 850px;
}

.section-intro p,
.product-copy > p,
.privacy-panel p {
  max-width: 650px;
  margin: 26px 0 0;
  color: var(--muted);
  font-size: 1.08rem;
}

.story-grid {
  display: grid;
  grid-template-columns: 1.45fr 1fr;
  margin-top: 78px;
  border-top: 1px solid var(--line);
}

.story-grid article {
  position: relative;
  min-height: 250px;
  padding: 34px 34px 36px 0;
  border-bottom: 1px solid var(--line);
}

.story-grid article:nth-child(2),
.story-grid article:nth-child(3) {
  padding-left: clamp(30px, 5vw, 72px);
  border-left: 1px solid var(--line);
}

.story-grid .story-lead {
  grid-row: span 2;
  min-height: 500px;
  padding-top: 56px;
}

.story-number {
  display: block;
  color: var(--amber);
  font-size: 0.72rem;
  font-weight: 800;
  letter-spacing: 0.15em;
}

.story-grid h3 {
  max-width: 480px;
  margin: 28px 0 0;
  color: var(--mist);
  font-family: var(--font-display);
  font-size: clamp(1.9rem, 3vw, 3.4rem);
  font-weight: 600;
  letter-spacing: -0.045em;
  line-height: 1.04;
}

.story-grid p {
  max-width: 490px;
  margin: 18px 0 0;
  color: var(--muted);
}

.product-view {
  display: grid;
  grid-template-columns: minmax(280px, 0.8fr) minmax(0, 1.2fr);
  align-items: center;
  gap: clamp(52px, 11vw, 150px);
}

.product-frame {
  position: relative;
  width: min(100%, 390px);
  margin-inline: auto;
  padding: 13px;
  border: 1px solid rgba(245, 240, 227, 0.22);
  border-radius: 48px;
  background: var(--surface-raised);
  box-shadow: 0 34px 84px var(--shadow);
}

.product-frame::after {
  content: "";
  position: absolute;
  inset: auto 12% -8% 12%;
  height: 16%;
  border-radius: 50%;
  background: rgba(255, 173, 69, 0.25);
  filter: blur(46px);
  z-index: -1;
}

.product-frame img {
  width: 100%;
  border-radius: 36px;
}

.product-copy h2 {
  max-width: 670px;
}

.product-details {
  margin: 48px 0 0;
}

.product-details div {
  display: grid;
  grid-template-columns: minmax(120px, 0.6fr) 1.4fr;
  gap: 24px;
  padding: 18px 0;
  border-bottom: 1px solid var(--line);
}

.product-details dt {
  color: var(--mist);
  font-weight: 700;
}

.product-details dd {
  margin: 0;
  color: var(--muted);
}

.privacy-panel {
  display: grid;
  grid-template-columns: 0.68fr 1.32fr;
  align-items: center;
  gap: clamp(44px, 10vw, 150px);
  padding-inline: clamp(28px, 7vw, 90px);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: var(--night-soft);
  box-shadow: 0 26px 76px rgba(6, 4, 14, 0.2);
}

.privacy-mark {
  position: relative;
  display: grid;
  place-items: center;
  width: min(100%, 280px);
  aspect-ratio: 1;
  margin-inline: auto;
}

.privacy-ring,
.privacy-core {
  position: absolute;
  border-radius: 50%;
}

.privacy-ring {
  inset: 0;
  border: 1px solid rgba(255, 173, 69, 0.52);
  box-shadow: inset 0 0 54px rgba(255, 173, 69, 0.05);
}

.privacy-ring::before,
.privacy-ring::after {
  content: "";
  position: absolute;
  inset: 16%;
  border: 1px solid rgba(194, 179, 240, 0.23);
  border-radius: 50%;
}

.privacy-ring::after {
  inset: 34%;
}

.privacy-core {
  width: 18%;
  aspect-ratio: 1;
  background: var(--amber);
  box-shadow: 0 0 0 14px rgba(255, 173, 69, 0.08);
}

.privacy-panel h2 {
  max-width: 720px;
  font-size: clamp(2.5rem, 4.5vw, 4.7rem);
}

.text-link {
  display: inline-flex;
  margin-top: 28px;
  color: var(--amber);
  font-weight: 800;
  text-decoration: none;
}

.text-link::after {
  content: "↗";
  margin-left: 8px;
  font-size: 0.92em;
  transition: transform 180ms ease;
}

.text-link:hover::after {
  transform: translate(2px, -2px);
}

.closing {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  min-height: 70dvh;
  justify-content: center;
  border-top: 1px solid var(--line);
}

.closing > p {
  margin: 0 0 22px;
  color: var(--amber);
  font-weight: 700;
}

.closing h2 {
  max-width: 900px;
}

.closing h1 {
  max-width: 900px;
  margin: 0;
  font-family: var(--font-display);
  font-size: clamp(2.8rem, 6vw, 5.6rem);
  font-weight: 600;
  letter-spacing: -0.055em;
  line-height: 0.98;
}

.closing .button {
  margin-top: 38px;
}

.launch-status {
  display: inline-flex;
  margin-top: 38px;
  padding: 12px 0;
  border-bottom: 1px solid rgba(255, 173, 69, 0.54);
  color: var(--amber);
  font-weight: 800;
}

.site-footer {
  display: grid;
  grid-template-columns: 1fr auto 1fr;
  align-items: center;
  gap: 32px;
  width: min(calc(100% - 48px), var(--content));
  min-height: 136px;
  margin-inline: auto;
  border-top: 1px solid var(--line);
  color: var(--muted);
  font-size: 0.8rem;
}

.footer-brand {
  display: flex;
  align-items: center;
  gap: 12px;
}

.footer-brand img {
  border-radius: 9px;
}

.footer-brand div {
  display: flex;
  flex-direction: column;
  line-height: 1.35;
}

.footer-brand strong {
  color: var(--mist);
}

.site-footer nav {
  display: flex;
  gap: 24px;
}

.site-footer a {
  text-decoration: none;
}

.site-footer a:hover {
  color: var(--mist);
}

.site-footer > p {
  justify-self: end;
  margin: 0;
  text-align: right;
}

.reveal {
  animation: reveal-up 760ms cubic-bezier(0.16, 1, 0.3, 1) both;
}

.reveal-late {
  animation-delay: 140ms;
}

@keyframes reveal-up {
  from { opacity: 0; transform: translateY(22px); }
  to { opacity: 1; transform: translateY(0); }
}

/* Legal pages */
.legal-header {
  position: relative;
}

.legal-layout {
  display: grid;
  grid-template-columns: minmax(250px, 0.72fr) minmax(0, 1.28fr);
  gap: clamp(54px, 10vw, 150px);
  width: min(calc(100% - 48px), var(--content));
  margin-inline: auto;
  padding-block: clamp(72px, 9vw, 130px);
}

.legal-aside {
  position: sticky;
  top: 48px;
  align-self: start;
}

.legal-aside h1 {
  margin: 0;
  font-family: var(--font-display);
  font-size: clamp(3rem, 5.4vw, 5.5rem);
  font-weight: 600;
  letter-spacing: -0.06em;
  line-height: 0.96;
}

.legal-aside > p:not(.eyebrow) {
  max-width: 390px;
  margin: 28px 0 0;
  color: var(--muted);
}

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

.legal-document section {
  padding: 0 0 44px;
}

.legal-document section + section {
  padding-top: 44px;
  border-top: 1px solid var(--line);
}

.legal-document h2 {
  margin: 0 0 22px;
  color: var(--mist);
  font-family: var(--font-display);
  font-size: clamp(1.7rem, 2.6vw, 2.4rem);
  font-weight: 600;
  letter-spacing: -0.035em;
  line-height: 1.12;
}

.legal-document h3 {
  margin: 30px 0 10px;
  color: var(--mist);
  font-size: 1rem;
}

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

.legal-document p {
  margin: 0 0 18px;
}

.legal-document ul {
  margin: 16px 0 22px;
  padding-left: 1.2rem;
}

.legal-document li {
  margin: 10px 0;
  padding-left: 5px;
}

.legal-document a,
.legal-document address a {
  color: var(--amber);
}

.legal-document address {
  margin-top: 24px;
  color: var(--mist);
  font-style: normal;
  line-height: 1.8;
}

.legal-footer .brand {
  font-size: 0.82rem;
}

@media (max-width: 860px) {
  .site-header {
    grid-template-columns: 1fr auto;
  }

  .primary-nav {
    display: none;
  }

  .hero {
    grid-template-columns: 1fr minmax(220px, 0.52fr);
  }

  .hero h1 {
    font-size: clamp(3.25rem, 9.4vw, 5.5rem);
  }

  .phone-stage {
    margin-right: -70px;
  }

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

  .story-grid .story-lead {
    grid-column: 1 / -1;
    grid-row: auto;
    min-height: 340px;
  }

  .story-grid article:nth-child(2) {
    padding-left: 0;
    border-left: 0;
  }

  .story-grid article:nth-child(3) {
    padding-left: 30px;
  }

  .product-view,
  .privacy-panel {
    gap: 48px;
  }

  .site-footer {
    grid-template-columns: 1fr 1fr;
    padding-block: 30px;
  }

  .site-footer nav {
    justify-self: end;
  }

  .site-footer > p {
    grid-column: 1 / -1;
    justify-self: start;
    text-align: left;
  }

  .legal-layout {
    grid-template-columns: 1fr;
  }

  .legal-aside {
    position: static;
    max-width: 680px;
  }
}

@media (max-width: 650px) {
  .site-header,
  .section,
  .proof-strip,
  .site-footer,
  .legal-layout {
    width: min(calc(100% - 32px), var(--content));
  }

  .site-header {
    min-height: 66px;
  }

  .brand span {
    font-size: 0.9rem;
  }

  .brand img {
    width: 34px;
    height: 34px;
  }

  .nav-cta {
    min-height: 38px;
    padding-inline: 14px;
    font-size: 0.78rem;
  }

  .hero {
    display: flex;
    flex-direction: column;
    align-items: stretch;
    justify-content: flex-end;
    min-height: 100dvh;
    padding: 104px 16px 48px;
  }

  .hero-photo {
    object-position: 65% center;
  }

  .hero-shade {
    background:
      linear-gradient(0deg, rgba(9, 8, 15, 0.99) 0%, rgba(9, 8, 15, 0.84) 52%, rgba(9, 8, 15, 0.26) 100%),
      linear-gradient(90deg, rgba(9, 8, 15, 0.58), transparent);
  }

  .hero h1 {
    font-size: clamp(3.35rem, 16vw, 5rem);
  }

  .hero-summary {
    margin-top: 22px;
    font-size: 1rem;
  }

  .hero-actions {
    margin-top: 26px;
  }

  .button {
    min-height: 50px;
    padding-inline: 18px;
  }

  .phone-stage {
    display: none;
  }

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

  .proof-strip div,
  .proof-strip div:first-child {
    padding: 18px 0;
    border-right: 0;
    border-bottom: 1px solid var(--line);
  }

  .proof-strip div:last-child {
    border-bottom: 0;
  }

  .section {
    padding-block: 84px;
  }

  .section h2 {
    font-size: clamp(2.6rem, 12vw, 4rem);
  }

  .story-grid {
    grid-template-columns: 1fr;
    margin-top: 52px;
  }

  .story-grid .story-lead,
  .story-grid article {
    min-height: 0;
    padding: 34px 0;
  }

  .story-grid article:nth-child(3) {
    padding-left: 0;
    border-left: 0;
  }

  .product-view,
  .privacy-panel {
    grid-template-columns: 1fr;
  }

  .product-frame {
    width: min(88%, 340px);
  }

  .product-details div {
    grid-template-columns: 1fr;
    gap: 4px;
  }

  .privacy-panel {
    padding: 56px 24px;
  }

  .privacy-mark {
    width: min(64vw, 220px);
  }

  .closing {
    min-height: 62dvh;
  }

  .site-footer {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    gap: 24px;
    padding-block: 36px;
  }

  .site-footer nav {
    flex-wrap: wrap;
    gap: 12px 22px;
  }

  .legal-layout {
    padding-block: 64px;
  }

  .legal-aside h1 {
    font-size: clamp(3rem, 15vw, 4.7rem);
  }

  .legal-document section {
    padding-bottom: 34px;
  }

  .legal-document section + section {
    padding-top: 34px;
  }
}

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

  *,
  *::before,
  *::after {
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
    scroll-behavior: auto !important;
    transition-duration: 0.01ms !important;
  }
}

@media (prefers-reduced-transparency: reduce) {
  .nav-cta,
  .button-secondary {
    background: var(--night-soft);
    backdrop-filter: none;
    -webkit-backdrop-filter: none;
  }
}

@media (prefers-color-scheme: light) {
  :root {
    --night: #f2f1f5;
    --night-soft: #e7e5ed;
    --surface: #dcd9e7;
    --surface-raised: #faf9fc;
    --mist: #181521;
    --lavender: #5d536f;
    --line: rgba(24, 21, 33, 0.15);
    --muted: rgba(24, 21, 33, 0.7);
    --shadow: rgba(62, 48, 87, 0.18);
  }

  .hero,
  .site-header:not(.legal-header) {
    --mist: #f5f0e3;
    --muted: rgba(245, 240, 227, 0.72);
  }

  .hero-shade {
    background:
      linear-gradient(90deg, rgba(9, 8, 15, 0.96) 0%, rgba(9, 8, 15, 0.82) 38%, rgba(9, 8, 15, 0.2) 78%),
      linear-gradient(0deg, #0e0d17 0%, transparent 24%, rgba(9, 8, 15, 0.24) 100%);
  }

  .phone-shell {
    background: #0e0d17;
  }

  .nav-cta {
    background: rgba(255, 255, 255, 0.75);
    color: #181521;
  }

  .site-header:not(.legal-header) .nav-cta {
    background: rgba(14, 13, 23, 0.5);
    color: #f5f0e3;
  }

  .privacy-core {
    box-shadow: 0 0 0 14px rgba(191, 110, 17, 0.08);
  }
}
