:root {
  --bg: #060b12;
  --bg-soft: #0b1420;
  --panel: rgba(10, 18, 28, 0.82);
  --panel-strong: rgba(11, 19, 30, 0.96);
  --panel-soft: rgba(14, 24, 38, 0.74);
  --line: rgba(125, 162, 255, 0.16);
  --line-strong: rgba(125, 162, 255, 0.28);
  --text: #f6f8fd;
  --muted: #a8b5ca;
  --muted-strong: #d3def2;
  --accent: #74a3ff;
  --accent-2: #6fe0a8;
  --shadow: 0 30px 80px rgba(0, 0, 0, 0.45);
  --radius-lg: 34px;
  --radius-md: 24px;
  --radius-sm: 18px;
}

* {
  box-sizing: border-box;
}

html {
  color-scheme: dark;
}

body {
  margin: 0;
  font-family: "Manrope", sans-serif;
  color: var(--text);
  background:
    radial-gradient(circle at 10% 14%, rgba(116, 163, 255, 0.14), transparent 24%),
    radial-gradient(circle at 90% 16%, rgba(111, 224, 168, 0.1), transparent 16%),
    linear-gradient(180deg, #060b12 0%, #09111b 46%, #060b12 100%);
  min-height: 100vh;
}

body::before {
  content: "";
  position: fixed;
  inset: 0;
  pointer-events: none;
  background-image:
    linear-gradient(rgba(255,255,255,0.02) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255,255,255,0.02) 1px, transparent 1px);
  background-size: 78px 78px;
  mask-image: linear-gradient(180deg, rgba(255,255,255,0.3), transparent 86%);
  opacity: 0.36;
}

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

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

.page-shell {
  width: min(1280px, calc(100% - 36px));
  margin: 0 auto;
  position: relative;
  z-index: 1;
}

.site-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 18px;
  padding: 22px 0 16px;
  border-bottom: 1px solid var(--line);
  flex-wrap: wrap;
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 14px;
  min-width: 0;
}

.brand img {
  width: 52px;
  height: 52px;
  border-radius: 16px;
  box-shadow: 0 18px 38px rgba(0, 0, 0, 0.28);
}

.brand-copy {
  display: grid;
  gap: 2px;
  min-width: 0;
}

.brand-copy strong {
  font-family: "Space Grotesk", sans-serif;
  font-size: 1.06rem;
  letter-spacing: 0.01em;
}

.brand-copy span {
  color: var(--muted);
  font-size: 0.82rem;
  letter-spacing: 0.1em;
  text-transform: uppercase;
}

.site-nav {
  display: flex;
  align-items: center;
  gap: 10px;
  flex-wrap: wrap;
}

.nav-link {
  padding: 10px 14px;
  border-radius: 999px;
  border: 1px solid rgba(255,255,255,0.08);
  background: rgba(255,255,255,0.04);
  color: var(--muted-strong);
  font-size: 0.82rem;
  font-weight: 700;
}

.site-actions {
  display: flex;
  align-items: center;
  gap: 12px;
  flex-wrap: wrap;
}

.ghost-link,
.primary-link {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 46px;
  padding: 0 18px;
  border-radius: 999px;
  font-weight: 800;
  transition: transform 180ms ease, background-color 180ms ease, border-color 180ms ease;
  will-change: transform;
}

.ghost-link {
  color: #dbe7fb;
  background: rgba(255,255,255,0.03);
  border: 1px solid var(--line);
}

.primary-link {
  color: #05121b;
  border: 1px solid rgba(255,255,255,0.06);
  background: linear-gradient(135deg, #7ce3ac 0%, #6da7ff 100%);
  box-shadow: 0 16px 34px rgba(109, 167, 255, 0.18);
}

.ghost-link:hover,
.primary-link:hover,
.nav-link:hover,
.link-chip:hover {
  transform: translateY(-1px);
}

.hero {
  padding: 34px 0 56px;
  border-bottom: 1px solid var(--line);
}

.hero-grid {
  display: grid;
  grid-template-columns: minmax(0, 0.78fr) minmax(440px, 1.22fr);
  gap: 46px;
  align-items: center;
}

.eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 8px 12px;
  border-radius: 999px;
  border: 1px solid var(--line);
  background: rgba(255,255,255,0.04);
  color: #dce8ff;
  font-size: 0.74rem;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  font-weight: 800;
}

h1,
h2,
h3 {
  margin: 0;
  font-family: "Space Grotesk", sans-serif;
  letter-spacing: -0.03em;
}

h1 {
  font-size: clamp(2.85rem, 6vw, 4.9rem);
  line-height: 0.95;
  max-width: 11ch;
  margin-top: 18px;
}

h2 {
  font-size: clamp(2rem, 4vw, 3rem);
  line-height: 0.98;
  max-width: 12ch;
}

.hero-copy p,
.section-head p,
.story-copy p,
.cta-panel p,
.detail-card p,
.quote-card p,
.fomo-card p {
  margin: 0;
  color: var(--muted);
  line-height: 1.72;
}

