:root {
  color-scheme: light;
  --obsidian: #f5f6f3;
  --obsidian-2: #e6e8e4;
  --carbon: #d4d8d1;
  --matte: #eef0ec;
  --titanium: #1f2422;
  --titanium-soft: #4e5551;
  --titanium-dim: #747c77;
  --paper: #111412;
  --accent: #58625e;
  --accent-cool: #2f756d;
  --signal: #876149;
  --line: rgba(31, 36, 34, 0.14);
  --line-strong: rgba(31, 36, 34, 0.24);
  --shadow: 0 24px 74px rgba(63, 68, 63, 0.2);
  --mono: "SF Mono", "SFMono-Regular", "Roboto Mono", "IBM Plex Mono", ui-monospace, monospace;
  --display: "Avenir Next", "Helvetica Neue", Arial, sans-serif;
}

* {
  box-sizing: border-box;
}

html {
  min-height: 100%;
  background: var(--obsidian);
  color: var(--titanium);
  font-family: var(--mono);
  letter-spacing: 0;
  scroll-behavior: smooth;
}

body {
  min-height: 100vh;
  margin: 0;
  background:
    linear-gradient(90deg, rgba(31, 36, 34, 0.03) 1px, transparent 1px),
    linear-gradient(180deg, rgba(31, 36, 34, 0.024) 1px, transparent 1px),
    linear-gradient(135deg, #fbfbf8 0%, #e1e4df 48%, #f7f8f5 100%);
  background-size: 76px 76px, 76px 76px, auto;
}

body::before {
  position: fixed;
  inset: 0;
  z-index: -1;
  pointer-events: none;
  content: "";
  background: linear-gradient(180deg, rgba(255, 255, 255, 0.56), rgba(255, 255, 255, 0));
  opacity: 0.7;
}

a {
  color: inherit;
}

img {
  max-width: 100%;
}

.page-shell {
  width: min(1040px, calc(100% - 32px));
  margin: 0 auto;
  padding: 24px 0 42px;
}

.site-nav {
  position: sticky;
  top: 14px;
  z-index: 20;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 18px;
  margin-bottom: 22px;
  padding: 10px 12px;
  border: 1px solid var(--line);
  border-radius: 999px;
  background: rgba(246, 247, 244, 0.74);
  box-shadow: 0 18px 60px rgba(80, 86, 80, 0.16);
  backdrop-filter: blur(22px);
}

.brand-mark,
.nav-links {
  display: flex;
  align-items: center;
  gap: 10px;
  min-width: 0;
}

.brand-mark {
  text-decoration: none;
}

.brand-dot {
  display: grid;
  width: 44px;
  height: 44px;
  place-items: center;
  border: 1px solid var(--line-strong);
  overflow: hidden;
  border-radius: 14px;
  background: rgba(255, 255, 255, 0.42);
  color: transparent;
  box-shadow: 0 8px 24px rgba(62, 68, 62, 0.16);
}

.brand-dot img {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
  border-radius: 13px;
}

.brand-copy strong,
.brand-copy span {
  display: block;
}

.brand-copy strong {
  color: var(--paper);
  font-size: 0.72rem;
  letter-spacing: 0.1em;
  text-transform: uppercase;
}

.brand-copy span,
.nav-links a {
  color: var(--titanium-soft);
  font-size: 0.68rem;
}

.nav-links a {
  padding: 10px 12px;
  border-radius: 999px;
  text-decoration: none;
}

.nav-links a:hover {
  background: rgba(31, 36, 34, 0.06);
  color: var(--paper);
}

.hero {
  display: grid;
  grid-template-columns: minmax(0, 1fr) 340px;
  gap: 18px;
  min-height: 390px;
}

.hero-copy,
.launch-card,
.panel,
.legal-card {
  min-width: 0;
  border: 1px solid var(--line);
  background:
    linear-gradient(145deg, rgba(255, 255, 255, 0.7), rgba(218, 222, 216, 0.76)),
    repeating-linear-gradient(100deg, rgba(31, 36, 34, 0.035) 0 1px, transparent 1px 12px);
  box-shadow: var(--shadow);
}

.hero-copy {
  position: relative;
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  overflow: hidden;
  padding: clamp(22px, 3.2vw, 34px);
  border-radius: 28px;
}

.hero-copy::after {
  position: absolute;
  right: -12%;
  bottom: -30%;
  width: 72%;
  aspect-ratio: 1;
  border: 1px solid rgba(217, 210, 198, 0.12);
  border-radius: 50%;
  content: "";
  background:
    radial-gradient(circle, transparent 0 31%, rgba(31, 36, 34, 0.08) 32% 33%, transparent 34% 47%, rgba(47, 117, 109, 0.1) 48% 49%, transparent 50%);
  opacity: 0.38;
}

.hero-copy > * {
  position: relative;
  z-index: 1;
  min-width: 0;
  max-width: 100%;
}

.eyebrow {
  margin: 0 0 12px;
  color: var(--accent);
  font-size: 0.66rem;
  font-weight: 900;
  letter-spacing: 0.22em;
  text-transform: uppercase;
}

.status-strip {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin-bottom: auto;
}

.status-pill,
.button,
.spec-chip {
  border: 1px solid var(--line);
  background: rgba(255, 255, 255, 0.46);
}

.status-pill {
  display: inline-flex;
  gap: 8px;
  align-items: center;
  min-height: 30px;
  padding: 0 10px;
  border-radius: 999px;
  color: var(--titanium-soft);
  font-size: 0.62rem;
  font-weight: 800;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  white-space: normal;
}

.status-pill.hot {
  border-color: rgba(198, 111, 69, 0.42);
  color: var(--signal);
}

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

h1,
h2 {
  font-family: var(--display);
  color: var(--paper);
  font-weight: 900;
  text-transform: uppercase;
  overflow-wrap: break-word;
}

h1 {
  max-width: 620px;
  margin-bottom: 16px;
  font-size: clamp(2.15rem, 3.4vw, 3.35rem);
  line-height: 1.04;
  letter-spacing: 0;
}

h2 {
  margin-bottom: 16px;
  font-size: clamp(1.55rem, 2.35vw, 2.25rem);
  line-height: 1.04;
  letter-spacing: 0;
}

h3 {
  margin-bottom: 10px;
  color: var(--paper);
  font-size: 0.98rem;
  letter-spacing: 0;
}

p,
li {
  color: var(--titanium-soft);
  line-height: 1.72;
  overflow-wrap: break-word;
}

.lede {
  max-width: 620px;
  font-size: clamp(0.9rem, 1.05vw, 1rem);
}

.cta-row {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-top: 20px;
}

.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 42px;
  padding: 0 16px;
  border-radius: 999px;
  font-size: 0.68rem;
  font-weight: 900;
  letter-spacing: 0.06em;
  text-decoration: none;
  text-transform: uppercase;
}

