/* ═══════════════════════════════════════════
   ODYN — Premium Wealth Dashboard Landing
   ═══════════════════════════════════════════ */

/* ── CSS Variables ───────────────────────── */
:root {
  --bg: #050508;
  --mesh-navy: #040D21;
  --mesh-accent: #0A1628;
  --mesh-highlight: #0D2244;
  --text-primary: #ffffff;
  --text-secondary: rgba(255,255,255,0.56);
  --text-dim: rgba(255,255,255,0.4);
  --accent-blue: #2D6BE4;
  --surface-card: rgba(255,255,255,0.08);
  --surface-card-hover: rgba(255,255,255,0.12);
  --border: rgba(255,255,255,0.08);
  --border-hover: rgba(255,255,255,0.16);

  --font: 'Roboto Flex', sans-serif;
  --font-wdth-wide: 151;
  --font-wdth-normal: 120;
  --font-wdth-default: 100;

  --container: 1296px;
  --container-pad: 72px;
  --section-pad: 180px;
  --gap: 24px;
  --radius: 16px;
  --radius-pill: 250px;
  --nav-height: 80px;
}

/* ── Custom Cursor ────────────────────────── */
.cursor {
  position: fixed;
  top: 0;
  left: 0;
  z-index: 99998;
  pointer-events: none;
  mix-blend-mode: difference;
}

.cursor__dot {
  position: absolute;
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: #ffffff;
  transform: translate(-50%, -50%);
  transition: width 0.3s cubic-bezier(0.16, 1, 0.3, 1),
              height 0.3s cubic-bezier(0.16, 1, 0.3, 1);
}

.cursor__ring {
  position: absolute;
  width: 36px;
  height: 36px;
  border-radius: 50%;
  border: 1px solid rgba(255, 255, 255, 0.35);
  transform: translate(-50%, -50%);
  transition: width 0.3s cubic-bezier(0.16, 1, 0.3, 1),
              height 0.3s cubic-bezier(0.16, 1, 0.3, 1),
              border-color 0.3s ease,
              background 0.3s ease;
}

/* Hover on interactive elements — ring expands, dot shrinks */
.cursor.is-hover .cursor__ring {
  width: 56px;
  height: 56px;
  border-color: rgba(255, 255, 255, 0.5);
  background: rgba(255, 255, 255, 0.04);
}

.cursor.is-hover .cursor__dot {
  width: 3px;
  height: 3px;
}

/* Clicking state */
.cursor.is-click .cursor__ring {
  width: 28px;
  height: 28px;
  border-color: rgba(255, 255, 255, 0.6);
}

.cursor.is-click .cursor__dot {
  width: 4px;
  height: 4px;
}

/* Hide on touch devices and when cursor leaves window */
.cursor.is-hidden {
  opacity: 0;
}

@media (hover: none), (pointer: coarse) {
  .cursor { display: none; }
}

/* Hide default cursor on desktop */
@media (hover: hover) and (pointer: fine) {
  *, *::before, *::after { cursor: none !important; }
  /* Force repaint after bfcache restore */
  .cursor-fix, .cursor-fix *, .cursor-fix *::before, .cursor-fix *::after { cursor: default !important; }
}

/* ── Preloader ────────────────────────────── */
.preloader {
  position: fixed;
  inset: 0;
  z-index: 99999;
  background: #050508;
  background-image:
    radial-gradient(ellipse 60% 50% at 30% 40%, rgba(13, 34, 68, 0.4), transparent),
    radial-gradient(ellipse 50% 60% at 70% 60%, rgba(45, 107, 228, 0.08), transparent);
  display: flex;
  align-items: center;
  justify-content: center;
  pointer-events: none;
}

.preloader__orb {
  width: 100px;
  height: 100px;
  position: relative;
  opacity: 0;
  transform: scale(0.9);
  animation: preloaderOrbIn 0.8s cubic-bezier(0.16, 1, 0.3, 1) 0.1s forwards;
}

.preloader__orb-clip {
  width: 100%;
  height: 100%;
  border-radius: 50%;
  overflow: hidden;
  position: relative;
}

.preloader__orb-clip::after {
  content: '';
  position: absolute;
  inset: 0;
  background: rgba(10, 0, 82, 0.66);
  mix-blend-mode: soft-light;
  border-radius: 50%;
  z-index: 1;
  pointer-events: none;
}

.preloader__orb-clip video {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 110%;
  height: 110%;
  object-fit: cover;
}

.preloader__counter {
  font-family: var(--font);
  font-size: 14px;
  font-weight: 300;
  letter-spacing: 0.15em;
  color: rgba(255, 255, 255, 0.5);
  font-variant-numeric: tabular-nums;
  position: fixed;
  bottom: 48px;
  left: 50%;
  transform: translateX(-50%);
  opacity: 0;
  animation: preloaderFadeIn 0.6s cubic-bezier(0.16, 1, 0.3, 1) 0.3s forwards;
}

@keyframes preloaderOrbIn { to { opacity: 1; transform: scale(1); } }
@keyframes preloaderFadeIn { to { opacity: 1; } }

/* Page hidden until preloader finishes */
body.is-loading .nav,
body.is-loading .hero { opacity: 0; }
body.is-loading { overflow: hidden; }

/* ── Reset ────────────────────────────────── */
*, *::before, *::after {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

html {
  font-size: 16px;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  scroll-behavior: smooth;
}

body {
  font-family: var(--font);
  font-weight: 300;
  font-variation-settings: 'wdth' var(--font-wdth-default);
  color: var(--text-primary);
  background: var(--bg);
  line-height: 1.6;
  overflow-x: hidden;
}

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

ul { list-style: none; }

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

button {
  border: none;
  background: none;
  cursor: pointer;
  font: inherit;
  color: inherit;
}

/* ── WebGL Canvas ─────────────────────────── */
#mesh-gradient {
  position: fixed;
  top: 0;
  left: 0;
  width: 100vw;
  height: 100vh;
  z-index: -1;
  pointer-events: none;
}

/* ── Container ────────────────────────────── */
.container {
  max-width: calc(var(--container) + var(--container-pad) * 2);
  margin: 0 auto;
  padding: 0 var(--container-pad);
}

/* ── Typography ───────────────────────────── */
.text-uppercase {
  text-transform: uppercase;
}

/* ── Buttons ──────────────────────────────── */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  padding: 16px 24px;
  border-radius: var(--radius-pill);
  font-family: var(--font);
  font-weight: 500;
  font-size: 16px;
  font-variation-settings: 'wdth' var(--font-wdth-wide);
  text-transform: uppercase;
  white-space: nowrap;
  transition: transform 0.25s cubic-bezier(0.25, 0.46, 0.45, 0.94), background 0.3s ease, box-shadow 0.3s ease;
  cursor: pointer;
  text-decoration: none;
  line-height: 1.2;
}

.btn:hover {
  transform: scale(0.97);
}

.btn:active {
  transform: scale(0.93);
}

.btn--primary {
  background: #fff;
  color: #000;
}

