:root {
  --bg: #07111f;
  --bg-soft: #0f1d31;
  --panel: rgba(17, 28, 46, 0.84);
  --panel-border: rgba(255, 255, 255, 0.12);
  --text: #f7f9fc;
  --muted: #b6c2d8;
  --blue: #4fa3ff;
  --gold: #ffd24f;
  --mint: #84ffd3;
  --shadow: 0 26px 60px rgba(0, 0, 0, 0.28);
  --radius-lg: 28px;
  --radius-md: 20px;
  --radius-sm: 14px;
  --max: 1120px;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  font-family: "Avenir Next", "Trebuchet MS", "Segoe UI", sans-serif;
  background:
    radial-gradient(circle at top left, rgba(79, 163, 255, 0.18), transparent 30%),
    radial-gradient(circle at top right, rgba(255, 210, 79, 0.16), transparent 26%),
    linear-gradient(180deg, #08101c 0%, #091423 45%, #0d1730 100%);
  color: var(--text);
}

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

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

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

.site-header {
  position: sticky;
  top: 0;
  z-index: 20;
  backdrop-filter: blur(18px);
  background: rgba(7, 17, 31, 0.7);
  border-bottom: 1px solid rgba(255, 255, 255, 0.08);
}

.nav {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
  min-height: 78px;
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 14px;
  font-size: 1.1rem;
  font-weight: 700;
  letter-spacing: 0.02em;
}

.brand-mark {
  width: 42px;
  height: 42px;
  border-radius: 14px;
  overflow: hidden;
  box-shadow: 0 16px 28px rgba(79, 163, 255, 0.22);
}

.nav-links {
  display: inline-flex;
  align-items: center;
  gap: 18px;
  color: var(--muted);
  font-size: 0.96rem;
}

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

.hero {
  padding: 86px 0 54px;
}

.hero-grid {
  display: grid;
  grid-template-columns: 1.12fr 0.88fr;
  gap: 34px;
  align-items: center;
}

.eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 10px 16px;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.08);
  color: var(--muted);
  font-size: 0.92rem;
  margin-bottom: 20px;
}

.hero h1,
.page-hero h1 {
  margin: 0;
  font-size: clamp(3rem, 7vw, 5.7rem);
  line-height: 0.96;
  letter-spacing: -0.05em;
}

.hero h1 span,
.page-hero h1 span {
  color: var(--gold);
}

.hero-copy {
  margin: 22px 0 0;
  max-width: 640px;
  font-size: 1.14rem;
  line-height: 1.75;
  color: var(--muted);
}

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

.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 54px;
  padding: 0 22px;
  border-radius: 999px;
  border: 1px solid transparent;
  font-weight: 700;
  font-size: 0.98rem;
  transition: transform 0.18s ease, border-color 0.18s ease, background 0.18s ease;
}

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

.button-primary {
  background: linear-gradient(135deg, var(--gold), #ffb545);
  color: #091423;
  box-shadow: 0 18px 34px rgba(255, 197, 79, 0.24);
}

.button-secondary {
  border-color: rgba(255, 255, 255, 0.16);
  background: rgba(255, 255, 255, 0.04);
  color: var(--text);
}

.hero-note {
  margin-top: 16px;
  color: rgba(247, 249, 252, 0.7);
  font-size: 0.95rem;
}

.showcase {
  position: relative;
  padding: 26px;
  border-radius: 34px;
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.08), rgba(255, 255, 255, 0.03)),
    rgba(10, 19, 34, 0.9);
  border: 1px solid rgba(255, 255, 255, 0.1);
  box-shadow: var(--shadow);
}

.showcase::before {
  content: "";
  position: absolute;
  inset: 18px 18px auto auto;
  width: 118px;
  height: 118px;
  border-radius: 999px;
  background: radial-gradient(circle, rgba(79, 163, 255, 0.28), transparent 68%);
  pointer-events: none;
}

.showcase-logo {
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 18px;
}

.showcase-logo img {
  width: min(100%, 280px);
  filter: drop-shadow(0 24px 36px rgba(255, 203, 79, 0.18));
}

