/* ═══════════════════════════════════════════════════
   DESIGN TOKENS — White + Magenta/Teal Palette
   ═══════════════════════════════════════════════════ */
:root {
  --text-xs:   clamp(0.75rem,  0.7rem  + 0.25vw, 0.875rem);
  --text-sm:   clamp(0.875rem, 0.8rem  + 0.35vw, 1rem);
  --text-base: clamp(1rem,     0.95rem + 0.25vw, 1.125rem);
  --text-lg:   clamp(1.125rem, 1rem    + 0.75vw, 1.5rem);
  --text-xl:   clamp(1.5rem,   1.2rem  + 1.25vw, 2.25rem);
  --text-2xl:  clamp(2rem,     1.2rem  + 2.5vw,  3.5rem);
  --text-3xl:  clamp(2.5rem,   1rem    + 4vw,    5rem);
  --text-hero: clamp(2.8rem,   0.5rem  + 6.5vw,  6.5rem);

  --space-1:  0.25rem;  --space-2:  0.5rem;   --space-3:  0.75rem;
  --space-4:  1rem;     --space-5:  1.25rem;  --space-6:  1.5rem;
  --space-7:  1.75rem;  --space-8:  2rem;     --space-9:  2.25rem;
  --space-10: 2.5rem;   --space-12: 3rem;
  --space-16: 4rem;     --space-20: 5rem;     --space-24: 6rem;
  --space-32: 8rem;

  --radius-sm: 0.375rem; --radius-md: 0.5rem;  --radius-lg: 0.75rem;
  --radius-xl: 1rem;     --radius-2xl: 1.5rem; --radius-full: 9999px;

  --transition: 180ms cubic-bezier(0.16, 1, 0.3, 1);

  --font-display: 'Cormorant Garamond', Georgia, serif;
  --font-body:    'Switzer', 'Helvetica Neue', sans-serif;

  --content-narrow: 640px;
  --content-default: 960px;
  --content-wide: 1200px;
}

/* LIGHT PALETTE — White base, Magenta + Teal */
:root, [data-theme="light"] {
  /* Backgrounds */
  --color-bg:              #ffffff;
  --color-surface:         #F8F8F8;
  --color-surface-2:       #F2F2F2;
  --color-surface-offset:  #EBEBEB;
  --color-divider:         #E0E0E0;
  --color-border:          #D4D4D4;

  /* Text */
  --color-text:            #1A1A2E;
  --color-text-muted:      #555577;
  --color-text-faint:      #9999AA;
  --color-text-inverse:    #ffffff;

  /* Magenta (primary accent) */
  --color-magenta:         #D946A8;
  --color-magenta-hover:   #C4309A;
  --color-magenta-active:  #B0208C;
  --color-magenta-light:   #FDF0FA;
  --color-magenta-mid:     #F5B8E8;
  --color-magenta-glow:    rgba(217,70,168,0.08);

  /* Teal (secondary accent) */
  --color-teal:            #00B4BE;
  --color-teal-hover:      #00A0AA;
  --color-teal-active:     #008C96;
  --color-teal-light:      #E4F8FA;
  --color-teal-mid:        #80DDE4;
  --color-teal-glow:       rgba(0, 180, 190, 0.08);
  --color-pink:            #D946A8;
  --color-pink-light:      #FDF0FA;
  --color-pink-mid:        #F5B8E8;
  --color-pink-glow:       rgba(217,70,168,0.08);

  /* Shadows */
  --shadow-sm: 0 1px 3px rgba(0, 0, 30, 0.07);
  --shadow-md: 0 4px 16px rgba(0, 0, 30, 0.09);
  --shadow-lg: 0 12px 40px rgba(0, 0, 30, 0.12);
  --shadow-magenta: 0 6px 28px rgba(217, 70, 168, 0.18);
  --shadow-teal: 0 6px 28px rgba(0, 180, 190, 0.18);
}

/* DARK MODE */
[data-theme="dark"] {
  --color-bg:              #0A0A14;
  --color-surface:         #10101C;
  --color-surface-2:       #14141E;
  --color-surface-offset:  #1A1A28;
  --color-divider:         #222230;
  --color-border:          #2A2A3A;
  --color-text:            #F2F2F2;
  --color-text-muted:      #9090A8;
  --color-text-faint:      #606080;
  --color-text-inverse:    #0A0A14;

  --color-magenta:         #E060C0;
  --color-magenta-hover:   #E878D0;
  --color-magenta-active:  #F090E0;
  --color-magenta-light:   #3A0A2E;
  --color-magenta-mid:     #901880;
  --color-magenta-glow:    rgba(217, 70, 168, 0.12);

  --color-teal:            #00C2CC;
  --color-teal-hover:      #20D0DA;
  --color-teal-active:     #40D8E0;
  --color-teal-light:      #0A3A3E;
  --color-teal-mid:        #008E96;
  --color-teal-glow:       rgba(0, 194, 204, 0.15);
  --color-pink:            #E060C0;
  --color-pink-light:      #3A0A2E;
  --color-pink-mid:        #901880;
  --color-pink-glow:       rgba(217, 70, 168, 0.12);

  --shadow-sm: 0 1px 3px rgba(0,0,0,0.3);
  --shadow-md: 0 4px 16px rgba(0,0,0,0.4);
  --shadow-lg: 0 12px 40px rgba(0,0,0,0.55);
  --shadow-magenta: 0 6px 28px rgba(160, 72, 224, 0.25);
  --shadow-teal: 0 6px 28px rgba(0, 184, 200, 0.2);
}

/* ═══════════════════════════════════════════════════
   BASE RESET
   ═══════════════════════════════════════════════════ */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html {
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  text-rendering: optimizeLegibility;
  scroll-behavior: smooth;
  scroll-padding-top: var(--space-16);
}
body {
  min-height: 100dvh;
  line-height: 1.6;
  font-family: var(--font-body);
  font-size: var(--text-base);
  color: var(--color-text);
  background-color: var(--color-bg);
  overflow-x: hidden;
}
img, picture, video, canvas, svg { display: block; max-width: 100%; height: auto; }
ul[role="list"], ol[role="list"] { list-style: none; }
input, button, textarea, select { font: inherit; color: inherit; }
h1, h2, h3, h4, h5, h6 { text-wrap: balance; line-height: 1.12; }
p, li { text-wrap: pretty; max-width: 72ch; }
::selection { background: var(--color-magenta-light); color: var(--color-magenta); }
:focus-visible { outline: 2px solid var(--color-magenta); outline-offset: 3px; border-radius: var(--radius-sm); }
@media (prefers-reduced-motion: reduce) {
  *, *::before, *::after { animation-duration: 0.01ms !important; transition-duration: 0.01ms !important; scroll-behavior: auto !important; }
}
button { cursor: pointer; background: none; border: none; }
a { color: inherit; text-decoration: none; }

.sr-only { position: absolute; width: 1px; height: 1px; padding: 0; margin: -1px; overflow: hidden; clip: rect(0,0,0,0); white-space: nowrap; border-width: 0; }

/* ═══════════════════════════════════════════════════
   LAYOUT
   ═══════════════════════════════════════════════════ */
.container { width: 100%; max-width: var(--content-default); margin-inline: auto; padding-inline: clamp(var(--space-4), 5vw, var(--space-12)); }
.container--wide { max-width: var(--content-wide); }
.container--narrow { max-width: var(--content-narrow); }

/* ═══════════════════════════════════════════════════
   INDEPENDENT PARTNER BANNER (top of page)
   ═══════════════════════════════════════════════════ */
.partner-banner {
  background: linear-gradient(90deg, #B0208C, #D946A8 50%, #00B4BE);
  padding: var(--space-2) var(--space-4);
  text-align: center;
}
.partner-banner p {
  font-size: var(--text-xs);
  font-weight: 500;
  color: #fff;
  letter-spacing: 0.04em;
  max-width: none;
}
.partner-banner strong { font-weight: 600; }


/* WhatsApp inline button */
.btn-wa {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: linear-gradient(135deg, #25D366 0%, #1ebe5d 100%);
  color: #ffffff !important;
  text-decoration: none;
  padding: 10px 20px;
  border-radius: 50px;
  font-family: inherit;
  font-size: 0.95rem;
  font-weight: 700;
  letter-spacing: 0.01em;
  box-shadow: 0 4px 16px rgba(37,211,102,0.35);
  transition: transform 0.18s ease, box-shadow 0.18s ease;
  white-space: nowrap;
  flex-shrink: 0;
}
.btn-wa:hover {
  transform: translateY(-2px) scale(1.02);
  box-shadow: 0 8px 28px rgba(37,211,102,0.5);
  color: #ffffff !important;
  text-decoration: none;
}
.btn-wa svg { flex-shrink: 0; }
/* Nav WA button — slightly smaller */
.btn-nav-wa {
  display: inline-flex;
  align-items: center;
  gap: 7px;
  background: linear-gradient(135deg, #25D366 0%, #1ebe5d 100%);
  color: #ffffff !important;
  text-decoration: none;
  padding: 8px 16px;
  border-radius: 50px;
  font-family: inherit;
  font-size: 0.875rem;
  font-weight: 700;
  letter-spacing: 0.01em;
  box-shadow: 0 3px 12px rgba(37,211,102,0.3);
  transition: transform 0.18s ease, box-shadow 0.18s ease;
  white-space: nowrap;
}
.btn-nav-wa:hover {
  transform: translateY(-1px);
  box-shadow: 0 6px 20px rgba(37,211,102,0.45);
  color: #ffffff !important;
  text-decoration: none;
}
.btn-nav-wa svg { flex-shrink: 0; }


/* AI Trading Live Badge */
.ai-live-badge {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  background: var(--color-bg);
  color: var(--color-magenta);
  border: 2px solid var(--color-magenta);
  border-radius: 60px;
  padding: 12px 26px;
  font-size: 0.9rem;
  font-weight: 700;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  margin-bottom: 2rem;
  position: relative;
  box-shadow:
    0 0 0 0px rgba(217,70,168,0.4),
    0 0 20px rgba(217,70,168,0.15),
    0 0 40px rgba(0,180,190,0.08);
  animation: badge-glow 9s ease-in-out infinite;
}
@keyframes badge-glow {
  0%, 100% {
    box-shadow: 0 0 0 0px rgba(217,70,168,0.4), 0 0 20px rgba(217,70,168,0.15), 0 0 40px rgba(0,180,190,0.08);
    border-color: var(--color-magenta);
  }
  50% {
    box-shadow: 0 0 0 4px rgba(217,70,168,0.12), 0 0 32px rgba(217,70,168,0.25), 0 0 56px rgba(0,180,190,0.15);
    border-color: var(--color-teal);
  }
}
.ai-live-dot {
  width: 11px;
  height: 11px;
  border-radius: 50%;
  background: #25D366;
  box-shadow: 0 0 0 3px rgba(37,211,102,0.3), 0 0 10px rgba(37,211,102,0.5);
  animation: ai-pulse 7s ease-in-out infinite;
  flex-shrink: 0;
}
@keyframes ai-pulse {
  0%, 100% { box-shadow: 0 0 0 3px rgba(37,211,102,0.3), 0 0 10px rgba(37,211,102,0.5); }
  50% { box-shadow: 0 0 0 6px rgba(37,211,102,0.15), 0 0 18px rgba(37,211,102,0.7); }
}


/* Due Diligence Section */
.dd-section {
  background: var(--color-surface);
  padding: var(--space-10) 0;
}
.dd-inner { max-width: 760px; margin-inline: auto; text-align: center; }
.dd-grid { display: flex; flex-direction: column; gap: var(--space-3); margin-top: var(--space-10); text-align: left; }
.dd-item {
  background: var(--color-bg);
  border: 1.5px solid var(--color-divider);
  border-radius: 10px;
  overflow: hidden;
  transition: border-color 0.2s ease, box-shadow 0.2s ease;
}
.dd-item:hover { border-color: var(--color-magenta); box-shadow: 0 2px 12px rgba(217,70,168,0.08); }
.dd-item.open { border-color: var(--color-magenta); }
.dd-question {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: var(--space-4);
  width: 100%;
  padding: var(--space-5) var(--space-6);
  background: none;
  border: none;
  cursor: pointer;
  text-align: left;
  font-family: var(--font-body);
  font-size: var(--text-base);
  font-weight: 600;
  color: var(--color-text);
  line-height: 1.4;
}
.dd-question:focus-visible {
  outline: 2px solid var(--color-magenta);
  outline-offset: -2px;
  border-radius: 10px;
}
.dd-tag { display: none; }
.dd-q-text {
  font-size: var(--text-base);
  font-weight: 600;
  color: var(--color-text);
  line-height: 1.4;
  flex: 1;
}
.dd-question .faq-chevron { flex-shrink: 0; }
.dd-answer {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.3s ease, padding 0.25s ease;
  padding: 0 var(--space-6);
  color: var(--color-text-muted);
  font-size: var(--text-sm);
  line-height: 1.75;
}
.dd-answer p { margin: 0; font-size: var(--text-sm); color: var(--color-text-muted); line-height: 1.75; }
.dd-answer a { color: var(--color-magenta); }
.dd-item.open .dd-answer { max-height: 600px; padding: 0 var(--space-6) var(--space-5); }
.dd-item.open .faq-chevron { transform: rotate(180deg); }
@media (max-width: 640px) {
  .dd-question { padding: var(--space-4) var(--space-4); font-size: var(--text-sm); }
  .dd-answer { padding: 0 var(--space-4); }
  .dd-item.open .dd-answer { padding: 0 var(--space-4) var(--space-4); }
}

/* Mobile partner badge row — hidden on desktop, shown on mobile */
.mobile-partner-row {
  display: none;
}

/* ═══════════════════════════════════════════════════
   HEADER
   ═══════════════════════════════════════════════════ */
.site-header {
  position: sticky;
  top: 0;
  z-index: 50;
  background: rgba(255,255,255,0.92);
  backdrop-filter: blur(18px);
  -webkit-backdrop-filter: blur(18px);
  border-bottom: 1px solid var(--color-divider);
  transition: box-shadow var(--transition);
}
[data-theme="dark"] .site-header {
  background: rgba(18, 12, 36, 0.92);
}
.site-header--scrolled { box-shadow: var(--shadow-md); }

.nav {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: var(--space-4);
  padding-block: var(--space-4);
}

/* Logo area: Aurum wordmark + "Independent Partner" tag */
.nav-brand {
  display: flex;
  align-items: center;
  gap: var(--space-3);
  flex-shrink: 0;
}

.nav-brand-logo {
  display: flex;
  align-items: center;
}
.nav-logo-img {
  height: 28px;
  width: auto;
  display: block;
}
[data-theme="dark"] .nav-logo-img {
  filter: brightness(0) invert(1);
}

.nav-partner-badge {
  font-size: var(--text-xs);
  font-weight: 500;
  letter-spacing: 0.04em;
  color: var(--color-magenta);
  background: var(--color-magenta-light);
  border: 1px solid var(--color-magenta-mid);
  border-radius: var(--radius-full);
  padding: 3px var(--space-3);
  white-space: nowrap;
}

.nav-divider {
  width: 1px;
  height: 20px;
  background: var(--color-border);
  flex-shrink: 0;
}

.nav-actions {
  display: flex;
  align-items: center;
  gap: var(--space-3);
}




.btn-nav {
  font-size: var(--text-sm);
  font-weight: 500;
  padding: var(--space-2) var(--space-5);
  border-radius: var(--radius-full);
  background: linear-gradient(135deg, var(--color-magenta), var(--color-teal));
  color: #fff;
  transition: opacity var(--transition), transform var(--transition), box-shadow var(--transition);
  white-space: nowrap;
  box-shadow: var(--shadow-magenta);
}
.btn-nav:hover { opacity: 0.9; transform: translateY(-1px); box-shadow: 0 8px 32px rgba(217,70,168,0.3); }

/* Nav links — desktop */
.nav-links {
  display: flex;
  align-items: center;
  list-style: none;
  gap: var(--space-1);
  margin: 0;
  padding: 0;
}
.nav-link {
  font-size: var(--text-sm);
  font-weight: 500;
  color: var(--color-text-muted);
  padding: var(--space-2) var(--space-3);
  border-radius: var(--radius-sm);
  transition: color var(--transition), background var(--transition);
  white-space: nowrap;
  text-decoration: none;
  display: block;
}
.nav-link:hover {
  color: var(--color-magenta);
  background: var(--color-magenta-light);
}
.nav-link--active {
  color: var(--color-magenta);
  font-weight: 600;
}
.nav-link--cta {
  background: linear-gradient(135deg, var(--color-magenta), var(--color-teal));
  color: #fff !important;
  padding: var(--space-2) var(--space-5);
  border-radius: var(--radius-full);
  font-weight: 600;
  box-shadow: var(--shadow-magenta);
  margin-left: var(--space-2);
}
.nav-link--cta:hover {
  opacity: 0.9;
  transform: translateY(-1px);
  background: linear-gradient(135deg, var(--color-magenta), var(--color-teal));
  color: #fff !important;
}

/* Hamburger toggle — hidden on desktop, shown on mobile */
.nav-mobile-toggle {
  display: none;
  align-items: center;
  justify-content: center;
  width: 40px;
  height: 40px;
  background: none;
  border: 1.5px solid var(--color-border);
  border-radius: var(--radius-sm);
  color: var(--color-text);
  cursor: pointer;
  transition: border-color var(--transition), color var(--transition), background var(--transition);
  flex-shrink: 0;
  padding: 0;
}
.nav-mobile-toggle:hover {
  border-color: var(--color-magenta);
  color: var(--color-magenta);
  background: var(--color-magenta-light);
}
.nav-mobile-toggle svg { display: block; pointer-events: none; }

/* Mobile slide-down menu */
.nav-mobile-menu {
  background: #fff;
  border-top: 1px solid var(--color-divider);
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.32s cubic-bezier(0.4,0,0.2,1);
}
[data-theme="dark"] .nav-mobile-menu { background: var(--color-surface); }
.nav-mobile-menu.open {
  max-height: 480px;
}
.nav-mobile-link {
  display: block;
  padding: var(--space-4) var(--space-6);
  font-size: var(--text-base);
  font-weight: 500;
  color: var(--color-text);
  text-decoration: none;
  border-bottom: 1px solid var(--color-divider);
  transition: color var(--transition), background var(--transition);
}
.nav-mobile-link:last-child { border-bottom: none; }
.nav-mobile-link:hover {
  color: var(--color-magenta);
  background: var(--color-magenta-light);
}
.nav-mobile-link--cta {
  display: block;
  margin: var(--space-3) var(--space-6) var(--space-4);
  padding: var(--space-3) var(--space-5);
  background: linear-gradient(135deg, var(--color-magenta), var(--color-teal));
  color: #fff !important;
  border-radius: var(--radius-full);
  font-weight: 600;
  text-align: center;
  border-bottom: none;
  box-shadow: var(--shadow-magenta);
}
.nav-mobile-link--cta:hover {
  opacity: 0.9;
  color: #fff !important;
}
.nav-mobile-link--active {
  color: var(--color-magenta);
  font-weight: 600;
  background: var(--color-magenta-light);
}

/* On mobile: hide desktop nav-links, show hamburger */
@media (max-width: 768px) {
  .nav-links { display: none; }
  .nav-mobile-toggle { display: flex; }
  .btn-nav { display: none; }
}

/* ═══════════════════════════════════════════════════
   BUTTONS
   ═══════════════════════════════════════════════════ */
.btn {
  display: inline-flex; align-items: center; gap: var(--space-2);
  font-family: var(--font-body); font-size: var(--text-sm); font-weight: 500;
  letter-spacing: 0.02em; padding: var(--space-3) var(--space-8);
  border-radius: var(--radius-full); transition: all var(--transition);
  cursor: pointer; text-decoration: none; border: 1.5px solid transparent;
}
.btn--lg { font-size: var(--text-base); padding: var(--space-4) var(--space-10); }

.btn--magenta {
  background: linear-gradient(135deg, var(--color-magenta) 0%, #a020a0 50%, var(--color-teal) 100%);
  color: #fff;
  border-color: transparent;
  box-shadow: 0 4px 20px rgba(217,70,168,0.35);
  background-size: 200% 200%;
  background-position: 0% 50%;
  transition: background-position 0.4s ease, transform var(--transition), box-shadow var(--transition);
}
.btn--magenta:hover {
  background-position: 100% 50%;
  border-color: transparent;
  transform: translateY(-2px);
  box-shadow: 0 8px 32px rgba(217,70,168,0.45), 0 4px 16px rgba(0,180,190,0.25);
}

.btn--teal {
  background: var(--color-teal);
  color: #fff;
  border-color: var(--color-teal);
  box-shadow: var(--shadow-teal);
}
.btn--teal:hover { background: var(--color-teal-hover); border-color: var(--color-teal-hover); transform: translateY(-2px); }

.btn--outline-magenta {
  background: transparent;
  color: var(--color-magenta);
  border-color: var(--color-magenta);
}
.btn--outline-magenta:hover { background: var(--color-magenta-light); transform: translateY(-2px); }

.btn--outline {
  background: transparent;
  color: var(--color-text);
  border-color: var(--color-border);
}
.btn--outline:hover { border-color: var(--color-teal); color: var(--color-teal); background: var(--color-teal-light); transform: translateY(-2px); }

/* ═══════════════════════════════════════════════════
   HERO
   ═══════════════════════════════════════════════════ */
.hero {
  position: relative;
  overflow: hidden;
  padding-block: clamp(var(--space-12), 8vw, var(--space-20));
  text-align: center;
}

/* Geometric background decoration */
.hero-decor {
  position: absolute;
  inset: 0;
  pointer-events: none;
  overflow: hidden;
}
.hero-orb-1 {
  position: absolute;
  top: -15%;
  left: -10%;
  width: 55%;
  aspect-ratio: 1;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(217,70,168,0.08) 0%, rgba(217, 70, 168, 0.04) 45%, transparent 65%);
}
.hero-orb-2 {
  position: absolute;
  top: -20%;
  right: -8%;
  width: 50%;
  aspect-ratio: 1;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(0, 180, 190,0.07) 0%, transparent 65%);
}
.hero-orb-3 {
  position: absolute;
  bottom: 10%;
  left: 30%;
  width: 40%;
  aspect-ratio: 1;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(217, 70, 168, 0.05) 0%, transparent 60%);
  pointer-events: none;
}
.hero-shiba {
  position: absolute;
  right: -2%;
  bottom: -8%;
  width: clamp(280px, 36vw, 520px);
  height: auto;
  opacity: 0.18;
  pointer-events: none;
  user-select: none;
  z-index: 0;
  mix-blend-mode: multiply;
}
[data-theme="dark"] .hero-shiba { mix-blend-mode: screen; filter: brightness(3) contrast(0.4); }
@media (max-width: 768px) {
  .hero-shiba { width: 55vw; opacity: 0.12; bottom: 0; right: -5%; }
}

.hero-wave-bottom {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  line-height: 0;
}

.hero-eyebrow {
  display: inline-flex; align-items: center; gap: var(--space-2);
  font-size: var(--text-xs); font-weight: 600; letter-spacing: 0.15em; text-transform: uppercase;
  color: var(--color-magenta); background: var(--color-magenta-light);
  border: 1px solid var(--color-magenta-mid); border-radius: var(--radius-full);
  padding: var(--space-2) var(--space-4); margin-bottom: var(--space-6);
}
.hero-eyebrow-dot {
  width: 6px; height: 6px; border-radius: 50%;
  background: linear-gradient(135deg, var(--color-magenta), var(--color-pink));
  animation: pulse 7s ease-in-out infinite;
  box-shadow: 0 0 6px var(--color-pink-glow);
}
@keyframes pulse { 0%,100%{opacity:1;transform:scale(1)} 50%{opacity:0.4;transform:scale(0.75)} }

.hero h1 {
  font-family: var(--font-display);
  font-size: var(--text-hero);
  font-weight: 600;
  line-height: 1.06;
  color: var(--color-text);
  margin-bottom: var(--space-6);
  max-width: 14ch;
  margin-inline: auto;
}
.hero h1 .accent-magenta { color: var(--color-magenta); font-style: italic; }
.hero h1 .accent-teal    { color: var(--color-teal); }
.hero h1 .accent-pink    { color: var(--color-magenta); font-style: italic; }

.hero-subtitle {
  font-size: var(--text-lg);
  font-weight: 300;
  color: var(--color-text-muted);
  max-width: 54ch;
  margin-inline: auto;
  margin-bottom: var(--space-10);
  line-height: 1.65;
}

.hero-ctas {
  display: flex; align-items: center; justify-content: center;
  flex-wrap: wrap; gap: var(--space-4); margin-bottom: var(--space-8);
}

.hero-disclaimer {
  font-size: 14px;
  color: var(--color-text-faint);
  font-style: italic;
  max-width: none;
  letter-spacing: 0.02em;
  margin-bottom: var(--space-6);
}

/* ═══════════════════════════════════════════════════
   STATS BAR
   ═══════════════════════════════════════════════════ */
.stats-bar {
  background: var(--color-surface);
  border-top: 1px solid var(--color-divider);
  border-bottom: 1px solid var(--color-divider);
  padding-block: var(--space-8);
}
.stats-grid {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: var(--space-8);
  text-align: center;
}
.stat-value {
  font-family: var(--font-display);
  font-size: var(--text-2xl);
  font-weight: 600;
  line-height: 1;
  margin-bottom: var(--space-2);
}
.stat-value--magenta { color: var(--color-magenta); }
.stat-value--teal    { color: var(--color-teal); }
.stat-value--pink    { color: var(--color-magenta); }
.stat-label {
  font-size: var(--text-xs);
  font-weight: 500;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--color-text-muted);
}

