:root {
  --bg: #f5efe4;
  --bg-deep: #0f172a;
  --surface: rgba(255, 255, 255, 0.58);
  --surface-strong: #fff9ef;
  --surface-dark: linear-gradient(145deg, rgba(15, 23, 42, 0.96), rgba(22, 78, 99, 0.9));
  --text: #122033;
  --text-soft: #46556b;
  --text-inverse: #f8fbff;
  --line: rgba(18, 32, 51, 0.12);
  --accent: #00a7a3;
  --accent-strong: #0676d9;
  --accent-warm: #d97706;
  --shadow: 0 24px 70px rgba(18, 32, 51, 0.12);
  --radius-xl: 32px;
  --radius-lg: 24px;
  --radius-md: 18px;
  --max-width: 1200px;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  color: var(--text);
  background:
    radial-gradient(circle at top left, rgba(0, 167, 163, 0.14), transparent 30%),
    radial-gradient(circle at 85% 12%, rgba(217, 119, 6, 0.12), transparent 24%),
    linear-gradient(180deg, #f7f1e6 0%, #f4ede1 40%, #efe7db 100%);
  font-family: "Plus Jakarta Sans", sans-serif;
}

body::before {
  content: "";
  position: fixed;
  inset: 0;
  background-image:
    linear-gradient(rgba(18, 32, 51, 0.04) 1px, transparent 1px),
    linear-gradient(90deg, rgba(18, 32, 51, 0.04) 1px, transparent 1px);
  background-size: 48px 48px;
  mask-image: linear-gradient(180deg, rgba(0, 0, 0, 0.38), transparent 88%);
  pointer-events: none;
}

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

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

.site-shell {
  position: relative;
  width: min(calc(100% - 32px), var(--max-width));
  margin: 20px auto 40px;
}

.topbar,
.section,
.site-footer {
  backdrop-filter: blur(14px);
}

.topbar {
  position: sticky;
  top: 16px;
  z-index: 10;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 18px;
  margin-bottom: 18px;
  padding: 16px 22px;
  border: 1px solid rgba(255, 255, 255, 0.55);
  border-radius: 999px;
  background: rgba(255, 249, 239, 0.74);
  box-shadow: 0 14px 44px rgba(18, 32, 51, 0.08);
}

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

.brand-mark {
  width: 40px;
  height: 40px;
  border-radius: 12px;
  box-shadow: 0 10px 24px rgba(6, 118, 217, 0.18);
}

.brand-wordmark,
h1,
h2,
h3,
.eyebrow,
.panel-label {
  font-family: "Space Grotesk", sans-serif;
}

.brand-wordmark {
  font-size: 1.02rem;
  font-weight: 700;
  letter-spacing: 0.04em;
}

.topnav {
  display: flex;
  gap: 18px;
  color: var(--text-soft);
  font-size: 0.95rem;
}

.topnav a:hover,
.footer-links a:hover {
  color: var(--accent-strong);
}

.section {
  position: relative;
  margin-bottom: 18px;
  padding: 34px;
  border: 1px solid rgba(255, 255, 255, 0.58);
  border-radius: var(--radius-xl);
  background: linear-gradient(180deg, rgba(255, 249, 239, 0.88), rgba(255, 255, 255, 0.56));
  box-shadow: var(--shadow);
  overflow: hidden;
}

.hero {
  display: grid;
  grid-template-columns: 1.04fr 0.96fr;
  gap: 28px;
  min-height: 760px;
}

.hero::after,
.cta-panel::after,
.workflow-band::before {
  content: "";
  position: absolute;
  border-radius: 999px;
  filter: blur(10px);
  pointer-events: none;
}

.hero::after {
  width: 300px;
  height: 300px;
  right: -80px;
  top: -60px;
  background: radial-gradient(circle, rgba(0, 167, 163, 0.2), transparent 72%);
}

.hero-copy {
  display: flex;
  flex-direction: column;
  justify-content: center;
  gap: 20px;
  padding-right: 8px;
}

.eyebrow,
.panel-label,
.trust-kicker {
  display: inline-flex;
  width: fit-content;
  align-items: center;
  gap: 8px;
  color: var(--accent-strong);
  text-transform: uppercase;
  letter-spacing: 0.12em;
  font-size: 0.74rem;
  font-weight: 700;
}

h1 {
  margin: 0;
  max-width: 13ch;
  font-size: clamp(3.2rem, 8vw, 6rem);
  line-height: 0.95;
  letter-spacing: -0.05em;
}

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

h3 {
  margin: 0;
  font-size: 1.28rem;
  letter-spacing: -0.03em;
}

p {
  margin: 0;
  color: var(--text-soft);
  line-height: 1.7;
}

.hero-lead,
.section-heading p,
.cta-panel p {
  max-width: 62ch;
  font-size: 1.05rem;
}

.hero-actions,
.cta-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
}