.button.primary {
  border-color: rgba(31, 36, 34, 0.28);
  background: linear-gradient(135deg, #1c211f, #5d6762);
  color: #f7f8f5;
}

.button.secondary:hover,
.button.primary:hover {
  transform: translateY(-1px);
}

.launch-card {
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  gap: 18px;
  min-height: 390px;
  padding: clamp(20px, 2.6vw, 28px);
  border-radius: 28px;
  background:
    radial-gradient(circle at 100% 0%, rgba(47, 117, 109, 0.12), transparent 12rem),
    linear-gradient(145deg, rgba(255, 255, 255, 0.72), rgba(211, 216, 210, 0.78)),
    repeating-linear-gradient(100deg, rgba(31, 36, 34, 0.034) 0 1px, transparent 1px 14px);
}

.launch-card-top {
  display: flex;
  justify-content: space-between;
  gap: 12px;
  color: var(--titanium-dim);
  font-size: 0.6rem;
  font-weight: 800;
  letter-spacing: 0.14em;
  text-transform: uppercase;
}

.launch-card h2 {
  margin: auto 0 0;
  font-size: clamp(1.6rem, 2.35vw, 2.4rem);
}

.launch-card p {
  margin-bottom: 0;
  font-size: 0.85rem;
}

.launch-proof {
  display: grid;
  gap: 10px;
}

.proof-row {
  display: grid;
  grid-template-columns: 110px minmax(0, 1fr);
  align-items: center;
  gap: 12px;
  min-height: 54px;
  padding: 12px 14px;
  border: 1px solid var(--line);
  border-radius: 18px;
  background: rgba(255, 255, 255, 0.48);
}

.proof-row strong,
.proof-row span {
  display: block;
}

.proof-row strong {
  color: var(--paper);
  font-size: 0.74rem;
  font-weight: 900;
  letter-spacing: 0;
  text-transform: uppercase;
}

.proof-row span {
  color: var(--titanium-dim);
  font-size: 0.68rem;
  line-height: 1.4;
}

.panel,
.legal-card {
  margin-top: 18px;
  padding: clamp(18px, 2.7vw, 30px);
  border-radius: 24px;
}

.panel.split {
  display: grid;
  grid-template-columns: 0.8fr 1.2fr;
  gap: 34px;
}

.stack > *:last-child,
.panel > *:last-child,
.legal-card > *:last-child {
  margin-bottom: 0;
}

.feature-list,
.shot-grid,
.support-grid,
.legal-grid {
  display: grid;
  gap: 14px;
}

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

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

.feature-list article,
.device-table div,
.shot-grid figure,
.support-grid article,
.legal-grid article {
  border: 1px solid var(--line);
  border-radius: 24px;
  background:
    linear-gradient(145deg, rgba(255, 255, 255, 0.58), rgba(218, 222, 216, 0.58)),
    rgba(255, 255, 255, 0.24);
}

.feature-list article,
.support-grid article,
.legal-grid article {
  padding: 21px;
}

.spec-row {
  display: flex;
  flex-wrap: wrap;
  gap: 9px;
  margin: 22px 0 0;
}

.spec-chip {
  padding: 9px 11px;
  border-radius: 999px;
  color: var(--titanium-soft);
  font-size: 0.68rem;
  font-weight: 800;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.device-table {
  display: grid;
  gap: 10px;
}

.device-table div {
  display: grid;
  grid-template-columns: 230px minmax(0, 1fr);
  gap: 16px;
  padding: 18px 20px;
}

.device-table span:first-child {
  color: var(--paper);
  font-weight: 900;
  letter-spacing: 0;
}

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

.review-board {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 14px;
}

.review-board article {
  min-height: 220px;
  padding: 22px;
  border: 1px solid var(--line);
  border-radius: 24px;
  background:
    linear-gradient(145deg, rgba(255, 255, 255, 0.62), rgba(219, 224, 217, 0.62)),
    repeating-linear-gradient(0deg, rgba(31, 36, 34, 0.028) 0 1px, transparent 1px 18px);
}

.review-board span {
  display: inline-grid;
  width: 42px;
  height: 42px;
  margin-bottom: 28px;
  place-items: center;
  border: 1px solid var(--line-strong);
  border-radius: 50%;
  color: var(--accent-cool);
  font-size: 0.72rem;
  font-weight: 900;
}

.shot-grid figure {
  position: relative;
  margin: 0;
  overflow: hidden;
}

.shot-grid img {
  display: block;
  width: 100%;
  aspect-ratio: 9 / 16;
  object-fit: cover;
  object-position: top center;
  background: var(--carbon);
  filter: saturate(0.92) contrast(1.04);
}

.shot-grid figcaption {
  min-height: 58px;
  padding: 14px;
  color: var(--titanium-soft);
  font-size: 0.76rem;
}

.quote-panel {
  border-color: rgba(47, 117, 109, 0.24);
  background:
    linear-gradient(135deg, rgba(47, 117, 109, 0.12), rgba(255, 255, 255, 0.58)),
    repeating-linear-gradient(100deg, rgba(31, 36, 34, 0.03) 0 1px, transparent 1px 12px);
}

.footer {
  display: flex;
  justify-content: space-between;
  gap: 18px;
  padding: 28px 4px 0;
}

.footer p,
.footer a {
  color: var(--titanium-dim);
  font-size: 0.78rem;
}

.footer-links {
  display: flex;
  gap: 14px;
}

.legal-page {
  max-width: 860px;
}

.legal-card h1 {
  max-width: 480px;
  font-size: clamp(2rem, 4vw, 3.25rem);
}

.legal-card {
  background:
    linear-gradient(145deg, rgba(255, 255, 255, 0.78), rgba(224, 228, 222, 0.82)),
    repeating-linear-gradient(100deg, rgba(31, 36, 34, 0.028) 0 1px, transparent 1px 14px);
}

.legal-card section {
  padding-top: 22px;
  border-top: 1px solid var(--line);
}

.legal-card section:first-of-type {
  padding-top: 0;
  border-top: 0;
}

.legal-card ul {
  padding-left: 1.1rem;
}

.contact-card {
  border-color: rgba(135, 166, 155, 0.42) !important;
}

@media (prefers-reduced-motion: no-preference) {
  .button {
    transition: transform 180ms ease, background 180ms ease, border-color 180ms ease;
  }
}

@media (max-width: 920px) {
  .hero,
  .panel.split,
  .feature-list,
  .shot-grid,
  .review-board,
  .support-grid,
  .legal-grid {
    grid-template-columns: 1fr;
  }

  .hero {
    min-height: auto;
  }

  .launch-card {
    min-height: 280px;
  }

  .shot-grid img {
    aspect-ratio: 16 / 10;
  }
}

@media (max-width: 680px) {
  .page-shell {
    width: 100%;
    overflow: hidden;
    padding: 10px 10px 42px;
  }

  .site-nav {
    position: static;
    display: grid;
    grid-template-columns: 1fr;
    align-items: flex-start;
    gap: 10px;
    border-radius: 24px;
  }

  .brand-mark {
    width: 100%;
  }

  .nav-links {
    width: 100%;
    flex-wrap: wrap;
    justify-content: flex-start;
    gap: 4px;
  }

  .nav-links a {
    padding: 8px 10px;
  }

  .brand-copy span {
    display: none;
  }

  .hero-copy,
  .launch-card,
  .panel,
  .legal-card {
    border-radius: 24px;
  }

  .hero-copy {
    min-height: 330px;
    padding: 22px;
  }

  .status-strip {
    margin-bottom: 44px;
  }

  .status-pill {
    max-width: 100%;
  }

  .status-pill:nth-child(3) {
    display: none;
  }

  h1 {
    font-size: 1.72rem;
  }

  h2 {
    font-size: 1.28rem;
  }

  .launch-card h2 {
    font-size: 1.28rem;
  }

  .lede,
  .launch-card p {
    font-size: 0.78rem;
  }

  .hero-copy > *,
  .launch-card > *,
  .panel > * {
    width: 100%;
    max-width: 300px;
  }

  .device-table div,
  .proof-row {
    grid-template-columns: 1fr;
  }

  .footer {
    display: block;
  }
}