.btn--primary:hover {
  box-shadow: 0 0 24px rgba(45, 107, 228, 0.4), 0 0 64px rgba(45, 107, 228, 0.15);
}

.btn__sub {
  color: rgba(0,0,0,0.4);
}

.btn--ghost {
  background: var(--surface-card);
  color: #fff;
  backdrop-filter: blur(16px);
  -webkit-backdrop-filter: blur(16px);
}

.btn--ghost:hover {
  background: var(--surface-card-hover);
}

/* CTA Pill (Get Started + text) */
.cta-pill {
  display: inline-flex;
  align-items: center;
  gap: 20px;
  background: rgba(255,255,255,0.06);
  border-radius: 130px;
  padding: 8px 18px 8px 8px;
}

.cta-pill .btn {
  height: 52px;
}

.cta-pill__text {
  font-size: 18px;
  font-weight: 300;
  font-variation-settings: 'wdth' var(--font-wdth-default);
  line-height: 1.2;
  max-width: 258px;
  text-align: left;
}

.cta-pill__text strong {
  font-weight: 400;
}

.cta-pill__text span {
  color: var(--text-secondary);
}

/* ═══════════════════════════════════════════
   NAV
   ═══════════════════════════════════════════ */
.nav {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 10000;
  padding: 24px 40px;
}

.nav::before {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(to bottom, rgba(0,0,0,1) 0%, rgba(0,0,0,0) 100%);
  opacity: 0;
  transition: opacity 0.6s ease;
  pointer-events: none;
  z-index: -1;
}

.nav--scrolled::before {
  opacity: 1;
}

.nav__inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.nav__logo img {
  height: 32px;
  width: auto;
}

.nav__links {
  display: flex;
  gap: 72px;
}

.nav__link {
  font-size: 14px;
  font-weight: 500;
  font-variation-settings: 'wdth' var(--font-wdth-normal);
  text-transform: uppercase;
  color: var(--text-primary);
  position: relative;
  transition: opacity 0.3s ease;
}

.nav__link::after {
  content: '';
  position: absolute;
  bottom: -4px;
  left: 0;
  width: 0;
  height: 1px;
  background: #fff;
  transition: width 0.3s ease;
}

.nav__link:hover::after {
  width: 100%;
}

.nav__link:hover {
  opacity: 0.8;
}

.nav__link--active {
  opacity: 1;
}

.nav__link--active::after {
  width: 100%;
}

.nav__cta {
  height: 40px;
  padding: 10px 22px;
  font-size: 14px;
}

.nav__mobile-cta {
  display: none;
}

.nav__hamburger {
  display: none;
  flex-direction: column;
  gap: 5px;
  width: 24px;
  padding: 4px 0;
}

.nav__hamburger span {
  display: block;
  width: 100%;
  height: 1.5px;
  background: #fff;
  transition: transform 0.3s ease, opacity 0.3s ease;
  transform-origin: center;
}

/* Hamburger → X animation */
.nav__hamburger--active span:nth-child(1) {
  transform: translateY(6.5px) rotate(45deg);
}

.nav__hamburger--active span:nth-child(2) {
  opacity: 0;
}

.nav__hamburger--active span:nth-child(3) {
  transform: translateY(-6.5px) rotate(-45deg);
}

/* ═══════════════════════════════════════════
   HERO
   ═══════════════════════════════════════════ */
.hero {
  position: relative;
  z-index: 1;
  height: 100vh;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  padding: 0 30px;
  overflow: visible;
}

.hero__orb {
  position: absolute;
  top: calc(50% + 40px);
  left: 50%;
  transform: translate(-50%, -50%);
  width: min(709px, 85vh);
  height: min(709px, 85vh);
  border-radius: 50%;
  overflow: hidden;
  z-index: 0;
}

.hero__orb::after {
  content: '';
  position: absolute;
  inset: 0;
  background: rgba(10, 0, 82, 0.66);
  mix-blend-mode: soft-light;
  border-radius: 50%;
  z-index: 1;
  pointer-events: none;
  box-shadow: inset 0 0 80px 40px rgba(0, 0, 0, 0.6);
}

.hero__orb-video {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.hero__content {
  position: relative;
  z-index: 2;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 40px;
}

.hero__logo {
  width: 321px;
  height: auto;
}

.hero__headline {
  display: flex;
  flex-direction: column;
  gap: 2px;
  text-align: center;
  margin: 0;
  font: inherit;
}

.hero__headline-line {
  font-size: 32px;
  font-weight: 500;
  font-variation-settings: 'wdth' var(--font-wdth-wide);
  text-transform: uppercase;
  line-height: 1;
}

.hero__headline-line--dim {
  opacity: 0.56;
}

.hero__ctas {
  display: flex;
  gap: 12px;
  align-items: center;
  justify-content: center;
}

/* ═══════════════════════════════════════════
   DASHBOARD PREVIEW
   ═══════════════════════════════════════════ */
.dashboard-preview {
  padding: var(--section-pad) 0;
  position: relative;
  z-index: 2;
}

.dashboard-preview__text {
  max-width: 783px;
  margin: 0 auto 80px;
  font-size: 24px;
  font-weight: 300;
  font-variation-settings: 'wdth' var(--font-wdth-default);
  line-height: 1.5;
  text-align: center;
  color: rgba(255,255,255,0.4);
}

.dashboard-preview__text--bright {
  color: rgba(255,255,255,0.8);
}

.dashboard-preview__image {
  max-width: 1028px;
  margin: 0 auto;
  border-radius: 56px;
  overflow: hidden;
  transition: filter 1.2s ease;
  position: relative;
  z-index: 3;
  background: #000000;
  border: 1px solid rgba(255, 255, 255, 0.12);
}

.dashboard-preview__image.is-glowing {
  filter: drop-shadow(0 0 80px rgba(100, 160, 255, 0.65))
          drop-shadow(0 0 180px rgba(0, 4, 255, 0.25));
}

.dashboard-preview__image img {
  width: 100%;
  border-radius: 0;
  display: block;
}

/* ═══════════════════════════════════════════
   FEATURES ROW
   ═══════════════════════════════════════════ */
.features-row {
  padding: var(--section-pad) 0 80px;
}

.features-row__grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 32px;
  margin-bottom: 80px;
}

.features-row__item {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 40px;
  text-align: center;
  max-width: 220px;
  margin: 0 auto;
}

.features-row__icon {
  height: 48px;
  width: auto;
  transition: transform 0.8s cubic-bezier(0.45, 0, 0.55, 1);
}

.features-row__icon.is-scaled {
  transform: scale(1.4);
}

.features-row__text {
  font-size: 18px;
  font-weight: 300;
  font-variation-settings: 'wdth' var(--font-wdth-default);
  line-height: 1.2;
  color: var(--text-primary);
}

.features-row__cta {
  display: flex;
  justify-content: center;
}

/* ═══════════════════════════════════════════
   FEATURE SECTIONS (6-11)
   ═══════════════════════════════════════════ */