.hero-copy p {
  margin-top: 18px;
  max-width: 35rem;
  font-size: 1.02rem;
}

.hero-points,
.feature-list {
  margin: 22px 0 0;
  padding: 0;
  list-style: none;
  display: grid;
  gap: 10px;
}

.hero-points li,
.feature-list li {
  display: flex;
  gap: 10px;
  color: #d8e2f6;
  line-height: 1.5;
}

.hero-points li::before,
.feature-list li::before {
  content: "";
  width: 9px;
  height: 9px;
  flex: 0 0 9px;
  border-radius: 999px;
  margin-top: 0.52em;
  background: linear-gradient(135deg, var(--accent-2), var(--accent));
  box-shadow: 0 0 0 5px rgba(111, 224, 168, 0.1);
}

.hero-actions,
.link-row {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-top: 28px;
}

.hero-note {
  margin-top: 18px;
  color: #cad6ea;
  font-size: 0.9rem;
}

.hero-stage,
.story-visual,
.cta-panel {
  position: relative;
  overflow: hidden;
  border-radius: var(--radius-lg);
  border: 1px solid var(--line);
  background:
    radial-gradient(circle at top, rgba(116, 163, 255, 0.14), transparent 34%),
    linear-gradient(180deg, rgba(12, 20, 31, 0.98), rgba(8, 14, 22, 0.96));
  box-shadow: var(--shadow);
}

.hero-stage {
  min-height: 760px;
  padding: 26px;
}

.hero-stage::after,
.story-visual::after,
.cta-panel::after {
  content: "";
  position: absolute;
  inset: 0;
  pointer-events: none;
  background: linear-gradient(180deg, rgba(255,255,255,0.04), transparent 16%, transparent 84%, rgba(255,255,255,0.02));
}

.stage-labels {
  position: relative;
  z-index: 2;
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
}

