/* ============================================================
   ALT360 DESIGN SYSTEM — v2
   Premium Institutional Private Markets
   ============================================================ */

@import url('https://fonts.googleapis.com/css2?family=Inter:ital,opsz,wght@0,14..32,300;0,14..32,400;0,14..32,500;0,14..32,600;0,14..32,700;0,14..32,800;1,14..32,400&family=DM+Serif+Display:ital@0;1&display=swap');

/* ── TOKENS ────────────────────────────────────────────────── */
:root {
  /* Background scale */
  --bg-0:  #040506;
  --bg-1:  #060C14;
  --bg-2:  #071018;
  --bg-3:  #0A1420;
  --bg-4:  #0D1A2A;
  --bg-5:  #111E30;
  --bg-card: #0E1927;
  --bg-card-hover: #121F31;

  /* Light surfaces */
  --surface-0: #F7F8FA;
  --surface-1: #F0F2F7;
  --surface-2: #E8ECF4;
  --white:     #FFFFFF;

  /* Text */
  --text-0: #EEF2FF;
  --text-1: #C4D0E8;
  --text-2: #8DA0C0;
  --text-3: #5A6E8C;
  --text-dark: #0C1830;
  --text-dark-1: #2D3A52;
  --text-dark-2: #4A566B;

  /* Accents */
  --accent-blue:   #38BDF8;
  --accent-blue-d: #0EA5E9;
  --accent-blue-dd:#0284C7;
  --accent-cyan:   #22D3EE;
  --accent-violet: #8B5CF6;
  --accent-violet-d:#7C3AED;
  --accent-green:  #10B981;
  --accent-amber:  #F59E0B;

  /* CTA */
  --cta:       #0EA5E9;
  --cta-hover: #0284C7;
  --cta-text:  #FFFFFF;

  /* Borders */
  --border-0: rgba(56, 189, 248, 0.08);
  --border-1: rgba(56, 189, 248, 0.14);
  --border-2: rgba(56, 189, 248, 0.22);
  --border-dark: #DDE2EC;

  /* Shadows */
  --shadow-sm:   0 1px 4px rgba(0,0,0,0.35), 0 0 0 1px rgba(56,189,248,0.05);
  --shadow-md:   0 4px 20px rgba(0,0,0,0.45), 0 0 0 1px rgba(56,189,248,0.08);
  --shadow-lg:   0 12px 48px rgba(0,0,0,0.55), 0 0 0 1px rgba(56,189,248,0.1);
  --shadow-glow: 0 0 60px rgba(14,165,233,0.12);

  /* Typography */
  --font-sans:  'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
  --font-serif: 'DM Serif Display', Georgia, 'Times New Roman', serif;

  /* Spacing */
  --w-content: 1200px;
  --w-wide:    1340px;
  --nav-h:     68px;
  --section-y: 104px;
  --section-y-sm: 68px;
  --card-pad:  32px;
  --gap:       24px;

  /* Motion */
  --ease-out:  cubic-bezier(0.16, 1, 0.3, 1);
  --ease-in:   cubic-bezier(0.4, 0, 1, 1);
  --t-fast:    150ms ease;
  --t-base:    240ms ease;
  --t-slow:    400ms var(--ease-out);
}

/* ── RESET ──────────────────────────────────────────────────── */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; -webkit-font-smoothing: antialiased; -moz-osx-font-smoothing: grayscale; text-rendering: optimizeLegibility; }
body { font-family: var(--font-sans); background: var(--bg-0); color: var(--text-0); line-height: 1.6; overflow-x: hidden; }
a { color: inherit; text-decoration: none; }
img { max-width: 100%; height: auto; display: block; }
button { cursor: pointer; font-family: inherit; border: none; background: none; }
ul, ol { list-style: none; }
svg { display: block; }

/* ── LAYOUT ────────────────────────────────────────────────── */
.container  { max-width: var(--w-content); margin: 0 auto; padding: 0 32px; }
.container-wide { max-width: var(--w-wide); margin: 0 auto; padding: 0 32px; }
@media (max-width: 600px) {
  .container, .container-wide { padding: 0 20px; }
  .hero-page { padding: 48px 0 52px; }
}

/* Push all non-home page content below the fixed nav.
   Hero sections on these pages must NOT add their own padding-top: var(--nav-h).
   Homepage is excluded; it manages its own viewport offset via .hm-body. */
body:not(.home-body) > .page-wrapper {
  padding-top: var(--nav-h);
}

/* ── FOOTER (site-wide, interior + mobile home) ───────────────── */
.footer {
  margin-top: auto;
  background: #020509;
  border-top: 1px solid rgba(56, 189, 248, 0.12);
}
.footer-top { padding: 0; }
.footer-grid {
  display: grid;
  grid-template-columns: minmax(0, 1.2fr) repeat(3, minmax(0, 1fr));
  gap: 26px 32px;
  padding: 26px 0 22px;
}
.footer-col { min-width: 0; }
.footer-col-brand { min-width: 0; }
.footer-brandmark {
  display: inline-block;
  font-size: 17px;
  font-weight: 800;
  letter-spacing: -0.55px;
  color: #F0F4FC;
  text-decoration: none;
  margin-bottom: 9px;
  line-height: 1.2;
}
.footer-brandmark:hover { color: #22D3EE; }
.footer-brand-desc {
  margin: 0;
  font-size: 12px;
  line-height: 1.52;
  color: #6B7F9E;
  max-width: 280px;
}
.footer-column-label {
  margin: 0 0 9px;
  font-size: 10px;
  font-weight: 700;
  letter-spacing: 1.65px;
  text-transform: uppercase;
  color: #4E5F78;
}
.footer-links {
  list-style: none;
  margin: 0;
  padding: 0;
}
.footer-links li { margin: 0 0 5px; }
.footer-links li:last-child { margin-bottom: 0; }
.footer-links a {
  font-size: 12.5px;
  font-weight: 500;
  color: #8DA0C0;
  text-decoration: none;
  transition: color var(--t-fast);
  line-height: 1.38;
}
.footer-links a:hover { color: #22D3EE; }
.footer-bottom {
  border-top: 1px solid rgba(56, 189, 248, 0.08);
  padding: 12px 0 14px;
  background: rgba(0, 0, 0, 0.22);
}
.footer-bottom-inner {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: space-between;
  gap: 6px 18px;
}
.footer-copy,
.footer-tagline {
  margin: 0;
  font-size: 11px;
  line-height: 1.42;
  color: #52647C;
}
.footer-tagline {
  text-align: right;
  max-width: 400px;
}
@media (max-width: 900px) {
  .footer-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 22px 20px;
    padding: 22px 0 18px;
  }
  .footer-col-brand { grid-column: 1 / -1; }
  .footer-bottom-inner {
    flex-direction: column;
    align-items: flex-start;
  }
  .footer-tagline { text-align: left; max-width: none; }
}
@media (max-width: 560px) {
  .footer-grid {
    grid-template-columns: 1fr;
    gap: 20px;
  }
}
.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; }

/* ── TYPOGRAPHY ─────────────────────────────────────────────── */
h1, .h1 {
  font-family: var(--font-sans);
  font-size: clamp(38px, 5.5vw, 64px);
  font-weight: 800;
  line-height: 1.04;
  letter-spacing: -2.5px;
  color: var(--text-0);
}
h2, .h2 {
  font-size: clamp(28px, 3.5vw, 44px);
  font-weight: 700;
  line-height: 1.14;
  letter-spacing: -1.5px;
  color: var(--text-0);
}
h3, .h3 {
  font-size: clamp(19px, 2vw, 23px);
  font-weight: 600;
  line-height: 1.28;
  letter-spacing: -0.5px;
  color: var(--text-0);
}
h4, .h4 {
  font-size: 16px;
  font-weight: 600;
  letter-spacing: -0.2px;
  color: var(--text-0);
  line-height: 1.4;
}
h5, .h5 {
  font-size: 13px;
  font-weight: 700;
  letter-spacing: 0.8px;
  text-transform: uppercase;
  color: var(--text-2);
}
.display {
  font-size: clamp(52px, 7vw, 88px);
  font-weight: 800;
  line-height: 0.96;
  letter-spacing: -3.5px;
}
p { line-height: 1.7; }
.lead { font-size: 18px; line-height: 1.7; color: var(--text-1); }
.body-lg { font-size: 17px; line-height: 1.72; color: var(--text-1); }
.body { font-size: 15px; line-height: 1.72; color: var(--text-1); }
.body-sm { font-size: 13.5px; line-height: 1.65; color: var(--text-2); }
.caption { font-size: 12px; line-height: 1.5; color: var(--text-3); }

/* Light page text overrides */
.page-light h1, .page-light h2, .page-light h3, .page-light h4 { color: var(--text-dark); }
.page-light .lead, .page-light .body-lg, .page-light .body { color: var(--text-dark-1); }
.page-light .body-sm, .page-light .caption { color: var(--text-dark-2); }

.eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 2px;
  text-transform: uppercase;
  color: var(--accent-cyan);
}
.eyebrow::before {
  content: '';
  display: block;
  width: 24px;
  height: 1.5px;
  background: currentColor;
  flex-shrink: 0;
}
.eyebrow-center { justify-content: center; }
.eyebrow-center::before { display: none; }
.eyebrow-blue { color: var(--accent-blue); }
.eyebrow-violet { color: var(--accent-violet); }