/* ── Features Sticky Scroll ── */
.features-sticky {
  padding: 0;
}

.features-sticky__layout {
  display: flex;
  gap: 60px;
  align-items: flex-start;
}

.features-sticky__text-col {
  flex: 0 0 calc(50% - 30px);
}

.features-sticky__block {
  min-height: calc(100vh - var(--nav-height));
  display: flex;
  align-items: center;
  padding: 0;
}

.features-sticky__block:last-child {
  min-height: calc(100vh - var(--nav-height));
}

.feature-section__description {
  font-size: 24px;
  font-weight: 300;
  font-variation-settings: 'wdth' var(--font-wdth-default);
  line-height: 1.5;
  color: rgba(255,255,255,0.4);
  padding-left: 72px;
  max-width: 564px;
}

.feature-section__description strong {
  font-size: 24px;
  font-weight: 400;
  color: rgba(255,255,255,0.8);
}

.features-sticky__orb-col {
  flex: 0 0 calc(50% - 30px);
  position: sticky;
  top: var(--nav-height);
  height: calc(100vh - var(--nav-height));
  display: flex;
  align-items: center;
  justify-content: center;
}

.features-sticky__orb {
  position: relative;
  width: clamp(380px, 48vh, 600px);
  height: clamp(380px, 48vh, 600px);
  border-radius: 50%;
  overflow: hidden;
}

.features-sticky__img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  border-radius: 50%;
  opacity: 0;
  transition: opacity 0.6s ease;
}

.features-sticky__img.is-active {
  opacity: 1;
}

/* Mobile feature images — hidden on desktop */
.features-sticky__mobile-img {
  display: none;
}

/* ═══════════════════════════════════════════
   PRIVACY
   ═══════════════════════════════════════════ */
.privacy {
  padding: var(--section-pad) 0;
}

.privacy__card {
  background: var(--surface-card);
  border-radius: var(--radius);
  padding: 72px 202px;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 72px;
  text-align: center;
}

.privacy__icon {
  height: 120px;
  width: auto;
}

.privacy__heading {
  display: flex;
  flex-direction: column;
}

.privacy__heading-line {
  font-size: 32px;
  font-weight: 400;
  font-variation-settings: 'wdth' var(--font-wdth-wide);
  text-transform: uppercase;
  line-height: 1;
}

.privacy__heading-line--dim {
  opacity: 0.56;
}

.privacy__text {
  font-size: 20px;
  font-weight: 300;
  font-variation-settings: 'wdth' var(--font-wdth-default);
  line-height: 1.6;
  color: var(--text-secondary);
  max-width: 748px;
}

/* ═══════════════════════════════════════════
   FINAL CTA
   ═══════════════════════════════════════════ */
/* ── Shared Page CTA Component ── */
.page-cta {
  padding: var(--section-pad) 0;
  text-align: center;
  position: relative;
  z-index: 1;
}

.page-cta__inner {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 64px;
}

.page-cta__orb {
  position: relative;
  width: 140px;
  height: 140px;
  border-radius: 50%;
  overflow: hidden;
}

.page-cta__orb::after {
  content: '';
  position: absolute;
  inset: 0;
  background: rgba(10, 0, 82, 0.66);
  mix-blend-mode: soft-light;
  border-radius: 50%;
  z-index: 1;
  pointer-events: none;
}

.page-cta__orb video,
.page-cta__orb img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.page-cta__heading {
  display: flex;
  flex-direction: column;
  gap: 4px;
  font-size: clamp(28px, 4vw, 48px);
  font-weight: 500;
  font-variation-settings: 'wdth' var(--font-wdth-wide);
  text-transform: uppercase;
  line-height: 1.1;
  letter-spacing: -0.02em;
}

/* ═══════════════════════════════════════════
   FOOTER
   ═══════════════════════════════════════════ */
.footer {
  padding: 120px 0 60px;
}

.footer__grid {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: var(--gap);
  padding-bottom: 120px;
}

.footer__logo img {
  height: 32px;
  width: auto;
}

.footer__heading {
  font-size: 16px;
  font-weight: 400;
  font-variation-settings: 'wdth' var(--font-wdth-default);
  color: var(--text-primary);
  margin-bottom: 40px;
}

.footer__list {
  display: flex;
  flex-direction: column;
  gap: 20px;
}

.footer__list a,
.footer__list span {
  font-size: 16px;
  font-weight: 300;
  color: var(--text-secondary);
  transition: color 0.3s ease;
}

.footer__list a:hover {
  color: var(--text-primary);
}

.footer__ravens {
  display: flex;
  gap: 4px;
  margin-top: 24px;
  opacity: 0.15;
  transition: opacity 0.3s ease;
  cursor: pointer;
}

.footer__ravens:hover {
  opacity: 0.35;
}

.footer__raven {
  filter: brightness(0) invert(1);
}

.footer__raven--flip {
  transform: scaleX(-1);
}

.footer__bottom {
  display: flex;
  justify-content: space-between;
  font-size: 16px;
  font-weight: 300;
  color: var(--text-secondary);
  padding-top: 40px;
}

/* ═══════════════════════════════════════════
   COOKIE BANNER
   ═══════════════════════════════════════════ */
.cookie-banner {
  position: fixed;
  bottom: 0;
  left: 0;
  right: 0;
  z-index: 9999;
  padding: 20px 48px;
  background: rgba(5, 5, 8, 0.92);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  border-top: 1px solid rgba(255, 255, 255, 0.06);
  transform: translateY(100%);
  opacity: 0;
  transition: transform 0.5s cubic-bezier(0.16, 1, 0.3, 1),
              opacity 0.5s cubic-bezier(0.16, 1, 0.3, 1);
}

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

.cookie-banner__inner {
  max-width: var(--container);
  margin: 0 auto;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 32px;
}

.cookie-banner__text {
  font-size: 14px;
  font-weight: 300;
  color: rgba(255, 255, 255, 0.5);
  line-height: 1.5;
}

.cookie-banner__text a {
  color: rgba(255, 255, 255, 0.7);
  text-decoration: underline;
  text-underline-offset: 2px;
}

.cookie-banner__actions {
  display: flex;
  gap: 12px;
  flex-shrink: 0;
}

.cookie-banner__actions .btn {
  padding: 10px 24px;
  font-size: 13px;
}

/* ═══════════════════════════════════════════
   SECURITY PAGE
   ═══════════════════════════════════════════ */

/* ── Hero ── */
.sec-hero {
  min-height: 100vh;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  padding: var(--nav-height) 0 60px;
  position: relative;
  z-index: 1;
}

.sec-hero__inner {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 40px;
}

.sec-hero__ctas {
  display: flex;
  align-items: center;
  gap: 16px;
}

.sec-hero__badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 8px 20px;
  border-radius: var(--radius-pill);
  border: 1px solid var(--border);
  font-size: 13px;
  font-weight: 400;
  color: var(--text-secondary);
  letter-spacing: 0.06em;
  text-transform: uppercase;
}

