:root {
  color-scheme: light;
  --ink: #12121e;
  --muted: #667086;
  --line: #d9e1ee;
  --paper: linear-gradient(180deg, #f5f8fe 0%, #edf3ff 35%, #f7fbff 100%);
  --white: #ffffff;
  --lime: #adff00;
  --blue: #dfeaff;
  --mint: #def8ea;
  --amber: #fff0c8;
  --coral: #ffe5dc;
  --charcoal: #10101d;
  --shadow: 0 22px 60px rgba(18, 18, 30, 0.16);
  --glass: rgba(255, 255, 255, 0.65);
  --border: rgba(21, 31, 58, 0.08);
  --radius: 16px;
  font-family: "Manrope", "Avenir Next", "Segoe UI", Tahoma, sans-serif;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  background: var(--paper);
  color: var(--ink);
  line-height: 1.5;
  font-synthesis: none;
  text-rendering: optimizeLegibility;
}

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

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

.shell {
  max-width: 1240px;
  margin: 0 auto;
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 30;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  padding: 14px clamp(18px, 4vw, 64px);
  background: rgba(244, 247, 251, 0.9);
  border-bottom: 1px solid rgba(217, 225, 238, 0.7);
  backdrop-filter: blur(16px);
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  font-size: 19px;
  font-weight: 900;
}

.brand-mark {
  width: 36px;
  height: 36px;
  border-radius: 50%;
  border: 2px solid var(--lime);
}

.site-nav {
  display: flex;
  align-items: center;
  gap: 20px;
  color: var(--muted);
  font-size: 14px;
  font-weight: 800;
}

.site-nav a:hover {
  color: var(--ink);
}

.hero {
  position: relative;
  min-height: 84svh;
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(320px, 0.84fr);
  align-items: center;
  gap: clamp(24px, 6vw, 72px);
  overflow: hidden;
  padding: clamp(96px, 14vh, 160px) clamp(20px, 5vw, 80px) clamp(42px, 7vh, 82px);
  background: var(--charcoal);
  color: var(--white);
  border-radius: 0 0 var(--radius) var(--radius);
}

.hero::after {
  content: "";
  position: absolute;
  right: -130px;
  top: -160px;
  width: 340px;
  height: 340px;
  background: radial-gradient(circle, rgba(173, 255, 0, 0.28), transparent 70%);
  filter: blur(0px);
  z-index: 0;
}

.hero-backdrop {
  position: absolute;
  inset: 0;
  background:
    linear-gradient(110deg, rgba(16, 16, 29, 0.97) 0%, rgba(16, 16, 29, 0.72) 52%, rgba(16, 16, 29, 0.24) 100%),
    linear-gradient(0deg, rgba(16, 16, 29, 0.72) 0%, rgba(16, 16, 29, 0.02) 52%),
    #10101d;
}

.hero-copy {
  position: relative;
  z-index: 1;
  max-width: 900px;
  animation: slideUp 0.65s ease-out;
}

.eyebrow {
  margin: 0 0 16px;
  color: var(--lime);
  font-size: 13px;
  font-weight: 900;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.hero h1 {
  margin: 0;
  max-width: 880px;
  font-size: clamp(56px, 6.6vw, 88px);
  line-height: 0.9;
  letter-spacing: 0;
}

.hero-lede {
  max-width: 670px;
  margin: 28px 0 0;
  color: rgba(255, 255, 255, 0.82);
  font-size: clamp(19px, 2vw, 25px);
  line-height: 1.42;
}

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

.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 52px;
  padding: 0 24px;
  border-radius: 999px;
  border: 1px solid currentColor;
  font-size: 15px;
  font-weight: 900;
}

.button-primary {
  background: var(--lime);
  border-color: var(--lime);
  color: var(--ink);
}

.button-secondary {
  background: rgba(255, 255, 255, 0.08);
  color: var(--white);
}

.hero-proof {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-top: 24px;
}

.hero-proof span,
.status-label,
.launch-state {
  display: inline-flex;
  align-items: center;
  min-height: 32px;
  padding: 0 12px;
  border-radius: 999px;
  font-size: 12px;
  font-weight: 900;
}

.hero-proof span {
  border: 1px solid rgba(255, 255, 255, 0.18);
  background: rgba(255, 255, 255, 0.1);
  color: rgba(255, 255, 255, 0.9);
}

.hero-media {
  position: relative;
  z-index: 1;
  display: grid;
  align-items: end;
  justify-items: end;
  gap: 18px;
}

.hero-phone {
  margin: 0;
  width: min(320px, 42vw);
  border-radius: 22px;
  border: 1px solid rgba(255, 255, 255, 0.22);
  overflow: hidden;
  background: #fff;
  box-shadow: 0 30px 55px rgba(0, 0, 0, 0.35);
  animation: lift 0.7s ease-out;
}

.hero-phone img {
  width: 100%;
  display: block;
  aspect-ratio: 9/15;
  object-fit: cover;
}

.hero-phone figcaption {
  padding: 12px 14px;
  font-size: 12px;
  color: rgba(255, 255, 255, 0.86);
  background: rgba(8, 10, 17, 0.84);
}

.hero-phone-side {
  width: min(272px, 36vw);
  transform: translateY(16px);
}

.hero-phone-side img {
  object-position: top center;
}

.status-strip {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 1px;
  background: var(--line);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  margin: 0 clamp(20px, 5vw, 80px);
}

.status-card {
  display: grid;
  align-content: start;
  gap: 12px;
  min-height: 150px;
  padding: 28px clamp(20px, 4vw, 42px);
  background: var(--white);
  border-radius: var(--radius);
  margin: 1px;
}

.status-label {
  width: max-content;
  background: var(--blue);
  color: var(--ink);
}

.status-strip strong {
  font-size: clamp(20px, 2.2vw, 28px);
  line-height: 1.1;
}

.setup-section,
.runtime-section,
.privacy-section,
.launch-section,
.feature-band {
  padding: 88px clamp(20px, 5vw, 80px);
  width: min(1240px, 100%);
  margin: 0 auto;
}

.section-heading {
  max-width: 900px;
}

.section-heading p,
.feature-band-heading p {
  max-width: 760px;
}

.section-heading h2,
.runtime-copy h2,
.privacy-section h2 {
  margin: 0;
  max-width: 900px;
  font-size: clamp(36px, 5vw, 70px);
  line-height: 0.98;
  letter-spacing: 0;
}

.section-heading p,
.runtime-copy p,
.privacy-section p {
  margin: 22px 0 0;
  max-width: 820px;
  color: var(--muted);
  font-size: 19px;
  line-height: 1.55;
}

.phone-grid {
  display: grid;
  gap: 22px;
  margin-top: 40px;
}

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

.phone-card,
.overlay-proof,
.feature-card,
.launch-grid article {
  margin: 0;
  border: 1px solid var(--line);
  border-radius: 14px;
  background: var(--white);
  box-shadow: 0 16px 42px rgba(18, 18, 30, 0.08);
}

.phone-card {
  overflow: hidden;
}

.phone-card img {
  width: 100%;
  aspect-ratio: 9 / 14;
  object-fit: cover;
  object-position: top center;
  background: #eef3f9;
}

.phone-card figcaption,
.overlay-proof figcaption {
  display: grid;
  gap: 8px;
  padding: 18px;
}

.phone-card strong {
  font-size: 20px;
}

.phone-card span,
.overlay-proof figcaption,
.feature-card p,
.launch-grid p {
  color: var(--muted);
  font-size: 16px;
  line-height: 1.45;
}

.runtime-section {
  display: grid;
  grid-template-columns: minmax(0, 0.82fr) minmax(320px, 0.74fr);
  align-items: center;
  gap: clamp(30px, 6vw, 86px);
  background: var(--mint);
}

.runtime-section .section-heading {
  padding-right: 6px;
}

.check-list {
  display: grid;
  gap: 14px;
  margin: 30px 0 0;
  padding: 0;
  list-style: none;
}

.check-list li {
  position: relative;
  padding-left: 28px;
  color: var(--ink);
  font-size: 17px;
  font-weight: 760;
  line-height: 1.45;
}

.check-list li::before {
  content: "";
  position: absolute;
  left: 0;
  top: 9px;
  width: 10px;
  height: 10px;
  border-radius: 50%;
  background: var(--lime);
  box-shadow: 0 0 0 5px rgba(173, 255, 0, 0.3);
}

.overlay-proof {
  overflow: hidden;
}

.overlay-proof img {
  width: 100%;
  aspect-ratio: 9 / 15;
  object-fit: cover;
  object-position: top center;
  background: var(--charcoal);
}

.feature-band {
  display: grid;
  grid-template-columns: minmax(0, 0.9fr) repeat(3, minmax(0, 1fr));
  gap: 22px;
  align-items: stretch;
}

.feature-band-heading {
  margin-bottom: 14px;
}

.feature-band .feature-card:nth-child(2),
.feature-band .feature-card:nth-child(3),
.feature-band .feature-card:nth-child(4) {
  grid-row: 2;
}

.feature-card {
  overflow: hidden;
  padding-bottom: 20px;
}

.feature-band .feature-card:nth-of-type(1) {
  background: var(--amber);
}

.feature-band .feature-card:nth-of-type(2) {
  background: var(--blue);
}

.feature-band .feature-card:nth-of-type(3) {
  background: var(--coral);
}

.feature-card img {
  width: 100%;
  aspect-ratio: 4 / 3;
  object-fit: cover;
  object-position: top center;
  border-bottom: 1px solid rgba(18, 18, 30, 0.08);
}

.feature-card h3,
.launch-grid h3 {
  margin: 22px 20px 8px;
  font-size: 25px;
  line-height: 1.08;
}

.feature-card p,
.launch-grid p {
  margin: 0 20px;
}

.privacy-section {
  display: grid;
  grid-template-columns: minmax(0, 0.88fr) minmax(320px, 0.62fr);
  align-items: center;
  gap: 40px;
  background: var(--charcoal);
  color: var(--white);
}

.privacy-section p {
  color: rgba(255, 255, 255, 0.78);
}

.privacy-points {
  display: grid;
  gap: 12px;
}

.privacy-points span {
  display: block;
  padding: 18px 20px;
  border: 1px solid rgba(255, 255, 255, 0.14);
  border-radius: 8px;
  background: rgba(255, 255, 255, 0.08);
  font-size: 17px;
  font-weight: 900;
}

.launch-section {
  background: var(--paper);
}

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

.launch-grid article {
  min-height: 250px;
  padding: 24px 0 22px;
}

.launch-state {
  margin-left: 20px;
}

.launch-state.ready {
  background: var(--mint);
}

.launch-state.blocked {
  background: var(--amber);
}

.launch-guide {
  margin-top: 14px;
  max-width: 980px;
  color: var(--muted);
  font-size: 17px;
}

.launch-grid article {
  display: grid;
  align-content: start;
  gap: 14px;
}

.launch-checklist {
  margin: 0;
  margin-left: 38px;
  margin-right: 14px;
  padding: 0;
  display: grid;
  gap: 10px;
  color: var(--muted);
  font-size: 15px;
  line-height: 1.5;
  list-style: none;
}

.launch-checklist li {
  position: relative;
}

.launch-checklist li::before {
  content: "•";
  position: absolute;
  left: -15px;
  color: var(--ink);
}

.site-footer {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  gap: 18px;
  padding: 30px clamp(20px, 5vw, 80px);
  background: var(--charcoal);
  color: var(--white);
  font-size: 14px;
  font-weight: 800;
  margin-top: 24px;
}

@keyframes slideUp {
  from {
    opacity: 0;
    transform: translateY(28px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

@keyframes lift {
  from {
    transform: translateY(30px);
    opacity: 0;
  }
  to {
    transform: translateY(0);
    opacity: 1;
  }
}

.policy-page {
  padding: 64px clamp(20px, 5vw, 80px) 96px;
}

.policy-document {
  max-width: 900px;
  padding: clamp(28px, 5vw, 56px);
  border-radius: 8px;
  background: var(--white);
  box-shadow: var(--shadow);
}

.policy-document h1 {
  margin: 0;
  font-size: clamp(36px, 5vw, 72px);
  line-height: 0.96;
}

.policy-document h2 {
  margin: 42px 0 12px;
  font-size: 28px;
}

.policy-document p,
.policy-document li {
  color: var(--muted);
  font-size: 18px;
  line-height: 1.6;
}

.policy-updated {
  color: var(--ink);
  font-weight: 900;
}

@media (max-width: 980px) {
  .site-header {
    position: static;
    align-items: flex-start;
    flex-direction: column;
  }

  .shell {
    margin: 0;
  }

  .site-nav {
    width: 100%;
    overflow-x: auto;
    padding-bottom: 4px;
  }

  .status-strip,
  .phone-grid-three,
  .runtime-section,
  .feature-band,
  .privacy-section,
  .launch-grid {
    grid-template-columns: 1fr;
  }

  .hero-backdrop {
    background:
      linear-gradient(0deg, rgba(16, 16, 29, 0.9) 0%, rgba(16, 16, 29, 0.54) 62%, rgba(16, 16, 29, 0.2) 100%),
      #10101d;
  }

  .hero {
    grid-template-columns: 1fr;
    min-height: 860px;
    align-items: end;
    padding-top: 320px;
  }

  .hero-media {
    position: relative;
    width: 100%;
    justify-content: center;
    transform: translateY(8px);
  }

  .hero-phone-main,
  .hero-phone-side {
    width: min(330px, 80vw);
  }

  .hero-phone-main {
    margin-right: 16px;
  }

  .hero-phone-side {
    transform: translateY(24px);
    margin-left: 16px;
  }
}

@media (max-width: 560px) {
  .hero,
  .setup-section,
  .runtime-section,
  .privacy-section,
  .launch-section,
  .feature-band {
    padding-left: 18px;
    padding-right: 18px;
  }

  .hero {
    min-height: 770px;
  }

  .hero h1 {
    font-size: clamp(44px, 16vw, 58px);
  }

  .hero-proof span {
    width: 100%;
    justify-content: center;
  }

  .hero-media {
    transform: none;
  }

  .hero-phone {
    width: min(280px, 84vw);
  }
}
