@font-face {
  font-family: "Fraunces";
  src: url("/assets/fonts/fraunces-latin.woff2") format("woff2");
  font-weight: 700 900;
  font-style: normal;
  font-display: swap;
}

@font-face {
  font-family: "Manrope";
  src: url("/assets/fonts/manrope-latin.woff2") format("woff2");
  font-weight: 400 800;
  font-style: normal;
  font-display: swap;
}

:root {
  --bg: #050814;
  --bg-alt: #0b1020;
  --surface: rgba(14, 19, 36, 0.72);
  --surface-strong: rgba(10, 14, 28, 0.94);
  --surface-soft: rgba(246, 239, 227, 0.07);
  --text: #f5f7fc;
  --muted: #a9b3ca;
  --line: rgba(255, 255, 255, 0.1);
  --line-strong: rgba(255, 255, 255, 0.18);
  --electric: #2f82ff;
  --electric-strong: #1e63cc;
  --cyan: #58d8ff;
  --gold: #f5b24a;
  --ivory: #f6efe3;
  --shadow: 0 24px 70px rgba(0, 0, 0, 0.34);
  --radius-xl: 32px;
  --radius-lg: 26px;
  --radius-md: 18px;
}

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

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  min-width: 320px;
  font-family: "Manrope", "Segoe UI", sans-serif;
  color: var(--text);
  background:
    radial-gradient(circle at 12% 14%, rgba(47, 130, 255, 0.23), transparent 24%),
    radial-gradient(circle at 88% 12%, rgba(88, 216, 255, 0.18), transparent 22%),
    radial-gradient(circle at 78% 72%, rgba(245, 178, 74, 0.12), transparent 28%),
    linear-gradient(180deg, #050814 0%, #07101f 34%, #050814 100%);
  line-height: 1.6;
  overflow-x: hidden;
}

body::before,
body::after {
  content: "";
  position: fixed;
  inset: 0;
  pointer-events: none;
  z-index: -1;
}

body::before {
  background:
    linear-gradient(rgba(255, 255, 255, 0.03) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255, 255, 255, 0.03) 1px, transparent 1px);
  background-size: 80px 80px;
  mask-image: radial-gradient(circle at center, black 42%, transparent 85%);
  opacity: 0.18;
}

body::after {
  background: radial-gradient(circle at center, transparent 45%, rgba(5, 8, 20, 0.6) 100%);
}

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

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

button {
  font: inherit;
}

.page-shell {
  overflow: clip;
}

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

.section {
  padding: 96px 0;
}

.section--tight {
  padding-top: 72px;
  padding-bottom: 72px;
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 20;
  backdrop-filter: blur(24px);
  background: rgba(5, 8, 20, 0.7);
  border-bottom: 1px solid rgba(255, 255, 255, 0.06);
}

.header-row {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  min-height: 76px;
}

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

.brand__mark {
  width: 52px;
  height: 52px;
  border-radius: 16px;
  box-shadow: 0 18px 34px rgba(14, 37, 87, 0.35);
}

.brand__text strong,
.brand__text span {
  display: block;
}

.brand__text strong {
  font-size: 1rem;
  font-weight: 800;
  letter-spacing: -0.02em;
}

.brand__text span {
  margin-top: 2px;
  color: var(--muted);
  font-size: 0.78rem;
}

.header-nav,
.footer-links {
  display: flex;
  align-items: center;
  gap: 10px;
  flex-wrap: wrap;
}

.header-link,
.footer-links a {
  color: var(--muted);
  padding: 10px 14px;
  border-radius: 999px;
  transition: color 180ms ease, background-color 180ms ease, transform 180ms ease;
}

.header-link:hover,
.footer-links a:hover {
  color: var(--text);
  background: rgba(255, 255, 255, 0.05);
  transform: translateY(-1px);
}