.sec-hero__badge svg {
  opacity: 0.6;
}

.sec-hero__title {
  display: flex;
  flex-direction: column;
  gap: 4px;
}

.sec-hero__title-line {
  font-size: clamp(36px, 6vw, 64px);
  font-weight: 500;
  font-variation-settings: 'wdth' var(--font-wdth-wide);
  text-transform: uppercase;
  line-height: 1.05;
  letter-spacing: -0.02em;
}

.sec-hero__title-line--dim {
  opacity: 0.5;
}

.sec-hero__subtitle {
  max-width: 620px;
  font-size: 18px;
  font-weight: 300;
  line-height: 1.7;
  color: var(--text-secondary);
}

/* ── Principles (3 cards) ── */
.sec-principles {
  padding: 0 0 var(--section-pad);
  position: relative;
  z-index: 1;
}

.sec-principles__header {
  text-align: center;
  max-width: 720px;
  margin: 0 auto 80px;
}

.sec-principles__title {
  font-size: clamp(28px, 4vw, 48px);
  font-weight: 500;
  font-variation-settings: 'wdth' var(--font-wdth-wide);
  text-transform: uppercase;
  line-height: 1.15;
  letter-spacing: -0.02em;
  margin-bottom: 16px;
  max-width: 700px;
}

.sec-principles__title-line--dim {
  opacity: 0.5;
}

.sec-principles__intro {
  font-size: 18px;
  font-weight: 300;
  color: var(--text-secondary);
  letter-spacing: 0.02em;
}

.sec-principles__grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}

.sec-principles__card {
  background: var(--surface-card);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 48px 36px;
  display: flex;
  flex-direction: column;
  gap: 24px;
  transition: border-color 0.3s ease, transform 0.3s ease;
}

.sec-principles__card:hover {
  border-color: var(--border-hover);
  transform: translateY(-4px);
}

.sec-principles__icon {
  width: 48px;
  height: 48px;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 12px;
  background: rgba(45, 107, 228, 0.08);
  color: var(--accent-blue);
}

.sec-principles__icon--white {
  background: rgba(255, 255, 255, 0.06);
  color: rgba(255, 255, 255, 0.92);
}

.sec-principles__heading {
  font-size: 20px;
  font-weight: 500;
  font-variation-settings: 'wdth' 110;
  line-height: 1.2;
}

.sec-principles__text {
  font-size: 16px;
  font-weight: 300;
  line-height: 1.7;
  color: var(--text-secondary);
}

/* ── Security Layers (2-column layout) ── */
.sec-layers {
  padding: var(--section-pad) 0;
  position: relative;
  z-index: 1;
}

.sec-layers__layout {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  align-items: start;
}

.sec-layers__left {
  position: sticky;
  top: calc(var(--nav-height) + 48px);
}

.sec-layers__title {
  display: flex;
  flex-direction: column;
  gap: 4px;
  margin-bottom: 24px;
}

.sec-layers__title-line {
  font-size: clamp(28px, 4vw, 48px);
  font-weight: 500;
  font-variation-settings: 'wdth' var(--font-wdth-wide);
  text-transform: uppercase;
  line-height: 1.05;
  letter-spacing: -0.02em;
}

.sec-layers__title-line--dim {
  opacity: 0.5;
}

.sec-layers__subtitle {
  font-size: 18px;
  font-weight: 300;
  line-height: 1.7;
  color: var(--text-secondary);
  max-width: 460px;
}

.sec-layers__stack {
  display: flex;
  flex-direction: column;
  gap: 2px;
}

.sec-layers__layer {
  display: flex;
  gap: 24px;
  padding: 36px 32px;
  background: var(--surface-card);
  border: 1px solid var(--border);
  transition: border-color 0.3s ease, transform 0.3s ease;
}

.sec-layers__layer:first-child {
  border-radius: var(--radius) var(--radius) 0 0;
}

.sec-layers__layer:last-child {
  border-radius: 0 0 var(--radius) var(--radius);
}

.sec-layers__layer:hover {
  border-color: var(--border-hover);
  transform: translateX(-4px);
}

.sec-layers__number {
  font-size: 13px;
  font-weight: 600;
  color: var(--accent-blue);
  letter-spacing: 0.08em;
  font-variant-numeric: tabular-nums;
  min-width: 24px;
  padding-top: 3px;
}

.sec-layers__layer-content {
  display: flex;
  flex-direction: column;
  gap: 8px;
}

.sec-layers__item-title {
  font-size: 18px;
  font-weight: 500;
  font-variation-settings: 'wdth' 110;
  line-height: 1.2;
}

.sec-layers__item-text {
  font-size: 15px;
  font-weight: 300;
  line-height: 1.7;
  color: var(--text-secondary);
}

/* ── Data Anonymization ── */
.sec-anon {
  padding: var(--section-pad) 0;
  position: relative;
  z-index: 1;
}

.sec-anon__header {
  text-align: center;
  max-width: 640px;
  margin: 0 auto 80px;
}

.sec-anon__title {
  display: flex;
  flex-direction: column;
  gap: 4px;
  margin-bottom: 24px;
}

.sec-anon__title-line {
  font-size: clamp(28px, 4vw, 48px);
  font-weight: 500;
  font-variation-settings: 'wdth' var(--font-wdth-wide);
  text-transform: uppercase;
  line-height: 1.05;
  letter-spacing: -0.02em;
}

.sec-anon__title-line--dim {
  opacity: 0.5;
}

.sec-anon__subtitle {
  font-size: 18px;
  font-weight: 300;
  line-height: 1.7;
  color: var(--text-secondary);
}

.sec-anon__grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 24px;
  margin-bottom: 80px;
}

.sec-anon__card {
  background: var(--surface-card);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 48px 40px;
  display: flex;
  flex-direction: column;
  gap: 16px;
  transition: border-color 0.3s ease, transform 0.3s ease;
}

.sec-anon__card:hover {
  border-color: var(--border-hover);
  transform: translateY(-4px);
}

.sec-anon__card-icon {
  width: 44px;
  height: 44px;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 12px;
  background: rgba(255, 255, 255, 0.04);
  color: var(--accent-blue);
}

.sec-anon__card-title {
  font-size: 20px;
  font-weight: 500;
  font-variation-settings: 'wdth' 110;
  line-height: 1.2;
}

.sec-anon__card-text {
  font-size: 16px;
  font-weight: 300;
  line-height: 1.7;
  color: var(--text-secondary);
}

.sec-anon__statement {
  text-align: center;
  font-size: 20px;
  font-weight: 300;
  font-style: italic;
  line-height: 1.6;
  color: var(--text-secondary);
  max-width: 680px;
  margin: 0 auto;
  padding-top: 16px;
  border-top: 1px solid var(--border);
}

/* ── Your Control ── */
.sec-control {
  padding: 0 0 var(--section-pad);
  position: relative;
  z-index: 1;
}

.sec-control__card {
  background: var(--surface-card);
  border: 1px solid var(--border);
  border-radius: 24px;
  padding: 80px 72px;
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  gap: 48px;
}