.mini-pill {
  padding: 8px 12px;
  border-radius: 999px;
  border: 1px solid rgba(255,255,255,0.08);
  background: rgba(255,255,255,0.05);
  color: #d7e4ff;
  font-size: 0.76rem;
  font-weight: 800;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.phone-stack {
  position: absolute;
  inset: 0;
}

.phone-shot,
.device {
  padding: 6px;
  border-radius: 28px;
  background: linear-gradient(180deg, rgba(255,255,255,0.06), rgba(255,255,255,0.015));
  border: 1px solid rgba(255,255,255,0.08);
  box-shadow: 0 18px 42px rgba(0, 0, 0, 0.28);
  backdrop-filter: blur(12px);
}

.phone-shot {
  position: absolute;
  width: clamp(250px, 30vw, 320px);
}

.phone-shot img,
.device img {
  width: 100%;
  border-radius: 24px;
}

.phone-shot.primary {
  top: 88px;
  left: 5%;
  transform: rotate(-4deg);
}

.phone-shot.secondary {
  top: 152px;
  right: 4%;
  transform: rotate(4deg);
}

.phone-shot.tertiary {
  bottom: 26px;
  left: 34%;
  transform: rotate(-1deg);
}

.phone-shot.tight-left {
  left: 4%;
  top: 98px;
  transform: rotate(-3deg);
}

.phone-shot.tight-right {
  right: 4%;
  top: 132px;
  transform: rotate(3deg);
}

.phone-shot.lower {
  bottom: 20px;
  left: 50%;
  transform: translateX(-50%) rotate(-1deg);
}

.section {
  padding: 74px 0;
  border-bottom: 1px solid var(--line);
}

.section:last-of-type {
  border-bottom: 0;
}

.section-head {
  display: grid;
  gap: 12px;
  max-width: 760px;
  margin-bottom: 30px;
}

.section-head p {
  max-width: 42rem;
}

.workflow-strip,
.detail-grid,
.fomo-grid,
.footer-links {
  display: grid;
  gap: 18px;
}

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

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

.fomo-grid {
  grid-template-columns: repeat(3, minmax(0, 1fr));
  margin-top: 30px;
}

.workflow-step,
.detail-card,
.quote-card,
.fomo-card {
  padding: 18px 0 0;
  border-top: 1px solid var(--line-strong);
}

.workflow-step span,
.detail-card span,
.fomo-card span {
  display: inline-block;
  margin-bottom: 12px;
  color: #c9d8f7;
  font-size: 0.74rem;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  font-weight: 800;
}

.workflow-step strong,
.detail-card strong,
.fomo-card strong {
  display: block;
  margin-bottom: 8px;
  font-size: 1.08rem;
}

.workflow-step p,
.detail-card p {
  margin: 0;
  color: var(--muted);
  line-height: 1.68;
}

.daily-lab-layout {
  display: grid;
  grid-template-columns: minmax(0, 0.76fr) minmax(420px, 1.24fr);
  gap: 32px;
  align-items: center;
}

.daily-copy {
  margin-bottom: 0;
}

.daily-copy h2 {
  max-width: 12ch;
}

.x-proof-panel {
  position: relative;
  overflow: hidden;
  padding: 22px;
  border-radius: var(--radius-lg);
  border: 1px solid var(--line);
  background:
    radial-gradient(circle at top left, rgba(111, 224, 168, 0.16), transparent 34%),
    linear-gradient(180deg, rgba(12, 20, 31, 0.98), rgba(8, 14, 22, 0.96));
  box-shadow: var(--shadow);
}

.proof-kicker {
  margin-bottom: 12px;
  color: #dce8ff;
  font-size: 0.74rem;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  font-weight: 800;
}

.x-proof-panel .twitter-tweet {
  margin: 0 auto !important;
  max-width: 550px !important;
}

.x-proof-panel iframe {
  width: 100% !important;
}

.story-grid {
  display: grid;
  gap: 26px;
}

.story-row {
  display: grid;
  grid-template-columns: minmax(0, 0.8fr) minmax(460px, 1.2fr);
  gap: 28px;
  align-items: center;
  padding: 28px;
  border-radius: 32px;
  border: 1px solid var(--line);
  background: linear-gradient(180deg, rgba(14, 22, 34, 0.9), rgba(8, 14, 22, 0.96));
  box-shadow: var(--shadow);
}

.story-row.reverse {
  grid-template-columns: minmax(460px, 1.2fr) minmax(0, 0.8fr);
}

.story-copy {
  display: grid;
  gap: 14px;
}

.story-kicker {
  color: #bfd4fd;
  font-size: 0.74rem;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  font-weight: 800;
}

.story-copy h3 {
  font-size: clamp(1.8rem, 3vw, 2.6rem);
  line-height: 1;
  max-width: 12ch;
}

.story-visual {
  min-height: 500px;
  padding: 24px;
}

.story-visual.dual {
  display: grid;
  grid-template-columns: repeat(2, minmax(250px, 290px));
  align-items: end;
  justify-content: center;
  gap: 22px;
}

.story-visual.single {
  display: flex;
  align-items: center;
  justify-content: center;
}

.story-visual.triple {
  display: grid;
  grid-template-columns: repeat(3, minmax(190px, 230px));
  align-items: end;
  justify-content: center;
  gap: 18px;
}

.device-caption {
  margin: 12px 4px 2px;
  color: #d7e4ff;
  font-size: 0.82rem;
  font-weight: 700;
  text-align: center;
}

.link-chip {
  display: inline-flex;
  align-items: center;
  min-height: 40px;
  padding: 0 14px;
  border-radius: 999px;
  border: 1px solid rgba(255,255,255,0.08);
  background: rgba(255,255,255,0.04);
  color: #dbe7fb;
  font-weight: 700;
}

.cta-panel {
  padding: 30px;
  display: grid;
  gap: 14px;
}

.cta-panel p {
  max-width: 42rem;
}

.site-footer {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  flex-wrap: wrap;
  padding: 26px 0 38px;
  color: var(--muted);
  border-top: 1px solid var(--line);
}

.footer-links {
  grid-template-columns: repeat(auto-fit, minmax(140px, max-content));
}

.footer-links a {
  padding: 8px 12px;
  border-radius: 999px;
  background: rgba(255,255,255,0.04);
  border: 1px solid rgba(255,255,255,0.08);
}

.text-page {
  padding: 34px 0 68px;
}

.text-panel {
  padding: 34px;
  border-radius: var(--radius-lg);
  border: 1px solid var(--line);
  background: linear-gradient(180deg, rgba(13, 23, 36, 0.96), rgba(8, 14, 22, 0.96));
  box-shadow: var(--shadow);
}

.text-panel h1 {
  max-width: none;
}

.text-panel h2 {
  font-size: 1.35rem;
  margin-top: 26px;
  max-width: none;
}

.text-panel p,
.text-panel li {
  color: var(--muted);
  line-height: 1.72;
}

.text-panel ul {
  padding-left: 20px;
}

@media (max-width: 1100px) {
  .hero-grid,
  .daily-lab-layout,
  .story-row,
  .story-row.reverse {
    grid-template-columns: 1fr;
  }

  .story-visual {
    min-height: 0;
  }

  .workflow-strip,
  .detail-grid,
  .fomo-grid {
    grid-template-columns: 1fr;
  }

  .hero-stage {
    min-height: 680px;
  }
}

@media (max-width: 720px) {
  .page-shell {
    width: min(100% - 24px, 560px);
  }

  .site-header {
    padding-top: 18px;
  }

  .hero {
    padding: 26px 0 42px;
  }

  .hero-stage {
    min-height: 620px;
  }

  .phone-shot {
    width: clamp(190px, 44vw, 250px);
  }

  .phone-shot.primary,
  .phone-shot.tight-left {
    left: 3%;
  }

  .phone-shot.secondary,
  .phone-shot.tight-right {
    right: 3%;
  }

  .phone-shot.tertiary {
    left: 22%;
  }

  .story-row {
    padding: 22px;
  }

  .story-visual.dual,
  .story-visual.triple {
    grid-template-columns: 1fr;
  }

  .site-footer {
    padding-bottom: 28px;
  }
}