.header-link--cta {
  color: var(--text);
  background: linear-gradient(135deg, rgba(47, 130, 255, 0.28), rgba(88, 216, 255, 0.2));
  border: 1px solid rgba(88, 216, 255, 0.22);
}

.eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 10px 14px;
  border-radius: 999px;
  border: 1px solid rgba(88, 216, 255, 0.18);
  background: rgba(16, 25, 48, 0.72);
  color: #dcecff;
  font-size: 0.78rem;
  font-weight: 800;
  letter-spacing: 0.14em;
  text-transform: uppercase;
}

.eyebrow--small {
  padding: 8px 12px;
  font-size: 0.7rem;
}

h1,
h2,
h3,
.policy-title {
  margin: 0;
  letter-spacing: -0.04em;
}

h1,
h2,
.policy-title {
  font-family: "Fraunces", Georgia, serif;
}

h3 {
  font-size: 1.3rem;
  line-height: 1.18;
}

p {
  margin: 0;
}

.hero-grid,
.pro-grid {
  display: grid;
  grid-template-columns: minmax(0, 1.02fr) minmax(0, 0.98fr);
  gap: 48px;
  align-items: center;
}

.hero-copy,
.hero-stage,
.pro-copy,
.pro-panel,
.section-intro,
.stat-card,
.trust-card,
.feature-card,
.step-card,
.policy-card,
.shot-card figcaption {
  min-width: 0;
}

.hero-copy h1 {
  margin-top: 18px;
  margin-bottom: 22px;
  font-size: clamp(3rem, 6vw, 5.6rem);
  line-height: 0.95;
  max-width: 10.4ch;
}

.hero-copy > p {
  max-width: 38rem;
  font-size: 1.1rem;
  line-height: 1.8;
  color: var(--muted);
}

.cta-row {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
  margin-top: 30px;
}

.cta-row--center {
  justify-content: center;
}

.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  min-height: 56px;
  padding: 16px 26px;
  border-radius: 999px;
  border: 1px solid transparent;
  font-weight: 800;
  letter-spacing: -0.02em;
  transition: transform 200ms ease, box-shadow 200ms ease, border-color 200ms ease, background 200ms ease;
}

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

.button-primary {
  color: #fff;
  background: linear-gradient(135deg, var(--electric), var(--electric-strong) 58%, var(--cyan));
  box-shadow: 0 18px 36px rgba(47, 130, 255, 0.28);
}

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