.sec-control__title {
  display: flex;
  flex-direction: column;
  gap: 4px;
}

.sec-control__title-line {
  font-size: clamp(28px, 4vw, 48px);
  font-weight: 500;
  font-variation-settings: 'wdth' var(--font-wdth-wide);
  text-transform: uppercase;
  line-height: 1.05;
  letter-spacing: -0.02em;
}

.sec-control__title-line--dim {
  opacity: 0.5;
}

.sec-control__subtitle {
  font-size: 18px;
  font-weight: 300;
  line-height: 1.7;
  color: var(--text-secondary);
  max-width: 560px;
}

.sec-control__grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 48px;
  width: 100%;
}

.sec-control__item {
  display: flex;
  flex-direction: column;
  gap: 16px;
  align-items: center;
}

.sec-control__item-icon {
  width: 48px;
  height: 48px;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 14px;
  background: rgba(255, 255, 255, 0.04);
  border: 1px solid var(--border);
  color: rgba(255, 255, 255, 0.7);
}

.sec-control__item-title {
  font-size: 18px;
  font-weight: 500;
  font-variation-settings: 'wdth' 110;
}

.sec-control__item-text {
  font-size: 15px;
  font-weight: 300;
  line-height: 1.7;
  color: var(--text-secondary);
}

/* ── Trust Statement ── */
.sec-trust {
  padding: 0 0 var(--section-pad);
  position: relative;
  z-index: 1;
}

.sec-trust__inner {
  max-width: 720px;
  margin: 0 auto;
  text-align: center;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 24px;
}

.sec-trust__avatars {
  display: flex;
  justify-content: center;
  margin-bottom: 8px;
}

.sec-trust__avatar {
  width: 56px;
  height: 56px;
  border-radius: 50%;
  border: 2px solid rgba(255, 255, 255, 0.12);
  overflow: hidden;
  flex-shrink: 0;
}

.sec-trust__avatar img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

.sec-trust__avatar + .sec-trust__avatar {
  margin-left: -12px;
}

.sec-trust__avatar:nth-child(1) { z-index: 0; }
.sec-trust__avatar:nth-child(2) { z-index: 1; }
.sec-trust__avatar:nth-child(3) { z-index: 2; }
.sec-trust__avatar:nth-child(4) { z-index: 3; border-color: rgba(45, 107, 228, 0.2); }
.sec-trust__avatar:nth-child(5) { z-index: 2; }
.sec-trust__avatar:nth-child(6) { z-index: 1; }

.sec-trust__title {
  font-size: clamp(24px, 3vw, 32px);
  font-weight: 400;
  font-variation-settings: 'wdth' var(--font-wdth-wide);
  line-height: 1.3;
}

.sec-trust__text {
  font-size: 18px;
  font-weight: 300;
  line-height: 1.7;
  color: var(--text-secondary);
}

/* ── Security Page Responsive ── */
@media (max-width: 1280px) {
  .sec-control__card {
    padding: 64px 48px;
  }
}

@media (max-width: 768px) {
  .sec-hero {
    padding: calc(var(--nav-height) + 80px) 0 120px;
  }

  .sec-hero__title-line {
    font-size: 32px;
  }

  .sec-hero__subtitle {
    font-size: 16px;
  }

  .sec-principles__grid {
    grid-template-columns: 1fr;
  }

  .sec-principles__card {
    padding: 36px 28px;
  }

  .sec-layers__layout {
    grid-template-columns: 1fr;
    gap: 48px;
  }

  .sec-layers__left {
    position: static;
  }

  .sec-layers__layer {
    padding: 28px 24px;
  }

  .sec-anon__grid {
    grid-template-columns: 1fr;
  }

  .sec-anon__card {
    padding: 36px 28px;
  }

  .sec-anon__header {
    margin-bottom: 48px;
  }

  .sec-control__card {
    padding: 48px 28px;
    border-radius: var(--radius);
  }

  .sec-control__grid {
    grid-template-columns: 1fr;
    gap: 36px;
  }

  .sec-trust__title {
    font-size: 24px;
  }
}

@media (max-width: 375px) {
  .sec-hero__title-line {
    font-size: 28px;
  }

  .sec-principles__card {
    padding: 28px 20px;
  }

  .sec-layers__layer {
    padding: 24px 16px;
    gap: 16px;
  }

  .sec-anon__card {
    padding: 28px 20px;
  }

  .sec-control__card {
    padding: 36px 20px;
  }
}

/* ═══════════════════════════════════════════
   PRICING PAGE
   ═══════════════════════════════════════════ */

/* ── Pricing Hero ── */
.price-hero {
  min-height: 100vh;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  padding: var(--nav-height) 0 60px;
  position: relative;
  z-index: 1;
}

.price-hero__inner {
  max-width: 720px;
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 32px;
}

.price-hero__badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 8px 20px;
  border: 1px solid var(--border);
  border-radius: var(--radius-pill);
  font-size: 13px;
  font-weight: 400;
  color: var(--text-secondary);
  letter-spacing: 0.06em;
  text-transform: uppercase;
}

.price-hero__badge svg {
  opacity: 0.6;
}

.price-hero__title {
  display: flex;
  flex-direction: column;
  gap: 4px;
}

.price-hero__title-line {
  font-size: clamp(36px, 5.5vw, 72px);
  font-weight: 500;
  font-variation-settings: 'wdth' var(--font-wdth-wide);
  text-transform: uppercase;
  line-height: 1.05;
  letter-spacing: -0.03em;
}

.price-hero__title-line--dim {
  opacity: 0.5;
}

/* ── Beta Card ── */
.price-beta {
  padding: 0 0 var(--section-pad);
  position: relative;
  z-index: 1;
}

.price-beta__card {
  max-width: 560px;
  margin: 0 auto;
  text-align: center;
  padding: 80px 64px;
  background: var(--surface-card);
  border: 1px solid rgba(45, 107, 228, 0.2);
  border-radius: 24px;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 24px;
  position: relative;
  overflow: hidden;
}

.price-beta__card-glow {
  position: absolute;
  inset: -1px;
  border-radius: 25px;
  background: radial-gradient(ellipse 80% 50% at 50% 0%, rgba(45, 107, 228, 0.1), transparent 70%);
  pointer-events: none;
  z-index: 0;
}

.price-beta__icon {
  color: var(--accent-blue);
  opacity: 0.7;
  position: relative;
  z-index: 1;
}

.price-beta__label {
  display: inline-flex;
  padding: 5px 16px;
  border-radius: var(--radius-pill);
  background: rgba(45, 107, 228, 0.1);
  border: 1px solid rgba(45, 107, 228, 0.2);
  font-size: 12px;
  font-weight: 500;
  color: var(--accent-blue);
  letter-spacing: 0.06em;
  text-transform: uppercase;
  position: relative;
  z-index: 1;
}