.text-gradient {
  background: linear-gradient(125deg, var(--accent-blue) 0%, var(--accent-cyan) 60%, #E0F7FF 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}
.text-gradient-violet {
  background: linear-gradient(125deg, var(--accent-blue) 0%, var(--accent-violet) 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}
.text-blue { color: var(--accent-blue); }
.text-cyan { color: var(--accent-cyan); }
.text-violet { color: var(--accent-violet); }

/* ── BUTTONS ────────────────────────────────────────────────── */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-family: var(--font-sans);
  font-size: 14px;
  font-weight: 600;
  line-height: 1;
  padding: 12px 24px;
  border-radius: 8px;
  letter-spacing: -0.1px;
  white-space: nowrap;
  transition: all var(--t-base);
  position: relative;
  cursor: pointer;
}
.btn:focus-visible { outline: 2px solid var(--accent-blue); outline-offset: 3px; }
.btn svg { width: 16px; height: 16px; flex-shrink: 0; }

.btn-primary {
  background: var(--cta);
  color: var(--cta-text);
  box-shadow: 0 1px 3px rgba(14,165,233,0.25), 0 0 0 1px rgba(14,165,233,0.3) inset;
}
.btn-primary:hover {
  background: var(--cta-hover);
  box-shadow: 0 4px 20px rgba(14,165,233,0.35);
  transform: translateY(-1px);
}
.btn-ghost {
  background: rgba(255,255,255,0.07);
  color: var(--text-0);
  border: 1px solid rgba(255,255,255,0.1);
}
.btn-ghost:hover {
  background: rgba(255,255,255,0.12);
  border-color: rgba(255,255,255,0.18);
  transform: translateY(-1px);
}
.btn-outline-blue {
  background: transparent;
  color: var(--accent-blue);
  border: 1.5px solid var(--accent-blue);
}
.btn-outline-blue:hover {
  background: var(--accent-blue);
  color: #fff;
  transform: translateY(-1px);
}
.btn-white {
  background: #fff;
  color: var(--text-dark);
  box-shadow: 0 1px 4px rgba(0,0,0,0.12);
}
.btn-white:hover {
  box-shadow: 0 4px 20px rgba(0,0,0,0.15);
  transform: translateY(-1px);
}
.btn-dark {
  background: var(--bg-5);
  color: var(--text-0);
  border: 1px solid var(--border-1);
}
.btn-dark:hover { background: var(--bg-card-hover); border-color: var(--border-2); }

.btn-sm { padding: 9px 18px; font-size: 13px; }
.btn-lg { padding: 15px 32px; font-size: 15px; }
.btn-xl { padding: 18px 40px; font-size: 16px; font-weight: 700; letter-spacing: -0.3px; }
.btn:disabled { opacity: 0.45; cursor: not-allowed; transform: none !important; }

/* ── SKIP LINK ──────────────────────────────────────────────── */
.skip-link {
  position: absolute;
  top: -100%;
  left: 0;
  z-index: 10000;
  padding: 10px 20px;
  background: var(--color-primary, #0B1D35);
  color: #fff;
  font-size: 14px;
  font-weight: 600;
  text-decoration: none;
  border-radius: 0 0 6px 0;
  transition: top 0.15s;
}
.skip-link:focus {
  top: 0;
  outline: 2px solid #fff;
  outline-offset: 2px;
}

/* ── NAVIGATION ─────────────────────────────────────────────── */
.nav {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 1000;
  height: var(--nav-h);
  background: rgba(4, 5, 6, 0.88);
  backdrop-filter: blur(24px) saturate(180%);
  -webkit-backdrop-filter: blur(24px) saturate(180%);
  border-bottom: 1px solid var(--border-0);
  transition: background var(--t-base), border-color var(--t-base);
}
.nav.scrolled {
  background: rgba(4, 5, 6, 0.97);
  border-bottom-color: var(--border-1);
}
.nav-inner {
  display: flex;
  align-items: center;
  height: 100%;
  gap: 0;
}
/* Logo */
.nav-logo {
  display: flex;
  align-items: center;
  gap: 11px;
  flex-shrink: 0;
  margin-right: 44px;
}
.nav-logo-mark {
  width: 36px; height: 36px;
  background: linear-gradient(140deg, var(--accent-blue) 0%, var(--accent-cyan) 100%);
  border-radius: 9px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 800;
  font-size: 14px;
  color: #fff;
  letter-spacing: -1px;
  flex-shrink: 0;
  box-shadow: 0 2px 12px rgba(56,189,248,0.25);
}
.nav-logo-text {
  font-size: 18px;
  font-weight: 800;
  color: var(--text-0);
  letter-spacing: -0.8px;
}
/* Nav items */
.nav-links {
  display: flex;
  align-items: center;
  gap: 2px;
  flex: 1;
}
.nav-item { position: relative; }
.nav-link {
  display: flex;
  align-items: center;
  gap: 4px;
  padding: 8px 13px;
  font-size: 14px;
  font-weight: 500;
  color: var(--text-1);
  border-radius: 7px;
  transition: color var(--t-fast), background var(--t-fast);
  white-space: nowrap;
  cursor: pointer;
}
.nav-link svg { width: 13px; height: 13px; opacity: 0.6; transition: transform var(--t-fast), opacity var(--t-fast); }
.nav-link:hover { color: var(--text-0); background: rgba(255,255,255,0.05); }
.nav-link:hover svg, .nav-item:hover .nav-link svg { transform: rotate(180deg); opacity: 1; }
.nav-link.active { color: var(--text-0); }

/* Invisible hover bridge: extends .nav-item's interactive area 12px below the
   link so the cursor stays within :hover as it crosses the gap to the dropdown. */
.nav-item::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  height: 12px;
  transform: translateY(100%);
}

/* Dropdown */
.nav-dropdown {
  position: absolute;
  top: calc(100% + 10px);
  left: 50%;
  transform: translateX(-50%) translateY(-6px);
  min-width: 248px;
  background: var(--bg-3);
  border: 1px solid var(--border-1);
  border-radius: 14px;
  padding: 6px;
  opacity: 0;
  visibility: hidden;
  pointer-events: none;
  transition: opacity var(--t-base), transform var(--t-base), visibility var(--t-base);
  box-shadow: var(--shadow-lg), 0 0 0 1px var(--border-0);
  z-index: 10;
}
.nav-item:hover .nav-dropdown,
.nav-item:focus-within .nav-dropdown {
  opacity: 1;
  visibility: visible;
  pointer-events: all;
  transform: translateX(-50%) translateY(0);
}
.nav-dropdown a {
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 10px 12px;
  font-size: 13.5px;
  font-weight: 500;
  color: var(--text-1);
  border-radius: 9px;
  transition: color var(--t-fast), background var(--t-fast);
}
.nav-dropdown a:hover { color: var(--text-0); background: rgba(56,189,248,0.08); }
.dd-dot {
  width: 5px; height: 5px;
  border-radius: 50%;
  background: var(--accent-cyan);
  flex-shrink: 0;
  opacity: 0.6;
}
/* Nav right */
.nav-right {
  display: flex;
  align-items: center;
  gap: 10px;
  margin-left: auto;
  padding-left: 24px;
}
/* Hamburger */
.nav-toggle {
  display: none;
  flex-direction: column;
  justify-content: center;
  gap: 5px;
  width: 36px; height: 36px;
  padding: 6px;
  border-radius: 7px;
  transition: background var(--t-fast);
}
.nav-toggle:hover { background: rgba(255,255,255,0.07); }
.nav-toggle span {
  display: block;
  width: 22px; height: 2px;
  background: var(--text-0);
  border-radius: 2px;
  transition: transform var(--t-base), opacity var(--t-base);
}

/* Mobile Menu */
.mobile-menu {
  position: fixed;
  top: var(--nav-h); left: 0; right: 0; bottom: 0;
  background: var(--bg-1);
  z-index: 999;
  overflow-y: auto;
  padding: 24px 28px 48px;
  transform: translateX(100%);
  transition: transform 320ms var(--ease-out);
  border-top: 1px solid var(--border-0);
}
.mobile-menu.open { transform: translateX(0); }
.mobile-menu-section { margin-bottom: 32px; }
.mobile-menu-section h5 {
  font-size: 10px;
  font-weight: 700;
  letter-spacing: 1.8px;
  text-transform: uppercase;
  color: var(--text-3);
  margin-bottom: 10px;
  padding-bottom: 8px;
  border-bottom: 1px solid var(--border-0);
}
.mobile-menu-section a {
  display: block;
  padding: 11px 0;
  font-size: 15px;
  font-weight: 500;
  color: var(--text-1);
  border-bottom: 1px solid rgba(255,255,255,0.04);
  transition: color var(--t-fast), padding-left var(--t-fast);
}
.mobile-menu-section a:hover { color: var(--text-0); padding-left: 6px; }

/* ── NAV MOBILE BREAKPOINT ───────────────────────────────────── */
/* At ≤860px: hide desktop links, show hamburger, hide Contact button */
@media (max-width: 860px) {
  .nav-links      { display: none; }
  .nav-toggle     { display: flex; }
  .nav-logo       { margin-right: 0; }
  .nav-right .btn-nav-contact { display: none; }
}

/* ── HERO SECTIONS ───────────────────────────────────────────── */
/* Shared dark hero foundation */
.hero-dark {
  background: var(--bg-0);
  position: relative;
  overflow: hidden;
}
/* Ambient glow orbs */
.hero-dark::before {
  content: '';
  position: absolute;
  top: -15%; right: -10%;
  width: 55vw; height: 55vw;
  max-width: 700px; max-height: 700px;
  background: radial-gradient(circle at 60% 40%, rgba(14,165,233,0.07) 0%, transparent 65%);
  pointer-events: none;
}
.hero-dark::after {
  content: '';
  position: absolute;
  bottom: -10%; left: -8%;
  width: 40vw; height: 40vw;
  max-width: 500px; max-height: 500px;
  background: radial-gradient(circle, rgba(139,92,246,0.05) 0%, transparent 70%);
  pointer-events: none;
}

/* HOMEPAGE hero — single viewport */
.hero-home {
  min-height: 100svh;
  display: flex;
  flex-direction: column;
  padding-top: 0;
}
.hero-home-body {
  flex: 1;
  display: flex;
  align-items: center;
}
.hero-home-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 64px;
  align-items: center;
  width: 100%;
  padding: 56px 0 40px;
}
.hero-home-left { max-width: 580px; }
.hero-home-left .eyebrow { margin-bottom: 20px; }
.hero-home-left h1 { margin-bottom: 22px; }
.hero-home-left .lead { margin-bottom: 36px; max-width: 500px; }
.hero-ctas { display: flex; gap: 12px; flex-wrap: wrap; align-items: center; }

/* Sub-page hero */
.hero-page {
  padding: 80px 0 80px;
  background: var(--bg-0);
  position: relative;
  overflow: hidden;
}
.hero-page::before {
  content: '';
  position: absolute;
  top: -10%; right: -5%;
  width: 50vw; height: 50vw;
  background: radial-gradient(circle at 70% 30%, rgba(14,165,233,0.06) 0%, transparent 65%);
  pointer-events: none;
}
.hero-page .eyebrow { margin-bottom: 18px; }
.hero-page h1 { margin-bottom: 18px; }
.hero-page .lead { max-width: 600px; }
.hero-page-inner { position: relative; z-index: 1; }

/* Breadcrumbs */
.breadcrumbs {
  display: flex;
  align-items: center;
  gap: 7px;
  font-size: 12.5px;
  color: var(--text-3);
  margin-bottom: 32px;
}
.breadcrumbs a { transition: color var(--t-fast); }
.breadcrumbs a:hover { color: var(--text-1); }
.breadcrumbs span { color: var(--text-2); font-weight: 500; }
.bc-sep { color: var(--text-3); }

/* ── HOMEPAGE VISUAL ─────────────────────────────────────────── */
.hero-visual {
  display: flex;
  align-items: center;
  justify-content: center;
}
.hero-visual-wrap {
  position: relative;
  width: 460px;
  height: 400px;
}
/* Dot grid */
.viz-dots {
  position: absolute;
  inset: 0;
  background-image: radial-gradient(circle, rgba(56,189,248,0.12) 1px, transparent 1px);
  background-size: 28px 28px;
  border-radius: 20px;
  mask-image: radial-gradient(ellipse at center, rgba(0,0,0,0.9) 40%, transparent 80%);
}
/* SVG lines canvas */
.viz-canvas {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
}
/* Center card */
.viz-center {
  position: absolute;
  top: 50%; left: 50%;
  transform: translate(-50%, -50%);
  width: 210px;
  background: var(--bg-card);
  border: 1px solid var(--border-2);
  border-radius: 16px;
  padding: 22px 24px;
  text-align: center;
  box-shadow: var(--shadow-md);
  z-index: 10;
}
.viz-center-label {
  font-size: 10px;
  font-weight: 700;
  letter-spacing: 1.5px;
  text-transform: uppercase;
  color: var(--accent-cyan);
  margin-bottom: 8px;
}
.viz-center-title {
  font-size: 15px;
  font-weight: 700;
  color: var(--text-0);
  letter-spacing: -0.4px;
  margin-bottom: 14px;
}
.viz-pillars {
  display: flex;
  flex-direction: column;
  gap: 5px;
}
.viz-pillar {
  font-size: 11px;
  font-weight: 600;
  padding: 5px 10px;
  border-radius: 20px;
  background: rgba(14,165,233,0.12);
  color: var(--accent-blue);
  letter-spacing: 0.2px;
  border: 1px solid rgba(14,165,233,0.2);
}
/* Corner nodes */
.viz-node {
  position: absolute;
  width: 84px;
  padding: 14px 10px;
  text-align: center;
  background: var(--bg-4);
  border: 1px solid var(--border-1);
  border-radius: 12px;
  font-size: 10.5px;
  font-weight: 600;
  color: var(--text-2);
  letter-spacing: 0.3px;
  box-shadow: var(--shadow-sm);
}
.viz-node-icon {
  font-size: 18px;
  margin-bottom: 6px;
  line-height: 1;
}
.viz-n1 { top: 16px; left: 24px; }
.viz-n2 { top: 16px; right: 24px; }
.viz-n3 { bottom: 16px; left: 24px; }
.viz-n4 { bottom: 16px; right: 24px; }

/* ═══════════════════════════════════════════════════════════════
   HOMEPAGE — hm-* namespace
   ═══════════════════════════════════════════════════════════════ */

/* Nav extras: wordmark + contact button */
.nav-wordmark {
  font-size: 20px;
  font-weight: 800;
  color: var(--text-0);
  letter-spacing: -0.9px;
}
.btn-nav-contact {
  display: inline-flex;
  align-items: center;
  padding: 9px 22px;
  font-size: 13.5px;
  font-weight: 600;
  color: #60A5FA;
  border: 1.5px solid rgba(59,130,246,0.55);
  border-radius: 8px;
  letter-spacing: -0.1px;
  white-space: nowrap;
  transition: color var(--t-fast), background var(--t-fast), border-color var(--t-fast), box-shadow var(--t-fast);
}
.btn-nav-contact:hover {
  color: #fff;
  background: #2563EB;
  border-color: #2563EB;
  box-shadow: 0 0 18px rgba(37,99,235,0.35);
}

/* Homepage-scoped nav overrides */
body.home-body .nav-wordmark { color: #E9EEF2; }
body.home-body .btn-nav-contact {
  color: #B8C4CC;
  border-color: rgba(52,163,223,0.42);
  background: rgba(22,78,117,0.22);
}
body.home-body .btn-nav-contact:hover {
  color: #E9EEF2;
  background: #2070A4;
  border-color: rgba(52,163,223,0.65);
  box-shadow: 0 2px 14px rgba(22,78,117,0.45);
}

/* ── GEO ANSWER BLOCK — visible Q&A card for AI/search discoverability ── */
.geo-answer {
  display: flex; flex-direction: column; gap: 7px;
  margin: 20px 0;
  padding: 15px 18px;
  background: rgba(22, 78, 117, 0.22);
  border: 1px solid rgba(52, 163, 223, 0.26);
  border-left: 3px solid rgba(52, 163, 223, 0.7);
  border-radius: 0 9px 9px 0;
}
.geo-answer-q {
  font-size: 0.72rem; font-weight: 700; letter-spacing: 1.2px;
  text-transform: uppercase; color: #34A3DF; margin: 0; line-height: 1.3;
}
.geo-answer-a {
  font-size: 0.9rem; line-height: 1.64; color: #E9EEF2; margin: 0;
}

/* ── HOMEPAGE SHELL ─────────────────────────────────────────────── */
.home-body { overflow-x: hidden; }
.hm-main { display: flex; flex-direction: column; }

/* ═══════════════════════════════════════════════════════════════
   HERO — fills first viewport, content below on scroll
   ═══════════════════════════════════════════════════════════════ */
/* ═══════════════════════════════════════════════════════════════
   HOMEPAGE HERO — Option 1: image-first, text/action band below
   ═══════════════════════════════════════════════════════════════ */
.hm-hero {
  position: relative;
  background:
    linear-gradient(122deg, transparent 0%, rgba(52,163,223,0.03) 45%, transparent 55%),
    radial-gradient(ellipse 90% 60% at 50% 22%, rgba(52,163,223,0.08) 0%, transparent 52%),
    radial-gradient(ellipse 72% 48% at 92% 82%, rgba(47,168,138,0.045) 0%, transparent 46%),
    linear-gradient(168deg, rgba(8,26,40,0.97) 0%, rgba(10,32,48,0.98) 38%, rgba(7,22,36,1) 72%, #061520 100%),
    linear-gradient(135deg, #0d2840 0%, #0a2234 40%, #0a1f30 100%);
  display: flex;
  flex-direction: column;
  overflow: hidden;
}

/* ── BACKGROUND LAYERS ──────────────────────────────────────────── */
.hm-bg-orb-tl {
  position: absolute; top: -8%; left: 50%; transform: translateX(-50%);
  width: 85vw; height: 55vw; max-width: 1100px; max-height: 600px;
  background: radial-gradient(ellipse at 50% 30%, rgba(52,163,223,0.07) 0%, transparent 55%);
  pointer-events: none; z-index: 0;
}
.hm-bg-orb-br {
  position: absolute; bottom: 0; left: 50%; transform: translateX(-50%);
  width: 70vw; height: 30vw; max-width: 900px; max-height: 300px;
  background: radial-gradient(ellipse at 50% 80%, rgba(32,112,164,0.1) 0%, transparent 60%);
  pointer-events: none; z-index: 0;
}
.hm-bg-grid {
  position: absolute; inset: 0;
  background-image: radial-gradient(circle, rgba(52,163,223,0.04) 1px, transparent 1px);
  background-size: 44px 44px;
  mask-image: radial-gradient(ellipse at 50% 38%, rgba(0,0,0,0.35) 0%, transparent 65%);
  pointer-events: none; z-index: 0;
}
.hm-bg-wave {
  position: absolute; bottom: 0; left: 0; right: 0;
  height: 120px; pointer-events: none; z-index: 0; opacity: 0.6;
}
.hm-bg-wave svg { width: 100%; height: 100%; }

/* ── HERO BODY ──────────────────────────────────────────────────── */
.hm-body {
  position: relative; z-index: 1;
  flex: 1; width: 100%;
  display: flex; flex-direction: column; justify-content: center;
  padding-top: calc(var(--nav-h) + 28px);
  padding-bottom: 44px;
}
.hm-container {
  width: 100%; max-width: 1320px;
  margin: 0 auto; padding: 0 48px;
}

/* ── CINEMATIC HERO PANEL ───────────────────────────────────────── */
.hm-panel {
  position: relative;
  width: 100%;
  border-radius: 16px;
  border: 1px solid rgba(52,163,223,0.32);
  box-shadow:
    /* outer glow — embeds panel into hero bg */
    0 0 80px rgba(32,112,164,0.18),
    0 0 200px rgba(32,112,164,0.1),
    /* depth shadows */
    0 32px 100px rgba(3,10,22,0.78),
    0 10px 32px rgba(3,10,22,0.55),
    /* inner top highlight */
    0 0 0 1px rgba(52,163,223,0.12) inset,
    inset 0 1px 0 rgba(52,163,223,0.16);
  overflow: hidden;
  background: #04090f;
}

/* Image fills the panel at its natural proportions */
.hm-panel-visual {
  position: relative;
  width: 100%;
  line-height: 0;
}
.hm-panel-bg {
  display: block;
  width: 100%; height: auto;
}

/* Bottom vignette only — seats the glass bar without obscuring the image */
.hm-panel-grad {
  position: absolute; inset: 0; z-index: 1;
  background:
    linear-gradient(to top,
      rgba(4,9,15,0.72) 0%,
      rgba(4,9,15,0.28) 14%,
      rgba(4,9,15,0.06) 26%,
      transparent 38%
    );
  pointer-events: none;
}

/* ── CAPTION CARD ───────────────────────────────────────────────── */
/*
  Compact lower-left glass caption card.
  Anchored left/bottom with max-width cap — does NOT span the full
  panel width. Text stacks vertically; buttons sit below the copy.
*/
.hm-bar {
  position: absolute;
  left: 48px; bottom: 44px;
  /* right is NOT set — width is driven by content + max-width */
  z-index: 2;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 14px;
  width: calc(100% - 96px); /* respects 48px margins on both sides */
  max-width: 780px;
  padding: 20px 24px;
  background: rgba(5, 12, 22, 0.80);
  backdrop-filter: blur(16px) saturate(1.25);
  -webkit-backdrop-filter: blur(16px) saturate(1.25);
  border: 1px solid rgba(52,163,223,0.18);
  border-radius: 10px;
  box-shadow:
    inset 0 1px 0 rgba(52,163,223,0.22),
    0 6px 28px rgba(3,10,22,0.55),
    0 2px 8px rgba(3,10,22,0.36);
}

/* Text block */
.hm-bar-text { width: 100%; }

/* Actions row */
.hm-bar-actions { width: 100%; }

/* Eyebrow — single line, small and restrained */
.hm-bar-eyebrow {
  display: block;
  font-size: 0.72rem; font-weight: 700; letter-spacing: 2.2px;
  text-transform: uppercase; line-height: 1; white-space: nowrap;
  color: rgba(52,163,223,0.85);
  margin-bottom: 8px;
}

/* Headline — clearly secondary to the image's Alt360 wordmark */
.hm-bar-h1 {
  font-family: var(--font-sans);
  font-size: clamp(1.45rem, 2vw, 2rem);
  font-weight: 800; line-height: 1.18;
  letter-spacing: -0.6px; color: #E9EEF2;
  margin: 0 0 6px;
}

/* Support line */
.hm-bar-sub {
  font-size: 0.95rem; line-height: 1.45;
  color: rgba(184,196,204,0.74);
  margin: 0; font-weight: 400;
}

/* ── BUTTONS ────────────────────────────────────────────────────── */
.hm-ctas { display: flex; gap: 12px; flex-wrap: wrap; align-items: center; }
.hm-btn-primary {
  display: inline-flex; align-items: center; gap: 8px;
  padding: 13px 24px; font-size: 14.5px; font-weight: 600; color: #E9EEF2;
  background: linear-gradient(145deg, #1a5d88 0%, #2070A4 42%, #2d96c9 72%, #34A3DF 100%);
  border: 1.5px solid rgba(52,163,223,0.72); border-radius: 9px;
  letter-spacing: -0.1px; white-space: nowrap; text-decoration: none;
  box-shadow: 0 2px 16px rgba(22,78,117,0.42), 0 0 0 1px rgba(233,238,242,0.1) inset, 0 0 24px rgba(52,163,223,0.12);
  transition: background var(--t-base), box-shadow var(--t-base), transform var(--t-base), border-color var(--t-base);
}
.hm-btn-primary:hover {
  background: linear-gradient(145deg, #2070A4 0%, #2a8bc4 55%, #34A3DF 100%);
  border-color: rgba(52,163,223,0.88);
  box-shadow: 0 4px 22px rgba(32,112,164,0.45), 0 0 0 1px rgba(233,238,242,0.12) inset, 0 0 28px rgba(52,163,223,0.16);
  transform: translateY(-1px);
}
.hm-btn-ghost {
  display: inline-flex; align-items: center; gap: 8px;
  padding: 12px 22px; font-size: 14.5px; font-weight: 600; color: #B8C4CC;
  background: rgba(22,78,117,0.18); border: 1.5px solid rgba(52,163,223,0.32);
  border-radius: 9px; letter-spacing: -0.1px; white-space: nowrap; text-decoration: none;
  transition: color var(--t-base), background var(--t-base), border-color var(--t-base), transform var(--t-base);
}
.hm-btn-ghost:hover {
  color: #E9EEF2; background: rgba(32,112,164,0.22);
  border-color: rgba(52,163,223,0.5); transform: translateY(-1px);
}

/* ═══════════════════════════════════════════════════════════════
   AUDIENCE STRIP
   ═══════════════════════════════════════════════════════════════ */
.hm-strip {
  background: rgba(22,78,117,0.18);
  border-top: 1px solid rgba(52,163,223,0.22);
  border-bottom: 1px solid rgba(52,163,223,0.16);
  padding: 28px 0;
}
.hm-strip-heading {
  font-size: 10.5px; font-weight: 700; letter-spacing: 1.4px;
  text-transform: uppercase; color: rgba(184,196,204,0.85); margin: 0 0 16px;
}
.hm-strip-items {
  display: flex; align-items: center; flex-wrap: wrap; gap: 0;
}
.hm-strip-item {
  display: flex; align-items: center; gap: 9px;
  padding: 10px 26px; text-decoration: none; color: #C8D4DC;
  font-size: 13.5px; font-weight: 600; letter-spacing: -0.15px;
  transition: color 0.18s ease; white-space: nowrap;
}
.hm-strip-item:first-of-type { padding-left: 0; }
.hm-strip-item:hover { color: #E9EEF2; }
.hm-strip-item svg { color: rgba(52,163,223,0.85); flex-shrink: 0; }
.hm-strip-item:hover svg { color: #34A3DF; }
.hm-strip-sep {
  display: block; width: 1px; height: 18px;
  background: rgba(52,163,223,0.28); flex-shrink: 0;
}

/* ═══════════════════════════════════════════════════════════════
   EXPLORE ALT360
   ═══════════════════════════════════════════════════════════════ */
.hm-explore-section {
  padding: 48px 0 68px;
  background: linear-gradient(180deg, rgba(14,32,58,0.55) 0%, rgba(10,24,44,0.45) 100%);
}
.hm-explore-heading {
  font-size: 19px; font-weight: 800; color: #E9EEF2;
  letter-spacing: -0.5px; margin: 0 0 22px;
}
.hm-explore-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 13px;
  align-items: stretch;
}
.hm-explore-card {
  display: flex; align-items: flex-start; gap: 16px;
  padding: 22px 20px 24px; border-radius: 12px;
  text-decoration: none; color: inherit;
  background: linear-gradient(158deg, rgba(22,78,117,0.36), rgba(10,22,40,0.72));
  border: 1px solid rgba(52,163,223,0.2); backdrop-filter: blur(8px);
  transition: border-color 0.22s ease, background 0.22s ease, box-shadow 0.22s ease, transform 0.22s ease;
  height: 100%;
}
.hm-explore-card:hover {
  border-color: rgba(52,163,223,0.44);
  background: linear-gradient(158deg, rgba(22,78,117,0.48), rgba(10,24,44,0.8));
  box-shadow: 0 12px 36px rgba(0,0,0,0.38), 0 0 0 1px rgba(52,163,223,0.08) inset;
  transform: translateY(-2px);
}
.hm-explore-card:focus-visible { outline: 2px solid rgba(52,163,223,0.55); outline-offset: 2px; }
.hm-explore-icon {
  width: 38px; height: 38px; border-radius: 9px; flex-shrink: 0;
  background: rgba(52,163,223,0.16); border: 1px solid rgba(52,163,223,0.28);
  display: flex; align-items: center; justify-content: center; color: #34A3DF;
}
.hm-explore-content { flex: 1; min-width: 0; }
.hm-explore-title {
  display: block; font-size: 14.5px; font-weight: 700;
  color: #E9EEF2; letter-spacing: -0.25px; margin-bottom: 6px;
}
.hm-explore-desc { display: block; font-size: 12.5px; line-height: 1.56; color: #C0CCDC; }
.hm-explore-arrow {
  flex-shrink: 0; color: rgba(52,163,223,0.65); font-size: 1.1rem;
  align-self: center; transition: color 0.2s ease, transform 0.2s ease;
}
.hm-explore-card:hover .hm-explore-arrow { color: #34A3DF; transform: translateX(3px); }

/* ── RESPONSIVE ─────────────────────────────────────────────────── */
@media (min-width: 961px) {
  .hm-container { padding-left: 56px; padding-right: 56px; }
}
@media (max-width: 1200px) {
  .hm-container { padding: 0 32px; }
  .hm-bar { left: 36px; bottom: 32px; max-width: 700px; padding: 18px 22px; }
}
@media (max-width: 960px) {
  .hm-body { padding-top: calc(var(--nav-h) + 18px); padding-bottom: 28px; }
  /* Tablet: caption card shrinks with viewport; stays in lower-left */
  .hm-bar { left: 24px; bottom: 24px; max-width: 580px; gap: 12px; padding: 16px 20px; }
  .hm-bar-h1 { font-size: clamp(1.2rem, 2.5vw, 1.6rem); }
  .hm-bar-sub { font-size: 0.88rem; }
  .hm-explore-grid { grid-template-columns: repeat(2, minmax(0, 1fr)); }
}
@media (max-width: 600px) {
  /* Mobile: panel stacks — image visual zone on top, bar as dark lower band */
  .hm-container { padding: 0 14px; }
  .hm-panel { display: flex; flex-direction: column; border-radius: 12px; }
  .hm-panel-visual { flex-shrink: 0; }
  /* Crop to landscape; focal point right (operating model graphic) */
  .hm-panel-bg {
    aspect-ratio: 16/9; height: auto;
    object-fit: cover; object-position: right center;
  }
  .hm-panel-grad {
    background: linear-gradient(to top, rgba(4,9,15,0.88) 0%, rgba(4,9,15,0.28) 38%, transparent 60%);
  }
  /* Bar becomes document-flow lower band inside the same panel border */
  .hm-bar {
    position: static; left: auto; bottom: auto;
    width: 100%; max-width: none;
    gap: 12px; padding: 18px 18px 26px;
    border-radius: 0 0 12px 12px;
    border: none; border-top: 1px solid rgba(52,163,223,0.18);
    background: rgba(4,10,20,0.97);
    backdrop-filter: none; -webkit-backdrop-filter: none;
    box-shadow: none;
    margin-top: -2px;
  }
  .hm-bar-h1 { font-size: 1.25rem; letter-spacing: -0.3px; }
  .hm-bar-sub { font-size: 0.88rem; }
  .hm-bar-eyebrow { white-space: normal; }
  .hm-ctas { flex-wrap: wrap; gap: 10px; }
  .hm-explore-grid { grid-template-columns: 1fr; }
  .hm-strip-items { display: grid; grid-template-columns: 1fr 1fr; gap: 4px; }
  .hm-strip-sep   { display: none; }
  .hm-strip-item  {
    padding: 10px 14px; font-size: 12px; white-space: normal;
    line-height: 1.3; border-radius: 8px;
    background: rgba(22,78,117,0.1); border: 1px solid rgba(52,163,223,0.08);
  }
  .hm-strip-item:first-of-type { padding-left: 14px; }
}

/* ═══════════════════════════════════════════════════════════════
   SOLUTIONS OVERVIEW (/solutions) — sol-* namespace
   Compact institutional fintech; does not affect homepage (hm-*).
   ═══════════════════════════════════════════════════════════════ */

.sol-body { overflow-x: hidden; }
.sol-body.sol-overview { background: #04060E; }
.sol-body .nav-links a[href="/solutions"] { color: var(--text-0); }
.sol-main { display: flex; flex-direction: column; }

/* ── HERO ──────────────────────────────────────────────────────── */
.sol-hero {
  position: relative;
  background: #04060E;
  overflow: hidden;
  padding-top: 0;
}
.sol-bg-orb-tr {
  position: absolute; top: -8%; right: -6%;
  width: 52vw; height: 52vw;
  max-width: 680px; max-height: 680px;
  background: radial-gradient(ellipse at 65% 28%, rgba(14,165,233,0.11) 0%, transparent 58%);
  pointer-events: none; z-index: 0;
}
.sol-bg-orb-bl {
  position: absolute; bottom: 0; left: -5%;
  width: 38vw; height: 38vw;
  max-width: 480px; max-height: 480px;
  background: radial-gradient(circle, rgba(139,92,246,0.07) 0%, transparent 65%);
  pointer-events: none; z-index: 0;
}
.sol-bg-grid {
  position: absolute; inset: 0;
  background-image: radial-gradient(circle, rgba(56,189,248,0.045) 1px, transparent 1px);
  background-size: 40px 40px;
  mask-image: radial-gradient(ellipse at 30% 45%, rgba(0,0,0,0.4) 0%, transparent 68%);
  pointer-events: none; z-index: 0;
}
.sol-hero-wave {
  position: absolute; bottom: 0; left: 0; right: 0;
  height: 88px; pointer-events: none; z-index: 0; opacity: 0.9;
}
.sol-hero-wave svg { width: 100%; height: 100%; }

.sol-hero-body {
  position: relative; z-index: 1;
  padding: 28px 0 40px;
}
.sol-hero-grid {
  display: grid;
  grid-template-columns: 1.05fr 0.95fr;
  gap: 32px 40px;
  align-items: start;
}

.sol-hero-eyebrow {
  display: flex; align-items: center; gap: 12px;
  margin-bottom: 16px;
}
.sol-hero-eyebrow-line {
  display: block; width: 32px; height: 2px;
  background: linear-gradient(90deg, #22D3EE, #38BDF8);
  flex-shrink: 0; border-radius: 2px;
  box-shadow: 0 0 10px rgba(34,211,238,0.45);
}
.sol-hero-eyebrow-text {
  font-size: 10px; font-weight: 700;
  letter-spacing: 1.8px; text-transform: uppercase;
  color: #22D3EE; line-height: 1;
}

.sol-h1 {
  font-size: clamp(26px, 2.9vw, 40px);
  font-weight: 800;
  line-height: 1.1;
  letter-spacing: -1.6px;
  color: #F0F4FC;
  margin-bottom: 16px;
}
.sol-hero-sub {
  font-size: 14px;
  line-height: 1.65;
  color: #7A92B0;
  max-width: 540px;
  margin-bottom: 0;
}

/* GEO answer card */
.sol-geo-card {
  background: rgba(5,12,28,0.82);
  border: 1px solid rgba(56,189,248,0.14);
  border-radius: 14px;
  padding: 22px 22px 20px;
  backdrop-filter: blur(20px) saturate(160%);
  -webkit-backdrop-filter: blur(20px) saturate(160%);
  box-shadow: 0 4px 40px rgba(0,0,0,0.45), inset 0 1px 0 rgba(56,189,248,0.08);
}
.sol-geo-card-header {
  display: flex; align-items: center; gap: 10px;
  margin-bottom: 12px;
}
.sol-geo-card-icon {
  width: 30px; height: 30px;
  background: rgba(14,165,233,0.1);
  border: 1px solid rgba(14,165,233,0.22);
  border-radius: 8px;
  display: flex; align-items: center; justify-content: center;
  color: var(--accent-cyan); flex-shrink: 0;
}
.sol-geo-card-label {
  font-size: 11px; font-weight: 700;
  letter-spacing: 1px; text-transform: uppercase;
  color: var(--accent-cyan);
}
.sol-geo-card-body {
  font-size: 13px; line-height: 1.62;
  color: #9DB8CC;
  margin: 0;
}

/* ── SOLUTION CARDS ────────────────────────────────────────────── */
.sol-cards-section {
  position: relative;
  background: linear-gradient(180deg, #070d1c 0%, #08101e 100%);
  padding: 44px 0 48px;
  border-top: 1px solid rgba(56,189,248,0.12);
  overflow: hidden;
}
.sol-cards-bg {
  position: absolute; inset: 0;
  background-image: radial-gradient(circle, rgba(56,189,248,0.04) 1px, transparent 1px);
  background-size: 36px 36px;
  mask-image: radial-gradient(ellipse at 50% 0%, rgba(0,0,0,0.5) 0%, transparent 70%);
  pointer-events: none;
}

.sol-section-head {
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
  margin-bottom: 28px;
  gap: 20px;
}
.sol-section-h2 {
  font-size: clamp(20px, 2.2vw, 28px);
  font-weight: 700;
  letter-spacing: -0.8px;
  color: var(--text-0);
  line-height: 1.15;
  margin: 0;
}
.sol-section-kicker {
  margin-top: 8px;
  font-size: 12.5px;
  line-height: 1.55;
  color: #5A6E8C;
  max-width: 520px;
}
.sol-explore-all {
  display: inline-flex; align-items: center; gap: 6px;
  font-size: 12.5px; font-weight: 600;
  color: #60A5FA;
  white-space: nowrap;
  transition: gap var(--t-fast), color var(--t-fast);
  flex-shrink: 0;
  padding-bottom: 2px;
  border-bottom: 1px solid transparent;
}
.sol-explore-all:hover {
  color: #22D3EE;
  gap: 9px;
  border-bottom-color: rgba(34,211,238,0.35);
}

.sol-cards-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 12px;
}

.sol-card {
  position: relative;
  display: flex; flex-direction: column;
  min-height: 0;
  background: linear-gradient(148deg, rgba(18,32,60,0.82), rgba(8,16,32,0.88));
  border: 1px solid rgba(56,189,248,0.14);
  border-radius: 12px;
  padding: 18px 18px 16px;
  overflow: hidden;
  text-decoration: none;
  transition: background var(--t-base), border-color var(--t-base), transform var(--t-base), box-shadow var(--t-base);
}
.sol-card:hover {
  background: linear-gradient(148deg, rgba(22,44,80,0.90), rgba(10,22,44,0.94));
  border-color: rgba(56,189,248,0.28);
  transform: translateY(-1px);
  box-shadow: 0 10px 36px rgba(0,0,0,0.38);
}
.sol-card-accent {
  position: absolute; top: 0; left: 0; right: 0; height: 2px;
  transform: scaleX(0); transform-origin: left;
  transition: transform 320ms var(--ease-out);
  border-radius: 12px 12px 0 0;
}
.sol-card:hover .sol-card-accent { transform: scaleX(1); }
.sol-accent-cyan   { background: linear-gradient(90deg, #22D3EE, #38BDF8); }
.sol-accent-blue   { background: linear-gradient(90deg, #3B82F6, #60A5FA); }
.sol-accent-indigo { background: linear-gradient(90deg, #6366F1, #818CF8); }
.sol-accent-violet { background: linear-gradient(90deg, #8B5CF6, #A78BFA); }
.sol-accent-pink   { background: linear-gradient(90deg, #A855F7, #C084FC); }
.sol-accent-amber  { background: linear-gradient(90deg, #F59E0B, #FCD34D); }

.sol-card-icon {
  width: 36px; height: 36px;
  border-radius: 9px;
  display: flex; align-items: center; justify-content: center;
  margin-bottom: 12px; flex-shrink: 0;
  border: 1px solid transparent;
}
.sol-ci-cyan   { background: rgba(34,211,238,0.1);  border-color: rgba(34,211,238,0.2);  color: #22D3EE; }
.sol-ci-blue   { background: rgba(59,130,246,0.1);  border-color: rgba(59,130,246,0.2);  color: #60A5FA; }
.sol-ci-indigo { background: rgba(99,102,241,0.1);  border-color: rgba(99,102,241,0.2);  color: #818CF8; }
.sol-ci-violet { background: rgba(139,92,246,0.1);  border-color: rgba(139,92,246,0.2);  color: #A78BFA; }
.sol-ci-pink   { background: rgba(168,85,247,0.1);  border-color: rgba(168,85,247,0.2);  color: #C084FC; }
.sol-ci-amber  { background: rgba(245,158,11,0.1);  border-color: rgba(245,158,11,0.2);  color: #FCD34D; }

.sol-card-title {
  font-size: 14px; font-weight: 700;
  color: var(--text-0); letter-spacing: -0.35px;
  line-height: 1.28; margin-bottom: 8px;
}
.sol-card-desc {
  font-size: 12.5px; line-height: 1.55;
  color: #A0B4C8; flex: 1; margin-bottom: 12px;
}
.sol-card-arrow {
  display: inline-flex; align-items: center; gap: 6px;
  font-size: 11.5px; font-weight: 600;
  color: #60A5FA; margin-top: auto;
  transition: gap var(--t-fast), color var(--t-fast);
}
.sol-card-arrow-label { opacity: 0.85; }
.sol-card:hover .sol-card-arrow { gap: 9px; color: #22D3EE; }

/* ── HOW WE WORK ────────────────────────────────────────────────── */
.sol-hww-section {
  position: relative;
  background: linear-gradient(180deg, #060c1a 0%, #050a16 100%);
  padding: 40px 0 44px;
  border-top: 1px solid rgba(56,189,248,0.1);
  overflow: hidden;
}
.sol-hww-bg {
  position: absolute; inset: 0;
  background-image:
    linear-gradient(rgba(56,189,248,0.022) 1px, transparent 1px),
    linear-gradient(90deg, rgba(56,189,248,0.022) 1px, transparent 1px);
  background-size: 56px 56px;
  mask-image: radial-gradient(ellipse at 50% 40%, rgba(0,0,0,0.55) 0%, transparent 75%);
  pointer-events: none;
}
.sol-hww-head {
  text-align: center;
  margin-bottom: 28px;
}
.sol-hww-h2 {
  font-size: clamp(20px, 2.2vw, 28px);
  font-weight: 700;
  letter-spacing: -0.8px;
  color: var(--text-0);
  margin: 0 0 8px;
}
.sol-hww-lead {
  font-size: 13px;
  line-height: 1.55;
  color: #6B7F9E;
  max-width: 520px;
  margin: 0 auto;
}
.sol-hww-pipeline {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  align-items: center;
  gap: 6px 4px;
  margin-top: 14px;
  font-size: 10px;
  font-weight: 700;
  letter-spacing: 1.4px;
  text-transform: uppercase;
  color: rgba(34,211,238,0.75);
}
.sol-hww-pipe {
  color: rgba(96,165,250,0.35);
  font-weight: 500;
  padding: 0 2px;
}

.sol-hww-row {
  display: flex;
  align-items: flex-start;
  gap: 0;
  margin-top: 8px;
}
.sol-hww-step {
  flex: 1;
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  position: relative;
  min-width: 0;
}
.sol-hww-connector {
  flex: 0 0 auto;
  width: 20px;
  height: 2px;
  background: linear-gradient(90deg, rgba(56,189,248,0.22), rgba(139,92,246,0.18));
  margin-top: 25px;
  flex-shrink: 0;
}
.sol-hww-node {
  width: 48px; height: 48px;
  border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  margin-bottom: 12px; flex-shrink: 0;
  border: 1.5px solid transparent;
  transition: transform var(--t-base), box-shadow var(--t-base);
}
.sol-hww-step:hover .sol-hww-node { transform: scale(1.06); }
.sol-hww-n-cyan   { background: rgba(3,22,40,0.92);  border-color: #22D3EE; color: #22D3EE; box-shadow: 0 0 14px rgba(34,211,238,0.2); }
.sol-hww-n-blue   { background: rgba(3,16,44,0.92);  border-color: #3B82F6; color: #60A5FA; box-shadow: 0 0 14px rgba(59,130,246,0.2); }
.sol-hww-n-indigo { background: rgba(6,10,44,0.92);  border-color: #6366F1; color: #818CF8; box-shadow: 0 0 14px rgba(99,102,241,0.2); }
.sol-hww-n-violet { background: rgba(14,6,42,0.92);  border-color: #8B5CF6; color: #A78BFA; box-shadow: 0 0 14px rgba(139,92,246,0.2); }
.sol-hww-n-pink   { background: rgba(20,5,42,0.92);  border-color: #A855F7; color: #C084FC; box-shadow: 0 0 14px rgba(168,85,247,0.2); }
.sol-hww-n-amber  { background: rgba(28,18,4,0.92);  border-color: #F59E0B; color: #FCD34D; box-shadow: 0 0 14px rgba(245,158,11,0.16); }

.sol-hww-step-title {
  font-size: 13px; font-weight: 700;
  color: var(--text-0); letter-spacing: -0.25px;
  margin: 0 0 5px;
}
.sol-hww-step-desc {
  font-size: 11px;
  line-height: 1.5;
  color: #9DB8CC;
  max-width: 158px;
  margin: 0 auto;
}

/* ── CTA BAND ───────────────────────────────────────────────────── */
.sol-cta-band {
  position: relative;
  background: linear-gradient(165deg, #071222 0%, #091828 45%, #071018 100%);
  border-top: 1px solid rgba(52,163,223,0.22);
  overflow: hidden;
  padding: 36px 0 40px;
}
.sol-cta-bg {
  position: absolute; inset: 0;
  background:
    radial-gradient(ellipse at 15% 40%, rgba(32,112,164,0.14) 0%, transparent 50%),
    radial-gradient(ellipse at 85% 60%, rgba(22,78,117,0.12) 0%, transparent 50%);
  pointer-events: none;
}
.sol-cta-inner {
  position: relative; z-index: 1;
  display: flex;
  align-items: center;
  gap: 28px;
}
.sol-cta-icon {
  width: 52px; height: 52px;
  background: rgba(14,165,233,0.08);
  border: 1px solid rgba(14,165,233,0.18);
  border-radius: 12px;
  display: flex; align-items: center; justify-content: center;
  color: var(--accent-cyan); flex-shrink: 0;
}
.sol-cta-copy { flex: 1; min-width: 0; }
.sol-cta-h2 {
  font-size: clamp(17px, 2vw, 24px);
  font-weight: 700; letter-spacing: -0.7px;
  color: var(--text-0); line-height: 1.2;
  margin-bottom: 6px;
}
.sol-cta-body {
  font-size: 13px; line-height: 1.6;
  color: #A8BED4; max-width: 480px;
}
.sol-cta-btns {
  display: flex; gap: 10px; flex-wrap: wrap;
  align-items: center; flex-shrink: 0;
}

/* ── COMPACT FAQ (/solutions only) ─────────────────────────────── */
.sol-faq-section {
  background: linear-gradient(180deg, #060b16 0%, #070d1c 100%);
  border-top: 1px solid rgba(56,189,248,0.1);
  padding: 32px 0 44px;
}
.sol-faq-h2 {
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 2px;
  text-transform: uppercase;
  color: #5A6E8C;
  text-align: center;
  margin: 0 0 18px;
}
.sol-faq-section .faq {
  max-width: 680px;
  margin: 0 auto;
}
.sol-faq-section .faq-item {
  border: 1px solid rgba(56,189,248,0.14);
  border-radius: 10px;
  margin-bottom: 8px;
  overflow: hidden;
  background: rgba(12,24,48,0.72);
}
.sol-faq-section .faq-q {
  width: 100%;
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 12px;
  text-align: left;
  padding: 11px 14px;
  font-size: 12.5px;
  font-weight: 600;
  color: #DDE6F4;
  line-height: 1.35;
}
.sol-faq-section .faq-icon {
  flex-shrink: 0;
  font-size: 15px;
  font-weight: 500;
  color: #60A5FA;
  opacity: 0.8;
}
.sol-faq-section .faq-item.open .faq-icon { opacity: 1; }
.sol-faq-section .faq-a {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.38s var(--ease-out);
}
.sol-faq-section .faq-item.open .faq-a {
  max-height: 320px;
}
.sol-faq-section .faq-a p {
  padding: 0 14px 12px;
  font-size: 12.5px;
  line-height: 1.58;
  color: #8DA0C0;
}

/* ── RESPONSIVE ─────────────────────────────────────────────────── */
@media (max-width: 1100px) {
  .sol-cards-grid { gap: 11px; }
}
@media (max-width: 900px) {
  .sol-hero-grid { grid-template-columns: 1fr; gap: 28px; }
  .sol-h1 { font-size: clamp(24px, 4.5vw, 34px); }
  .sol-hero-sub { max-width: 100%; }
  .sol-cards-grid { grid-template-columns: repeat(2, 1fr); }
  .sol-section-head {
    flex-direction: column;
    align-items: flex-start;
    gap: 10px;
  }
  .sol-hww-row {
    flex-direction: column;
    align-items: stretch;
    margin-top: 4px;
    padding-left: 18px;
    border-left: 1px solid rgba(56,189,248,0.14);
    gap: 0;
  }
  .sol-hww-connector { display: none; }
  .sol-hww-step {
    flex-direction: row;
    align-items: flex-start;
    text-align: left;
    gap: 14px;
    padding: 14px 0 16px;
    border-bottom: 1px solid rgba(56,189,248,0.06);
  }
  .sol-hww-step.sol-hww-step-last { border-bottom: none; padding-bottom: 0; }
  .sol-hww-node { margin-bottom: 0; margin-top: 2px; }
  .sol-hww-step-body { flex: 1; min-width: 0; }
  .sol-hww-step-desc {
    max-width: none;
    margin: 0;
    font-size: 12px;
  }
  .sol-cta-inner { flex-direction: column; text-align: center; gap: 22px; }
  .sol-cta-btns { justify-content: center; }
  .sol-cta-body { max-width: 100%; }
}
@media (max-width: 600px) {
  .sol-hero-body { padding: 22px 0 32px; }
  .sol-hero-wave { height: 64px; }
  .sol-cards-grid { grid-template-columns: 1fr; gap: 10px; }
  .sol-cards-section { padding: 36px 0 40px; }
  .sol-hww-section { padding: 32px 0 36px; }
  .sol-cta-band { padding: 32px 0; }
  .sol-cta-icon { display: none; }
  .sol-faq-section { padding: 28px 0 36px; }
}

/* ═══════════════════════════════════════════════════════════════
   STRATEGY & OPERATIONAL HEALTHCHECK — hc-svc (detail page only)
   ═══════════════════════════════════════════════════════════════ */

.hc-svc-body { background: #04060E; }

.hc-svc .breadcrumbs {
  margin-bottom: 16px;
  font-size: 12px;
  color: #5A6E8C;
}
.hc-svc .breadcrumbs a { color: #8DA0C0; }
.hc-svc .breadcrumbs a:hover { color: #22D3EE; }

.hc-hero {
  position: relative;
  background: #04060E;
  overflow: hidden;
  padding-top: 0;
}
.hc-bg-orb-tr {
  position: absolute; top: -6%; right: -5%;
  width: 48vw; height: 48vw;
  max-width: 620px; max-height: 620px;
  background: radial-gradient(ellipse at 65% 28%, rgba(14,165,233,0.1) 0%, transparent 58%);
  pointer-events: none; z-index: 0;
}
.hc-bg-orb-bl {
  position: absolute; bottom: 0; left: -5%;
  width: 36vw; height: 36vw;
  max-width: 420px; max-height: 420px;
  background: radial-gradient(circle, rgba(139,92,246,0.06) 0%, transparent 65%);
  pointer-events: none; z-index: 0;
}
.hc-bg-grid {
  position: absolute; inset: 0;
  background-image: radial-gradient(circle, rgba(56,189,248,0.04) 1px, transparent 1px);
  background-size: 38px 38px;
  mask-image: radial-gradient(ellipse at 40% 40%, rgba(0,0,0,0.38) 0%, transparent 68%);
  pointer-events: none; z-index: 0;
}
.hc-hero-wave {
  position: absolute; bottom: 0; left: 0; right: 0;
  height: 72px; pointer-events: none; z-index: 0; opacity: 0.85;
}
.hc-hero-wave svg { width: 100%; height: 100%; }

.hc-hero-body {
  position: relative; z-index: 1;
  padding: 20px 0 32px;
}
.hc-hero-grid {
  display: grid;
  grid-template-columns: 1.05fr 0.95fr;
  gap: 26px 36px;
  align-items: start;
}
.hc-hero-eyebrow {
  display: flex; align-items: center; gap: 10px;
  margin-bottom: 12px;
}
.hc-hero-eyebrow-line {
  display: block; width: 28px; height: 2px;
  background: linear-gradient(90deg, #22D3EE, #38BDF8);
  border-radius: 2px;
  box-shadow: 0 0 8px rgba(34,211,238,0.45);
}
.hc-hero-eyebrow-text {
  font-size: 10px; font-weight: 700;
  letter-spacing: 1.6px; text-transform: uppercase;
  color: #22D3EE;
}
.hc-h1 {
  font-size: clamp(24px, 2.7vw, 36px);
  font-weight: 800;
  line-height: 1.1;
  letter-spacing: -1.2px;
  color: #F0F4FC;
  margin: 0 0 14px;
}
.hc-hero-intro {
  margin: 0;
  font-size: 14px;
  line-height: 1.62;
  color: #7A92B0;
  max-width: 540px;
}

.hc-geo-card {
  background: rgba(5,12,28,0.82);
  border: 1px solid rgba(56,189,248,0.14);
  border-radius: 14px;
  padding: 20px 20px 18px;
  backdrop-filter: blur(18px) saturate(160%);
  -webkit-backdrop-filter: blur(18px) saturate(160%);
  box-shadow: 0 4px 40px rgba(0,0,0,0.42), inset 0 1px 0 rgba(56,189,248,0.07);
}
.hc-geo-title {
  margin: 0 0 10px;
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 1.1px;
  text-transform: uppercase;
  color: #22D3EE;
}
.hc-geo-body {
  margin: 0;
  font-size: 13px;
  line-height: 1.58;
  color: #8DA0C0;
}

.hc-section {
  padding: 34px 0 36px;
  border-top: 1px solid rgba(56,189,248,0.1);
  background: linear-gradient(180deg, #07101e 0%, #060d1a 100%);
}
.hc-section-alt {
  position: relative;
  background: linear-gradient(180deg, #060c1a 0%, #05091502 100%);
  overflow: hidden;
}
.hc-section-bg {
  position: absolute; inset: 0;
  background-image:
    linear-gradient(rgba(56,189,248,0.02) 1px, transparent 1px),
    linear-gradient(90deg, rgba(56,189,248,0.02) 1px, transparent 1px);
  background-size: 52px 52px;
  mask-image: radial-gradient(ellipse at 50% 30%, rgba(0,0,0,0.45) 0%, transparent 72%);
  pointer-events: none;
}
.hc-sec-h2 {
  margin: 0 0 8px;
  font-size: clamp(18px, 2vw, 24px);
  font-weight: 700;
  letter-spacing: -0.65px;
  color: #F0F4FC;
  text-align: center;
}
.hc-section:not(.hc-section-alt) .hc-sec-h2 { text-align: left; }
.hc-section:not(.hc-section-alt) .hc-sec-lead { text-align: left; margin-left: 0; margin-right: 0; }
.hc-sec-lead {
  margin: 0 auto 22px;
  max-width: 560px;
  font-size: 13px;
  line-height: 1.55;
  color: #6B7F9E;
  text-align: center;
}

.hc-where-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 11px;
  margin-top: 4px;
}
.hc-glass-card {
  background: linear-gradient(148deg, rgba(18,36,66,0.78), rgba(8,16,34,0.82));
  border: 1px solid rgba(56,189,248,0.14);
  border-radius: 12px;
  padding: 16px 16px 15px;
  transition: border-color var(--t-fast), background var(--t-fast);
}
.hc-glass-card:hover {
  border-color: rgba(56,189,248,0.26);
  background: linear-gradient(148deg, rgba(22,44,80,0.88), rgba(10,22,46,0.9));
}
.hc-card-h {
  margin: 0 0 7px;
  font-size: 13.5px;
  font-weight: 700;
  letter-spacing: -0.25px;
  color: #E8EDF8;
}
.hc-card-p {
  margin: 0;
  font-size: 12.5px;
  line-height: 1.52;
  color: #A0B4C8;
}

.hc-week-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 11px;
  margin-top: 6px;
}
/* Data & AI: Beacon Framework — four stages (not 3-col healthcheck week) */
.hc-week-grid.dai-beacon-grid {
  grid-template-columns: repeat(4, minmax(0, 1fr));
}
@media (max-width: 1180px) {
  .hc-week-grid.dai-beacon-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
}
/* Investor experiences: five-step onboarding workflow */
.hc-week-grid.iac-onboard-grid {
  grid-template-columns: repeat(5, minmax(0, 1fr));
}
@media (max-width: 1240px) {
  .hc-week-grid.iac-onboard-grid {
    grid-template-columns: repeat(3, minmax(0, 1fr));
  }
}
.hc-week-card {
  background: linear-gradient(148deg, rgba(16,32,60,0.78), rgba(8,16,34,0.82));
  border: 1px solid rgba(56,189,248,0.14);
  border-radius: 12px;
  padding: 16px 14px 15px;
  text-align: center;
}
.hc-week-label {
  margin: 0 0 6px;
  font-size: 10px;
  font-weight: 700;
  letter-spacing: 1.4px;
  text-transform: uppercase;
  color: #22D3EE;
}
.hc-week-title {
  margin: 0 0 8px;
  font-size: 14px;
  font-weight: 700;
  color: #F0F4FC;
  letter-spacing: -0.3px;
}
.hc-week-body {
  margin: 0;
  font-size: 12px;
  line-height: 1.52;
  color: #A0B4C8;
}

.hc-del-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 8px;
  margin-top: 6px;
}
.hc-del-item {
  padding: 10px 11px;
  font-size: 11.5px;
  font-weight: 500;
  line-height: 1.35;
  color: #B4C0D8;
  background: rgba(5,12,24,0.65);
  border: 1px solid rgba(56,189,248,0.09);
  border-radius: 8px;
}

.hc-related {
  background: linear-gradient(180deg, #07101e 0%, #060d1a 100%);
}
.hc-rel-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 10px;
  margin-top: 6px;
}
.hc-rel-card {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
  padding: 14px 16px;
  background: linear-gradient(148deg, rgba(18,36,66,0.72), rgba(8,16,34,0.78));
  border: 1px solid rgba(56,189,248,0.16);
  border-radius: 11px;
  text-decoration: none;
  transition: border-color var(--t-fast), background var(--t-fast), transform var(--t-fast);
}
.hc-rel-card:hover {
  border-color: rgba(56,189,248,0.3);
  background: linear-gradient(148deg, rgba(22,44,80,0.84), rgba(10,22,46,0.88));
  transform: translateY(-1px);
}
.hc-rel-title {
  font-size: 12.5px;
  font-weight: 600;
  color: #E8EDF8;
  letter-spacing: -0.2px;
  line-height: 1.3;
}
.hc-rel-arrow {
  flex-shrink: 0;
  font-size: 14px;
  color: #60A5FA;
  transition: color var(--t-fast), transform var(--t-fast);
}
.hc-rel-card:hover .hc-rel-arrow { color: #22D3EE; transform: translateX(2px); }

.hc-faq.sol-faq-section {
  padding: 28px 0 40px;
}

@media (max-width: 900px) {
  .hc-hero-grid { grid-template-columns: 1fr; gap: 22px; }
  .hc-h1 { font-size: clamp(22px, 4.5vw, 30px); }
  .hc-where-grid { grid-template-columns: 1fr; }
  .hc-week-grid { grid-template-columns: 1fr; }
  .hc-week-grid.iac-onboard-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
  .hc-week-card { text-align: left; }
  .hc-del-grid { grid-template-columns: repeat(2, minmax(0, 1fr)); }
  .hc-rel-grid { grid-template-columns: 1fr; }
}
@media (max-width: 560px) {
  .hc-hero-body { padding: 16px 0 26px; }
  .hc-hero-wave { height: 52px; }
  .hc-section { padding: 28px 0 30px; }
  .hc-del-grid { grid-template-columns: 1fr; }
  .hc-week-grid.dai-beacon-grid { grid-template-columns: 1fr; }
  .hc-week-grid.iac-onboard-grid { grid-template-columns: 1fr; }
}

/* ================================================================
   LEGAL PAGES — /privacy-policy, /terms-of-use
   Body class: .page-legal   Prefix: pp-
   ================================================================ */

/* ── TOKENS ──────────────────────────────────────────────────── */
.page-legal {
  --pp-navy:  #164E75;
  --pp-blue:  #2070A4;
  --pp-sky:   #34A3DF;
  --pp-mist:  #E9EEF2;
  --pp-slate: #B8C4CC;
  --pp-iron:  #4A5964;
  --pp-green: #2FA88A;
}

.page-legal .page-wrapper {
  background: linear-gradient(180deg, #030810 0%, #040b15 40%, #050d18 70%, #040810 100%);
  color: var(--pp-mist);
}

.pp-main { overflow-x: hidden; }

/* ── CONTAINER ───────────────────────────────────────────────── */
.pp-container {
  width: 100%; max-width: 1240px;
  margin-left: auto; margin-right: auto;
  padding-left: clamp(20px, 4vw, 48px);
  padding-right: clamp(20px, 4vw, 48px);
}

/* ── HERO ────────────────────────────────────────────────────── */
.pp-hero {
  position: relative; overflow: hidden;
  background: linear-gradient(158deg, #030810 0%, #071322 52%, #060e1c 100%);
  border-bottom: 1px solid rgba(52, 163, 223, 0.07);
}
.pp-hero-bg {
  position: absolute; inset: 0; pointer-events: none;
  background: radial-gradient(ellipse at 65% 35%, rgba(32, 112, 164, 0.16) 0%, transparent 60%);
}
.pp-hero-body { position: relative; z-index: 1; padding: 28px 0 36px; }

.pp-bc-list {
  display: flex; align-items: center; gap: 7px;
  list-style: none; margin: 0 0 18px; padding: 0;
  font-size: 0.82rem;
}
.pp-bc-list a { color: var(--pp-slate); text-decoration: none; }
.pp-bc-list a:hover { color: var(--pp-sky); }
.pp-bc-list span { color: rgba(184,196,204,0.45); }
.bc-sep { color: var(--pp-iron); }

.pp-h1 {
  font-size: clamp(24px, 3vw, 36px); font-weight: 800; letter-spacing: -0.8px;
  line-height: 1.1; color: var(--pp-mist); margin: 0 0 10px;
}
.pp-effective {
  font-size: 0.8rem; color: rgba(74, 89, 100, 0.9);
  margin: 0 0 14px; font-weight: 500; letter-spacing: 0.04em; text-transform: uppercase;
}
.pp-intro {
  font-size: 0.97rem; line-height: 1.68; color: rgba(184, 196, 204, 0.85);
  max-width: 58ch; margin: 0;
}

/* ── TWO-COLUMN LAYOUT ──────────────────────────────────────── */
.pp-layout {
  display: grid;
  grid-template-columns: minmax(0, 1fr) 300px;
  gap: 0 48px;
  padding: 48px 0 72px;
  align-items: start;
}

/* ── ARTICLE BODY ────────────────────────────────────────────── */
.pp-body {
  min-width: 0;
  font-size: 0.925rem; line-height: 1.82; color: rgba(233, 238, 242, 0.92);
}

.pp-lead {
  font-size: 0.975rem; line-height: 1.75;
  color: rgba(184, 196, 204, 0.9);
  margin: 0; padding-bottom: 32px;
  border-bottom: 1px solid rgba(52, 163, 223, 0.07);
}

/* ── SECTIONS ────────────────────────────────────────────────── */
.pp-section {
  padding: 32px 0;
  border-bottom: 1px solid rgba(52, 163, 223, 0.06);
}
.pp-section--last { border-bottom: none; padding-bottom: 0; }

/* ── H2 / SECTION HEADINGS ──────────────────────────────────── */
.pp-h2 {
  font-size: 1rem; font-weight: 800; letter-spacing: -0.01em;
  color: var(--pp-mist); margin: 0 0 14px; line-height: 1.3;
}

/* Privacy Policy numbered prefix style (optional span inside .pp-h2) */
.pp-h2-inner {
  display: flex; align-items: baseline; gap: 10px;
}
.pp-num {
  font-size: 0.7rem; font-weight: 700; letter-spacing: 0.08em;
  color: var(--pp-sky); opacity: 0.7; flex-shrink: 0;
  font-variant-numeric: tabular-nums;
  position: relative; top: -1px;
}

/* ── H3 / SUBSECTION HEADINGS ───────────────────────────────── */
.pp-h3 {
  font-size: 0.875rem; font-weight: 700;
  color: rgba(233, 238, 242, 0.88); margin: 20px 0 8px;
  letter-spacing: -0.005em;
  padding-left: 10px;
  border-left: 2px solid rgba(52, 163, 223, 0.22);
}

/* ── BODY COPY ───────────────────────────────────────────────── */
.pp-body p { margin: 0 0 12px; }
.pp-list {
  margin: 6px 0 14px 20px; padding: 0;
  color: rgba(233, 238, 242, 0.78);
}
.pp-list li { margin-bottom: 8px; line-height: 1.72; }
.pp-body strong { color: rgba(233, 238, 242, 0.96); font-weight: 700; }
.pp-body a { color: var(--pp-sky); text-decoration: underline; text-underline-offset: 2px; }
.pp-body a:hover { color: var(--pp-mist); }

/* ── CONTACT ADDRESS (in article) ───────────────────────────── */
.pp-addr {
  display: block; margin-top: 10px;
  padding: 16px 20px; border-radius: 8px; font-style: normal;
  background: rgba(22, 78, 117, 0.09);
  border: 1px solid rgba(52, 163, 223, 0.12);
  font-size: 0.9rem; line-height: 2; color: rgba(184, 196, 204, 0.88);
}
.pp-addr-name { display: block; font-weight: 700; color: var(--pp-mist); margin-bottom: 2px; }
.pp-addr a { color: var(--pp-sky); text-decoration: underline; text-underline-offset: 2px; }

/* ── SIDEBAR ─────────────────────────────────────────────────── */
.pp-sidebar {
  position: sticky; top: 80px;
  display: flex; flex-direction: column; gap: 16px;
}

/* TOC Card */
.pp-toc-card {
  background: rgba(7, 19, 34, 0.6);
  border: 1px solid rgba(52, 163, 223, 0.1);
  border-radius: 10px;
  padding: 20px 22px;
  backdrop-filter: blur(8px);
}
.pp-toc-label {
  font-size: 0.7rem; font-weight: 700; letter-spacing: 0.1em;
  text-transform: uppercase; color: var(--pp-sky); opacity: 0.8;
  margin: 0 0 14px;
}
.pp-toc-list {
  list-style: none; margin: 0; padding: 0;
  display: flex; flex-direction: column; gap: 2px;
}
.pp-toc-list li { margin: 0; }
.pp-toc-list a {
  display: flex; align-items: baseline; gap: 8px;
  font-size: 0.8rem; line-height: 1.5;
  color: rgba(184, 196, 204, 0.72);
  text-decoration: none; padding: 5px 6px; border-radius: 5px;
  transition: background 0.15s, color 0.15s;
}
.pp-toc-list a:hover {
  color: var(--pp-mist); background: rgba(52, 163, 223, 0.06);
}
.pp-toc-num {
  font-size: 0.67rem; color: rgba(52, 163, 223, 0.5);
  font-weight: 600; flex-shrink: 0; width: 18px;
  font-variant-numeric: tabular-nums;
}

/* Contact Card */
.pp-contact-card {
  background: rgba(7, 19, 34, 0.5);
  border: 1px solid rgba(52, 163, 223, 0.08);
  border-radius: 10px;
  padding: 18px 22px;
  backdrop-filter: blur(8px);
}
.pp-contact-label {
  font-size: 0.7rem; font-weight: 700; letter-spacing: 0.1em;
  text-transform: uppercase; color: rgba(184, 196, 204, 0.55);
  margin: 0 0 12px;
}
.pp-contact-addr {
  font-style: normal; font-size: 0.82rem; line-height: 1.85;
  color: rgba(184, 196, 204, 0.72);
}
.pp-contact-name {
  display: block; font-weight: 700; color: rgba(233, 238, 242, 0.88);
  margin-bottom: 2px;
}
.pp-contact-addr a {
  color: var(--pp-sky); text-decoration: underline;
  text-underline-offset: 2px; font-size: 0.82rem;
}
.pp-contact-addr a:hover { color: var(--pp-mist); }

/* ── RESPONSIVE ──────────────────────────────────────────────── */
@media (max-width: 960px) {
  .pp-layout {
    grid-template-columns: 1fr;
    gap: 0;
  }
  .pp-sidebar {
    position: static;
    flex-direction: row; flex-wrap: wrap;
    gap: 16px;
    margin-top: 40px;
    padding-top: 32px;
    border-top: 1px solid rgba(52, 163, 223, 0.07);
    order: -1;
  }
  .pp-toc-card, .pp-contact-card { flex: 1 1 260px; }
}

@media (max-width: 600px) {
  .pp-layout { padding: 32px 0 56px; }
  .pp-sidebar { flex-direction: column; }
  .pp-toc-card, .pp-contact-card { flex: 1 1 100%; }
  .pp-body { font-size: 0.9rem; }
  .pp-section { padding: 24px 0; }
}