.button-disabled {
  cursor: not-allowed;
  pointer-events: none;
  opacity: 0.78;
  background: linear-gradient(135deg, #21304e, #3b4a70);
  box-shadow: none;
}

.hero-proof {
  margin-top: 18px;
  color: #dbe7ff;
  font-weight: 700;
}

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

.glass-card,
.feature-card,
.shot-card {
  border: 1px solid var(--line);
  border-radius: var(--radius-xl);
  background: var(--surface);
  box-shadow: var(--shadow);
  backdrop-filter: blur(28px);
}

.stat-card,
.trust-card,
.step-card,
.policy-card {
  padding: 22px;
}

.stat-card strong,
.trust-card h3,
.step-card h3 {
  display: block;
}

.stat-card span,
.trust-card p,
.step-card p,
.policy-card p {
  margin-top: 10px;
  color: var(--muted);
}

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

.stage-orb {
  position: absolute;
  border-radius: 50%;
  filter: blur(20px);
}

.stage-orb--blue {
  top: 9%;
  left: 10%;
  width: 220px;
  height: 220px;
  background: rgba(47, 130, 255, 0.24);
}

.stage-orb--cyan {
  right: 8%;
  top: 12%;
  width: 200px;
  height: 200px;
  background: rgba(88, 216, 255, 0.18);
}

.stage-orb--gold {
  right: 16%;
  bottom: 7%;
  width: 220px;
  height: 220px;
  background: rgba(245, 178, 74, 0.16);
}

.floating-shot {
  position: absolute;
  overflow: hidden;
  border-radius: 34px;
  background: rgba(11, 16, 32, 0.82);
  border: 1px solid rgba(255, 255, 255, 0.12);
  box-shadow: 0 32px 70px rgba(0, 0, 0, 0.36);
}

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

.shot-main {
  left: 50%;
  top: 2%;
  width: min(77%, 430px);
  transform: translateX(-50%) rotate(-5deg);
  animation: float-main 10s ease-in-out infinite;
}

.shot-top {
  left: 0;
  top: 18%;
  width: min(46%, 248px);
  transform: rotate(-12deg);
  animation: float-alt 11s ease-in-out infinite;
}

.shot-bottom {
  right: 0;
  bottom: 4%;
  width: min(46%, 248px);
  transform: rotate(10deg);
  animation: float-alt 12s ease-in-out infinite reverse;
}

.shot-label {
  position: absolute;
  left: 18px;
  right: 18px;
  bottom: 18px;
  padding: 10px 14px;
  border-radius: 999px;
  background: rgba(7, 10, 18, 0.82);
  color: #eef5ff;
  font-size: 0.75rem;
  font-weight: 800;
  letter-spacing: 0.12em;
  text-align: center;
  text-transform: uppercase;
}

.privacy-float {
  position: absolute;
  right: 8%;
  top: 56%;
  width: min(300px, 62%);
  padding: 22px;
  background: rgba(10, 15, 29, 0.86);
}

.privacy-float p {
  margin-top: 12px;
  color: var(--muted);
}

.section-intro {
  max-width: 760px;
  margin-bottom: 36px;
}

.section-intro h2,
.policy-title {
  margin-top: 16px;
  margin-bottom: 16px;
  font-size: clamp(2.3rem, 4vw, 4rem);
  line-height: 1.02;
}

.section-intro p {
  color: var(--muted);
  font-size: 1.05rem;
  line-height: 1.8;
}

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

.trust-card {
  grid-column: span 4;
}

.icon-chip,
.shot-kicker,
.pro-chip {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 34px;
  padding: 0 12px;
  border-radius: 999px;
  font-size: 0.76rem;
  font-weight: 800;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.icon-chip {
  background: rgba(47, 130, 255, 0.14);
  color: #d7e8ff;
}

.statement-card {
  grid-column: 1 / -1;
  padding: 28px;
  display: grid;
  gap: 10px;
  background:
    radial-gradient(circle at top right, rgba(88, 216, 255, 0.12), transparent 30%),
    linear-gradient(135deg, rgba(245, 178, 74, 0.12), rgba(10, 15, 29, 0.92));
}

.statement-quote {
  font-family: "Fraunces", Georgia, serif;
  font-size: clamp(1.7rem, 3vw, 2.6rem);
  line-height: 1.1;
  max-width: 18ch;
}

.statement-meta {
  color: var(--muted);
}

.feature-grid,
.steps-grid,
.policy-grid {
  display: grid;
  gap: 18px;
}

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

.feature-card {
  padding: 24px;
  background:
    linear-gradient(180deg, rgba(246, 239, 227, 0.07), rgba(255, 255, 255, 0.03)),
    rgba(14, 19, 36, 0.78);
}

.feature-index {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 46px;
  height: 46px;
  border-radius: 14px;
  background: rgba(47, 130, 255, 0.12);
  color: #d6e9ff;
  font-weight: 800;
  margin-bottom: 18px;
}

.feature-card p {
  margin-top: 12px;
  color: var(--muted);
}

.showcase {
  padding-top: 88px;
}

.showcase-head {
  display: flex;
  align-items: end;
  justify-content: space-between;
  gap: 24px;
  margin-bottom: 24px;
}

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

.rail-button {
  width: 52px;
  height: 52px;
  border: 1px solid var(--line);
  border-radius: 999px;
  color: var(--text);
  background: rgba(255, 255, 255, 0.04);
  cursor: pointer;
  transition: transform 180ms ease, background-color 180ms ease, border-color 180ms ease;
}

.rail-button:hover {
  transform: translateY(-1px);
  background: rgba(255, 255, 255, 0.08);
  border-color: var(--line-strong);
}

.showcase-rail {
  display: grid;
  grid-auto-flow: column;
  grid-auto-columns: minmax(290px, 340px);
  gap: 18px;
  overflow-x: auto;
  padding-bottom: 6px;
  scroll-snap-type: x mandatory;
  scrollbar-width: none;
}

.showcase-rail::-webkit-scrollbar {
  display: none;
}

.shot-card {
  scroll-snap-align: start;
  overflow: hidden;
  background:
    linear-gradient(180deg, rgba(246, 239, 227, 0.1), rgba(255, 255, 255, 0.03)),
    rgba(10, 15, 29, 0.88);
}

.shot-card figcaption {
  padding: 20px;
}

.shot-card h3 {
  margin-top: 14px;
}

.shot-card p {
  margin-top: 10px;
  color: var(--muted);
}

.shot-kicker,
.pro-chip {
  background: rgba(245, 178, 74, 0.16);
  color: #ffe4b3;
}

.pro-section {
  padding-top: 88px;
}

.pro-copy p {
  margin-top: 18px;
  color: var(--muted);
  font-size: 1.08rem;
  line-height: 1.8;
}

.pro-mark {
  width: 96px;
  height: 96px;
  border-radius: 24px;
  margin-bottom: 16px;
  box-shadow: 0 20px 50px rgba(245, 178, 74, 0.2);
}

.pro-copy h2 {
  margin-top: 16px;
  font-size: clamp(2.4rem, 4vw, 4.1rem);
  line-height: 1.02;
}

.pro-list {
  margin: 24px 0 0;
  padding: 0;
  list-style: none;
  display: grid;
  gap: 12px;
}

.pro-list li {
  padding-left: 24px;
  position: relative;
  color: #f2f4fa;
}

.pro-list li::before {
  content: "";
  position: absolute;
  left: 0;
  top: 0.7em;
  width: 10px;
  height: 10px;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--gold), #ffd27d);
  box-shadow: 0 0 18px rgba(245, 178, 74, 0.45);
}

.pro-panel {
  padding: 28px;
  background:
    radial-gradient(circle at top, rgba(245, 178, 74, 0.22), transparent 35%),
    linear-gradient(180deg, rgba(20, 25, 40, 0.92), rgba(8, 12, 23, 0.96));
}

.pro-panel h3 {
  margin-top: 18px;
  font-size: 1.8rem;
}

.pro-panel p {
  margin-top: 14px;
  color: var(--muted);
}

.pro-points {
  margin-top: 24px;
  display: grid;
  gap: 16px;
}

.pro-points div {
  padding: 18px;
  border-radius: 22px;
  background: rgba(255, 255, 255, 0.03);
  border: 1px solid rgba(255, 255, 255, 0.06);
}

.pro-points strong,
.pro-points span {
  display: block;
}

.pro-points span {
  margin-top: 8px;
  color: var(--muted);
}

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

.step-card {
  position: relative;
  overflow: hidden;
}

.step-number {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 54px;
  height: 54px;
  border-radius: 16px;
  margin-bottom: 20px;
  background: linear-gradient(135deg, rgba(47, 130, 255, 0.22), rgba(88, 216, 255, 0.16));
  color: #e5f1ff;
  font-weight: 800;
  font-size: 1.1rem;
}

.cta-panel {
  padding: 42px 32px;
  text-align: center;
  background:
    radial-gradient(circle at top left, rgba(88, 216, 255, 0.18), transparent 28%),
    radial-gradient(circle at top right, rgba(245, 178, 74, 0.14), transparent 22%),
    linear-gradient(180deg, rgba(13, 18, 34, 0.94), rgba(7, 11, 23, 0.96));
}

.cta-panel h2 {
  margin-top: 16px;
  font-size: clamp(2.3rem, 4.5vw, 4rem);
  line-height: 1.02;
}

.cta-panel p {
  max-width: 720px;
  margin: 16px auto 0;
  color: var(--muted);
  font-size: 1.04rem;
}

.site-footer {
  padding: 0 0 56px;
}

.footer-grid {
  display: flex;
  align-items: start;
  justify-content: space-between;
  gap: 24px;
  padding-top: 28px;
  border-top: 1px solid rgba(255, 255, 255, 0.08);
}

.brand--footer .brand__mark {
  width: 48px;
  height: 48px;
}

.footer-copy {
  max-width: 480px;
  margin-top: 18px;
  color: var(--muted);
}

.policy-shell {
  padding-top: 8px;
}

.policy-grid {
  margin-top: 28px;
}

.policy-card h2 {
  margin: 0 0 10px;
  font-size: 1.32rem;
  letter-spacing: -0.03em;
}

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

@keyframes float-main {
  0%,
  100% {
    transform: translateX(-50%) rotate(-5deg) translateY(0);
  }
  50% {
    transform: translateX(-50%) rotate(-3deg) translateY(-10px);
  }
}

@keyframes float-alt {
  0%,
  100% {
    transform: translateY(0) rotate(var(--shot-tilt, 0deg));
  }
  50% {
    transform: translateY(-8px) rotate(var(--shot-tilt, 0deg));
  }
}

.shot-top {
  --shot-tilt: -12deg;
}

.shot-bottom {
  --shot-tilt: 10deg;
}

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

  .reveal,
  .button,
  .header-link,
  .footer-links a,
  .rail-button,
  .floating-shot {
    transition: none;
    animation: none;
  }

  .reveal {
    opacity: 1;
    transform: none;
  }
}

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

  .hero-stage {
    min-height: 620px;
    max-width: 620px;
    margin-inline: auto;
    width: 100%;
  }

  .hero-copy h1 {
    max-width: 12ch;
  }

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

