:root {
  --bg-main: #081b33;
  --bg-deep: #041325;
  --bg-soft: rgba(14, 41, 73, 0.72);
  --surface: rgba(255, 255, 255, 0.11);
  --surface-strong: rgba(255, 255, 255, 0.18);
  --surface-soft: rgba(255, 255, 255, 0.06);
  --line: rgba(255, 255, 255, 0.16);
  --line-strong: rgba(255, 255, 255, 0.28);
  --text-main: #f6fbff;
  --text-soft: rgba(246, 251, 255, 0.78);
  --text-dim: rgba(246, 251, 255, 0.5);
  --blue: #5bb6ff;
  --blue-deep: #1f6fb8;
  --sky: #9ce6ff;
  --ice: #eaf8ff;
  --mint: #a9fff0;
  --shadow-xl: 0 40px 100px rgba(0, 16, 34, 0.35);
  --shadow-card: 0 20px 50px rgba(0, 18, 38, 0.24);
  --radius-xl: 34px;
  --radius-lg: 26px;
  --radius-md: 20px;
  --radius-sm: 14px;
  --container: 1180px;
  --header-h: 84px;
  --transition: 0.35s ease;
}

*,
*::before,
*::after {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  color: var(--text-main);
  font-family: 'Inter', sans-serif;
  background:
    radial-gradient(
      circle at top left,
      rgba(156, 230, 255, 0.1),
      transparent 26%
    ),
    radial-gradient(
      circle at right center,
      rgba(91, 182, 255, 0.1),
      transparent 24%
    ),
    linear-gradient(180deg, #07192f 0%, #08203b 42%, #06162b 100%);
  overflow-x: hidden;
  min-height: 100vh;
}

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

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

button,
input,
textarea,
select {
  font: inherit;
}

button {
  border: 0;
  background: none;
  cursor: pointer;
}

.container {
  width: min(var(--container), calc(100% - 32px));
  margin: 0 auto;
}

.bg-scene {
  position: fixed;
  inset: 0;
  overflow: hidden;
  pointer-events: none;
  z-index: -2;
}

.bg-orb {
  position: absolute;
  border-radius: 999px;
  filter: blur(90px);
  opacity: 0.85;
}

.orb-a {
  width: 28rem;
  height: 28rem;
  left: -8rem;
  top: -8rem;
  background: rgba(156, 230, 255, 0.18);
}

.orb-b {
  width: 24rem;
  height: 24rem;
  right: -7rem;
  top: 12rem;
  background: rgba(91, 182, 255, 0.18);
}

.orb-c {
  width: 20rem;
  height: 20rem;
  left: 36%;
  bottom: -6rem;
  background: rgba(169, 255, 240, 0.12);
}

.bg-grid {
  position: absolute;
  inset: 0;
  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: 68px 68px;
  mask-image: radial-gradient(circle at center, black 38%, transparent 84%);
}

.bg-particles {
  position: absolute;
  inset: 0;
  opacity: 0.08;
  background-image:
    radial-gradient(
      circle at 20% 30%,
      rgba(255, 255, 255, 0.8) 0.8px,
      transparent 1px
    ),
    radial-gradient(
      circle at 76% 24%,
      rgba(255, 255, 255, 0.7) 0.7px,
      transparent 1px
    ),
    radial-gradient(
      circle at 42% 68%,
      rgba(255, 255, 255, 0.8) 0.8px,
      transparent 1px
    ),
    radial-gradient(
      circle at 86% 74%,
      rgba(255, 255, 255, 0.7) 0.7px,
      transparent 1px
    );
  background-size: 220px 220px;
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 100;
  backdrop-filter: blur(16px);
  background: linear-gradient(
    180deg,
    rgba(7, 24, 45, 0.86),
    rgba(7, 24, 45, 0.68)
  );
  border-bottom: 1px solid var(--line);
}

.header-inner {
  min-height: var(--header-h);
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 22px;
}

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

.brand-mark {
  width: 52px;
  height: 52px;
  border-radius: 18px;
  display: grid;
  place-items: center;
  color: #07345d;
  font-family: 'Outfit', sans-serif;
  font-weight: 800;
  background: linear-gradient(
    135deg,
    rgba(234, 248, 255, 0.96),
    rgba(156, 230, 255, 0.96)
  );
  box-shadow:
    0 14px 30px rgba(0, 22, 46, 0.18),
    inset 0 1px 0 rgba(255, 255, 255, 0.75);
}

.brand-mark.small {
  width: 42px;
  height: 42px;
  border-radius: 14px;
  font-size: 0.86rem;
}

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

.brand-copy strong {
  font-weight: 800;
  letter-spacing: 0.01em;
}

.brand-copy small {
  color: var(--text-dim);
}

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

.site-nav a {
  padding: 12px 16px;
  border-radius: 999px;
  font-weight: 600;
  color: var(--text-soft);
  transition: var(--transition);
}

.site-nav a:hover {
  color: #fff;
  background: rgba(255, 255, 255, 0.08);
}

.site-nav .nav-cta {
  color: #06345f;
  background: linear-gradient(
    135deg,
    rgba(234, 248, 255, 0.96),
    rgba(156, 230, 255, 0.96)
  );
  box-shadow: 0 14px 30px rgba(10, 58, 102, 0.18);
}

.menu-toggle {
  display: none;
  width: 46px;
  height: 46px;
  border-radius: 14px;
  padding: 11px 10px;
  border: 1px solid var(--line);
  background: rgba(255, 255, 255, 0.05);
  flex-direction: column;
  justify-content: space-between;
}

.menu-toggle span {
  display: block;
  width: 100%;
  height: 2px;
  border-radius: 999px;
  background: #fff;
}

.hero {
  padding: 56px 0 24px;
}

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

.eyebrow {
  display: inline-flex;
  align-items: center;
  padding: 9px 14px;
  border-radius: 999px;
  font-size: 0.78rem;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  font-weight: 800;
  color: #fff;
  background: linear-gradient(
    135deg,
    rgba(234, 248, 255, 0.12),
    rgba(156, 230, 255, 0.1)
  );
  border: 1px solid rgba(255, 255, 255, 0.14);
}

.hero-copy h1 {
  margin: 18px 0 16px;
  font-family: 'Outfit', sans-serif;
  font-size: clamp(2.5rem, 5.8vw, 5rem);
  line-height: 0.98;
  letter-spacing: -0.04em;
  max-width: 11ch;
}

.hero-text {
  margin: 0;
  color: var(--text-soft);
  font-size: 1.06rem;
  line-height: 1.8;
  max-width: 62ch;
}

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

.btn {
  min-height: 56px;
  padding: 14px 22px;
  border-radius: 18px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-weight: 800;
  text-align: center;
  transition:
    transform var(--transition),
    box-shadow var(--transition),
    background var(--transition),
    border-color var(--transition);
}

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

.btn-primary {
  color: #06345f;
  background: linear-gradient(135deg, #eaf8ff, #9ce6ff);
  box-shadow:
    0 18px 40px rgba(15, 77, 129, 0.18),
    inset 0 1px 0 rgba(255, 255, 255, 0.82);
}

.btn-secondary {
  color: #fff;
  background: rgba(255, 255, 255, 0.05);
  border: 1px solid var(--line);
}

.btn-wide {
  min-width: 250px;
}

.hero-pills {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-top: 24px;
}

.hero-pills span {
  padding: 11px 14px;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.05);
  border: 1px solid var(--line);
  color: var(--text-soft);
  font-weight: 600;
}

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

.stat-card {
  position: relative;
  padding: 22px 18px;
  border-radius: 24px;
  border: 1px solid rgba(255, 255, 255, 0.16);
  background: linear-gradient(
    180deg,
    rgba(255, 255, 255, 0.12),
    rgba(255, 255, 255, 0.05)
  );
  backdrop-filter: blur(18px);
  box-shadow: var(--shadow-card);
  overflow: hidden;
}

.stat-card::after {
  content: '';
  position: absolute;
  width: 130px;
  height: 130px;
  right: -28px;
  top: -24px;
  border-radius: 50%;
  background: radial-gradient(
    circle,
    rgba(156, 230, 255, 0.22),
    transparent 70%
  );
}

.stat-card strong {
  position: relative;
  display: block;
  font-size: 2rem;
  font-weight: 900;
}

.stat-card span {
  position: relative;
  display: block;
  margin-top: 8px;
  color: var(--text-soft);
  line-height: 1.55;
  font-size: 0.94rem;
}

.hero-visual {
  min-height: 760px;
}

.hero-panel {
  position: relative;
  min-height: 760px;
  padding: 28px;
  border-radius: 36px;
  border: 1px solid rgba(255, 255, 255, 0.14);
  background: linear-gradient(
    180deg,
    rgba(255, 255, 255, 0.11),
    rgba(255, 255, 255, 0.05)
  );
  backdrop-filter: blur(20px);
  box-shadow: var(--shadow-xl);
  overflow: hidden;
}

.hero-panel::before {
  content: '';
  position: absolute;
  inset: auto auto -18% -12%;
  width: 300px;
  height: 300px;
  border-radius: 50%;
  background: radial-gradient(
    circle,
    rgba(169, 255, 240, 0.2),
    transparent 72%
  );
}

.hero-panel::after {
  content: '';
  position: absolute;
  inset: 16px;
  border-radius: 28px;
  border: 1px solid rgba(255, 255, 255, 0.05);
  pointer-events: none;
}

.floating-pill {
  position: absolute;
  padding: 12px 16px;
  border-radius: 999px;
  font-weight: 700;
  color: #fff;
  backdrop-filter: blur(16px);
  background: linear-gradient(
    135deg,
    rgba(234, 248, 255, 0.14),
    rgba(156, 230, 255, 0.1)
  );
  border: 1px solid rgba(255, 255, 255, 0.16);
  box-shadow: var(--shadow-card);
}

.mini-dot {
  display: inline-block;
  width: 8px;
  height: 8px;
  margin-right: 10px;
  border-radius: 50%;
  background: var(--mint);
  box-shadow: 0 0 16px rgba(169, 255, 240, 0.85);
}

.pill-a {
  top: 18px;
  left: 18px;
}

.pill-b {
  top: 138px;
  right: 22px;
}

.pill-c {
  bottom: 128px;
  left: 28px;
}

.device-shell {
  position: relative;
  width: min(340px, 100%);
  padding: 14px;
  border-radius: 40px;
  background: linear-gradient(
    145deg,
    rgba(227, 246, 255, 0.32),
    rgba(133, 191, 238, 0.18)
  );
  border: 1px solid rgba(255, 255, 255, 0.22);
  box-shadow:
    0 30px 70px rgba(0, 20, 40, 0.22),
    inset 0 1px 0 rgba(255, 255, 255, 0.38);
  backdrop-filter: blur(18px);
  transition: transform 0.2s ease;
}

.device-stage,
.preview-device {
  width: min(320px, 100%);
}

.device-shell img {
  aspect-ratio: 9 / 19.5;
  object-fit: cover;
  border-radius: 28px;
}

.device-notch {
  position: absolute;
  left: 50%;
  top: 14px;
  transform: translateX(-50%);
  width: 35%;
  height: 26px;
  border-radius: 0 0 16px 16px;
  background: rgba(210, 234, 248, 0.75);
  z-index: 2;
}

.hero-panel {
  display: grid;
  place-items: center;
}

.mini-summary {
  position: absolute;
  max-width: 220px;
  padding: 18px;
  border-radius: 22px;
  border: 1px solid rgba(255, 255, 255, 0.16);
  background: linear-gradient(
    180deg,
    rgba(255, 255, 255, 0.13),
    rgba(255, 255, 255, 0.05)
  );
  box-shadow: var(--shadow-card);
  backdrop-filter: blur(18px);
}

.mini-summary p {
  margin: 0 0 6px;
  color: var(--text-dim);
  font-size: 0.86rem;
}

.mini-summary strong {
  line-height: 1.45;
}

.summary-a {
  left: 24px;
  bottom: 24px;
}

.summary-b {
  right: 24px;
  bottom: 24px;
}

.section {
  padding: 86px 0;
}

.quick-strip {
  padding-top: 10px;
}

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

.quick-card {
  padding: 18px 20px;
  border-radius: 22px;
  border: 1px solid rgba(255, 255, 255, 0.14);
  background: linear-gradient(
    180deg,
    rgba(255, 255, 255, 0.11),
    rgba(255, 255, 255, 0.05)
  );
  backdrop-filter: blur(18px);
  box-shadow: var(--shadow-card);
}

.quick-card small {
  display: block;
  margin-bottom: 8px;
  color: var(--text-dim);
  font-size: 0.8rem;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  font-weight: 700;
}

.quick-card strong {
  font-size: 1.03rem;
}

.section-head {
  max-width: 760px;
  margin-bottom: 34px;
}

.section-head h1,
.section-head h2 {
  margin: 16px 0 14px;
  font-family: 'Outfit', sans-serif;
  font-size: clamp(2rem, 4vw, 3.3rem);
  line-height: 1.02;
  letter-spacing: -0.04em;
}

.section-head p {
  margin: 0;
  color: var(--text-soft);
  line-height: 1.8;
  font-size: 1.03rem;
}

.feature-layout {
  display: grid;
  grid-template-columns: 0.95fr 1.05fr;
  gap: 24px;
  align-items: start;
}

.feature-preview {
  position: sticky;
  top: 108px;
}

.preview-shell {
  position: relative;
  padding: 26px;
  border-radius: 32px;
  border: 1px solid rgba(255, 255, 255, 0.16);
  background: linear-gradient(
    180deg,
    rgba(255, 255, 255, 0.12),
    rgba(255, 255, 255, 0.05)
  );
  backdrop-filter: blur(20px);
  box-shadow: var(--shadow-xl);
  overflow: hidden;
}

.preview-glow {
  position: absolute;
  inset: auto auto -24% -10%;
  width: 260px;
  height: 260px;
  border-radius: 50%;
  background: radial-gradient(
    circle,
    rgba(156, 230, 255, 0.22),
    transparent 70%
  );
}

.preview-device {
  margin: 0 auto;
}

.preview-copy {
  position: relative;
  margin-top: 22px;
  padding: 18px;
  border-radius: 20px;
  background: rgba(255, 255, 255, 0.08);
  border: 1px solid rgba(255, 255, 255, 0.16);
}

.preview-label {
  display: inline-block;
  margin-bottom: 8px;
  color: var(--mint);
  font-size: 0.78rem;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  font-weight: 800;
}

.preview-copy h3 {
  margin: 0 0 10px;
  font-size: 1.48rem;
}

.preview-copy p {
  margin: 0;
  color: var(--text-soft);
  line-height: 1.72;
}

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

.feature-card {
  padding: 24px;
  border-radius: 26px;
  border: 1px solid rgba(255, 255, 255, 0.14);
  background: linear-gradient(
    180deg,
    rgba(255, 255, 255, 0.11),
    rgba(255, 255, 255, 0.04)
  );
  backdrop-filter: blur(18px);
  box-shadow: var(--shadow-card);
  transition:
    transform var(--transition),
    border-color var(--transition),
    box-shadow var(--transition),
    background var(--transition);
  outline: none;
}

.feature-card:hover,
.feature-card:focus-visible,
.feature-card.active-feature {
  transform: translateY(-4px);
  border-color: rgba(169, 255, 240, 0.34);
  box-shadow:
    0 24px 60px rgba(0, 18, 38, 0.24),
    0 0 0 1px rgba(156, 230, 255, 0.1);
  background: linear-gradient(
    180deg,
    rgba(255, 255, 255, 0.16),
    rgba(169, 255, 240, 0.04)
  );
}

.feature-meta {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 16px;
}

.feature-meta span {
  color: var(--mint);
  font-weight: 900;
  letter-spacing: 0.08em;
}

.feature-meta small {
  color: var(--text-dim);
  text-transform: uppercase;
  letter-spacing: 0.08em;
  font-weight: 700;
}

.feature-card h3 {
  margin: 0 0 10px;
  font-size: 1.24rem;
  line-height: 1.25;
}

.feature-card p {
  margin: 0;
  color: var(--text-soft);
  line-height: 1.72;
}

.story-stack {
  display: grid;
  gap: 22px;
}

.story-card {
  display: grid;
  grid-template-columns: 1fr 0.94fr;
  gap: 24px;
  align-items: center;
  padding: 26px;
  border-radius: 30px;
  border: 1px solid rgba(255, 255, 255, 0.14);
  background: linear-gradient(
    180deg,
    rgba(255, 255, 255, 0.11),
    rgba(255, 255, 255, 0.05)
  );
  backdrop-filter: blur(18px);
  box-shadow: var(--shadow-card);
}

.story-card.reverse {
  grid-template-columns: 0.94fr 1fr;
}

.story-card.reverse .story-copy {
  order: 2;
}

.story-card.reverse .story-shot {
  order: 1;
}

.story-step {
  display: inline-flex;
  padding: 8px 12px;
  border-radius: 999px;
  margin-bottom: 14px;
  color: #06345f;
  font-size: 0.78rem;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  font-weight: 800;
  background: linear-gradient(
    135deg,
    rgba(234, 248, 255, 0.96),
    rgba(156, 230, 255, 0.9)
  );
}

.story-copy h3 {
  margin: 0 0 12px;
  font-size: 1.82rem;
  line-height: 1.08;
}

.story-copy p {
  margin: 0;
  color: var(--text-soft);
  line-height: 1.8;
}

.story-shot {
  display: flex;
  align-items: stretch;
  justify-content: center;
  gap: 14px;
}

.story-shot img {
  width: min(280px, 100%);
  border-radius: 24px;
  object-fit: cover;
  border: 1px solid rgba(255, 255, 255, 0.16);
  box-shadow: 0 24px 56px rgba(0, 18, 38, 0.22);
}

.dual-shot img {
  width: calc(50% - 7px);
  aspect-ratio: 9 / 19.5;
}

.carousel-shell {
  padding: 28px;
  border-radius: 34px;
  border: 1px solid rgba(255, 255, 255, 0.16);
  background: linear-gradient(
    180deg,
    rgba(255, 255, 255, 0.12),
    rgba(255, 255, 255, 0.05)
  );
  backdrop-filter: blur(20px);
  box-shadow: var(--shadow-xl);
}

.carousel-top {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
  margin-bottom: 24px;
}

.carousel-kicker {
  display: inline-block;
  margin-bottom: 8px;
  color: var(--mint);
  font-size: 0.78rem;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  font-weight: 800;
}

.carousel-top h3 {
  margin: 0;
  font-size: 1.65rem;
}

.carousel-controls {
  display: flex;
  gap: 10px;
}

.carousel-btn {
  width: 52px;
  height: 52px;
  display: grid;
  place-items: center;
  border-radius: 16px;
  color: #fff;
  border: 1px solid rgba(255, 255, 255, 0.16);
  background: rgba(255, 255, 255, 0.08);
  font-size: 1.25rem;
  transition: var(--transition);
}

.carousel-btn:hover {
  background: rgba(234, 248, 255, 0.18);
  color: #06345f;
}

.carousel-stage {
  overflow: hidden;
  border-radius: 28px;
}

.carousel-track {
  display: flex;
  transition: transform 0.45s ease;
}

.slide-card {
  min-width: 100%;
  display: flex;
  justify-content: center;
  padding: 8px;
}

.slide-card img {
  width: min(380px, 100%);
  border-radius: 28px;
  aspect-ratio: 9 / 19.5;
  object-fit: cover;
  border: 1px solid rgba(255, 255, 255, 0.16);
  box-shadow: 0 28px 70px rgba(0, 16, 34, 0.24);
}

.carousel-dots {
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
  gap: 10px;
  margin-top: 22px;
}

.carousel-dots button {
  width: 12px;
  height: 12px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.2);
  transition: var(--transition);
}

