/* ═══════════════════════════════════════════
   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; }
}

/* ── Preloader ────────────────────────────── */
.preloader {
  position: fixed;
  inset: 0;
  z-index: 99999;
  background: rgba(5, 5, 8, 0.85);
  display: flex;
  align-items: center;
  justify-content: center;
  pointer-events: none;
}

.preloader__orb {
  width: 180px;
  height: 180px;
  border-radius: 50%;
  overflow: hidden;
  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::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 video {
  width: 100%;
  height: 100%;
  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.3);
  opacity: 0;
  animation: preloaderFadeIn 0.6s cubic-bezier(0.16, 1, 0.3, 1) 0.3s forwards;
  font-variant-numeric: tabular-nums;
  position: absolute;
  bottom: 48px;
  left: 50%;
  transform: translateX(-50%);
}

@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;
  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__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: 100;
  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__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;
}

.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;
}

.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
   ═══════════════════════════════════════════ */
.final-cta {
  padding: var(--section-pad) 0;
  text-align: center;
}

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

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

.final-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;
}

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

.final-cta__heading {
  display: flex;
  flex-direction: column;
}

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

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

.footer__grid {
  display: grid;
  grid-template-columns: repeat(4, 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;
}

.footer__ravens:hover {
  opacity: 0.35;
}

.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;
}

/* ═══════════════════════════════════════════
   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;
  }
}

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

  .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: 100;
  }

  /* 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: 99;
    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;
  }

  .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;
  }

  .final-cta__heading span {
    font-size: 24px;
  }
}