@media (max-width: 900px) {
  .site-header {
    position: static;
  }

  .header-row,
  .footer-grid,
  .showcase-head {
    flex-direction: column;
    align-items: flex-start;
  }

  .header-nav {
    width: 100%;
  }

  .hero-stat-grid,
  .steps-grid,
  .policy-grid,
  .feature-grid {
    grid-template-columns: 1fr;
  }

  .trust-card {
    grid-column: span 12;
  }

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

  .floating-shot {
    border-radius: 28px;
  }

  .shot-main {
    width: min(72%, 360px);
  }

  .shot-top,
  .shot-bottom {
    width: min(38%, 190px);
  }
}

@media (max-width: 640px) {
  .section {
    padding: 72px 0;
  }

  .section--tight {
    padding-top: 56px;
    padding-bottom: 56px;
  }

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

  .hero-copy h1,
  .section-intro h2,
  .policy-title,
  .pro-copy h2,
  .cta-panel h2 {
    letter-spacing: -0.05em;
  }

  .hero-copy h1 {
    font-size: clamp(2.45rem, 10.4vw, 3.65rem);
    max-width: 8.8ch;
  }

  .hero-copy > p,
  .section-intro p,
  .pro-copy p,
  .cta-panel p {
    font-size: 1rem;
  }

  .hero-stage {
    min-height: 480px;
    overflow: hidden;
  }

  .shot-main {
    width: min(76%, 320px);
  }

  .shot-top {
    left: 2%;
  }

  .shot-bottom {
    right: 2%;
    bottom: 2%;
  }

  .privacy-float {
    top: auto;
    bottom: 8%;
    right: 4%;
    width: min(88%, 280px);
  }

  .cta-panel {
    padding: 32px 22px;
  }
}