.carousel-dots button.active-dot {
  width: 34px;
  border-radius: 999px;
  background: linear-gradient(
    135deg,
    rgba(234, 248, 255, 0.96),
    rgba(156, 230, 255, 0.92)
  );
}

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

.review-card {
  padding: 26px;
  border-radius: 28px;
  border: 1px solid rgba(255, 255, 255, 0.14);
  background: linear-gradient(
    180deg,
    rgba(255, 255, 255, 0.11),
    rgba(255, 255, 255, 0.05)
  );
  backdrop-filter: blur(18px);
  box-shadow: var(--shadow-card);
  transition:
    transform var(--transition),
    border-color var(--transition),
    background var(--transition);
}

.review-card:hover,
.featured-review {
  transform: translateY(-4px);
  border-color: rgba(169, 255, 240, 0.3);
  background: linear-gradient(
    180deg,
    rgba(255, 255, 255, 0.16),
    rgba(169, 255, 240, 0.04)
  );
}

.review-stars {
  color: var(--ice);
  letter-spacing: 0.14em;
  margin-bottom: 18px;
  font-size: 0.9rem;
}

.review-card p {
  margin: 0;
  color: var(--text-soft);
  line-height: 1.8;
}

.review-user {
  display: grid;
  gap: 4px;
  margin-top: 24px;
}

