/* ==============================================================
   Activlink — SaaS-style premium static site
   Palette: deep navy + electric blue + teal accent + cream
   Mobile-first, custom CSS
   ============================================================== */

:root {
  --navy-950: #02132A;
  --navy-900: #061A33;
  --navy-800: #0A2540;
  --navy-700: #102F55;
  --navy-600: #1A406F;

  --blue-600: #1556E0;
  --blue-500: #1E6BFF;
  --blue-400: #4F8CFF;
  --blue-300: #82AEFF;

  --teal-600: #0F766E;
  --teal-500: #14B8A6;
  --teal-400: #2DD4BF;
  --teal-100: #CCFBF1;

  --cream: #FAF6EE;
  --cream-2: #F4EEE2;
  --sand: #EDE5D2;
  --paper: #FFFFFF;
  --line: #E5DECB;
  --line-2: #E2E8F0;

  --ink: #061A33;
  --ink-2: #1F3354;
  --muted: #56677F;
  --muted-2: #94A3B8;

  --shadow-xs: 0 1px 2px rgba(6,26,51,.06);
  --shadow-sm: 0 2px 6px rgba(6,26,51,.06), 0 1px 2px rgba(6,26,51,.04);
  --shadow-md: 0 10px 30px rgba(6,26,51,.08), 0 3px 8px rgba(6,26,51,.05);
  --shadow-lg: 0 30px 80px rgba(6,26,51,.18), 0 8px 24px rgba(6,26,51,.08);
  --shadow-dark: 0 30px 80px rgba(0,0,0,.4);

  --r-sm: 8px; --r-md: 14px; --r-lg: 20px; --r-xl: 28px; --r-2xl: 36px;
  --container: 1220px;
  --gutter: 1.25rem;

  --font-head: 'Plus Jakarta Sans', 'Inter', system-ui, sans-serif;
  --font-body: 'Inter', system-ui, sans-serif;

  --t-fast: 180ms cubic-bezier(.2,.7,.3,1);
  --t-med: 320ms cubic-bezier(.2,.7,.3,1);
}

/* Reset */
*,*::before,*::after { box-sizing: border-box; }
html { scroll-behavior: smooth; -webkit-text-size-adjust: 100%; }
body {
  margin: 0;
  font-family: var(--font-body);
  background: var(--cream);
  color: var(--ink);
  font-size: 16px;
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}
img, svg { display: block; max-width: 100%; height: auto; }
a { color: inherit; text-decoration: none; }
button { font: inherit; cursor: pointer; border: 0; background: transparent; color: inherit; }
ul { list-style: none; padding: 0; margin: 0; }
h1,h2,h3,h4,h5 { font-family: var(--font-head); margin: 0; color: var(--ink); font-weight: 700; line-height: 1.1; letter-spacing: -0.02em; }
p { margin: 0; color: var(--ink-2); }