.launch-pill {
  display: grid;
  gap: 6px;
  width: fit-content;
  max-width: 520px;
  padding: 14px 16px;
  border: 1px solid rgba(18, 32, 51, 0.1);
  border-radius: 20px;
  background: rgba(255, 255, 255, 0.72);
  box-shadow: 0 10px 24px rgba(18, 32, 51, 0.06);
}

.launch-pill strong {
  font-family: "Space Grotesk", sans-serif;
  font-size: 0.86rem;
  letter-spacing: 0.04em;
}

.launch-pill span {
  color: var(--text-soft);
}

.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 52px;
  padding: 0 20px;
  border-radius: 999px;
  border: 1px solid transparent;
  font-weight: 700;
  transition: transform 180ms ease, box-shadow 180ms ease, background 180ms ease;
}

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

.button-small {
  min-height: 44px;
  padding: 0 16px;
}

.button-primary {
  color: var(--text-inverse);
  background: linear-gradient(135deg, var(--accent-strong), var(--accent));
  box-shadow: 0 16px 32px rgba(6, 118, 217, 0.25);
}

.button-secondary,
.button-ghost {
  border-color: rgba(18, 32, 51, 0.1);
  background: rgba(255, 255, 255, 0.58);
}

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

.hero-metrics article,
.feature-card,
.workflow-card,
.showcase-card,
.story-panel,
.compare-points article,
.faq-item {
  border: 1px solid rgba(18, 32, 51, 0.08);
  background: rgba(255, 255, 255, 0.66);
  box-shadow: 0 10px 24px rgba(18, 32, 51, 0.06);
}

.hero-metrics article {
  padding: 18px;
  border-radius: 22px;
}

.hero-metrics strong {
  display: block;
  margin-bottom: 6px;
  font-size: 1.2rem;
}

.hero-stage {
  position: relative;
  min-height: 660px;
}

.signal-card {
  position: absolute;
  z-index: 3;
  width: 220px;
  padding: 18px;
  border-radius: 22px;
  color: var(--text-inverse);
  background: linear-gradient(160deg, rgba(15, 23, 42, 0.92), rgba(8, 47, 73, 0.86));
  box-shadow: 0 24px 40px rgba(15, 23, 42, 0.24);
}