.phone-frame {
  padding: 20px;
  border-radius: 28px;
  background: linear-gradient(180deg, #0c1424, #101a31);
  border: 1px solid rgba(255, 255, 255, 0.08);
}

.phone-top {
  width: 120px;
  height: 9px;
  margin: 0 auto 26px;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.28);
}

.showcase-shot {
  overflow: hidden;
  border-radius: 28px;
  border: 1px solid rgba(255, 255, 255, 0.08);
  background: rgba(255, 255, 255, 0.04);
  box-shadow: 0 22px 36px rgba(0, 0, 0, 0.24);
}

.showcase-shot img {
  width: 100%;
  height: auto;
}

.stack {
  display: grid;
  gap: 16px;
}

.snapshot {
  padding: 22px;
  border-radius: 24px;
  background: rgba(255, 255, 255, 0.05);
  border: 1px solid rgba(255, 255, 255, 0.08);
}

.snapshot h3,
.card h3,
.faq-card h3 {
  margin: 0 0 10px;
  font-size: 1.15rem;
}

.snapshot p,
.card p,
.faq-card p,
.legal-copy p,
.support-card p,
.support-card li {
  margin: 0;
  color: var(--muted);
  line-height: 1.7;
}

.metrics {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 14px;
  margin-top: 18px;
}

.metric {
  padding: 16px;
  border-radius: 20px;
  background: rgba(255, 255, 255, 0.05);
  text-align: center;
}

.metric strong {
  display: block;
  font-size: 1.6rem;
}

.metric span {
  color: var(--muted);
  font-size: 0.9rem;
}

.section {
  padding: 34px 0;
}

.section-header {
  display: flex;
  align-items: end;
  justify-content: space-between;
  gap: 20px;
  margin-bottom: 18px;
}

.section-title {
  margin: 0;
  font-size: clamp(2rem, 4vw, 3rem);
  line-height: 1;
  letter-spacing: -0.04em;
}

.section-copy {
  max-width: 620px;
  color: var(--muted);
  line-height: 1.8;
}

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

.card,
.faq-card,
.support-card {
  padding: 24px;
  border-radius: var(--radius-lg);
  background: var(--panel);
  border: 1px solid var(--panel-border);
  box-shadow: var(--shadow);
}

.card-tag {
  display: inline-flex;
  align-items: center;
  padding: 8px 12px;
  border-radius: 999px;
  background: rgba(132, 255, 211, 0.12);
  color: var(--mint);
  font-size: 0.84rem;
  font-weight: 700;
  margin-bottom: 14px;
}

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

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

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

.shot-card {
  display: flex;
  flex-direction: column;
  padding: 18px;
  border-radius: var(--radius-lg);
  background: var(--panel);
  border: 1px solid var(--panel-border);
  box-shadow: var(--shadow);
}

.shot-frame {
  overflow: hidden;
  border-radius: 22px;
  background: rgba(255, 255, 255, 0.03);
  border: 1px solid rgba(255, 255, 255, 0.08);
  margin-bottom: 14px;
}

.shot-frame img {
  width: 100%;
  height: auto;
  display: block;
}

.shot-frame-widget {
  position: relative;
  aspect-ratio: 1206 / 2622;
  background: rgba(9, 18, 34, 0.96);
}

.shot-frame-widget img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center top;
  transform: translateY(18px) scale(1.01);
  transform-origin: center top;
}

.shot-frame-widget::after {
  content: "";
  position: absolute;
  inset: auto 0 0;
  height: 27%;
  background:
    linear-gradient(180deg, rgba(9, 18, 34, 0.72), rgba(9, 18, 34, 0.98) 22%),
    rgba(9, 18, 34, 0.98);
  pointer-events: none;
}

.shot-card-widget {
  justify-content: flex-start;
}

.shot-card-widget .shot-frame {
  margin-bottom: 14px;
}

.shot-card h3 {
  margin: 0 0 8px;
  font-size: 1.08rem;
}

.shot-card p {
  margin: 0;
  color: var(--muted);
  line-height: 1.7;
}