.sr-only { position: absolute; width: 1px; height: 1px; padding: 0; margin: -1px; overflow: hidden; clip: rect(0,0,0,0); white-space: nowrap; border: 0; }
.skip-link { position: absolute; top: -40px; left: 1rem; background: var(--navy-900); color: #fff; padding: .5rem .9rem; border-radius: 8px; z-index: 200; }
.skip-link:focus { top: 1rem; }
::selection { background: rgba(20,184,166,.25); color: var(--navy-900); }

.container { width: 100%; max-width: var(--container); margin: 0 auto; padding: 0 var(--gutter); }
@media (min-width: 768px) { :root { --gutter: 2rem; } }

/* Dot pattern background */
.dot-pattern {
  position: absolute; inset: 0;
  background-image: radial-gradient(circle, rgba(6,26,51,.07) 1px, transparent 1px);
  background-size: 26px 26px;
  pointer-events: none;
  -webkit-mask-image: linear-gradient(180deg, #000 30%, transparent 95%);
          mask-image: linear-gradient(180deg, #000 30%, transparent 95%);
}
.dot-pattern-dark { background-image: radial-gradient(circle, rgba(255,255,255,.06) 1px, transparent 1px); }

/* Buttons */
.btn {
  display: inline-flex; align-items: center; gap: .55rem;
  padding: .85rem 1.4rem;
  font-family: var(--font-head); font-weight: 600; font-size: .95rem;
  border-radius: 999px;
  border: 1.5px solid transparent;
  transition: transform var(--t-fast), background var(--t-fast), color var(--t-fast), box-shadow var(--t-med), border-color var(--t-fast);
  white-space: nowrap;
  cursor: pointer;
}
.btn:hover { transform: translateY(-1px); }
.btn:active { transform: translateY(0); }
.btn-sm { padding: .55rem 1rem; font-size: .85rem; }
.btn-lg { padding: 1rem 1.7rem; font-size: 1rem; }
.btn-block { display: flex; justify-content: center; width: 100%; }

.btn-dark { background: var(--navy-900); color: #fff; box-shadow: 0 12px 30px rgba(6,26,51,.25); }
.btn-dark:hover { background: var(--navy-800); box-shadow: 0 16px 36px rgba(6,26,51,.3); }

.btn-bright { background: linear-gradient(180deg, var(--blue-500), var(--blue-600)); color: #fff; box-shadow: 0 18px 42px rgba(30,107,255,.32); }
.btn-bright:hover { box-shadow: 0 22px 52px rgba(30,107,255,.38); }

.btn-outline { background: #fff; color: var(--ink); border-color: rgba(6,26,51,.14); }
.btn-outline:hover { border-color: var(--ink); }

.btn-outline-light { background: transparent; color: #fff; border-color: rgba(255,255,255,.32); }
.btn-outline-light:hover { background: rgba(255,255,255,.08); border-color: #fff; }

.btn-ghost { background: transparent; color: var(--ink); }
.btn-ghost:hover { background: rgba(6,26,51,.05); }

/* Eyebrow */
.eyebrow {
  display: inline-flex; align-items: center; gap: .5rem;
  font-family: var(--font-head);
  font-size: .78rem; font-weight: 700;
  letter-spacing: .14em;
  text-transform: uppercase;
  color: var(--blue-500);
  margin-bottom: 1rem;
}
.eyebrow-on-dark { color: var(--teal-400); }

/* Section heads */
.section-head { max-width: 760px; margin-bottom: 3rem; }
.section-head.center { text-align: center; margin-left: auto; margin-right: auto; }
.display {
  font-size: clamp(2rem, 1rem + 4.2vw, 3.6rem);
  font-weight: 800;
  letter-spacing: -0.03em;
  line-height: 1.05;
  margin-bottom: 1rem;
}
.display-light { color: #fff; }
.display.center { text-align: center; }
.lead { font-size: 1.05rem; color: var(--muted); max-width: 640px; }
.section-head.center .lead { margin-left: auto; margin-right: auto; }
.lead-light { color: rgba(255,255,255,.78); }

.text-gradient {
  background: linear-gradient(120deg, var(--blue-500) 0%, var(--teal-500) 100%);
  -webkit-background-clip: text; background-clip: text; -webkit-text-fill-color: transparent;
}
.text-gradient-bright {
  background: linear-gradient(120deg, var(--blue-400) 0%, var(--teal-400) 100%);
  -webkit-background-clip: text; background-clip: text; -webkit-text-fill-color: transparent;
}

/* ====================== HEADER ====================== */
.site-header {
  position: sticky; top: 0; z-index: 60;
  background: rgba(250, 246, 238, 0.78);
  backdrop-filter: saturate(180%) blur(14px);
  -webkit-backdrop-filter: saturate(180%) blur(14px);
  border-bottom: 1px solid transparent;
  transition: border-color var(--t-med), background var(--t-med);
}
.site-header.scrolled { background: rgba(255,255,255,.95); border-bottom-color: var(--line); }
.header-inner { display: flex; align-items: center; justify-content: space-between; padding: 1rem 0; gap: 1rem; }
.logo { display: inline-flex; align-items: center; }
.logo img { height: 48px; width: auto; }

.primary-nav { display: none; }
@media (min-width: 1024px) { .primary-nav { display: block; } }
.nav-list { display: flex; gap: 2.25rem; align-items: center; }
.nav-link {
  position: relative;
  font-weight: 500; font-size: .94rem; color: var(--ink-2);
  padding: .35rem 0;
  transition: color var(--t-fast);
}
.nav-link:hover { color: var(--ink); }
.nav-link.active { color: var(--ink); font-weight: 600; }

.header-cta { display: none; align-items: center; gap: 1.25rem; }
@media (min-width: 1024px) { .header-cta { display: inline-flex; } }
.link-login {
  font-weight: 500; font-size: .94rem; color: var(--ink-2);
  transition: color var(--t-fast);
}
.link-login:hover { color: var(--ink); }

.nav-toggle {
  display: inline-flex; flex-direction: column; gap: 5px;
  width: 42px; height: 42px; align-items: center; justify-content: center;
  border-radius: 12px;
  transition: background var(--t-fast);
}
.nav-toggle:hover { background: rgba(6,26,51,.06); }
.nav-toggle span { display: block; width: 22px; height: 2px; background: var(--ink); border-radius: 2px; transition: transform var(--t-fast), opacity var(--t-fast); }
.nav-toggle.is-open span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
.nav-toggle.is-open span:nth-child(2) { opacity: 0; }
.nav-toggle.is-open span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }
@media (min-width: 1024px) { .nav-toggle { display: none; } }

.mobile-menu {
  display: none;
  position: fixed; top: 0; left: 0; right: 0; bottom: 0;
  background: #fff;
  padding: 0;
  z-index: 80;
  box-shadow: 0 12px 32px rgba(6,26,51,.08);
  overflow-y: auto;
  -webkit-overflow-scrolling: touch;
}
.mobile-menu.is-open { display: flex; flex-direction: column; }
.mobile-menu-top {
  position: sticky; top: 0;
  display: flex; align-items: center; justify-content: space-between;
  padding: 1rem var(--gutter);
  background: #fff;
  border-bottom: 1px solid var(--line);
  z-index: 2;
}
.mobile-menu-top .logo img { height: 40px; width: auto; }
.mobile-close {
  width: 42px; height: 42px;
  display: inline-grid; place-items: center;
  border-radius: 12px;
  background: rgba(6,26,51,.06);
  color: var(--ink);
  border: 1px solid var(--line);
  cursor: pointer;
  transition: background var(--t-fast), transform var(--t-fast);
}
.mobile-close:hover { background: rgba(6,26,51,.1); }
.mobile-close:active { transform: scale(.95); }
.mobile-menu ul { display: flex; flex-direction: column; padding: 1rem var(--gutter) 0; }
.mobile-menu ul li a { display: block; padding: 1rem 0; font-weight: 600; font-size: 1.1rem; color: var(--ink); border-bottom: 1px solid var(--line); }
.mobile-menu ul li a:hover { color: var(--blue-500); }
.mobile-menu-cta { display: flex; flex-direction: column; gap: .6rem; margin-top: auto; padding: 1.25rem var(--gutter) 1.5rem; border-top: 1px solid var(--line); background: var(--cream); }

/* ====================== HERO ====================== */
.hero {
  position: relative;
  padding: 3rem 0 5rem;
  overflow: hidden;
}
@media (min-width: 768px) { .hero { padding: 5rem 0 7rem; } }
.hero-glow {
  position: absolute; pointer-events: none;
  width: 80%; aspect-ratio: 1.5/1; max-width: 1100px;
  top: -10%; left: 50%; transform: translateX(-30%);
  background: radial-gradient(circle at 30% 30%, rgba(20,184,166,.18), transparent 55%),
              radial-gradient(circle at 70% 50%, rgba(30,107,255,.16), transparent 55%);
  filter: blur(50px);
  z-index: 0;
}

.hero-grid {
  position: relative; z-index: 1;
  display: grid; gap: 3rem;
  grid-template-columns: 1fr;
  align-items: start;
}
@media (min-width: 1024px) {
  .hero-grid { grid-template-columns: 1fr 1.15fr; gap: 3rem; align-items: center; }
}

.hero-copy { padding-top: .5rem; }

.hero-tag {
  display: inline-flex; align-items: center; gap: .55rem;
  padding: .45rem .85rem;
  background: #fff;
  border: 1px solid var(--line);
  border-radius: 999px;
  font-size: .82rem; color: var(--ink-2);
  box-shadow: var(--shadow-xs);
  margin-bottom: 1.5rem;
}
.hero-tag strong { color: var(--ink); font-weight: 700; }
.dot-live {
  width: 8px; height: 8px; border-radius: 50%;
  background: var(--teal-500);
  box-shadow: 0 0 0 4px rgba(20,184,166,.22);
  animation: pulse 2s ease-in-out infinite;
}
@keyframes pulse {
  0%,100% { box-shadow: 0 0 0 4px rgba(20,184,166,.22); }
  50% { box-shadow: 0 0 0 8px rgba(20,184,166,0); }
}

.hero-title {
  font-size: clamp(2.2rem, 1.2rem + 3.2vw, 3.9rem);
  letter-spacing: -0.035em;
  line-height: 1.02;
  font-weight: 800;
  margin-bottom: .65rem;
}
.hero-line { display: block; }
.hero-sub-headline {
  font-family: var(--font-head);
  font-size: clamp(1.1rem, .8rem + 1vw, 1.5rem);
  font-weight: 600;
  color: var(--muted);
  letter-spacing: -0.015em;
  margin-bottom: 1.5rem;
}
.hero-sub {
  font-size: 1.1rem;
  color: var(--ink-2);
  max-width: 540px;
  margin-bottom: 1.75rem;
}
.hero-sub strong { color: var(--ink); font-weight: 700; }

.hero-ctas { display: flex; flex-wrap: wrap; gap: .6rem; margin-bottom: 1.5rem; }

.hero-meta { display: flex; flex-wrap: wrap; gap: 1.25rem; color: var(--ink-2); font-size: .9rem; font-weight: 500; }
.meta-item { display: inline-flex; align-items: center; gap: .35rem; }
.meta-item svg { color: var(--teal-500); }
.stars { display: inline-flex; gap: 1px; color: var(--teal-500); }

/* Hero visual */
.hero-visual { position: relative; min-height: 380px; }
.hero-browser {
  background: #fff;
  border-radius: var(--r-lg);
  box-shadow: var(--shadow-lg);
  overflow: hidden;
  border: 1px solid rgba(6,26,51,.08);
  animation: rise .9s var(--t-med) both;
  animation-delay: .12s;
}
@keyframes rise { from { opacity: 0; transform: translateY(28px); } to { opacity: 1; transform: translateY(0); } }
.browser-bar {
  display: flex; align-items: center; gap: .4rem;
  padding: .6rem .85rem;
  background: #F6F4EF;
  border-bottom: 1px solid var(--line);
}
.browser-dot { width: 10px; height: 10px; border-radius: 50%; background: #D8D2C2; }
.browser-dot:nth-child(2) { background: #E4DDC9; }
.browser-dot:nth-child(3) { background: #EDE7D4; }
.browser-url {
  flex: 1; text-align: center;
  font-family: var(--font-body); font-size: .78rem; color: var(--muted);
  background: #fff; padding: .3rem .8rem;
  border-radius: 999px; border: 1px solid var(--line);
  margin: 0 .6rem;
}
.browser-live {
  display: inline-flex; align-items: center; gap: .35rem;
  font-size: .75rem; font-weight: 600; color: var(--teal-600);
  padding: .25rem .6rem;
  background: rgba(20,184,166,.12);
  border-radius: 999px;
}
.live-pulse {
  width: 6px; height: 6px; border-radius: 50%;
  background: var(--teal-500);
  box-shadow: 0 0 0 3px rgba(20,184,166,.25);
  animation: pulse 2s ease-in-out infinite;
}
.hero-browser img { width: 100%; height: auto; display: block; }

.hero-phone {
  position: absolute; right: -1rem; bottom: -2rem;
  width: 30%; max-width: 220px; min-width: 140px;
  background: #fff;
  padding: 6px;
  border-radius: 28px;
  box-shadow: var(--shadow-lg);
  border: 1px solid rgba(6,26,51,.08);
  animation: rise .9s var(--t-med) both;
  animation-delay: .35s;
  z-index: 2;
}
.hero-phone img { width: 100%; border-radius: 22px; }

/* Floating pills */
.float-pill {
  position: absolute;
  background: #fff;
  border-radius: var(--r-md);
  padding: .8rem 1rem;
  box-shadow: var(--shadow-md);
  border: 1px solid var(--line);
  display: flex; align-items: center; gap: .7rem;
  animation: rise .9s var(--t-med) both;
  z-index: 3;
}
.float-pill-tl { top: -1rem; left: -1rem; animation-delay: .5s; }
.float-pill-br { bottom: 4rem; left: -1.5rem; animation-delay: .65s; flex-direction: column; align-items: flex-start; gap: .55rem; min-width: 200px; }
@media (max-width: 768px) {
  .float-pill-tl { top: -.5rem; left: .5rem; }
  .float-pill-br { left: .5rem; bottom: -1rem; }
}
.pill-icon {
  width: 36px; height: 36px; border-radius: 10px;
  display: grid; place-items: center;
  background: rgba(20,184,166,.12); color: var(--teal-500);
}
.pill-label { font-family: var(--font-head); font-weight: 700; font-size: .85rem; color: var(--ink); }
.pill-meta { font-size: .72rem; color: var(--muted); }
.pill-tag-live {
  display: inline-flex; align-items: center; gap: .35rem;
  font-size: .72rem; font-weight: 700; color: var(--teal-600);
  padding: .2rem .55rem;
  background: rgba(20,184,166,.12);
  border-radius: 999px;
}
.pill-stack { display: flex; align-items: center; gap: .6rem; }
.pill-staff { display: flex; }
.staff-dot {
  width: 22px; height: 22px; border-radius: 50%;
  border: 2px solid #fff; margin-left: -7px;
}
.staff-dot:first-child { margin-left: 0; }
.s-1 { background: linear-gradient(135deg, #1E6BFF, #4F8CFF); }
.s-2 { background: linear-gradient(135deg, #14B8A6, #2DD4BF); }
.s-3 { background: linear-gradient(135deg, #F59E0B, #FCD34D); }
.s-4 { background: linear-gradient(135deg, #6366F1, #A78BFA); }

/* ====================== TRUST ====================== */
.trust { padding: 3rem 0 4rem; background: var(--cream); position: relative; }
.trust-label {
  text-align: center;
  font-family: var(--font-head);
  font-size: .78rem; font-weight: 700; letter-spacing: .14em;
  text-transform: uppercase; color: var(--muted);
  margin-bottom: 1.5rem;
}
.trust-cards {
  display: grid; gap: .85rem;
  grid-template-columns: 1fr;
}
@media (min-width: 640px) { .trust-cards { grid-template-columns: repeat(2, 1fr); } }
@media (min-width: 1024px) { .trust-cards { grid-template-columns: repeat(4, 1fr); } }
.trust-card {
  display: flex; align-items: center; gap: .9rem;
  padding: 1rem 1.15rem;
  background: #fff;
  border: 1px solid var(--line);
  border-radius: var(--r-md);
  box-shadow: var(--shadow-xs);
  transition: transform var(--t-fast), box-shadow var(--t-med), border-color var(--t-fast);
}
.trust-card:hover { transform: translateY(-2px); box-shadow: var(--shadow-sm); border-color: rgba(30,107,255,.25); }
.trust-card-icon {
  width: 40px; height: 40px; border-radius: 10px;
  display: grid; place-items: center;
  background: rgba(30,107,255,.08); color: var(--blue-500);
  flex-shrink: 0;
}
.trust-card-title { font-family: var(--font-head); font-weight: 700; font-size: .92rem; color: var(--ink); }
.trust-card-sub { font-size: .8rem; color: var(--muted); }

/* ====================== PILLARS ====================== */
.pillars { padding: 5rem 0 6rem; }
@media (min-width: 768px) { .pillars { padding: 7rem 0; } }
.pillars-head {
  display: grid; gap: 1.5rem;
  grid-template-columns: 1fr;
  margin-bottom: 3rem;
  align-items: end;
}
@media (min-width: 1024px) { .pillars-head { grid-template-columns: 1.4fr 1fr; gap: 3rem; } }
.pillars-lead { color: var(--muted); font-size: 1.02rem; }

.pillar-grid {
  display: grid; gap: 1.25rem;
  grid-template-columns: 1fr;
}
@media (min-width: 640px) { .pillar-grid { grid-template-columns: repeat(2, 1fr); } }
@media (min-width: 1024px) { .pillar-grid { grid-template-columns: repeat(4, 1fr); } }

.pillar-card {
  position: relative;
  background: #fff;
  border: 1px solid var(--line);
  border-radius: var(--r-lg);
  padding: 1.75rem;
  transition: transform var(--t-med), box-shadow var(--t-med), border-color var(--t-med);
  display: flex; flex-direction: column; gap: .6rem;
}
.pillar-card:hover { transform: translateY(-4px); box-shadow: var(--shadow-md); border-color: rgba(30,107,255,.2); }
.pillar-icon {
  width: 50px; height: 50px;
  border-radius: 12px;
  background: rgba(30,107,255,.08); color: var(--blue-500);
  display: grid; place-items: center;
  margin-bottom: .5rem;
}
.pillar-card h3 { font-size: 1.2rem; font-weight: 700; }
.pillar-card p { font-size: .92rem; color: var(--muted); line-height: 1.55; flex: 1; }
.card-link {
  display: inline-flex; align-items: center; gap: .3rem;
  margin-top: .5rem;
  font-family: var(--font-head);
  font-size: .85rem; font-weight: 600; color: var(--blue-500);
  transition: gap var(--t-fast);
}
.card-link:hover { gap: .5rem; }

.status-badge {
  display: inline-flex; align-items: center; gap: .3rem;
  align-self: flex-start;
  padding: .25rem .6rem;
  font-family: var(--font-head); font-size: .7rem; font-weight: 700;
  border-radius: 999px;
  letter-spacing: .03em;
}
.status-live { background: rgba(20,184,166,.12); color: var(--teal-600); }
.status-soon { background: rgba(245,158,11,.12); color: #B45309; }
.status-amber { background: rgba(245,158,11,.12); color: #B45309; }

/* ====================== ONBOARDING ====================== */
.onboard { padding: 5rem 0 6rem; background: var(--cream-2); position: relative; }
@media (min-width: 768px) { .onboard { padding: 7rem 0; } }

.steps-grid {
  display: grid; gap: 1.25rem;
  grid-template-columns: 1fr;
  position: relative;
}
@media (min-width: 768px) { .steps-grid { grid-template-columns: repeat(3, 1fr); } }
@media (min-width: 768px) {
  .steps-grid::before {
    content: ""; position: absolute;
    top: 4.5rem; left: 12%; right: 12%; height: 2px;
    background: repeating-linear-gradient(90deg, var(--line) 0 8px, transparent 8px 14px);
    z-index: 0;
  }
}
.step-card {
  background: #fff;
  border: 1px solid var(--line);
  border-radius: var(--r-lg);
  padding: 1.75rem;
  position: relative; z-index: 1;
  transition: transform var(--t-med), box-shadow var(--t-med), border-color var(--t-med);
}
.step-card:hover { transform: translateY(-4px); box-shadow: var(--shadow-md); border-color: rgba(30,107,255,.2); }
.step-top { display: flex; align-items: center; justify-content: space-between; margin-bottom: 1rem; }
.step-num {
  font-family: var(--font-head); font-weight: 800; font-size: 1.5rem;
  background: linear-gradient(135deg, var(--blue-500), var(--teal-500));
  -webkit-background-clip: text; background-clip: text;
  -webkit-text-fill-color: transparent;
}
.step-time {
  display: inline-flex; align-items: center; gap: .35rem;
  padding: .25rem .65rem;
  font-family: var(--font-head); font-size: .72rem; font-weight: 700;
  background: rgba(20,184,166,.12); color: var(--teal-600);
  border-radius: 999px;
  letter-spacing: .04em;
  text-transform: uppercase;
}
.time-dot { width: 6px; height: 6px; border-radius: 50%; background: var(--teal-500); }
.step-icon {
  width: 48px; height: 48px;
  border-radius: 12px;
  background: rgba(30,107,255,.08); color: var(--blue-500);
  display: grid; place-items: center;
  margin-bottom: 1rem;
}
.step-card h3 { font-size: 1.15rem; margin-bottom: .6rem; }
.step-card > p { font-size: .92rem; color: var(--muted); margin-bottom: 1rem; line-height: 1.55; }
.step-list { padding-top: 1rem; border-top: 1px solid var(--line); display: flex; flex-direction: column; gap: .55rem; }
.step-list li { display: flex; align-items: center; gap: .55rem; font-size: .88rem; color: var(--ink-2); }
.check-dot {
  width: 16px; height: 16px; border-radius: 50%;
  background: rgba(20,184,166,.12);
  display: inline-grid; place-items: center;
  position: relative; flex-shrink: 0;
}
.check-dot::after {
  content: ""; width: 6px; height: 3px;
  border-left: 2px solid var(--teal-500); border-bottom: 2px solid var(--teal-500);
  transform: rotate(-45deg) translate(0px, -1px);
}

.onboard-cta { text-align: center; margin-top: 3rem; display: flex; flex-direction: column; align-items: center; gap: .75rem; }
.onboard-cta-foot { font-size: .85rem; color: var(--muted); }

/* ====================== STATS DARK ====================== */
.stats-dark, .security-dark, .final-cta {
  background: linear-gradient(180deg, var(--navy-900) 0%, var(--navy-800) 100%);
  color: #fff;
  position: relative;
  overflow: hidden;
}
.stats-dark { padding: 5rem 0 6rem; }
@media (min-width: 768px) { .stats-dark { padding: 7rem 0; } }

.stats-dark .section-head { margin-bottom: 3rem; }
.stats-grid {
  position: relative;
  display: grid; gap: 2rem 1.5rem;
  grid-template-columns: repeat(2, 1fr);
}
@media (min-width: 768px) { .stats-grid { grid-template-columns: repeat(4, 1fr); } }
.stat-block { padding-left: 0; }
.stat-number {
  font-family: var(--font-head); font-weight: 800;
  font-size: clamp(2.2rem, 1rem + 4vw, 3.6rem);
  letter-spacing: -0.03em;
  line-height: 1;
  background: linear-gradient(135deg, var(--blue-400), var(--teal-400));
  -webkit-background-clip: text; background-clip: text;
  -webkit-text-fill-color: transparent;
  margin-bottom: .65rem;
}
.stat-suffix { font-size: .7em; }
.stat-label { color: #fff; font-weight: 600; font-size: 1rem; margin-bottom: .25rem; }
.stat-foot { color: rgba(255,255,255,.6); font-size: .82rem; }

/* ====================== FEATURE TABS ====================== */
.feature-tabs { padding: 5rem 0 6rem; background: var(--cream); }
@media (min-width: 768px) { .feature-tabs { padding: 7rem 0; } }
.tab-nav {
  display: flex; flex-wrap: wrap; gap: .4rem;
  justify-content: center;
  background: #fff;
  border: 1px solid var(--line);
  border-radius: 999px;
  padding: .35rem;
  margin: 2rem auto 2.5rem;
  max-width: 760px;
  box-shadow: var(--shadow-xs);
}
@media (max-width: 640px) { .tab-nav { border-radius: var(--r-md); } }
.tab-btn {
  padding: .65rem 1.1rem;
  border-radius: 999px;
  font-family: var(--font-head);
  font-size: .88rem; font-weight: 600;
  color: var(--muted);
  transition: background var(--t-fast), color var(--t-fast);
}
.tab-btn:hover { color: var(--ink); }
.tab-btn.active { background: var(--navy-900); color: #fff; }
.tab-soon {
  display: inline-block; margin-left: .35rem;
  padding: .1rem .4rem; border-radius: 4px;
  font-size: .65rem; font-weight: 700;
  background: rgba(245,158,11,.15); color: #B45309;
}
.tab-btn.active .tab-soon { background: rgba(255,255,255,.18); color: #FCD34D; }

.tab-panels { position: relative; }
.tab-panel { display: none; animation: fadeIn .4s ease both; }
.tab-panel.active { display: block; }
@keyframes fadeIn { from { opacity: 0; transform: translateY(8px); } to { opacity: 1; transform: translateY(0); } }

.tab-grid {
  display: grid; gap: 2.5rem;
  grid-template-columns: 1fr;
  align-items: center;
}
@media (min-width: 1024px) { .tab-grid { grid-template-columns: 1fr 1.3fr; gap: 4rem; } }
.tab-copy h3 { font-size: clamp(1.5rem, 1rem + 1.5vw, 2.2rem); margin: 1rem 0 1rem; }
.tab-copy p { color: var(--muted); margin-bottom: 1.5rem; }
.tab-copy .step-list { border-top: 0; padding-top: 0; }

.tab-shot {
  background: #fff;
  border-radius: var(--r-lg);
  box-shadow: var(--shadow-lg);
  overflow: hidden;
  border: 1px solid var(--line);
}
.tab-shot img { width: 100%; height: auto; display: block; }
.tab-shot.tab-shot-phone {
  background: transparent; box-shadow: none; border: 0;
  display: flex; justify-content: center;
}
.tab-shot.tab-shot-phone img {
  max-width: 320px;
  background: #fff;
  padding: 6px;
  border-radius: 28px;
  box-shadow: var(--shadow-lg);
}
.tab-bar .browser-url { font-size: .72rem; }

.tab-shot-soon { background: transparent; border: 0; box-shadow: none; }
.soon-card {
  background: #fff;
  border: 1px dashed var(--line);
  border-radius: var(--r-lg);
  padding: 3rem 2rem;
  text-align: center;
}
.soon-glyph {
  width: 64px; height: 64px;
  border-radius: 16px;
  background: rgba(245,158,11,.12); color: #B45309;
  display: grid; place-items: center;
  margin: 0 auto 1rem;
}
.soon-card h4 { font-size: 1.2rem; margin-bottom: .5rem; }
.soon-card p { color: var(--muted); margin-bottom: 1.25rem; }

/* ====================== SECURITY ====================== */
.security-dark { padding: 5rem 0 6rem; }
@media (min-width: 768px) { .security-dark { padding: 7rem 0; } }
.security-grid {
  display: grid; gap: 1.25rem;
  grid-template-columns: 1fr;
}
@media (min-width: 640px) { .security-grid { grid-template-columns: repeat(2, 1fr); } }
@media (min-width: 1024px) { .security-grid { grid-template-columns: repeat(3, 1fr); } }
.security-card {
  background: rgba(255,255,255,.04);
  border: 1px solid rgba(255,255,255,.08);
  border-radius: var(--r-lg);
  padding: 1.75rem;
  transition: background var(--t-med), border-color var(--t-med), transform var(--t-med);
  backdrop-filter: blur(8px);
  position: relative; z-index: 1;
}
.security-card:hover { background: rgba(255,255,255,.06); border-color: rgba(45,212,191,.3); transform: translateY(-3px); }
.sec-icon {
  width: 44px; height: 44px; border-radius: 11px;
  background: rgba(45,212,191,.12); color: var(--teal-400);
  display: grid; place-items: center;
  margin-bottom: 1rem;
}
.sec-tag {
  display: inline-block; font-family: var(--font-body);
  font-size: .72rem; font-weight: 600;
  padding: .25rem .55rem;
  background: rgba(255,255,255,.06);
  border: 1px solid rgba(255,255,255,.1);
  border-radius: 6px;
  color: rgba(255,255,255,.75);
  margin-bottom: 1rem;
}
.security-card h3 { font-size: 1.1rem; color: #fff; margin-bottom: .5rem; }
.security-card p { color: rgba(255,255,255,.7); font-size: .92rem; line-height: 1.55; }

.alignment-row {
  margin-top: 3rem; padding-top: 2rem;
  border-top: 1px solid rgba(255,255,255,.08);
  display: flex; flex-direction: column; align-items: flex-start; gap: 1rem;
  position: relative; z-index: 1;
}
@media (min-width: 1024px) { .alignment-row { flex-direction: row; align-items: center; } }
.alignment-label {
  font-family: var(--font-head); font-size: .78rem; font-weight: 700;
  letter-spacing: .14em; text-transform: uppercase;
  color: rgba(255,255,255,.55);
}
.alignment-chips { display: flex; flex-wrap: wrap; gap: .5rem; }
.chip {
  padding: .4rem .85rem;
  background: rgba(255,255,255,.05);
  border: 1px solid rgba(255,255,255,.1);
  border-radius: 999px;
  font-size: .82rem; color: rgba(255,255,255,.85);
  font-weight: 500;
}
.chip-light { background: rgba(20,184,166,.12); border-color: rgba(20,184,166,.2); color: var(--teal-600); }

/* ====================== TESTIMONIALS ====================== */
.testimonials { padding: 5rem 0 6rem; }
@media (min-width: 768px) { .testimonials { padding: 7rem 0; } }
.testimonials-head {
  display: grid; gap: 1.25rem;
  grid-template-columns: 1fr;
  margin-bottom: 2.5rem;
  align-items: end;
}
@media (min-width: 1024px) { .testimonials-head { grid-template-columns: 1.7fr 1fr; gap: 3rem; } }
.rating-card {
  display: inline-flex; align-items: center; gap: .55rem;
  padding: .75rem 1.1rem;
  background: #fff;
  border: 1px solid var(--line);
  border-radius: 999px;
  box-shadow: var(--shadow-xs);
  font-size: .92rem;
  align-self: flex-start;
}
.stars-lg svg { width: 18px; height: 18px; }
.rating-foot { color: var(--muted); }

.testimonial-grid {
  display: grid; gap: 1.25rem;
  grid-template-columns: 1fr;
}
@media (min-width: 768px) { .testimonial-grid { grid-template-columns: repeat(3, 1fr); } }
.t-card {
  position: relative;
  background: #fff;
  border: 1px solid var(--line);
  border-radius: var(--r-lg);
  padding: 2rem 1.75rem 1.75rem;
  margin: 0;
  overflow: hidden;
  transition: transform var(--t-med), box-shadow var(--t-med);
}
.t-card:hover { transform: translateY(-4px); box-shadow: var(--shadow-md); }
.t-quote-mark {
  position: absolute; top: .8rem; right: 1.5rem;
  font-family: 'Georgia', serif;
  font-size: 5rem; line-height: 1;
  color: rgba(20,184,166,.25);
}
.t-card .stars { margin: .25rem 0 1rem; }
.t-card blockquote {
  font-size: .96rem; color: var(--ink-2); line-height: 1.6;
  margin: 0 0 1.5rem;
  font-weight: 500;
}
.t-card figcaption { display: flex; align-items: center; gap: .8rem; }
.avatar {
  width: 44px; height: 44px; border-radius: 50%;
  display: grid; place-items: center;
  font-family: var(--font-head); font-weight: 700; color: #fff;
  font-size: .9rem; letter-spacing: .03em;
  flex-shrink: 0;
}
.avatar-blue { background: linear-gradient(135deg, #1E6BFF, #4F8CFF); }
.avatar-teal { background: linear-gradient(135deg, #14B8A6, #2DD4BF); }
.avatar-orange { background: linear-gradient(135deg, #F59E0B, #FCD34D); }
.t-name { font-weight: 700; color: var(--ink); font-size: .94rem; }
.t-role { font-size: .82rem; color: var(--muted); }
.t-loc { font-size: .78rem; color: var(--teal-600); font-weight: 600; margin-top: .1rem; }

/* ====================== COMPARE ====================== */
.compare { padding: 5rem 0 6rem; background: var(--cream-2); }
@media (min-width: 768px) { .compare { padding: 7rem 0; } }
.compare-table-wrap {
  background: #fff;
  border: 1px solid var(--line);
  border-radius: var(--r-lg);
  overflow: hidden;
  box-shadow: var(--shadow-sm);
}
.compare-table { width: 100%; border-collapse: collapse; min-width: 680px; }
.compare-table th, .compare-table td {
  padding: 1.1rem 1.25rem;
  text-align: center;
  border-bottom: 1px solid var(--line);
  font-size: .92rem;
}
.compare-table thead th {
  font-family: var(--font-head); font-weight: 700;
  color: var(--ink); background: var(--cream);
  font-size: .92rem;
}
.compare-table tbody th {
  text-align: left; font-weight: 600;
  background: rgba(250,246,238,.45);
}
.th-highlight, .td-highlight {
  background: linear-gradient(180deg, rgba(30,107,255,.07), rgba(20,184,166,.05));
}
.th-highlight { background: linear-gradient(180deg, rgba(30,107,255,.14), rgba(20,184,166,.08)); }
.th-brand { display: inline-flex; align-items: center; gap: .4rem; color: var(--blue-500); font-weight: 700; }
.th-brand-mark {
  width: 22px; height: 22px; border-radius: 6px;
  background: linear-gradient(135deg, var(--blue-500), var(--teal-500));
  color: #fff; font-size: .8rem;
  display: inline-grid; place-items: center;
}
.compare-table tr:last-child th, .compare-table tr:last-child td { border-bottom: 0; }
.check { color: var(--teal-500); font-weight: 700; font-size: 1.2rem; }
.x { color: #CBD5E1; font-weight: 700; font-size: 1.1rem; }
.partial { color: #F59E0B; font-weight: 700; }
.soon-tag {
  display: inline-block;
  padding: .25rem .65rem;
  font-size: .7rem; font-weight: 700;
  background: rgba(245,158,11,.15); color: #B45309;
  border-radius: 999px;
  letter-spacing: .04em;
}
.compare-foot { text-align: center; color: var(--muted); margin-top: 1.5rem; font-size: .92rem; }

@media (max-width: 640px) {
  .compare-table-wrap { overflow-x: auto; }
}

/* ====================== PRICING ====================== */
.pricing { padding: 5rem 0 6rem; }
@media (min-width: 768px) { .pricing { padding: 7rem 0; } }
.pricing-grid {
  display: grid; gap: 1.25rem;
  grid-template-columns: 1fr;
  max-width: 1100px;
  margin: 0 auto;
}
@media (min-width: 768px) { .pricing-grid { grid-template-columns: repeat(3, 1fr); align-items: stretch; } }
.price-card {
  background: #fff;
  border: 1px solid var(--line);
  border-radius: var(--r-xl);
  padding: 2rem 1.75rem;
  display: flex; flex-direction: column;
  position: relative;
  transition: transform var(--t-med), box-shadow var(--t-med);
}
.price-card:hover { transform: translateY(-4px); box-shadow: var(--shadow-md); }
.price-card-feature {
  background: linear-gradient(180deg, var(--navy-900), var(--navy-800));
  color: #fff;
  border-color: transparent;
  box-shadow: var(--shadow-lg);
  transform: translateY(-6px);
}
.price-card-feature:hover { transform: translateY(-10px); }
.price-badge {
  position: absolute; top: -.85rem; left: 50%; transform: translateX(-50%);
  padding: .4rem .9rem;
  font-family: var(--font-head); font-size: .72rem; font-weight: 700; letter-spacing: .08em;
  text-transform: uppercase;
  background: linear-gradient(135deg, var(--teal-400), var(--blue-400));
  color: var(--navy-900);
  border-radius: 999px;
}
.price-head { margin-bottom: 1.25rem; }
.price-head h3 { font-size: 1.3rem; margin-bottom: .25rem; }
.price-card-feature h3 { color: #fff; }
.price-sub { font-size: .9rem; color: var(--muted); }
.price-card-feature .price-sub { color: rgba(255,255,255,.7); }
.price-amount { display: flex; align-items: baseline; gap: .35rem; margin-bottom: 1.5rem; }
.price-num { font-family: var(--font-head); font-weight: 800; font-size: 2.25rem; letter-spacing: -0.02em; color: var(--ink); }
.price-card-feature .price-num { color: #fff; }
.price-period { color: var(--muted); font-size: .9rem; }
.price-card-feature .price-period { color: rgba(255,255,255,.6); }
.price-list { margin-top: 1.5rem; padding-top: 1.25rem; border-top: 1px solid var(--line); display: flex; flex-direction: column; gap: .65rem; }
.price-card-feature .price-list { border-top-color: rgba(255,255,255,.12); }
.price-list li { display: flex; align-items: center; gap: .55rem; font-size: .9rem; color: var(--ink-2); }
.price-card-feature .price-list li { color: rgba(255,255,255,.85); }
.price-card-feature .check-dot { background: rgba(45,212,191,.16); }
.price-card-feature .check-dot::after { border-color: var(--teal-400); }

.pricing-foot { text-align: center; color: var(--muted); font-size: .9rem; margin-top: 2.5rem; }

/* ====================== FAQ ====================== */
.faq { padding: 5rem 0 6rem; background: var(--cream-2); }
@media (min-width: 768px) { .faq { padding: 7rem 0; } }
.faq-grid {
  display: grid; gap: 3rem;
  grid-template-columns: 1fr;
}
@media (min-width: 1024px) { .faq-grid { grid-template-columns: .9fr 1.3fr; gap: 4rem; } }
.faq-side .display { font-size: clamp(1.8rem, 1rem + 2.5vw, 2.6rem); margin-bottom: 1.5rem; }
.faq-side .lead a { color: var(--blue-500); font-weight: 600; }
.faq-cta-card {
  margin-top: 2rem;
  padding: 1.5rem;
  background: #fff;
  border: 1px solid var(--line);
  border-radius: var(--r-lg);
  box-shadow: var(--shadow-xs);
}
.faq-cta-card strong { display: block; font-family: var(--font-head); font-size: 1rem; margin-bottom: .35rem; color: var(--ink); }
.faq-cta-card p { font-size: .9rem; color: var(--muted); margin-bottom: .9rem; }

.faq-list { display: flex; flex-direction: column; gap: .75rem; }
.faq-item {
  background: #fff;
  border: 1px solid var(--line);
  border-radius: var(--r-md);
  transition: border-color var(--t-fast), box-shadow var(--t-med);
}
.faq-item:hover { border-color: rgba(30,107,255,.2); }
.faq-item[open] { border-color: rgba(30,107,255,.3); box-shadow: var(--shadow-sm); }
.faq-item summary {
  list-style: none;
  cursor: pointer;
  padding: 1.1rem 1.4rem;
  font-family: var(--font-head);
  font-size: 1.02rem; font-weight: 600;
  color: var(--ink);
  display: flex; justify-content: space-between; align-items: center; gap: 1rem;
}
.faq-item summary::-webkit-details-marker { display: none; }
.faq-item summary::after {
  content: ""; flex-shrink: 0;
  width: 12px; height: 12px;
  border-right: 2px solid var(--ink-2); border-bottom: 2px solid var(--ink-2);
  transform: rotate(45deg) translate(-2px, -2px);
  transition: transform var(--t-fast);
}
.faq-item[open] summary::after { transform: rotate(-135deg) translate(-2px, -2px); }
.faq-body { padding: 0 1.4rem 1.2rem; color: var(--muted); font-size: .94rem; line-height: 1.6; }

/* ====================== FINAL CTA (PREMIUM) ====================== */
.final-cta { padding: 6rem 0 7rem; position: relative; }
@media (min-width: 768px) { .final-cta { padding: 8rem 0 9rem; } }

.cta-mesh { position: absolute; inset: 0; pointer-events: none; overflow: hidden; z-index: 0; }
.mesh-orb { position: absolute; border-radius: 50%; filter: blur(80px); }
.mesh-orb-1 { width: 520px; height: 520px; background: rgba(20,184,166,.45); top: -160px; left: -180px; }
.mesh-orb-2 { width: 460px; height: 460px; background: rgba(30,107,255,.45); bottom: -160px; right: -120px; }
.mesh-orb-3 { width: 260px; height: 260px; background: rgba(99,102,241,.35); top: 50%; left: 40%; transform: translate(-50%,-50%); }
.mesh-grid {
  position: absolute; inset: 0;
  background-image:
    linear-gradient(rgba(255,255,255,.04) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255,255,255,.04) 1px, transparent 1px);
  background-size: 60px 60px;
  -webkit-mask-image: radial-gradient(ellipse at 50% 50%, #000 30%, transparent 75%);
          mask-image: radial-gradient(ellipse at 50% 50%, #000 30%, transparent 75%);
}

.cta-grid {
  position: relative; z-index: 1;
  display: grid; gap: 4rem;
  grid-template-columns: 1fr;
  align-items: center;
}
@media (min-width: 1024px) { .cta-grid { grid-template-columns: 1.1fr 1fr; gap: 5rem; } }

.cta-text .display { margin: 1rem 0 1.2rem; font-size: clamp(2.2rem, 1.5rem + 3vw, 3.4rem); }
.cta-text .lead { margin-bottom: 2rem; }

.cta-trust {
  display: flex; align-items: center; gap: 1rem; flex-wrap: wrap;
  margin-bottom: 2rem;
}
.cta-avatars { display: flex; }
.avatar-xs {
  width: 36px; height: 36px;
  border: 2px solid var(--navy-900);
  margin-left: -10px;
  font-size: .72rem;
}
.avatar-xs:first-child { margin-left: 0; }
.avatar-purple { background: linear-gradient(135deg, #6366F1, #A78BFA); }
.cta-trust-text { color: rgba(255,255,255,.85); font-size: .92rem; }
.cta-trust-text strong { color: #fff; font-weight: 700; }
.cta-trust-text .stars { color: var(--teal-400); margin-bottom: .15rem; }
.stars-sm svg { width: 13px; height: 13px; }

.cta-actions {
  display: flex; flex-wrap: wrap; gap: .75rem;
  margin-bottom: 2.5rem;
}

.cta-stats {
  display: grid; gap: 1rem;
  grid-template-columns: repeat(2, 1fr);
  padding-top: 2rem;
  border-top: 1px solid rgba(255,255,255,.1);
}
@media (min-width: 640px) { .cta-stats { grid-template-columns: repeat(4, 1fr); } }
.cta-stats > div { text-align: left; }
.cta-stats strong {
  display: block;
  font-family: var(--font-head); font-weight: 800;
  font-size: 1.85rem;
  background: linear-gradient(135deg, var(--blue-400), var(--teal-400));
  -webkit-background-clip: text; background-clip: text;
  -webkit-text-fill-color: transparent;
  letter-spacing: -0.02em;
  line-height: 1;
  margin-bottom: .3rem;
}
.cta-stats span { font-size: .82rem; color: rgba(255,255,255,.55); }

/* CTA right card — dashboard preview */
.cta-card-wrap { position: relative; }
.cta-glow {
  position: absolute; inset: -20px;
  background: radial-gradient(circle at 50% 50%, rgba(45,212,191,.35), transparent 60%);
  filter: blur(40px);
  z-index: 0;
}
.cta-card-dash {
  position: relative; z-index: 1;
  background: linear-gradient(180deg, #FCFCFD 0%, #F4F6FA 100%);
  border-radius: var(--r-xl);
  box-shadow: 0 40px 100px rgba(0,0,0,.4), 0 10px 30px rgba(0,0,0,.3);
  border: 1px solid rgba(255,255,255,.1);
  overflow: hidden;
  transform: perspective(1000px) rotateY(-3deg) rotateX(2deg);
  animation: floaty 8s ease-in-out infinite;
}
@keyframes floaty { 0%,100% { transform: perspective(1000px) rotateY(-3deg) rotateX(2deg) translateY(0); } 50% { transform: perspective(1000px) rotateY(-3deg) rotateX(2deg) translateY(-8px); } }
.dash-bar {
  display: flex; align-items: center; gap: .4rem;
  padding: .6rem .85rem;
  background: #EEF1F6;
  border-bottom: 1px solid #E4E8EF;
}
.dash-bar .browser-dot { background: #CFD6E1; }
.dash-url {
  flex: 1; text-align: center;
  font-size: .72rem; color: var(--muted);
  background: #fff; padding: .25rem .7rem;
  border-radius: 999px; margin: 0 .6rem;
}
.dash-body { padding: 1.25rem; }
.dash-row { display: grid; grid-template-columns: 1fr 1fr; gap: .75rem; margin-bottom: 1.25rem; }
.dash-mini {
  display: flex; align-items: center; gap: .65rem;
  padding: .8rem;
  background: #fff;
  border: 1px solid #E4E8EF;
  border-radius: 12px;
}
.dash-mini-icon {
  width: 32px; height: 32px; border-radius: 8px;
  display: grid; place-items: center;
}
.dash-mini-val { font-family: var(--font-head); font-weight: 700; font-size: 1.1rem; color: var(--ink); line-height: 1; }
.dash-mini-lbl { font-size: .7rem; color: var(--muted); margin-top: .2rem; }
.dash-chart {
  display: flex; align-items: flex-end; gap: .35rem;
  height: 80px;
  padding: .75rem;
  background: #fff;
  border: 1px solid #E4E8EF;
  border-radius: 12px;
  margin-bottom: 1.25rem;
}
.dash-chart span {
  flex: 1; border-radius: 4px 4px 0 0;
  background: linear-gradient(180deg, var(--blue-400), var(--teal-400));
  opacity: .85;
  animation: chartUp .8s ease-out both;
}
.dash-chart span:nth-child(1) { animation-delay: .05s; }
.dash-chart span:nth-child(2) { animation-delay: .12s; }
.dash-chart span:nth-child(3) { animation-delay: .19s; }
.dash-chart span:nth-child(4) { animation-delay: .26s; }
.dash-chart span:nth-child(5) { animation-delay: .33s; }
.dash-chart span:nth-child(6) { animation-delay: .4s; }
.dash-chart span:nth-child(7) { animation-delay: .47s; }
@keyframes chartUp { from { transform: scaleY(0); transform-origin: bottom; } to { transform: scaleY(1); } }

.dash-rows { display: flex; flex-direction: column; gap: .5rem; }
.dash-line {
  display: flex; align-items: center; gap: .65rem;
  padding: .55rem .7rem;
  background: #fff;
  border: 1px solid #E4E8EF;
  border-radius: 10px;
}
.dash-dot {
  width: 18px; height: 18px; border-radius: 50%;
  flex-shrink: 0;
}
.dash-skel {
  height: 8px; border-radius: 4px;
  background: linear-gradient(90deg, #E7ECF2, #F4F6FA);
}
.skel-lg { flex: 1; }
.skel-md { flex: .7; }
.skel-sm { width: 40px; flex-shrink: 0; }

.cta-float-pill {
  position: absolute;
  top: -1rem; right: -1rem;
  z-index: 2;
  display: inline-flex; align-items: center; gap: .45rem;
  background: #fff;
  color: var(--navy-800);
  padding: .6rem .9rem;
  border-radius: 999px;
  box-shadow: 0 12px 30px rgba(0,0,0,.25);
  font-size: .82rem; font-weight: 600;
  font-family: var(--font-head);
  animation: floaty2 6s ease-in-out infinite;
}
@keyframes floaty2 { 0%,100% { transform: translateY(0); } 50% { transform: translateY(-6px); } }
@media (max-width: 1023px) {
  .cta-card-dash { transform: none; animation: none; }
  .cta-card-wrap { max-width: 480px; margin: 0 auto; }
}

/* ====================== PAGE HERO (sub-pages) ====================== */
.page-hero {
  position: relative;
  padding: 5rem 0 4rem;
  overflow: hidden;
  background: var(--cream);
}
@media (min-width: 768px) { .page-hero { padding: 7rem 0 5rem; } }
.page-hero-inner { position: relative; z-index: 1; text-align: center; max-width: 820px; margin: 0 auto; }
.page-hero-title {
  font-family: var(--font-head);
  font-size: clamp(2.2rem, 1.2rem + 3.2vw, 3.8rem);
  font-weight: 800;
  letter-spacing: -0.035em;
  line-height: 1.05;
  margin: 1rem 0 1.25rem;
}
.page-hero-sub {
  font-size: 1.1rem; color: var(--muted); max-width: 640px; margin: 0 auto 1.75rem;
}
.page-hero-meta {
  display: flex; flex-wrap: wrap; justify-content: center; gap: .55rem;
}
.meta-pill {
  display: inline-flex; align-items: center; gap: .4rem;
  padding: .45rem .85rem;
  background: #fff;
  border: 1px solid var(--line);
  border-radius: 999px;
  font-size: .82rem; color: var(--ink-2);
  box-shadow: var(--shadow-xs);
}
.meta-pill svg { color: var(--teal-500); }

/* ====================== JUMP NAV ====================== */
.jump-nav {
  position: sticky; top: 76px; z-index: 40;
  background: rgba(250,246,238,.85);
  backdrop-filter: saturate(180%) blur(12px);
  -webkit-backdrop-filter: saturate(180%) blur(12px);
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
}
.jump-scroll {
  display: flex; gap: .35rem;
  overflow-x: auto;
  scrollbar-width: none;
  -ms-overflow-style: none;
  padding: .65rem 0;
}
.jump-scroll::-webkit-scrollbar { display: none; }
.jump-link {
  flex-shrink: 0;
  padding: .45rem .9rem;
  font-family: var(--font-head); font-size: .85rem; font-weight: 600;
  color: var(--ink-2);
  border-radius: 999px;
  transition: background var(--t-fast), color var(--t-fast);
  white-space: nowrap;
}
.jump-link:hover { background: rgba(6,26,51,.06); color: var(--ink); }
.jump-link.active { background: var(--navy-900); color: #fff; }

/* ====================== FEATURE BLOCK ====================== */
.feature-block { padding: 5rem 0; }
@media (min-width: 768px) { .feature-block { padding: 7rem 0; } }
.feature-block-alt { background: var(--cream-2); }

.fb-grid {
  display: grid; gap: 3rem;
  grid-template-columns: 1fr;
  align-items: center;
}
@media (min-width: 1024px) { .fb-grid { grid-template-columns: 1fr 1.15fr; gap: 4.5rem; } }
.fb-grid-reverse .fb-copy { order: 2; }
.fb-grid-reverse .fb-visual { order: 1; }
@media (max-width: 1023px) {
  .fb-grid-reverse .fb-copy { order: 1; }
  .fb-grid-reverse .fb-visual { order: 2; }
}

.fb-copy .status-badge { margin-bottom: .85rem; }
.fb-title {
  font-size: clamp(1.8rem, 1.2rem + 2vw, 2.6rem);
  margin: .85rem 0 1rem;
  letter-spacing: -0.025em;
}
.fb-lead { font-size: 1.02rem; color: var(--muted); margin-bottom: 1.75rem; max-width: 540px; }

.feature-list {
  display: flex; flex-direction: column;
  gap: 1rem;
  margin-top: 1rem;
}
.feature-list li {
  display: flex; align-items: center; gap: .9rem;
  padding: 1rem 1.1rem;
  background: #fff;
  border: 1px solid var(--line);
  border-radius: var(--r-md);
  transition: transform var(--t-fast), border-color var(--t-fast), box-shadow var(--t-med);
}
.feature-list li:hover { transform: translateX(2px); border-color: rgba(30,107,255,.25); box-shadow: var(--shadow-xs); }
.fl-icon {
  width: 36px; height: 36px; border-radius: 9px;
  background: linear-gradient(135deg, rgba(30,107,255,.1), rgba(20,184,166,.1));
  color: var(--blue-500);
  display: grid; place-items: center;
  flex-shrink: 0;
}
.feature-list strong {
  display: block;
  font-family: var(--font-head);
  font-size: .96rem; color: var(--ink); font-weight: 700;
  margin-bottom: .15rem;
}
.feature-list span {
  font-size: .87rem; color: var(--muted); line-height: 1.5;
  display: block;
}
.inline-soon {
  display: inline-block !important;
  padding: .1rem .45rem;
  margin-left: .25rem;
  width: auto !important;
  font-size: .65rem; font-weight: 700;
  background: rgba(245,158,11,.14); color: #B45309;
  border-radius: 4px;
  letter-spacing: .04em;
  text-transform: uppercase;
  vertical-align: middle;
}

/* Visual for staff PWA */
.fb-visual { position: relative; }
.fb-visual-phone { display: flex; justify-content: center; }
.phone-mock {
  background: #fff;
  padding: 8px;
  border-radius: 32px;
  box-shadow: var(--shadow-lg);
  border: 1px solid var(--line);
  max-width: 320px;
}
.phone-mock img {
  width: 100%; border-radius: 24px;
}

/* Audit card */
.audit-card {
  background: #fff;
  border: 1px solid var(--line);
  border-radius: var(--r-xl);
  padding: 1.5rem;
  box-shadow: var(--shadow-md);
}
.audit-head {
  display: flex; align-items: center; gap: .8rem;
  padding-bottom: 1.1rem;
  border-bottom: 1px solid var(--line);
  margin-bottom: 1rem;
}
.audit-icon {
  width: 42px; height: 42px; border-radius: 11px;
  background: rgba(20,184,166,.12); color: var(--teal-600);
  display: grid; place-items: center;
}
.audit-title { font-family: var(--font-head); font-weight: 700; font-size: 1rem; color: var(--ink); }
.audit-sub { font-size: .78rem; color: var(--muted); }
.audit-tag {
  margin-left: auto;
  padding: .25rem .6rem;
  font-family: var(--font-head); font-size: .7rem; font-weight: 700;
  letter-spacing: .04em; text-transform: uppercase;
  background: rgba(30,107,255,.1); color: var(--blue-500);
  border-radius: 999px;
}
.audit-feed {
  display: flex; flex-direction: column;
  margin-bottom: 1rem;
}
.audit-feed li {
  display: grid;
  grid-template-columns: 50px 1fr auto 14px;
  gap: .75rem;
  padding: .7rem 0;
  border-bottom: 1px dashed var(--line);
  font-size: .85rem;
  align-items: center;
}
.audit-feed li:last-child { border-bottom: 0; }
.ae-time { font-family: var(--font-head); font-weight: 600; color: var(--muted); font-size: .82rem; }
.ae-act { color: var(--ink); font-weight: 600; }
.ae-meta { color: var(--muted); font-size: .78rem; text-align: right; }
.ae-dot { width: 10px; height: 10px; border-radius: 50%; }
.ae-dot-green { background: #10B981; }
.ae-dot-blue { background: var(--blue-500); }
.ae-dot-purple { background: #8B5CF6; }
.ae-dot-amber { background: #F59E0B; }
.ae-dot-teal { background: var(--teal-500); }
@media (max-width: 540px) {
  .audit-feed li { grid-template-columns: 44px 1fr 12px; }
  .ae-meta { display: none; }
}
.audit-foot {
  display: flex; justify-content: space-between;
  padding-top: 1rem;
  border-top: 1px solid var(--line);
}
.audit-foot span { font-size: .8rem; color: var(--muted); }
.audit-foot strong { font-family: var(--font-head); font-weight: 800; font-size: 1.05rem; color: var(--ink); display: block; }

/* Invoice card */
.invoice-card {
  background: #fff;
  border: 1px solid var(--line);
  border-radius: var(--r-xl);
  padding: 1.75rem;
  box-shadow: var(--shadow-md);
}
.invoice-head {
  display: flex; justify-content: space-between; align-items: flex-start;
  padding-bottom: 1.25rem;
  border-bottom: 1px solid var(--line);
  margin-bottom: 1.1rem;
}
.invoice-id { font-family: var(--font-head); font-weight: 800; font-size: 1.05rem; color: var(--ink); letter-spacing: -0.01em; }
.invoice-meta { font-size: .82rem; color: var(--muted); margin-top: .15rem; }
.invoice-status {
  padding: .3rem .7rem;
  background: rgba(20,184,166,.14);
  color: var(--teal-600);
  font-family: var(--font-head); font-size: .75rem; font-weight: 700;
  border-radius: 999px;
  letter-spacing: .04em;
  text-transform: uppercase;
}
.invoice-rows { display: flex; flex-direction: column; }
.ir {
  display: flex; justify-content: space-between; align-items: center;
  padding: .9rem 0;
  border-bottom: 1px dashed var(--line);
  gap: 1rem;
}
.ir:last-child { border-bottom: 0; }
.ir > div:first-child strong {
  display: block;
  font-family: 'Source Code Pro', 'JetBrains Mono', monospace;
  font-size: .82rem;
  color: var(--ink);
  margin-bottom: .15rem;
}
.ir > div:first-child span {
  font-size: .82rem;
  color: var(--muted);
}
.ir-amt { font-family: var(--font-head); font-weight: 700; color: var(--ink); font-size: .95rem; flex-shrink: 0; }
.invoice-total {
  display: flex; justify-content: space-between; align-items: center;
  padding-top: 1.25rem;
  margin-top: .5rem;
  border-top: 2px solid var(--ink);
}
.invoice-total span { font-size: .85rem; color: var(--muted); }
.invoice-total strong {
  font-family: var(--font-head); font-size: 1.5rem; font-weight: 800;
  letter-spacing: -0.02em;
  background: linear-gradient(135deg, var(--blue-500), var(--teal-500));
  -webkit-background-clip: text; background-clip: text;
  -webkit-text-fill-color: transparent;
}

/* "Soon" feature banner block */
.feature-block-soon { padding: 5rem 0 6rem; background: linear-gradient(180deg, var(--cream) 0%, var(--cream-2) 100%); }
@media (min-width: 768px) { .feature-block-soon { padding: 7rem 0 8rem; } }
.soon-banner {
  background: #fff;
  border: 1px solid var(--line);
  border-radius: var(--r-2xl);
  padding: 3rem 1.75rem;
  text-align: center;
  position: relative;
  overflow: hidden;
  box-shadow: var(--shadow-md);
}
@media (min-width: 768px) { .soon-banner { padding: 4.5rem 3rem; } }
.soon-banner::before {
  content: ""; position: absolute; inset: 0;
  background-image: radial-gradient(circle at 20% 30%, rgba(245,158,11,.08), transparent 50%),
                    radial-gradient(circle at 80% 70%, rgba(20,184,166,.08), transparent 50%);
  pointer-events: none;
}
.soon-title { font-size: clamp(1.8rem, 1.2rem + 2vw, 2.6rem); margin: 1rem 0 .8rem; position: relative; }
.soon-lead { font-size: 1.05rem; color: var(--muted); max-width: 620px; margin: 0 auto 2.5rem; position: relative; }
.soon-grid {
  display: grid; gap: 1rem;
  grid-template-columns: 1fr;
  margin-bottom: 2.5rem;
  position: relative;
}
@media (min-width: 640px) { .soon-grid { grid-template-columns: repeat(2, 1fr); } }
@media (min-width: 1024px) { .soon-grid { grid-template-columns: repeat(4, 1fr); } }
.soon-feature {
  padding: 1.5rem 1.25rem;
  text-align: left;
  background: var(--cream);
  border: 1px solid var(--line);
  border-radius: var(--r-md);
  transition: transform var(--t-fast), border-color var(--t-fast);
}
.soon-feature:hover { transform: translateY(-3px); border-color: rgba(245,158,11,.3); }
.sf-icon {
  width: 40px; height: 40px; border-radius: 10px;
  background: rgba(245,158,11,.14); color: #B45309;
  display: grid; place-items: center; margin-bottom: .75rem;
}
.soon-feature h4 { font-size: 1.02rem; margin-bottom: .35rem; }
.soon-feature p { font-size: .85rem; color: var(--muted); line-height: 1.5; }

/* ====================== LEGAL PAGES ====================== */
.legal-page { padding: 4rem 0 6rem; background: var(--cream); }
@media (min-width: 768px) { .legal-page { padding: 5rem 0 7rem; } }
.legal-container { max-width: 760px; }
.legal-back {
  display: inline-flex; align-items: center; gap: .35rem;
  font-family: var(--font-head); font-weight: 600; font-size: .88rem;
  color: var(--blue-500);
  margin-bottom: 1rem;
  transition: gap var(--t-fast);
}
.legal-back:hover { gap: .5rem; }
.legal-title {
  font-family: var(--font-head);
  font-size: clamp(2rem, 1.2rem + 2.5vw, 3rem);
  font-weight: 800;
  letter-spacing: -0.03em;
  line-height: 1.05;
  margin: 1rem 0 .5rem;
}
.legal-meta {
  font-size: .9rem;
  color: var(--muted);
  margin-bottom: 2.5rem;
  padding-bottom: 1.5rem;
  border-bottom: 1px solid var(--line);
}
.legal-page h2 {
  font-family: var(--font-head);
  font-size: 1.3rem;
  font-weight: 700;
  letter-spacing: -0.015em;
  margin: 2rem 0 .75rem;
  color: var(--ink);
}
.legal-page p, .legal-page li {
  font-family: var(--font-body);
  font-size: .98rem;
  line-height: 1.65;
  color: var(--ink-2);
}
.legal-page p { margin-bottom: 1rem; }
.legal-page ul { margin: 0 0 1.25rem 1.25rem; padding: 0; }
.legal-page ul li { list-style: disc; margin-bottom: .4rem; padding-left: .25rem; }
.legal-page strong { color: var(--ink); font-weight: 700; }
.legal-page a { color: var(--blue-500); font-weight: 600; }
.legal-page a:hover { text-decoration: underline; }
.legal-page em { font-style: italic; color: var(--ink); }


/* ====================== CONTACT PAGE ====================== */
.channels-grid {
  display: grid; gap: 1.25rem;
  grid-template-columns: 1fr;
  margin-bottom: 2rem;
}
@media (min-width: 768px) { .channels-grid { grid-template-columns: repeat(3, 1fr); } }
.channel-card {
  display: flex; flex-direction: column;
  padding: 2rem 1.75rem;
  background: #fff;
  border: 1px solid var(--line);
  border-radius: var(--r-lg);
  transition: transform var(--t-med), box-shadow var(--t-med), border-color var(--t-med);
  color: inherit;
}
.channel-card:hover { transform: translateY(-4px); box-shadow: var(--shadow-md); border-color: rgba(30,107,255,.2); }
.channel-card-feature { background: linear-gradient(180deg, var(--navy-900), var(--navy-800)); border-color: transparent; color: #fff; }
.channel-card-feature h3, .channel-card-feature p, .channel-card-feature .channel-email { color: #fff; }
.channel-card-feature p { color: rgba(255,255,255,.75); }
.channel-card-feature .channel-email { color: var(--teal-400); }
.channel-icon { width: 52px; height: 52px; border-radius: 13px; display: grid; place-items: center; margin-bottom: 1rem; }
.channel-icon-blue { background: rgba(30,107,255,.1); color: var(--blue-500); }
.channel-icon-teal { background: rgba(45,212,191,.18); color: var(--teal-400); }
.channel-icon-amber { background: rgba(245,158,11,.14); color: #B45309; }
.channel-card h3 { font-size: 1.15rem; margin-bottom: .4rem; }
.channel-card p { font-size: .92rem; color: var(--muted); flex: 1; margin-bottom: 1rem; line-height: 1.55; }
.channel-email {
  font-family: var(--font-head); font-weight: 700; color: var(--blue-500); font-size: .94rem;
}
.channel-cta { display: inline-block; margin-top: .5rem; font-family: var(--font-head); font-weight: 700; color: var(--teal-400); font-size: .9rem; }

.contact-grid {
  display: grid; gap: 3rem;
  grid-template-columns: 1fr;
  align-items: start;
}
@media (min-width: 1024px) { .contact-grid { grid-template-columns: 1fr 1.15fr; gap: 4rem; } }
.contact-info {
  display: flex; flex-direction: column; gap: 1.25rem;
  margin: 1.75rem 0;
}
.contact-info li { display: flex; align-items: flex-start; gap: .85rem; }
.ci-icon {
  width: 36px; height: 36px; border-radius: 10px;
  background: rgba(20,184,166,.12); color: var(--teal-600);
  display: grid; place-items: center;
  flex-shrink: 0;
}
.contact-info strong { display: block; font-family: var(--font-head); font-weight: 700; font-size: .92rem; color: var(--ink); margin-bottom: .2rem; }
.contact-info span { display: block; font-size: .87rem; color: var(--muted); line-height: 1.5; }
.contact-info a { color: var(--blue-500); font-weight: 600; }
.response-card {
  background: #fff;
  border: 1px solid var(--line);
  border-radius: var(--r-md);
  padding: 1rem 1.15rem;
  margin-top: .5rem;
}
.resp-row { display: flex; align-items: center; gap: .55rem; font-family: var(--font-head); font-weight: 700; color: var(--ink); }
.resp-time { margin-left: auto; color: var(--teal-600); }
.response-card p { font-size: .8rem; color: var(--muted); margin-top: .35rem; }

/* Demo calendar */
.demo-card {
  display: grid; gap: 3rem;
  grid-template-columns: 1fr;
  align-items: center;
  background: linear-gradient(180deg, #fff, #FAFBFC);
  border: 1px solid var(--line);
  border-radius: var(--r-xl);
  padding: 2.5rem 1.75rem;
  box-shadow: var(--shadow-sm);
}
@media (min-width: 1024px) { .demo-card { grid-template-columns: 1.1fr 1fr; padding: 3rem; } }
.calendar-mock { background: #fff; border: 1px solid var(--line); border-radius: var(--r-lg); padding: 1.25rem; box-shadow: var(--shadow-sm); }
.cm-head { display: flex; justify-content: space-between; align-items: center; margin-bottom: 1rem; }
.cm-head strong { font-family: var(--font-head); font-weight: 700; }
.cm-nav { color: var(--muted); font-size: 1.2rem; letter-spacing: .15em; }
.cm-grid {
  display: grid; grid-template-columns: repeat(7, 1fr); gap: .25rem;
  text-align: center;
}
.cm-grid > span {
  padding: .55rem 0;
  font-family: var(--font-head); font-size: .82rem; font-weight: 500;
  color: var(--ink);
  border-radius: 8px;
}
.cm-grid > span:nth-child(-n+7) { color: var(--muted); font-weight: 700; font-size: .72rem; }
.cm-grid .cm-mute { color: var(--muted-2); }
.cm-grid .cm-active {
  background: var(--navy-900); color: #fff; font-weight: 700;
}
.cm-slots { margin-top: 1.25rem; padding-top: 1rem; border-top: 1px solid var(--line); }
.cm-slots > strong { font-family: var(--font-head); font-weight: 700; font-size: .85rem; color: var(--ink); display: block; margin-bottom: .65rem; }
.cm-slot-row { display: flex; flex-wrap: wrap; gap: .4rem; }
.cm-slot {
  padding: .45rem .85rem;
  background: var(--cream-2); color: var(--ink); font-weight: 600; font-size: .85rem;
  border-radius: 999px;
  border: 1px solid var(--line);
}
.cm-slot-on { background: rgba(30,107,255,.12); color: var(--blue-500); border-color: rgba(30,107,255,.3); }

/* ====================== ARTICLES — LIST ====================== */
.cat-nav {
  position: sticky; top: 76px; z-index: 40;
  background: rgba(250,246,238,.85);
  backdrop-filter: saturate(180%) blur(12px);
  -webkit-backdrop-filter: saturate(180%) blur(12px);
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
}
.cat-chip {
  flex-shrink: 0;
  padding: .45rem .9rem;
  font-family: var(--font-head); font-size: .85rem; font-weight: 600;
  color: var(--ink-2);
  border-radius: 999px;
  transition: background var(--t-fast), color var(--t-fast);
  white-space: nowrap;
}
.cat-chip:hover { background: rgba(6,26,51,.06); color: var(--ink); }
.cat-chip.active { background: var(--navy-900); color: #fff; }

.cat-tag {
  display: inline-block;
  padding: .25rem .6rem;
  font-family: var(--font-head); font-size: .7rem; font-weight: 700;
  letter-spacing: .04em; text-transform: uppercase;
  border-radius: 6px;
}
.cat-blue { background: rgba(30,107,255,.12); color: var(--blue-500); }
.cat-teal { background: rgba(20,184,166,.14); color: var(--teal-600); }
.cat-orange { background: rgba(245,158,11,.14); color: #B45309; }
.cat-purple { background: rgba(139,92,246,.14); color: #6D28D9; }
.cat-gold { background: rgba(202,138,4,.14); color: #854D0E; }

.featured-article {
  display: grid; gap: 2rem;
  grid-template-columns: 1fr;
  background: #fff;
  border: 1px solid var(--line);
  border-radius: var(--r-xl);
  padding: 1.25rem;
  transition: transform var(--t-med), box-shadow var(--t-med), border-color var(--t-med);
  color: inherit;
}
@media (min-width: 768px) { .featured-article { grid-template-columns: 1.2fr 1fr; gap: 2.5rem; align-items: center; padding: 1.75rem; } }
.featured-article:hover { transform: translateY(-3px); box-shadow: var(--shadow-md); border-color: rgba(30,107,255,.2); }
.fa-image { position: relative; border-radius: var(--r-lg); overflow: hidden; aspect-ratio: 16/10; }
.fa-image img { width: 100%; height: 100%; object-fit: cover; }
.fa-badge {
  position: absolute; top: 1rem; left: 1rem;
  padding: .35rem .7rem;
  font-family: var(--font-head); font-size: .72rem; font-weight: 700;
  background: rgba(255,255,255,.95); color: var(--navy-900);
  border-radius: 999px;
  letter-spacing: .04em;
}
.fa-meta { display: flex; flex-wrap: wrap; gap: .4rem; align-items: center; font-size: .82rem; color: var(--muted); margin-bottom: .85rem; }
.fa-title {
  font-family: var(--font-head); font-weight: 800;
  font-size: clamp(1.3rem, 1rem + 1.3vw, 1.85rem);
  letter-spacing: -0.025em;
  line-height: 1.2;
  margin-bottom: .85rem;
}
.fa-excerpt { color: var(--muted); margin-bottom: 1.25rem; }
.fa-author { display: flex; align-items: center; gap: .75rem; }
.fa-author .avatar { flex-shrink: 0; }

.article-grid {
  display: grid; gap: 1.25rem;
  grid-template-columns: 1fr;
}
@media (min-width: 640px) { .article-grid { grid-template-columns: repeat(2, 1fr); } }
@media (min-width: 1024px) { .article-grid { grid-template-columns: repeat(3, 1fr); } }
.article-card {
  background: #fff;
  border: 1px solid var(--line);
  border-radius: var(--r-lg);
  overflow: hidden;
  display: flex; flex-direction: column;
  transition: transform var(--t-med), box-shadow var(--t-med), border-color var(--t-med);
  color: inherit;
}
.article-card:hover { transform: translateY(-4px); box-shadow: var(--shadow-md); border-color: rgba(30,107,255,.2); }
.ac-image { aspect-ratio: 16/10; overflow: hidden; }
.ac-image img { width: 100%; height: 100%; object-fit: cover; transition: transform var(--t-med); }
.article-card:hover .ac-image img { transform: scale(1.04); }
.ac-body { padding: 1.5rem 1.4rem; display: flex; flex-direction: column; flex: 1; }
.ac-body .cat-tag { align-self: flex-start; margin-bottom: .85rem; }
.ac-body h3 { font-size: 1.05rem; line-height: 1.3; margin-bottom: .55rem; }
.ac-body p { font-size: .88rem; color: var(--muted); line-height: 1.5; flex: 1; }
.ac-meta { display: flex; gap: .4rem; align-items: center; margin-top: 1rem; padding-top: 1rem; border-top: 1px solid var(--line); font-size: .78rem; color: var(--muted); }

/* Newsletter card */
.news-card {
  background: linear-gradient(135deg, var(--navy-900), var(--navy-800));
  color: #fff;
  border-radius: var(--r-xl);
  padding: 2.5rem 1.75rem;
  display: grid; gap: 2rem;
  grid-template-columns: 1fr;
  align-items: center;
  box-shadow: var(--shadow-lg);
}
@media (min-width: 1024px) { .news-card { grid-template-columns: 1.4fr 1fr; padding: 3rem; } }
.news-card .display, .news-card h2 { color: #fff; }
.news-card .lead { color: rgba(255,255,255,.78); }
.news-form { display: flex; gap: .5rem; flex-direction: column; }
@media (min-width: 480px) { .news-form { flex-direction: row; } }
.news-form input {
  flex: 1;
  padding: .85rem 1.1rem;
  background: rgba(255,255,255,.06);
  border: 1.5px solid rgba(255,255,255,.18);
  border-radius: 999px;
  color: #fff;
  font-family: var(--font-body);
  font-size: .94rem;
}
.news-form input::placeholder { color: rgba(255,255,255,.5); }
.news-form input:focus { outline: none; border-color: var(--teal-400); background: rgba(255,255,255,.1); box-shadow: 0 0 0 4px rgba(45,212,191,.15); }
.news-form .btn { white-space: nowrap; }

/* ====================== ARTICLE TEMPLATE ====================== */
.post-hero {
  background: var(--cream);
  padding: 3rem 0 0;
  position: relative;
}
@media (min-width: 768px) { .post-hero { padding: 4rem 0 0; } }
.post-breadcrumb { font-size: .85rem; color: var(--muted); margin-bottom: 1rem; }
.post-breadcrumb a { color: var(--blue-500); font-weight: 600; }
.post-breadcrumb span { margin: 0 .3rem; }

.post-title {
  font-family: var(--font-head);
  font-size: clamp(1.85rem, 1rem + 3vw, 3rem);
  font-weight: 800;
  letter-spacing: -0.03em;
  line-height: 1.1;
  margin: .75rem 0 1.25rem;
  max-width: 900px;
}
.post-deck {
  font-size: clamp(1rem, .9rem + .4vw, 1.2rem);
  color: var(--muted);
  margin-bottom: 1.75rem;
  max-width: 760px;
  line-height: 1.55;
}
.post-meta {
  display: flex; flex-wrap: wrap; gap: 1.25rem;
  align-items: center;
  padding: 1.25rem 0;
  border-top: 1px solid var(--line);
}
.post-author { display: flex; align-items: center; gap: .75rem; }
.post-meta-info { display: flex; gap: 1.25rem; color: var(--muted); font-size: .85rem; margin-left: auto; }
.post-cover {
  margin-top: 2rem;
  aspect-ratio: 16/8;
  overflow: hidden;
  position: relative;
}
.post-cover img { width: 100%; height: 100%; object-fit: cover; }

.post-layout {
  display: grid; gap: 3rem;
  grid-template-columns: 1fr;
  padding: 4rem 0 5rem;
}
@media (min-width: 1024px) { .post-layout { grid-template-columns: 240px 1fr; gap: 4rem; } }
.post-side { position: relative; }
@media (min-width: 1024px) { .post-side { position: sticky; top: 100px; align-self: start; } }
.post-side-card {
  background: #fff;
  border: 1px solid var(--line);
  border-radius: var(--r-md);
  padding: 1.25rem 1.35rem;
  margin-bottom: 1rem;
}
.post-side-card h4 {
  font-family: var(--font-head); font-size: .8rem; font-weight: 700;
  letter-spacing: .14em; text-transform: uppercase; color: var(--muted);
  margin-bottom: .85rem;
}
.post-toc { display: flex; flex-direction: column; gap: .55rem; }
.toc-link {
  font-size: .87rem; color: var(--ink-2); font-weight: 500;
  border-left: 2px solid var(--line);
  padding: .15rem 0 .15rem .75rem;
  transition: color var(--t-fast), border-color var(--t-fast);
}
.toc-link:hover { color: var(--ink); border-left-color: var(--blue-500); }
.toc-link.active { color: var(--blue-500); border-left-color: var(--blue-500); font-weight: 600; }
.post-side-cta strong { display: block; font-family: var(--font-head); font-size: 1rem; color: var(--ink); margin-bottom: .35rem; }
.post-side-cta p { font-size: .85rem; color: var(--muted); margin-bottom: .85rem; }
.share-row { display: flex; flex-direction: column; gap: .35rem; }
.share-row a { font-size: .85rem; color: var(--ink-2); display: inline-flex; align-items: center; gap: .5rem; }
.share-row a:hover { color: var(--blue-500); }

.post-body {
  max-width: 720px;
  font-family: 'Source Serif Pro', Georgia, serif;
  font-size: 1.1rem;
  line-height: 1.7;
  color: var(--ink-2);
}
.post-body .lead-p {
  font-size: 1.25rem;
  color: var(--ink);
  margin-bottom: 2rem;
  font-weight: 500;
  line-height: 1.55;
}
.post-body h2 {
  font-family: var(--font-head);
  font-size: clamp(1.4rem, 1rem + 1vw, 1.85rem);
  font-weight: 700;
  letter-spacing: -0.02em;
  margin: 2.5rem 0 1rem;
  scroll-margin-top: 120px;
}
.post-body h3 {
  font-family: var(--font-head);
  font-size: 1.2rem;
  font-weight: 700;
  margin: 1.75rem 0 .75rem;
}
.post-body p { margin: 0 0 1.25rem; }
.post-body ul, .post-body ol { margin: 0 0 1.5rem 1.25rem; padding: 0; }
.post-body ul li, .post-body ol li { list-style: revert; margin-bottom: .5rem; padding-left: .25rem; }
.post-body strong { color: var(--ink); font-weight: 700; }
.post-body code {
  font-family: 'Source Code Pro', 'JetBrains Mono', monospace;
  background: rgba(30,107,255,.08);
  color: var(--blue-500);
  padding: .1rem .4rem;
  border-radius: 4px;
  font-size: .9em;
}
.post-body blockquote {
  margin: 2rem 0;
  padding: 1.25rem 1.5rem;
  border-left: 4px solid var(--teal-500);
  background: rgba(20,184,166,.05);
  border-radius: 0 8px 8px 0;
  font-style: italic;
  font-size: 1.1rem;
  color: var(--ink);
}
.post-body blockquote cite {
  display: block;
  margin-top: .85rem;
  font-family: var(--font-head);
  font-size: .85rem;
  font-style: normal;
  font-weight: 600;
  color: var(--muted);
}
.callout {
  background: linear-gradient(180deg, rgba(30,107,255,.05), rgba(20,184,166,.04));
  border: 1px dashed rgba(30,107,255,.3);
  border-radius: var(--r-md);
  padding: 1.25rem 1.4rem;
  margin: 2rem 0;
  font-family: var(--font-body);
  font-size: .95rem;
}
.callout strong { display: block; font-family: var(--font-head); color: var(--blue-500); margin-bottom: .35rem; font-size: .78rem; letter-spacing: .14em; text-transform: uppercase; }
.callout p { margin: 0; color: var(--ink-2); }

.post-body .faq-item { font-family: var(--font-body); margin-bottom: .75rem; }
.post-body .faq-item summary { font-size: 1rem; }
.post-body .faq-body { font-size: .95rem; line-height: 1.6; }

.post-cta {
  display: flex; flex-wrap: wrap; gap: .75rem;
  margin: 2.5rem 0 3rem;
  padding: 2rem;
  background: var(--cream-2);
  border-radius: var(--r-lg);
  justify-content: center;
}

.author-card {
  display: flex; gap: 1.25rem;
  padding: 1.75rem;
  background: #fff;
  border: 1px solid var(--line);
  border-radius: var(--r-lg);
  align-items: flex-start;
  font-family: var(--font-body);
}
.author-card h4 { font-family: var(--font-head); font-size: 1.1rem; margin-bottom: .15rem; }
.author-card p { font-size: .9rem; color: var(--muted); line-height: 1.55; margin-top: .65rem; }


/* ====================== ABOUT PAGE ====================== */
.mission-wrap {
  max-width: 880px; margin: 0 auto;
  text-align: center;
  position: relative;
  padding: 1rem 0;
}
.mission-mark {
  font-family: 'Georgia', serif;
  font-size: 7rem; line-height: 1;
  color: rgba(20,184,166,.25);
  margin-bottom: -3rem;
}
.mission-quote {
  font-family: var(--font-head);
  font-size: clamp(1.3rem, .9rem + 1.5vw, 1.85rem);
  font-weight: 600;
  line-height: 1.35;
  letter-spacing: -0.015em;
  color: var(--ink);
}
.mission-by {
  margin-top: 1.25rem;
  font-size: .9rem;
  color: var(--muted);
}

.story-stats {
  display: grid; grid-template-columns: repeat(3, 1fr);
  gap: 1rem;
  margin-top: 2.25rem;
  padding-top: 1.75rem;
  border-top: 1px solid var(--line);
}
.ss-block strong {
  display: block;
  font-family: var(--font-head); font-weight: 800;
  font-size: 1.5rem;
  background: linear-gradient(135deg, var(--blue-500), var(--teal-500));
  -webkit-background-clip: text; background-clip: text; -webkit-text-fill-color: transparent;
  letter-spacing: -0.02em;
}
.ss-block span { font-size: .82rem; color: var(--muted); margin-top: .1rem; }

.story-collage {
  position: relative;
  min-height: 460px;
}
.sc-card {
  border-radius: var(--r-lg);
  overflow: hidden;
  box-shadow: var(--shadow-md);
  border: 1px solid var(--line);
  background: #fff;
}
.sc-card img { width: 100%; height: 100%; object-fit: cover; display: block; }
.sc-card-main {
  position: relative;
  aspect-ratio: 4/3;
  width: 100%;
}
.sc-tag {
  position: absolute; bottom: 1rem; left: 1rem;
  display: inline-flex; align-items: center; gap: .35rem;
  padding: .35rem .7rem;
  background: rgba(255,255,255,.92);
  border-radius: 999px;
  font-family: var(--font-head); font-size: .8rem; font-weight: 700;
  color: var(--ink);
  backdrop-filter: blur(6px);
}
.sc-tag svg { color: var(--teal-500); }
.sc-card-sm {
  position: absolute;
  width: 38%; aspect-ratio: 1;
  border: 4px solid var(--cream-2);
}
.sc-card-sm:nth-of-type(2) {
  top: -1.5rem; right: -1rem;
  transform: rotate(4deg);
}
.sc-card-bottom {
  bottom: -1.5rem; right: 18%;
  transform: rotate(-3deg);
}
@media (max-width: 640px) {
  .story-collage { min-height: 340px; }
  .sc-card-sm:nth-of-type(2) { right: 0; top: -1rem; width: 35%; }
  .sc-card-bottom { right: 5%; bottom: -1rem; width: 35%; }
}

/* Values */
.values-grid {
  display: grid; gap: 1.25rem;
  grid-template-columns: 1fr;
}
@media (min-width: 640px) { .values-grid { grid-template-columns: repeat(2, 1fr); } }
@media (min-width: 1024px) { .values-grid { grid-template-columns: repeat(4, 1fr); } }
.value-card {
  position: relative;
  background: #fff;
  border: 1px solid var(--line);
  border-radius: var(--r-lg);
  padding: 1.75rem;
  overflow: hidden;
  transition: transform var(--t-med), box-shadow var(--t-med), border-color var(--t-med);
}
.value-card:hover { transform: translateY(-4px); box-shadow: var(--shadow-md); border-color: rgba(30,107,255,.2); }
.value-num {
  position: absolute; top: 1.25rem; right: 1.5rem;
  font-family: var(--font-head);
  font-weight: 800;
  font-size: 2.5rem;
  letter-spacing: -0.02em;
  color: rgba(30,107,255,.12);
  line-height: 1;
}
.value-icon {
  width: 52px; height: 52px;
  border-radius: 13px;
  display: grid; place-items: center;
  background: linear-gradient(135deg, rgba(30,107,255,.1), rgba(20,184,166,.1));
  color: var(--blue-500);
  margin-bottom: 1rem;
}
.value-card h3 { font-size: 1.15rem; margin-bottom: .55rem; }
.value-card p { font-size: .92rem; color: var(--muted); line-height: 1.55; }

/* Team */
.team-grid {
  display: grid; gap: 1.25rem;
  grid-template-columns: 1fr;
}
@media (min-width: 640px) { .team-grid { grid-template-columns: repeat(2, 1fr); } }
@media (min-width: 1024px) { .team-grid { grid-template-columns: repeat(4, 1fr); } }
.team-card {
  background: #fff;
  border: 1px solid var(--line);
  border-radius: var(--r-lg);
  padding: 1.75rem 1.5rem;
  text-align: center;
  transition: transform var(--t-med), box-shadow var(--t-med);
}
.team-card:hover { transform: translateY(-4px); box-shadow: var(--shadow-md); }
.team-avatar {
  width: 72px; height: 72px;
  border-radius: 50%;
  display: grid; place-items: center;
  font-family: var(--font-head); font-weight: 800;
  font-size: 1.4rem; color: #fff;
  margin: 0 auto 1rem;
  letter-spacing: .04em;
}
.team-card h3 { font-size: 1.1rem; margin-bottom: .25rem; }
.team-role {
  display: block;
  font-family: var(--font-head);
  font-size: .8rem; font-weight: 600;
  color: var(--blue-500);
  margin-bottom: .75rem;
  letter-spacing: .02em;
}
.team-card p { font-size: .87rem; color: var(--muted); line-height: 1.55; }

.team-cta {
  display: flex; flex-direction: column; align-items: center; gap: .75rem;
  margin-top: 2.5rem;
  padding-top: 2rem;
  border-top: 1px dashed var(--line);
  text-align: center;
}
@media (min-width: 768px) { .team-cta { flex-direction: row; justify-content: center; } }
.team-cta p { color: var(--ink-2); font-weight: 500; }

/* Partners */
.partner-grid {
  display: grid; gap: 1rem;
  grid-template-columns: 1fr;
}
@media (min-width: 640px) { .partner-grid { grid-template-columns: repeat(2, 1fr); } }
@media (min-width: 1024px) { .partner-grid { grid-template-columns: repeat(3, 1fr); } }
.partner-card {
  display: flex; gap: 1rem; align-items: flex-start;
  padding: 1.25rem 1.4rem;
  background: #fff;
  border: 1px solid var(--line);
  border-radius: var(--r-md);
  transition: transform var(--t-fast), border-color var(--t-fast), box-shadow var(--t-med);
}
.partner-card:hover { transform: translateY(-2px); border-color: rgba(20,184,166,.3); box-shadow: var(--shadow-xs); }
.partner-icon {
  width: 42px; height: 42px; border-radius: 10px;
  background: rgba(20,184,166,.12); color: var(--teal-600);
  display: grid; place-items: center;
  flex-shrink: 0;
}
.partner-card h4 { font-size: .98rem; margin-bottom: .25rem; }
.partner-card p { font-size: .85rem; color: var(--muted); line-height: 1.5; }


/* ====================== REGISTER PAGE ====================== */
.register-section {
  position: relative;
  padding: 4rem 0 6rem;
  overflow: hidden;
  background: var(--cream);
}
@media (min-width: 768px) { .register-section { padding: 5rem 0 8rem; } }

.register-grid {
  position: relative; z-index: 1;
  display: grid; gap: 3rem;
  grid-template-columns: 1fr;
  align-items: start;
}
@media (min-width: 1024px) { .register-grid { grid-template-columns: 1fr 1.1fr; gap: 4rem; } }

.register-left .page-hero-title { text-align: left; }
.register-left .page-hero-sub { text-align: left; margin-left: 0; }
.reg-points {
  display: flex; flex-direction: column; gap: .9rem;
  margin: 1.5rem 0 1.75rem;
}
.reg-points li {
  display: flex; align-items: flex-start; gap: .75rem;
}
.reg-tick {
  width: 26px; height: 26px; border-radius: 50%;
  background: rgba(20,184,166,.14); color: var(--teal-600);
  display: grid; place-items: center;
  flex-shrink: 0;
}
.reg-points strong { display: block; font-family: var(--font-head); font-weight: 700; font-size: .95rem; color: var(--ink); margin-bottom: .15rem; }
.reg-points span { display: block; font-size: .87rem; color: var(--muted); line-height: 1.5; }
.reg-trust {
  display: flex; align-items: center; gap: 1rem;
  padding: 1rem 1.1rem; background: #fff;
  border: 1px solid var(--line); border-radius: var(--r-md);
  box-shadow: var(--shadow-xs);
}
.reg-trust .stars { color: var(--teal-500); margin-bottom: .15rem; }
.reg-trust .cta-avatars .avatar-xs { border-color: #fff; }
.reg-trust-text { font-size: .85rem; color: var(--muted); display: block; }
.reg-trust-text strong { color: var(--ink); font-weight: 700; }

.form-card {
  background: #fff;
  border: 1px solid var(--line);
  border-radius: var(--r-2xl);
  padding: 2rem 1.75rem;
  box-shadow: var(--shadow-lg);
  position: relative;
}
@media (min-width: 768px) { .form-card { padding: 2.5rem 2.25rem; } }
.form-card-head { margin-bottom: 1.5rem; }
.form-title { font-size: 1.5rem; font-weight: 700; letter-spacing: -0.02em; margin-bottom: .35rem; }
.form-sub { font-size: .92rem; color: var(--muted); }

.reg-form { display: flex; flex-direction: column; gap: 1rem; }
.form-row { display: grid; gap: 1rem; grid-template-columns: 1fr; }
@media (min-width: 640px) { .form-row { grid-template-columns: 1fr 1fr; } }

.field { display: flex; flex-direction: column; gap: .4rem; }
.field > span {
  font-family: var(--font-head); font-weight: 600;
  font-size: .82rem; color: var(--ink);
  display: flex; align-items: center; gap: .25rem;
}
.field em { color: #DC2626; font-style: normal; font-weight: 700; }
.field em.opt { color: var(--muted-2); font-weight: 500; font-size: .72rem; }
.field input,
.field select,
.field textarea {
  width: 100%;
  padding: .75rem .95rem;
  font-family: var(--font-body);
  font-size: .94rem;
  color: var(--ink);
  background: #FCFCFD;
  border: 1.5px solid var(--line);
  border-radius: 10px;
  transition: border-color var(--t-fast), box-shadow var(--t-fast), background var(--t-fast);
  appearance: none;
  -webkit-appearance: none;
}
.field select {
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='12' viewBox='0 0 24 24' fill='none' stroke='%2356677F' stroke-width='2.5' stroke-linecap='round' stroke-linejoin='round'%3E%3Cpath d='M6 9l6 6 6-6'/%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-position: right .85rem center;
  padding-right: 2.4rem;
}
.field textarea { resize: vertical; min-height: 90px; }
.field input::placeholder,
.field textarea::placeholder { color: var(--muted-2); }
.field input:focus,
.field select:focus,
.field textarea:focus {
  outline: none;
  border-color: var(--blue-500);
  background: #fff;
  box-shadow: 0 0 0 4px rgba(30,107,255,.1);
}

.checkbox-field {
  display: flex; align-items: flex-start; gap: .65rem;
  margin-top: .25rem;
  font-size: .85rem; color: var(--ink-2);
  cursor: pointer;
}
.checkbox-field input[type="checkbox"] {
  width: 18px; height: 18px;
  accent-color: var(--blue-500);
  margin-top: 2px;
  flex-shrink: 0;
}
.checkbox-field a { color: var(--blue-500); font-weight: 600; }

.reg-submit { margin-top: .5rem; }
.form-foot {
  text-align: center;
  font-size: .78rem; color: var(--muted);
  margin-top: .25rem;
}

.form-success {
  text-align: center;
  padding: 2rem 1rem;
}
.success-icon {
  width: 64px; height: 64px; border-radius: 50%;
  background: rgba(20,184,166,.14); color: var(--teal-600);
  display: grid; place-items: center;
  margin: 0 auto 1rem;
  animation: pop .5s cubic-bezier(.2,.7,.3,1) both;
}
@keyframes pop { from { transform: scale(.5); opacity: 0; } to { transform: scale(1); opacity: 1; } }
.form-success h3 { font-size: 1.4rem; margin-bottom: .5rem; }
.form-success p { color: var(--ink-2); margin-bottom: .75rem; }
.success-meta { color: var(--muted) !important; font-size: .85rem; margin-bottom: 1.25rem !important; }

/* ====================== PRICING PAGE — bill note + full compare ====================== */
.bill-note-section { padding: 1rem 0 3rem; }
.bill-note {
  display: flex; gap: 1rem;
  max-width: 880px; margin: 0 auto;
  padding: 1.25rem 1.5rem;
  background: linear-gradient(180deg, rgba(30,107,255,.04), rgba(20,184,166,.04));
  border: 1px dashed rgba(30,107,255,.3);
  border-radius: var(--r-md);
  align-items: flex-start;
}
.bn-icon {
  width: 42px; height: 42px; border-radius: 10px;
  background: rgba(30,107,255,.1); color: var(--blue-500);
  display: grid; place-items: center;
  flex-shrink: 0;
}
.bill-note h4 { font-size: 1rem; margin-bottom: .25rem; }
.bill-note p { font-size: .9rem; color: var(--ink-2); line-height: 1.55; }

.full-compare { padding: 5rem 0 6rem; background: var(--cream-2); }
@media (min-width: 768px) { .full-compare { padding: 7rem 0; } }
.compare-table-full th, .compare-table-full td { font-size: .88rem; padding: .85rem 1.1rem; }
.compare-table-full .row-group th {
  background: var(--navy-900);
  color: #fff;
  text-align: left;
  font-family: var(--font-head);
  font-weight: 700;
  font-size: .76rem;
  letter-spacing: .12em;
  text-transform: uppercase;
  padding: .75rem 1.25rem;
}
.compare-table-full tbody td { font-size: .9rem; }
.compare-table-full .check { font-size: 1.05rem; }

.integrations { padding: 4rem 0 5rem; background: var(--cream); border-top: 1px solid var(--line); }
.integrations-head {
  display: flex; flex-direction: column; align-items: center;
  text-align: center; margin-bottom: 2.5rem;
}
.integrations-head h3 {
  font-size: clamp(1.3rem, 1rem + 1vw, 1.85rem);
  font-weight: 700; letter-spacing: -0.02em;
  margin: .5rem 0 .5rem;
}
.integrations-head p { color: var(--muted); font-size: .95rem; max-width: 540px; }
.int-grid {
  display: grid; gap: .9rem;
  grid-template-columns: repeat(2, 1fr);
  max-width: 980px; margin: 0 auto;
}
@media (min-width: 640px) { .int-grid { grid-template-columns: repeat(3, 1fr); } }
@media (min-width: 1024px) { .int-grid { grid-template-columns: repeat(4, 1fr); } }
.int-card {
  display: flex; align-items: center; gap: .8rem;
  padding: 1rem 1.1rem;
  background: #fff;
  border: 1px solid var(--line);
  border-radius: var(--r-md);
  transition: transform var(--t-fast), border-color var(--t-fast), box-shadow var(--t-med);
}
.int-card:hover { transform: translateY(-2px); border-color: rgba(30,107,255,.25); box-shadow: var(--shadow-sm); }
.int-logo {
  width: 36px; height: 36px; border-radius: 8px;
  display: grid; place-items: center;
  font-family: var(--font-head); font-weight: 800; font-size: .95rem;
  color: #fff; flex-shrink: 0;
}
.int-meta { line-height: 1.2; }
.int-name { font-family: var(--font-head); font-weight: 700; font-size: .9rem; color: var(--ink); }
.int-sub { font-size: .72rem; color: var(--muted); margin-top: .1rem; }
.int-status {
  display: inline-block; padding: .1rem .45rem;
  font-size: .62rem; font-weight: 700; letter-spacing: .04em;
  text-transform: uppercase;
  background: rgba(20,184,166,.12); color: var(--teal-600);
  border-radius: 999px;
  margin-left: .35rem;
}
.int-status.soon { background: rgba(245,158,11,.14); color: #B45309; }

/* ====================== MODULES OVERVIEW ====================== */
.modules-overview {
  padding: 5rem 0 6rem;
  background: linear-gradient(180deg, #ffffff 0%, #F5F8FE 100%);
  border-top: 1px solid rgba(15,23,42,.06);
  position: relative;
}
.modules-head { text-align: center; max-width: 720px; margin: 0 auto 3rem; }
.modules-head .eyebrow { display: inline-block; margin-bottom: 1rem; }
.modules-head h2 { margin-bottom: 1rem; }
.modules-head .lead { color: var(--ink-600); font-size: 1.05rem; line-height: 1.65; }

.modules-grid {
  display: grid;
  grid-template-columns: repeat(1, 1fr);
  gap: 1rem;
}
@media (min-width: 640px) { .modules-grid { grid-template-columns: repeat(2, 1fr); gap: 1.1rem; } }
@media (min-width: 960px) { .modules-grid { grid-template-columns: repeat(3, 1fr); gap: 1.25rem; } }
@media (min-width: 1200px) { .modules-grid { grid-template-columns: repeat(4, 1fr); } }

.module-card {
  position: relative;
  display: flex;
  align-items: center;
  gap: 1rem;
  padding: 1.15rem 1.15rem 1.15rem 1.1rem;
  background: #fff;
  border: 1px solid rgba(15,23,42,.08);
  border-radius: 16px;
  box-shadow: 0 1px 2px rgba(15,23,42,.04), 0 8px 24px -16px rgba(15,23,42,.18);
  transition: transform var(--t-fast), box-shadow var(--t-fast), border-color var(--t-fast);
}
.module-card:hover {
  transform: translateY(-3px);
  border-color: rgba(20,184,166,.4);
  box-shadow: 0 4px 6px rgba(15,23,42,.05), 0 18px 40px -20px rgba(20,184,166,.35);
}
.module-card .module-icon {
  flex-shrink: 0;
  width: 44px; height: 44px;
  display: grid; place-items: center;
  border-radius: 12px;
  background: linear-gradient(135deg, rgba(20,184,166,.14), rgba(30,107,255,.12));
  color: var(--teal-600);
}
.module-card .module-meta { flex: 1; min-width: 0; }
.module-card .module-meta strong {
  display: block;
  font-weight: 700;
  font-size: .98rem;
  color: var(--ink-900);
  margin-bottom: .15rem;
  line-height: 1.25;
}
.module-card .module-meta span {
  display: block;
  font-size: .82rem;
  color: var(--ink-600);
  line-height: 1.45;
}
.module-card .module-tag {
  flex-shrink: 0;
  align-self: flex-start;
  font-size: .68rem;
  font-weight: 700;
  letter-spacing: .06em;
  text-transform: uppercase;
  padding: .25rem .55rem;
  border-radius: 999px;
  background: rgba(20,184,166,.12);
  color: var(--teal-600);
}
.module-card .module-tag-soon {
  background: rgba(245,158,11,.14);
  color: #B45309;
}
.module-card-soon {
  background: linear-gradient(180deg, #fff 0%, #FFFBF2 100%);
  border-color: rgba(245,158,11,.25);
}
.module-card-soon .module-icon {
  background: linear-gradient(135deg, rgba(245,158,11,.18), rgba(245,158,11,.08));
  color: #B45309;
}

/* ====================== FOOTER ====================== */
.site-footer { background: var(--navy-950); color: rgba(255,255,255,.7); padding: 4rem 0 2rem; }
.footer-grid {
  display: grid; gap: 2.5rem;
  grid-template-columns: 1fr;
}
@media (min-width: 768px) { .footer-grid { grid-template-columns: 1.6fr repeat(3, 1fr); gap: 3rem; } }
.footer-brand img { max-width: 200px; margin-bottom: 1rem; filter: brightness(0) invert(1); opacity: .95; }
.footer-brand p { color: rgba(255,255,255,.7); font-size: .92rem; margin-bottom: 1rem; line-height: 1.6; }
.footer-badges { display: flex; flex-wrap: wrap; gap: .4rem; }

.footer-col h4 { color: #fff; font-size: .78rem; letter-spacing: .14em; text-transform: uppercase; font-weight: 700; margin-bottom: 1rem; }
.footer-col ul { display: flex; flex-direction: column; gap: .6rem; }
.footer-col a { color: rgba(255,255,255,.7); font-size: .92rem; transition: color var(--t-fast); }
.footer-col a:hover { color: #fff; }

.footer-bottom {
  margin-top: 3rem; padding-top: 1.5rem;
  border-top: 1px solid rgba(255,255,255,.1);
  display: flex; flex-direction: column; gap: 1rem;
  align-items: center; justify-content: space-between;
  font-size: .82rem; color: rgba(255,255,255,.5);
}
@media (min-width: 768px) { .footer-bottom { flex-direction: row; } }
.social-row { display: flex; gap: .5rem; }
.social-row a {
  width: 36px; height: 36px;
  display: inline-grid; place-items: center;
  border-radius: 50%;
  background: rgba(255,255,255,.06);
  color: rgba(255,255,255,.85);
  transition: background var(--t-fast), transform var(--t-fast);
}
.social-row a:hover { background: var(--teal-500); color: #fff; transform: translateY(-2px); }

/* Reveal on scroll */
.reveal { opacity: 0; transform: translateY(24px); transition: opacity .7s ease, transform .7s cubic-bezier(.2,.7,.3,1); }
.reveal.in { opacity: 1; transform: translateY(0); }

/* Focus */
a:focus-visible, button:focus-visible, summary:focus-visible {
  outline: 2px solid var(--blue-500); outline-offset: 3px; border-radius: 6px;
}

/* Reduced motion */
@media (prefers-reduced-motion: reduce) {
  *,*::before,*::after { animation-duration: .001ms !important; animation-iteration-count: 1 !important; transition-duration: .001ms !important; scroll-behavior: auto !important; }
}