.review-user span {
  color: var(--text-dim);
  font-size: 0.92rem;
}

.cta-section {
  padding-bottom: 90px;
}

.cta-panel {
  display: grid;
  grid-template-columns: 1fr auto;
  gap: 24px;
  align-items: center;
  padding: 34px;
  border-radius: 34px;
  border: 1px solid rgba(255, 255, 255, 0.16);
  background:
    radial-gradient(
      circle at left center,
      rgba(156, 230, 255, 0.15),
      transparent 34%
    ),
    linear-gradient(
      180deg,
      rgba(255, 255, 255, 0.12),
      rgba(255, 255, 255, 0.05)
    );
  backdrop-filter: blur(20px);
  box-shadow: var(--shadow-xl);
}

.cta-copy h2 {
  margin: 16px 0 12px;
  font-family: 'Outfit', sans-serif;
  font-size: clamp(2rem, 4vw, 3rem);
  line-height: 1.02;
  letter-spacing: -0.04em;
}

.cta-copy p {
  margin: 0;
  color: var(--text-soft);
  line-height: 1.78;
  max-width: 60ch;
}

.cta-actions {
  display: grid;
  gap: 14px;
}

.site-footer {
  padding: 26px 0 20px;
  border-top: 1px solid rgba(255, 255, 255, 0.12);
  background: rgba(7, 24, 45, 0.52);
  backdrop-filter: blur(12px);
}

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

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