.price-beta__title {
  font-size: clamp(28px, 4vw, 48px);
  font-weight: 500;
  font-variation-settings: 'wdth' var(--font-wdth-wide);
  line-height: 1.1;
  letter-spacing: -0.02em;
  position: relative;
  z-index: 1;
}

.price-beta__subtitle {
  font-size: 18px;
  font-weight: 300;
  line-height: 1.7;
  color: var(--text-secondary);
  max-width: 400px;
  position: relative;
  z-index: 1;
}

.price-beta__cta {
  position: relative;
  z-index: 1;
  margin-top: 8px;
}

/* ── What's Included ── */
.price-included {
  padding: 0 0 var(--section-pad);
  position: relative;
  z-index: 1;
}

.price-included__header {
  text-align: center;
  max-width: 640px;
  margin: 0 auto 80px;
}

.price-included__title {
  display: flex;
  flex-direction: column;
  gap: 4px;
  margin-bottom: 24px;
}

.price-included__title-line {
  font-size: clamp(28px, 4vw, 48px);
  font-weight: 500;
  font-variation-settings: 'wdth' var(--font-wdth-wide);
  text-transform: uppercase;
  line-height: 1.05;
  letter-spacing: -0.02em;
}

.price-included__title-line--dim {
  opacity: 0.5;
}

.price-included__subtitle {
  font-size: 18px;
  font-weight: 300;
  line-height: 1.7;
  color: var(--text-secondary);
}

.price-included__grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 20px;
  max-width: 960px;
  margin: 0 auto;
}

.price-included__item {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 20px;
  text-align: center;
  padding: 48px 32px;
  background: var(--surface-card);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  font-size: 17px;
  font-weight: 400;
  line-height: 1.4;
  color: var(--text-primary);
  transition: border-color 0.3s ease, transform 0.3s ease;
}

.price-included__item:hover {
  border-color: var(--border-hover);
  transform: translateY(-4px);
}

.price-included__item-icon {
  width: 56px;
  height: 56px;
  min-width: 56px;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 16px;
  background: rgba(45, 107, 228, 0.08);
  border: 1px solid rgba(45, 107, 228, 0.12);
  color: var(--accent-blue);
}

/* ── Pricing Responsive ── */
@media (max-width: 1280px) {
  .price-included__grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 16px;
  }

  .price-included__item {
    padding: 40px 24px;
  }
}

@media (max-width: 768px) {
  .price-hero {
    padding: calc(var(--nav-height) + 80px) 0 40px;
    min-height: auto;
  }

  .price-hero__title-line {
    font-size: 32px;
  }

  .price-beta__card {
    padding: 56px 32px;
  }

  .price-included__grid {
    grid-template-columns: 1fr;
  }

  .price-included__header {
    margin-bottom: 48px;
  }
}

@media (max-width: 375px) {
  .price-hero__title-line {
    font-size: 28px;
  }

  .price-beta__card {
    padding: 40px 20px;
    border-radius: var(--radius);
  }

  .price-included__grid {
    grid-template-columns: 1fr;
  }

  .price-included__item {
    padding: 28px 20px;
  }
}

/* ═══════════════════════════════════════════
   ABOUT PAGE
   ═══════════════════════════════════════════ */

/* ── Hero ── */
.about-hero {
  min-height: 100vh;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  padding: var(--nav-height) 0 60px;
  position: relative;
  z-index: 1;
}

.about-hero__inner {
  max-width: 800px;
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 32px;
}

.about-hero__badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 8px 20px;
  border: 1px solid var(--border);
  border-radius: var(--radius-pill);
  font-size: 13px;
  font-weight: 400;
  color: var(--text-secondary);
  letter-spacing: 0.06em;
  text-transform: uppercase;
}

.about-hero__badge svg {
  opacity: 0.6;
}

.about-hero__title {
  font-size: clamp(32px, 5vw, 64px);
  font-weight: 500;
  font-variation-settings: 'wdth' var(--font-wdth-wide);
  text-transform: uppercase;
  line-height: 1.12;
  letter-spacing: -0.03em;
  max-width: 780px;
}

.about-hero__title .about-hero__title-line--dim {
  opacity: 0.5;
}

.about-hero__title .about-hero__title-line {
  /* accent line inherits size */
}

.about-hero__subtitle {
  font-size: clamp(16px, 1.4vw, 20px);
  color: var(--text-secondary);
  line-height: 1.6;
  max-width: 600px;
}

/* ── Story ── */
.about-story {
  padding: var(--section-pad) 0;
  position: relative;
  z-index: 1;
}

.about-story__inner {
  text-align: center;
  max-width: 740px;
  margin: 0 auto;
}

.about-story__title {
  font-size: clamp(36px, 4.5vw, 64px);
  font-weight: 500;
  font-variation-settings: 'wdth' var(--font-wdth-wide);
  text-transform: uppercase;
  line-height: 1.08;
  letter-spacing: -0.03em;
  margin-bottom: 40px;
}

.about-story__title--dim {
  opacity: 0.4;
}

.about-story__content {
  display: flex;
  flex-direction: column;
  gap: 28px;
}

.about-story__text {
  font-size: clamp(16px, 1.3vw, 18px);
  color: var(--text-secondary);
  line-height: 1.75;
  font-variation-settings: 'wdth' var(--font-wdth-normal);
}

.about-story__text--accent {
  color: var(--text-primary);
  font-weight: 500;
  font-size: clamp(18px, 1.5vw, 22px);
}

/* ── Meaning ── */
.about-meaning {
  padding: calc(var(--section-pad) * 1.5) 0 var(--section-pad);
  position: relative;
  z-index: 1;
}

.about-meaning__inner {
  max-width: 720px;
  margin: 0 auto;
  text-align: center;
  display: flex;
  flex-direction: column;
  align-items: center;
}

.about-meaning__orb {
  width: 120px;
  height: 120px;
  border-radius: 50%;
  overflow: hidden;
  margin-bottom: 48px;
  position: relative;
}

.about-meaning__orb::after {
  content: '';
  position: absolute;
  inset: 0;
  background: rgba(10, 0, 82, 0.66);
  mix-blend-mode: soft-light;
  border-radius: 50%;
  z-index: 1;
  pointer-events: none;
  box-shadow: inset 0 0 40px 20px rgba(0, 0, 0, 0.6);
}

.about-meaning__orb video {
  width: 110%;
  height: 110%;
  object-fit: cover;
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
}

.about-meaning__title {
  font-size: clamp(28px, 3vw, 44px);
  font-weight: 500;
  font-variation-settings: 'wdth' var(--font-wdth-wide);
  text-transform: uppercase;
  letter-spacing: -0.02em;
  margin-bottom: 32px;
}

.about-meaning__text {
  font-size: clamp(16px, 1.3vw, 18px);
  color: var(--text-secondary);
  line-height: 1.75;
  max-width: 580px;
  margin: 0 auto;
}

.about-meaning__text + .about-meaning__text {
  margin-top: 20px;
}

/* ── Vision ── */
.about-vision {
  padding: calc(var(--section-pad) * 1.3) 0 var(--section-pad);
  position: relative;
  z-index: 1;
}