.cta-panel {
  margin: 34px 0 74px;
  padding: 34px;
  border-radius: 34px;
  background:
    linear-gradient(135deg, rgba(79, 163, 255, 0.24), rgba(255, 210, 79, 0.18)),
    rgba(12, 21, 37, 0.92);
  border: 1px solid rgba(255, 255, 255, 0.12);
  box-shadow: var(--shadow);
}

.cta-panel h2 {
  margin: 0;
  font-size: clamp(2rem, 4vw, 3.2rem);
  line-height: 1.04;
  letter-spacing: -0.04em;
}

.cta-panel p {
  max-width: 670px;
  color: var(--muted);
  line-height: 1.8;
}

.page-hero {
  padding: 70px 0 28px;
}

.page-kicker {
  color: var(--gold);
  text-transform: uppercase;
  letter-spacing: 0.16em;
  font-size: 0.82rem;
  font-weight: 700;
  margin-bottom: 18px;
}

.legal-shell {
  padding-bottom: 72px;
}

.legal-copy,
.support-grid {
  display: grid;
  gap: 18px;
}

.launch-grid {
  display: grid;
  grid-template-columns: minmax(0, 1.2fr) minmax(280px, 0.8fr);
  gap: 18px;
}

.launch-card {
  padding: 28px;
  border-radius: var(--radius-lg);
  background: var(--panel);
  border: 1px solid var(--panel-border);
  box-shadow: var(--shadow);
}

.launch-card h2 {
  margin-top: 0;
  margin-bottom: 10px;
  font-size: 1.6rem;
}

.launch-copy {
  margin: 0 0 18px;
  color: var(--muted);
  line-height: 1.7;
}

.launch-form {
  display: grid;
  gap: 14px;
}

.launch-field {
  display: grid;
  gap: 8px;
  color: var(--text);
  font-weight: 600;
}

.launch-field span {
  font-size: 0.95rem;
}

.launch-field input {
  width: 100%;
  min-height: 54px;
  padding: 0 16px;
  border-radius: 16px;
  border: 1px solid rgba(255, 255, 255, 0.14);
  background: rgba(255, 255, 255, 0.04);
  color: var(--text);
  font: inherit;
}

.launch-field input:focus {
  outline: 2px solid rgba(79, 163, 255, 0.35);
  outline-offset: 2px;
}

.launch-honeypot {
  position: absolute;
  left: -9999px;
  width: 1px;
  height: 1px;
  overflow: hidden;
}

.launch-submit[disabled] {
  opacity: 0.72;
  cursor: wait;
}

.launch-help {
  margin: 0;
  color: var(--muted);
  font-size: 0.92rem;
  line-height: 1.7;
}

.launch-help a {
  text-decoration: underline;
}

.launch-status {
  min-height: 24px;
  margin: 0;
  font-weight: 600;
}

.launch-status[data-state="success"] {
  color: var(--mint);
}

.launch-status[data-state="error"] {
  color: #ff9d9d;
}

.legal-copy section,
.support-card {
  padding: 24px;
  border-radius: var(--radius-lg);
  background: var(--panel);
  border: 1px solid var(--panel-border);
  box-shadow: var(--shadow);
}

.legal-copy h2,
.support-card h2 {
  margin-top: 0;
  margin-bottom: 14px;
  font-size: 1.45rem;
}

.legal-copy ul,
.support-card ul {
  margin: 12px 0 0;
  padding-left: 20px;
  color: var(--muted);
  line-height: 1.8;
}

.footer {
  padding: 28px 0 56px;
  color: rgba(247, 249, 252, 0.68);
}

.footer-wrap {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 18px;
  flex-wrap: wrap;
}

.footer-links {
  display: inline-flex;
  align-items: center;
  gap: 16px;
}

@media (max-width: 960px) {
  .hero-grid,
  .card-grid,
  .two-up,
  .gallery-grid,
  .launch-grid {
    grid-template-columns: 1fr;
  }

  .section-header,
  .footer-wrap {
    align-items: flex-start;
  }
}

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

  .nav {
    min-height: 70px;
  }

  .nav-links {
    display: none;
  }

  .hero {
    padding-top: 58px;
  }

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

  .showcase,
  .cta-panel,
  .card,
  .faq-card,
  .support-card,
  .legal-copy section {
    border-radius: 24px;
  }
}