.footer-brand p {
  margin: 4px 0 0;
  color: var(--text-dim);
  font-size: 0.92rem;
}

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

.footer-links a {
  color: var(--text-soft);
  transition: color var(--transition);
}

.footer-links a:hover {
  color: #fff;
}

.footer-bottom {
  padding-top: 18px;
}

.footer-bottom p {
  margin: 0;
  color: var(--text-dim);
  font-size: 0.9rem;
}

.privacy-main {
  padding: 24px 0 80px;
}

.privacy-title {
  font-size: clamp(2.4rem, 5vw, 4rem);
}

.privacy-grid {
  display: grid;
  gap: 18px;
}

.privacy-card {
  padding: 26px;
  border-radius: 28px;
  border: 1px solid rgba(255, 255, 255, 0.14);
  background: linear-gradient(
    180deg,
    rgba(255, 255, 255, 0.11),
    rgba(255, 255, 255, 0.05)
  );
  backdrop-filter: blur(18px);
  box-shadow: var(--shadow-card);
}

.privacy-card h2 {
  margin: 0 0 12px;
  font-size: 1.28rem;
}

.privacy-card p {
  margin: 0;
  color: var(--text-soft);
  line-height: 1.84;
}

.privacy-card a {
  color: #fff;
  text-decoration: underline;
  text-underline-offset: 4px;
}