/* ═══════════════════════════════════════════════════
   SECTIONS — shared
   ═══════════════════════════════════════════════════ */
section { padding-block: clamp(var(--space-5), 3.5vw, var(--space-10)); }

.section-eyebrow {
  font-size: var(--text-xs); font-weight: 600; letter-spacing: 0.15em;
  text-transform: uppercase; margin-bottom: var(--space-3);
}
.eyebrow--magenta { color: var(--color-magenta); }
.eyebrow--teal    { color: var(--color-teal); }
.eyebrow--pink    { color: var(--color-magenta); }

.section-title {
  font-family: var(--font-display);
  font-size: var(--text-2xl);
  font-weight: 600; line-height: 1.1; color: var(--color-text);
  margin-bottom: var(--space-4);
}
.section-subtitle {
  font-size: var(--text-base); color: var(--color-text-muted);
  max-width: 58ch; line-height: 1.75;
}
.section-divider {
  width: 48px; height: 3px;
  background: linear-gradient(90deg, #B0208C, #D946A8 50%, #00B4BE);
  border-radius: var(--radius-full); margin-bottom: var(--space-5);
}

/* ═══════════════════════════════════════════════════
   OVERVIEW
   ═══════════════════════════════════════════════════ */
.overview-section { background: var(--color-bg); position: relative; overflow: hidden; }

/* 2-column split: copy on left, AI trading graphic on right */
.overview-section .container { position: relative; z-index: 1; }
.overview-split {
  display: grid;
  grid-template-columns: minmax(0, 1.15fr) minmax(0, 0.85fr);
  gap: clamp(2rem, 5vw, 4rem);
  align-items: center;
}
@media (max-width: 900px) {
  .overview-split { grid-template-columns: 1fr; }
  .overview-split .overview-viz-wrap { max-width: 420px; margin: 0 auto; }
}

/* AI trading graphic */
/* ═══ AI Trading Terminal (hero graphic) ═══ */
.overview-viz-wrap {
  position: relative;
  width: 100%;
  max-width: 560px;
  margin-left: auto;
  pointer-events: none;
  padding: clamp(0.5rem, 2vw, 1rem) 0;
  isolation: isolate;
}

/* Ethereal decorative swooshes behind the terminal */
.tt-swoosh {
  position: absolute;
  top: 50%;
  left: 50%;
  width: 140%;
  height: 140%;
  transform: translate(-50%, -50%);
  z-index: 0;
  pointer-events: none;
  opacity: 0.62;
  overflow: visible;
}
.tt-swoosh .sw-path {
  transform-origin: center;
  transform-box: fill-box;
  animation: sw-drift 60s ease-in-out infinite;
}
.tt-swoosh .sw-path--2 { animation-duration: 22s; animation-delay: -3s; }
.tt-swoosh .sw-path--3 { animation-duration: 26s; animation-delay: -8s; }
@keyframes sw-drift {
  0%,100% { transform: translate(0, 0) rotate(0deg); }
  33%     { transform: translate(8px, -6px) rotate(1.5deg); }
  66%     { transform: translate(-6px, 4px) rotate(-1deg); }
}
.tt-swoosh .sw-spot {
  animation: sw-pulse 30s ease-in-out infinite;
}
.tt-swoosh .sw-spot--2 { animation-delay: -4s; }
@keyframes sw-pulse {
  0%,100% { opacity: 0.14; }
  50%     { opacity: 0.24; }
}
@media (prefers-reduced-motion: reduce) {
  .tt-swoosh .sw-path, .tt-swoosh .sw-spot { animation: none; }
}

.trade-terminal {
  position: relative;
  z-index: 1;
  background: #ffffff;
  border: 1px solid rgba(15,23,42,0.08);
  border-radius: 18px;
  overflow: hidden;
  box-shadow:
    0 30px 60px -24px rgba(15,23,42,0.22),
    0 12px 28px -12px rgba(15,23,42,0.12),
    0 2px 6px -2px rgba(15,23,42,0.05);
  font-family: var(--font-body, 'Switzer', system-ui, sans-serif);
  color: #0F172A;
  font-feature-settings: 'ss01' on, 'cv11' on;
  animation: tt-float 24s ease-in-out infinite;
}
@keyframes tt-float {
  0%,100% { transform: translateY(0); }
  50% { transform: translateY(-6px); }
}

/* Window chrome */
.tt-chrome {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 0.7rem 0.95rem;
  background: linear-gradient(180deg, #FBFAFC 0%, #F6F4F9 100%);
  border-bottom: 1px solid rgba(15,23,42,0.06);
}
.tt-dots { display: flex; gap: 6px; }
.tt-dot {
  width: 10px; height: 10px; border-radius: 50%;
  background: rgba(15,23,42,0.14);
}
.tt-dot:nth-child(1) { background: #F06CC7; }
.tt-dot:nth-child(2) { background: #F4CF4F; }
.tt-dot:nth-child(3) { background: #52D38F; }
.tt-title {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  font-size: 0.72rem;
  font-weight: 600;
  letter-spacing: 0.04em;
  color: rgba(15,23,42,0.75);
}
.tt-brand-mark {
  display: inline-grid;
  place-items: center;
  width: 18px; height: 18px;
  border-radius: 5px;
  background: linear-gradient(135deg, #D946A8, #00B4BE);
  color: #fff;
  font-size: 9px;
  font-weight: 800;
  letter-spacing: 0.5px;
}
.tt-live {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  font-size: 0.62rem;
  font-weight: 700;
  letter-spacing: 0.1em;
  color: #00B4BE;
  background: rgba(0,180,190,0.10);
  border-radius: 999px;
  padding: 3px 9px;
}
.tt-live-dot {
  width: 6px; height: 6px;
  border-radius: 50%;
  background: #00B4BE;
  box-shadow: 0 0 0 0 rgba(0,180,190,0.55);
  animation: tt-pulse 6s ease-out infinite;
}
@keyframes tt-pulse {
  0%   { box-shadow: 0 0 0 0 rgba(0,180,190,0.55); }
  70%  { box-shadow: 0 0 0 7px rgba(0,180,190,0); }
  100% { box-shadow: 0 0 0 0 rgba(0,180,190,0); }
}

/* KPI strip */
.tt-kpis {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1px;
  background: rgba(15,23,42,0.06);
  border-bottom: 1px solid rgba(15,23,42,0.06);
}
.tt-kpi {
  background: #fff;
  padding: 0.7rem 0.65rem;
  display: flex;
  flex-direction: column;
  gap: 2px;
  min-width: 0;
  overflow: visible;
}
.tt-kpi-label {
  font-size: 0.58rem;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  color: rgba(15,23,42,0.52);
  font-weight: 600;
}
.tt-kpi-value {
  font-size: clamp(0.78rem, 1.85vw, 1rem);
  font-weight: 700;
  font-variant-numeric: tabular-nums;
  color: #0F172A;
  letter-spacing: -0.02em;
  white-space: nowrap;
  overflow: visible;
}
.tt-grad {
  background: linear-gradient(90deg, #D946A8 0%, #00B4BE 100%);
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
}

/* Body: chart + feed */
.tt-body {
  display: grid;
  grid-template-columns: minmax(0, 1.35fr) minmax(180px, 1fr);
  min-height: 250px;
}
.tt-chart-wrap {
  padding: 0.75rem 0.9rem 0.6rem;
  border-right: 1px solid rgba(15,23,42,0.06);
  display: flex;
  flex-direction: column;
  gap: 0.45rem;
  min-width: 0;
}
.tt-chart-head {
  display: flex;
  align-items: baseline;
  gap: 0.5rem;
  flex-wrap: wrap;
}
.tt-pair {
  font-size: 0.66rem;
  font-weight: 600;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: rgba(15,23,42,0.55);
}
.tt-price {
  font-size: 0.95rem;
  font-weight: 700;
  font-variant-numeric: tabular-nums;
  color: #0F172A;
  letter-spacing: -0.01em;
  margin-left: auto;
}
.tt-chg {
  font-size: 0.66rem;
  font-weight: 700;
  color: #16A97B;
  background: rgba(22,169,123,0.10);
  padding: 2px 7px;
  border-radius: 5px;
  font-variant-numeric: tabular-nums;
}
.tt-chart {
  width: 100%;
  flex: 1;
  min-height: 170px;
  display: block;
}
.tt-line {
  filter: drop-shadow(0 2px 6px rgba(217,70,168,0.25));
}
#tt-marker-pulse {
  transform-origin: center;
  transform-box: fill-box;
  animation: tt-marker-pulse 7s ease-out infinite;
  opacity: 0;
}
@keyframes tt-marker-pulse {
  0%   { transform: scale(1); opacity: 0.9; }
  100% { transform: scale(3.2); opacity: 0; }
}
#tt-marker-dot { filter: drop-shadow(0 0 6px rgba(217,70,168,0.7)); }
#tt-trades .tt-trade-buy { fill: #16A97B; }
#tt-trades .tt-trade-sell { fill: #D946A8; }
#tt-trades circle {
  animation: tt-trade-in 0.5s ease-out;
  transform-origin: center;
  transform-box: fill-box;
}
@keyframes tt-trade-in {
  0%   { opacity: 0; transform: scale(0); }
  60%  { opacity: 1; transform: scale(1.6); }
  100% { opacity: 0.85; transform: scale(1); }
}

/* Trade feed */
.tt-feed {
  padding: 0.6rem 0.55rem;
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
  background: #FCFBFD;
  min-width: 0;
}
.tt-feed-head {
  display: flex;
  justify-content: space-between;
  align-items: baseline;
  font-size: 0.62rem;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  font-weight: 700;
  color: rgba(15,23,42,0.6);
}
.tt-feed-count {
  font-size: 0.58rem;
  color: rgba(15,23,42,0.5);
  font-weight: 500;
}
.tt-feed-count strong, .tt-feed-count span { color: #0F172A; font-weight: 700; font-variant-numeric: tabular-nums; }
.tt-feed-list {
  list-style: none;
  margin: 0;
  padding: 0;
  display: flex;
  flex-direction: column;
  gap: 4px;
  min-height: 160px;
}
.tt-feed-item {
  display: flex;
  align-items: center;
  gap: 0.35rem;
  padding: 5px 7px;
  border-radius: 7px;
  background: #fff;
  border: 1px solid rgba(15,23,42,0.05);
  font-size: 0.66rem;
  animation: tt-feed-in 0.45s cubic-bezier(0.3,1.3,0.6,1);
  font-variant-numeric: tabular-nums;
  min-width: 0;
}
.tt-feed-item .tt-feed-tag { flex-shrink: 0; }
.tt-feed-item .tt-feed-pair { flex-shrink: 0; }
.tt-feed-item .tt-feed-pnl { margin-left: auto; flex-shrink: 0; }
@keyframes tt-feed-in {
  0%   { opacity: 0; transform: translateY(-6px); }
  100% { opacity: 1; transform: translateY(0); }
}
.tt-feed-tag {
  font-size: 0.54rem;
  font-weight: 800;
  letter-spacing: 0.06em;
  padding: 2px 4px;
  border-radius: 4px;
  min-width: 26px;
  text-align: center;
}
.tt-feed-tag--buy  { color: #16A97B; background: rgba(22,169,123,0.12); }
.tt-feed-tag--sell { color: #D946A8; background: rgba(217,70,168,0.10); }
.tt-feed-pair {
  font-weight: 700;
  color: rgba(15,23,42,0.85);
  font-size: 0.62rem;
  letter-spacing: 0.03em;
  white-space: nowrap;
}
.tt-feed-pair-quote {
  display: none;
}
.tt-feed-pnl {
  font-weight: 700;
  color: #16A97B;
  font-size: 0.64rem;
  white-space: nowrap;
}

/* Footer */
.tt-foot {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 0.5rem;
  padding: 0.5rem 0.95rem;
  border-top: 1px solid rgba(15,23,42,0.06);
  background: linear-gradient(180deg, #FCFBFD 0%, #F7F5FA 100%);
  font-size: 0.62rem;
  color: rgba(15,23,42,0.6);
  letter-spacing: 0.02em;
  flex-wrap: wrap;
}
.tt-foot-item {
  display: inline-flex;
  align-items: center;
  gap: 0.4rem;
  font-weight: 500;
}
.tt-foot-item strong {
  color: #0F172A;
  font-weight: 700;
  font-variant-numeric: tabular-nums;
}
.tt-foot-dot {
  width: 6px; height: 6px;
  border-radius: 50%;
  background: rgba(15,23,42,0.3);
}
.tt-foot-dot--ok {
  background: #16A97B;
  box-shadow: 0 0 0 3px rgba(22,169,123,0.18);
}

/* Responsive */
@media (max-width: 900px) {
  .tt-kpi { padding: 0.6rem 0.55rem; }
  .tt-kpi-value { font-size: 0.86rem; letter-spacing: -0.025em; }
  .tt-kpi-label { font-size: 0.54rem; letter-spacing: 0.08em; }
  .tt-feed-item { font-size: 0.62rem; padding: 5px 6px; gap: 0.3rem; }
  .tt-feed-tag { min-width: 24px; font-size: 0.52rem; padding: 2px 3px; }
  .tt-feed-pair { font-size: 0.6rem; }
  .tt-feed-pnl { font-size: 0.6rem; }
}
@media (max-width: 720px) {
  .tt-body { grid-template-columns: 1fr; }
  .tt-chart-wrap { border-right: 0; border-bottom: 1px solid rgba(15,23,42,0.06); }
  .tt-kpis { grid-template-columns: repeat(3, 1fr); }
  .tt-kpi { padding: 0.55rem 0.5rem; }
  .tt-kpi-value { font-size: 0.82rem; }
  .tt-kpi-label { font-size: 0.52rem; }
}

.overview-bot {
  position: absolute;
  bottom: -20px;
  right: -40px;
  width: clamp(260px, 32vw, 480px);
  height: auto;
  opacity: 0.1;
  pointer-events: none;
  user-select: none;
  z-index: 0;
}
.overview-section .container { position: relative; z-index: 1; }
@media (max-width: 768px) { .overview-bot { width: 60vw; opacity: 0.07; right: -20px; } }

.overview-shiba-row {
  display: flex;
  justify-content: center;
  margin-top: var(--space-8);
  overflow: hidden;
  mask-image: linear-gradient(to bottom, transparent 0%, black 10%, black 85%, transparent 100%);
  -webkit-mask-image: linear-gradient(to bottom, transparent 0%, black 10%, black 85%, transparent 100%);
}
.overview-shiba-img {
  width: clamp(360px, 55vw, 740px);
  height: auto;
  opacity: 0.28;
  display: block;
  pointer-events: none;
  mix-blend-mode: multiply;
}
[data-theme="dark"] .overview-shiba-img { mix-blend-mode: screen; filter: brightness(3) contrast(0.4); }
@media (max-width: 600px) {
  .overview-shiba-img { width: 90vw; opacity: 0.22; }
}

.overview-body-full { max-width: 100%; }
.overview-body-full .overview-body { max-width: 80ch; }

.overview-quote {
  font-family: var(--font-display);
  font-size: clamp(1.2rem, 2vw, 1.6rem);
  font-style: italic;
  color: var(--color-text-muted);
  border-left: 4px solid var(--color-magenta);
  padding: var(--space-5) var(--space-8);
  margin: var(--space-8) 0;
  background: linear-gradient(135deg, rgba(232,148,60,0.04), rgba(0, 180, 190,0.03));
  border-radius: 0 var(--radius-lg) var(--radius-lg) 0;
  max-width: none;
}
.overview-quote cite {
  display: block;
  font-size: var(--text-xs);
  font-style: normal;
  color: var(--color-text-muted);
  letter-spacing: 0.05em;
  margin-top: var(--space-3);
}

.overview-footer-row {
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: var(--space-4);
  margin-top: var(--space-4);
}
@media (max-width: 600px) {
  .overview-footer-row { flex-direction: column; align-items: flex-start; }
  .overview-footer-row .btn { width: 100%; justify-content: center; }
}

.overview-grid {
  display: grid; grid-template-columns: 1.1fr 0.9fr;
  gap: clamp(var(--space-8), 6vw, var(--space-16)); align-items: start;
}

.overview-body {
  font-size: var(--text-base); color: var(--color-text-muted);
  line-height: 1.78; margin-bottom: var(--space-5);
}
.overview-body strong { color: var(--color-text); font-weight: 500; }
.overview-body--highlight {
  color: var(--color-text);
  border-left: 3px solid var(--color-magenta);
  padding-left: var(--space-4);
  margin-left: 0;
}

.launch-badge {
  display: inline-flex; align-items: center; gap: var(--space-2);
  font-size: var(--text-xs); font-weight: 600;
  color: var(--color-teal); background: var(--color-teal-light);
  border: 1px solid var(--color-teal-mid); border-radius: var(--radius-md);
  padding: var(--space-2) var(--space-3); margin-top: var(--space-4);
}
.launch-dot { width: 8px; height: 8px; border-radius: 50%; background: var(--color-teal); animation: pulse 7s ease-in-out infinite; }

.pull-quote {
  border-left: 3px solid var(--color-magenta);
  padding: var(--space-6) var(--space-8);
  background: var(--color-surface);
  border-radius: 0 var(--radius-xl) var(--radius-xl) 0;
  margin-bottom: var(--space-6);
}
.pull-quote p {
  font-family: var(--font-display); font-size: var(--text-xl);
  font-style: italic; font-weight: 500; color: var(--color-text);
  line-height: 1.35; margin-bottom: var(--space-3); max-width: none;
}
.pull-quote cite { font-size: var(--text-xs); font-style: normal; color: var(--color-text-muted); letter-spacing: 0.05em; }

/* ═══════════════════════════════════════════════════
   PRODUCTS GRID
   ═══════════════════════════════════════════════════ */
.products-section { background: var(--color-surface); padding-top: var(--space-6); padding-bottom: var(--space-6); }
.products-section .section-title { font-size: clamp(1.2rem, 2.5vw, 1.6rem); margin-bottom: var(--space-1); }
.products-section .section-eyebrow { margin-bottom: var(--space-1); }
.products-section .section-subtitle { font-size: var(--text-xs); color: var(--color-text-muted); margin-bottom: var(--space-0); max-width: 480px; }

.products-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: var(--space-3); margin-top: var(--space-6);
}
@media (max-width: 700px) { .products-grid { grid-template-columns: 1fr 1fr; } }
@media (max-width: 440px) { .products-grid { grid-template-columns: 1fr; } }

.product-card {
  background: var(--color-bg);
  border: 1px solid var(--color-border);
  border-radius: var(--radius-xl);
  padding: var(--space-4) var(--space-4);
  display: flex;
  align-items: flex-start;
  gap: var(--space-3);
  transition: border-color var(--transition), transform var(--transition), box-shadow var(--transition);
  position: relative;
}
.product-card-number {
  position: absolute;
  top: var(--space-3);
  right: var(--space-4);
  font-family: var(--font-display, "Cormorant Garamond", Georgia, serif);
  font-size: 0.85rem;
  font-weight: 600;
  letter-spacing: 0.08em;
  color: rgba(15, 23, 42, 0.25);
  pointer-events: none;
  user-select: none;
}
.product-card--access {
  border-color: rgba(0, 180, 190, 0.3);
  background: linear-gradient(135deg, rgba(0,180,190,0.04) 0%, transparent 60%);
}
.product-card:hover { transform: translateY(-2px); }
.product-card--magenta:hover { border-color: var(--color-magenta); box-shadow: var(--shadow-magenta); }
.product-card--teal:hover    { border-color: var(--color-teal);    box-shadow: var(--shadow-teal); }

.product-card-icon {
  width: 32px; height: 32px; border-radius: var(--radius-md);
  display: flex; align-items: center; justify-content: center;
  flex-shrink: 0; margin-top: 2px;
}
.icon--magenta { background: var(--color-magenta-light); color: var(--color-magenta); border: 1px solid var(--color-magenta-mid); }
.icon--teal    { background: var(--color-teal-light);    color: var(--color-teal);    border: 1px solid var(--color-teal-mid); }

.product-card-content { flex: 1; min-width: 0; }

.product-badge {
  display: inline-block; font-size: 0.6rem; font-weight: 700;
  letter-spacing: 0.08em; text-transform: uppercase;
  padding: 1px var(--space-2); border-radius: var(--radius-sm); margin-bottom: var(--space-1);
}
.badge--live { background: rgba(0, 180, 190,0.1); color: var(--color-teal); border: 1px solid rgba(0, 180, 190,0.3); }
.badge--beta { background: rgba(217,70,168,0.1); color: var(--color-magenta); border: 1px solid rgba(217,70,168,0.3); }
.badge--soon { background: var(--color-surface-2); color: var(--color-text-muted); border: 1px solid var(--color-border); }

.product-card-title { font-family: var(--font-display); font-size: var(--text-sm); font-weight: 700; color: var(--color-text); margin-bottom: var(--space-1); }
.product-card-body { font-size: 0.72rem; color: var(--color-text-muted); line-height: 1.55; }
.product-card-link {
  display: inline-flex;
  align-items: center;
  gap: 0.3em;
  margin-top: var(--space-2);
  font-size: 0.78rem;
  font-weight: 700;
  color: var(--color-magenta);
  text-decoration: underline;
  text-decoration-thickness: 1.5px;
  text-underline-offset: 3px;
  text-decoration-color: rgba(217,70,168,0.45);
  letter-spacing: 0.01em;
  transition: color var(--transition), text-decoration-color var(--transition);
}
.product-card-link:hover,
.product-card-link:focus {
  color: #B0208C;
  text-decoration-color: #B0208C;
}

/* ═══════════════════════════════════════════════════
   VISA CARD SECTION
   ═══════════════════════════════════════════════════ */
.card-section { background: var(--color-bg); overflow: hidden; }

.card-layout {
  display: grid; grid-template-columns: 1fr 1fr;
  gap: clamp(var(--space-8), 6vw, var(--space-16)); align-items: center;
}

.card-real-img {
  width: 100%; max-width: 420px;
  border-radius: var(--radius-xl);
  box-shadow: 0 20px 60px rgba(0,0,0,0.35), 0 4px 16px rgba(232,148,60,0.12);
  display: block;
}

.card-details-list { list-style: none; display: flex; flex-direction: column; gap: var(--space-4); margin-top: var(--space-8); }
.card-detail-item { display: flex; align-items: flex-start; gap: var(--space-4); }
.card-detail-icon { width: 20px; height: 20px; flex-shrink: 0; margin-top: 2px; }
.icon-magenta { color: var(--color-magenta); }
.icon-teal    { color: var(--color-teal); }
.card-detail-title { font-size: var(--text-sm); font-weight: 600; color: var(--color-text); margin-bottom: 2px; }
.card-detail-text { font-size: var(--text-xs); color: var(--color-text-muted); line-height: 1.55; max-width: none; }

/* ═══════════════════════════════════════════════════
   CEO / CREDIBILITY
   ═══════════════════════════════════════════════════ */
/* ═══════════════════════════════════════════════════
   WATCH & READ BAR — just below header
   ═══════════════════════════════════════════════════ */
.watch-read-bar {
  background: var(--color-surface);
  border-bottom: 1px solid var(--color-divider);
  padding-block: var(--space-6) var(--space-6);
  margin-top: 0;
}
[data-theme="dark"] .watch-read-bar {
  background: var(--color-surface);
}
.watch-read-header {
  margin-bottom: var(--space-6);
  display: flex;
  flex-direction: column;
  gap: var(--space-2);
}
.watch-read-eyebrow {
  display: inline-flex; align-items: center; gap: var(--space-2);
  font-size: var(--text-xs); font-weight: 600; letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--color-teal);
}
.watch-read-title {
  font-family: var(--font-display);
  font-size: var(--text-xl);
  font-weight: 600;
  color: var(--color-text);
  margin: 0;
  line-height: 1.2;
}
.watch-read-subtitle {
  font-size: var(--text-sm);
  color: var(--color-text-muted);
  margin: 0;
  max-width: 58ch;
  line-height: 1.6;
}
/* Override resources-grid margin when inside watch-read-bar */
.watch-read-bar .resources-grid {
  margin-top: 0;
}

.credibility-section { background: var(--color-surface); padding-top: var(--space-8); }

.ceo-card {
  background: var(--color-bg); border: 1px solid var(--color-border);
  border-radius: var(--radius-2xl); padding: clamp(var(--space-5), 3vw, var(--space-8));
  display: grid; grid-template-columns: auto 1fr; gap: var(--space-5); align-items: start;
  margin-bottom: var(--space-6);
  box-shadow: var(--shadow-sm);
}
.ceo-avatar {
  width: 80px; height: 80px; border-radius: var(--radius-full);
  outline: 2px solid var(--color-magenta);
  outline-offset: 2px;
  display: flex; align-items: center; justify-content: center; flex-shrink: 0;
  overflow: hidden;
}
.ceo-name { font-family: var(--font-display); font-size: var(--text-xl); font-weight: 600; color: var(--color-text); margin-bottom: var(--space-1); }
.ceo-role { font-size: var(--text-sm); color: var(--color-magenta); font-weight: 500; margin-bottom: var(--space-2); }
.ceo-bio { font-size: var(--text-sm); color: var(--color-text-muted); line-height: 1.65; margin-bottom: var(--space-3); }

.credential-tags { display: flex; flex-wrap: wrap; gap: var(--space-2); }
.credential-tag {
  font-size: var(--text-xs); font-weight: 500; padding: 3px var(--space-3); border-radius: var(--radius-full);
}
.tag--magenta { background: var(--color-magenta-light); border: 1px solid var(--color-magenta-mid); color: var(--color-magenta); }
.tag--teal    { background: var(--color-teal-light);    border: 1px solid var(--color-teal-mid);    color: var(--color-teal); }
.tag--pink    { background: var(--color-magenta-light);    border: 1px solid var(--color-pink-mid);    color: var(--color-magenta); }

/* ─── DYOR section: Videos + Articles split ─── */
.dyor-subsection { margin-top: var(--space-6); }
.dyor-subsection-label {
  display: flex; align-items: center; gap: var(--space-2);
  font-size: var(--text-xs); font-weight: 700; letter-spacing: 0.1em;
  text-transform: uppercase; margin-bottom: var(--space-4);
  padding-bottom: var(--space-2); border-bottom: 2px solid;
}
.dyor-subsection-label.videos { color: var(--color-teal); border-color: var(--color-teal); }
.dyor-subsection-label.articles { color: var(--color-magenta); border-color: var(--color-magenta); }
.dyor-video-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(190px, 1fr));
  gap: var(--space-4);
}
.dyor-video-card {
  background: var(--color-bg); border: 1px solid var(--color-border);
  border-radius: var(--radius-xl); overflow: hidden;
  text-decoration: none; color: inherit;
  transition: all var(--transition);
  display: flex; flex-direction: column;
}
.dyor-video-card:hover { border-color: var(--color-teal); box-shadow: 0 4px 16px rgba(0,180,160,0.12); transform: translateY(-2px); }
.dyor-video-card.featured { border-color: var(--color-magenta); box-shadow: 0 0 0 2px rgba(217,70,168,0.15); }
.dyor-video-card.featured:hover { box-shadow: 0 4px 20px rgba(217,70,168,0.2); }
.dyor-thumb-wrap { position: relative; width: 100%; aspect-ratio: 16/9; overflow: hidden; background: #111; }
.dyor-thumb-wrap img { width: 100%; height: 100%; object-fit: cover; display: block; }
.dyor-play-overlay {
  position: absolute; inset: 0; display: flex; align-items: center; justify-content: center;
  background: rgba(0,0,0,0.3); opacity: 0; transition: opacity 0.2s;
}
.dyor-video-card:hover .dyor-play-overlay { opacity: 1; }
.dyor-play-btn {
  width: 44px; height: 44px; border-radius: 50%;
  background: var(--color-teal); display: flex; align-items: center; justify-content: center;
}
.dyor-video-card.featured .dyor-play-btn { background: var(--color-magenta); }
.dyor-start-badge {
  position: absolute; top: 8px; left: 8px;
  background: var(--color-magenta); color: #fff;
  font-size: 10px; font-weight: 700; letter-spacing: 0.05em;
  padding: 3px 8px; border-radius: 20px; line-height: 1.4;
  white-space: nowrap;
}
.dyor-card-body { padding: var(--space-3) var(--space-4); flex: 1; display: flex; flex-direction: column; gap: 4px; }
.dyor-card-title { font-size: var(--text-sm); font-weight: 600; color: var(--color-text); line-height: 1.35; }
.dyor-card-meta { font-size: var(--text-xs); color: var(--color-text-muted); }
.dyor-ext-label {
  font-size: 10px; font-weight: 600; color: var(--color-teal);
  display: flex; align-items: center; gap: 3px; margin-top: auto; padding-top: 4px;
}
.dyor-video-card.featured .dyor-ext-label { color: var(--color-magenta); }
.dyor-article-grid {
  display: flex;
  flex-direction: column;
  gap: 0;
  border: 1px solid var(--color-border);
  border-radius: var(--radius-lg);
  overflow: hidden;
  background: var(--color-bg);
}
.dyor-article-card {
  text-decoration: none; color: inherit;
  display: flex; align-items: center; gap: var(--space-3);
  padding: 10px var(--space-4);
  border-bottom: 1px solid var(--color-divider);
  transition: background var(--transition);
  position: relative;
}
.dyor-article-card:last-child { border-bottom: none; }
.dyor-article-card:hover { background: rgba(217,70,168,0.04); }
.dyor-article-icon {
  width: 28px; height: 28px; flex-shrink: 0; border-radius: var(--radius-sm);
  background: rgba(217,70,168,0.08); display: flex; align-items: center; justify-content: center;
  color: var(--color-magenta);
}
.dyor-article-body { flex: 1; display: flex; align-items: baseline; gap: var(--space-2); flex-wrap: wrap; }
.dyor-article-title { font-size: 0.83rem; font-weight: 600; color: var(--color-text); line-height: 1.3; }
.dyor-article-pub { font-size: 0.75rem; color: var(--color-text-muted); white-space: nowrap; }
.dyor-article-ext { margin-left: auto; font-size: 0.72rem; font-weight: 600; color: var(--color-magenta); display: flex; align-items: center; gap: 3px; white-space: nowrap; flex-shrink: 0; }

/* ═══════════════════════════════════════════════════
   PARTNER PROGRAM
   ═══════════════════════════════════════════════════ */
.partner-section { background: var(--color-bg); }
.partner-intro { font-size: 0.85rem; color: var(--color-text-muted); line-height: 1.6; max-width: 68ch; margin-bottom: var(--space-4); }
.partner-rows {
  display: flex; flex-direction: column; gap: 0;
  border: 1px solid var(--color-border); border-radius: var(--radius-lg); overflow: hidden;
  background: var(--color-bg);
}
.partner-row {
  display: flex; align-items: center; gap: var(--space-3);
  padding: 9px var(--space-4);
  border-bottom: 1px solid var(--color-divider);
}
.partner-row:last-child { border-bottom: none; }
.partner-row-icon {
  width: 26px; height: 26px; flex-shrink: 0; border-radius: var(--radius-sm);
  display: flex; align-items: center; justify-content: center;
}
.partner-row-icon.icon--magenta { background: rgba(217,70,168,0.1); color: var(--color-magenta); }
.partner-row-icon.icon--teal    { background: rgba(0,180,190,0.1);  color: var(--color-teal); }
.partner-row-name { font-size: 0.83rem; font-weight: 600; color: var(--color-text); min-width: 130px; }
.partner-row-desc { font-size: 0.8rem; color: var(--color-text-muted); line-height: 1.35; flex: 1; }
.benefit-rate {
  font-size: 0.72rem; font-weight: 700; letter-spacing: 0.03em;
  padding: 2px 6px; border-radius: var(--radius-full);
  background: linear-gradient(135deg, var(--color-magenta-light), var(--color-teal-light));
  color: var(--color-teal); white-space: nowrap; margin-left: 4px;
}
@media (max-width: 600px) {
  .partner-row { flex-wrap: wrap; }
  .partner-row-name { min-width: 0; }
}

/* ═══════════════════════════════════════════════════
   SIGN-UP INSTRUCTIONS
   ═══════════════════════════════════════════════════ */
.signup-section { background: var(--color-bg); }
/* Step screenshots */
.step-screenshot {
  margin-top: var(--space-4);
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow-md);
  border: 1px solid var(--color-border);
}
.step-screenshot img {
  width: 100%;
  height: auto;
  display: block;
}
.step-screenshot-pair {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: var(--space-3);
  margin-top: var(--space-4);
}
.step-screenshot-sm {
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow-md);
  border: 1px solid var(--color-border);
}
.step-screenshot-sm img {
  width: 100%;
  height: auto;
  display: block;
}
@media (max-width: 600px) {
  .step-screenshot-pair { grid-template-columns: 1fr; }
}


.signup-intro-headline {
  font-family: var(--font-display);
  font-size: clamp(1.3rem, 2.2vw, 1.75rem);
  font-weight: 500;
  font-style: italic;
  color: var(--color-text);
  line-height: 1.4;
  margin-bottom: var(--space-8);
  max-width: none;
}

.signup-paths {
  display: grid; grid-template-columns: 1fr 1fr;
  gap: var(--space-6); margin-bottom: var(--space-8);
}
@media (max-width: 680px) {
  .signup-paths { grid-template-columns: 1fr; }
}
.signup-path {
  background: var(--color-surface);
  border: 1px solid var(--color-border);
  border-radius: var(--radius-2xl);
  padding: var(--space-7) var(--space-7);
  display: flex; flex-direction: column; gap: var(--space-4);
  position: relative; overflow: hidden;
}
.signup-path:first-child::before {
  content: ''; position: absolute; top: 0; left: 0; right: 0; height: 3px;
  background: linear-gradient(90deg, var(--color-magenta), #22BB7A);
}
.signup-path:last-child::before {
  content: ''; position: absolute; top: 0; left: 0; right: 0; height: 3px;
  background: linear-gradient(90deg, #22BB7A, var(--color-teal));
}
.signup-path-header {
  display: flex; align-items: center; gap: var(--space-4);
}
.signup-path-icon {
  width: 44px; height: 44px; border-radius: var(--radius-lg); flex-shrink: 0;
  display: flex; align-items: center; justify-content: center;
}
.signup-path-icon--magenta { background: var(--color-magenta-light); color: var(--color-magenta); }
.signup-path-icon--teal    { background: var(--color-teal-light);    color: var(--color-teal); }
.signup-path-label {
  font-size: var(--text-xs); font-weight: 700; letter-spacing: 0.1em;
  text-transform: uppercase; color: var(--color-text-muted);
  margin-bottom: 2px;
}
.signup-path-title {
  font-family: var(--font-display); font-size: var(--text-lg); font-weight: 600;
  color: var(--color-text);
}
.signup-path-body {
  font-size: var(--text-sm); color: var(--color-text-muted); line-height: 1.7;
  flex-grow: 1; max-width: none;
}
.signup-paths-note {
  text-align: center; font-size: var(--text-sm); color: var(--color-text-muted);
  margin-bottom: var(--space-8);
}
.signup-paths-note a { color: var(--color-magenta); font-weight: 500; }

/* VPN Alert */
.signup-alert {
  display: flex; align-items: flex-start; gap: var(--space-4);
  background: linear-gradient(135deg, rgba(232,148,60,0.06), rgba(0, 180, 190,0.06));
  border: 1px solid var(--color-magenta-mid);
  border-left: 4px solid var(--color-magenta);
  border-radius: var(--radius-lg);
  padding: var(--space-5) var(--space-6);
  margin-bottom: var(--space-10);
}
.signup-alert-icon { flex-shrink: 0; color: var(--color-magenta); margin-top: 2px; }
.signup-alert-title { font-size: var(--text-sm); font-weight: 700; color: var(--color-text); margin-bottom: var(--space-1); }
.signup-alert p { font-size: var(--text-sm); color: var(--color-text-muted); line-height: 1.6; max-width: none; }
.signup-alert a { color: var(--color-magenta); font-weight: 500; }

/* Steps */
.signup-steps { display: flex; flex-direction: column; gap: var(--space-1); }

.signup-step {
  display: grid;
  grid-template-columns: 52px 1fr;
  gap: var(--space-6);
  padding: var(--space-8) 0;
  border-bottom: 1px solid var(--color-divider);
}
.signup-step:last-child { border-bottom: none; }

/* Float image with text wrapping */
.step-float-wrap {
  overflow: hidden;
  margin-top: var(--space-3);
}
.step-screenshot--float {
  float: right;
  width: 200px;
  margin: 0 0 var(--space-4) var(--space-6);
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow-md);
  border: 1px solid var(--color-border);
}
.step-screenshot--float img {
  width: 100%;
  height: auto;
  display: block;
}
.step-float-wrap p {
  font-size: var(--text-sm);
  color: var(--color-text-muted);
  line-height: 1.75;
  margin: 0;
  max-width: none;
}
.step-float-wrap::after {
  content: '';
  display: table;
  clear: both;
}
@media (max-width: 600px) {
  .step-screenshot--float {
    float: none;
    width: 100%;
    margin: 0 0 var(--space-4) 0;
  }
}

.signup-step-num {
  width: 44px; height: 44px; flex-shrink: 0;
  border-radius: var(--radius-full);
  background: linear-gradient(135deg, var(--color-magenta-light), rgba(232,148,60,0.05));
  border: 1.5px solid var(--color-magenta-mid);
  color: var(--color-magenta);
  font-family: var(--font-display); font-size: var(--text-lg); font-weight: 700;
  display: flex; align-items: center; justify-content: center;
  flex-shrink: 0;
}
.signup-step-num--teal {
  background: linear-gradient(135deg, var(--color-teal-light), rgba(0, 180, 190,0.05));
  border-color: var(--color-teal-mid);
  color: var(--color-teal);
}

.signup-step-title {
  font-family: var(--font-display); font-size: var(--text-lg); font-weight: 600;
  color: var(--color-text); margin-bottom: var(--space-3);
}
.signup-step-content p {
  font-size: var(--text-sm); color: var(--color-text-muted); line-height: 1.75;
  margin-bottom: var(--space-3); max-width: none;
}
.signup-step-content a { color: var(--color-teal); font-weight: 500; }

.signup-crypto-list {
  list-style: none; display: flex; flex-direction: column; gap: var(--space-2);
  margin: var(--space-3) 0;
}
.signup-crypto-list li {
  display: flex; align-items: center; gap: var(--space-3);
  font-size: var(--text-sm); color: var(--color-text-muted); line-height: 1.5;
  max-width: none;
}
.crypto-tag {
  display: inline-flex; align-items: center; justify-content: center;
  font-size: 11px; font-weight: 700; letter-spacing: 0.05em;
  padding: 3px var(--space-2); border-radius: var(--radius-sm);
  min-width: 44px; flex-shrink: 0;
}
.crypto-tag--magenta { background: var(--color-magenta-light); color: var(--color-magenta); border: 1px solid var(--color-magenta-mid); }
.crypto-tag--teal    { background: var(--color-teal-light);    color: var(--color-teal);    border: 1px solid var(--color-teal-mid); }
.crypto-tag--purple  { background: rgba(26, 170, 110,0.08);      color: #22BB7A;              border: 1px solid rgba(26, 170, 110,0.2); }

/* Callout boxes within steps */
.signup-callout {
  font-size: var(--text-xs); color: var(--color-text-muted); line-height: 1.65;
  background: var(--color-surface);
  border-left: 3px solid var(--color-magenta);
  border-radius: 0 var(--radius-md) var(--radius-md) 0;
  padding: var(--space-3) var(--space-4);
  margin: var(--space-3) 0;
  max-width: none;
}
.signup-callout strong { color: var(--color-text); }
.signup-callout--teal { border-left-color: var(--color-teal); }

/* Card sub-steps grid */
.card-steps-grid {
  display: grid; grid-template-columns: repeat(2, 1fr);
  gap: var(--space-4); margin: var(--space-5) 0;
}
.card-step-item {
  background: var(--color-surface);
  border: 1px solid var(--color-border);
  border-radius: var(--radius-lg);
  padding: var(--space-4) var(--space-5);
  font-size: var(--text-xs); color: var(--color-text-muted); line-height: 1.6;
}
.card-step-item strong { display: block; font-size: var(--text-sm); color: var(--color-text); margin-bottom: var(--space-2); }
.card-step-item p { margin: 0; max-width: none; }
.card-step-badge {
  display: inline-block; font-size: 10px; font-weight: 700; letter-spacing: 0.06em;
  padding: 2px var(--space-2); border-radius: var(--radius-full);
  margin-bottom: var(--space-2); text-transform: uppercase;
}
.card-step-badge--magenta { background: var(--color-magenta-light); color: var(--color-magenta); }
.card-step-badge--teal    { background: var(--color-teal-light);    color: var(--color-teal); }

/* Footer note */
.signup-footer-note {
  display: flex; align-items: flex-start; gap: var(--space-3);
  margin-top: var(--space-10);
  padding: var(--space-5);
  background: var(--color-surface);
  border: 1px solid var(--color-divider);
  border-radius: var(--radius-lg);
  font-size: var(--text-sm); color: var(--color-text-muted); line-height: 1.6;
}
.signup-footer-note svg { flex-shrink: 0; margin-top: 2px; color: var(--color-teal); }
.signup-footer-note a { color: var(--color-magenta); font-weight: 500; }

/* Mobile */
@media (max-width: 600px) {
  .signup-step { grid-template-columns: 40px 1fr; gap: var(--space-4); }
  .signup-step-num { width: 36px; height: 36px; font-size: var(--text-base); }
  .card-steps-grid { grid-template-columns: 1fr; }
  .signup-alert { flex-direction: column; gap: var(--space-3); }
}

/* ═══════════════════════════════════════════════════
   GET STARTED
   ═══════════════════════════════════════════════════ */
.get-started-section { background: var(--color-surface); position: relative; overflow: hidden; }
.get-started-shiba {
  position: absolute;
  bottom: -40px;
  right: -60px;
  width: clamp(280px, 38vw, 560px);
  height: auto;
  opacity: 0.12;
  pointer-events: none;
  user-select: none;
  z-index: 0;
}
.get-started-section .container { position: relative; z-index: 1; }
@media (max-width: 768px) {
  .get-started-shiba { width: 70vw; opacity: 0.08; right: -30px; }
}

.steps-grid {
  display: grid; grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: var(--space-6); margin-top: var(--space-10); margin-bottom: var(--space-8);
}
.step-card {
  padding: var(--space-6);
  background: var(--color-bg);
  border: 1px solid var(--color-border);
  border-radius: var(--radius-xl);
  position: relative;
  overflow: hidden;
}
.step-card::after {
  content: '';
  position: absolute; bottom: 0; left: 0; right: 0; height: 2px;
}
.step-card:nth-child(1)::after { background: var(--color-magenta); }
.step-card:nth-child(2)::after { background: linear-gradient(90deg, var(--color-magenta), var(--color-teal)); }
.step-card:nth-child(3)::after { background: var(--color-teal); }

.step-number {
  font-family: var(--font-display); font-size: var(--text-3xl); font-weight: 700;
  line-height: 1; margin-bottom: var(--space-3);
}
.step-card:nth-child(1) .step-number { color: var(--color-magenta); opacity: 0.25; }
.step-card:nth-child(2) .step-number { color: var(--color-magenta); opacity: 0.2; }
.step-card:nth-child(3) .step-number { color: var(--color-teal); opacity: 0.25; }
.step-title { font-family: var(--font-display); font-size: var(--text-lg); font-weight: 600; color: var(--color-text); margin-bottom: var(--space-2); }
.step-body { font-size: var(--text-sm); color: var(--color-text-muted); line-height: 1.65; }
.step-body a { color: var(--color-magenta); text-decoration: underline; text-decoration-color: transparent; transition: text-decoration-color var(--transition); }
.step-body a:hover { text-decoration-color: var(--color-magenta); }
.step-card:nth-child(3) .step-body a { color: var(--color-teal); }
.step-card:nth-child(3) .step-body a:hover { text-decoration-color: var(--color-teal); }

.vpn-notice {
  background: var(--color-bg);
  border: 1px solid var(--color-border);
  border-left: 3px solid var(--color-teal);
  border-radius: var(--radius-lg);
  padding: var(--space-5) var(--space-6);
}
.vpn-notice-title {
  font-size: var(--text-sm); font-weight: 600; color: var(--color-text);
  margin-bottom: var(--space-2); display: flex; align-items: center; gap: var(--space-2);
}
.vpn-notice-title svg { color: var(--color-teal); }
.vpn-notice p { font-size: var(--text-sm); color: var(--color-text-muted); line-height: 1.65; max-width: none; }
.vpn-notice a { color: var(--color-teal); }

/* ═══════════════════════════════════════════════════
   CTA SECTION
   ═══════════════════════════════════════════════════ */
.cta-section {
  background: var(--color-bg);
  text-align: center;
  position: relative;
  overflow: hidden;
}
.cta-section::before {
  content: '';
  position: absolute; inset: 0;
  background:
    radial-gradient(ellipse 55% 70% at 20% 50%, rgba(232,148,60,0.05) 0%, transparent 70%),
    radial-gradient(ellipse 55% 70% at 80% 50%, rgba(0, 180, 190,0.05) 0%, transparent 70%);
  pointer-events: none;
}
.cta-section .section-title { max-width: 20ch; margin-inline: auto; margin-bottom: var(--space-6); }
.cta-section * { text-align: center; }
.cta-section .section-subtitle { margin-inline: auto; margin-bottom: var(--space-8); }
.cta-buttons { display: flex; flex-wrap: wrap; align-items: center; justify-content: center; gap: var(--space-4); margin-bottom: var(--space-5); }
.cta-note { font-size: var(--text-xs); color: var(--color-text-faint); font-style: italic; }

/* ═══════════════════════════════════════════════════
   DISCLOSURE BOX
   ═══════════════════════════════════════════════════ */
.disclosure-box {
  background: var(--color-surface);
  border: 1px solid var(--color-divider);
  border-radius: var(--radius-xl);
  padding: var(--space-6) var(--space-8);
  margin-top: var(--space-8);
}
.disclosure-box p {
  font-size: var(--text-sm);
  color: var(--color-text-muted);
  line-height: 1.7;
  max-width: none;
}
.disclosure-box strong { color: var(--color-text); font-weight: 500; }

/* ═══════════════════════════════════════════════════
   HONEST BOX — redesigned
   ═══════════════════════════════════════════════════ */
.honest-box-section {
  padding: var(--space-8) 0 var(--space-8);
}
.honest-box {
  border-radius: var(--radius-xl);
  border: 1px solid var(--color-magenta-mid);
  background: linear-gradient(160deg, #ffffff 0%, #ffffff 40%, #f8f8f8 100%);
  padding: var(--space-6) var(--space-8);
  position: relative;
  overflow: hidden;
}
/* Decorative top-right circle */
.honest-box::after {
  content: '';
  position: absolute;
  top: -60px; right: -60px;
  width: 220px; height: 220px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(217,70,168,0.08) 0%, transparent 70%);
  pointer-events: none;
}
/* Left accent bar */
.honest-box::before {
  content: '';
  position: absolute;
  top: 0; left: 0;
  width: 4px;
  height: 100%;
  background: linear-gradient(to bottom, var(--color-magenta), var(--color-purple));
  border-radius: 4px 0 0 4px;
}
/* Top section: label + heading + intro in two columns */
.honest-box-top {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: var(--space-4) var(--space-8);
  align-items: start;
  margin-bottom: var(--space-4);
}
.honest-box-left {
  position: relative;
}
/* Giant decorative quote mark */
.honest-box-quote-mark {
  font-family: var(--font-display);
  font-size: 9rem;
  line-height: 0.7;
  color: var(--color-magenta);
  opacity: 0.12;
  position: absolute;
  top: -10px;
  left: -8px;
  pointer-events: none;
  user-select: none;
}
.honest-box-label {
  font-size: var(--text-xs);
  font-weight: 700;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--color-magenta);
  margin-bottom: var(--space-3);
  display: flex;
  align-items: center;
  gap: 8px;
}
.honest-box-label::before {
  content: '';
  display: inline-block;
  width: 18px;
  height: 2px;
  background: var(--color-pink);
  border-radius: 2px;
  flex-shrink: 0;
}
.honest-box-heading {
  font-family: var(--font-display);
  font-size: clamp(1.2rem, 2.2vw, 1.6rem);
  font-weight: 600;
  line-height: 1.2;
  color: var(--color-text);
  margin-bottom: 0;
}
.honest-box-right {
  display: flex;
  flex-direction: column;
  gap: var(--space-4);
  padding-top: 4px;
}
.honest-box-right p {
  font-size: var(--text-sm);
  color: var(--color-text-muted);
  line-height: 1.8;
  margin: 0;
}
.honest-box-right p strong { color: var(--color-text); font-weight: 600; }

/* Brands row */
.honest-brands-row {
  display: flex;
  align-items: center;
  gap: var(--space-2) var(--space-2);
  flex-wrap: wrap;
  padding: var(--space-3) 0;
  border-top: 1px solid rgba(232,148,60,0.12);
  border-bottom: 1px solid rgba(232,148,60,0.12);
  margin-bottom: var(--space-4);
}
.honest-brands-label {
  font-size: 0.7rem;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--color-text-muted);
  opacity: 0.85;
  white-space: normal;
  margin-right: var(--space-2);
  max-width: 260px;
  line-height: 1.4;
}
.honest-brand-pill {
  font-size: var(--text-xs);
  font-weight: 600;
  letter-spacing: 0.04em;
  padding: 5px 14px;
  border-radius: var(--radius-full);
  background: white;
  color: var(--color-magenta);
  border: 1px solid rgba(232,148,60,0.25);
  box-shadow: 0 1px 3px rgba(217,70,168,0.08);
}

/* Product grid */
.honest-products-heading {
  font-size: var(--text-xs);
  font-weight: 700;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--color-text-muted);
  margin-bottom: var(--space-2);
}
.honest-products-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: var(--space-2);
  margin-bottom: var(--space-4);
}
.honest-product-card {
  background: white;
  border: 1px solid rgba(232,148,60,0.14);
  border-radius: var(--radius-lg);
  padding: var(--space-3) var(--space-3);
  display: flex;
  align-items: flex-start;
  gap: var(--space-2);
  box-shadow: 0 1px 4px rgba(232,148,60,0.06);
  transition: box-shadow 0.2s ease, border-color 0.2s ease;
}
.honest-product-card:hover {
  box-shadow: 0 4px 14px rgba(232,148,60,0.12);
  border-color: rgba(232,148,60,0.28);
}
.honest-product-icon {
  width: 32px;
  height: 32px;
  border-radius: 8px;
  background: linear-gradient(135deg, var(--color-magenta-glow), #eef0ff);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  color: var(--color-magenta);
}
.honest-product-icon svg {
  width: 16px;
  height: 16px;
}
.honest-product-text {
  font-size: 0.78rem;
  font-weight: 600;
  color: var(--color-text);
  line-height: 1.35;
}
.honest-product-sub {
  font-size: 0.7rem;
  color: var(--color-text-muted);
  font-weight: 400;
  line-height: 1.4;
  margin-top: 2px;
}

/* Closing statement */
.honest-box-closing {
  border-top: 1px solid rgba(217,70,168,0.1);
  padding-top: var(--space-4);
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: var(--space-4) var(--space-8);
  align-items: center;
}
.honest-box-closing-text {
  font-size: var(--text-sm);
  color: var(--color-text-muted);
  line-height: 1.8;
  margin: 0;
}
.honest-box-closing-text em { color: var(--color-magenta); font-style: italic; }
.honest-box-closing-text strong { color: var(--color-text); font-weight: 600; }
.honest-box-tagline {
  font-family: var(--font-display);
  font-size: clamp(1.1rem, 2vw, 1.4rem);
  font-weight: 500;
  color: var(--color-text);
  line-height: 1.45;
  border-left: 3px solid var(--color-magenta);
  padding-left: var(--space-4);
}
.honest-box-tagline strong {
  color: var(--color-magenta);
}

/* Responsive */
@media (max-width: 768px) {
  .honest-box { padding: var(--space-5) var(--space-5); }
  .honest-box-top { grid-template-columns: 1fr; gap: var(--space-3); }
  .honest-products-grid { grid-template-columns: repeat(2, 1fr); }
  .honest-box-closing { grid-template-columns: 1fr; gap: var(--space-3); }
}
@media (max-width: 480px) {
  .honest-products-grid { grid-template-columns: 1fr; }
  .honest-box-heading { font-size: 1.4rem; }
  .honest-product-card { flex-direction: row; align-items: center; }
  .honest-product-text { font-size: 0.82rem; }
  .honest-product-sub { font-size: 0.72rem; }
}
@media (max-width: 480px) {
  .honest-box { padding: var(--space-5) var(--space-5) var(--space-5) var(--space-7); }
  .honest-box-heading { font-size: 1.3rem; }
  /* Stats — 2 cols on phones */
  .stats-grid { grid-template-columns: repeat(2, 1fr); }
}

/* ═══════════════════════════════════════════════════
   FOOTER
   ═══════════════════════════════════════════════════ */
.site-footer {
  background: var(--color-surface);
  border-top: 1px solid var(--color-divider);
  padding-block: var(--space-10);
}
.footer-inner {
  display: flex; flex-wrap: wrap; align-items: center;
  justify-content: space-between; gap: var(--space-4);
}
.footer-logo-area { display: flex; align-items: center; gap: var(--space-3); }
.footer-partner-text { font-size: var(--text-xs); color: var(--color-text-muted); }
.footer-disclaimer { font-size: var(--text-xs); color: var(--color-text-faint); max-width: 52ch; line-height: 1.6; text-align: center; }
.footer-links { display: flex; gap: var(--space-4); flex-wrap: wrap; }
.footer-link { font-size: var(--text-xs); color: var(--color-text-muted); transition: color var(--transition); }
.footer-link:hover { color: var(--color-magenta); }
.footer-bottom { margin-top: var(--space-6); text-align: center; }
.pplx-credit { font-size: var(--text-xs); color: var(--color-text-faint); }
.pplx-credit a { color: var(--color-text-faint); text-decoration: underline; text-decoration-color: transparent; transition: color var(--transition), text-decoration-color var(--transition); }
.pplx-credit a:hover { color: var(--color-text-muted); text-decoration-color: var(--color-text-muted); }

/* ═══════════════════════════════════════════════════
   SHIBA BANNER
   ═══════════════════════════════════════════════════ */
.shiba-banner {
  width: 100%;
  line-height: 0;
  position: relative;
  overflow: hidden;
  mask-image: linear-gradient(to bottom, transparent 0%, black 12%, black 88%, transparent 100%);
  -webkit-mask-image: linear-gradient(to bottom, transparent 0%, black 12%, black 88%, transparent 100%);
}
.shiba-img {
  width: 100%;
  max-height: 420px;
  object-fit: contain;
  object-position: center center;
  display: block;
  opacity: 0.7;
  mix-blend-mode: multiply;
}
[data-theme="dark"] .shiba-img { mix-blend-mode: screen; filter: brightness(3) contrast(0.4); }
@media (max-width: 600px) {
  .shiba-img { max-height: 280px; }
}

/* ═══════════════════════════════════════════════════
   WAVE DIVIDER — static SVG wave with dust
   ═══════════════════════════════════════════════════ */
.wave-divider {
  display: block;
  width: 100%;
  line-height: 0;
  overflow: hidden;
  /* Cap height so it reads as a thin divider, not a blank band */
  max-height: 48px;
}
.wave-divider svg {
  display: block;
  width: 100%;
  height: 48px;
}

/* ═══════════════════════════════════════════════════
   RESPONSIVE
   ═══════════════════════════════════════════════════ */
/* ═══════════════════════════════════════════════════
   MOBILE / TABLET RESPONSIVE
   ═══════════════════════════════════════════════════ */
@media (max-width: 768px) {

  /* Banner — shorter on mobile */
  .partner-banner { padding: var(--space-2) var(--space-3); }
  .partner-banner p { font-size: 10px; line-height: 1.5; }

  /* Shiba graphics — hide all on mobile to avoid blank gaps */
  .overview-shiba-row { display: none; }
  .partner-shiba { display: none; }
  .hero-shiba { display: none; }

  /* Nav — tighter, badge hidden, button smaller */
  .nav { padding-block: var(--space-3); gap: var(--space-2); }
  .nav-logo-img { height: 22px; }
  .nav-partner-badge { display: none; }
  .nav-divider { display: none; }

  /* Show badge in its own row below the sticky header */
  .mobile-partner-row {
    display: flex;
    justify-content: center;
    align-items: center;
    padding: var(--space-2) var(--space-4);
    background: var(--color-bg);
    border-bottom: 1px solid var(--color-divider);
  }
  .mobile-partner-row .nav-partner-badge { display: inline-block; }
  .btn-nav { display: none; }
  

  /* Hero — tighter vertical rhythm */
  .hero { padding-block: clamp(var(--space-8), 6vw, var(--space-12)); }

  /* Sections — tighter on mobile */
  section { padding-block: clamp(var(--space-4), 3vw, var(--space-7)); }
  .watch-read-bar { padding-block: var(--space-4) var(--space-5); }
  .hero-eyebrow { font-size: 10px; padding: 5px var(--space-3); }
  .hero-subtitle { font-size: var(--text-sm); }
  .hero-ctas { flex-direction: column; align-items: center; gap: var(--space-3); }
  .btn--lg { font-size: var(--text-sm); padding: var(--space-3) var(--space-8); width: 100%; max-width: 320px; justify-content: center; }

  /* Stats — 2×3 grid at tablet */
  .stats-grid { grid-template-columns: repeat(3, 1fr); gap: var(--space-4); }

  /* Watch & Read — single column */
  .resources-grid { grid-template-columns: 1fr; }

  /* Overview — stack */
  .overview-grid { grid-template-columns: 1fr; }
  .pull-quote { font-size: var(--text-base); }

  /* Products grid — 2 cols on tablet, 1 on phone */
  .products-grid { grid-template-columns: repeat(2, 1fr); }

  /* Card section — stack */
  .card-layout { grid-template-columns: 1fr; }
  .card-real-img { max-width: 100%; margin: 0 auto; }

  /* CEO card — stack */
  .ceo-card { grid-template-columns: 1fr; gap: var(--space-4); }
  .ceo-avatar { width: 56px; height: 56px; font-size: var(--text-base); }

  /* Partner benefits — already has own breakpoints */

  /* Steps — single column */
  .steps-grid { grid-template-columns: 1fr; }

  /* Footer */
  .footer-inner { flex-direction: column; text-align: center; gap: var(--space-4); }
  .footer-disclaimer, .footer-logo-area { text-align: center; justify-content: center; }
  .footer-links { justify-content: center; }

  /* Honest box — stack on tablet */
  .honest-box { padding: var(--space-5) var(--space-5); }
  .honest-box-top { grid-template-columns: 1fr; gap: var(--space-3); }
  .honest-products-grid { grid-template-columns: repeat(2, 1fr); }
  .honest-box-closing { grid-template-columns: 1fr; gap: var(--space-3); }

  /* DYOR video grid — 2 cols on tablet */
  .dyor-video-grid { grid-template-columns: repeat(2, 1fr); gap: var(--space-3); }

  /* Article cards — hide external label on tablet to save space */
  .dyor-article-ext { display: none; }

  /* EX-AI Regs — single col on tablet */
  .exai-regs-grid { grid-template-columns: 1fr; }

  /* Partner rows — wrap name+desc on tablet */
  .partner-row { flex-wrap: wrap; gap: var(--space-2); }
  .partner-row-name { min-width: 0; width: 100%; }
  .partner-row-desc { width: 100%; }

  /* Watch-read header — tighter */
  .watch-read-title { font-size: var(--text-lg); }
  .watch-read-subtitle { font-size: var(--text-xs); }

  /* QA quote block — full width */
  .qa { padding: var(--space-4) var(--space-4); margin: var(--space-4) auto; }
}

@media (max-width: 480px) {
  /* Products — single column on small phones */
  .products-grid { grid-template-columns: 1fr; }

  /* Wave dividers — shorter on phones */
  .wave-divider svg { height: 80px; }

  /* Section titles */
  .section-title { font-size: var(--text-xl); }

  /* Reduce card padding */
  .partner-program-card,
  .step-card,
  .product-card { padding: var(--space-5); }

  /* VPN notice */
  .vpn-notice { padding: var(--space-4); }

  /* CTA section */
  .cta-section .btn { width: 100%; justify-content: center; }

  /* Sign-up step screenshots — full width on small phones */
  .step-screenshot { max-width: 100% !important; }

  /* Sign-up intro headline smaller on phone */
  .signup-intro-headline { font-size: var(--text-base); }

  /* Partner benefits grid — single col */
  .partner-benefits { grid-template-columns: 1fr !important; }

  /* Honest box — single col on small phones */
  .honest-products-grid { grid-template-columns: 1fr; }
  .honest-box-heading { font-size: 1.1rem; }
  .honest-box-right p { font-size: var(--text-xs); }
  .honest-brands-row { gap: var(--space-1); padding: var(--space-2) 0; }
  .honest-brand-pill { font-size: 10px; padding: 3px 10px; }

  /* DYOR video grid — single col on small phones */
  .dyor-video-grid { grid-template-columns: 1fr; }
  .dyor-card-body { padding: var(--space-2) var(--space-3); }

  /* Article cards — show external label again on phones (more room) */
  .dyor-article-ext { display: flex; }
  .dyor-article-body { flex-direction: column; gap: 2px; }
  .dyor-article-pub { white-space: normal; }

  /* EX-AI Regs list — tighter */
  .exai-regs-list { font-size: 0.75rem; }
  .exai-regs-card { padding: var(--space-3); }

  /* Partner rows — icon hidden on very small screens */
  .partner-row-icon { display: none; }

  /* QA quote — smaller font on phone */
  .qa-text { font-size: 0.9rem; }
  .qa { padding: var(--space-3) var(--space-3); }

  /* Mid-CTA — tighter */
  .mid-cta { padding-block: var(--space-6); }
  .mid-cta-inner { padding-inline: var(--space-4); }
}

/* ═══════════════════════════════════════════════════
   MID-PAGE CTA BAND
   ═══════════════════════════════════════════════════ */
.mid-cta {
  background: linear-gradient(135deg, var(--color-magenta-light) 0%, var(--color-teal-light) 100%);
  border-top: 1px solid var(--color-magenta-mid);
  border-bottom: 1px solid var(--color-divider);
  padding-block: clamp(var(--space-10), 6vw, var(--space-16));
  position: relative;
  overflow: hidden;
}
.mid-cta-inner {
  max-width: 680px;
  margin-inline: auto;
  padding-inline: var(--space-6);
  text-align: center;
  display: flex;
  flex-direction: column;
  align-items: center;
}
.mid-cta-shiba {
  position: absolute;
  bottom: -10px;
  right: -20px;
  width: clamp(180px, 22vw, 320px);
  height: auto;
  opacity: 0.18;
  pointer-events: none;
  user-select: none;
}
@media (max-width: 768px) {
  .mid-cta-shiba { width: 45vw; opacity: 0.12; right: -10px; }
}
.mid-cta-eyebrow {
  font-size: var(--text-xs);
  font-weight: 600;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  background: linear-gradient(90deg, var(--color-magenta), var(--color-pink));
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  margin-bottom: var(--space-4);
  text-align: center;
  display: block;
  width: 100%;
}
.mid-cta-heading {
  font-family: var(--font-display);
  font-size: var(--text-2xl);
  font-weight: 600;
  color: var(--color-text);
  line-height: 1.15;
  margin-bottom: var(--space-4);
  max-width: 22ch;
  margin-inline: auto;
}
.mid-cta-sub {
  font-size: var(--text-base);
  color: var(--color-text-muted);
  max-width: 50ch;
  margin-inline: auto;
  margin-bottom: var(--space-8);
  line-height: 1.7;
}
.mid-cta-buttons {
  display: flex;
  align-items: center;
  justify-content: center;
  flex-wrap: wrap;
  gap: var(--space-4);
}
.mid-cta-disclaimer {
  margin-top: var(--space-5);
  font-size: 13px;
  color: var(--color-text-faint);
  font-style: italic;
  text-align: center;
  display: block;
  width: 100%;
}
@media (max-width: 768px) {
  .mid-cta-buttons { flex-direction: column; align-items: center; }
  .mid-cta-buttons .btn--lg { width: 100%; max-width: 320px; justify-content: center; }
}

/* ═══════════════════════════════════════════════════
   MID-PAGE CTA BAND
   ═══════════════════════════════════════════════════ */


/* ═══════════════════════════════════════════════════
   PULL QUOTE
   ═══════════════════════════════════════════════════ */


/* ═══════════════════════════════════════════════════
   ANIMATED GLOW — Book a Call buttons
   ═══════════════════════════════════════════════════ */
@keyframes glow-pulse {
  0%   { box-shadow: 0 0 6px 1px rgba(106, 36, 168, 0.35), 0 0 14px 2px rgba(0, 164, 178, 0.18); }
  40%  { box-shadow: 0 0 12px 3px rgba(0, 164, 178, 0.45), 0 0 24px 6px rgba(106, 36, 168, 0.18); }
  70%  { box-shadow: 0 0 10px 2px rgba(106, 36, 168, 0.40), 0 0 20px 5px rgba(0, 164, 178, 0.22); }
  100% { box-shadow: 0 0 6px 1px rgba(106, 36, 168, 0.35), 0 0 14px 2px rgba(0, 164, 178, 0.18); }
}

.btn--glow {
  animation: glow-pulse 9s ease-in-out infinite;
  position: relative;
}
.btn--glow:hover {
  animation-play-state: paused;
  box-shadow: 0 0 16px 4px rgba(106, 36, 168, 0.55), 0 0 32px 8px rgba(0, 164, 178, 0.30) !important;
}

.ceo-profile-link {
  display: inline-flex;
  align-items: center;
  gap: var(--space-2);
  margin-top: var(--space-4);
  font-size: var(--text-sm);
  font-weight: 500;
  color: var(--color-teal);
  text-decoration: none;
  border-bottom: 1px solid transparent;
  transition: border-color var(--transition), opacity var(--transition);
}
.ceo-profile-link:hover {
  border-bottom-color: var(--color-teal);
  opacity: 0.8;
}

/* Pull Quote — Option A */
.qa {
  margin: var(--space-5) auto;
  max-width: 700px;
  text-align: center;
  padding: var(--space-3) var(--space-6);
  background: linear-gradient(135deg, var(--color-magenta-light) 0%, #fff 60%, var(--color-teal-light) 100%);
  border-radius: var(--radius-xl);
  border: 1px solid var(--color-magenta-mid);
}
.qa-text {
  font-family: var(--font-display);
  font-size: clamp(1rem, 2vw, 1.25rem);
  font-style: italic;
  font-weight: 400;
  color: var(--color-text);
  line-height: 1.55;
  margin-bottom: var(--space-3);
}
.qa-rule {
  width: 32px;
  height: 2px;
  background: linear-gradient(90deg, var(--color-magenta), var(--color-teal));
  border-radius: 2px;
  margin: 0 auto var(--space-2);
}
.qa-attr {
  font-size: var(--text-xs);
  font-weight: 600;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--color-magenta);
  margin-bottom: 4px;
}
.qa-source {
  font-size: var(--text-xs);
  color: var(--color-text-muted);
}
.qa-source a {
  color: var(--color-teal);
  text-decoration: underline;
  text-underline-offset: 3px;
}
@media (max-width: 768px) { .qa-text { font-size: 1rem; } }

/* ═══════════════════════════════════════════════════
   FLOATING VIDEO WIDGET
   ═══════════════════════════════════════════════════ */
.video-widget {
  position: fixed;
  bottom: 24px;
  right: 24px;
  z-index: 100;
  width: 280px;
  max-width: calc(100vw - 48px);
  border-radius: 1rem;
  overflow: hidden;
  box-shadow: 0 8px 32px rgba(0,0,0,0.3);
  cursor: pointer;
  transition: transform 0.25s ease, box-shadow 0.25s ease;
  animation: widgetSlideIn 0.5s ease 1s both;
}
.video-widget:hover {
  transform: translateY(-4px);
  box-shadow: 0 12px 44px rgba(0,0,0,0.4);
}
@keyframes widgetSlideIn {
  from { opacity: 0; transform: translateY(30px); }
  to   { opacity: 1; transform: translateY(0); }
}
.video-widget-thumb {
  position: relative;
  width: 100%;
  aspect-ratio: 16 / 10;
  overflow: hidden;
}
.video-widget-thumb img { width: 100%; height: 100%; object-fit: cover; display: block; }
.video-widget-thumb::after {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(to top, rgba(0,0,0,0.7) 0%, rgba(0,0,0,0.1) 50%, rgba(0,0,0,0.05) 100%);
}
.video-widget-content {
  position: absolute; bottom: 0; left: 0; right: 0;
  padding: 1rem;
  z-index: 2;
  display: flex; align-items: flex-end; justify-content: space-between; gap: 0.75rem;
}
.video-widget-title {
  font-family: 'Cormorant Garamond', Georgia, serif;
  font-size: clamp(0.875rem, 0.8rem + 0.35vw, 1rem);
  font-weight: 600; color: #fff; line-height: 1.3;
  text-shadow: 0 1px 4px rgba(0,0,0,0.5);
}
.video-widget-play {
  flex-shrink: 0; width: 42px; height: 42px; border-radius: 9999px;
  background: linear-gradient(135deg, #D946A8, var(--color-teal));
  display: flex; align-items: center; justify-content: center;
  box-shadow: 0 4px 16px rgba(232,148,60, 0.35);
  transition: transform 0.2s ease;
}
.video-widget:hover .video-widget-play { transform: scale(1.1); }
.video-widget-close {
  position: absolute; top: 8px; right: 8px; z-index: 3;
  width: 26px; height: 26px; border-radius: 9999px;
  background: rgba(0,0,0,0.5); backdrop-filter: blur(6px);
  display: flex; align-items: center; justify-content: center;
  color: #fff; border: none; transition: background 0.2s ease; cursor: pointer;
}
.video-widget-close:hover { background: rgba(0,0,0,0.75); }
.video-overlay {
  position: fixed; top: 0; left: 0;
  width: 100vw; height: 100dvh; z-index: 9999;
  background: rgba(0,0,0,0.92);
  display: flex; align-items: center; justify-content: center;
  opacity: 0; visibility: hidden;
  transition: opacity 0.3s ease, visibility 0.3s ease;
}
.video-overlay.active { opacity: 1; visibility: visible; }
.video-overlay iframe {
  width: 90vw; height: 50.625vw;
  max-width: 1100px; max-height: 619px;
  border: none; border-radius: 0.75rem;
}
.video-overlay-close {
  position: absolute; top: 20px; right: 20px;
  width: 44px; height: 44px; border-radius: 9999px;
  background: rgba(255,255,255,0.15); backdrop-filter: blur(6px);
  display: flex; align-items: center; justify-content: center;
  color: #fff; border: none; cursor: pointer;
  transition: background 0.2s ease;
}
.video-overlay-close:hover { background: rgba(255,255,255,0.25); }
.video-widget.hidden { display: none; }
@media (max-width: 768px) {
  .video-widget { width: 190px; bottom: 12px; right: 12px; }
  .video-widget-title { font-size: 0.72rem; }
  .video-widget-play { width: 34px; height: 34px; }
}
@media (max-width: 480px) {
  .video-widget { width: 160px; bottom: 10px; right: 10px; }
  .video-widget-title { font-size: 0.68rem; }
  .video-widget-thumb { height: 80px; }
}


/* ═══════════════════════════════════════════════════
   TRUSTPILOT REVIEWS SECTION
   ═══════════════════════════════════════════════════ */
.reviews-section {
  padding: var(--space-8) 0 var(--space-8);
  background: var(--color-surface);
  overflow: hidden;
}
.reviews-section .section-header {
  text-align: center;
  margin-bottom: var(--space-10);
}
.reviews-tp-badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: white;
  border: 1px solid var(--color-border);
  border-radius: var(--radius-full);
  padding: 6px 16px 6px 10px;
  margin-bottom: var(--space-4);
  box-shadow: 0 1px 4px rgba(0,0,30,0.06);
}
.reviews-tp-logo {
  font-size: 0.75rem;
  font-weight: 800;
  color: #00b67a;
  letter-spacing: -0.01em;
}
.reviews-tp-stars {
  display: flex;
  gap: 2px;
}
.reviews-tp-star {
  width: 14px;
  height: 14px;
  background: #00b67a;
  clip-path: polygon(50% 0%, 61% 35%, 98% 35%, 68% 57%, 79% 91%, 50% 70%, 21% 91%, 32% 57%, 2% 35%, 39% 35%);
}
.reviews-tp-score {
  font-size: 0.78rem;
  font-weight: 600;
  color: var(--color-text);
}
.reviews-tp-count {
  font-size: 0.75rem;
  color: var(--color-text-muted);
}
.reviews-section-title {
  font-family: var(--font-display);
  font-size: clamp(1.8rem, 3.5vw, 2.6rem);
  font-weight: 600;
  color: var(--color-text);
  margin-bottom: var(--space-2);
  line-height: 1.2;
}
.reviews-section-sub {
  font-size: var(--text-sm);
  color: var(--color-text-muted);
}

/* Scrolling track */
.reviews-track-wrap {
  position: relative;
  mask-image: linear-gradient(to right, transparent 0%, black 8%, black 92%, transparent 100%);
  -webkit-mask-image: linear-gradient(to right, transparent 0%, black 8%, black 92%, transparent 100%);
}
.reviews-track {
  display: flex;
  gap: var(--space-4);
  width: max-content;
  animation: reviewsScroll 90s linear infinite;
}
.reviews-track:hover { animation-play-state: paused; }
@keyframes reviewsScroll {
  0%   { transform: translateX(0); }
  100% { transform: translateX(-50%); }
}

/* Individual card */
.review-card {
  background: white;
  border: 1px solid var(--color-border);
  border-radius: var(--radius-xl);
  padding: var(--space-5) var(--space-6);
  width: 320px;
  flex-shrink: 0;
  display: flex;
  flex-direction: column;
  gap: var(--space-3);
  box-shadow: 0 2px 8px rgba(0,0,30,0.05);
  transition: box-shadow 0.2s ease;
  cursor: default;
}
.review-card:hover {
  box-shadow: 0 6px 20px rgba(0,0,30,0.1);
}
.review-card-stars {
  display: flex;
  gap: 3px;
}
.review-star {
  width: 16px;
  height: 16px;
  background: #00b67a;
  clip-path: polygon(50% 0%, 61% 35%, 98% 35%, 68% 57%, 79% 91%, 50% 70%, 21% 91%, 32% 57%, 2% 35%, 39% 35%);
  flex-shrink: 0;
}
.review-card-title {
  font-size: 0.88rem;
  font-weight: 700;
  color: var(--color-text);
  line-height: 1.3;
}
.review-card-text {
  font-size: 0.82rem;
  color: var(--color-text-muted);
  line-height: 1.7;
  flex: 1;
  display: -webkit-box;
  -webkit-line-clamp: 5;
  -webkit-box-orient: vertical;
  overflow: hidden;
}
.review-card-footer {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding-top: var(--space-2);
  border-top: 1px solid var(--color-divider);
  gap: var(--space-2);
}
.review-card-author {
  font-size: 0.76rem;
  font-weight: 600;
  color: var(--color-text);
}
.review-card-meta {
  font-size: 0.72rem;
  color: var(--color-text-faint);
}
.review-card-flag {
  font-size: 1rem;
  line-height: 1;
}

/* CTA below */
.reviews-cta {
  text-align: center;
  margin-top: var(--space-8);
}
.reviews-cta a {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  font-size: var(--text-sm);
  font-weight: 600;
  color: #00b67a;
  text-decoration: none;
  border: 1.5px solid #00b67a;
  border-radius: var(--radius-full);
  padding: 8px 22px;
  transition: background 0.2s, color 0.2s;
}
.reviews-cta a:hover {
  background: #00b67a;
  color: white;
}


/* ═══════════════════════════════════════════════════
   FAQ ACCORDION
   ═══════════════════════════════════════════════════ */
/* ═══════════════════════════════════════════════════
   PRESS BAR
   ═══════════════════════════════════════════════════ */
/* Outer wrapper uses page bg so the framed card floats */
.press-bar {
  background: var(--color-bg);
  border-top: 0;
  border-bottom: 0;
  padding: clamp(2rem, 4vw, 3rem) var(--space-4);
  display: flex;
  justify-content: center;
  position: relative;
}
/* Framed card with gradient border */
.press-bar::before {
  content: "";
  position: absolute;
  left: 50%;
  top: 50%;
  transform: translate(-50%, -50%);
  width: min(820px, 100% - var(--space-8));
  height: calc(100% - clamp(1.5rem, 3vw, 2.25rem));
  border-radius: 18px;
  padding: 1px;
  background: linear-gradient(120deg, rgba(217,70,168,0.55), rgba(0,180,190,0.55), rgba(217,70,168,0.55));
  -webkit-mask: linear-gradient(#000 0 0) content-box, linear-gradient(#000 0 0);
          mask: linear-gradient(#000 0 0) content-box, linear-gradient(#000 0 0);
  -webkit-mask-composite: xor;
          mask-composite: exclude;
  opacity: .9;
  pointer-events: none;
}
.press-bar-inner {
  position: relative;
  width: min(820px, 100%);
  padding: clamp(1.4rem, 2.4vw, 1.9rem) clamp(1.25rem, 3vw, 2.25rem);
  border-radius: 18px;
  background:
    radial-gradient(ellipse 60% 120% at 0% 50%, rgba(217,70,168,0.06) 0%, transparent 60%),
    radial-gradient(ellipse 60% 120% at 100% 50%, rgba(0,180,190,0.07) 0%, transparent 60%),
    #fff;
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  box-shadow: 0 22px 50px -30px rgba(15,23,42,0.18);
  overflow: hidden;
}
.press-bar-inner::after {
  /* subtle shimmer sweep */
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(110deg, transparent 40%, rgba(217,70,168,0.06) 50%, transparent 60%);
  transform: translateX(-100%);
  animation: pressShimmer 24s linear infinite;
  pointer-events: none;
}
@keyframes pressShimmer {
  0% { transform: translateX(-100%); }
  60%, 100% { transform: translateX(100%); }
}
.press-bar-label {
  display: inline-flex;
  align-items: center;
  gap: .5rem;
  font-size: .7rem;
  font-weight: 700;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  margin-bottom: var(--space-4);
  background: linear-gradient(90deg, #D946A8, #00B4BE);
  -webkit-background-clip: text;
          background-clip: text;
  color: transparent;
  position: relative;
  z-index: 1;
}
.press-bar-label::before {
  content: "";
  width: 7px; height: 7px;
  border-radius: 50%;
  background: #D946A8;
  box-shadow: 0 0 0 0 rgba(217,70,168,0.55);
  animation: pressPulse 8s ease-out infinite;
  flex-shrink: 0;
}
@keyframes pressPulse {
  0%   { box-shadow: 0 0 0 0 rgba(217,70,168,0.55); }
  70%  { box-shadow: 0 0 0 10px rgba(217,70,168,0); }
  100% { box-shadow: 0 0 0 0 rgba(217,70,168,0); }
}
.press-bar-items {
  display: flex;
  align-items: center;
  justify-content: center;
  flex-wrap: wrap;
  gap: .5rem .55rem;
  margin-bottom: var(--space-4);
  position: relative;
  z-index: 1;
}
.press-bar-item {
  font-family: var(--font-display);
  font-size: 1.02rem;
  font-weight: 600;
  color: #1b2540;
  letter-spacing: 0.005em;
  padding: .35rem .75rem;
  border-radius: 999px;
  background: rgba(255,255,255,0.85);
  border: 1px solid rgba(15,23,42,0.08);
  transition: transform .2s ease, border-color .2s ease, color .2s ease, background .2s ease;
}
.press-bar-item:hover {
  transform: translateY(-1px);
  border-color: rgba(217,70,168,0.35);
  color: #7A1B5B;
  background: linear-gradient(90deg, rgba(217,70,168,0.05), rgba(0,180,190,0.05));
}
.press-bar-divider {
  display: none; /* chips replace inline dividers */
}
.press-bar-quote {
  font-size: .88rem;
  color: rgba(15,23,42,0.72);
  font-style: italic;
  text-align: center;
  display: block;
  width: 100%;
  padding-inline: var(--space-4);
  position: relative;
  z-index: 1;
  line-height: 1.5;
}
.press-bar-quote strong {
  font-style: normal;
  font-weight: 700;
  background: linear-gradient(90deg, #D946A8, #00B4BE);
  -webkit-background-clip: text;
          background-clip: text;
  color: transparent;
}

.faq-section {
  background: var(--color-surface);
}
.faq-inner {
  max-width: 760px;
  margin-left: auto;
  margin-right: auto;
  text-align: center;
}
.faq-section .section-header {
  text-align: center;
  margin-bottom: var(--space-10);
}
.faq-section .section-eyebrow {
  display: block;
  width: 100%;
  text-align: center;
  margin-bottom: var(--space-3);
}
.faq-section .section-title {
  text-align: center;
}
.faq-section .section-divider {
  margin-left: auto;
  margin-right: auto;
}
.faq-section .section-subtitle {
  text-align: center;
  margin-left: auto;
  margin-right: auto;
}
.faq-grid {
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  gap: var(--space-3);
}
.faq-item {
  background: var(--color-bg);
  border: 1.5px solid var(--color-divider);
  border-radius: 10px;
  overflow: hidden;
  transition: border-color 0.2s ease, box-shadow 0.2s ease;
}
.faq-item:hover {
  border-color: var(--color-magenta);
  box-shadow: 0 2px 12px rgba(217,70,168,0.08);
}
.faq-item.open {
  border-color: var(--color-magenta);
}
.faq-question {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: var(--space-4);
  width: 100%;
  padding: var(--space-5) var(--space-6);
  background: none;
  border: none;
  cursor: pointer;
  text-align: left;
  font-family: var(--font-body);
  font-size: var(--text-base);
  font-weight: 600;
  color: var(--color-text);
  line-height: 1.4;
}
.faq-question:focus-visible {
  outline: 2px solid var(--color-magenta);
  outline-offset: -2px;
  border-radius: 10px;
}
.faq-chevron {
  flex-shrink: 0;
  width: 18px;
  height: 18px;
  color: var(--color-magenta);
  transition: transform 0.25s ease;
}
.faq-item.open .faq-chevron {
  transform: rotate(180deg);
}
.faq-answer {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.3s ease, padding 0.25s ease;
  padding: 0 var(--space-6);
}
.faq-item.open .faq-answer {
  max-height: 400px;
  padding: 0 var(--space-6) var(--space-5);
}
.faq-answer p {
  font-size: var(--text-sm);
  color: var(--color-text-muted);
  line-height: 1.75;
  margin: 0;
}
@media (max-width: 600px) {
  .faq-question { padding: var(--space-4) var(--space-4); font-size: var(--text-sm); }
  .faq-answer { padding: 0 var(--space-4); }
  .faq-item.open .faq-answer { padding: 0 var(--space-4) var(--space-4); }
}
</style>

/* ═══════════════════════════════════════════════════
   HERO V2  (index.html only)
   ═══════════════════════════════════════════════════ */

.hero-v2 { position: relative; z-index: 2; padding-block: clamp(var(--space-8), 3.5vw, var(--space-14)); }

/* ═══ DARK HERO THEME (section-scoped, doesn't affect rest of page) ═══ */
.hero--dark {
  position: relative;
  background: #07050F;
  color: #F5F2FF;
  overflow: hidden;
  isolation: isolate;
}
.hero--dark::before {
  content: "";
  position: absolute; inset: 0;
  background:
    radial-gradient(ellipse 80% 55% at 25% 0%, rgba(217,70,168,0.25) 0%, transparent 55%),
    radial-gradient(ellipse 70% 60% at 85% 85%, rgba(0,180,190,0.22) 0%, transparent 55%),
    linear-gradient(180deg, #0D0A1A 0%, #07050F 65%, #050210 100%);
  z-index: 0;
  pointer-events: none;
}
.hero--dark > * { position: relative; z-index: 2; }
.hero--dark .hv2d-bg { position: absolute; inset: 0; z-index: 1; pointer-events: none; overflow: hidden; }

/* Animated blobs */
.hv2d-blob {
  position: absolute;
  border-radius: 50%;
  filter: blur(70px);
  opacity: 0.75;
  animation: hv2dDrift 60s ease-in-out infinite;
  will-change: transform;
}
.hv2d-blob--magenta {
  width: 520px; height: 520px;
  top: -18%; left: -8%;
  background: radial-gradient(circle, rgba(217,70,168,0.55) 0%, rgba(217,70,168,0) 65%);
  animation-delay: 0s;
}
.hv2d-blob--teal {
  width: 560px; height: 560px;
  bottom: -20%; right: -10%;
  background: radial-gradient(circle, rgba(0,180,190,0.45) 0%, rgba(0,180,190,0) 65%);
  animation-delay: 5s;
}
.hv2d-blob--violet {
  width: 420px; height: 420px;
  top: 30%; left: 42%;
  background: radial-gradient(circle, rgba(140,80,220,0.35) 0%, rgba(140,80,220,0) 65%);
  animation-delay: 9s;
}
@keyframes hv2dDrift {
  0%, 100% { transform: translate(0,0) scale(1); }
  33%      { transform: translate(40px,-30px) scale(1.08); }
  66%      { transform: translate(-30px,35px) scale(0.94); }
}

/* Fine grid overlay */
.hv2d-grid {
  position: absolute; inset: 0;
  background-image:
    linear-gradient(rgba(255,255,255,0.035) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255,255,255,0.035) 1px, transparent 1px);
  background-size: 56px 56px;
  mask-image: radial-gradient(ellipse at center, #000 0%, transparent 70%);
  -webkit-mask-image: radial-gradient(ellipse at center, #000 0%, transparent 70%);
}

/* Scanning horizontal beam */
.hv2d-scan {
  position: absolute;
  left: 0; right: 0;
  height: 2px;
  background: linear-gradient(90deg, transparent 0%, rgba(0,180,190,0.5) 45%, rgba(217,70,168,0.5) 55%, transparent 100%);
  filter: blur(1.5px);
  animation: hv2dScan 30s ease-in-out infinite;
  opacity: 0.7;
}
@keyframes hv2dScan {
  0%   { top: 10%; opacity: 0; }
  10%  { opacity: 0.9; }
  50%  { top: 90%; opacity: 0.9; }
  60%  { opacity: 0; }
  100% { top: 90%; opacity: 0; }
}

/* Floating particles (tiny dots) */
.hv2d-particle {
  position: absolute;
  width: 4px; height: 4px;
  border-radius: 50%;
  background: #D946A8;
  box-shadow: 0 0 14px 2px rgba(217,70,168,0.8);
  opacity: 0;
  animation: hv2dParticle 36s ease-in-out infinite;
}
.hv2d-particle--1 { left: 10%; top: 80%; animation-delay: 0s; }
.hv2d-particle--2 { left: 30%; top: 20%; background: #00B4BE; box-shadow: 0 0 14px 2px rgba(0,180,190,0.8); animation-delay: 2.4s; }
.hv2d-particle--3 { left: 55%; top: 70%; animation-delay: 4.8s; }
.hv2d-particle--4 { left: 75%; top: 25%; background: #00B4BE; box-shadow: 0 0 14px 2px rgba(0,180,190,0.8); animation-delay: 7.2s; }
.hv2d-particle--5 { left: 90%; top: 60%; animation-delay: 9.6s; }
@keyframes hv2dParticle {
  0%, 100% { opacity: 0; transform: translateY(0); }
  10%, 70% { opacity: 0.9; }
  50%      { transform: translateY(-30px); }
}

/* ─── Dark hero: typography overrides ─── */
.hero--dark .hero-v2-title { color: #F7F3FF; }
.hero--dark .hero-v2-subtitle { color: rgba(255,255,255,0.72); }
.hero--dark .hv2-strong {
  background: linear-gradient(90deg, rgba(0,180,190,0.28), rgba(217,70,168,0.22));
  color: #fff;
  border: 1px solid rgba(255,255,255,0.1);
}
.hero--dark .hero-v2-trust li { color: rgba(255,255,255,0.72); }
.hero--dark .hero-v2-trust li svg { color: #3FD4DC; }
.hero--dark .hero-disclaimer { color: rgba(255,255,255,0.42); }

/* Dark eyebrow badge */
.hero--dark .ai-live-badge {
  background: rgba(255,255,255,0.06);
  border-color: rgba(0,180,190,0.35);
  color: rgba(255,255,255,0.92);
}
.hero--dark .ai-live-dot { background: #2FE27F; box-shadow: 0 0 0 3px rgba(47,226,127,0.2); }

/* Dark KPI row */
.hero--dark .hv2-kpi-row {
  background: rgba(255,255,255,0.05);
  border-color: rgba(255,255,255,0.12);
  backdrop-filter: blur(14px);
}
.hero--dark .hv2-kpi { border-right-color: rgba(255,255,255,0.08); }
.hero--dark .hv2-kpi-num {
  color: #fff;
  background: linear-gradient(135deg, #fff 0%, #A8F0F5 100%);
  -webkit-background-clip: text;
          background-clip: text;
  -webkit-text-fill-color: transparent;
}
.hero--dark .hv2-kpi-label { color: rgba(255,255,255,0.55); }

/* Shimmer on dark: richer gradient with glow */
.hero--dark .hv2-shimmer {
  background: linear-gradient(
    100deg,
    #00B4BE 0%,
    #3FD4DC 40%,
    #E8FBFC 50%,
    #3FD4DC 60%,
    #00B4BE 100%
  );
  background-size: 220% 100%;
  background-position: 100% 50%;
  -webkit-background-clip: text;
          background-clip: text;
  -webkit-text-fill-color: transparent;
  filter: drop-shadow(0 0 20px rgba(0,180,190,0.45));
}

/* Outline CTA on dark */
.hero--dark .btn--outline {
  color: #F5F2FF;
  border-color: rgba(255,255,255,0.25);
  background: rgba(255,255,255,0.03);
}
.hero--dark .btn--outline:hover {
  background: rgba(255,255,255,0.08);
  border-color: rgba(255,255,255,0.45);
}

/* Primary CTA gains extra glow on dark */
.hero--dark .hv2-cta-glow {
  box-shadow: 0 0 36px -6px rgba(217,70,168,0.55);
}
.hero--dark .hv2-cta-ring { border-color: #F06CC7; }

/* ─── Orbital rings behind card ─── */
.hero--dark .hero-v2-visual {
  position: relative;
  perspective: 1400px;
}
.hv2d-orbit {
  position: absolute;
  border-radius: 50%;
  border: 1px dashed rgba(255,255,255,0.12);
  pointer-events: none;
  z-index: 1;
  left: 50%; top: 50%;
  transform: translate(-50%, -50%) rotateX(72deg);
  animation: hv2dOrbitSpin 40s linear infinite;
}
.hv2d-orbit::after {
  content: "";
  position: absolute;
  width: 8px; height: 8px; border-radius: 50%;
  background: #00B4BE;
  box-shadow: 0 0 14px 3px rgba(0,180,190,0.7);
  top: -4px; left: 50%;
  transform: translateX(-50%);
}
.hv2d-orbit--1 { width: 520px; height: 520px; border-color: rgba(0,180,190,0.22); animation-duration: 28s; }
.hv2d-orbit--2 { width: 720px; height: 720px; border-color: rgba(217,70,168,0.18); animation-duration: 44s; animation-direction: reverse; }
.hv2d-orbit--2::after { background: #D946A8; box-shadow: 0 0 14px 3px rgba(217,70,168,0.7); }
.hv2d-orbit--3 { width: 920px; height: 920px; border-color: rgba(255,255,255,0.08); animation-duration: 60s; }
.hv2d-orbit--3::after { background: #fff; box-shadow: 0 0 10px 2px rgba(255,255,255,0.6); }
@keyframes hv2dOrbitSpin {
  from { transform: translate(-50%, -50%) rotateX(72deg) rotateZ(0deg); }
  to   { transform: translate(-50%, -50%) rotateX(72deg) rotateZ(360deg); }
}

/* Central core glow */
.hv2d-core-glow {
  position: absolute;
  left: 50%; top: 50%;
  width: 480px; height: 480px;
  transform: translate(-50%, -50%);
  border-radius: 50%;
  background: radial-gradient(circle, rgba(217,70,168,0.35) 0%, rgba(0,180,190,0.2) 40%, transparent 70%);
  filter: blur(40px);
  z-index: 1;
  pointer-events: none;
  animation: hv2dCorePulse 18s ease-in-out infinite;
}
@keyframes hv2dCorePulse {
  0%, 100% { transform: translate(-50%, -50%) scale(1); opacity: 0.75; }
  50%      { transform: translate(-50%, -50%) scale(1.12); opacity: 1; }
}

/* ─── Portfolio card DARK + subtle tilt ─── */
.hero--dark .portfolio-card {
  background: rgba(18,14,32,0.72);
  border: 1px solid rgba(217,70,168,0.32);
  backdrop-filter: blur(22px);
  -webkit-backdrop-filter: blur(22px);
  box-shadow:
    0 1px 2px rgba(0,0,0,0.4),
    0 20px 40px -8px rgba(217,70,168,0.25),
    0 32px 80px -16px rgba(0,180,190,0.22),
    inset 0 1px 0 rgba(255,255,255,0.08);
  z-index: 2;
}
.hero--dark .portfolio-card--tilt {
  transform: perspective(1400px) rotateY(-6deg) rotateX(2deg);
  transform-origin: 60% 50%;
  animation: hv2dCardFloat 28s ease-in-out infinite;
}
@keyframes hv2dCardFloat {
  0%, 100% { transform: perspective(1400px) rotateY(-6deg) rotateX(2deg) translateY(0); }
  50%      { transform: perspective(1400px) rotateY(-6deg) rotateX(2deg) translateY(-8px); }
}

.hero--dark .portfolio-card-head { color: rgba(255,255,255,0.5); }
.hero--dark .portfolio-card-head-l { color: #fff; }
.hero--dark .portfolio-live-dot { background: #2FE27F; box-shadow: 0 0 0 0 rgba(47,226,127,0.6); }

.hero--dark .portfolio-value-label { color: rgba(255,255,255,0.5); }
.hero--dark .portfolio-value-num {
  color: #fff;
  background: linear-gradient(135deg, #fff 0%, #FFC7EA 100%);
  -webkit-background-clip: text;
          background-clip: text;
  -webkit-text-fill-color: transparent;
  filter: drop-shadow(0 0 24px rgba(217,70,168,0.35));
}
.hero--dark .portfolio-value-cents { color: rgba(255,255,255,0.4); -webkit-text-fill-color: rgba(255,255,255,0.4); }
.hero--dark .portfolio-value-delta { color: #2FE27F; }
.hero--dark .portfolio-value-delta svg { color: #2FE27F; }

.hero--dark .portfolio-chart g { stroke: rgba(255,255,255,0.08) !important; }

.hero--dark .portfolio-footer { border-top-color: rgba(255,255,255,0.08); }
.hero--dark .pf-stat-num { color: #fff; }
.hero--dark .pf-stat-label { color: rgba(255,255,255,0.5); }
.hero--dark .pf-divider { background: rgba(255,255,255,0.1); }

/* Dark float chips */
.hero--dark .float-chip {
  background: rgba(18,14,32,0.92);
  border-color: rgba(0,180,190,0.35);
  box-shadow: 0 12px 32px -8px rgba(0,0,0,0.6), 0 0 0 1px rgba(255,255,255,0.04);
  backdrop-filter: blur(16px);
}
.hero--dark .float-chip-title { color: #fff; }
.hero--dark .float-chip-sub { color: rgba(255,255,255,0.55); }

/* Nav on dark hero needs treatment — keep white nav visually readable */
/* (No change: nav is above .hero and has its own backdrop) */

/* Responsive tidies for orbits */
@media (max-width: 960px) {
  .hv2d-orbit--1 { width: 380px; height: 380px; }
  .hv2d-orbit--2 { width: 540px; height: 540px; }
  .hv2d-orbit--3 { display: none; }
  .hv2d-core-glow { width: 360px; height: 360px; }
  .hero--dark .portfolio-card--tilt { transform: none; animation: none; }
}

@media (prefers-reduced-motion: reduce) {
  .hv2d-blob, .hv2d-scan, .hv2d-particle, .hv2d-orbit, .hv2d-core-glow,
  .hero--dark .portfolio-card--tilt { animation: none !important; }
}


.hero-v2-grid {
  display: grid;
  grid-template-columns: minmax(0, 1.25fr) minmax(0, 0.95fr);
  gap: clamp(var(--space-6), 3.5vw, var(--space-12));
  align-items: center;
}
@media (max-width: 960px) {
  .hero-v2-grid { grid-template-columns: 1fr; gap: var(--space-12); }
}

/* ─── LEFT: COPY ─── */
.hero-v2-copy { text-align: left; max-width: 620px; }
@media (max-width: 960px) { .hero-v2-copy { text-align: center; margin-inline: auto; } }

.hero-v2-copy .ai-live-badge {
  margin-bottom: var(--space-6);
  gap: 8px;
  padding: 6px 14px;
  font-size: 11px;
  letter-spacing: 0.08em;
  border-width: 1.5px;
}
.hero-v2-copy .ai-live-badge .ai-live-dot { width: 7px; height: 7px; }

/* specificity boost to override .hero h1 base rule */
.hero h1.hero-v2-title,
.hero-v2 h1.hero-v2-title {
  font-family: var(--font-display);
  /* Smaller overall so 'Working Smarter' never slides under the portfolio card at any viewport */
  font-size: clamp(1.75rem, 0.4rem + 2.6vw, 2.75rem);
  font-weight: 600;
  line-height: 1.14;
  letter-spacing: -0.015em;
  color: var(--color-text);
  margin: 0 0 var(--space-4);
  padding-bottom: 0.05em;
  max-width: none;
  margin-inline: 0;
  text-align: left;
}
.hero--dark h1.hero-v2-title { color: #F7F3FF; }
.hero-v2-title .accent-teal {
  color: var(--color-teal);
  font-style: italic;
}

/* Mobile: center hero title to match subtitle/CTAs */
@media (max-width: 960px) {
  .hero h1.hero-v2-title,
  .hero-v2 h1.hero-v2-title {
    text-align: center;
    margin-inline: auto;
  }
}

/* Clean light-sweep shimmer on the teal accent line */
.hv2-shimmer {
  position: relative;
  white-space: nowrap;
  color: var(--color-teal);
  font-style: italic;
  line-height: inherit;
  padding-bottom: 0.08em;  /* reserve space for descenders (the 'g' in Working) */
  background: linear-gradient(
    100deg,
    var(--color-teal) 0%,
    var(--color-teal) 42%,
    #ffffff 50%,
    var(--color-teal) 58%,
    var(--color-teal) 100%
  );
  background-size: 220% 100%;
  background-position: 100% 50%;
  -webkit-background-clip: text;
          background-clip: text;
  -webkit-text-fill-color: transparent;
  animation: hv2Shimmer 13s ease-in-out 0.8s infinite;
}
@keyframes hv2Shimmer {
  0%   { background-position: 100% 50%; }
  55%  { background-position: 0% 50%; }
  100% { background-position: 0% 50%; }
}

/* KPI marquee row above headline */
.hv2-kpi-row {
  display: inline-flex;
  align-items: stretch;
  gap: 0;
  margin-bottom: var(--space-5);
  padding: 10px 4px 10px 14px;
  background: rgba(255, 255, 255, 0.6);
  border: 1px solid rgba(0, 180, 190, 0.18);
  border-radius: 14px;
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  box-shadow: 0 6px 20px -10px rgba(26, 26, 46, 0.18);
}
[data-theme="dark"] .hv2-kpi-row {
  background: rgba(20, 20, 30, 0.55);
  border-color: rgba(0, 194, 204, 0.22);
}
.hv2-kpi {
  display: flex;
  flex-direction: column;
  gap: 0;
  padding: 0 14px;
  border-right: 1px solid rgba(0, 0, 0, 0.08);
}
.hv2-kpi:last-child { border-right: none; padding-right: 16px; }
[data-theme="dark"] .hv2-kpi { border-right-color: rgba(255,255,255,0.08); }
.hv2-kpi-num {
  font-family: var(--font-display);
  font-size: 1.35rem;
  font-weight: 600;
  color: var(--color-text);
  line-height: 1.05;
  letter-spacing: -0.01em;
  font-variant-numeric: tabular-nums;
}
.hv2-kpi-label {
  font-size: 10px;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--color-text-muted);
  margin-top: 2px;
  font-weight: 500;
}

/* Subtitle inline strong pill */
.hv2-strong {
  display: inline-block;
  padding: 1px 8px;
  border-radius: 999px;
  background: linear-gradient(90deg, rgba(0,180,190,0.14), rgba(217,70,168,0.12));
  color: var(--color-text);
  font-weight: 700;
  letter-spacing: 0.01em;
  font-variant-numeric: tabular-nums;
}

.hero-v2-subtitle {
  font-size: var(--text-lg);
  font-weight: 400;
  color: var(--color-text-muted);
  line-height: 1.55;
  max-width: 46ch;
  margin: 0 0 var(--space-6);
}
@media (max-width: 960px) { .hero-v2-subtitle { margin-inline: auto; } }

.hero-v2-ctas {
  display: flex; flex-wrap: wrap; gap: var(--space-4);
  margin-bottom: var(--space-6);
}

/* Primary CTA glow-pulse ring */
.hv2-cta-glow { position: relative; isolation: isolate; overflow: visible; }
.hv2-cta-ring {
  position: absolute;
  inset: -4px;
  border-radius: inherit;
  border: 2px solid var(--color-magenta);
  opacity: 0;
  pointer-events: none;
  z-index: -1;
  animation: hv2CtaPulse 8s ease-out infinite;
}
@keyframes hv2CtaPulse {
  0%   { opacity: 0.55; transform: scale(1); }
  70%  { opacity: 0;    transform: scale(1.18); }
  100% { opacity: 0;    transform: scale(1.18); }
}
@media (max-width: 960px) { .hero-v2-ctas { justify-content: center; } }

.hero-v2-trust {
  display: flex; flex-wrap: wrap; gap: var(--space-3) var(--space-5);
  list-style: none; padding: 0; margin: 0 0 var(--space-4);
}
.hero-v2-trust li {
  display: inline-flex; align-items: center; gap: var(--space-2);
  font-size: var(--text-sm); color: var(--color-text-muted);
  font-weight: 500;
}
.hero-v2-trust li svg { color: var(--color-teal); flex-shrink: 0; }
@media (max-width: 960px) { .hero-v2-trust { justify-content: center; } }

/* ─── RIGHT: LIVE PORTFOLIO VISUAL ─── */
.hero-v2-visual {
  position: relative;
  min-height: 400px;
}



.portfolio-card {
  position: relative;
  background: rgba(255, 255, 255, 0.78);
  backdrop-filter: blur(16px);
  -webkit-backdrop-filter: blur(16px);
  border: 1px solid rgba(0, 180, 190, 0.22);
  border-radius: 24px;
  padding: clamp(var(--space-5), 2vw, var(--space-8));
  box-shadow:
    0 1px 2px rgba(26, 26, 46, 0.04),
    0 12px 32px -8px rgba(217, 70, 168, 0.10),
    0 28px 64px -16px rgba(0, 180, 190, 0.14);
  overflow: hidden;
}
[data-theme="dark"] .portfolio-card {
  background: rgba(20, 20, 30, 0.72);
  border-color: rgba(0, 194, 204, 0.28);
}

.portfolio-card-head {
  display: flex; justify-content: space-between; align-items: center;
  font-size: var(--text-xs); letter-spacing: 0.08em; text-transform: uppercase;
  color: var(--color-text-muted);
  margin-bottom: var(--space-4);
}
.portfolio-card-head-l { display: inline-flex; align-items: center; gap: var(--space-2); font-weight: 600; color: var(--color-text); }
.portfolio-live-dot {
  width: 8px; height: 8px; border-radius: 50%;
  background: #149960;
  box-shadow: 0 0 0 0 rgba(20, 153, 96, 0.6);
  animation: pcPulse 6s ease-in-out infinite;
}
@keyframes pcPulse {
  0%,100% { box-shadow: 0 0 0 0 rgba(20, 153, 96, 0.55); }
  50%     { box-shadow: 0 0 0 6px rgba(20, 153, 96, 0);    }
}

.portfolio-value { display: flex; flex-direction: column; gap: 2px; margin-bottom: var(--space-5); }
.portfolio-value-label { font-size: var(--text-sm); color: var(--color-text-muted); letter-spacing: 0.02em; }
.portfolio-value-num {
  font-family: var(--font-display);
  font-size: clamp(2rem, 0.5rem + 3vw, 3rem);
  font-weight: 600;
  color: var(--color-text);
  line-height: 1;
  letter-spacing: -0.02em;
}
.portfolio-value-cents { font-size: 0.55em; color: var(--color-text-muted); font-weight: 500; margin-left: 2px; }
.portfolio-value-delta {
  display: inline-flex; align-items: center; gap: 4px;
  margin-top: var(--space-2);
  font-size: var(--text-sm); font-weight: 600;
  color: #149960;
}
.portfolio-value-delta svg { color: #149960; }

.portfolio-chart {
  width: 100%;
  height: clamp(130px, 18vw, 180px);
  display: block;
  margin-bottom: var(--space-5);
}
.portfolio-chart-line {
  stroke-dasharray: 900;
  stroke-dashoffset: 900;
  animation: pcDraw 2.4s ease-out 0.3s forwards;
}
@keyframes pcDraw { to { stroke-dashoffset: 0; } }

.portfolio-footer {
  display: grid; grid-template-columns: 1fr auto 1fr auto 1fr;
  align-items: center; gap: var(--space-3);
  padding-top: var(--space-5);
  border-top: 1px solid rgba(0, 0, 0, 0.06);
}
[data-theme="dark"] .portfolio-footer { border-top-color: rgba(255,255,255,0.08); }
.pf-stat { display: flex; flex-direction: column; align-items: center; gap: 2px; }
.pf-stat-num {
  font-family: var(--font-display);
  font-size: clamp(1.1rem, 0.6rem + 0.9vw, 1.5rem);
  font-weight: 600; color: var(--color-text); line-height: 1;
}
.pf-stat-label { font-size: 11px; color: var(--color-text-muted); letter-spacing: 0.06em; text-transform: uppercase; }
.pf-divider { width: 1px; height: 24px; background: rgba(0,0,0,0.08); }
[data-theme="dark"] .pf-divider { background: rgba(255,255,255,0.10); }

/* Floating chips */
.float-chip {
  position: absolute;
  display: flex; align-items: center; gap: var(--space-3);
  padding: 10px 14px;
  background: #ffffff;
  border: 1px solid rgba(0, 180, 190, 0.18);
  border-radius: 14px;
  box-shadow: 0 10px 28px -6px rgba(26, 26, 46, 0.12);
  font-size: var(--text-xs);
  animation: chipFloat 18s ease-in-out infinite;
}
[data-theme="dark"] .float-chip { background: #151522; border-color: rgba(0, 194, 204, 0.28); }
.float-chip-title { font-weight: 600; color: var(--color-text); font-size: 13px; letter-spacing: -0.005em; }
.float-chip-sub { font-size: 11px; color: var(--color-text-muted); margin-top: 1px; }
.float-chip-dot {
  width: 10px; height: 10px; border-radius: 50%;
  background: var(--color-teal);
  box-shadow: 0 0 0 3px rgba(0, 180, 190, 0.18);
}
.float-chip--tl { top: -14px; left: -28px; animation-delay: 0s; z-index: 3; }
.float-chip--br { bottom: 6%; right: -18px; animation-delay: 2s; z-index: 5; }

/* Chip sits at MID-LOWER-LEFT of card and FLOATS ON TOP of the graphic. */
.float-chip--behind {
  z-index: 6 !important;
  top: auto;
  bottom: 22%;
  left: -36px;
  right: auto;
  transform: rotate(-3deg);
  opacity: 1;
}
.hero--dark .float-chip--behind {
  background: rgba(18,14,32,0.88);
  border-color: rgba(0,180,190,0.45);
  box-shadow: 0 8px 24px -4px rgba(0,180,190,0.25), 0 0 0 1px rgba(255,255,255,0.04);
}
/* Portfolio card must sit above the 'behind' chip */
.hero--dark .portfolio-card { z-index: 4; }

/* ─── Daily interest ticker ─── */
.interest-ticker {
  position: absolute;
  right: -8px;
  top: -18px;
  z-index: 5;
  padding: 10px 14px 10px 16px;
  border-radius: 14px;
  background: rgba(18,14,32,0.92);
  border: 1px solid rgba(47,226,127,0.45);
  backdrop-filter: blur(16px);
  -webkit-backdrop-filter: blur(16px);
  box-shadow:
    0 14px 36px -10px rgba(47,226,127,0.35),
    0 0 0 1px rgba(255,255,255,0.04),
    inset 0 1px 0 rgba(255,255,255,0.06);
  min-width: 176px;
  transform: rotate(2.5deg);
  animation: interestTickerFloat 22s ease-in-out infinite;
}
.interest-ticker-label {
  display: inline-flex; align-items: center; gap: 8px;
  font-size: 10.5px; letter-spacing: 0.09em; text-transform: uppercase;
  color: rgba(255,255,255,0.62); font-weight: 600;
}
.interest-ticker-dot {
  width: 7px; height: 7px; border-radius: 50%;
  background: #2FE27F;
  box-shadow: 0 0 0 0 rgba(47,226,127,0.7);
  animation: tickerPulse 5s ease-in-out infinite;
}
@keyframes tickerPulse {
  0%, 100% { box-shadow: 0 0 0 0 rgba(47,226,127,0.7); }
  50%      { box-shadow: 0 0 0 8px rgba(47,226,127,0); }
}
.interest-ticker-value {
  margin-top: 3px;
  font-family: var(--font-display, Cormorant Garamond), serif;
  font-style: italic;
  font-size: 26px;
  font-weight: 600;
  line-height: 1.05;
  color: #fff;
  background: linear-gradient(135deg, #2FE27F 0%, #A8F0F5 100%);
  -webkit-background-clip: text; background-clip: text;
  -webkit-text-fill-color: transparent;
  filter: drop-shadow(0 0 16px rgba(47,226,127,0.35));
  letter-spacing: -0.01em;
}
.interest-ticker-sub {
  margin-top: 3px;
  font-size: 10.5px;
  color: rgba(255,255,255,0.45);
  letter-spacing: 0.02em;
}
@keyframes interestTickerFloat {
  0%, 100% { transform: rotate(2.5deg) translateY(0); }
  50%      { transform: rotate(2.5deg) translateY(-5px); }
}
@media (max-width: 960px) {
  .interest-ticker { right: 4px; top: 8%; transform: none; animation: none; }
  .float-chip--behind { transform: none; bottom: auto; top: 30%; left: -8px; }
}

@keyframes chipFloat {
  0%, 100% { transform: translateY(0); }
  50%      { transform: translateY(-6px); }
}

@media (max-width: 960px) {
  .hero-v2-visual { min-height: 0; max-width: 520px; margin-inline: auto; }
  .float-chip--tl { left: 4px; }
  .float-chip--br { right: 4px; }
}

/* Mobile only: hide hero portfolio visual entirely */
@media (max-width: 760px) {
  .hero-v2-visual { display: none !important; }
}
@media (max-width: 480px) {
  .float-chip { padding: 8px 10px; font-size: 11px; }
  .float-chip-title { font-size: 12px; }
  .float-chip-sub { font-size: 10px; }
}

/* ─── AURORA BACKGROUND ─── */
.hero-v2-aurora {
  position: absolute;
  inset: 0;
  pointer-events: none;
  overflow: hidden;
  z-index: 0;
}
.aurora-blob {
  position: absolute;
  border-radius: 50%;
  filter: blur(80px);
  opacity: 0.55;
  animation: auroraDrift 60s ease-in-out infinite;
}
.aurora-blob--teal {
  width: 560px; height: 560px;
  top: -20%; right: -10%;
  background: radial-gradient(circle, rgba(0, 180, 190, 0.35) 0%, rgba(0, 180, 190, 0) 65%);
  animation-delay: 0s;
}
.aurora-blob--magenta {
  width: 520px; height: 520px;
  bottom: -25%; left: -8%;
  background: radial-gradient(circle, rgba(217, 70, 168, 0.28) 0%, rgba(217, 70, 168, 0) 65%);
  animation-delay: 4s;
}
.aurora-blob--peach {
  width: 360px; height: 360px;
  top: 30%; left: 38%;
  background: radial-gradient(circle, rgba(255, 180, 180, 0.18) 0%, rgba(255, 180, 180, 0) 65%);
  animation-delay: 8s;
}
@keyframes auroraDrift {
  0%, 100% { transform: translate(0, 0) scale(1); }
  33%      { transform: translate(30px, -20px) scale(1.06); }
  66%      { transform: translate(-20px, 25px) scale(0.96); }
}

.aurora-grid {
  position: absolute; inset: 0;
  background-image:
    linear-gradient(rgba(26, 26, 46, 0.035) 1px, transparent 1px),
    linear-gradient(90deg, rgba(26, 26, 46, 0.035) 1px, transparent 1px);
  background-size: 48px 48px;
  mask-image: radial-gradient(ellipse at center, #000 0%, transparent 75%);
  -webkit-mask-image: radial-gradient(ellipse at center, #000 0%, transparent 75%);
}
[data-theme="dark"] .aurora-grid {
  background-image:
    linear-gradient(rgba(255,255,255,0.04) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255,255,255,0.04) 1px, transparent 1px);
}

/* Respect reduced motion */
@media (prefers-reduced-motion: reduce) {
  .aurora-blob, .float-chip, .portfolio-chart-line, .portfolio-live-dot,
  .hv2-shimmer, .hv2-cta-ring {
    animation: none !important;
  }
  .hv2-shimmer {
    background: none !important;
    -webkit-text-fill-color: var(--color-teal) !important;
    color: var(--color-teal) !important;
  }
  .portfolio-chart-line { stroke-dashoffset: 0; }
}