.signal-card span {
  display: block;
  margin-bottom: 8px;
  color: rgba(240, 248, 255, 0.72);
  font-size: 0.8rem;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.signal-card strong {
  line-height: 1.3;
}

.signal-card-top {
  left: 8px;
  top: 30px;
}

.signal-card-bottom {
  right: 8px;
  bottom: 34px;
}

.device {
  position: absolute;
  overflow: hidden;
  border-radius: 34px;
  background: #07111f;
  box-shadow: 0 30px 80px rgba(18, 32, 51, 0.2);
}

.device::before {
  content: "";
  position: absolute;
  inset: 10px 38%;
  z-index: 2;
  height: 18px;
  border-radius: 999px;
  background: rgba(11, 19, 33, 0.88);
}

.device img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.device-main {
  top: 80px;
  right: 60px;
  width: min(350px, 70%);
  height: 610px;
  transform: rotate(-4deg);
}

.device-side {
  width: min(220px, 42%);
  height: 430px;
}

.device-security {
  left: 24px;
  top: 192px;
  transform: rotate(-12deg);
}

.device-stealth {
  right: 0;
  top: 248px;
  transform: rotate(11deg);
}

.trust-strip,
.story-grid,
.workflow-grid,
.compare-strip,
.site-footer {
  display: grid;
  gap: 18px;
}

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

.trust-item {
  padding-right: 12px;
}

.story-grid {
  grid-template-columns: 1.08fr 0.92fr;
}

.story-panel {
  padding: 28px;
  border-radius: 28px;
}

.story-panel-dark {
  color: var(--text-inverse);
  background: var(--surface-dark);
}

.story-panel-dark p,
.story-panel-dark .panel-label {
  color: rgba(248, 251, 255, 0.8);
}

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

.vault-list li {
  position: relative;
  padding-left: 18px;
  color: var(--text);
  font-weight: 600;
}

.vault-list li::before {
  content: "";
  position: absolute;
  left: 0;
  top: 0.72em;
  width: 8px;
  height: 8px;
  border-radius: 999px;
  background: linear-gradient(135deg, var(--accent-strong), var(--accent-warm));
}

.section-heading {
  display: grid;
  gap: 14px;
  margin-bottom: 28px;
}

.feature-grid,
.showcase-grid,
.availability-grid {
  display: grid;
  gap: 18px;
}

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

.feature-card {
  padding: 24px;
  border-radius: 24px;
}

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

.availability-card {
  padding: 24px;
  border: 1px solid rgba(18, 32, 51, 0.08);
  border-radius: 24px;
  background: rgba(255, 255, 255, 0.66);
  box-shadow: 0 10px 24px rgba(18, 32, 51, 0.06);
}

.availability-card-live {
  background: linear-gradient(180deg, rgba(0, 167, 163, 0.12), rgba(255, 255, 255, 0.7));
}

.availability-card a {
  color: var(--accent-strong);
  font-weight: 700;
  text-decoration: underline;
  text-underline-offset: 3px;
  text-decoration-thickness: 2px;
}

.availability-card a:hover {
  color: var(--accent);
}

.availability-label {
  display: inline-flex;
  margin-bottom: 16px;
  padding: 8px 12px;
  border-radius: 999px;
  color: var(--accent-strong);
  background: rgba(6, 118, 217, 0.09);
  font-family: "Space Grotesk", sans-serif;
  font-size: 0.84rem;
  font-weight: 700;
}

.feature-icon {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-width: 52px;
  min-height: 34px;
  margin-bottom: 18px;
  padding: 0 12px;
  border-radius: 999px;
  color: var(--accent-strong);
  background: rgba(6, 118, 217, 0.09);
  font-family: "Space Grotesk", sans-serif;
  font-weight: 700;
}

.workflow-band {
  color: var(--text-inverse);
  background: linear-gradient(145deg, #0f172a 0%, #0f3b56 45%, #12516c 100%);
}

.workflow-band .eyebrow,
.workflow-band h2,
.workflow-band p,
.workflow-card p {
  color: var(--text-inverse);
}

.workflow-band::before {
  width: 320px;
  height: 320px;
  left: -80px;
  bottom: -120px;
  background: radial-gradient(circle, rgba(217, 119, 6, 0.24), transparent 72%);
}

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

.workflow-card {
  padding: 24px;
  border-radius: 24px;
  background: rgba(255, 255, 255, 0.08);
  border-color: rgba(255, 255, 255, 0.14);
}

.workflow-card span {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 42px;
  height: 42px;
  margin-bottom: 16px;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.12);
  font-family: "Space Grotesk", sans-serif;
  font-weight: 700;
}

.showcase-grid {
  grid-template-columns: 1.2fr 1fr 1fr;
}

.showcase-card {
  overflow: hidden;
  border-radius: 28px;
}

.showcase-card img {
  width: 100%;
  aspect-ratio: 10 / 16;
  object-fit: cover;
}

.showcase-card-large {
  grid-row: span 2;
}

.showcase-card-large img {
  aspect-ratio: 10 / 20;
}

.showcase-card figcaption {
  display: grid;
  gap: 8px;
  padding: 18px 18px 20px;
}

.compare-strip {
  align-items: start;
}

.compare-strip > div:first-child {
  padding-right: 20px;
}

.compare-points {
  display: grid;
  grid-column: span 2;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 18px;
}

.compare-points article {
  padding: 22px;
  border-radius: 24px;
}

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

.faq-item {
  border-radius: 22px;
  overflow: hidden;
}

.faq-trigger {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  width: 100%;
  padding: 22px 24px;
  border: 0;
  background: transparent;
  color: var(--text);
  text-align: left;
  font: inherit;
  font-weight: 700;
  cursor: pointer;
}

.faq-panel {
  display: grid;
  grid-template-rows: 0fr;
  transition: grid-template-rows 220ms ease;
}

.faq-panel p {
  overflow: hidden;
  padding: 0 24px 0;
}

.faq-item.is-open .faq-panel {
  grid-template-rows: 1fr;
}

.faq-item.is-open .faq-panel p {
  padding-bottom: 24px;
}

.faq-symbol {
  min-width: 32px;
  min-height: 32px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border-radius: 999px;
  background: rgba(6, 118, 217, 0.1);
  color: var(--accent-strong);
  transition: transform 220ms ease;
}

.faq-item.is-open .faq-symbol {
  transform: rotate(45deg);
}

.cta-panel {
  display: grid;
  grid-template-columns: 1.1fr 0.9fr;
  gap: 20px;
  align-items: center;
  color: var(--text-inverse);
  background: linear-gradient(150deg, #101826 0%, #16344f 45%, #b76511 140%);
}

.cta-panel::after {
  width: 300px;
  height: 300px;
  right: -100px;
  bottom: -100px;
  background: radial-gradient(circle, rgba(255, 255, 255, 0.18), transparent 72%);
}

.cta-panel .eyebrow,
.cta-panel h2,
.cta-panel p {
  color: var(--text-inverse);
}

.cta-actions {
  justify-content: flex-end;
}

.site-footer {
  grid-template-columns: 1fr auto auto;
  align-items: center;
  padding: 28px 10px 10px;
  color: var(--text-soft);
}

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

.footer-meta {
  text-align: right;
}

.reveal {
  opacity: 0;
  transform: translateY(26px);
  transition: opacity 600ms ease, transform 600ms ease;
}

.reveal.is-visible {
  opacity: 1;
  transform: translateY(0);
}

.reveal-delay-1 {
  transition-delay: 120ms;
}

.reveal-delay-2 {
  transition-delay: 220ms;
}

@media (max-width: 1120px) {
  .hero,
  .story-grid,
  .cta-panel,
  .compare-strip,
  .showcase-grid,
  .availability-grid,
  .feature-grid,
  .workflow-grid,
  .trust-strip,
  .compare-points,
  .site-footer {
    grid-template-columns: 1fr 1fr;
  }

  .hero {
    min-height: auto;
  }

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

  .showcase-card-large {
    grid-row: auto;
  }

  .compare-strip > div:first-child,
  .compare-points {
    grid-column: span 2;
  }

  .site-footer {
    gap: 10px;
  }
}

@media (max-width: 820px) {
  .site-shell {
    width: min(calc(100% - 20px), var(--max-width));
    margin-top: 10px;
  }

  .topbar {
    top: 8px;
    padding: 14px 16px;
    border-radius: 28px;
    flex-wrap: wrap;
  }

  .topnav {
    order: 3;
    width: 100%;
    justify-content: space-between;
    font-size: 0.88rem;
  }

  .section,
  .site-footer {
    padding: 24px;
  }

  .hero,
  .story-grid,
  .cta-panel,
  .compare-strip,
  .showcase-grid,
  .availability-grid,
  .feature-grid,
  .workflow-grid,
  .trust-strip,
  .compare-points,
  .site-footer {
    grid-template-columns: 1fr;
  }

  h1 {
    max-width: none;
    font-size: clamp(2.8rem, 14vw, 4.8rem);
  }

  .hero-copy {
    padding-right: 0;
  }

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

  .hero-stage {
    min-height: 520px;
    margin-top: 10px;
  }

  .signal-card {
    width: 180px;
    padding: 14px;
  }

  .device-main {
    left: 50%;
    right: auto;
    width: min(280px, 76%);
    height: 500px;
    transform: translateX(-50%) rotate(-2deg);
  }

  .device-side {
    width: 150px;
    height: 290px;
  }

  .device-security {
    left: 0;
    top: 210px;
  }

  .device-stealth {
    right: 0;
    top: 242px;
  }

  .cta-actions {
    justify-content: flex-start;
  }

  .footer-meta {
    text-align: left;
  }
}

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

  .reveal,
  .button,
  .faq-panel,
  .faq-symbol {
    transition: none;
  }
}