.privacy-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
  padding-top: 8px;
}

.static-nav {
  display: flex;
}

.reveal {
  opacity: 0;
  transform: translateY(28px);
  transition:
    opacity 0.8s ease,
    transform 0.8s ease;
}

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

@media (max-width: 1120px) {
  .hero-grid,
  .feature-layout,
  .cta-panel {
    grid-template-columns: 1fr;
  }

  .feature-preview {
    position: relative;
    top: auto;
  }

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

  .story-card,
  .story-card.reverse {
    grid-template-columns: 1fr;
  }

  .story-card.reverse .story-copy,
  .story-card.reverse .story-shot {
    order: initial;
  }
}

@media (max-width: 920px) {
  .hero-stats,
  .quick-grid {
    grid-template-columns: 1fr;
  }

  .hero-visual,
  .hero-panel {
    min-height: 640px;
  }

  .pill-a,
  .pill-b,
  .pill-c,
  .summary-a,
  .summary-b {
    position: static;
  }

  .hero-panel {
    display: flex;
    flex-direction: column;
    gap: 16px;
  }

  .dual-shot {
    flex-direction: column;
  }

  .dual-shot img {
    width: 100%;
  }
}

@media (max-width: 820px) {
  .menu-toggle {
    display: inline-flex;
  }

  .site-nav {
    position: absolute;
    top: calc(100% + 10px);
    left: 16px;
    right: 16px;
    display: grid;
    gap: 8px;
    padding: 14px;
    border-radius: 24px;
    border: 1px solid rgba(255, 255, 255, 0.16);
    background: linear-gradient(
      180deg,
      rgba(10, 34, 60, 0.98),
      rgba(6, 25, 45, 0.98)
    );
    box-shadow: var(--shadow-xl);
    opacity: 0;
    visibility: hidden;
    transform: translateY(-10px);
    pointer-events: none;
    transition: var(--transition);
  }

  .site-nav.open {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
    pointer-events: auto;
  }

  .static-nav {
    display: none;
  }

  .site-nav a {
    width: 100%;
  }

  .footer-top {
    flex-direction: column;
    align-items: flex-start;
  }
}

@media (max-width: 680px) {
  :root {
    --header-h: 76px;
  }

  .container {
    width: min(var(--container), calc(100% - 24px));
  }

  .hero {
    padding-top: 30px;
  }

  .section {
    padding: 68px 0;
  }

  .hero-copy h1 {
    max-width: none;
    font-size: clamp(2rem, 9vw, 3.5rem);
  }

  .hero-text,
  .section-head p,
  .story-copy p,
  .cta-copy p,
  .privacy-card p {
    font-size: 0.97rem;
  }

  .hero-panel,
  .preview-shell,
  .feature-card,
  .story-card,
  .review-card,
  .privacy-card,
  .cta-panel,
  .carousel-shell {
    border-radius: 24px;
  }

  .carousel-top {
    flex-direction: column;
    align-items: flex-start;
  }
}

@media (max-width: 560px) {
  .hero-actions,
  .privacy-actions {
    flex-direction: column;
  }

  .btn {
    width: 100%;
  }

  .hero-pills {
    flex-direction: column;
  }

  .hero-pills span {
    width: 100%;
    text-align: center;
  }

  .slide-card img {
    width: min(100%, 340px);
  }

  .cta-copy h2 {
    font-size: clamp(1.8rem, 8vw, 2.4rem);
  }
}