.about-vision__inner {
  text-align: center;
  max-width: 900px;
  margin: 0 auto;
}

.about-vision__heading {
  font-size: clamp(36px, 4.5vw, 64px);
  font-weight: 500;
  font-variation-settings: 'wdth' var(--font-wdth-wide);
  text-transform: uppercase;
  line-height: 1.08;
  letter-spacing: -0.03em;
  margin-bottom: 24px;
}

.about-vision__heading--dim {
  opacity: 0.4;
}

.about-vision__lead {
  font-size: clamp(17px, 1.4vw, 20px);
  color: var(--text-secondary);
  line-height: 1.6;
  font-weight: 300;
  max-width: 560px;
  margin: 0 auto 72px;
}

.about-vision__pillars {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 32px;
  margin-bottom: 72px;
}

.about-vision__pillar {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 16px;
  padding: 48px 24px;
}

.about-vision__pillar-icon {
  width: 56px;
  height: 56px;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  background: rgba(45, 107, 228, 0.06);
  border: 1px solid rgba(45, 107, 228, 0.1);
  color: var(--accent-blue);
  margin-bottom: 8px;
}

.about-vision__pillar-title {
  font-size: 22px;
  font-weight: 500;
  font-variation-settings: 'wdth' var(--font-wdth-normal);
  letter-spacing: -0.01em;
}

.about-vision__pillar-text {
  font-size: 16px;
  color: var(--text-secondary);
  line-height: 1.5;
  font-weight: 300;
}

.about-vision__credo {
  font-size: clamp(18px, 1.5vw, 22px);
  color: var(--text-primary);
  font-weight: 500;
  font-style: italic;
  letter-spacing: -0.01em;
}

/* ── Team ── */
.about-team {
  padding: calc(var(--section-pad) * 1.3) 0 var(--section-pad);
  position: relative;
  z-index: 1;
  text-align: center;
}

.about-team__header {
  margin-bottom: 40px;
}

.about-team__title {
  font-size: clamp(36px, 4.5vw, 64px);
  font-weight: 500;
  font-variation-settings: 'wdth' var(--font-wdth-wide);
  text-transform: uppercase;
  line-height: 1.08;
  letter-spacing: -0.03em;
}

.about-team__text {
  font-size: clamp(16px, 1.3vw, 19px);
  color: var(--text-secondary);
  line-height: 1.7;
  max-width: 680px;
  margin: 0 auto;
}

/* ── Looking Ahead ── */
.about-ahead {
  padding: calc(var(--section-pad) * 1.3) 0 var(--section-pad);
  position: relative;
  z-index: 1;
}

.about-ahead__card {
  position: relative;
  max-width: 800px;
  margin: 0 auto;
  text-align: center;
  padding: 80px 60px;
  border-radius: 20px;
  border: 1px solid var(--border);
  background: rgba(255, 255, 255, 0.03);
  backdrop-filter: blur(24px);
  -webkit-backdrop-filter: blur(24px);
  overflow: hidden;
}

.about-ahead__card-glow {
  position: absolute;
  bottom: -30%;
  left: 50%;
  transform: translateX(-50%);
  width: 400px;
  height: 300px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(45, 107, 228, 0.1), transparent 70%);
  pointer-events: none;
}

.about-ahead__title {
  font-size: clamp(24px, 2.5vw, 36px);
  font-weight: 500;
  font-variation-settings: 'wdth' var(--font-wdth-wide);
  text-transform: uppercase;
  letter-spacing: -0.02em;
  margin-bottom: 28px;
}

.about-ahead__text {
  font-size: clamp(15px, 1.2vw, 17px);
  color: var(--text-secondary);
  line-height: 1.7;
  max-width: 600px;
  margin: 0 auto 40px;
}

/* ── About Responsive ── */
@media (max-width: 1280px) {
  .about-story__inner {
    max-width: 680px;
  }
}

@media (max-width: 768px) {
  .about-hero {
    min-height: auto;
    padding: calc(var(--nav-height) + 60px) 0 40px;
  }

  .about-hero__title {
    font-size: clamp(28px, 7vw, 40px);
  }

  .about-story__title {
    font-size: clamp(28px, 7vw, 40px);
  }

  .about-vision__pillars {
    grid-template-columns: 1fr;
    gap: 16px;
  }

  .about-vision__pillar {
    padding: 32px 20px;
  }

  .about-vision__lead {
    margin-bottom: 48px;
  }

  .about-meaning__inner {
    padding: 0 8px;
  }

  .about-meaning__orb {
    width: 88px;
    height: 88px;
    margin-bottom: 32px;
  }

  .about-ahead__card {
    padding: 48px 28px;
    border-radius: var(--radius);
  }

  .about-team__title {
    font-size: clamp(28px, 7vw, 40px);
  }
}

@media (max-width: 375px) {
  .about-hero__title {
    font-size: 26px;
  }

  .about-story__title,
  .about-team__title {
    font-size: 26px;
  }

  .about-ahead__card {
    padding: 36px 20px;
  }
}

/* ═══════════════════════════════════════════
   LEGAL PAGES
   ═══════════════════════════════════════════ */
.legal {
  min-height: 100vh;
  background: transparent;
  padding: calc(var(--nav-height) + 80px) 0 120px;
  position: relative;
  z-index: 1;
}

.legal__container {
  max-width: 720px;
  margin: 0 auto;
  padding: 0 var(--container-pad);
}

.legal__back {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-size: 13px;
  font-weight: 400;
  letter-spacing: 0.05em;
  text-transform: uppercase;
  color: rgba(255, 255, 255, 0.4);
  margin-bottom: 48px;
  transition: color 0.3s ease;
}

.legal__back:hover {
  color: rgba(255, 255, 255, 0.7);
}

.legal__title {
  font-size: clamp(32px, 5vw, 48px);
  font-weight: 600;
  font-variation-settings: 'wdth' 110;
  letter-spacing: -0.02em;
  margin-bottom: 16px;
}

.legal__updated {
  font-size: 14px;
  color: rgba(255, 255, 255, 0.3);
  margin-bottom: 64px;
}

.legal__content h2 {
  font-size: 20px;
  font-weight: 500;
  margin-top: 48px;
  margin-bottom: 16px;
  color: rgba(255, 255, 255, 0.85);
}

.legal__content p {
  font-size: 16px;
  font-weight: 300;
  line-height: 1.7;
  color: rgba(255, 255, 255, 0.45);
  margin-bottom: 16px;
}

.legal__content ul {
  list-style: none;
  margin-bottom: 16px;
  padding-left: 0;
}

.legal__content li {
  font-size: 16px;
  font-weight: 300;
  line-height: 1.7;
  color: rgba(255, 255, 255, 0.45);
  padding-left: 20px;
  position: relative;
  margin-bottom: 8px;
}

.legal__content li::before {
  content: '';
  position: absolute;
  left: 0;
  top: 12px;
  width: 4px;
  height: 4px;
  border-radius: 50%;
  background: var(--accent-blue);
  opacity: 0.6;
}

.legal__content a {
  color: var(--accent-blue);
  text-decoration: underline;
  text-underline-offset: 2px;
}

.legal--policy .legal__container {
  max-width: 1040px;
}

.legal--policy .legal__content {
  display: grid;
  gap: 0;
}

.legal--policy .legal__content code {
  font-family: ui-monospace, SFMono-Regular, Menlo, Monaco, Consolas, "Liberation Mono", monospace;
  font-size: 0.92em;
  color: rgba(255, 255, 255, 0.88);
  background: rgba(255, 255, 255, 0.08);
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: 999px;
  padding: 0.18em 0.55em;
}

.policy-summary {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 18px;
  margin: 40px 0 20px;
}

.policy-card {
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.08), rgba(255, 255, 255, 0.03)),
    rgba(8, 15, 28, 0.5);
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: 24px;
  padding: 26px 24px 24px;
  backdrop-filter: blur(10px);
}

.policy-card__eyebrow {
  display: inline-flex;
  margin-bottom: 14px;
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: rgba(91, 182, 255, 0.9);
}

.policy-card h2 {
  margin: 0 0 12px;
  font-size: 19px;
  line-height: 1.3;
  color: rgba(255, 255, 255, 0.92);
}

.policy-card p {
  margin: 0;
}

.policy-table-wrap {
  margin: 24px 0 8px;
  overflow-x: auto;
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: 24px;
  background: rgba(8, 15, 28, 0.48);
  backdrop-filter: blur(12px);
}

.policy-table {
  width: 100%;
  min-width: 920px;
  border-collapse: collapse;
}

.policy-table thead th {
  text-align: left;
  font-size: 12px;
  font-weight: 600;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: rgba(255, 255, 255, 0.55);
  padding: 18px 20px;
  border-bottom: 1px solid rgba(255, 255, 255, 0.08);
  background: rgba(255, 255, 255, 0.03);
}

.policy-table tbody td {
  vertical-align: top;
  font-size: 15px;
  line-height: 1.6;
  color: rgba(255, 255, 255, 0.62);
  padding: 18px 20px;
  border-top: 1px solid rgba(255, 255, 255, 0.06);
}

.policy-table tbody tr:first-child td {
  border-top: none;
}

.legal--policy .legal__content h3 {
  font-size: 17px;
  font-weight: 500;
  margin-top: 28px;
  margin-bottom: 12px;
  color: rgba(255, 255, 255, 0.88);
}

/* ═══════════════════════════════════════════
   RESPONSIVE
   ═══════════════════════════════════════════ */

/* Large desktops */
@media (max-width: 1280px) {
  :root {
    --container-pad: 40px;
  }

  .privacy__card {
    padding: 72px 100px;
  }
}

/* Nav → Burger (earlier breakpoint for 5 links + CTA) */
@media (max-width: 1080px) {
  .nav__links {
    display: none;
  }

  .policy-summary {
    grid-template-columns: 1fr;
  }

  .policy-card {
    border-radius: 20px;
    padding: 22px 20px;
  }

  .policy-table-wrap {
    border-radius: 20px;
    margin-top: 20px;
  }

  .nav__cta {
    display: none;
  }

  .nav__hamburger {
    display: flex;
    position: relative;
    z-index: 2;
  }

  /* Mobile nav overlay — base (always in DOM, hidden) */
  .nav__links {
    display: flex;
    flex-direction: column;
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(5,5,8,0.97);
    backdrop-filter: blur(24px);
    -webkit-backdrop-filter: blur(24px);
    align-items: center;
    justify-content: center;
    gap: 36px;
    z-index: 1;
    opacity: 0;
    visibility: hidden;
    transition: opacity 0.4s ease, visibility 0.4s ease;
  }

  .nav__links .nav__link {
    font-size: 24px;
    transform: translateY(20px);
    opacity: 0;
    transition: transform 0.4s ease, opacity 0.4s ease;
  }

  .nav__links--open {
    opacity: 1;
    visibility: visible;
  }

  .nav__links--open .nav__link {
    transform: translateY(0);
    opacity: 1;
  }

  .nav__links--open .nav__link:nth-child(1) { transition-delay: 0.05s; }
  .nav__links--open .nav__link:nth-child(2) { transition-delay: 0.1s; }
  .nav__links--open .nav__link:nth-child(3) { transition-delay: 0.15s; }
  .nav__links--open .nav__link:nth-child(4) { transition-delay: 0.2s; }

  /* Mobile nav CTA button */
  .nav__mobile-cta {
    display: block;
    margin-top: 12px;
    transform: translateY(20px);
    opacity: 0;
    transition: transform 0.4s ease 0.25s, opacity 0.4s ease 0.25s;
  }

  .nav__links--open .nav__mobile-cta {
    transform: translateY(0);
    opacity: 1;
  }
}

/* Tablet */
@media (max-width: 768px) {
  :root {
    --container-pad: 24px;
    --section-pad: 100px;
  }

  .hero__orb {
    width: 400px;
    height: 400px;
  }

  .hero__logo {
    width: 200px;
  }

  .hero__headline-line {
    font-size: 24px;
  }

  .hero__ctas {
    flex-direction: column;
  }

  .dashboard-preview__image {
    display: none;
  }

  .dashboard-preview {
    padding-bottom: 24px;
  }

  .dashboard-preview__text {
    margin-bottom: 0;
  }

  .features-row {
    padding-top: 0;
    padding-bottom: 40px;
  }

  .features-row__grid {
    display: none;
  }

  .cta-pill {
    flex-direction: column;
    padding: 24px;
    border-radius: 24px;
    text-align: center;
    align-items: center;
  }

  .cta-pill__text {
    max-width: none;
    text-align: center;
  }

  .features-sticky__layout {
    flex-direction: column;
  }

  .features-sticky__text-col {
    flex: none;
    width: 100%;
  }

  .features-sticky__block {
    min-height: auto;
    padding: 40px 0;
    flex-direction: column;
    align-items: stretch;
    gap: 32px;
  }

  .feature-section__description {
    padding-left: 0;
    max-width: none;
  }

  .features-sticky__mobile-img {
    display: block;
    width: 100vw;
    height: 100vw;
    margin-left: calc(-1 * var(--container-pad));
    border-radius: 50%;
    overflow: hidden;
    flex-shrink: 0;
  }

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

  .features-sticky__orb-col {
    display: none;
  }

  .privacy__card {
    padding: 48px 24px;
  }

  .privacy__heading-line {
    font-size: 24px;
  }

  .footer__grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 40px;
  }

}

/* Mobile */
@media (max-width: 375px) {
  :root {
    --container-pad: 16px;
    --section-pad: 80px;
  }

  .hero__orb {
    width: 300px;
    height: 300px;
  }

  .hero__headline-line {
    font-size: 20px;
  }

  .features-row__grid {
    grid-template-columns: 1fr;
  }

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

  .page-cta__heading {
    font-size: 24px;
  }
}
