/* @import url("https://fonts.googleapis.com/css2?family=Antonio:wght@100..700&family=DM+Sans:ital,opsz,wght@0,9..40,100..1000;1,9..40,100..1000&family=IBM+Plex+Sans:ital,wght@0,100..700;1,100..700&family=Inter+Tight:ital,wght@0,100..900;1,100..900&family=Inter:ital,opsz,wght@0,14..32,100..900;1,14..32,100..900&family=Nunito:ital,wght@0,200..1000;1,200..1000&family=Poppins:ital,wght@0,100;0,200;0,300;0,400;0,500;0,600;0,700;0,800;0,900;1,100;1,200;1,300;1,400;1,500;1,600;1,700;1,800;1,900&family=Quicksand:wght@300..700&family=Roboto:ital,wght@0,100..900;1,100..900&display=swap"); */

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

html {
  scroll-behavior: smooth;
}

body {
  font-family: "Inter", sans-serif;
  background: #fff;
  color: var(--ink);
  line-height: 1.6;
  overflow-x: hidden;
}

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

.padd-x-res {
  padding: 0 24px;
}

@media (max-width: 480px) {
  .padd-x-res {
    padding: 0 16px;
  }
}

:root {
  --ink: #043e54;
  --primary: #043e54;
  --teal: #34ae93;
  --mint: #8ad8a3;
  --g1: linear-gradient(135deg, #8ad8a3 0%, #34ae93 100%);
  --g2: linear-gradient(140deg, #7ed5a0 0%, #25967a 100%);
  --bg: #ffffff;
  --bg2: #0a1628;
  --surf: #f2f9f7;
  --surf2: #e8f5f0;
  --bdr: #d5ebe5;
  --muted: #4a7a84;
  --tint: #ecf7f3;
  --nh: 64px;

  --surface: #f7fafa;
  --border: #e2edec;
  --tint: #edf7f5;
  --s-sm: 0 1px 5px rgba(4, 62, 84, 0.05);
  --s-md: 0 4px 18px rgba(4, 62, 84, 0.08);
  --s-lg: 0 12px 40px rgba(4, 62, 84, 0.12);

  --gradient: linear-gradient(135deg, #8ad8a3 0%, #34ae93 100%);
  --gradient-dark: linear-gradient(
    150deg,
    #043e54 0%,
    #0b6870 55%,
    #2fa888 100%
  );
  --error: #dc2626;
  --success: #16a34a;
  --text-secondary: #4a7a84;

  --bright: #e8f4ff;

  --orange: #f5a623;
  --blue: #4a9eff;
  --text: #c8d8e8;
  --grad: linear-gradient(135deg, #8ad8a3, #34ae93);
  --line: rgba(255, 255, 255, 0.06);
  --border2: #1e3352;
  --dark2: #0f1f35;

  --tp: #043e54;
  --ts: #4a7a84;
  --dark: #0a1628;
  --dark3: #162540;
  --dark-border: rgba(255, 255, 255, 0.07);
  --db2: rgba(52, 174, 147, 0.25);
  --code-bg: #0d1b2a;
  --s-sm: 0 2px 8px rgba(4, 62, 84, 0.06);
  --s-md: 0 6px 24px rgba(4, 62, 84, 0.1);
  --sb-w: 240px;
  --ex-w: 360px;
  --shadow-sm: 0 1px 5px rgba(4, 62, 84, 0.05);
  --shadow-md: 0 4px 18px rgba(4, 62, 84, 0.08);
  --shadow-lg: 0 12px 40px rgba(4, 62, 84, 0.12);
}

/* NAV */
.gnav {
  position: sticky;
  top: 0;
  z-index: 1000;
  height: 64px;
  background: rgba(255, 255, 255, 0.97);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  border-bottom: 1px solid var(--bdr);
  display: flex;
  align-items: center;
  padding: 0 24px;
}

.gnav-inner {
  max-width: 1200px;
  width: 100%;
  margin: 0 auto;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0;
}

.gnav-logo {
  display: inline-flex;
  align-items: center;
  text-decoration: none;
  flex-shrink: 0;
  margin-right: auto;
  width: 135px;
}

.gnav-links {
  display: none;
  align-items: center;
  gap: 2px;
  justify-content: center;
  flex: 1;
}

.gnav-link {
  font-size: 14px;
  font-weight: 500;
  color: var(--muted);
  text-decoration: none;
  padding: 6px 11px;
  border-radius: 6px;
  transition: 0.15s;
  white-space: nowrap;
}

.gnav-link:hover,
.gnav-link.gactive {
  color: var(--ink);
  background: var(--tint);
}

.gnav-dd {
  position: relative;
}

.gnav-toggle {
  display: flex;
  align-items: center;
  gap: 4px;
  cursor: pointer;
  font-size: 14px;
  font-weight: 500;
  color: var(--muted);
  padding: 6px 11px;
  border-radius: 6px;
  transition: 0.15s;
  border: none;
  background: none;
  font-family: inherit;
  white-space: nowrap;
}

.gnav-toggle:hover {
  color: var(--ink);
  background: var(--tint);
}

.gnav-chev {
  display: inline-block;
  width: 12px;
  height: 12px;
  transition: transform 0.2s;
}

.gnav-dd.gopen .gnav-chev {
  transform: rotate(180deg);
}

.gnav-menu {
  position: absolute;
  top: calc(100% + 8px);
  left: 50%;
  transform: translateX(-50%) translateY(-8px);
  background: #fff;
  border: 1px solid var(--bdr);
  border-radius: 12px;
  box-shadow: 0 12px 40px rgba(4, 62, 84, 0.12);
  min-width: 230px;
  padding: 6px;
  opacity: 0;
  pointer-events: none;
  transition:
    opacity 0.18s,
    transform 0.18s;
  z-index: 1001;
}

.gnav-dd.gopen .gnav-menu {
  opacity: 1;
  pointer-events: auto;
  transform: translateX(-50%) translateY(0);
}

.gnav-item {
  display: block;
  font-size: 14px;
  font-weight: 500;
  color: var(--muted);
  text-decoration: none;
  padding: 9px 12px;
  border-radius: 8px;
  transition: 0.12s;
  white-space: nowrap;
}

.gnav-item:hover {
  background: var(--tint);
  color: var(--ink);
}

.gnav-sep {
  height: 1px;
  background: var(--bdr);
  margin: 4px 0;
}

.gnav-actions {
  display: flex;
  align-items: center;
  gap: 8px;
  margin-left: auto;
  flex-shrink: 0;
}

.gnav-ghost {
  font-size: 14px;
  font-weight: 500;
  color: var(--muted);
  text-decoration: none;
  padding: 7px 14px;
  border-radius: 7px;
  transition: 0.15s;
}

.gnav-ghost:hover {
  color: var(--ink);
}

.gnav-cta {
  font-size: 14px;
  font-weight: 600;
  background: var(--g1);
  color: #fff;
  text-decoration: none;
  padding: 8px 18px;
  border-radius: 8px;
  display: inline-flex;
  align-items: center;
  gap: 5px;
  transition: 0.15s;
  white-space: nowrap;
}

.gnav-cta:hover {
  transform: scale(1.02);
  box-shadow: 0 4px 16px rgba(52, 174, 147, 0.38);
}

.gnav-ham {
  display: flex;
  flex-direction: column;
  gap: 5px;
  background: none;
  border: none;
  cursor: pointer;
  padding: 6px;
  margin-left: 12px;
  flex-shrink: 0;
}

@media (min-width: 768px) {
  .gnav-ham {
    display: none;
  }
}

.gnav-ham span {
  display: block;
  width: 22px;
  height: 2px;
  background: var(--ink);
  border-radius: 2px;
  transition:
    transform 0.2s,
    opacity 0.2s;
}

.gnav-ham.gopen span:nth-child(1) {
  transform: translateY(7px) rotate(45deg);
}

.gnav-ham.gopen span:nth-child(2) {
  opacity: 0;
}

.gnav-ham.gopen span:nth-child(3) {
  transform: translateY(-7px) rotate(-45deg);
}

.gnav-mob {
  display: none;
  position: fixed;
  top: 64px;
  left: 0;
  right: 0;
  bottom: 0;
  background: #fff;
  overflow-y: auto;
  padding: 12px 20px 48px;
  z-index: 999;
  border-top: 1px solid var(--bdr);
}

.gnav-mob.gopen {
  display: block;
}

.gnav-mlink {
  display: block;
  font-size: 15px;
  font-weight: 500;
  color: var(--ink);
  text-decoration: none;
  padding: 12px 4px;
  border-bottom: 1px solid var(--bdr);
  transition: 0.12s;
}

.gnav-mlink:hover {
  color: var(--teal);
}

.gnav-msec {
  font-size: 11px;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: 0.07em;
  color: var(--muted);
  padding: 18px 4px 6px;
  display: block;
}

/* FOOTER */
.gfoot {
  background: linear-gradient(180deg, #f0faf7 0%, #e8f5f0 100%);
  border-top: 1px solid #d5ebe5;
  padding: 64px 0 0;
}

.gfoot-inner {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 32px;
}

.gfoot-top {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1fr 1fr;
  gap: 48px;
  padding-bottom: 48px;
}

.gfoot-brand-logo {
  display: flex;
  align-items: center;
  gap: 10px;
  text-decoration: none;
  margin-bottom: 14px;
}

.gfoot-tagline {
  font-size: 14px;
  color: #4a7a84;
  line-height: 1.7;
  margin-bottom: 20px;
  max-width: 220px;
}

.gfoot-social {
  display: flex;
  gap: 8px;
}

.gfoot-soc {
  width: 34px;
  height: 34px;
  border-radius: 8px;
  background: #fff;
  border: 1px solid #d5ebe5;
  display: flex;
  align-items: center;
  justify-content: center;
  text-decoration: none;
  font-size: 14px;
  transition: all 0.15s;
  color: #4a7a84;
  overflow: hidden;
  padding: 0;
}

.gfoot-soc:hover {
  border-color: #34ae93;
  transform: translateY(-2px);
  box-shadow: 0 4px 12px rgba(52, 174, 147, 0.2);
}

.gfoot-col-title {
  font-size: 11px;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  color: #043e54;
  margin-bottom: 14px;
  display: block;
}

.gfoot-links {
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.gfoot-link {
  font-size: 14px;
  color: #4a7a84;
  text-decoration: none;
  transition: color 0.12s;
  display: flex;
  align-items: center;
  gap: 6px;
}

.gfoot-link:hover {
  color: #34ae93;
}

.gfoot-link-new {
  font-size: 10px;
  font-weight: 700;
  background: #34ae93;
  color: #fff;
  padding: 1px 6px;
  border-radius: 4px;
  letter-spacing: 0.04em;
}

.gfoot-divider {
  border: none;
  border-top: 1px solid #d5ebe5;
  margin: 0;
}

.gfoot-bot {
  max-width: 1200px;
  margin: 0 auto;
  padding: 20px 32px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 12px;
}

.gfoot-copy {
  font-size: 13px;
  color: #4a7a84;
}

.gfoot-copy strong {
  color: #043e54;
}

.gfoot-legal {
  display: flex;
  flex-wrap: wrap;
}

.gfoot-legal a {
  font-size: 13px;
  color: #4a7a84;
  text-decoration: none;
  transition: color 0.12s;
  padding: 0 12px;
  border-right: 1px solid #d5ebe5;
}

.gfoot-legal a:first-child {
  padding-left: 0;
}

.gfoot-legal a:last-child {
  border-right: none;
}

.gfoot-legal a:hover {
  color: #043e54;
}

/* ──────── GLOBAL NAV ──────── */
.g .gnav-inner {
  max-width: 1200px;
  width: 100%;
  margin: 0 auto;
  display: flex;
  align-items: center;
  justify-content: center;
}

.gnav-logo {
  display: flex;
  align-items: center;
  text-decoration: none;
  flex-shrink: 0;
}

.gnav-links {
  display: none;
  align-items: center;
  gap: 4px;
  justify-content: center;
  flex: 1;
}

@media (min-width: 768px) {
  .gnav-links {
    display: flex;
  }
}

.gnav-link {
  font-size: 14px;
  font-weight: 500;
  color: var(--muted);
  text-decoration: none;
  padding: 6px 12px;
  border-radius: 6px;
  transition: 0.15s;
  white-space: nowrap;
}

.gnav-link:hover,
.gnav-link.gactive {
  color: var(--ink);
  background: var(--tint);
}

.gnav-dd {
  position: relative;
}

.gnav-toggle {
  display: flex;
  align-items: center;
  gap: 4px;
  cursor: pointer;
  font-size: 14px;
  font-weight: 500;
  color: var(--muted);
  padding: 6px 12px;
  border-radius: 6px;
  transition: 0.15s;
  border: none;
  background: none;
  font-family: inherit;
  white-space: nowrap;
}

.gnav-toggle:hover {
  color: var(--ink);
  background: var(--tint);
}

.gnav-chev {
  display: inline-block;
  width: 12px;
  height: 12px;
  transition: transform 0.2s;
}

.gnav-dd.gopen .gnav-chev {
  transform: rotate(180deg);
}

.gnav-menu {
  position: absolute;
  top: calc(100% + 8px);
  left: 50%;
  transform: translateX(-50%) translateY(-8px);
  background: #fff;
  border: 1px solid var(--bdr);
  border-radius: 12px;
  box-shadow: 0 12px 40px rgba(4, 62, 84, 0.12);
  min-width: 230px;
  padding: 6px;
  opacity: 0;
  pointer-events: none;
  transform: translateY(-8px);
  transition:
    opacity 0.18s,
    transform 0.18s;
  z-index: 1001;
}

.gnav-dd.gopen .gnav-menu {
  opacity: 1;
  pointer-events: auto;
  transform: translateX(-50%) translateY(0);
}

.gnav-item {
  display: block;
  font-size: 14px;
  font-weight: 500;
  color: var(--muted);
  text-decoration: none;
  padding: 9px 12px;
  border-radius: 8px;
  transition: 0.12s;
  white-space: nowrap;
}

.gnav-item:hover {
  background: var(--tint);
  color: var(--ink);
}

.gnav-sep {
  height: 1px;
  background: var(--bdr);
  margin: 4px 0;
}

.gnav-actions {
  display: flex;
  align-items: center;
  gap: 8px;
  margin-left: auto;
  flex-shrink: 0;
}

.gnav-ghost {
  font-size: 14px;
  font-weight: 500;
  color: var(--muted);
  text-decoration: none;
  padding: 7px 14px;
  border-radius: 7px;
  transition: 0.15s;
}

.gnav-ghost:hover {
  color: var(--ink);
}

.gnav-cta {
  font-size: 14px;
  font-weight: 600;
  background: var(--g1);
  color: #fff;
  text-decoration: none;
  padding: 8px 18px;
  border-radius: 8px;
  display: inline-flex;
  align-items: center;
  gap: 5px;
  transition: 0.15s;
  white-space: nowrap;
}

.gnav-cta:hover {
  transform: scale(1.02);
  box-shadow: 0 4px 16px rgba(52, 174, 147, 0.38);
}

.gnav-ham {
  display: flex;
  flex-direction: column;
  gap: 5px;
  background: none;
  border: none;
  cursor: pointer;
  padding: 6px;
  margin-left: 12px;
  flex-shrink: 0;
}

@media (min-width: 768px) {
  .gnav-ham {
    display: none;
  }
}

.gnav-ham span {
  display: block;
  width: 22px;
  height: 2px;
  background: var(--ink);
  border-radius: 2px;
  transition:
    transform 0.2s,
    opacity 0.2s;
}

.gnav-ham.gopen span:nth-child(1) {
  transform: translateY(7px) rotate(45deg);
}

.gnav-ham.gopen span:nth-child(2) {
  opacity: 0;
}

.gnav-ham.gopen span:nth-child(3) {
  transform: translateY(-7px) rotate(-45deg);
}

.gnav-mob {
  display: none;
  position: fixed;
  top: 64px;
  left: 0;
  right: 0;
  bottom: 0;
  background: #fff;
  overflow-y: auto;
  padding: 12px 20px 48px;
  z-index: 999;
  border-top: 1px solid var(--bdr);
}

.gnav-mob.gopen {
  display: block;
}

.gnav-mlink {
  display: block;
  font-size: 15px;
  font-weight: 500;
  color: var(--ink);
  text-decoration: none;
  padding: 12px 4px;
  border-bottom: 1px solid var(--bdr);
  transition: 0.12s;
}

.gnav-mlink:hover {
  color: var(--teal);
}

.gnav-msec {
  font-size: 11px;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: 0.07em;
  color: var(--muted);
  padding: 18px 4px 6px;
  display: block;
}

/* ──────── GLOBAL FOOTER ──────── */

/* ──────── SHARED UTILITIES ──────── */
.wrap {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 32px;
}

.chip {
  display: inline-flex;
  align-items: center;
  gap: 7px;
  background: var(--tint);
  border: 1px solid var(--bdr);
  color: var(--teal);
  font-family: "Sora", sans-serif;
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.07em;
  text-transform: uppercase;
  padding: 5px 14px;
  border-radius: 100px;
  margin-bottom: 22px;
}

.chip::before {
  content: "";
  width: 6px;
  height: 6px;
  background: var(--teal);
  border-radius: 50%;
  flex-shrink: 0;
}

h1 {
  font-family: "Sora", sans-serif;
  font-size: clamp(38px, 5.8vw, 60px);
  font-weight: 800;
  line-height: 1.04;
  letter-spacing: -0.03em;
  color: var(--ink);
}

h2 {
  font-family: "Sora", sans-serif;
  font-size: clamp(30px, 4.2vw, 52px);
  font-weight: 800;
  line-height: 1.1;
  letter-spacing: -0.025em;
  color: var(--ink);
}

h3 {
  font-family: "Sora", sans-serif;
}

.lead {
  font-size: clamp(15px, 1.8vw, 18px);
  color: var(--muted);
  line-height: 1.8;
}

.g-text {
  background: var(--g1);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.btn-g {
  font-family: "Sora", sans-serif;
  font-size: 14px;
  font-weight: 700;
  background: var(--g2);
  color: #fff;
  text-decoration: none;
  padding: 13px 26px;
  border-radius: 10px;
  border: none;
  cursor: pointer;
  transition:
    transform 0.18s,
    box-shadow 0.18s;
  display: inline-flex;
  align-items: center;
  gap: 7px;
  white-space: nowrap;
}

.btn-g:hover {
  transform: translateY(-2px);
  box-shadow: 0 10px 30px rgba(52, 174, 147, 0.38);
}

.btn-o {
  font-family: "Sora", sans-serif;
  font-size: 14px;
  font-weight: 700;
  border: 2px solid var(--ink);
  color: var(--ink);
  background: transparent;
  text-decoration: none;
  padding: 12px 26px;
  border-radius: 10px;
  display: inline-flex;
  align-items: center;
  gap: 7px;
  white-space: nowrap;
  transition:
    background 0.15s,
    transform 0.15s;
  cursor: pointer;
}

.btn-o:hover {
  background: var(--tint);
  transform: translateY(-1px);
}

/* ──────── SCROLL REVEAL ──────── */
.sr {
  opacity: 0;
  transform: translateY(22px);
  transition:
    opacity 0.55s cubic-bezier(0.4, 0, 0.2, 1),
    transform 0.55s cubic-bezier(0.4, 0, 0.2, 1);
}

.sr.on {
  opacity: 1;
  transform: translateY(0);
}

.sr.d1 {
  transition-delay: 0.08s;
}

.sr.d2 {
  transition-delay: 0.16s;
}

.sr.d3 {
  transition-delay: 0.24s;
}

.sr.d4 {
  transition-delay: 0.32s;
}

/* ════════════════════════════════════════
HERO
════════════════════════════════════════ */
#hero {
  padding: calc(var(--nh) + 72px) 0 40px;
  background: linear-gradient(165deg, #e8f6f0 0%, #f7fdfb 40%, #ffffff 70%);
  overflow: hidden;
  position: relative;
}

.hero {
  background: var(--surface);
  border-bottom: 1px solid var(--border);
  padding: 56px 24px 48px;
  text-align: center;
}

#hero::before {
  content: "";
  position: absolute;
  top: -100px;
  right: -150px;
  width: 680px;
  height: 680px;
  border-radius: 50%;
  background: radial-gradient(
    circle,
    rgba(138, 216, 163, 0.2) 0%,
    transparent 62%
  );
  pointer-events: none;
}

.hero-eyebrow {
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 1.5px;
  text-transform: uppercase;
  color: var(--mint);
  margin-bottom: 16px;
}

.hero-grid-home {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 32px;
  display: grid;
  grid-template-columns: 1fr;
  gap: 64px;
  align-items: center;
}

@media (min-width: 960px) {
  .hero-grid-home {
    grid-template-columns: 1fr 1fr;
    gap: 56px;
  }
}

/* Left copy */
.hero-l .kicker {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: rgba(52, 174, 147, 0.1);
  border: 1px solid rgba(52, 174, 147, 0.28);
  color: var(--teal);
  font-family: "Sora", sans-serif;
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 0.07em;
  text-transform: uppercase;
  padding: 6px 14px;
  border-radius: 100px;
  margin-bottom: 28px;
}

.kdot {
  width: 7px;
  height: 7px;
  background: var(--teal);
  border-radius: 50%;
  animation: kpulse 2s ease-in-out infinite;
}

@keyframes kpulse {
  0%,
  100% {
    transform: scale(1);
  }

  50% {
    transform: scale(1.6);
    opacity: 0.4;
  }
}

.hero-l h1 {
  margin-bottom: 24px;
}

.hero-l .lead {
  max-width: 520px;
  margin-bottom: 38px;
}

.hero-actions {
  display: flex;
  gap: 12px;
  flex-wrap: wrap;
  align-items: center;
  margin-bottom: 44px;
}

.hero-proof {
  display: flex;
  align-items: center;
  gap: 12px;
  padding-top: 24px;
  border-top: 1px solid var(--bdr);
}

.proof-faces {
  display: flex;
}

.pface {
  width: 32px;
  height: 32px;
  border-radius: 50%;
  border: 2.5px solid #fff;
  background: var(--g1);
  margin-left: -9px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: "Sora", sans-serif;
  font-size: 11px;
  font-weight: 700;
  color: #fff;
  flex-shrink: 0;
}

.pface:first-child {
  margin-left: 0;
}

.proof-txt {
  font-size: 13px;
  color: var(--muted);
  font-weight: 500;
}

.proof-txt strong {
  color: var(--ink);
}

/* Hero right — custom dashboard illustration */
.hero-r {
  position: relative;
  padding-bottom: 28px;
}

.hero-mock {
  background: #fff;
  border: 1.5px solid var(--bdr);
  border-radius: 20px;
  box-shadow:
    0 40px 100px rgba(4, 62, 84, 0.16),
    0 4px 16px rgba(4, 62, 84, 0.07);
  overflow: hidden;
  position: relative;
}

/* floating stat cards */
.hfloat {
  will-change: transform;
  position: absolute;
  background: #fff;
  border-radius: 14px;
  box-shadow: 0 10px 36px rgba(4, 62, 84, 0.14);
  padding: 11px 16px;
  display: flex;
  align-items: center;
  gap: 10px;
  z-index: 10;
}

.hf1 {
  bottom: 80px;
  left: -24px;
  animation: bob 4s ease-in-out infinite;
  z-index: 10;
}

.hf2 {
  top: -14px;
  right: -18px;
  animation: bob 4.5s ease-in-out infinite 2s;
  z-index: 10;
}

@keyframes bob {
  0%,
  100% {
    transform: translateY(0);
  }

  50% {
    transform: translateY(-10px);
  }
}

.hfico {
  width: 36px;
  height: 36px;
  border-radius: 10px;
  background: var(--g1);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

.hfico svg {
  width: 18px;
  height: 18px;
  fill: #fff;
}

.hfval {
  font-family: "Sora", sans-serif;
  font-size: 18px;
  font-weight: 800;
  color: var(--ink);
  line-height: 1;
}

.hflbl {
  font-size: 11px;
  color: var(--muted);
  margin-top: 2px;
  font-weight: 500;
}

.hero-plats {
  display: flex;
  gap: 8px;
  flex-wrap: wrap;
  margin-top: 22px;
  position: relative;
  z-index: 5;
}

.plat {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  background: #fff;
  border: 1px solid var(--bdr);
  border-radius: 8px;
  padding: 7px 13px;
  font-size: 12px;
  font-weight: 600;
  color: var(--muted);
  box-shadow: 0 2px 8px rgba(4, 62, 84, 0.05);
}

.pdot {
  width: 8px;
  height: 8px;
  border-radius: 50%;
}

.pdot.ig {
  background: #e1306c;
}

.pdot.yt {
  background: #ff0000;
}

.pdot.tt {
  background: #222;
}

.pdot.tw {
  background: #9146ff;
}

/* ════════════════════════════════════════
BRANDS STRIP
════════════════════════════════════════ */
/* brands handled above */
#brands {
  background: var(--surf);
  border-top: 1px solid var(--bdr);
  border-bottom: 1px solid var(--bdr);
  padding: 0;
  overflow: hidden;
}

.brands-top {
  text-align: center;
  padding: 22px 0 14px;
  font-size: 11px;
  font-weight: 600;
  color: var(--muted);
  text-transform: uppercase;
  letter-spacing: 0.12em;
  opacity: 0.6;
}

.brands-in {
  position: relative;
  overflow: hidden;
  padding: 0 0 22px;
}

.brands-in::before,
.brands-in::after {
  content: "";
  position: absolute;
  top: 0;
  bottom: 0;
  width: 100px;
  z-index: 2;
  pointer-events: none;
}

.brands-in::before {
  left: 0;
  background: linear-gradient(to right, var(--surf) 30%, transparent);
}

.brands-in::after {
  right: 0;
  background: linear-gradient(to left, var(--surf) 30%, transparent);
}

.brands-lbl {
  display: none;
}

.brands-list {
  display: flex;
  gap: 0;
  align-items: center;
  width: max-content;
  animation: marquee 24s linear infinite;
  will-change: transform;
}

.brands-list:hover {
  animation-play-state: paused;
}

@keyframes marquee {
  0% {
    transform: translateX(0);
  }

  100% {
    transform: translateX(-50%);
  }
}

.bname {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  font-family: "Sora", sans-serif;
  font-size: 14px;
  font-weight: 700;
  color: var(--ink);
  opacity: 0.35;
  letter-spacing: -0.01em;
  transition:
    opacity 0.25s,
    transform 0.25s;
  padding: 0 40px;
  white-space: nowrap;
  cursor: default;
}

.bname:hover {
  opacity: 0.7;
  transform: translateY(-1px);
}

.bname-dot {
  width: 9px;
  height: 9px;
  border-radius: 50%;
  flex-shrink: 0;
}

/* ════════════════════════════════════════
FEATURES — accordion + custom illustration
════════════════════════════════════════ */
#features {
  padding: 80px 0;
  background: #fff;
}

.feat-hd {
  text-align: center;
  margin-bottom: 52px;
}

.feat-hd .lead {
  max-width: 560px;
  margin: 18px auto 0;
}

/* pills */
.fpills {
  display: flex;
  justify-content: center;
  gap: 8px;
  flex-wrap: wrap;
  margin-bottom: 40px;
}

.fpill {
  font-family: "Sora", sans-serif;
  font-size: 13px;
  font-weight: 600;
  padding: 10px 22px;
  border-radius: 100px;
  border: 1.5px solid var(--bdr);
  background: #fff;
  color: var(--muted);
  cursor: pointer;
  transition: all 0.18s;
}

.fpill:hover {
  border-color: var(--teal);
  color: var(--teal);
}

.fpill.on {
  background: var(--g2);
  color: #fff;
  border-color: transparent;
  box-shadow: 0 4px 18px rgba(52, 174, 147, 0.3);
}

/* panel */
.fpanel {
  display: none;
}

.fpanel.on {
  display: grid;
  grid-template-columns: 1fr;
  gap: 0;
  align-items: stretch;
}

@media (min-width: 860px) {
  .fpanel.on {
    grid-template-columns: 1fr 1fr;
  }
}

/* accordion col */
.facc-col {
  display: flex;
  flex-direction: column;
  border: 1.5px solid var(--bdr);
  border-radius: 20px 0 0 20px;
  overflow: hidden;
}

.facc-hdr {
  padding: 28px 28px 0;
  border-bottom: 1px solid var(--bdr);
  padding-bottom: 20px;
}

.facc-hdr h3 {
  font-size: 20px;
  font-weight: 700;
  color: var(--ink);
  margin-bottom: 8px;
}

.facc-hdr p {
  font-size: 14px;
  color: var(--muted);
  line-height: 1.65;
}

.facc-items {
  flex: 1;
}

.facc-item {
  border-bottom: 1px solid var(--bdr);
}

.facc-item:last-child {
  border-bottom: none;
}

.facc-btn {
  width: 100%;
  background: none;
  border: none;
  cursor: pointer;
  font-family: "Plus Jakarta Sans", sans-serif;
  font-size: 14px;
  font-weight: 600;
  color: var(--ink);
  padding: 18px 24px;
  display: flex;
  align-items: center;
  gap: 14px;
  text-align: left;
  transition: background 0.14s;
}

.facc-btn:hover,
.facc-item.on .facc-btn {
  background: var(--tint);
}

.facc-ico {
  width: 34px;
  height: 34px;
  border-radius: 10px;
  background: var(--surf2);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  transition: background 0.18s ease;
}

.facc-ico svg {
  width: 17px;
  height: 17px;
  fill: var(--teal);
}

.facc-item.on .facc-ico {
  background: var(--g1);
}

.facc-item.on .facc-ico svg {
  fill: #fff;
}

.facc-lbl {
  flex: 1;
  font-size: 14px;
}

.facc-arr {
  width: 24px;
  height: 24px;
  border-radius: 50%;
  border: 1.5px solid var(--bdr);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 16px;
  font-weight: 300;
  color: var(--teal);
  flex-shrink: 0;
  transition:
    transform 0.2s,
    background 0.2s,
    border-color 0.2s;
}

.facc-item.on .facc-arr {
  transform: rotate(45deg);
  background: var(--teal);
  border-color: var(--teal);
  color: #fff;
}

.facc-body {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.35s ease;
}

.facc-item.on .facc-body {
  max-height: 180px;
}

.facc-body-in {
  padding: 0 24px 18px 72px;
  font-size: 14px;
  color: var(--muted);
  line-height: 1.7;
}

.facc-cta {
  display: inline-flex;
  align-items: center;
  gap: 5px;
  font-family: "Sora", sans-serif;
  font-size: 13px;
  font-weight: 700;
  color: var(--teal);
  text-decoration: none;
  padding: 20px 24px;
  border-top: 1px solid var(--bdr);
  width: 100%;
  transition: background 0.14s;
}

.facc-cta:hover {
  background: var(--tint);
}

/* illustration col */
.fill-col {
  background: var(--surf);
  border: 1.5px solid var(--bdr);
  border-left: none;
  border-radius: 0 20px 20px 0;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 28px;
  overflow: hidden;
  position: relative;
  min-height: 440px;
}

.fill-mock {
  width: 100%;
  padding: 20px;
  display: none;
  flex-direction: column;
  align-items: center;
  justify-content: flex-start;
  overflow: auto;
}

.fill-mock.on {
  display: flex;
}

/* discovery mock */
.dm-wrap {
  width: 100%;
  max-width: 370px;
  background: #fff;
  border-radius: 14px;
  border: 1px solid #d5ebe5;
  box-shadow: 0 8px 32px rgba(4, 62, 84, 0.1);
  overflow: hidden;
  font-family: "Plus Jakarta Sans", sans-serif;
}

.dm-hdr {
  padding: 11px 14px;
  border-bottom: 1px solid #d5ebe5;
  display: flex;
  gap: 8px;
  align-items: center;
}

.dm-sb {
  flex: 1;
  background: #f2f9f7;
  border: 1px solid #d5ebe5;
  border-radius: 8px;
  padding: 7px 10px;
  display: flex;
  align-items: center;
  gap: 7px;
  font-size: 11px;
  color: #4a7a84;
}

.dm-si {
  width: 12px;
  height: 12px;
  border: 2px solid #34ae93;
  border-radius: 50%;
  flex-shrink: 0;
  position: relative;
}

.dm-si::after {
  content: "";
  position: absolute;
  bottom: -4px;
  right: -4px;
  width: 4px;
  height: 1.5px;
  background: #34ae93;
  transform: rotate(45deg);
}

.dm-fb {
  background: #ecf7f3;
  border: 1px solid #d5ebe5;
  border-radius: 6px;
  padding: 5px 9px;
  font-size: 10px;
  font-weight: 600;
  color: #34ae93;
  white-space: nowrap;
}

.dm-chips {
  padding: 9px 14px;
  display: flex;
  gap: 5px;
  flex-wrap: wrap;
  border-bottom: 1px solid #d5ebe5;
}

.dm-chip {
  font-size: 9px;
  font-weight: 700;
  padding: 3px 9px;
  border-radius: 100px;
  border: 1.5px solid;
}

.dm-chip.on {
  background: linear-gradient(135deg, #8ad8a3, #34ae93);
  color: #fff;
  border-color: transparent;
}

.dm-chip.off {
  background: #fff;
  color: #4a7a84;
  border-color: #d5ebe5;
}

.dm-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 8px;
  padding: 10px 12px;
}

.dm-card {
  background: #f2f9f7;
  border-radius: 10px;
  border: 1px solid #d5ebe5;
  padding: 10px;
  text-align: center;
}

.dm-av {
  width: 36px;
  height: 36px;
  border-radius: 50%;
  margin: 0 auto 5px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 13px;
  font-weight: 800;
  color: #fff;
}

.dm-av.a {
  background: linear-gradient(135deg, #f093fb, #f5576c);
}

.dm-av.b {
  background: linear-gradient(135deg, #4facfe, #00f2fe);
}

.dm-av.c {
  background: linear-gradient(135deg, #f6d365, #fda085);
}

.dm-av.d {
  background: linear-gradient(135deg, #a18cd1, #fbc2eb);
}

.dm-nm {
  font-size: 10px;
  font-weight: 700;
  color: #043e54;
}

.dm-hdl {
  font-size: 8px;
  color: #4a7a84;
  margin-bottom: 4px;
}

.dm-niche {
  display: inline-flex;
  background: #ecf7f3;
  border-radius: 4px;
  padding: 2px 6px;
  font-size: 7px;
  font-weight: 700;
  color: #34ae93;
  margin-bottom: 5px;
}

.dm-stats {
  display: flex;
  justify-content: center;
  gap: 10px;
  margin-bottom: 7px;
}

.dm-sv {
  font-size: 11px;
  font-weight: 800;
  color: #043e54;
  line-height: 1;
}

.dm-sl {
  font-size: 7px;
  color: #4a7a84;
}

.dm-er {
  font-size: 11px;
  font-weight: 800;
  color: #34ae93;
  line-height: 1;
}

.dm-btn {
  width: 100%;
  background: linear-gradient(135deg, #8ad8a3, #34ae93);
  color: #fff;
  border: none;
  border-radius: 5px;
  padding: 5px;
  font-size: 8px;
  font-weight: 700;
  cursor: pointer;
}

/* analytics mock */
.am-wrap {
  width: 100%;
  max-width: 370px;
  background: #fff;
  border-radius: 14px;
  border: 1px solid #d5ebe5;
  box-shadow: 0 8px 32px rgba(4, 62, 84, 0.1);
  overflow: hidden;
}

.am-hdr {
  padding: 11px 14px;
  border-bottom: 1px solid #d5ebe5;
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.am-ttl {
  font-size: 12px;
  font-weight: 700;
  color: #043e54;
}

.am-per {
  font-size: 9px;
  color: #4a7a84;
  background: #f2f9f7;
  padding: 3px 9px;
  border-radius: 5px;
  border: 1px solid #d5ebe5;
}

.am-prof {
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 11px 14px;
  border-bottom: 1px solid #d5ebe5;
}

.am-pav {
  width: 38px;
  height: 38px;
  border-radius: 50%;
  background: linear-gradient(135deg, #84fab0, #08aeea);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 14px;
  font-weight: 800;
  color: #fff;
  flex-shrink: 0;
}

.am-pnm {
  font-size: 12px;
  font-weight: 700;
  color: #043e54;
}

.am-psb {
  font-size: 10px;
  color: #4a7a84;
}

.am-ptg {
  display: inline-flex;
  background: #ecf7f3;
  padding: 2px 7px;
  border-radius: 4px;
  font-size: 8px;
  font-weight: 700;
  color: #34ae93;
  margin-top: 2px;
}

.am-mets {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 6px;
  padding: 10px 14px;
  border-bottom: 1px solid #d5ebe5;
}

.am-met {
  text-align: center;
}

.am-mv {
  font-size: 15px;
  font-weight: 800;
  color: #043e54;
}

.am-mv.hi {
  color: #34ae93;
}

.am-ml {
  font-size: 8px;
  color: #4a7a84;
  margin-top: 2px;
}

.am-chart {
  padding: 10px 14px;
  border-bottom: 1px solid #d5ebe5;
}

.am-cl {
  font-size: 9px;
  font-weight: 700;
  color: #043e54;
  margin-bottom: 7px;
}

.am-bars {
  display: flex;
  align-items: flex-end;
  gap: 4px;
  height: 50px;
}

.am-bar {
  border-radius: 3px 3px 0 0;
  flex: 1;
}

.am-bar.hi {
  background: linear-gradient(135deg, #8ad8a3, #34ae93);
}

.am-bar.lo {
  background: #e8f5f0;
}

.am-demo {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 8px;
  padding: 9px 14px;
}

.am-di {
  background: #f2f9f7;
  border-radius: 8px;
  padding: 8px 10px;
}

.am-dl {
  font-size: 8px;
  color: #4a7a84;
  margin-bottom: 4px;
}

.am-dbar {
  height: 5px;
  border-radius: 3px;
  background: #e8f5f0;
  overflow: hidden;
  margin-bottom: 3px;
}

.am-dfill {
  height: 100%;
  border-radius: 3px;
  background: linear-gradient(135deg, #8ad8a3, #34ae93);
}

.am-dv {
  font-size: 9px;
  font-weight: 700;
  color: #043e54;
}

/* campaign mock */
.cm-wrap {
  width: 100%;
  max-width: 370px;
  background: #fff;
  border-radius: 14px;
  border: 1px solid #d5ebe5;
  box-shadow: 0 8px 32px rgba(4, 62, 84, 0.1);
  overflow: hidden;
}

.cm-hdr {
  padding: 11px 14px;
  border-bottom: 1px solid #d5ebe5;
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.cm-ttl {
  font-size: 12px;
  font-weight: 700;
  color: #043e54;
}

.cm-new {
  background: linear-gradient(135deg, #8ad8a3, #34ae93);
  color: #fff;
  font-size: 9px;
  font-weight: 700;
  padding: 4px 10px;
  border-radius: 5px;
  border: none;
  cursor: pointer;
}

.cm-kpis {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 5px;
  padding: 9px 12px;
  border-bottom: 1px solid #d5ebe5;
}

.cm-kpi {
  background: #f2f9f7;
  border-radius: 7px;
  padding: 8px 6px;
  text-align: center;
}

.cm-kv {
  font-size: 13px;
  font-weight: 800;
  color: #043e54;
  line-height: 1;
}

.cm-kt {
  font-size: 7px;
  color: #4a7a84;
  margin-top: 2px;
}

.cm-ku {
  font-size: 7px;
  font-weight: 700;
  color: #34ae93;
}

.cm-chart {
  padding: 9px 12px;
  border-bottom: 1px solid #d5ebe5;
}

.cm-cl {
  font-size: 9px;
  font-weight: 700;
  color: #043e54;
  margin-bottom: 6px;
}

.cm-area {
  position: relative;
  height: 46px;
  overflow: hidden;
}

.cm-area svg {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
}

.cm-infs {
  padding: 9px 12px;
}

.cm-il {
  font-size: 9px;
  font-weight: 700;
  color: #043e54;
  margin-bottom: 7px;
}

.cm-row {
  display: flex;
  align-items: center;
  gap: 7px;
  margin-bottom: 6px;
}

.cm-av {
  width: 24px;
  height: 24px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 9px;
  font-weight: 700;
  color: #fff;
  flex-shrink: 0;
}

.cm-av.a {
  background: linear-gradient(135deg, #f6d365, #fda085);
}

.cm-av.b {
  background: linear-gradient(135deg, #84fab0, #08aeea);
}

.cm-av.c {
  background: linear-gradient(135deg, #f093fb, #f5576c);
}

.cm-inm {
  font-size: 9px;
  font-weight: 600;
  color: #043e54;
  flex: 1;
}

.cm-ir {
  font-size: 8px;
  color: #4a7a84;
}

.cm-bw {
  width: 60px;
  height: 5px;
  background: #e8f5f0;
  border-radius: 3px;
  overflow: hidden;
}

.cm-bf {
  height: 100%;
  background: linear-gradient(135deg, #8ad8a3, #34ae93);
  border-radius: 3px;
}

/* brand analysis mock */
.ba-wrap {
  width: 100%;
  max-width: 370px;
  background: #fff;
  border-radius: 14px;
  border: 1px solid #d5ebe5;
  box-shadow: 0 8px 32px rgba(4, 62, 84, 0.1);
  overflow: hidden;
}

.ba-hdr {
  padding: 11px 14px;
  border-bottom: 1px solid #d5ebe5;
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.ba-ttl {
  font-size: 12px;
  font-weight: 700;
  color: #043e54;
}

.ba-btg {
  display: flex;
  align-items: center;
  gap: 5px;
  background: #f2f9f7;
  border: 1px solid #d5ebe5;
  padding: 4px 10px;
  border-radius: 7px;
}

.ba-bav {
  width: 18px;
  height: 18px;
  border-radius: 4px;
  background: linear-gradient(135deg, #8ad8a3, #34ae93);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 8px;
  font-weight: 800;
  color: #fff;
}

.ba-bnm {
  font-size: 10px;
  font-weight: 600;
  color: #043e54;
}

.ba-kpis {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 6px;
  padding: 9px 12px;
  border-bottom: 1px solid #d5ebe5;
}

.ba-kpi {
  background: #f2f9f7;
  border-radius: 8px;
  padding: 9px 8px;
  text-align: center;
}

.ba-kv {
  font-size: 15px;
  font-weight: 800;
  color: #043e54;
  line-height: 1;
}

.ba-kv.hi {
  color: #34ae93;
}

.ba-kt {
  font-size: 7px;
  color: #4a7a84;
  margin-top: 3px;
}

.ba-trend {
  padding: 9px 12px;
  border-bottom: 1px solid #d5ebe5;
}

.ba-tl {
  font-size: 9px;
  font-weight: 700;
  color: #043e54;
  margin-bottom: 7px;
}

.ba-chart {
  display: flex;
  align-items: flex-end;
  gap: 5px;
  height: 50px;
}

.ba-bg {
  display: flex;
  gap: 2px;
  align-items: flex-end;
  flex: 1;
}

.ba-b {
  border-radius: 2px 2px 0 0;
}

.ba-b.a {
  background: linear-gradient(135deg, #8ad8a3, #34ae93);
}

.ba-b.b {
  background: rgba(52, 174, 147, 0.25);
}

.ba-leg {
  display: flex;
  gap: 12px;
  margin-top: 5px;
}

.ba-li {
  display: flex;
  align-items: center;
  gap: 4px;
  font-size: 8px;
  color: #4a7a84;
}

.ba-ld {
  width: 6px;
  height: 6px;
  border-radius: 50%;
}

.ba-geo {
  padding: 8px 12px;
}

.ba-gl {
  font-size: 9px;
  font-weight: 700;
  color: #043e54;
  margin-bottom: 6px;
}

.ba-gr {
  display: flex;
  align-items: center;
  gap: 6px;
  margin-bottom: 5px;
}

.ba-gf {
  font-size: 11px;
}

.ba-gn {
  font-size: 9px;
  color: #4a7a84;
  flex: 1;
}

.ba-gb {
  height: 5px;
  border-radius: 3px;
  background: #e8f5f0;
  width: 80px;
  overflow: hidden;
}

.ba-gf2 {
  height: 100%;
  border-radius: 3px;
  background: linear-gradient(135deg, #8ad8a3, #34ae93);
}

.ba-gp {
  font-size: 9px;
  font-weight: 700;
  color: #043e54;
}

/* sentiment mock */
.sm-wrap {
  width: 100%;
  max-width: 370px;
  background: #fff;
  border-radius: 14px;
  border: 1px solid #d5ebe5;
  box-shadow: 0 8px 32px rgba(4, 62, 84, 0.1);
  overflow: hidden;
}

.sm-hdr {
  padding: 11px 14px;
  border-bottom: 1px solid #d5ebe5;
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.sm-ttl {
  font-size: 12px;
  font-weight: 700;
  color: #043e54;
}

.sm-per {
  font-size: 9px;
  color: #4a7a84;
  background: #f2f9f7;
  padding: 3px 9px;
  border-radius: 5px;
  border: 1px solid #d5ebe5;
}

.sm-top {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 8px;
  padding: 10px 12px;
  border-bottom: 1px solid #d5ebe5;
}

.sm-gc {
  background: #f2f9f7;
  border-radius: 10px;
  padding: 11px;
  text-align: center;
}

.sm-arc {
  width: 80px;
  height: 44px;
  margin: 0 auto 6px;
  display: flex;
  align-items: center;
  justify-content: center;
}

.sm-gv {
  font-size: 18px;
  font-weight: 800;
  color: #043e54;
  line-height: 1;
}

.sm-gl {
  font-size: 8px;
  font-weight: 700;
  color: #34ae93;
}

.sm-bc {
  background: #f2f9f7;
  border-radius: 10px;
  padding: 10px;
}

.sm-bl {
  font-size: 9px;
  font-weight: 700;
  color: #043e54;
  margin-bottom: 7px;
}

.sm-brow {
  display: flex;
  align-items: center;
  gap: 6px;
  margin-bottom: 5px;
}

.sm-be {
  font-size: 11px;
  width: 14px;
}

.sm-bw {
  flex: 1;
  height: 6px;
  border-radius: 3px;
  background: #e8f5f0;
  overflow: hidden;
}

.sm-bf {
  height: 100%;
  border-radius: 3px;
}

.sm-bf.pos {
  background: #34ae93;
}

.sm-bf.neu {
  background: #f59e0b;
}

.sm-bf.neg {
  background: #ef4444;
}

.sm-bp {
  font-size: 9px;
  font-weight: 700;
  color: #043e54;
  width: 24px;
  text-align: right;
}

.sm-cmp {
  padding: 8px 12px;
  border-bottom: 1px solid #d5ebe5;
}

.sm-cl {
  font-size: 9px;
  font-weight: 700;
  color: #043e54;
  margin-bottom: 7px;
}

.sm-crow {
  display: flex;
  align-items: center;
  gap: 7px;
  margin-bottom: 5px;
}

.sm-cn {
  font-size: 9px;
  color: #4a7a84;
  width: 62px;
  flex-shrink: 0;
}

.sm-cbw {
  flex: 1;
  height: 7px;
  border-radius: 4px;
  background: #e8f5f0;
  overflow: hidden;
}

.sm-cbf {
  height: 100%;
  border-radius: 4px;
}

.sm-cbf.you {
  background: linear-gradient(135deg, #8ad8a3, #34ae93);
}

.sm-cbf.comp {
  background: rgba(59, 130, 246, 0.5);
}

.sm-cp {
  font-size: 9px;
  font-weight: 700;
  color: #043e54;
  width: 24px;
  text-align: right;
}

.sm-cb {
  font-size: 8px;
  font-weight: 700;
  color: #34ae93;
  background: #ecf7f3;
  padding: 2px 5px;
  border-radius: 3px;
}

.sm-cmts {
  padding: 8px 12px;
}

.sm-ctl {
  font-size: 9px;
  font-weight: 700;
  color: #043e54;
  margin-bottom: 6px;
}

.sm-ct {
  background: #f2f9f7;
  border-radius: 7px;
  padding: 7px 9px;
  margin-bottom: 5px;
}

.sm-ctxt {
  font-size: 9px;
  color: #043e54;
  line-height: 1.4;
  margin-bottom: 3px;
}

.sm-ctag {
  display: inline-flex;
  background: #ecf7f3;
  padding: 2px 6px;
  border-radius: 3px;
  font-size: 7px;
  font-weight: 700;
  color: #34ae93;
}

@keyframes fadeSlide {
  from {
    opacity: 0;
    transform: translateY(10px);
  }

  to {
    opacity: 1;
    transform: translateY(0);
  }
}

.fill-badge {
  position: absolute;
  bottom: 16px;
  left: 16px;
  background: rgba(4, 62, 84, 0.8);
  backdrop-filter: blur(8px);
  color: #fff;
  font-family: "Sora", sans-serif;
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.05em;
  text-transform: uppercase;
  padding: 5px 12px;
  border-radius: 7px;
}

h1 .italic-line {
  font-style: italic;
}

/* ════════════════════════════════════════
COMPARE SECTION  (dark bg)
════════════════════════════════════════ */
#compare {
  padding: 80px 0;
  background: var(--ink);
  position: relative;
  overflow: hidden;
}

#compare::before {
  content: "";
  position: absolute;
  top: -200px;
  right: -200px;
  width: 640px;
  height: 640px;
  border-radius: 50%;
  background: radial-gradient(
    circle,
    rgba(138, 216, 163, 0.1) 0%,
    transparent 65%
  );
  pointer-events: none;
}

#compare::after {
  content: "";
  position: absolute;
  bottom: -100px;
  left: -100px;
  width: 480px;
  height: 480px;
  border-radius: 50%;
  background: radial-gradient(
    circle,
    rgba(52, 174, 147, 0.08) 0%,
    transparent 65%
  );
  pointer-events: none;
}

.cmp-top {
  display: grid;
  grid-template-columns: 1fr;
  gap: 48px;
  align-items: center;
  margin-bottom: 48px;
  position: relative;
  z-index: 2;
}

@media (min-width: 860px) {
  .cmp-top {
    grid-template-columns: 1fr 1fr;
    gap: 52px;
  }
}

.cmp-chip {
  display: inline-flex;
  align-items: center;
  gap: 7px;
  background: rgba(138, 216, 163, 0.12);
  border: 1px solid rgba(138, 216, 163, 0.28);
  color: #8ad8a3;
  font-family: "Sora", sans-serif;
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.07em;
  text-transform: uppercase;
  padding: 5px 14px;
  border-radius: 100px;
  margin-bottom: 22px;
}

.cmp-chip::before {
  content: "";
  width: 6px;
  height: 6px;
  background: #8ad8a3;
  border-radius: 50%;
}

.cmp-txt h2 {
  color: #fff;
  margin-bottom: 22px;
}

.cmp-txt .lead {
  color: rgba(255, 255, 255, 0.68);
  margin-bottom: 36px;
}

/* comparison illustration */
.cmp-visual {
  position: relative;
  z-index: 2;
}

.cmp-screens {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 12px;
  align-items: start;
}

.cmp-scr {
  border-radius: 14px;
  overflow: hidden;
  box-shadow: 0 12px 44px rgba(0, 0, 0, 0.4);
  transition: transform 0.25s;
}

.cmp-scr:hover {
  transform: translateY(-5px) scale(1.02);
}

.cmp-scr:nth-child(2) {
  transform: translateY(22px);
}

.cmp-scr:nth-child(2):hover {
  transform: translateY(16px) scale(1.02);
}

.cmp-scr svg {
  width: 100%;
  display: block;
  border-radius: 14px;
}

/* stat grid */
.cmp-stats {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 14px;
  position: relative;
  z-index: 2;
}

@media (min-width: 640px) {
  .cmp-stats {
    grid-template-columns: repeat(3, 1fr);
  }
}

.cstat {
  background: rgba(255, 255, 255, 0.06);
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 16px;
  padding: 24px;
  transition:
    background 0.18s ease,
    transform 0.2s;
}

.cstat:hover {
  background: rgba(255, 255, 255, 0.11);
  transform: translateY(-3px);
}

.cstat-n {
  font-family: "Sora", sans-serif;
  font-size: 12px;
  font-weight: 700;
  color: var(--mint);
  margin-bottom: 10px;
}

.cstat-title {
  font-family: "Sora", sans-serif;
  font-size: 15px;
  font-weight: 700;
  color: #fff;
  margin-bottom: 8px;
}

.cstat-desc {
  font-size: 14px;
  color: rgba(255, 255, 255, 0.55);
  line-height: 1.65;
}

/* ════════════════════════════════════════
FREE TOOLS
════════════════════════════════════════ */
#tools {
  padding: 76px 0;
  background: var(--surf);
}

.tools-hd {
  text-align: center;
  margin-bottom: 44px;
}

.tools-hd .lead {
  max-width: 520px;
  margin: 16px auto 0;
}

.tools-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 16px;
}

@media (min-width: 600px) {
  .tools-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (min-width: 960px) {
  .tools-grid {
    grid-template-columns: repeat(4, 1fr);
  }
}

.tcrd {
  background: #fff;
  border: 1.5px solid var(--bdr);
  border-radius: 20px;
  padding: 28px 24px;
  text-decoration: none;
  display: flex;
  flex-direction: column;
  gap: 14px;
  transition:
    box-shadow 0.22s,
    transform 0.22s,
    border-color 0.22s;
  position: relative;
  overflow: hidden;
}

.tcrd::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 3px;
  background: var(--g1);
  opacity: 0;
  transition: opacity 0.2s;
}

.tcrd:hover {
  box-shadow: 0 16px 48px rgba(4, 62, 84, 0.11);
  transform: translateY(-5px);
  border-color: var(--teal);
}

.tcrd:hover::before {
  opacity: 1;
}

.tcrd-ico {
  width: 50px;
  height: 50px;
  border-radius: 14px;
  background: var(--tint);
  display: flex;
  align-items: center;
  justify-content: center;
}

.tcrd-plat {
  font-family: "Sora", sans-serif;
  font-size: 10px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.07em;
  color: var(--teal);
}

.tcrd h3 {
  font-family: "Sora", sans-serif;
  font-size: 16px;
  font-weight: 700;
  color: var(--ink);
  line-height: 1.3;
}

.tcrd p {
  font-size: 14px;
  color: var(--muted);
  line-height: 1.65;
  flex: 1;
}

.tcrd-arrow {
  display: inline-flex;
  align-items: center;
  gap: 5px;
  font-family: "Sora", sans-serif;
  font-size: 13px;
  font-weight: 700;
  color: var(--teal);
  margin-top: auto;
}

/* ════════════════════════════════════════
TESTIMONIAL
════════════════════════════════════════ */
#testimonial {
  padding: 76px 0;
  background: #fff;
}

.testi-wrap {
  max-width: 920px;
  margin: 0 auto;
  position: relative;
}

.testi-slider {
  overflow: hidden;
  border-radius: 26px;
}

.testi-track {
  display: flex;
  transition: transform 0.45s cubic-bezier(0.4, 0, 0.2, 1);
  will-change: transform;
}

.testi-nav {
  display: flex;
  gap: 12px;
  justify-content: space-between;
  margin-top: 20px;
}

.testi-btn {
  outline: none;
  border: none;
  background: var(--g1);
  color: #fff;
  width: 32px;
  height: 32px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
}

.testi-card {
  min-width: 100%;
  background: var(--surf);
  border: 1.5px solid var(--bdr);
  border-radius: 26px;
  padding: 48px 52px;
  display: grid;
  grid-template-columns: 1fr;
  gap: 28px;
  align-items: center;
  position: relative;
  overflow: hidden;
  box-sizing: border-box;
}

@media (min-width: 680px) {
  .testi-card {
    grid-template-columns: auto 1fr;
  }
}

.testi-card::before {
  content: "\201C";
  position: absolute;
  top: -18px;
  right: 36px;
  font-size: 240px;
  font-family: Georgia, serif;
  color: var(--teal);
  opacity: 0.07;
  line-height: 1;
  pointer-events: none;
}

.testi-co {
  font-family: "Sora", sans-serif;
  font-size: 20px;
  font-weight: 800;
  color: var(--ink);
  background: #fff;
  border: 1.5px solid var(--bdr);
  border-radius: 14px;
  padding: 16px 24px;
  text-align: center;
  white-space: nowrap;
}

.testi-stars {
  display: flex;
  gap: 3px;
  margin-bottom: 14px;
}

.testi-stars span {
  color: #f59e0b;
  font-size: 17px;
}

.testi-q {
  font-size: clamp(15px, 1.9vw, 19px);
  font-weight: 400;
  color: var(--ink);
  line-height: 1.75;
  font-style: italic;
  margin-bottom: 22px;
}

.testi-auth {
  display: flex;
  align-items: center;
  gap: 14px;
}

.tav {
  width: 44px;
  height: 44px;
  border-radius: 50%;
  background: var(--g1);
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: "Sora", sans-serif;
  font-size: 15px;
  font-weight: 700;
  color: #fff;
  flex-shrink: 0;
}

.tname {
  font-family: "Sora", sans-serif;
  font-size: 14px;
  font-weight: 700;
  color: var(--ink);
}

.trole {
  font-size: 12px;
  color: var(--muted);
}

.testi- .testi-btn {
  width: 40px;
  height: 40px;
  border-radius: 50%;
  border: 1.5px solid var(--bdr);
  background: #fff;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  transition:
    background 0.15s,
    border-color 0.15s;
  flex-shrink: 0;
}

.testi-btn:hover {
  background: var(--teal);
  border-color: var(--teal);
}

.testi-btn svg {
  width: 16px;
  height: 16px;
  fill: none;
  stroke: var(--bg);
  stroke-width: 2;
  stroke-linecap: round;
}

.testi-dots {
  display: flex;
  gap: 8px;
  align-items: center;
}

.testi-dot {
  width: 7px;
  height: 7px;
  border-radius: 50%;
  background: var(--bdr);
  cursor: pointer;
  transition:
    background 0.18s ease,
    transform 0.2s;
}

.testi-dot.on {
  background: var(--teal);
  transform: scale(1.3);
}

/* ════════════════════════════════════════
KEY FEATURES GRID
════════════════════════════════════════ */
#keyfeats {
  padding: 76px 0;
  background: var(--surf);
}

.kf-hd {
  text-align: center;
  margin-bottom: 44px;
}

.kf-hd .lead {
  max-width: 560px;
  margin: 16px auto 0;
}

.kf-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 16px;
}

@media (min-width: 600px) {
  .kf-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (min-width: 960px) {
  .kf-grid {
    grid-template-columns: repeat(3, 1fr);
  }
}

.kcrd {
  background: #fff;
  border: 1.5px solid var(--bdr);
  border-radius: 20px;
  padding: 30px 26px;
  text-decoration: none;
  display: block;
  transition:
    box-shadow 0.2s,
    transform 0.2s;
}

.kcrd:hover {
  box-shadow: 0 14px 44px rgba(4, 62, 84, 0.09);
  transform: translateY(-4px);
}

.kcrd-ico {
  width: 46px;
  height: 46px;
  border-radius: 13px;
  background: var(--g1);
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 18px;
}

.kcrd-ico svg {
  width: 22px;
  height: 22px;
  fill: #fff;
}

.kcrd h3 {
  font-size: 17px;
  margin-bottom: 10px;
  color: #043e54;
}

.kcrd p {
  font-size: 14px;
  color: var(--muted);
  line-height: 1.65;
}

/* ════════════════════════════════════════
FAQ
════════════════════════════════════════ */
#faq {
  padding: 76px 0;
  background: #fff;
}

.faq-hd {
  text-align: center;
  margin-bottom: 42px;
}

.faq-hd .lead {
  max-width: 500px;
  margin: 16px auto 0;
}

.faq-list {
  max-width: 760px;
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.faq-item {
  background: var(--surf);
  border: 1.5px solid var(--bdr);
  border-radius: 14px;
  overflow: hidden;
}

.faq-btn {
  width: 100%;
  background: none;
  border: none;
  cursor: pointer;
  font-family: "Sora", sans-serif;
  font-size: 15px;
  font-weight: 600;
  color: var(--ink);
  padding: 20px 24px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  text-align: left;
  gap: 16px;
  transition: background 0.12s;
}

.faq-btn:hover {
  background: var(--tint);
}

.faq-plus {
  width: 30px;
  height: 30px;
  border-radius: 50%;
  background: var(--tint);
  border: 1.5px solid var(--bdr);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 19px;
  font-weight: 300;
  color: var(--teal);
  flex-shrink: 0;
  transition:
    transform 0.22s,
    background 0.2s,
    border-color 0.2s;
}

.faq-item.on .faq-plus {
  transform: rotate(45deg);
  background: var(--teal);
  border-color: var(--teal);
  color: #fff;
}

.faq-body {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.35s ease;
}

.faq-item.on .faq-body {
  max-height: 220px;
}

.faq-body-in {
  padding: 0 24px 22px;
  font-size: 15px;
  color: var(--muted);
  line-height: 1.75;
}

/* ════════════════════════════════════════
CTA BANNER
════════════════════════════════════════ */
#ctabanner {
  padding: 76px 32px;
  background: var(--ink);
  position: relative;
  overflow: hidden;
  text-align: center;
}

#ctabanner::before {
  content: "";
  position: absolute;
  top: -180px;
  left: 50%;
  transform: translateX(-50%);
  width: 800px;
  height: 500px;
  background: radial-gradient(
    ellipse,
    rgba(138, 216, 163, 0.16) 0%,
    transparent 65%
  );
  pointer-events: none;
}

.ctab-hero {
  position: relative;
  z-index: 2;
  max-width: 700px;
  margin: 0 auto;
}

#ctabanner h2 {
  color: #fff;
  margin-bottom: 22px;
}

#ctabanner .lead {
  color: rgba(255, 255, 255, 0.72);
  margin: 0 auto 40px;
}

.ctab-btns {
  display: flex;
  gap: 14px;
  justify-content: center;
  flex-wrap: wrap;
  margin-bottom: 20px;
}

.btn-w {
  font-family: "Sora", sans-serif;
  font-size: 15px;
  font-weight: 700;
  background: #fff;
  color: var(--ink);
  padding: 14px 32px;
  border-radius: 12px;
  text-decoration: none;
  border: none;
  cursor: pointer;
  display: inline-flex;
  align-items: center;
  gap: 7px;
  transition:
    transform 0.18s,
    box-shadow 0.18s;
}

.btn-w:hover {
  transform: translateY(-2px);
  box-shadow: 0 8px 28px rgba(4, 62, 84, 0.2);
}

.btn-gw {
  font-family: "Sora", sans-serif;
  font-size: 15px;
  font-weight: 700;
  color: rgba(255, 255, 255, 0.8);
  padding: 14px 28px;
  border-radius: 12px;
  text-decoration: none;
  border: 2px solid rgba(255, 255, 255, 0.25);
  display: inline-flex;
  align-items: center;
  gap: 7px;
  transition: border-color 0.18s;
}

.btn-gw:hover {
  border-color: rgba(255, 255, 255, 0.6);
}

.ctab-note {
  font-size: 13px;
  color: rgba(255, 255, 255, 0.38);
}

.gnav-link,
.gnav-toggle {
  padding: 6px 8px;
  font-size: 13px;
}

/* ──────── REDESIGNED FOOTER ──────── */
.gfoot {
  background: linear-gradient(180deg, #f0faf7 0%, #e8f5f0 100%);
  border-top: 1px solid #d5ebe5;
  padding: 64px 0 0;
}

.gfoot-inner {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 32px;
}

.gfoot-top {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1fr 1fr;
  gap: 48px;
  padding-bottom: 48px;
}

.gfoot-brand {
}

.gfoot-brand-logo {
  display: flex;
  align-items: center;
  gap: 10px;
  text-decoration: none;
  margin-bottom: 14px;
}

.gfoot-tagline {
  font-size: 14px;
  color: #4a7a84;
  line-height: 1.7;
  margin-bottom: 20px;
  max-width: 220px;
}

.gfoot-social {
  display: flex;
  gap: 8px;
}

.gfoot-soc {
  width: 34px;
  height: 34px;
  border-radius: 8px;
  background: #fff;
  border: 1px solid #d5ebe5;
  display: flex;
  align-items: center;
  justify-content: center;
  text-decoration: none;
  font-size: 14px;
  transition: all 0.15s;
  color: #4a7a84;
}

.gfoot-soc:hover {
  background: #34ae93;
  border-color: #34ae93;
  color: #fff;
  transform: translateY(-2px);
}

.gfoot-col {
}

.gfoot-col-title {
  font-size: 11px;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  color: #043e54;
  margin-bottom: 14px;
  display: block;
}

.gfoot-links {
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.gfoot-link {
  font-size: 14px;
  color: #4a7a84;
  text-decoration: none;
  transition: color 0.12s;
  display: flex;
  align-items: center;
  gap: 6px;
}

.gfoot-link:hover {
  color: #34ae93;
}

.gfoot-link-new {
  font-size: 10px;
  font-weight: 700;
  background: #34ae93;
  color: #fff;
  padding: 1px 6px;
  border-radius: 4px;
  letter-spacing: 0.04em;
}

.gfoot-divider {
  border: none;
  border-top: 1px solid #d5ebe5;
  margin: 0;
}

.gfoot-bot {
  max-width: 1200px;
  margin: 0 auto;
  padding: 20px 32px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 12px;
}

.gfoot-copy {
  font-size: 13px;
  color: #4a7a84;
}

.gfoot-copy strong {
  color: #043e54;
}

.gfoot-legal {
  display: flex;
  gap: 0;
  flex-wrap: wrap;
}

.gfoot-legal a {
  font-size: 13px;
  color: #4a7a84;
  text-decoration: none;
  transition: color 0.12s;
  padding: 0 12px;
  border-right: 1px solid #d5ebe5;
}

.gfoot-legal a:first-child {
  padding-left: 0;
}

.gfoot-legal a:last-child {
  border-right: none;
}

.gfoot-legal a:hover {
  color: #043e54;
}

.gfoot-badge {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  background: #fff;
  border: 1px solid #d5ebe5;
  border-radius: 8px;
  padding: 6px 12px;
  font-size: 12px;
  font-weight: 600;
  color: #4a7a84;
  margin-bottom: 16px;
}

.gfoot-badge::before {
  content: "";
  width: 6px;
  height: 6px;
  background: #34ae93;
  border-radius: 50%;
}
/* ── Dreabee Unified Nav & Footer — hardcoded, no CSS var deps ── */
.gnav {
  position: sticky;
  top: 0;
  z-index: 1000;
  height: 64px;
  background: rgba(255, 255, 255, 0.97);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  border-bottom: 1px solid #d5ebe5;
  display: flex;
  align-items: center;
  padding: 0 24px;
}

.gnav-inner {
  max-width: 1200px;
  width: 100%;
  margin: 0 auto;
  display: flex;
  align-items: center;
  justify-content: center;
}

.gnav-logo {
  display: flex;
  align-items: center;
  text-decoration: none;
  flex-shrink: 0;
  margin-right: auto;
}

.gnav-links {
  display: none;
  align-items: center;
  gap: 2px;
  justify-content: center;
  flex: 1;
}

@media (min-width: 768px) {
  .gnav-links {
    display: flex;
  }
}

.gnav-link {
  font-size: 14px;
  font-weight: 500;
  color: #4a7a84;
  text-decoration: none;
  padding: 6px 11px;
  border-radius: 6px;
  transition: 0.15s;
  white-space: nowrap;
}

.gnav-link:hover,
.gnav-link.gactive {
  color: #043e54;
  background: #ecf7f3;
}

.gnav-dd {
  position: relative;
}

.gnav-toggle {
  display: flex;
  align-items: center;
  gap: 4px;
  cursor: pointer;
  font-size: 14px;
  font-weight: 500;
  color: #4a7a84;
  padding: 6px 12px;
  border-radius: 6px;
  transition: 0.15s;
  border: none;
  background: none;
  font-family: inherit;
  white-space: nowrap;
}

.gnav-toggle:hover {
  color: #043e54;
  background: #ecf7f3;
}

.gnav-chev {
  display: inline-block;
  width: 12px;
  height: 12px;
  transition: transform 0.2s;
}

.gnav-dd.gopen .gnav-chev {
  transform: rotate(180deg);
}

.gnav-menu {
  position: absolute;
  top: calc(100% + 8px);
  left: 50%;
  transform: translateX(-50%) translateY(-8px);
  background: #fff;
  border: 1px solid #d5ebe5;
  border-radius: 12px;
  box-shadow: 0 12px 40px rgba(4, 62, 84, 0.12);
  min-width: 230px;
  padding: 6px;
  opacity: 0;
  pointer-events: none;
  transition:
    opacity 0.18s,
    transform 0.18s;
  z-index: 1001;
}

.gnav-dd.gopen .gnav-menu {
  opacity: 1;
  pointer-events: auto;
  transform: translateX(-50%) translateY(0);
}

.gnav-item {
  display: block;
  font-size: 14px;
  font-weight: 500;
  color: #4a7a84;
  text-decoration: none;
  padding: 9px 12px;
  border-radius: 8px;
  transition: 0.12s;
  white-space: nowrap;
}

.gnav-item:hover {
  background: #ecf7f3;
  color: #043e54;
}

.gnav-sep {
  height: 1px;
  background: #d5ebe5;
  margin: 4px 0;
}

.gnav-actions {
  display: flex;
  align-items: center;
  gap: 8px;
  margin-left: auto;
  flex-shrink: 0;
}

.gnav-ghost {
  font-size: 14px;
  font-weight: 500;
  color: #4a7a84;
  text-decoration: none;
  padding: 7px 14px;
  border-radius: 7px;
  transition: 0.15s;
}

.gnav-ghost:hover {
  color: #043e54;
}

.gnav-cta {
  font-size: 14px;
  font-weight: 600;
  background: linear-gradient(135deg, #8ad8a3 0%, #34ae93 100%);
  color: #fff;
  text-decoration: none;
  padding: 8px 18px;
  border-radius: 8px;
  display: inline-flex;
  align-items: center;
  gap: 5px;
  transition: 0.15s;
  white-space: nowrap;
  border: none;
  cursor: pointer;
  font-family: inherit;
}

.gnav-cta:hover {
  transform: scale(1.02);
  box-shadow: 0 4px 16px rgba(52, 174, 147, 0.38);
}

.gnav-ham {
  display: flex;
  flex-direction: column;
  gap: 5px;
  background: none;
  border: none;
  cursor: pointer;
  padding: 6px;
  margin-left: 12px;
  flex-shrink: 0;
}

@media (min-width: 768px) {
  .gnav-ham {
    display: none;
  }
}

.gnav-ham span {
  display: block;
  width: 22px;
  height: 2px;
  background: #043e54;
  border-radius: 2px;
  transition:
    transform 0.2s,
    opacity 0.2s;
}

.gnav-ham.gopen span:nth-child(1) {
  transform: translateY(7px) rotate(45deg);
}

.gnav-ham.gopen span:nth-child(2) {
  opacity: 0;
}

.gnav-ham.gopen span:nth-child(3) {
  transform: translateY(-7px) rotate(-45deg);
}

.gnav-mob {
  display: none;
  position: fixed;
  top: 64px;
  left: 0;
  right: 0;
  bottom: 0;
  background: #fff;
  overflow-y: auto;
  padding: 12px 20px 48px;
  z-index: 999;
  border-top: 1px solid #d5ebe5;
}

.gnav-mob.gopen {
  display: block;
}

.gnav-mlink {
  display: block;
  font-size: 15px;
  font-weight: 500;
  color: #043e54;
  text-decoration: none;
  padding: 12px 4px;
  border-bottom: 1px solid #d5ebe5;
  transition: 0.12s;
}

.gnav-mlink:hover {
  color: #34ae93;
}

.gnav-msec {
  font-size: 11px;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: 0.07em;
  color: #4a7a84;
  padding: 18px 4px 6px;
  display: block;
}

/* Footer */
.gfoot {
  background: linear-gradient(180deg, #f0faf7 0%, #e8f5f0 100%) !important;
  border-top: 1px solid #d5ebe5 !important;
  padding: 64px 0 0 !important;
}

.gfoot-inner {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 32px;
}

.gfoot-top {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1fr 1fr;
  gap: 48px;
  padding-bottom: 48px;
}

.gfoot-brand-logo {
  display: flex;
  align-items: center;
  gap: 10px;
  text-decoration: none;
  margin-bottom: 14px;
}

.gfoot-tagline {
  font-size: 14px;
  color: #4a7a84;
  line-height: 1.7;
  margin-bottom: 20px;
  max-width: 220px;
}

.gfoot-social {
  display: flex;
  gap: 8px;
}

.gfoot-soc {
  width: 34px;
  height: 34px;
  border-radius: 8px;
  background: #fff;
  border: 1px solid #d5ebe5;
  display: flex;
  align-items: center;
  justify-content: center;
  text-decoration: none;
  transition: all 0.15s;
  color: #4a7a84;
  overflow: hidden;
}

.gfoot-soc:hover {
  background: #34ae93;
  border-color: #34ae93;
  color: #fff;
  transform: translateY(-2px);
}

.gfoot-col {
}

.gfoot-col-title {
  font-size: 11px;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  color: #043e54;
  margin-bottom: 14px;
  display: block;
}

.gfoot-links {
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.gfoot-link {
  font-size: 14px;
  color: #4a7a84;
  text-decoration: none;
  transition: color 0.12s;
  display: flex;
  align-items: center;
  gap: 6px;
}

.gfoot-link:hover {
  color: #34ae93;
}

.gfoot-link-new {
  font-size: 10px;
  font-weight: 700;
  background: #34ae93;
  color: #fff;
  padding: 1px 6px;
  border-radius: 4px;
  letter-spacing: 0.04em;
}

.gfoot-divider {
  border: none;
  border-top: 1px solid #d5ebe5;
  margin: 0;
}

.gfoot-bot {
  max-width: 1200px;
  margin: 0 auto;
  padding: 20px 32px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 12px;
}

.gfoot-copy {
  font-size: 13px;
  color: #4a7a84;
}

.gfoot-copy strong {
  color: #043e54;
}

.gfoot-legal {
  display: flex;
  gap: 0;
  flex-wrap: wrap;
}

.gfoot-legal a {
  font-size: 13px;
  color: #4a7a84;
  text-decoration: none;
  transition: color 0.12s;
  padding: 0 12px;
  border-right: 1px solid #d5ebe5;
}

.gfoot-legal a:first-child {
  padding-left: 0;
}

.gfoot-legal a:last-child {
  border-right: none;
  padding-right: 0;
}

.gfoot-legal a:hover {
  color: #043e54;
}

.youtube-ing-rate-hero {
  text-align: center;
}

.sub {
  font-size: clamp(14px, 1.6vw, 16px);
  color: var(--muted);
  line-height: 1.75;
}

.grad-text {
  background: var(--g1);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.badge-pill {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  background: var(--tint);
  border: 1px solid rgba(52, 174, 147, 0.3);
  color: var(--teal);
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 0.05em;
  text-transform: uppercase;
  padding: 5px 14px;
  border-radius: 100px;
}

.badge-pill::before {
  content: "";
  width: 6px;
  height: 6px;
  background: var(--teal);
  border-radius: 50%;
}

.btn-cta {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  background: var(--g1);
  color: #fff;
  font-size: 15px;
  font-weight: 700;
  font-family: inherit;
  padding: 13px 28px;
  border-radius: 10px;
  border: none;
  cursor: pointer;
  text-decoration: none;
  transition: 0.15s;
}

.btn-cta:hover {
  transform: scale(1.02);
  box-shadow: 0 6px 22px rgba(52, 174, 147, 0.42);
}

.btn-white {
  background: #fff;
  color: var(--ink);
  font-size: 15px;
  font-weight: 700;
  padding: 13px 28px;
  border-radius: 10px;
  text-decoration: none;
  border: none;
  cursor: pointer;
  display: inline-flex;
  align-items: center;
  gap: 6px;
  transition: 0.15s;
}

.btn-white:hover {
  transform: scale(1.02);
  box-shadow: 0 6px 20px rgba(4, 62, 84, 0.2);
}

.fi {
  opacity: 0;
  transform: translateY(20px);
  transition:
    opacity 0.55s ease,
    transform 0.55s ease;
}

.fi.vis {
  opacity: 1;
  transform: none;
}

.d1 {
  transition-delay: 0.1s;
}

.d2 {
  transition-delay: 0.2s;
}

.d3 {
  transition-delay: 0.3s;
}

/* HERO */

.hero-grid {
  position: absolute;
  inset: 0;
  z-index: 0;
  background-image:
    linear-gradient(rgba(52, 174, 147, 0.04) 1px, transparent 1px),
    linear-gradient(90deg, rgba(52, 174, 147, 0.04) 1px, transparent 1px);
  background-size: 52px 52px;
  mask-image: radial-gradient(
    ellipse 80% 65% at 50% 30%,
    rgba(0, 0, 0, 0.45) 0%,
    transparent 70%
  );
  -webkit-mask-image: radial-gradient(
    ellipse 80% 65% at 50% 30%,
    rgba(0, 0, 0, 0.45) 0%,
    transparent 70%
  );
}

#hero .wrap {
  position: relative;
  z-index: 1;
}

#hero h1 {
  margin: 0 auto 14px;
  font-family: "DM Serif Display", Georgia, serif;
  font-size: clamp(34px, 5.5vw, 52px);
  font-weight: 400;
  line-height: 1.08;
  letter-spacing: -0.02em;
  max-width: 860px;
  margin: 0 auto 20px;
}

.heading-sora {
  font-family: "Sora", sans-serif !important;
  font-size: clamp(38px, 5.8vw, 60px) !important;
  font-weight: 800 !important;
  line-height: 1.04 !important;
  letter-spacing: -0.03em !important;
}

.heading-sora-70 {
  font-family: "Sora", sans-serif !important;
  font-size: clamp(38px, 5.8vw, 70px) !important;
  font-weight: 800 !important;
  line-height: 1.04 !important;
  letter-spacing: -0.03em !important;
}

.heading-dm-sns {
  font-family: "DM Serif Display", Georgia, serif;
  font-size: clamp(28px, 3.8vw, 44px);
  font-weight: 400;
  line-height: 1.15;
  letter-spacing: -0.01em;
  color: var(--primary);
}

#hero .sub {
  max-width: 660px;
  margin: 0 auto 32px;
}

/* Search card */
.search-card {
  max-width: 600px;
  margin: 0 auto;
  background: #fff;
  border: 1.5px solid var(--border);
  border-radius: 16px;
  padding: 22px 22px 18px;
  box-shadow: var(--s-lg);
}

.sc-label {
  font-size: 13px;
  font-weight: 700;
  color: var(--muted);
  margin-bottom: 10px;
  text-align: left;
}

.sc-row {
  display: flex;
  gap: 10px;
}

.sc-input {
  flex: 1;
  padding: 12px 16px;
  font-size: 15px;
  font-family: inherit;
  border: 1.5px solid var(--border);
  border-radius: 10px;
  outline: none;
  transition: 0.15s;
  color: var(--ink);
  background: var(--surface);
}

.sc-input:focus {
  border-color: var(--teal);
  box-shadow: 0 0 0 3px rgba(52, 174, 147, 0.12);
  background: #fff;
}

.sc-input::placeholder {
  color: #aac4bf;
}

.sc-input.err {
  border-color: #ef4444;
}

.sc-note {
  font-size: 12px;
  color: var(--muted);
  margin-top: 9px;
  text-align: center;
}

.sc-note span {
  color: var(--teal);
  font-weight: 600;
}

/* RESULT AREA */
#result-area {
  background: var(--surface);
  padding: 0 24px 56px;
}

.ra-inner {
  max-width: 800px;
  margin: 0 auto;
  padding-top: 28px;
}

/* Loading */
.loading-box {
  background: #fff;
  border: 1px solid var(--border);
  border-radius: 18px;
  padding: 40px 28px;
  text-align: center;
  display: none;
  flex-direction: column;
  align-items: center;
  gap: 14px;
  box-shadow: var(--s-md);
}

.loading-box.show {
  display: flex;
}

.spinner {
  width: 38px;
  height: 38px;
  border-radius: 50%;
  border: 3px solid var(--border);
  border-top-color: var(--teal);
  animation: spin 0.7s linear infinite;
}

@keyframes spin {
  to {
    transform: rotate(360deg);
  }
}

.load-txt {
  font-size: 15px;
  font-weight: 600;
  color: var(--muted);
}

.load-steps {
  display: flex;
  flex-direction: column;
  gap: 8px;
  width: 100%;
  max-width: 300px;
  margin-top: 4px;
}

.step-row {
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: 13px;
  color: var(--muted);
}

.step-dot-fake-followers {
  width: 9px;
  height: 9px;
  border-radius: 50%;
  background: var(--border);
  flex-shrink: 0;
  transition: background 0.3s;
}

.step-dot-fake-followers.done {
  background: var(--teal);
}

.step-dot-fake-followers.pulse {
  background: var(--teal);
  animation: blink 1s ease-in-out infinite;
}

@keyframes blink {
  0%,
  100% {
    opacity: 1;
  }

  50% {
    opacity: 0.25;
  }
}

/* Result card */
.result-card {
  background: #fff;
  border: 1px solid var(--border);
  border-radius: 18px;
  overflow: hidden;
  box-shadow: var(--s-lg);
  opacity: 0;
  transform: translateY(16px);
  transition:
    opacity 0.5s ease,
    transform 0.5s ease;
}

.result-card.show {
  opacity: 1;
  transform: none;
}

/* Card header */
.rc-head {
  background: var(--ink);
  padding: 20px 24px;
  display: flex;
  align-items: flex-start;
  gap: 14px;
  flex-wrap: wrap;
}

.rc-av {
  width: 56px;
  height: 56px;
  border-radius: 50%;
  flex-shrink: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 19px;
  font-weight: 900;
  color: #fff;
  border: 3px solid rgba(255, 255, 255, 0.2);
}

.rc-meta {
  flex: 1;
  min-width: 140px;
}

.rc-name {
  font-size: 17px;
  font-weight: 800;
  color: #fff;
  display: flex;
  align-items: center;
  gap: 6px;
}

.rc-handle {
  font-size: 13px;
  color: rgba(255, 255, 255, 0.6);
  margin-top: 2px;
}

.rc-loc {
  font-size: 12px;
  color: rgba(255, 255, 255, 0.45);
  margin-top: 3px;
}

.rc-bio {
  font-size: 13px;
  color: rgba(255, 255, 255, 0.65);
  margin-top: 5px;
  font-style: italic;
}

.verified-tag {
  font-size: 10px;
  font-weight: 700;
  color: var(--mint);
  background: rgba(138, 216, 163, 0.15);
  border: 1px solid rgba(138, 216, 163, 0.3);
  padding: 2px 8px;
  border-radius: 100px;
  margin-top: 5px;
  display: inline-block;
}

.rc-btns {
  display: flex;
  gap: 8px;
  flex-wrap: wrap;
  margin-left: auto;
  align-self: flex-start;
}

.rc-btn {
  background: rgba(255, 255, 255, 0.1);
  border: 1px solid rgba(255, 255, 255, 0.2);
  color: #fff;
  font-size: 12px;
  font-weight: 600;
  padding: 7px 13px;
  border-radius: 8px;
  cursor: pointer;
  font-family: inherit;
  transition: 0.15s;
}

.rc-btn:hover {
  background: rgba(255, 255, 255, 0.18);
}

/* Card body */
.rc-body-fake-followers {
  padding: 22px 24px;
  display: flex;
  flex-direction: column;
  gap: 22px;
}

.fake-followers-hero {
  text-align: center;
}

/* KPI tiles */
.kpi-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 10px;
}

@media (min-width: 540px) {
  .kpi-grid {
    grid-template-columns: repeat(4, 1fr);
  }
}

.kpi {
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: 11px;
  padding: 13px 10px;
  text-align: center;
}

.kpi.red {
  border-color: rgba(239, 68, 68, 0.3);
  background: #fef2f2;
}

.kpi.green {
  border-color: rgba(34, 197, 94, 0.3);
  background: #f0fdf4;
}

.kpi-v {
  font-family: "DM Serif Display", serif;
  font-size: 20px;
  color: var(--ink);
  line-height: 1;
}

.kpi.red .kpi-v {
  color: #dc2626;
}

.kpi.green .kpi-v {
  color: #16a34a;
}

.kpi-icon {
  font-size: 16px;
  margin-bottom: 4px;
}

.kpi-l {
  font-size: 11px;
  color: var(--muted);
  font-weight: 600;
  margin-top: 4px;
}

/* Quality row */
.quality-row {
  display: flex;
  align-items: center;
  gap: 16px;
  flex-wrap: wrap;
}

.q-ring {
  width: 72px;
  height: 72px;
  border-radius: 50%;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  border: 4px solid;
  flex-shrink: 0;
}

.q-grade {
  font-family: "DM Serif Display", serif;
  font-size: 22px;
  line-height: 1;
}

.q-score {
  font-size: 10px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.04em;
  margin-top: 2px;
}

.q-details {
  flex: 1;
  display: flex;
  flex-direction: column;
  gap: 6px;
}

.qd-row {
  display: flex;
  justify-content: space-between;
  font-size: 13px;
}

.qd-l {
  color: var(--muted);
  font-weight: 500;
}

.qd-v {
  font-weight: 700;
  color: var(--ink);
}

/* Audience bars */
.aud-head {
  font-size: 13px;
  font-weight: 700;
  color: var(--ink);
  margin-bottom: 12px;
  display: flex;
  justify-content: space-between;
}

.aud-note {
  font-size: 11px;
  font-weight: 600;
  color: var(--muted);
}

.bar-rows {
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.bar-row {
  display: flex;
  align-items: center;
  gap: 10px;
}

.bar-lbl {
  font-size: 13px;
  font-weight: 500;
  width: 148px;
  flex-shrink: 0;
  display: flex;
  align-items: center;
  gap: 5px;
}

.bar-dot {
  width: 8px;
  height: 8px;
  border-radius: 2px;
  flex-shrink: 0;
}

.bar-track {
  flex: 1;
  height: 9px;
  background: var(--border);
  border-radius: 5px;
  overflow: hidden;
}

.bar-fill {
  height: 100%;
  border-radius: 5px;
  width: 0%;
  transition: width 0.9s cubic-bezier(0.25, 0.46, 0.45, 0.94);
}

.bar-pct {
  font-size: 13px;
  font-weight: 700;
  width: 46px;
  text-align: right;
}

.flag-badge {
  font-size: 10px;
  font-weight: 700;
  background: #fef9c3;
  color: #a16207;
  border: 1px solid #fde68a;
  padding: 2px 6px;
  border-radius: 100px;
}

/* Card footer */
.rc-foot {
  border-top: 1px solid var(--border);
  background: var(--surface);
  padding: 14px 24px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 10px;
}

.rc-foot-note {
  font-size: 12px;
  color: var(--muted);
}

.rc-foot-note strong {
  color: var(--ink);
}

.rc-foot-link {
  font-size: 13px;
  font-weight: 700;
  color: var(--teal);
  text-decoration: none;
}

/* Unlock CTA */
.unlock-row {
  text-align: center;
  padding-top: 4px;
}

/* DATA SECTIONS */
.sec {
  padding: 64px 24px;
}

.sec.alt {
  background: var(--surface);
}

.sec-inner {
  max-width: 860px;
  margin: 0 auto;
}

.sec-inner h2 {
  margin-bottom: 14px;
}

.sec-inner p {
  font-size: 15px;
  color: var(--muted);
  line-height: 1.75;
  margin-bottom: 14px;
}

.hl-box {
  background: var(--tint);
  border: 1px solid var(--border);
  border-radius: 10px;
  padding: 14px 18px;
  font-size: 14px;
  color: var(--ink);
  line-height: 1.65;
  margin-top: 6px;
}

/* Stat cards */
.sc3 {
  display: grid;
  grid-template-columns: 1fr;
  gap: 14px;
  margin: 20px 0;
}

@media (min-width: 540px) {
  .sc3 {
    grid-template-columns: repeat(3, 1fr);
  }
}

.scard {
  background: #fff;
  border: 1px solid var(--border);
  border-radius: 12px;
  padding: 18px 14px;
  text-align: center;
  position: relative;
  overflow: hidden;
  box-shadow: var(--s-sm);
  transition: 0.2s;
}

.scard:hover {
  transform: translateY(-2px);
  box-shadow: var(--s-md);
}

.scard::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 3px;
  background: var(--g1);
}

.scard-ico {
  font-size: 22px;
  margin-bottom: 7px;
}

.scard-lbl {
  font-size: 11px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  color: var(--muted);
  margin-bottom: 5px;
}

.scard-v {
  font-family: "DM Serif Display", serif;
  font-size: 28px;
  color: var(--ink);
  line-height: 1;
}

.scard-sub {
  font-size: 11px;
  color: var(--muted);
  margin-top: 4px;
}

/* Stat rows */
.srows {
  display: flex;
  flex-direction: column;
  gap: 10px;
  margin: 18px 0;
}

.srow {
  background: #fff;
  border: 1px solid var(--border);
  border-radius: 10px;
  padding: 13px 16px;
  display: flex;
  align-items: center;
  gap: 12px;
  flex-wrap: wrap;
}

.srow.alt {
  background: var(--tint);
}

.tier {
  font-size: 12px;
  font-weight: 700;
  color: var(--teal);
  background: var(--tint);
  border: 1px solid var(--border);
  padding: 3px 10px;
  border-radius: 100px;
  white-space: nowrap;
}

.srow-desc {
  font-size: 14px;
  color: var(--muted);
  flex: 1;
}

.srow-v {
  font-family: "DM Serif Display", serif;
  font-size: 20px;
  color: var(--ink);
  white-space: nowrap;
}

/* Detection grid */
#detection {
  padding: 64px 24px;
}

.det-hd {
  max-width: 860px;
  margin: 0 auto 32px;
}

.det-hd h2 {
  margin-bottom: 12px;
}

.det-hd p {
  font-size: 15px;
  color: var(--muted);
  line-height: 1.75;
}

.det-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 16px;
  max-width: 1100px;
  margin: 0 auto;
}

@media (min-width: 540px) {
  .det-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (min-width: 900px) {
  .det-grid {
    grid-template-columns: repeat(3, 1fr);
  }
}

.det-card {
  background: #fff;
  border: 1px solid var(--border);
  border-radius: 14px;
  padding: 22px;
  box-shadow: var(--s-sm);
  display: flex;
  flex-direction: column;
  gap: 10px;
  position: relative;
  overflow: hidden;
  transition: 0.2s;
}

.det-card:hover {
  transform: translateY(-2px);
  box-shadow: var(--s-md);
}

.det-card::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 2px;
  background: var(--g1);
}

.det-num {
  font-family: "DM Serif Display", serif;
  font-size: 36px;
  color: rgba(52, 174, 147, 0.1);
  line-height: 1;
  position: absolute;
  top: 8px;
  right: 12px;
}

.det-ico {
  width: 38px;
  height: 38px;
  border-radius: 10px;
  background: var(--g1);
  display: flex;
  align-items: center;
  justify-content: center;
}

.det-ico svg {
  width: 17px;
  height: 17px;
}

.det-title {
  font-size: 14px;
  font-weight: 800;
  color: var(--ink);
}

.det-desc {
  font-size: 13px;
  color: var(--muted);
  line-height: 1.6;
}

/* Audience cards */
#audience {
  padding: 64px 24px;
  background: var(--surface);
}

.a-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 18px;
  max-width: 1100px;
  margin: 24px auto 0;
}

@media (min-width: 768px) {
  .a-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

.a-card {
  background: #fff;
  border: 1px solid var(--border);
  border-radius: 14px;
  padding: 22px;
  box-shadow: var(--s-sm);
  display: flex;
  flex-direction: column;
  gap: 10px;
  position: relative;
  overflow: hidden;
  transition: 0.2s;
}

.a-card:hover {
  transform: translateY(-2px);
  box-shadow: var(--s-md);
}

.a-card::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 2px;
  background: var(--g1);
}

.a-ico {
  font-size: 24px;
}

.a-title {
  font-size: 15px;
  font-weight: 800;
  color: var(--ink);
}

.a-text {
  font-size: 13px;
  color: var(--muted);
  line-height: 1.65;
}

/* Verified */
.ver-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 10px;
  margin: 18px 0;
}

@media (min-width: 540px) {
  .ver-grid {
    grid-template-columns: repeat(3, 1fr);
  }
}

.ver-card {
  background: #fff;
  border: 1px solid var(--border);
  border-radius: 10px;
  padding: 14px;
  text-align: center;
}

.ver-pct {
  font-family: "DM Serif Display", serif;
  font-size: 32px;
  color: var(--ink);
}

.ver-lbl {
  font-size: 12px;
  color: var(--muted);
  font-weight: 600;
  margin-top: 3px;
}

/* Free tools */
#free-tools {
  padding: 64px 24px;
}

.ft-hd {
  text-align: center;
  margin-bottom: 36px;
}

.ft-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 16px;
  max-width: 1100px;
  margin: 0 auto;
}

@media (min-width: 540px) {
  .ft-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (min-width: 900px) {
  .ft-grid {
    grid-template-columns: repeat(3, 1fr);
  }
}

.ft-card {
  background: #fff;
  border: 1px solid var(--border);
  border-radius: 14px;
  padding: 20px;
  box-shadow: var(--s-sm);
  text-decoration: none;
  display: flex;
  flex-direction: column;
  gap: 9px;
  position: relative;
  overflow: hidden;
  transition: 0.2s;
}

.ft-card:hover {
  transform: translateY(-3px);
  box-shadow: var(--s-md);
  border-color: rgba(52, 174, 147, 0.3);
}

.ft-card::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 3px;
  background: var(--g1);
}

.ft-card.here {
  border-color: var(--teal);
}

.ft-ico {
  font-size: 26px;
}

.ft-title {
  font-size: 14px;
  font-weight: 800;
  color: var(--ink);
}

.ft-desc {
  font-size: 13px;
  color: var(--muted);
  line-height: 1.6;
}

.ft-arrow {
  font-size: 12px;
  font-weight: 700;
  color: var(--teal);
  margin-top: auto;
}

/* CTA */
#cta {
  background: var(--g1);
  padding: 64px 24px;
  text-align: center;
}

#cta h2 {
  color: #fff;
  font-family: "DM Serif Display", serif;
  font-weight: 400;
  margin-bottom: 12px;
}

#cta .sub {
  color: rgba(255, 255, 255, 0.85);
  max-width: 540px;
  margin: 0 auto 28px;
}

.page-hero {
  background: var(--surface);
  border-bottom: 1px solid var(--border);
  padding: 52px 24px 44px;
}

.page-hero-inner {
  max-width: 800px;
  margin: 0 auto;
}

.hero-badge {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  background: var(--tint);
  border: 1px solid rgba(52, 174, 147, 0.3);
  color: var(--teal);
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  padding: 4px 12px;
  border-radius: 100px;
  margin-bottom: 18px;
}

.page-hero .sub {
  font-size: 15px;
  color: var(--ts);
  line-height: 1.7;
  max-width: 580px;
  margin-bottom: 22px;
}

.meta-row {
  display: flex;
  align-items: center;
  gap: 16px;
  flex-wrap: wrap;
}

.meta-chip {
  font-size: 12px;
  color: var(--ts);
  display: flex;
  align-items: center;
  gap: 5px;
  font-weight: 500;
}

.meta-chip svg {
  opacity: 0.6;
}

/* ── LAYOUT ── */
.page-layout {
  max-width: 1100px;
  margin: 0 auto;
  padding: 48px 24px 96px;
  display: grid;
  grid-template-columns: 1fr;
  gap: 48px;
}

@media (min-width: 900px) {
  .page-layout {
    grid-template-columns: 1fr 240px;
  }
}

/* ── PROSE ── */
.legal-body {
  min-width: 0;
}

.section-block {
  margin-bottom: 44px;
  padding-bottom: 44px;
  border-bottom: 1px solid var(--border);
}

.section-block:last-child {
  border-bottom: none;
  margin-bottom: 0;
  padding-bottom: 0;
}

.section-num {
  display: inline-block;
  font-size: 11px;
  font-weight: 800;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--teal);
  margin-bottom: 10px;
}

.section-block h2 {
  font-family: "DM Serif Display", serif;
  font-size: clamp(20px, 2.5vw, 26px);
  font-weight: 400;
  color: var(--primary);
  line-height: 1.2;
  margin-bottom: 14px;
  scroll-margin-top: calc(var(--nh) + 20px);
}

.section-block h3 {
  font-size: 15px;
  font-weight: 700;
  color: var(--primary);
  margin: 22px 0 8px;
  line-height: 1.35;
  scroll-margin-top: calc(var(--nh) + 20px);
}

.section-block p {
  font-size: 14.5px;
  color: #2a5062;
  line-height: 1.8;
  margin-bottom: 14px;
}

.section-block p:last-child {
  margin-bottom: 0;
}

.section-block ul,
.section-block ol {
  padding-left: 20px;
  display: flex;
  flex-direction: column;
  gap: 7px;
  margin-bottom: 14px;
}

.section-block li {
  font-size: 14.5px;
  color: #2a5062;
  line-height: 1.75;
}

.section-block li::marker {
  color: var(--teal);
}

.section-block strong {
  color: var(--primary);
  font-weight: 600;
}

.section-block a {
  color: var(--teal);
  text-decoration: underline;
  text-decoration-color: rgba(52, 174, 147, 0.4);
  text-underline-offset: 3px;
  transition: 0.15s;
}

.section-block a:hover {
  color: var(--primary);
}

/* callout */
.callout {
  background: var(--tint);
  border-left: 3px solid var(--teal);
  border-radius: 0 10px 10px 0;
  padding: 14px 18px;
  margin: 18px 0;
}

.callout p {
  color: var(--tp) !important;
  font-weight: 500;
  margin: 0 !important;
  font-size: 14px !important;
}

.callout-warn {
  background: #fef9c3;
  border-left-color: #f59e0b;
}

.callout-warn p {
  color: #78350f !important;
}

/* ── SIDEBAR ── */
.legal-sidebar {
  display: flex;
  flex-direction: column;
  gap: 20px;
}

.sw {
  background: #fff;
  border: 1px solid var(--border);
  border-radius: 14px;
  padding: 18px 20px;
  box-shadow: var(--s-sm);
}

.sw-title {
  font-size: 11px;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: 0.07em;
  color: var(--ts);
  margin-bottom: 12px;
}

.toc-sticky {
  position: sticky;
  top: calc(var(--nh) + 18px);
}

.toc-list {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 2px;
}

.toc-item a {
  display: flex;
  align-items: flex-start;
  gap: 7px;
  font-size: 12.5px;
  color: var(--ts);
  text-decoration: none;
  padding: 5px 8px;
  border-radius: 7px;
  line-height: 1.4;
  transition: 0.15s;
}

.toc-item a:hover,
.toc-item.active a {
  color: var(--primary);
  background: var(--tint);
}

.toc-item.active a {
  font-weight: 600;
}

.toc-item a::before {
  content: "";
  width: 4px;
  height: 4px;
  border-radius: 50%;
  background: var(--border);
  flex-shrink: 0;
  margin-top: 6px;
  transition: background 0.15s;
}

.toc-item.active a::before {
  background: var(--teal);
}

/* last updated banner */
.updated-banner {
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: 10px;
  padding: 12px 16px;
  display: flex;
  align-items: center;
  gap: 10px;
  margin-bottom: 36px;
}

.updated-dot {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: var(--teal);
  flex-shrink: 0;
}

.updated-text {
  font-size: 13px;
  color: var(--ts);
}

.updated-text strong {
  color: var(--tp);
}

/* contact widget */
.contact-widget {
  background: var(--ink) !important;
  border: none;
}

.contact-widget .sw-title {
  color: rgba(255, 255, 255, 0.55);
}

.contact-widget p {
  font-size: 13px;
  color: rgba(255, 255, 255, 0.75);
  line-height: 1.6;
  margin-bottom: 14px;
}

.contact-widget a {
  display: flex;
  align-items: center;
  gap: 8px;
  color: var(--mint);
  font-size: 13px;
  font-weight: 600;
  text-decoration: none;
  padding: 8px 0;
  border-bottom: 1px solid rgba(255, 255, 255, 0.08);
  transition: 0.15s;
}

.contact-widget a:last-child {
  border-bottom: none;
}

.contact-widget a:hover {
  color: #fff;
}

/* peer links */
.peer-links {
  display: flex;
  flex-direction: column;
  gap: 3px;
}

.peer-link {
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 13px;
  font-weight: 500;
  color: var(--ts);
  text-decoration: none;
  padding: 7px 10px;
  border-radius: 8px;
  transition: 0.15s;
}

.peer-link:hover,
.peer-link.active {
  color: var(--primary);
  background: var(--tint);
}

.peer-link.active {
  font-weight: 700;
}

.peer-link::before {
  content: "";
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: var(--border);
  flex-shrink: 0;
  transition: 0.15s;
}

.peer-link.active::before {
  background: var(--teal);
}

.foot-inner {
  max-width: 1200px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1fr;
  gap: 36px;
}

@media (min-width: 768px) {
  .foot-inner {
    grid-template-columns: 2fr 1fr 1fr 1fr;
  }
}

.ft-col-t {
  font-size: 12px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.07em;
  color: var(--primary);
  margin-bottom: 12px;
}

.foot-tag {
  font-size: 14px;
  color: var(--ts);
  line-height: 1.6;
  max-width: 220px;
}

.foot-links {
  display: flex;
  flex-direction: column;
  gap: 8px;
}

.foot-link {
  font-size: 14px;
  color: var(--ts);
  text-decoration: none;
  transition: 0.12s;
}

.foot-link:hover {
  color: var(--primary);
}

.foot-bot {
  max-width: 1200px;
  margin: 36px auto 0;
  border-top: 1px solid var(--border);
  padding: 18px 0;
  display: flex;
  align-items: center;
  flex-wrap: wrap;
  gap: 12px;
  justify-content: space-between;
}

.foot-copy {
  font-size: 13px;
  color: var(--ts);
}

.foot-blinks {
  display: flex;
  gap: 20px;
}

.foot-blinks a {
  font-size: 13px;
  color: var(--ts);
  text-decoration: none;
  transition: 0.12s;
}

.foot-blinks a:hover {
  color: var(--primary);
}

.foot-blinks a.active-legal {
  color: var(--primary);
  font-weight: 600;
}

.nav-dd-btn {
  display: flex;
  align-items: center;
  gap: 4px;
  cursor: pointer;
  font-size: 14px;
  font-weight: 500;
  color: var(--ts);
  padding: 6px 12px;
  border-radius: 6px;
  border: none;
  background: none;
  font-family: inherit;
  transition: 0.15s;
}

.nav-dd-btn:hover {
  color: var(--primary);
  background: var(--tint);
}

.chev {
  width: 12px;
  height: 12px;
  transition: transform 0.2s;
}

.nav-dd.open .chev {
  transform: rotate(180deg);
}

.dd-menu {
  position: absolute;
  top: calc(100% + 8px);
  left: 0;
  background: #fff;
  border: 1px solid var(--border);
  border-radius: 10px;
  box-shadow: var(--s-md);
  min-width: 220px;
  padding: 6px;
  opacity: 0;
  pointer-events: none;
  transform: translateY(-6px);
  transition: 0.15s;
}

.nav-dd.open .dd-menu {
  opacity: 1;
  pointer-events: auto;
  transform: translateY(0);
}

.btn-ghost {
  font-size: 14px;
  font-weight: 500;
  color: var(--ts);
  text-decoration: none;
  padding: 6px 14px;
  border-radius: 7px;
}

.btn-ghost:hover {
  color: var(--primary);
}

.btn-pill {
  font-size: 14px;
  font-weight: 600;
  background: var(--grad);
  color: #fff;
  text-decoration: none;
  padding: 8px 18px;
  border-radius: 8px;
  border: none;
  cursor: pointer;
  display: inline-flex;
  align-items: center;
  gap: 6px;
  transition: 0.15s;
  font-family: inherit;
}

.btn-pill:hover {
  transform: scale(1.02);
  box-shadow: 0 4px 14px rgba(52, 174, 147, 0.35);
}

.mob-sec {
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--ts);
  padding: 12px 12px 4px;
}

.mob-hr {
  border: none;
  border-top: 1px solid var(--border);
  margin: 8px 0;
}

.hero-inner {
  max-width: 640px;
  margin: 0 auto;
}

.hero-badge {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  background: var(--tint);
  border: 1px solid rgba(52, 174, 147, 0.3);
  color: var(--teal);
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  padding: 4px 12px;
  border-radius: 100px;
  margin-bottom: 20px;
}

.hero h1 {
  font-family: "DM Serif Display", serif;
  font-size: clamp(30px, 4.5vw, 48px);
  font-weight: 400;
  color: var(--primary);
  line-height: 1.1;
  letter-spacing: -0.02em;
  margin-bottom: 14px;
}

.hero h1 span {
  background: var(--gradient);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.hero-sub {
  font-size: 16px;
  color: var(--ts);
  line-height: 1.7;
  margin-bottom: 28px;
}

.hero-search {
  display: flex;
  align-items: center;
  gap: 0;
  max-width: 400px;
  margin: 0 auto;
  background: #fff;
  border: 1.5px solid var(--border);
  border-radius: 10px;
  overflow: hidden;
  box-shadow: var(--s-sm);
  transition: 0.15s;
}

.hero-search:focus-within {
  border-color: var(--teal);
  box-shadow: 0 0 0 3px rgba(52, 174, 147, 0.12);
}

.hero-search-icon {
  padding: 0 12px;
  color: var(--ts);
  display: flex;
  align-items: center;
  flex-shrink: 0;
}

.hero-search input {
  flex: 1;
  border: none;
  outline: none;
  font-size: 14px;
  font-family: inherit;
  color: var(--tp);
  padding: 11px 0;
  background: transparent;
}

.hero-search input::placeholder {
  color: var(--ts);
}

.hero-stats {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 28px;
  margin-top: 24px;
  flex-wrap: wrap;
}

.hs-item {
  text-align: center;
}

.hs-num {
  font-size: 22px;
  font-weight: 800;
  color: var(--primary);
  line-height: 1;
}

.hs-label {
  font-size: 12px;
  color: var(--ts);
  margin-top: 2px;
}

/* ── MAIN ── */
.main {
  max-width: 1200px;
  margin: 0 auto;
  padding: 56px 24px 96px;
}

/* Section header */
.sec-header {
  display: flex;
  align-items: center;
  gap: 14px;
  margin-bottom: 24px;
}

.sec-icon {
  width: 40px;
  height: 40px;
  border-radius: 11px;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

.sec-title {
  font-family: "DM Serif Display", serif;
  font-size: clamp(20px, 2.5vw, 26px);
  font-weight: 400;
  color: var(--primary);
}

.sec-count {
  font-size: 12px;
  font-weight: 700;
  color: var(--ts);
  background: var(--surface);
  border: 1px solid var(--border);
  padding: 2px 9px;
  border-radius: 100px;
  margin-left: auto;
  flex-shrink: 0;
}

/* Sitemap sections */
.sitemap-section {
  margin-bottom: 56px;
}

.sitemap-section:last-of-type {
  margin-bottom: 0;
}

/* Page cards grid */
.pages-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 10px;
}

@media (min-width: 560px) {
  .pages-grid {
    grid-template-columns: repeat(3, 1fr);
  }
}

@media (min-width: 900px) {
  .pages-grid {
    grid-template-columns: repeat(4, 1fr);
  }
}

.page-card {
  display: flex;
  flex-direction: column;
  gap: 6px;
  padding: 14px 16px;
  border: 1px solid var(--border);
  border-radius: 12px;
  background: #fff;
  text-decoration: none;
  box-shadow: var(--s-sm);
  transition: 0.18s;
  position: relative;
  overflow: hidden;
}

.page-card::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 3px;
  bottom: 0;
  border-radius: 3px 0 0 3px;
  background: var(--border);
  transition: background 0.18s;
}

.page-card:hover {
  transform: translateY(-2px);
  box-shadow: var(--s-md);
  border-color: rgba(52, 174, 147, 0.25);
}

.page-card:hover::before {
  background: var(--teal);
}

.page-card[data-hidden="true"] {
  display: none;
}

.pc-top {
  display: flex;
  align-items: center;
  gap: 8px;
}

.pc-icon {
  font-size: 16px;
  line-height: 1;
  flex-shrink: 0;
}

.pc-name {
  font-size: 13px;
  font-weight: 700;
  color: var(--primary);
  line-height: 1.3;
}

.pc-url {
  font-size: 11px;
  color: var(--ts);
  font-weight: 500;
  font-family: "Inter", monospace;
}

.pc-desc {
  font-size: 12px;
  color: var(--ts);
  line-height: 1.5;
  display: none;
}

@media (min-width: 560px) {
  .pc-desc {
    display: block;
  }
}

/* Priority badges */
.pc-badge {
  display: inline-flex;
  align-items: center;
  font-size: 10px;
  font-weight: 700;
  padding: 1px 6px;
  border-radius: 100px;
  width: fit-content;
  margin-top: 2px;
}

.badge-high {
  background: #d1fae5;
  color: #065f46;
}

.badge-medium {
  background: #fef9c3;
  color: #78350f;
}

.badge-low {
  background: var(--surface);
  color: var(--ts);
  border: 1px solid var(--border);
}

/* Blog grid (wider) */
.blog-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 10px;
}

@media (min-width: 560px) {
  .blog-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (min-width: 900px) {
  .blog-grid {
    grid-template-columns: repeat(3, 1fr);
  }
}

.blog-card {
  display: flex;
  align-items: flex-start;
  gap: 12px;
  padding: 14px 16px;
  border: 1px solid var(--border);
  border-radius: 12px;
  background: #fff;
  text-decoration: none;
  box-shadow: var(--s-sm);
  transition: 0.18s;
}

.blog-card:hover {
  transform: translateY(-2px);
  box-shadow: var(--s-md);
  border-color: rgba(52, 174, 147, 0.25);
}

.blog-card[data-hidden="true"] {
  display: none;
}

.bc-thumb {
  width: 40px;
  height: 40px;
  border-radius: 9px;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  font-size: 18px;
}

.bc-body {
}

.bc-title {
  font-size: 13px;
  font-weight: 700;
  color: var(--primary);
  line-height: 1.35;
  margin-bottom: 3px;
}

.bc-cat {
  font-size: 11px;
  color: var(--teal);
  font-weight: 600;
}

/* Divider */
.section-divider {
  border: none;
  border-top: 1px solid var(--border);
  margin: 48px 0;
}

/* XML CTA */
.xml-cta {
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: 14px;
  padding: 22px 24px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  flex-wrap: wrap;
  margin-bottom: 56px;
}

.xml-cta-body {
}

.xml-cta-title {
  font-size: 15px;
  font-weight: 800;
  color: var(--primary);
  margin-bottom: 4px;
  display: flex;
  align-items: center;
  gap: 8px;
}

.xml-cta-sub {
  font-size: 13px;
  color: var(--ts);
  line-height: 1.55;
}

.xml-btn {
  display: inline-flex;
  align-items: center;
  gap: 7px;
  background: var(--grad);
  color: #fff;
  font-size: 13px;
  font-weight: 700;
  padding: 10px 18px;
  border-radius: 9px;
  text-decoration: none;
  border: none;
  cursor: pointer;
  font-family: inherit;
  transition: 0.15s;
  flex-shrink: 0;
}

.xml-btn:hover {
  opacity: 0.9;
}

/* no results */
.no-results-msg {
  display: none;
  text-align: center;
  padding: 40px;
  color: var(--ts);
  font-size: 14px;
}

.nav-link:hover,
.nav-dropdown {
  position: relative;
}

.nav-dropdown-toggle {
  display: flex;
  align-items: center;
  gap: 4px;
  cursor: pointer;
  font-size: 14px;
  font-weight: 500;
  color: var(--text-secondary);
  padding: 6px 12px;
  border-radius: 6px;
  border: none;
  background: none;
  font-family: inherit;
  transition:
    color 0.15s,
    background 0.15s;
}

.nav-dropdown-toggle:hover {
  color: var(--primary);
  background: var(--tint);
}

.chevron {
  width: 12px;
  height: 12px;
  transition: transform 0.2s;
}

.nav-dropdown.open .chevron {
  transform: rotate(180deg);
}

.dropdown-menu {
  position: absolute;
  top: calc(100% + 8px);
  left: 0;
  background: #fff;
  border: 1px solid var(--border);
  border-radius: 10px;
  box-shadow: var(--shadow-lg);
  min-width: 220px;
  padding: 6px;
  opacity: 0;
  pointer-events: none;
  transform: translateY(-6px);
  transition:
    opacity 0.15s,
    transform 0.15s;
}

.nav-dropdown.open .dropdown-menu {
  opacity: 1;
  pointer-events: auto;
  transform: translateY(0);
}

.dropdown-item {
  display: block;
  padding: 8px 12px;
  font-size: 13px;
  font-weight: 500;
  color: var(--text-secondary);
  text-decoration: none;
  border-radius: 6px;
  transition:
    color 0.12s,
    background 0.12s;
}

.dropdown-item:hover {
  color: var(--primary);
  background: var(--tint);
}

.btn-ghost- .btn-ghost-nav:hover {
  color: var(--primary);
}

.btn-nav-cta {
  font-size: 14px;
  font-weight: 600;
  background: var(--gradient);
  color: #fff;
  text-decoration: none;
  padding: 8px 18px;
  border-radius: 8px;
  border: none;
  cursor: pointer;
  display: inline-flex;
  align-items: center;
  gap: 6px;
  transition:
    transform 0.15s,
    box-shadow 0.15s;
}

.btn-nav-cta:hover {
  transform: scale(1.02);
  box-shadow: 0 4px 14px rgba(52, 174, 147, 0.35);
}

.mobile-menu {
  display: none;
  position: fixed;
  top: var(--nh);
  left: 0;
  right: 0;
  background: #fff;
  border-bottom: 1px solid var(--border);
  padding: 16px;
  z-index: 999;
  max-height: calc(100vh - var(--nh));
  overflow-y: auto;
}

.mobile-menu.open {
  display: block;
}

.mobile-link {
  display: block;
  padding: 10px 12px;
  font-size: 15px;
  font-weight: 500;
  color: var(--text-primary);
  text-decoration: none;
  border-radius: 7px;
}

.mobile-link:hover {
  background: var(--tint);
}

.mobile-section-title {
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--text-secondary);
  padding: 12px 12px 4px;
}

.mobile-divider {
  border: none;
  border-top: 1px solid var(--border);
  margin: 8px 0;
}

/* ── GLOBALS ── */
.container {
  max-width: 1200px;
  margin: 0 auto;
}

.subtext {
  font-size: clamp(15px, 1.7vw, 17px);
  color: var(--text-secondary);
  line-height: 1.72;
}

.gradient-text {
  background: var(--gradient);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.badge {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  background: var(--tint);
  border: 1px solid rgba(52, 174, 147, 0.3);
  color: var(--teal);
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 0.05em;
  text-transform: uppercase;
  padding: 5px 14px;
  border-radius: 100px;
}

.badge::before {
  content: "";
  width: 6px;
  height: 6px;
  background: var(--teal);
  border-radius: 50%;
}

.btn-outline {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  background: transparent;
  color: var(--primary);
  font-size: 15px;
  font-weight: 700;
  font-family: inherit;
  padding: 12px 28px;
  border-radius: 10px;
  border: 1.5px solid var(--border);
  cursor: pointer;
  text-decoration: none;
  transition:
    border-color 0.15s,
    background 0.15s;
}

.btn-outline:hover {
  border-color: var(--teal);
  background: var(--tint);
}

.fade-in {
  opacity: 0;
  transform: translateY(20px);
  transition:
    opacity 0.55s ease,
    transform 0.55s ease;
}

.fade-in.visible {
  opacity: 1;
  transform: translateY(0);
}

.delay-1 {
  transition-delay: 0.1s;
}

.delay-2 {
  transition-delay: 0.2s;
}

.delay-3 {
  transition-delay: 0.3s;
}

#hero .container {
  position: relative;
  z-index: 1;
}

#hero .subtext {
  max-width: 580px;
  margin: 0 auto 36px;
}

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

/* Live search bar mock */
.search-bar-mock {
  max-width: 660px;
  margin: 48px auto 0;
  background: #fff;
  border: 1.5px solid var(--border);
  border-radius: 14px;
  padding: 14px 18px;
  box-shadow: var(--shadow-lg);
  display: flex;
  align-items: center;
  gap: 12px;
  transition:
    border-color 0.15s,
    box-shadow 0.15s;
}

.search-bar-mock:hover {
  border-color: var(--teal);
  box-shadow:
    0 0 0 4px rgba(52, 174, 147, 0.1),
    var(--shadow-lg);
}

.sbm-icon {
  width: 38px;
  height: 38px;
  border-radius: 9px;
  background: var(--gradient);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

.sbm-icon svg {
  width: 18px;
  height: 18px;
}

.sbm-text {
  flex: 1;
  text-align: left;
}

.sbm-query {
  font-size: 15px;
  font-weight: 600;
  color: var(--text-primary);
}

.sbm-sub {
  font-size: 12px;
  color: var(--text-secondary);
  margin-top: 2px;
}

.sbm-filters {
  display: flex;
  gap: 6px;
  flex-wrap: wrap;
}

.sbm-filter {
  background: var(--tint);
  border: 1px solid var(--border);
  border-radius: 100px;
  padding: 4px 10px;
  font-size: 11px;
  font-weight: 700;
  color: var(--teal);
}

.sbm-count {
  font-size: 13px;
  font-weight: 800;
  color: var(--primary);
  white-space: nowrap;
  text-align: right;
  flex-shrink: 0;
}

.sbm-count-sub {
  font-size: 10px;
  color: var(--text-secondary);
  font-weight: 500;
}

/* ── ACCORDION SECTION SHARED ── */
.acc-section {
  padding: 96px 24px;
}

.acc-section.alt {
  background: var(--surface);
}

.acc-layout {
  display: grid;
  grid-template-columns: 1fr;
  gap: 52px;
  align-items: start;
}

@media (min-width: 768px) {
  .acc-layout {
    grid-template-columns: 1fr 1fr;
    gap: 64px;
  }

  .acc-layout.rev .atcol {
    order: 2;
  }

  .acc-layout.rev .avcol {
    order: 1;
  }
}

.atcol {
  display: flex;
  flex-direction: column;
  gap: 8px;
}

.acc-tag {
  display: inline-flex;
  align-items: center;
  gap: 5px;
  background: var(--tint);
  border: 1px solid rgba(52, 174, 147, 0.3);
  color: var(--teal);
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  padding: 4px 10px;
  border-radius: 100px;
  width: fit-content;
  margin-bottom: 8px;
}

.atcol h2 {
  margin-bottom: 6px;
}

.atcol .subtext {
  font-size: 14px;
  margin-bottom: 16px;
}

.acc-list {
  display: flex;
  flex-direction: column;
  gap: 8px;
}

.acc-item {
  border: 1px solid var(--border);
  border-radius: 12px;
  overflow: hidden;
  background: #fff;
  transition: border-color 0.15s;
}

.acc-item.open {
  border-color: rgba(52, 174, 147, 0.4);
}

.acc-trigger {
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
  padding: 15px 18px;
  background: none;
  border: none;
  cursor: pointer;
  font-family: inherit;
  font-size: 14px;
  font-weight: 600;
  color: var(--primary);
  text-align: left;
  transition: background 0.12s;
}

.acc-trigger:hover {
  background: var(--tint);
}

.acc-plus {
  flex-shrink: 0;
  width: 22px;
  height: 22px;
  border-radius: 50%;
  border: 1.5px solid var(--border);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--teal);
  font-size: 16px;
  font-weight: 300;
  line-height: 1;
  transition:
    transform 0.2s,
    border-color 0.15s,
    background 0.15s;
}

.acc-item.open .acc-plus {
  transform: rotate(45deg);
  border-color: var(--teal);
  background: var(--tint);
}

.acc-body {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.3s ease;
}

.acc-item.open .acc-body {
  max-height: 200px;
}

.acc-body p {
  padding: 0 18px 16px;
  font-size: 14px;
  color: var(--text-secondary);
  line-height: 1.72;
}

/* visual panel */
.avcol {
}

.vcard {
  background: var(--tint);
  border: 1.5px dashed var(--teal);
  border-radius: 18px;
  min-height: 300px;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 28px;
  position: relative;
  overflow: hidden;
}

.vcard::before {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(
    135deg,
    rgba(138, 216, 163, 0.07),
    rgba(52, 174, 147, 0.06)
  );
}

.vc {
  position: relative;
  z-index: 1;
  width: 100%;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 14px;
}

.vc-lbl {
  font-size: 11px;
  font-weight: 700;
  color: var(--teal);
  letter-spacing: 0.07em;
  text-transform: uppercase;
}

.vc-ic {
  width: 48px;
  height: 48px;
  border-radius: 13px;
  background: rgba(52, 174, 147, 0.15);
  display: flex;
  align-items: center;
  justify-content: center;
}

.vc-ic svg {
  width: 24px;
  height: 24px;
}

.met-row {
  display: flex;
  gap: 10px;
  flex-wrap: wrap;
  justify-content: center;
}

.met {
  background: #fff;
  border: 1px solid var(--border);
  border-radius: 10px;
  padding: 9px 14px;
  text-align: center;
}

.met-v {
  font-size: 17px;
  font-weight: 800;
  color: var(--primary);
  font-family: "DM Serif Display", serif;
}

.met-l {
  font-size: 10px;
  color: var(--text-secondary);
  font-weight: 500;
  margin-top: 2px;
}

/* Creator row */
.cr-list {
  display: flex;
  flex-direction: column;
  gap: 8px;
  width: 100%;
}

.cr-row {
  background: #fff;
  border: 1px solid var(--border);
  border-radius: 10px;
  padding: 11px 14px;
  display: flex;
  align-items: center;
  gap: 11px;
}

.cr-av {
  width: 34px;
  height: 34px;
  border-radius: 50%;
  background: var(--gradient);
  flex-shrink: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 12px;
  font-weight: 800;
  color: #fff;
}

.cr-name {
  font-size: 13px;
  font-weight: 700;
  color: var(--primary);
}

.cr-meta {
  font-size: 11px;
  color: var(--text-secondary);
}

.cr-tag {
  margin-left: auto;
  font-size: 11px;
  font-weight: 800;
  color: var(--teal);
  background: var(--tint);
  border: 1px solid var(--border);
  padding: 3px 9px;
  border-radius: 100px;
  flex-shrink: 0;
}

/* Bar chart */
.bar-group {
  display: flex;
  flex-direction: column;
  gap: 8px;
  width: 100%;
}

.bar-row {
  display: flex;
  align-items: center;
  gap: 8px;
}

.bar-lbl {
  font-size: 12px;
  font-weight: 600;
  color: var(--text-secondary);
  width: 72px;
  flex-shrink: 0;
}

.bar-track {
  flex: 1;
  height: 8px;
  background: var(--border);
  border-radius: 4px;
  overflow: hidden;
}

.bar-fill {
  height: 100%;
  border-radius: 4px;
}

.bar-pct {
  font-size: 12px;
  font-weight: 700;
  width: 36px;
  text-align: right;
}

/* ── 4 STEPS ── */
#steps {
  background: var(--primary);
  padding: 96px 24px;
}

#steps h2 {
  color: #fff;
  text-align: center;
  margin-bottom: 14px;
}

#steps .subtext {
  color: rgba(255, 255, 255, 0.72);
  max-width: 600px;
  margin: 0 auto 56px;
  text-align: center;
}

.steps-grid-search-influe {
  display: grid;
  grid-template-columns: 1fr;
  gap: 20px;
}

@media (min-width: 640px) {
  .steps-grid-search-influe {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (min-width: 1024px) {
  .steps-grid-search-influe {
    grid-template-columns: repeat(4, 1fr);
  }
}

.step-card-search-influe {
  background: rgba(255, 255, 255, 0.06);
  border: 1px solid rgba(255, 255, 255, 0.12);
  border-radius: 16px;
  padding: 28px 24px;
  display: flex;
  flex-direction: column;
  gap: 14px;
  transition:
    background 0.2s,
    border-color 0.2s;
  position: relative;
  overflow: hidden;
}

.step-card-search-influe::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 2px;
  background: var(--gradient);
}

.step-card-search-influe:hover {
  background: rgba(255, 255, 255, 0.1);
  border-color: rgba(255, 255, 255, 0.2);
}

.step-num-search-influe {
  font-family: "DM Serif Display", serif;
  font-size: 40px;
  font-weight: 400;
  color: rgba(255, 255, 255, 0.12);
  line-height: 1;
  position: absolute;
  top: 14px;
  right: 18px;
}

.step-icon {
  width: 40px;
  height: 40px;
  border-radius: 10px;
  background: rgba(255, 255, 255, 0.12);
  display: flex;
  align-items: center;
  justify-content: center;
}

.step-icon svg {
  width: 18px;
  height: 18px;
}

.step-title-search-influe {
  font-size: 15px;
  font-weight: 700;
  color: #fff;
}

.step-desc-search-influe {
  font-size: 13px;
  color: rgba(255, 255, 255, 0.65);
  line-height: 1.65;
}

/* ── PLATFORM CARDS ── */
#platforms {
  padding: 96px 24px;
  background: var(--surface);
}

.platforms-header {
  text-align: center;
  margin-bottom: 52px;
}

.platforms-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 18px;
}

@media (min-width: 640px) {
  .platforms-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (min-width: 1024px) {
  .platforms-grid {
    grid-template-columns: repeat(4, 1fr);
  }
}

.platform-card {
  background: #fff;
  border: 1px solid var(--border);
  border-radius: 14px;
  padding: 28px 22px;
  display: flex;
  flex-direction: column;
  gap: 12px;
  box-shadow: var(--shadow-sm);
  transition:
    transform 0.2s,
    box-shadow 0.2s,
    border-color 0.2s;
  position: relative;
  overflow: hidden;
}

.platform-card:hover {
  transform: translateY(-3px);
  box-shadow: var(--shadow-md);
  border-color: rgba(52, 174, 147, 0.25);
}

.platform-card::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 3px;
  background: var(--gradient);
}

.platform-emoji {
  font-size: 32px;
}

.platform-name {
  font-size: 17px;
  font-weight: 800;
  color: var(--primary);
}

.platform-desc {
  font-size: 14px;
  color: var(--text-secondary);
  line-height: 1.65;
}

.platform-stat {
  font-size: 12px;
  font-weight: 700;
  color: var(--teal);
  background: var(--tint);
  border: 1px solid var(--border);
  padding: 4px 10px;
  border-radius: 100px;
  width: fit-content;
  margin-top: auto;
}

/* ── FEATURE CARDS ── */
#features {
  padding: 96px 24px;
}

.features-header {
  text-align: center;
  margin-bottom: 16px;
}

.features-sub-h {
  text-align: center;
  font-size: 16px;
  font-weight: 600;
  color: var(--teal);
  margin-bottom: 48px;
}

.features-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 18px;
}

@media (min-width: 640px) {
  .features-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (min-width: 1024px) {
  .features-grid {
    grid-template-columns: repeat(3, 1fr);
  }
}

.feature-card {
  background: #fff;
  border: 1px solid var(--border);
  border-radius: 14px;
  padding: 28px;
  box-shadow: var(--shadow-sm);
  transition:
    transform 0.2s,
    box-shadow 0.2s;
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.feature-card:hover {
  transform: translateY(-3px);
  box-shadow: var(--shadow-md);
}

.fc-icon {
  width: 44px;
  height: 44px;
  border-radius: 11px;
  background: var(--gradient);
  display: flex;
  align-items: center;
  justify-content: center;
}

.fc-icon svg {
  width: 20px;
  height: 20px;
}

.feature-card h3 {
  font-size: 15px;
  font-weight: 700;
  color: var(--primary);
}

.feature-card p {
  font-size: 14px;
  color: var(--text-secondary);
  line-height: 1.65;
}

/* ── TESTIMONIAL ── */
#testimonial-search-influe {
  background: var(--surface);
  padding: 80px 24px;
}

.testimonial-wrap {
  max-width: 760px;
  margin: 0 auto;
  text-align: center;
}

.testimonial-quote {
  font-family: "DM Serif Display", Georgia, serif;
  font-size: clamp(18px, 2.5vw, 26px);
  font-weight: 400;
  font-style: italic;
  color: var(--primary);
  line-height: 1.55;
  position: relative;
  padding: 0 24px;
}

.testimonial-quote::before {
  content: '"';
  font-size: 80px;
  line-height: 0.8;
  color: var(--teal);
  opacity: 0.25;
  font-family: "DM Serif Display", serif;
  position: absolute;
  top: -10px;
  left: 0;
}

.testimonial-attr {
  margin-top: 24px;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
}

.t-avatar {
  width: 40px;
  height: 40px;
  border-radius: 50%;
  background: var(--gradient);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 14px;
  font-weight: 800;
  color: #fff;
}

.t-name-search-influe {
  font-size: 14px;
  font-weight: 700;
  color: var(--primary);
}

.t-sub-search-influe {
  font-size: 12px;
  color: var(--text-secondary);
}

.t-stars-search-influe {
  color: #f59e0b;
  font-size: 14px;
  letter-spacing: 2px;
}

/* ── FAQ ── */
#faq {
  padding: 96px 24px;
}

.faq-header {
  text-align: center;
  margin-bottom: 48px;
}

.faq-list {
  max-width: 820px;
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.faq-item {
  background: #fff;
  border: 1px solid var(--border);
  border-radius: 12px;
  overflow: hidden;
}

.faq-trigger {
  width: 100%;
  background: none;
  border: none;
  cursor: pointer;
  font-family: inherit;
  font-size: 15px;
  font-weight: 600;
  color: var(--primary);
  padding: 18px 20px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  text-align: left;
  gap: 12px;
  transition: background 0.12s;
}

.faq-trigger:hover {
  background: var(--tint);
}

.faq-icon {
  flex-shrink: 0;
  font-size: 20px;
  font-weight: 300;
  color: var(--teal);
  transition: transform 0.2s;
  line-height: 1;
}

.faq-item.open .faq-icon {
  transform: rotate(45deg);
}

.faq-body {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.35s ease;
}

.faq-item.open .faq-body {
  max-height: 200px;
}

.faq-body p {
  padding: 0 20px 18px;
  font-size: 14px;
  color: var(--text-secondary);
  line-height: 1.75;
}

/* ── CTA BANNER ── */
#cta-banner {
  background: var(--gradient);
  padding: 80px 24px;
  text-align: center;
}

#cta-banner h2 {
  color: #fff;
  font-family: "DM Serif Display", serif;
  font-weight: 400;
  margin-bottom: 14px;
}

#cta-banner .subtext {
  color: rgba(255, 255, 255, 0.85);
  max-width: 560px;
  margin: 0 auto 32px;
}

.btn-white {
  background: #fff;
  color: var(--primary);
  font-size: 15px;
  font-weight: 700;
  padding: 13px 28px;
  border-radius: 10px;
  text-decoration: none;
  border: none;
  cursor: pointer;
  display: inline-flex;
  align-items: center;
  gap: 6px;
  transition:
    transform 0.15s,
    box-shadow 0.15s;
}

.btn-white:hover {
  transform: scale(1.02);
  box-shadow: 0 6px 20px rgba(4, 62, 84, 0.2);
}

.split {
  display: flex;
  min-height: 100vh;
  flex-direction: column;
}

@media (min-width: 768px) {
  .split {
    flex-direction: row;
  }
}

/* ── LEFT PANEL ── */
.panel-left {
  position: relative;
  background: var(--gradient-dark);
  overflow: hidden;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  padding: 36px 40px;
  min-height: 260px;
}

.panel-noise {
  position: absolute;
  inset: 0;
  background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 256 256' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='noise'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.9' numOctaves='4' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23noise)' opacity='0.04'/%3E%3C/svg%3E");
  pointer-events: none;
  opacity: 0.4;
}

/* Left: bottom section */
.left-bottom {
  position: relative;
  z-index: 1;
  margin-top: 40px;
  padding-top: 28px;
  border-top: 1px solid rgba(255, 255, 255, 0.12);
  display: flex;
  align-items: center;
  gap: 12px;
}

@media (max-width: 767px) {
  .left-bottom {
    display: none;
  }
}

.trust-dots {
  display: flex;
}

.trust-dot {
  width: 28px;
  height: 28px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.2);
  border: 2px solid rgba(255, 255, 255, 0.35);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 9px;
  font-weight: 700;
  color: rgba(255, 255, 255, 0.8);
  margin-left: -8px;
}

.trust-dot:first-child {
  margin-left: 0;
}

.trust-text {
  font-size: 13px;
  font-weight: 600;
  color: rgba(255, 255, 255, 0.75);
}

/* Decorative orbs */
.panel-left::before {
  content: "";
  position: absolute;
  width: 480px;
  height: 480px;
  border-radius: 50%;
  background: radial-gradient(
    circle,
    rgba(138, 216, 163, 0.16) 0%,
    transparent 70%
  );
  top: -140px;
  right: -140px;
  pointer-events: none;
}

.panel-left::after {
  content: "";
  position: absolute;
  width: 320px;
  height: 320px;
  border-radius: 50%;
  background: radial-gradient(
    circle,
    rgba(52, 174, 147, 0.14) 0%,
    transparent 70%
  );
  bottom: -80px;
  left: -80px;
  pointer-events: none;
}

/* Mid accent orb */
.orb-mid {
  position: absolute;
  width: 200px;
  height: 200px;
  border-radius: 50%;
  background: radial-gradient(
    circle,
    rgba(138, 216, 163, 0.09) 0%,
    transparent 70%
  );
  top: 50%;
  left: 20%;
  transform: translate(-50%, -50%);
  pointer-events: none;
}

/* Grid lines */
.left-grid {
  position: absolute;
  inset: 0;
  z-index: 0;
  background-image:
    linear-gradient(rgba(255, 255, 255, 0.03) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255, 255, 255, 0.03) 1px, transparent 1px);
  background-size: 44px 44px;
  pointer-events: none;
}

.panel-left-content {
  position: relative;
  z-index: 1;
  display: flex;
  flex-direction: column;
  gap: 0;
}

.left-top {
  display: flex;
  flex-direction: column;
  gap: 28px;
}

.left-logo {
  display: flex;
  align-items: center;
}

.left-headline h2 {
  font-size: clamp(22px, 2.8vw, 30px);
  font-weight: 800;
  color: #fff;
  line-height: 1.2;
  letter-spacing: -0.02em;
  margin-bottom: 10px;
}

.left-headline p {
  font-size: 15px;
  color: rgba(255, 255, 255, 0.68);
  line-height: 1.65;
  max-width: 340px;
}

.left-features {
  display: flex;
  flex-direction: column;
  gap: 14px;
  margin-top: 32px;
}

.left-feature {
  display: flex;
  align-items: center;
  gap: 12px;
}

.feat-check {
  flex-shrink: 0;
  width: 22px;
  height: 22px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.12);
  border: 1.5px solid rgba(255, 255, 255, 0.28);
  display: flex;
  align-items: center;
  justify-content: center;
}

.feat-check svg {
  width: 10px;
  height: 10px;
}

.left-feature span {
  font-size: 14px;
  font-weight: 600;
  color: rgba(255, 255, 255, 0.88);
}

/* Brand logos bottom */
.left-bottom {
  position: relative;
  z-index: 1;
  margin-top: 40px;
  padding-top: 24px;
  border-top: 1px solid rgba(255, 255, 255, 0.1);
}

@media (max-width: 767px) {
  .left-bottom {
    display: none;
  }
}

.left-bottom-label {
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 0.07em;
  text-transform: uppercase;
  color: rgba(255, 255, 255, 0.4);
  margin-bottom: 14px;
}

.brand-pills {
  display: flex;
  gap: 8px;
  flex-wrap: wrap;
}

.brand-pill {
  background: rgba(255, 255, 255, 0.1);
  border: 1px solid rgba(255, 255, 255, 0.18);
  border-radius: 100px;
  padding: 5px 14px;
  font-size: 12px;
  font-weight: 700;
  color: rgba(255, 255, 255, 0.75);
  letter-spacing: 0.01em;
}

/* ── RIGHT PANEL ── */
.panel-right {
  background: var(--bg);
  display: flex;
  flex-direction: column;
  flex: 1;
}

@media (min-width: 768px) {
  .panel-right {
    width: 50%;
    overflow-y: auto;
  }
}

.right-inner {
  max-width: 460px;
  width: 100%;
  margin: 0 auto;
  padding: 40px 32px 60px;
  display: flex;
  flex-direction: column;
  min-height: 100%;
  justify-content: center;
}

@media (min-width: 768px) {
  .right-inner {
    padding: 52px 48px;
  }
}

/* Back link */
.back-link {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  font-size: 13px;
  font-weight: 600;
  color: var(--text-secondary);
  text-decoration: none;
  margin-bottom: 40px;
  transition: color 0.15s;
  align-self: flex-start;
}

.back-link:hover {
  color: var(--primary);
}

.back-arrow {
  width: 20px;
  height: 20px;
  border-radius: 5px;
  background: var(--surface);
  border: 1px solid var(--border);
  display: flex;
  align-items: center;
  justify-content: center;
  transition:
    background 0.15s,
    border-color 0.15s;
}

.back-link:hover .back-arrow {
  background: var(--tint);
  border-color: var(--teal);
}

/* Form header */
.form-header {
  margin-bottom: 32px;
}

.form-header h2 {
  font-size: 28px;
  font-weight: 800;
  color: var(--primary);
  letter-spacing: -0.02em;
  margin-bottom: 4px;
}

.form-header p {
  font-size: 15px;
  color: var(--text-secondary);
}

/* Form alert */
.form-alert {
  padding: 12px 14px;
  border-radius: 9px;
  font-size: 13px;
  font-weight: 500;
  line-height: 1.5;
  display: none;
  align-items: flex-start;
  gap: 8px;
  margin-bottom: 4px;
}

.form-alert.error {
  background: #fef2f2;
  border: 1px solid #fecaca;
  color: #b91c1c;
  display: flex;
}

.form-alert.success {
  background: #f0fdf4;
  border: 1px solid #bbf7d0;
  color: var(--success);
  display: flex;
}

/* Register form */
.register-form {
  display: flex;
  flex-direction: column;
  gap: 18px;
}

.field {
  display: flex;
  flex-direction: column;
  gap: 6px;
}

.field label {
  font-size: 13px;
  font-weight: 600;
  color: var(--text-primary);
  letter-spacing: 0.01em;
}

.input-wrap {
  position: relative;
}

.input-wrap input {
  width: 100%;
  padding: 12px 14px;
  font-size: 15px;
  font-family: inherit;
  color: var(--text-primary);
  background: #fff;
  border: 1.5px solid var(--border);
  border-radius: 9px;
  outline: none;
  transition:
    border-color 0.15s,
    box-shadow 0.15s;
  -webkit-appearance: none;
}

.input-wrap input::placeholder {
  color: #9bbdc5;
}

.input-wrap input:focus {
  border-color: var(--teal);
  box-shadow: 0 0 0 3px rgba(52, 174, 147, 0.12);
}

.input-wrap input.error {
  border-color: var(--error);
}

.input-wrap input.error:focus {
  box-shadow: 0 0 0 3px rgba(220, 38, 38, 0.1);
}

.input-wrap input.valid {
  border-color: #86efac;
}

/* Password toggle */
.pw-toggle {
  position: absolute;
  right: 12px;
  top: 50%;
  transform: translateY(-50%);
  background: none;
  border: none;
  cursor: pointer;
  padding: 4px;
  color: var(--text-secondary);
  display: flex;
  align-items: center;
  transition: color 0.15s;
}

.pw-toggle:hover {
  color: var(--primary);
}

/* Strength meter */
.pw-strength-wrap {
  margin-top: 6px;
  display: none;
}

.pw-strength-wrap.show {
  display: block;
}

.pw-strength-bars {
  display: flex;
  gap: 4px;
  margin-bottom: 5px;
}

.pw-bar {
  flex: 1;
  height: 3px;
  border-radius: 2px;
  background: var(--border);
  transition: background 0.3s;
}

.pw-bar.active-weak {
  background: #ef4444;
}

.pw-bar.active-fair {
  background: #f59e0b;
}

.pw-bar.active-good {
  background: #34ae93;
}

.pw-bar.active-strong {
  background: #16a34a;
}

.pw-strength-label {
  font-size: 11px;
  font-weight: 600;
  color: var(--text-secondary);
}

/* Field error / hint */
.field-error {
  font-size: 12px;
  color: var(--error);
  font-weight: 500;
  display: none;
  align-items: center;
  gap: 4px;
}

.field-error.show {
  display: flex;
}

.field-hint {
  font-size: 12px;
  color: var(--text-secondary);
  font-weight: 500;
}

/* Checkbox */
.checkbox-row {
  display: flex;
  align-items: flex-start;
  gap: 10px;
  cursor: pointer;
}

.checkbox-row input[type="checkbox"] {
  width: 16px;
  height: 16px;
  border-radius: 4px;
  accent-color: var(--teal);
  cursor: pointer;
  flex-shrink: 0;
  margin-top: 1px;
}

.checkbox-row span {
  font-size: 13px;
  font-weight: 500;
  color: var(--text-secondary);
  line-height: 1.5;
}

.checkbox-row span a {
  color: var(--teal);
  font-weight: 600;
  text-decoration: none;
}

.checkbox-row span a:hover {
  text-decoration: underline;
}

/* Submit btn */
.btn-register {
  width: 100%;
  padding: 13px;
  background: var(--gradient);
  color: #fff;
  font-size: 15px;
  font-weight: 700;
  font-family: inherit;
  border: none;
  border-radius: 10px;
  cursor: pointer;
  transition:
    transform 0.15s,
    box-shadow 0.15s,
    opacity 0.15s;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
}

.btn-register:hover {
  transform: scale(1.01);
  box-shadow: 0 5px 18px rgba(52, 174, 147, 0.38);
}

.btn-register:active {
  transform: scale(0.99);
}

.btn-register.loading {
  opacity: 0.75;
  pointer-events: none;
}

.btn-spinner {
  display: none;
  width: 16px;
  height: 16px;
  border: 2.5px solid rgba(255, 255, 255, 0.35);
  border-top-color: #fff;
  border-radius: 50%;
  animation: spin 0.6s linear infinite;
}

.btn-register.loading .btn-spinner {
  display: block;
}

.btn-register.loading .btn-label {
  opacity: 0;
}

@keyframes spin {
  to {
    transform: rotate(360deg);
  }
}

/* Divider */
.divider {
  display: flex;
  align-items: center;
  gap: 12px;
  margin: 20px 0;
}

.divider-line {
  flex: 1;
  height: 1px;
  background: var(--border);
}

.divider-text {
  font-size: 12px;
  color: var(--text-secondary);
  font-weight: 500;
  white-space: nowrap;
}

/* Sign in link */
.signin-row {
  text-align: center;
  font-size: 14px;
  color: var(--text-secondary);
}

.signin-row a {
  color: var(--teal);
  font-weight: 700;
  text-decoration: none;
  transition: color 0.15s;
}

.signin-row a:hover {
  color: var(--primary);
  text-decoration: underline;
}

/* Success screen */
.success-screen {
  display: none;
  flex-direction: column;
  align-items: center;
  text-align: center;
  gap: 16px;
  padding: 20px 0;
}

.success-screen.show {
  display: flex;
}

.success-icon {
  width: 64px;
  height: 64px;
  border-radius: 50%;
  background: var(--gradient);
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 4px;
}

.success-screen h2 {
  font-size: 24px;
  font-weight: 800;
  color: var(--primary);
}

.success-screen p {
  font-size: 15px;
  color: var(--text-secondary);
  line-height: 1.65;
  max-width: 320px;
}

.btn-go {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  background: var(--gradient);
  color: #fff;
  font-size: 14px;
  font-weight: 700;
  font-family: inherit;
  padding: 11px 24px;
  border-radius: 9px;
  border: none;
  cursor: pointer;
  text-decoration: none;
  transition:
    transform 0.15s,
    box-shadow 0.15s;
  margin-top: 4px;
}

.btn-go:hover {
  transform: scale(1.02);
  box-shadow: 0 4px 14px rgba(52, 174, 147, 0.35);
}

/* data table */
.data-table {
  width: 100%;
  border-collapse: collapse;
  margin: 18px 0;
  font-size: 13.5px;
}

.data-table th {
  background: var(--surface);
  color: var(--tp);
  font-weight: 700;
  padding: 10px 14px;
  text-align: left;
  border: 1px solid var(--border);
  font-size: 12px;
  text-transform: uppercase;
  letter-spacing: 0.04em;
}

.data-table td {
  padding: 10px 14px;
  border: 1px solid var(--border);
  color: #2a5062;
  vertical-align: top;
  line-height: 1.55;
}

.data-table tr:nth-child(even) td {
  background: var(--surface);
}

/* rights grid */
.rights-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 12px;
  margin: 18px 0;
}

@media (min-width: 600px) {
  .rights-grid {
    grid-template-columns: repeat(3, 1fr);
  }
}

.right-card {
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: 10px;
  padding: 14px 14px 12px;
  display: flex;
  flex-direction: column;
  gap: 6px;
}

.right-icon {
  font-size: 20px;
  line-height: 1;
}

.right-title {
  font-size: 13px;
  font-weight: 700;
  color: var(--primary);
}

.right-desc {
  font-size: 12px;
  color: var(--ts);
  line-height: 1.5;
}

/* ── BILLING TOGGLE ── */
.billing-toggle {
  display: flex;
  align-items: center;
  gap: 12px;
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: 100px;
  padding: 6px;
  width: fit-content;
  margin: auto;
}

.toggle-option {
  font-size: 14px;
  font-weight: 600;
  color: var(--text-secondary);
  padding: 7px 20px;
  border-radius: 100px;
  cursor: pointer;
  transition:
    color 0.2s,
    background 0.2s;
  border: none;
  background: none;
  font-family: inherit;
  display: flex;
  align-items: center;
  gap: 8px;
}

.toggle-option.active {
  background: #fff;
  color: var(--primary);
  box-shadow: 0 1px 6px rgba(4, 62, 84, 0.1);
}

.save-badge {
  background: var(--gradient);
  color: #fff;
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.03em;
  padding: 2px 8px;
  border-radius: 100px;
}

/* ── PRICING CARDS ── */
#pricing {
  padding-top: 48px;
}

.pricing-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 20px;
}

@media (min-width: 768px) {
  .pricing-grid {
    grid-template-columns: repeat(3, 1fr);
    align-items: start;
  }
}

.pricing-card {
  background: #fff;
  border: 1px solid var(--border);
  border-radius: 16px;
  padding: 32px;
  box-shadow: 0 2px 8px rgba(4, 62, 84, 0.04);
  position: relative;
  transition:
    transform 0.2s,
    box-shadow 0.2s;
}

.pricing-card:hover {
  transform: translateY(-3px);
  box-shadow: 0 8px 28px rgba(4, 62, 84, 0.09);
}

.pricing-card.featured {
  border: 2px solid transparent;
  background:
    linear-gradient(#fff, #fff) padding-box,
    var(--gradient) border-box;
  box-shadow: 0 4px 24px rgba(52, 174, 147, 0.15);
}

.pricing-card.featured::before {
  content: "";
  position: absolute;
  inset: 0;
  border-radius: 14px;
  background: linear-gradient(
    135deg,
    rgba(138, 216, 163, 0.06) 0%,
    rgba(52, 174, 147, 0.04) 100%
  );
  pointer-events: none;
}

.plan-badge {
  display: inline-flex;
  align-items: center;
  gap: 5px;
  background: var(--gradient);
  color: #fff;
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  padding: 4px 10px;
  border-radius: 100px;
  margin-bottom: 16px;
}

.plan-badge-placeholder {
  height: 26px;
  margin-bottom: 16px;
}

.plan-name {
  font-size: 20px;
  font-weight: 800;
  color: var(--primary);
  margin-bottom: 6px;
}

.plan-desc {
  font-size: 14px;
  color: var(--text-secondary);
  margin-bottom: 24px;
  line-height: 1.5;
}

.plan-price {
  display: flex;
  align-items: baseline;
  gap: 4px;
  /* margin-bottom: 28px; */
}

.price-currency {
  font-size: 20px;
  font-weight: 700;
  color: var(--primary);
  margin-top: 6px;
}

.price-amount {
  font-size: 48px;
  font-weight: 800;
  color: var(--primary);
  line-height: 1;
  letter-spacing: -0.02em;
}

.price-period {
  font-size: 14px;
  color: var(--text-secondary);
  font-weight: 500;
}

.price-annual-note {
  font-size: 12px;
  color: var(--teal);
  font-weight: 600;
  margin-bottom: 28px;
  min-height: 18px;
}

.plan-divider {
  border: none;
  border-top: 1px solid var(--border);
  margin-bottom: 24px;
}

.plan-features {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 8px;
  /* margin-bottom: 28px; */
}

.plan-features li {
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: 14px;
  color: var(--text-primary);
}

.check {
  flex-shrink: 0;
  width: 18px;
  height: 18px;
  border-radius: 50%;
  background: var(--tint);
  border: 1.5px solid var(--teal);
  display: flex;
  align-items: center;
  justify-content: center;
}

.check svg {
  width: 9px;
  height: 9px;
}

.btn-plan-primary {
  display: block;
  width: 100%;
  text-align: center;
  background: var(--gradient);
  color: #fff;
  font-size: 15px;
  font-weight: 700;
  font-family: inherit;
  padding: 12px;
  border-radius: 9px;
  border: none;
  cursor: pointer;
  text-decoration: none;
  transition:
    transform 0.15s,
    box-shadow 0.15s;
}

.btn-plan-primary:hover {
  transform: scale(1.01);
  box-shadow: 0 4px 16px rgba(52, 174, 147, 0.35);
}

.btn-plan-outline {
  display: block;
  width: 100%;
  text-align: center;
  background: transparent;
  color: var(--primary);
  font-size: 15px;
  font-weight: 700;
  font-family: inherit;
  padding: 12px;
  border-radius: 9px;
  border: 1.5px solid var(--border);
  cursor: pointer;
  text-decoration: none;
  transition:
    border-color 0.15s,
    background 0.15s;
}

.btn-plan-outline:hover {
  border-color: var(--teal);
  background: var(--tint);
}

.compare-header {
  text-align: center;
  margin-bottom: 48px;
}

.compare-header .subtext {
  max-width: 520px;
  margin: 12px auto 0;
}

.table-wrap {
  overflow-x: auto;
}

.th-featured {
  background: var(--tint);
  position: relative;
}

.th-featured-label {
  display: block;
  font-size: 10px;
  font-weight: 700;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: var(--teal);
  margin-bottom: 4px;
}

.td-featured {
  background: rgba(237, 247, 245, 0.3);
}

.tick {
  color: var(--teal);
  font-size: 16px;
  font-weight: 700;
}

.dash {
  color: #c5d8dc;
  font-size: 18px;
  font-weight: 300;
}

.row-section td {
  background: var(--surface);
  font-size: 11px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.06em;
  color: var(--text-secondary);
  padding: 10px 20px;
}

/* HERO */
.hero-dark {
  background: var(--ink) !important;
}

.hero-inner-second {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: 1fr 380px;
  gap: 64px;
  align-items: center;
}

.hero-inner-second-child {
  text-align: start;
}

.hero-inner-second-child h1 {
  font-family: "Lora", Georgia, serif;
  font-size: clamp(28px, 4vw, 50px);
  font-weight: 700;
  color: #fff;
  line-height: 1.1;
  letter-spacing: -1px;
  margin-bottom: 18px;
}

.hero-inner-second-child p {
  font-size: 16px;
  color: rgba(255, 255, 255, 0.65);
  line-height: 1.75;
  max-width: 480px;
  margin-bottom: 32px;
}

.media-contact-card {
  background: rgba(255, 255, 255, 0.07);
  border: 1.5px solid rgba(255, 255, 255, 0.14);
  border-radius: 20px;
  padding: 28px;
}

.mcc-label {
  font-size: 11px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 1px;
  color: rgba(255, 255, 255, 0.4);
  margin-bottom: 16px;
}

.mcc-name {
  font-size: 18px;
  font-weight: 800;
  color: #fff;
  margin-bottom: 3px;
}

.mcc-role {
  font-size: 13.5px;
  color: rgba(255, 255, 255, 0.55);
  margin-bottom: 18px;
}

.mcc-links {
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.mcc-link {
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: 14px;
  font-weight: 600;
  color: rgba(255, 255, 255, 0.75);
  transition: color 0.15s;
}

.mcc-link:hover {
  color: var(--mint);
}

.mcc-link svg {
  width: 16px;
  height: 16px;
  fill: none;
  stroke: currentColor;
  stroke-width: 2;
  stroke-linecap: round;
  flex-shrink: 0;
}

.mcc-note {
  font-size: 12.5px;
  color: rgba(255, 255, 255, 0.35);
  margin-top: 16px;
  line-height: 1.5;
  padding-top: 14px;
  border-top: 1px solid rgba(255, 255, 255, 0.1);
}

/* STATS STRIP */
.stats-strip {
  background: var(--tint);
  border-bottom: 1px solid var(--border);
  padding: 32px 0;
}

.stats-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 0;
}

.stat-item {
  text-align: center;
  padding: 0 24px;
  border-right: 1px solid var(--border);
}

.stat-item:last-child {
  border-right: none;
}

.stat-val {
  font-size: clamp(22px, 3vw, 34px);
  font-weight: 900;
  letter-spacing: -1.5px;
  background: var(--gradient);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.stat-label {
  font-size: 12.5px;
  color: var(--muted);
  margin-top: 4px;
}

/* BRAND KIT */
.brand-section {
  padding: 80px 0;
  border-bottom: 1px solid var(--border);
}

.section-eyebrow {
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 1.5px;
  text-transform: uppercase;
  color: var(--teal);
  margin-bottom: 12px;
}

.section-title-careers {
  font-family: "Lora", Georgia, serif;
  font-size: clamp(22px, 3vw, 34px);
  font-weight: 700;
  color: var(--primary);
  letter-spacing: -0.5px;
  margin-bottom: 12px;
}

.section-sub-careers {
  font-size: 15.5px;
  color: var(--muted);
  line-height: 1.75;
  max-width: 560px;
  margin-bottom: 0;
}

.brand-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
  margin-top: 40px;
}

.brand-card {
  border: 1.5px solid var(--border);
  border-radius: 16px;
  overflow: hidden;
  transition: box-shadow 0.2s;
}

.brand-card:hover {
  box-shadow: 0 8px 28px rgba(52, 174, 147, 0.12);
}

.bc-preview {
  height: 140px;
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
}

.bc-preview-dark {
  background: var(--primary);
}

.bc-preview-light {
  background: #fff;
  border-bottom: 1px solid var(--border);
}

.bc-preview-teal {
  background: linear-gradient(135deg, #8ad8a3, #34ae93);
}

.logo-preview {
  display: flex;
  align-items: center;
  gap: 10px;
}

.logo-preview span {
  font-size: 22px;
  font-weight: 800;
  letter-spacing: -0.5px;
}

.bc-footer {
  padding: 16px 20px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  background: #fff;
}

.bc-name {
  font-size: 13.5px;
  font-weight: 700;
  color: var(--primary);
}

.bc-format {
  font-size: 12px;
  color: var(--muted);
}

.bc-download {
  display: inline-flex;
  align-items: center;
  gap: 5px;
  font-size: 12.5px;
  font-weight: 700;
  color: var(--teal);
  transition: opacity 0.2s;
}

.bc-download:hover {
  opacity: 0.75;
}

.bc-download svg {
  width: 13px;
  height: 13px;
  fill: none;
  stroke: currentColor;
  stroke-width: 2.5;
  stroke-linecap: round;
}

/* COLOUR PALETTE */
.palette-row {
  display: flex;
  gap: 12px;
  margin-top: 32px;
  flex-wrap: wrap;
}

.swatch {
  border-radius: 12px;
  overflow: hidden;
  flex: 1;
  min-width: 120px;
}

.swatch-color {
  height: 80px;
}

.swatch-info {
  background: #fff;
  border: 1px solid var(--border);
  border-top: none;
  padding: 12px 14px;
}

.swatch-name {
  font-size: 13px;
  font-weight: 700;
  color: var(--primary);
  margin-bottom: 3px;
}

.swatch-hex {
  font-family: monospace;
  font-size: 12px;
  color: var(--muted);
}

/* TYPOGRAPHY */
.type-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 20px;
  margin-top: 32px;
}

.type-card {
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: 14px;
  padding: 24px;
}

.type-sample {
  font-size: 28px;
  font-weight: 800;
  color: var(--primary);
  margin-bottom: 12px;
  letter-spacing: -0.5px;
}

.type-meta {
  font-size: 12.5px;
  color: var(--muted);
}

.type-meta strong {
  color: var(--primary);
}

/* PRESS COVERAGE */
.coverage-section {
  padding: 80px 0;
  border-bottom: 1px solid var(--border);
}

.coverage-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
  margin-top: 40px;
}

.coverage-card {
  background: #fff;
  border: 1px solid var(--border);
  border-radius: 16px;
  padding: 24px;
  transition:
    box-shadow 0.2s,
    transform 0.2s;
  cursor: pointer;
}

.coverage-card:hover {
  box-shadow: 0 8px 28px rgba(52, 174, 147, 0.1);
  transform: translateY(-3px);
}

.cov-pub {
  display: flex;
  align-items: center;
  gap: 8px;
  margin-bottom: 14px;
}

.cov-pub-logo {
  height: 24px;
  display: flex;
  align-items: center;
  font-size: 15px;
  font-weight: 900;
  color: var(--primary);
  letter-spacing: -1px;
}

.cov-date {
  font-size: 12px;
  color: var(--muted);
  margin-left: auto;
}

.cov-headline {
  font-family: "Lora", Georgia, serif;
  font-size: 16px;
  font-weight: 700;
  color: var(--primary);
  line-height: 1.4;
  margin-bottom: 12px;
}

.cov-excerpt {
  font-size: 13.5px;
  color: var(--muted);
  line-height: 1.65;
  margin-bottom: 14px;
}

.cov-read {
  display: inline-flex;
  align-items: center;
  gap: 5px;
  font-size: 13px;
  font-weight: 700;
  color: var(--teal);
}

.cov-read svg {
  width: 13px;
  height: 13px;
  fill: none;
  stroke: currentColor;
  stroke-width: 2.5;
  stroke-linecap: round;
  transition: transform 0.2s;
}

.coverage-card:hover .cov-read svg {
  transform: translateX(4px);
}

/* BOILERPLATE */
.boilerplate-section {
  padding: 80px 0;
  background: var(--surface);
  border-bottom: 1px solid var(--border);
}

.boilerplate-box {
  background: #fff;
  border: 1px solid var(--border);
  border-radius: 16px;
  padding: 28px;
  margin-top: 32px;
  position: relative;
}

.boilerplate-text {
  font-size: 15px;
  line-height: 1.85;
  color: var(--muted);
}

.boilerplate-text strong {
  color: var(--primary);
}

.bb-actions {
  display: flex;
  gap: 10px;
  margin-top: 18px;
  flex-wrap: wrap;
}

.bb-btn {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  font-size: 13px;
  font-weight: 700;
  padding: 8px 16px;
  border-radius: 8px;
  cursor: pointer;
  border: none;
  font-family: "Inter", sans-serif;
  transition: all 0.15s;
}

.bb-copy {
  background: var(--tint);
  color: var(--teal);
}

.bb-copy:hover {
  background: var(--border);
}

.bb-dl {
  background: var(--surface);
  border: 1px solid var(--border);
  color: var(--muted);
}

.bb-dl:hover {
  background: var(--border);
  color: var(--primary);
}

.bb-btn svg {
  width: 13px;
  height: 13px;
  fill: none;
  stroke: currentColor;
  stroke-width: 2.5;
  stroke-linecap: round;
}

/* LEADERSHIP */
.leadership-section {
  padding: 80px 0;
  border-bottom: 1px solid var(--border);
}

.leadership-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 20px;
  margin-top: 40px;
}

.leader-card {
  text-align: center;
}

.leader-avatar {
  width: 80px;
  height: 80px;
  border-radius: 50%;
  margin: 0 auto 14px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 26px;
  font-weight: 800;
  color: var(--primary);
}

.leader-name {
  font-size: 15px;
  font-weight: 800;
  color: var(--primary);
  margin-bottom: 3px;
}

.leader-role {
  font-size: 13px;
  color: var(--muted);
  margin-bottom: 12px;
  line-height: 1.4;
}

.leader-links {
  display: flex;
  gap: 8px;
  justify-content: center;
}

.leader-link {
  width: 30px;
  height: 30px;
  border-radius: 7px;
  background: var(--tint);
  display: flex;
  align-items: center;
  justify-content: center;
  transition: background 0.15s;
}

.leader-link:hover {
  background: var(--border);
}

.leader-link svg {
  width: 14px;
  height: 14px;
  fill: currentColor;
  color: var(--teal);
}

/* AWARDS */
.awards-strip {
  padding: 60px 0;
  background: var(--primary);
  border-top: 1px solid rgba(255, 255, 255, 0.08);
}

.awards-inner {
  text-align: center;
}

.awards-label {
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 1.5px;
  text-transform: uppercase;
  color: rgba(255, 255, 255, 0.4);
  margin-bottom: 28px;
}

.awards-row {
  display: flex;
  gap: 24px;
  justify-content: center;
  flex-wrap: wrap;
}

.award-badge {
  background: rgba(255, 255, 255, 0.06);
  border: 1px solid rgba(255, 255, 255, 0.12);
  border-radius: 12px;
  padding: 14px 20px;
  text-align: center;
}

.award-icon {
  font-size: 24px;
  margin-bottom: 6px;
}

.award-title {
  font-size: 12.5px;
  font-weight: 700;
  color: #fff;
  line-height: 1.3;
}

.award-body {
  font-size: 11.5px;
  color: rgba(255, 255, 255, 0.45);
  margin-top: 3px;
}

@media (min-width: 768px) {
  .gnav-links {
    display: flex;
  }

  .panel-left {
    width: 50%;
    min-height: 100vh;
    padding: 52px 56px;
    position: sticky;
    top: 0;
  }
}

/* Forgot password modal */

.modal-overlay {
  position: fixed;
  inset: 0;
  z-index: 9999;
  background: rgba(4, 62, 84, 0.5);
  backdrop-filter: blur(6px);
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 24px;
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.25s;
}

.modal-overlay.open {
  opacity: 1;
  pointer-events: auto;
}

.modal {
  background: #fff;
  border-radius: 20px;
  padding: 40px 36px;
  width: 100%;
  max-width: 420px;
  box-shadow: 0 24px 80px rgba(4, 62, 84, 0.22);
  transform: translateY(16px) scale(0.97);
  transition:
    transform 0.28s cubic-bezier(0.4, 0, 0.2, 1),
    opacity 0.28s;
  position: relative;
  opacity: 0;
}

.modal-overlay.open .modal {
  transform: translateY(0) scale(1);
  opacity: 1;
}

.modal-close {
  position: absolute;
  top: 14px;
  right: 14px;
  background: #f2f9f7;
  border: 1px solid #d5ebe5;
  border-radius: 8px;
  width: 32px;
  height: 32px;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  color: #4a7a84;
  font-size: 18px;
  line-height: 1;
  transition:
    background 0.12s,
    color 0.12s;
}

.modal-close:hover {
  background: #d5ebe5;
  color: #043e54;
}

.modal-icon {
  width: 52px;
  height: 52px;
  background: linear-gradient(135deg, #e8f6f0, #d5ebe5);
  border-radius: 14px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 20px;
}

.modal-icon svg {
  width: 24px;
  height: 24px;
}

.modal h3 {
  font-family: "Sora", sans-serif;
  font-size: 22px;
  font-weight: 800;
  color: #043e54;
  margin-bottom: 8px;
  letter-spacing: -0.02em;
}

.modal p {
  font-size: 14px;
  color: #4a7a84;
  line-height: 1.65;
  margin-bottom: 24px;
}

.modal .field {
  margin-bottom: 16px;
}

.modal .field label {
  display: block;
  font-size: 13px;
  font-weight: 600;
  color: #043e54;
  margin-bottom: 6px;
}

.modal .input-wrap {
  position: relative;
}

.modal .input-wrap input {
  width: 100%;
  padding: 11px 14px;
  border: 1.5px solid #d5ebe5;
  border-radius: 10px;
  font-size: 14px;
  color: #043e54;
  outline: none;
  transition:
    border-color 0.15s,
    box-shadow 0.15s;
  font-family: inherit;
}

.modal .input-wrap input:focus {
  border-color: #34ae93;
  box-shadow: 0 0 0 3px rgba(52, 174, 147, 0.12);
}

.field-error {
  display: none;
  font-size: 12px;
  color: #e53e3e;
  margin-top: 5px;
  align-items: center;
  gap: 4px;
}

.field-error.show {
  display: flex;
}

.btn-reset {
  width: 100%;
  padding: 13px;
  background: linear-gradient(140deg, #7ed5a0, #25967a);
  color: #fff;
  border: none;
  border-radius: 10px;
  font-size: 15px;
  font-weight: 700;
  font-family: "Sora", sans-serif;
  cursor: pointer;
  transition:
    transform 0.18s,
    box-shadow 0.18s;
  letter-spacing: -0.01em;
}

.btn-reset:hover {
  transform: translateY(-2px);
  box-shadow: 0 10px 30px rgba(52, 174, 147, 0.38);
}

.modal-success {
  display: none;
  text-align: center;
  padding: 16px 0 8px;
}

.modal-success-icon {
  width: 64px;
  height: 64px;
  background: linear-gradient(135deg, #8ad8a3, #34ae93);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 20px;
}

.modal-success h3 {
  font-family: "Sora", sans-serif;
  font-size: 20px;
  font-weight: 800;
  color: #043e54;
  margin-bottom: 10px;
}

.modal-success p {
  font-size: 14px;
  color: #4a7a84;
  line-height: 1.65;
  max-width: 300px;
  margin: 0 auto;
}

.modal-success strong {
  display: block;
  font-size: 17px;
  font-weight: 700;
  color: var(--primary);
  margin-bottom: 6px;
}

.field-row {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 8px;
}

.forgot-link {
  font-size: 13px;
  font-weight: 600;
  color: var(--teal);
  background: none;
  border: none;
  cursor: pointer;
  padding: 0;
  text-decoration: none;
  transition: all 0.15s;
  white-space: nowrap;
  display: inline-flex;
  align-items: center;
  gap: 4px;
  font-family: inherit;
  border-bottom: 1.5px dashed rgba(52, 174, 147, 0.4);
  padding-bottom: 1px;
  justify-content: center;
}

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

.btn-login {
  width: 100%;
  padding: 13px;
  background: var(--gradient);
  color: #fff;
  font-size: 15px;
  font-weight: 700;
  font-family: inherit;
  border: none;
  border-radius: 10px;
  cursor: pointer;
  transition:
    transform 0.15s,
    box-shadow 0.15s,
    opacity 0.15s;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  position: relative;
  overflow: hidden;
}

.register-row {
  text-align: center;
  font-size: 14px;
  color: var(--text-secondary);
}

.register-row a {
  color: var(--teal);
  font-weight: 700;
  text-decoration: none;
  transition: color 0.15s;
}

.nav-back {
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 13.5px;
  font-weight: 600;
  color: var(--muted);
  transition: color 0.15s;
  cursor: pointer;
}

.nav-back:hover {
  color: var(--teal);
}

.nav-back svg {
  width: 15px;
  height: 15px;
  fill: none;
  stroke: currentColor;
  stroke-width: 2;
  stroke-linecap: round;
}

/* JOB BANNER */
.job-banner {
  background: var(--primary);
  padding: 88px 24px 40px;
  position: relative;
  overflow: hidden;
}

.job-banner::before {
  content: "";
  position: absolute;
  inset: 0;
  background: radial-gradient(
    ellipse 600px 400px at 80% 50%,
    rgba(138, 216, 163, 0.08),
    transparent 60%
  );
}

.jb-inner {
  position: relative;
  z-index: 1;
}

.jb-dept {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  font-size: 11px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 1px;
  color: var(--teal);
  background: rgba(52, 174, 147, 0.15);
  border: 1px solid rgba(52, 174, 147, 0.3);
  padding: 4px 12px;
  border-radius: 50px;
  margin-bottom: 16px;
}

.jb-title {
  font-family: "Lora", Georgia, serif;
  font-size: clamp(22px, 3vw, 36px);
  font-weight: 700;
  color: #fff;
  letter-spacing: -0.5px;
  margin-bottom: 16px;
  line-height: 1.15;
}

.jb-meta {
  display: flex;
  gap: 16px;
  flex-wrap: wrap;
}

.jb-tag {
  display: flex;
  align-items: center;
  gap: 6px;
  font-size: 13.5px;
  color: rgba(255, 255, 255, 0.6);
}

.jb-tag svg {
  width: 14px;
  height: 14px;
  fill: none;
  stroke: currentColor;
  stroke-width: 2;
  stroke-linecap: round;
  flex-shrink: 0;
}

/* PROGRESS STEPS */
.progress-bar {
  background: #fff;
  border-bottom: 1px solid var(--border);
  padding: 0;
}

.progress-inner {
  display: flex;
  align-items: stretch;
  max-width: 1120px;
  margin: 0 auto;
  padding: 0 24px;
}

.prog-step {
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 18px 24px 18px 0;
  font-size: 13.5px;
  font-weight: 600;
  color: var(--muted);
  position: relative;
  cursor: pointer;
  transition: color 0.2s;
}

.prog-step:not(:last-child)::after {
  content: "›";
  position: absolute;
  right: 8px;
  color: var(--border);
  font-size: 18px;
  font-weight: 400;
}

.prog-step.active {
  color: var(--teal);
}

.prog-step.done {
  color: var(--primary);
}

.prog-num {
  width: 26px;
  height: 26px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 12px;
  font-weight: 800;
  flex-shrink: 0;
  border: 2px solid var(--border);
  color: var(--muted);
  background: #fff;
  transition: all 0.2s;
}

.prog-step.active .prog-num {
  border-color: var(--teal);
  color: var(--teal);
  background: var(--tint);
}

.prog-step.done .prog-num {
  border-color: var(--teal);
  background: var(--teal);
  color: #fff;
  font-size: 11px;
}

/* MAIN LAYOUT */
.apply-layout {
  max-width: 1120px;
  margin: 0 auto;
  padding: 40px 24px 80px;
  display: grid;
  grid-template-columns: 1fr 340px;
  gap: 32px;
  align-items: start;
}

/* FORM */
.form-section {
  background: #fff;
  border: 1px solid var(--border);
  border-radius: 20px;
  overflow: hidden;
}

.fs-header {
  padding: 28px 32px 0;
}

.fs-title {
  font-size: 20px;
  font-weight: 800;
  color: var(--primary);
  letter-spacing: -0.5px;
  margin-bottom: 6px;
}

.fs-desc {
  font-size: 14px;
  color: var(--muted);
  line-height: 1.65;
  margin-bottom: 28px;
}

.fs-divider {
  height: 1px;
  background: var(--border);
  margin: 0 32px;
}

.fs-body {
  padding: 28px 32px 32px;
}

/* FORM FIELDS */
.form-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 16px;
  margin-bottom: 16px;
}

.form-group {
  margin-bottom: 16px;
}

.form-group:last-child {
  margin-bottom: 0;
}

.form-label {
  display: block;
  font-size: 12.5px;
  font-weight: 700;
  color: var(--primary);
  margin-bottom: 7px;
  letter-spacing: 0.2px;
}

.form-label .req {
  color: var(--teal);
}

.form-label .opt {
  color: var(--muted);
  font-weight: 500;
  font-size: 11.5px;
  margin-left: 4px;
}

.form-input,
.form-select,
.form-textarea {
  width: 100%;
  background: var(--surface);
  border: 1.5px solid var(--border);
  border-radius: 10px;
  padding: 11px 14px;
  font-size: 14px;
  font-family: "Inter", sans-serif;
  color: var(--primary);
  outline: none;
  transition:
    border-color 0.2s,
    box-shadow 0.2s;
}

.form-input-job,
.form-select-job,
.form-textarea-job {
  width: 100%;
  background: var(--surface);
  border: 1.5px solid var(--border);
  border-radius: 10px;
  padding: 11px 14px;
  font-size: 14px;
  font-family: "Inter", sans-serif;
  color: var(--primary);
  outline: none;
  transition:
    border-color 0.2s,
    box-shadow 0.2s;
}

.form-input::placeholder,
.form-textarea::placeholder {
  color: var(--muted);
}

.form-input-job::placeholder,
.form-textarea-job::placeholder {
  color: var(--muted);
}

.form-input:focus,
.form-select:focus,
.form-textarea:focus {
  border-color: var(--teal);
  box-shadow: 0 0 0 3px rgba(52, 174, 147, 0.1);
  /* background: #fff; */
}

.form-input-job:focus,
.form-select-job:focus,
.form-textarea-job:focus {
  border-color: var(--teal);
  box-shadow: 0 0 0 3px rgba(52, 174, 147, 0.1);
  background: #fff;
}

.form-input.error,
.form-textarea.error {
  border-color: var(--red);
  box-shadow: 0 0 0 3px rgba(239, 68, 68, 0.08);
}

.error-msg {
  font-size: 12px;
  color: var(--red);
  margin-top: 5px;
  display: none;
}

.form-input.error + .error-msg,
.form-textarea.error + .error-msg {
  display: block;
}

.form-select {
  appearance: none;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='12' viewBox='0 0 12 12'%3E%3Cpath d='M2 4l4 4 4-4' fill='none' stroke='%234A7A84' stroke-width='1.5' stroke-linecap='round' stroke-linejoin='round'/%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-position: right 14px center;
  padding-right: 36px;
  cursor: pointer;
}

.form-select option {
  background: #fff;
  color: var(--primary);
}

.form-textarea {
  resize: vertical;
  min-height: 110px;
  line-height: 1.65;
}

/* UPLOAD */
.upload-zone {
  border: 2px dashed var(--border);
  border-radius: 12px;
  padding: 28px;
  text-align: center;
  cursor: pointer;
  transition: all 0.2s;
  background: var(--surface);
  position: relative;
}

.upload-zone:hover {
  border-color: var(--teal);
  background: var(--tint);
}

.upload-zone.drag-over {
  border-color: var(--teal);
  background: var(--tint);
}

.upload-zone input[type="file"] {
  position: absolute;
  inset: 0;
  opacity: 0;
  cursor: pointer;
  width: 100%;
  height: 100%;
}

.uz-icon {
  font-size: 28px;
  margin-bottom: 8px;
}

.uz-title {
  font-size: 14px;
  font-weight: 700;
  color: var(--primary);
  margin-bottom: 4px;
}

.uz-sub {
  font-size: 12.5px;
  color: var(--muted);
}

.uz-file-name {
  font-size: 13px;
  font-weight: 600;
  color: var(--teal);
  margin-top: 8px;
  display: none;
}

/* LINKS ROW */
.links-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 16px;
}

.link-input-wrap {
  position: relative;
}

.link-input-wrap .link-prefix {
  position: absolute;
  left: 12px;
  top: 50%;
  transform: translateY(-50%);
  font-size: 13px;
  color: var(--muted);
}

.link-input-wrap .form-input {
  padding-left: 44px;
}

/* CHECKBOXES */
.check-group {
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.check-item {
  display: flex;
  align-items: flex-start;
  gap: 10px;
  cursor: pointer;
}

.check-item input[type="checkbox"] {
  width: 17px;
  height: 17px;
  flex-shrink: 0;
  margin-top: 1px;
  accent-color: var(--teal);
  cursor: pointer;
}

.check-item label {
  font-size: 13.5px;
  color: var(--muted);
  line-height: 1.55;
  cursor: pointer;
}

.check-item label a {
  color: var(--teal);
  font-weight: 600;
}

/* CHAR COUNT */
.char-wrap {
  position: relative;
}

.char-count {
  position: absolute;
  bottom: 10px;
  right: 12px;
  font-size: 11px;
  color: var(--muted);
}

/* SECTION LABEL */
.section-label {
  font-size: 11px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 1px;
  color: var(--teal);
  margin-bottom: 16px;
  padding-bottom: 10px;
  border-bottom: 1px solid var(--border);
}

/* SUBMIT */
.submit-row {
  display: flex;
  gap: 12px;
  align-items: center;
  margin-top: 24px;
  padding-top: 24px;
  border-top: 1px solid var(--border);
}

.btn-submit {
  flex: 1;
  height: 52px;
  background: var(--grad);
  color: var(--primary);
  font-weight: 800;
  font-size: 16px;
  border: none;
  border-radius: 12px;
  cursor: pointer;
  font-family: "Inter", sans-serif;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  transition:
    opacity 0.2s,
    transform 0.15s;
}

.btn-submit:hover {
  opacity: 0.9;
  transform: translateY(-1px);
}

.btn-submit svg {
  width: 17px;
  height: 17px;
  fill: none;
  stroke: currentColor;
  stroke-width: 2.5;
  stroke-linecap: round;
}

.btn-submit.loading {
  opacity: 0.7;
  pointer-events: none;
}

.btn-save {
  height: 52px;
  padding: 0 20px;
  border: 1.5px solid var(--border);
  background: #fff;
  color: var(--muted);
  font-weight: 600;
  font-size: 14px;
  border-radius: 12px;
  cursor: pointer;
  font-family: "Inter", sans-serif;
  transition:
    border-color 0.2s,
    color 0.2s;
}

.btn-save:hover {
  border-color: var(--teal);
  color: var(--teal);
}

.submit-note {
  font-size: 12px;
  color: var(--muted);
  text-align: center;
  margin-top: 10px;
}

/* SUCCESS STATE */
.success-screen {
  display: none;
  padding: 48px 32px;
  text-align: center;
}

.success-screen.show {
  display: block;
}

.form-screens {
  display: block;
}

.form-screens.hide {
  display: none;
}

.ss-icon {
  width: 72px;
  height: 72px;
  border-radius: 50%;
  background: var(--grad);
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 24px;
  font-size: 28px;
}

.ss-title {
  font-family: "Lora", Georgia, serif;
  font-size: 26px;
  font-weight: 700;
  color: var(--primary);
  letter-spacing: -0.5px;
  margin-bottom: 12px;
}

.ss-text {
  font-size: 15px;
  color: var(--muted);
  line-height: 1.75;
  max-width: 440px;
  margin: 0 auto 28px;
}

.ss-ref {
  font-family: "Inter", monospace;
  font-size: 13px;
  color: var(--teal);
  background: var(--tint);
  border: 1px solid var(--border);
  padding: 8px 16px;
  border-radius: 8px;
  display: inline-block;
  margin-bottom: 28px;
}

.ss-next {
  display: flex;
  flex-direction: column;
  gap: 12px;
  align-items: center;
}

.ss-btn {
  display: inline-flex;
  align-items: center;
  gap: 7px;
  background: var(--grad);
  color: var(--primary);
  font-weight: 700;
  font-size: 14.5px;
  padding: 12px 28px;
  border-radius: 10px;
}

.ss-link {
  font-size: 13.5px;
  color: var(--teal);
  font-weight: 600;
}

/* SIDEBAR */
.apply-sidebar {
  display: flex;
  flex-direction: column;
  gap: 20px;
  position: sticky;
  top: 88px;
}

.sidebar-card {
  background: #fff;
  border: 1px solid var(--border);
  border-radius: 16px;
  padding: 22px;
}

.sc-title {
  font-size: 11px;
  font-weight: 700;
  color: var(--muted);
  text-transform: uppercase;
  letter-spacing: 1px;
  margin-bottom: 14px;
}

.fact-row {
  display: flex;
  justify-content: space-between;
  align-items: baseline;
  padding: 9px 0;
  border-bottom: 1px solid var(--border);
  font-size: 13.5px;
}

.fact-row:last-child {
  border-bottom: none;
}

.fact-key {
  color: var(--muted);
}

.fact-val {
  font-weight: 700;
  color: var(--primary);
  text-align: right;
}

/* TIMELINE */
.timeline-card {
  background: #fff;
  border: 1px solid var(--border);
  border-radius: 16px;
  padding: 22px;
}

.tl-step {
  display: flex;
  gap: 12px;
  margin-bottom: 16px;
  position: relative;
}

.tl-step:not(:last-child)::after {
  content: "";
  position: absolute;
  left: 14px;
  top: 32px;
  width: 2px;
  height: calc(100% - 4px);
  background: var(--border);
}

.tl-dot-job {
  width: 28px;
  height: 28px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 11px;
  font-weight: 800;
  flex-shrink: 0;
  z-index: 1;
}

.tl-dot-job.active {
  background: var(--gradient);
  color: var(--primary);
}

.tl-dot-job.todo {
  background: #fff;
  border: 2px solid var(--border);
  color: var(--muted);
}

.tl-content {
  padding-top: 4px;
}

.tl-label {
  font-size: 13.5px;
  font-weight: 700;
  color: var(--primary);
  margin-bottom: 2px;
}

.tl-sub {
  font-size: 12.5px;
  color: var(--muted);
  line-height: 1.5;
}

/* TEAM CARD */
.recruiter-card {
  background: var(--primary);
  border-radius: 16px;
  padding: 22px;
  text-align: center;
}

.rc-avatar {
  width: 56px;
  height: 56px;
  border-radius: 50%;
  background: var(--gradient);
  margin: 0 auto 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 20px;
  font-weight: 800;
  color: var(--primary);
}

.rc-name {
  font-size: 15px;
  font-weight: 800;
  color: #fff;
  margin-bottom: 3px;
}

.rc-role {
  font-size: 12.5px;
  color: rgba(255, 255, 255, 0.55);
  margin-bottom: 16px;
}

.rc-note {
  font-size: 13px;
  color: rgba(255, 255, 255, 0.65);
  line-height: 1.6;
  margin-bottom: 16px;
}

.rc-email {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 6px;
  font-size: 13px;
  color: var(--mint);
  font-weight: 600;
}

.rc-email svg {
  width: 14px;
  height: 14px;
  fill: none;
  stroke: currentColor;
  stroke-width: 2;
  stroke-linecap: round;
}

/* ── PROFILE HERO ── */
.profile-hero {
  background: var(--primary);
  padding: 80px 0 0;
  position: relative;
  overflow: hidden;
}

.profile-hero::before {
  content: "";
  position: absolute;
  inset: 0;
  background: radial-gradient(
    ellipse 800px 500px at 75% 60%,
    rgba(138, 216, 163, 0.09),
    transparent 60%
  );
  pointer-events: none;
}

.hero-content {
  max-width: 1120px;
  margin: 0 auto;
  padding: 0 32px;
  position: relative;
  z-index: 1;
}

.hero-row {
  display: flex;
  align-items: flex-start;
  gap: 24px;
}

.hero-avatar {
  width: 88px;
  height: 88px;
  border-radius: 50%;
  background: var(--gradient);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 32px;
  font-weight: 900;
  color: var(--primary);
  flex-shrink: 0;
  box-shadow:
    0 0 0 3px rgba(138, 216, 163, 0.35),
    0 0 0 6px rgba(138, 216, 163, 0.12);
  margin-top: 4px;
}

.hero-info {
  flex: 1;
  min-width: 0;
}

.hero-platform {
  display: flex;
  align-items: center;
  gap: 6px;
  font-size: 11px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 1px;
  color: rgba(255, 255, 255, 0.45);
  margin-bottom: 8px;
}

.hero-platform .ig {
  color: #e1306c;
}

.hero-name {
  font-size: clamp(20px, 2.5vw, 30px);
  font-weight: 900;
  color: #fff;
  letter-spacing: -0.8px;
  margin-bottom: 4px;
}

.hero-handle {
  font-size: 14.5px;
  color: rgba(255, 255, 255, 0.45);
  margin-bottom: 12px;
}

.hero-bio {
  font-size: 14px;
  color: rgba(255, 255, 255, 0.65);
  line-height: 1.65;
  max-width: 480px;
  margin-bottom: 14px;
}

.hero-tags {
  display: flex;
  gap: 7px;
  flex-wrap: wrap;
}

.hero-tag {
  font-size: 11.5px;
  font-weight: 600;
  color: rgba(255, 255, 255, 0.55);
  background: rgba(255, 255, 255, 0.07);
  border: 1px solid rgba(255, 255, 255, 0.11);
  padding: 3px 11px;
  border-radius: 50px;
}

.hero-score {
  background: rgba(255, 255, 255, 0.07);
  border: 1px solid rgba(255, 255, 255, 0.12);
  border-radius: 14px;
  padding: 18px 22px;
  text-align: center;
  flex-shrink: 0;
  min-width: 180px;
  margin-top: 4px;
}

.hs-val {
  font-size: 48px;
  font-weight: 900;
  letter-spacing: -3px;
  line-height: 1;
  background: var(--gradient);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.hs-label {
  font-size: 11px;
  font-weight: 700;
  color: rgba(255, 255, 255, 0.45);
  text-transform: uppercase;
  letter-spacing: 0.8px;
  margin-top: 4px;
}

.hs-badge {
  display: inline-flex;
  align-items: center;
  gap: 5px;
  font-size: 11px;
  font-weight: 700;
  color: var(--mint);
  background: rgba(52, 174, 147, 0.2);
  border: 1px solid rgba(52, 174, 147, 0.3);
  padding: 4px 10px;
  border-radius: 50px;
  margin-top: 9px;
}

.hs-badge::before {
  content: "";
  width: 5px;
  height: 5px;
  border-radius: 50%;
  background: var(--teal);
  display: inline-block;
}

/* TABS */
.hero-tabs {
  border-top: 1px solid rgba(255, 255, 255, 0.07);
  margin-top: 26px;
}

.tabs-row {
  max-width: 1120px;
  margin: 0 auto;
  padding: 0 32px;
  display: flex;
  overflow-x: auto;
}

.tabs-row::-webkit-scrollbar {
  display: none;
}

.htab {
  font-size: 13.5px;
  font-weight: 600;
  color: rgba(255, 255, 255, 0.4);
  padding: 14px 18px;
  cursor: pointer;
  border-bottom: 2px solid transparent;
  white-space: nowrap;
  transition: all 0.2s;
  flex-shrink: 0;
}

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

.htab.active {
  color: #fff;
  border-bottom-color: var(--teal);
}

/* ── BODY ── */
.page-body {
  max-width: 1120px;
  margin: 0 auto;
  padding: 28px 32px 80px;
  display: grid;
  grid-template-columns: 1fr 300px;
  gap: 24px;
  align-items: start;
}

/* STATS ROW — spans full width */
.stats-row {
  grid-column: 1/-1;
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 14px;
  margin-bottom: 4px;
}

.stat-card {
  background: #fff;
  border: 1px solid var(--border);
  border-radius: 14px;
  padding: 18px 20px;
}

.sc-icon {
  width: 34px;
  height: 34px;
  border-radius: 9px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 10px;
}

.sc-icon svg {
  width: 15px;
  height: 15px;
  fill: none;
  stroke: currentColor;
  stroke-width: 2;
  stroke-linecap: round;
}

.sc-icon.tl {
  background: var(--tint);
  color: var(--teal);
}

.sc-icon.bl {
  background: #eff6ff;
  color: #3b82f6;
}

.sc-icon.pu {
  background: #f5f3ff;
  color: #7c3aed;
}

.sc-icon.or {
  background: #fef9ec;
  color: #d97706;
}

.sc-val {
  font-size: 22px;
  font-weight: 900;
  color: var(--primary);
  letter-spacing: -0.8px;
}

.sc-lbl {
  font-size: 11.5px;
  color: var(--muted);
  margin-top: 3px;
}

.sc-delta {
  font-size: 11px;
  font-weight: 700;
  margin-top: 5px;
  color: #10b981;
}

/* MAIN COLUMN */
.main-col {
  min-width: 0;
  display: flex;
  flex-direction: column;
  gap: 18px;
}

/* SIDEBAR COLUMN */
.side-col {
  display: flex;
  flex-direction: column;
  gap: 16px;
  position: sticky;
  top: 80px;
}

/* CARD */
.card {
  background: #fff;
  border: 1px solid var(--border);
  border-radius: 16px;
  padding: 22px;
}

.card-hd {
  font-size: 12px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.8px;
  color: var(--primary);
  margin-bottom: 16px;
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.card-hd-badge {
  font-size: 11px;
  font-weight: 600;
  color: var(--teal);
  background: var(--tint);
  padding: 2px 8px;
  border-radius: 4px;
  text-transform: none;
  letter-spacing: 0;
}

/* GAUGE */
.gauge-outer {
  display: flex;
  align-items: center;
  gap: 28px;
}

.gauge-left {
  flex-shrink: 0;
}

.gauge-wrap {
  position: relative;
  width: 160px;
  height: 88px;
  overflow: hidden;
}

.gauge-bg {
  position: absolute;
  bottom: 0;
  left: 0;
  width: 160px;
  height: 160px;
  border-radius: 80px 80px 0 0;
  background: conic-gradient(
    from 180deg at 50% 100%,
    #ef4444 0deg,
    #f59e0b 50deg,
    #10b981 100deg,
    #10b981 180deg,
    transparent 180deg
  );
  opacity: 0.14;
}

.gauge-fill {
  position: absolute;
  bottom: 0;
  left: 0;
  width: 160px;
  height: 160px;
  border-radius: 80px 80px 0 0;
  background: conic-gradient(
    from 180deg at 50% 100%,
    var(--teal) 0deg,
    var(--teal) calc(180deg * 0.914),
    transparent 0
  );
}

.gauge-mid {
  position: absolute;
  bottom: 0;
  left: 50%;
  transform: translateX(-50%);
  text-align: center;
  padding-bottom: 4px;
}

.gauge-mid .gv {
  font-size: 28px;
  font-weight: 900;
  letter-spacing: -1.5px;
  background: var(--grad);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.gauge-mid .gl {
  font-size: 10px;
  color: var(--muted);
  font-weight: 600;
}

.gauge-right {
  flex: 1;
}

.ab-row {
  display: flex;
  align-items: center;
  gap: 8px;
  margin-bottom: 7px;
}

.ab-lbl {
  font-size: 12.5px;
  color: var(--muted);
  width: 90px;
  flex-shrink: 0;
}

.ab-bar {
  flex: 1;
  height: 5px;
  background: var(--border);
  border-radius: 3px;
  overflow: hidden;
}

.ab-fill {
  height: 100%;
  border-radius: 3px;
}

.ab-v {
  font-size: 12.5px;
  font-weight: 700;
  color: var(--primary);
  width: 38px;
  text-align: right;
  flex-shrink: 0;
}

/* SPARKLINE */
.spark-wrap {
  display: flex;
  align-items: flex-end;
  gap: 2.5px;
  height: 56px;
  margin-bottom: 10px;
}

.spark-bar {
  flex: 1;
  border-radius: 2px 2px 0 0;
  min-height: 3px;
  transition: opacity 0.15s;
  cursor: pointer;
}

.spark-bar:hover {
  opacity: 0.75;
}

.spark-labels {
  display: flex;
  justify-content: space-between;
  font-size: 10.5px;
  color: var(--muted);
}

.growth-row {
  display: flex;
  gap: 24px;
  margin-top: 14px;
  padding-top: 14px;
  border-top: 1px solid var(--border);
}

.gr-item .gr-val {
  font-size: 18px;
  font-weight: 900;
  letter-spacing: -0.8px;
  background: var(--grad);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.gr-item .gr-lbl {
  font-size: 11.5px;
  color: var(--muted);
  margin-top: 2px;
}

/* POST GRID */
.post-grid-3 {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 8px;
}

.post-thumb {
  aspect-ratio: 1;
  border-radius: 10px;
  overflow: hidden;
  position: relative;
  cursor: pointer;
  background: var(--surface);
}

.post-thumb::after {
  content: "";
  position: absolute;
  inset: 0;
  background: rgba(4, 62, 84, 0);
  transition: 0.2s;
}

.post-thumb:hover::after {
  background: rgba(4, 62, 84, 0.4);
}

.post-inner {
  width: 100%;
  height: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 24px;
}

.post-hover {
  position: absolute;
  inset: 0;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 5px;
  opacity: 0;
  transition: opacity 0.2s;
}

.post-thumb:hover .post-hover {
  opacity: 1;
}

.ph-stat {
  display: flex;
  align-items: center;
  gap: 4px;
  font-size: 12.5px;
  font-weight: 700;
  color: #fff;
}

.ph-stat svg {
  width: 13px;
  height: 13px;
  fill: currentColor;
}

/* LOCKED */
.lock-wrap {
  position: relative;
  border-radius: 16px;
  overflow: hidden;
}

.lock-content {
  pointer-events: none;
  user-select: none;
}

.lock-blur {
  filter: blur(5px);
}

.lock-fade {
  position: absolute;
  inset: 0;
  background: linear-gradient(
    to bottom,
    rgba(244, 250, 250, 0) 10%,
    rgba(244, 250, 250, 0.8) 45%,
    rgba(244, 250, 250, 0.98) 65%
  );
  z-index: 10;
  display: flex;
  align-items: flex-end;
  justify-content: center;
  padding-bottom: 28px;
}

.lock-cta {
  text-align: center;
}

.lock-cta .lc-icon {
  font-size: 22px;
  margin-bottom: 8px;
}

.lock-cta .lc-title {
  font-size: 15px;
  font-weight: 800;
  color: var(--primary);
  margin-bottom: 5px;
}

.lock-cta .lc-text {
  font-size: 13px;
  color: var(--muted);
  margin-bottom: 14px;
  line-height: 1.55;
  max-width: 240px;
}

.lock-cta .lc-btn {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  background: var(--grad);
  color: var(--primary);
  font-weight: 700;
  font-size: 13.5px;
  padding: 10px 20px;
  border-radius: 9px;
  transition: opacity 0.2s;
}

.lock-cta .lc-btn:hover {
  opacity: 0.9;
}

.lock-cta .lc-note {
  font-size: 11.5px;
  color: var(--muted);
  margin-top: 7px;
}

/* SIDEBAR CARDS */
.unlock-card {
  background: var(--primary);
  border-radius: 16px;
  padding: 22px;
}

.uc-title {
  font-size: 15px;
  font-weight: 800;
  color: #fff;
  margin-bottom: 7px;
}

.uc-desc {
  font-size: 13px;
  color: rgba(255, 255, 255, 0.55);
  line-height: 1.6;
  margin-bottom: 16px;
}

.uc-list {
  display: flex;
  flex-direction: column;
  gap: 8px;
  margin-bottom: 18px;
}

.uc-item {
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 12.5px;
  color: rgba(255, 255, 255, 0.7);
}

.uc-item::before {
  content: "✓";
  color: var(--mint);
  font-weight: 800;
  flex-shrink: 0;
}

.uc-btn {
  display: block;
  background: var(--grad);
  color: var(--primary);
  font-weight: 700;
  font-size: 14px;
  padding: 11px;
  border-radius: 9px;
  text-align: center;
  transition: opacity 0.2s;
}

.uc-btn:hover {
  opacity: 0.9;
}

.uc-note {
  font-size: 11.5px;
  color: rgba(255, 255, 255, 0.35);
  margin-top: 8px;
  text-align: center;
}

.similar-item {
  display: flex;
  align-items: center;
  gap: 11px;
  padding: 10px 0;
  border-bottom: 1px solid var(--border);
  cursor: pointer;
  transition: opacity 0.2s;
}

.similar-item:hover {
  opacity: 0.75;
}

.similar-item:last-child {
  border-bottom: none;
  padding-bottom: 0;
}

.sim-av {
  width: 38px;
  height: 38px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 13px;
  font-weight: 800;
  color: #fff;
  flex-shrink: 0;
}

.sim-name {
  font-size: 13px;
  font-weight: 700;
  color: var(--primary);
}

.sim-meta {
  font-size: 11.5px;
  color: var(--muted);
}

.sim-score {
  font-size: 12px;
  font-weight: 700;
  color: var(--teal);
  margin-left: auto;
  flex-shrink: 0;
}

.qs-row {
  display: flex;
  justify-content: space-between;
  padding: 9px 0;
  border-bottom: 1px solid var(--border);
  font-size: 13px;
}

.qs-row:last-child {
  border-bottom: none;
}

.qs-key {
  color: var(--muted);
}

.qs-val {
  font-weight: 700;
  color: var(--primary);
}

.hero-grid-bg {
  position: absolute;
  inset: 0;
  z-index: 0;
  background-image:
    linear-gradient(rgba(52, 174, 147, 0.04) 1px, transparent 1px),
    linear-gradient(90deg, rgba(52, 174, 147, 0.04) 1px, transparent 1px);
  background-size: 48px 48px;
  mask-image: radial-gradient(
    ellipse 80% 70% at 50% 30%,
    rgba(0, 0, 0, 0.5) 0%,
    transparent 70%
  );
  -webkit-mask-image: radial-gradient(
    ellipse 80% 70% at 50% 30%,
    rgba(0, 0, 0, 0.5) 0%,
    transparent 70%
  );
}

#hero h1 em {
  font-style: italic;
  background: var(--gradient);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

/* Fade in */
.fade-in {
  opacity: 0;
  transform: translateY(20px);
  transition:
    opacity 0.6s ease,
    transform 0.6s ease;
}

.fade-in.visible {
  opacity: 1;
  transform: translateY(0);
}

.fade-in.delay-1 {
  transition-delay: 0.1s;
}

.fade-in.delay-2 {
  transition-delay: 0.2s;
}

.fade-in.delay-3 {
  transition-delay: 0.3s;
}

/* Platform pills */
.platform-pills {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  flex-wrap: wrap;
  margin-top: 40px;
}

.platform-pill-disc {
  display: flex;
  align-items: center;
  gap: 7px;
  background: #fff;
  border: 1px solid var(--border);
  border-radius: 100px;
  padding: 7px 14px;
  font-size: 13px;
  font-weight: 600;
  color: var(--text-primary);
  box-shadow: var(--shadow-sm);
  transition:
    transform 0.15s,
    box-shadow 0.15s;
}

.platform-pill-disc:hover {
  transform: translateY(-2px);
  box-shadow: var(--shadow-md);
}

.platform-pill-icon {
  font-size: 16px;
}

/* Hero stats */
.hero-stats {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0;
  margin-top: 48px;
  flex-wrap: wrap;
}

.hero-stat {
  padding: 20px 32px;
  text-align: center;
  border-right: 1px solid var(--border);
}

.hero-stat:last-child {
  border-right: none;
}

.hero-stat-val {
  font-family: "DM Serif Display", Georgia, serif;
  font-size: 32px;
  font-weight: 400;
  color: var(--primary);
  line-height: 1;
}

.hero-stat-lbl {
  font-size: 12px;
  color: var(--text-secondary);
  font-weight: 500;
  margin-top: 4px;
}

.stats-wrap {
  background: var(--tint);
  border: 1px solid var(--border);
  border-radius: 14px;
  display: inline-flex;
  flex-wrap: wrap;
  overflow: hidden;
  margin-top: 48px;
}

@media (max-width: 640px) {
  .hero-stat {
    border-right: none;
    border-bottom: 1px solid var(--border);
  }

  .hero-stat:last-child {
    border-bottom: none;
  }
}

/* ── SEARCH & FILTER ── */
#search-filter {
  padding: 96px 24px;
  background: var(--surface);
}

.filter-header {
  text-align: center;
  margin-bottom: 56px;
}

.filter-header .subtext {
  max-width: 560px;
  margin: 14px auto 0;
}

.filter-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 20px;
}

@media (min-width: 768px) {
  .filter-grid {
    grid-template-columns: 1fr 1fr;
  }
}

.filter-card {
  background: #fff;
  border: 1px solid var(--border);
  border-radius: 16px;
  padding: 32px;
  box-shadow: var(--shadow-sm);
  transition:
    transform 0.2s,
    box-shadow 0.2s;
}

.filter-card:hover {
  transform: translateY(-2px);
  box-shadow: var(--shadow-md);
}

.filter-card-head {
  display: flex;
  align-items: center;
  gap: 12px;
  margin-bottom: 24px;
}

.filter-card-icon {
  width: 40px;
  height: 40px;
  border-radius: 10px;
  background: var(--gradient);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

.filter-card-icon svg {
  width: 18px;
  height: 18px;
}

.filter-card-title {
  font-size: 15px;
  font-weight: 800;
  color: var(--primary);
  letter-spacing: -0.01em;
}

.filter-card-sub {
  font-size: 12px;
  color: var(--text-secondary);
  font-weight: 500;
}

.filter-items {
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.filter-item {
  display: flex;
  align-items: center;
  gap: 11px;
  padding: 10px 14px;
  border-radius: 9px;
  background: var(--surface);
  border: 1px solid var(--border);
  transition:
    background 0.12s,
    border-color 0.12s;
}

.filter-item:hover {
  background: var(--tint);
  border-color: rgba(52, 174, 147, 0.3);
}

.filter-dot {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: var(--gradient);
  flex-shrink: 0;
}

.filter-item-text {
  font-size: 14px;
  font-weight: 500;
  color: var(--text-primary);
}

/* ── ACCORDION SECTIONS ── */
.accordion-section {
  padding: 96px 24px;
}

.accordion-section:nth-child(even) {
  background: var(--surface);
}

.acc-layout {
  display: grid;
  grid-template-columns: 1fr;
  gap: 52px;
  align-items: start;
  max-width: 1200px;
  margin: 0 auto;
}

@media (min-width: 768px) {
  .acc-layout {
    grid-template-columns: 1fr 1fr;
    gap: 64px;
  }
}

.acc-layout.reverse-layout {
}

@media (min-width: 768px) {
  .acc-layout.reverse-layout .acc-text-col {
    order: 2;
  }

  .acc-layout.reverse-layout .acc-visual-col {
    order: 1;
  }
}

.acc-text-col {
  display: flex;
  flex-direction: column;
  gap: 8px;
}

.acc-section-tag {
  display: inline-flex;
  align-items: center;
  gap: 5px;
  background: var(--tint);
  border: 1px solid rgba(52, 174, 147, 0.3);
  color: var(--teal);
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  padding: 4px 10px;
  border-radius: 100px;
  width: fit-content;
  margin-bottom: 8px;
}

.acc-text-col h2 {
  margin-bottom: 8px;
}

.acc-text-col .subtext {
  margin-bottom: 20px;
  font-size: 14px;
}

/* Accordion */
.accordion-list {
  display: flex;
  flex-direction: column;
  gap: 8px;
}

.acc-item {
  border: 1px solid var(--border);
  border-radius: 12px;
  overflow: hidden;
  background: #fff;
  transition: border-color 0.15s;
}

.acc-item.open {
  border-color: rgba(52, 174, 147, 0.4);
}

.acc-trigger {
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
  padding: 15px 18px;
  background: none;
  border: none;
  cursor: pointer;
  font-family: inherit;
  font-size: 14px;
  font-weight: 600;
  color: var(--primary);
  text-align: left;
  transition: background 0.12s;
}

.acc-trigger:hover {
  background: var(--tint);
}

.acc-icon {
  flex-shrink: 0;
  width: 22px;
  height: 22px;
  border-radius: 50%;
  border: 1.5px solid var(--border);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--teal);
  font-size: 16px;
  font-weight: 300;
  line-height: 1;
  transition:
    transform 0.2s,
    border-color 0.15s,
    background 0.15s;
}

.acc-item.open .acc-icon {
  transform: rotate(45deg);
  border-color: var(--teal);
  background: var(--tint);
}

.acc-body {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.3s ease;
}

.acc-item.open .acc-body {
  max-height: 200px;
}

.acc-body-inner {
  padding: 0 18px 16px;
  font-size: 14px;
  color: var(--text-secondary);
  line-height: 1.72;
}

/* Visual panel */
.acc-visual-col {
  position: relative;
}

.visual-card {
  background: var(--tint);
  border: 1.5px dashed var(--teal);
  border-radius: 18px;
  min-height: 320px;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 28px;
  position: relative;
  overflow: hidden;
}

.visual-card::before {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(
    135deg,
    rgba(138, 216, 163, 0.07),
    rgba(52, 174, 147, 0.06)
  );
}

.vc-inner {
  position: relative;
  z-index: 1;
  width: 100%;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 16px;
}

.vc-label {
  font-size: 11px;
  font-weight: 700;
  color: var(--teal);
  letter-spacing: 0.07em;
  text-transform: uppercase;
}

.vc-icon {
  width: 50px;
  height: 50px;
  border-radius: 14px;
  background: rgba(52, 174, 147, 0.15);
  display: flex;
  align-items: center;
  justify-content: center;
}

.vc-icon svg {
  width: 24px;
  height: 24px;
}

.vc-metrics {
  display: flex;
  gap: 10px;
  flex-wrap: wrap;
  justify-content: center;
}

.vc-metric {
  background: #fff;
  border: 1px solid var(--border);
  border-radius: 10px;
  padding: 10px 16px;
  text-align: center;
}

.vc-metric-v {
  font-size: 18px;
  font-weight: 800;
  color: var(--primary);
  font-family: "DM Serif Display", serif;
}

.vc-metric-l {
  font-size: 10px;
  color: var(--text-secondary);
  font-weight: 500;
  margin-top: 2px;
}

/* Creator card strip */
.creator-strip {
  display: flex;
  flex-direction: column;
  gap: 8px;
  width: 100%;
}

.creator-row {
  background: #fff;
  border: 1px solid var(--border);
  border-radius: 10px;
  padding: 11px 14px;
  display: flex;
  align-items: center;
  gap: 12px;
  transition: box-shadow 0.15s;
}

.creator-row:hover {
  box-shadow: var(--shadow-md);
}

.creator-avatar {
  width: 34px;
  height: 34px;
  border-radius: 50%;
  background: var(--gradient);
  flex-shrink: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 12px;
  font-weight: 800;
  color: #fff;
}

.creator-name {
  font-size: 13px;
  font-weight: 700;
  color: var(--primary);
}

.creator-meta {
  font-size: 11px;
  color: var(--text-secondary);
}

.creator-er {
  margin-left: auto;
  font-size: 11px;
  font-weight: 800;
  color: var(--teal);
  background: var(--tint);
  border: 1px solid var(--border);
  padding: 3px 9px;
  border-radius: 100px;
}

/* Fraud / quality score */
.quality-bars {
  display: flex;
  flex-direction: column;
  gap: 8px;
  width: 100%;
}

.quality-bar-row {
  display: flex;
  align-items: center;
  gap: 10px;
}

.quality-bar-lbl {
  font-size: 12px;
  font-weight: 600;
  color: var(--text-secondary);
  width: 80px;
  flex-shrink: 0;
}

.quality-bar-track {
  flex: 1;
  height: 8px;
  background: var(--border);
  border-radius: 4px;
  overflow: hidden;
}

.quality-bar-fill {
  height: 100%;
  border-radius: 4px;
}

.quality-bar-pct {
  font-size: 12px;
  font-weight: 700;
  width: 36px;
  text-align: right;
}

/* Global map */
.globe-wrap {
  width: 120px;
  height: 120px;
  border-radius: 50%;
  background: var(--gradient);
  opacity: 0.15;
  position: relative;
}

.globe-lines {
  position: absolute;
  inset: 0;
  border-radius: 50%;
}

/* ── STATS + CTA ── */
#stats-cta {
  padding: 96px 24px;
  background: var(--primary);
  position: relative;
  overflow: hidden;
  text-align: center;
}

#stats-cta::before {
  content: "";
  position: absolute;
  width: 600px;
  height: 600px;
  border-radius: 50%;
  background: radial-gradient(
    circle,
    rgba(138, 216, 163, 0.08) 0%,
    transparent 70%
  );
  top: -200px;
  left: -100px;
  pointer-events: none;
}

#stats-cta::after {
  content: "";
  position: absolute;
  width: 400px;
  height: 400px;
  border-radius: 50%;
  background: radial-gradient(
    circle,
    rgba(52, 174, 147, 0.08) 0%,
    transparent 70%
  );
  bottom: -100px;
  right: -60px;
  pointer-events: none;
}

#stats-cta h2 {
  font-family: "DM Serif Display", Georgia, serif;
  font-size: clamp(28px, 4vw, 48px);
  color: #fff;
  margin-bottom: 16px;
}

#stats-cta h2 em {
  font-style: italic;
  color: var(--mint);
}

#stats-cta .subtext {
  color: rgba(255, 255, 255, 0.72);
  max-width: 580px;
  margin: 0 auto 36px;
}

.stat-pills {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  flex-wrap: wrap;
  margin-bottom: 36px;
}

.stat-pill {
  background: rgba(255, 255, 255, 0.08);
  border: 1px solid rgba(255, 255, 255, 0.15);
  color: #fff;
  font-size: 13px;
  font-weight: 700;
  padding: 7px 18px;
  border-radius: 100px;
  display: flex;
  align-items: center;
  gap: 7px;
}

.stat-pill-dot {
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: var(--mint);
}

.btn-white-lg {
  background: #fff;
  color: var(--primary);
  font-size: 15px;
  font-weight: 700;
  padding: 14px 32px;
  border-radius: 10px;
  text-decoration: none;
  border: none;
  cursor: pointer;
  display: inline-flex;
  align-items: center;
  gap: 8px;
  transition:
    transform 0.15s,
    box-shadow 0.15s;
}

.btn-white-lg:hover {
  transform: scale(1.02);
  box-shadow: 0 8px 28px rgba(4, 62, 84, 0.25);
}

.btn-white-cta {
  background: #fff;
  color: var(--primary);
  font-size: 15px;
  font-weight: 700;
  padding: 13px 28px;
  border-radius: 10px;
  text-decoration: none;
  border: none;
  cursor: pointer;
  display: inline-flex;
  align-items: center;
  gap: 6px;
  transition:
    transform 0.15s,
    box-shadow 0.15s;
}

.btn-white-cta:hover {
  transform: scale(1.02);
  box-shadow: 0 6px 20px rgba(4, 62, 84, 0.2);
}

.infuencer-drb-disc-hero {
  text-align: center;
}

/* Hero analytics widget */
.hero-widget {
  background: #fff;
  border: 1px solid var(--border);
  border-radius: 18px;
  padding: 24px;
  box-shadow: var(--shadow-lg);
  display: flex;
  flex-direction: column;
  gap: 18px;
}

.hw-head {
  display: flex;
  align-items: center;
  gap: 12px;
}

.hw-avatar {
  width: 44px;
  height: 44px;
  border-radius: 50%;
  background: var(--gradient);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 15px;
  font-weight: 800;
  color: #fff;
  flex-shrink: 0;
}

.hw-name {
  font-size: 14px;
  font-weight: 700;
  color: var(--primary);
}

.hw-handle {
  font-size: 12px;
  color: var(--text-secondary);
}

.hw-score {
  margin-left: auto;
  background: var(--tint);
  border: 1px solid var(--border);
  border-radius: 8px;
  padding: 6px 12px;
  text-align: center;
}

.hw-score-v {
  font-size: 18px;
  font-weight: 800;
  color: var(--teal);
  font-family: "DM Serif Display", serif;
  line-height: 1;
}

.hw-score-l {
  font-size: 10px;
  color: var(--text-secondary);
  font-weight: 500;
}

.hw-stats {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 10px;
}

.hw-stat {
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: 10px;
  padding: 10px;
  text-align: center;
}

.hw-stat-v {
  font-size: 16px;
  font-weight: 800;
  color: var(--primary);
  font-family: "DM Serif Display", serif;
  line-height: 1;
}

.hw-stat-l {
  font-size: 10px;
  color: var(--text-secondary);
  font-weight: 500;
  margin-top: 3px;
}

.hw-bar-section {
  display: flex;
  flex-direction: column;
  gap: 8px;
}

.hw-bar-title {
  font-size: 11px;
  font-weight: 700;
  color: var(--text-secondary);
  letter-spacing: 0.05em;
  text-transform: uppercase;
}

.hw-bar-row {
  display: flex;
  align-items: center;
  gap: 8px;
}

.hw-bar-lbl {
  font-size: 11px;
  font-weight: 600;
  color: var(--text-secondary);
  width: 56px;
  flex-shrink: 0;
}

.hw-bar-track {
  flex: 1;
  height: 7px;
  background: var(--border);
  border-radius: 3px;
  overflow: hidden;
}

.hw-bar-fill {
  height: 100%;
  border-radius: 3px;
}

.hw-bar-pct {
  font-size: 11px;
  font-weight: 700;
  width: 32px;
  text-align: right;
}

.hw-tags {
  display: flex;
  gap: 6px;
  flex-wrap: wrap;
}

.hw-tag {
  background: var(--tint);
  border: 1px solid var(--border);
  border-radius: 100px;
  padding: 4px 10px;
  font-size: 11px;
  font-weight: 600;
  color: var(--teal);
}

.hero-inner-grid {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: 1fr;
  gap: 52px;
  align-items: center;
  max-width: 1200px;
  margin: 0 auto;
}

@media (min-width: 768px) {
  .hero-inner-grid {
    grid-template-columns: 1fr 1fr;
  }
}

/* ── DATA METRICS SECTION ── */
#metrics {
  background: var(--surface);
  padding: 96px 24px;
}

.metrics-header {
  text-align: center;
  margin-bottom: 52px;
}

.metrics-header .subtext {
  max-width: 560px;
  margin: 14px auto 0;
}

.metrics-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 20px;
}

@media (min-width: 768px) {
  .metrics-grid {
    grid-template-columns: repeat(3, 1fr);
  }
}

.metric-card {
  background: #fff;
  border: 1px solid var(--border);
  border-radius: 16px;
  padding: 32px 28px;
  box-shadow: var(--shadow-sm);
  transition:
    transform 0.2s,
    box-shadow 0.2s;
  display: flex;
  flex-direction: column;
  gap: 20px;
  position: relative;
  overflow: hidden;
}

.metric-card:hover {
  transform: translateY(-3px);
  box-shadow: var(--shadow-md);
}

.metric-card::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 3px;
  background: var(--gradient);
}

.mc-icon {
  width: 46px;
  height: 46px;
  border-radius: 12px;
  background: var(--gradient);
  display: flex;
  align-items: center;
  justify-content: center;
}

.mc-icon svg {
  width: 22px;
  height: 22px;
}

.mc-title {
  font-size: 16px;
  font-weight: 800;
  color: var(--primary);
  letter-spacing: -0.01em;
}

.mc-items {
  display: flex;
  flex-direction: column;
  gap: 9px;
}

.mc-item {
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 8px 12px;
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: 8px;
  transition:
    background 0.12s,
    border-color 0.12s;
}

.mc-item:hover {
  background: var(--tint);
  border-color: rgba(52, 174, 147, 0.3);
}

.mc-dot {
  width: 7px;
  height: 7px;
  border-radius: 50%;
  background: var(--gradient);
  flex-shrink: 0;
}

.mc-item-text {
  font-size: 13px;
  font-weight: 500;
  color: var(--text-primary);
}

/* ── FEATURE ROWS ── */
.frow-section {
  padding: 96px 24px;
}

.frow-section.alt {
  background: var(--surface);
}

.frow {
  display: grid;
  grid-template-columns: 1fr;
  gap: 52px;
  align-items: center;
  max-width: 1200px;
  margin: 0 auto;
}

@media (min-width: 768px) {
  .frow {
    grid-template-columns: 1fr 1fr;
    gap: 64px;
  }

  .frow.rev .ftext {
    order: 2;
  }

  .frow.rev .fvisual {
    order: 1;
  }
}

.ftext {
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.frow-tag {
  display: inline-flex;
  align-items: center;
  gap: 5px;
  background: var(--tint);
  border: 1px solid rgba(52, 174, 147, 0.3);
  color: var(--teal);
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  padding: 4px 10px;
  border-radius: 100px;
  width: fit-content;
}

.ftext h2 {
  margin-bottom: 0;
}

.ftext p {
  font-size: 15px;
  color: var(--text-secondary);
  line-height: 1.72;
}

.flink {
  display: inline-flex;
  align-items: center;
  gap: 5px;
  font-size: 14px;
  font-weight: 700;
  color: var(--teal);
  text-decoration: none;
  transition: gap 0.15s;
  width: fit-content;
  margin-top: 4px;
}

.flink:hover {
  gap: 8px;
}

.vp {
  background: var(--tint);
  border: 1.5px dashed var(--teal);
  border-radius: 18px;
  min-height: 300px;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 28px;
  position: relative;
  overflow: hidden;
}

.vp::before {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(
    135deg,
    rgba(138, 216, 163, 0.07),
    rgba(52, 174, 147, 0.06)
  );
}

.vpc {
  position: relative;
  z-index: 1;
  width: 100%;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 14px;
}

.vpc-lbl {
  font-size: 11px;
  font-weight: 700;
  color: var(--teal);
  letter-spacing: 0.07em;
  text-transform: uppercase;
}

.vpc-ic {
  width: 48px;
  height: 48px;
  border-radius: 13px;
  background: rgba(52, 174, 147, 0.15);
  display: flex;
  align-items: center;
  justify-content: center;
}

.vpc-ic svg {
  width: 24px;
  height: 24px;
}

.mets {
  display: flex;
  gap: 10px;
  flex-wrap: wrap;
  justify-content: center;
}

.met {
  background: #fff;
  border: 1px solid var(--border);
  border-radius: 10px;
  padding: 9px 14px;
  text-align: center;
}

.met-v {
  font-size: 17px;
  font-weight: 800;
  color: var(--primary);
  font-family: "DM Serif Display", serif;
}

.met-l {
  font-size: 10px;
  color: var(--text-secondary);
  font-weight: 500;
  margin-top: 2px;
}

/* Collab timeline */
.timeline {
  display: flex;
  flex-direction: column;
  gap: 0;
  width: 100%;
}

.tl-item {
  display: flex;
  gap: 12px;
}

.tl-line {
  display: flex;
  flex-direction: column;
  align-items: center;
  flex-shrink: 0;
}

.tl-dot {
  width: 10px;
  height: 10px;
  border-radius: 50%;
  background: var(--gradient);
  flex-shrink: 0;
}

.tl-connector {
  width: 2px;
  flex: 1;
  background: var(--border);
  min-height: 12px;
}

.tl-item:last-child .tl-connector {
  display: none;
}

.tl-card {
  background: #fff;
  border: 1px solid var(--border);
  border-radius: 9px;
  padding: 10px 14px;
  margin-bottom: 8px;
  flex: 1;
}

.tl-brand {
  font-size: 13px;
  font-weight: 700;
  color: var(--primary);
}

.tl-meta {
  font-size: 11px;
  color: var(--text-secondary);
  margin-top: 2px;
}

.tl-er {
  font-size: 11px;
  font-weight: 800;
  color: var(--teal);
  background: var(--tint);
  border: 1px solid var(--border);
  padding: 2px 8px;
  border-radius: 100px;
  float: right;
}

/* Audience demo bars */
.demo-bars {
  display: flex;
  flex-direction: column;
  gap: 8px;
  width: 100%;
}

.db-row {
  display: flex;
  align-items: center;
  gap: 8px;
}

.db-lbl {
  font-size: 12px;
  font-weight: 600;
  color: var(--text-secondary);
  width: 72px;
  flex-shrink: 0;
}

.db-track {
  flex: 1;
  height: 8px;
  background: var(--border);
  border-radius: 4px;
  overflow: hidden;
}

.db-fill {
  height: 100%;
  border-radius: 4px;
}

.db-pct {
  font-size: 12px;
  font-weight: 700;
  width: 36px;
  text-align: right;
}

/* Growth chart */
.growth-chart {
  width: 100%;
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.gc-bars {
  display: flex;
  align-items: flex-end;
  gap: 5px;
  height: 80px;
  padding: 0 4px;
}

.gc-bar {
  flex: 1;
  border-radius: 4px 4px 0 0;
  position: relative;
}

.gc-bar-organic {
  background: var(--gradient);
}

.gc-bar-paid {
  background: rgba(52, 174, 147, 0.3);
}

.gc-labels {
  display: flex;
  gap: 16px;
  justify-content: center;
}

.gc-legend {
  display: flex;
  align-items: center;
  gap: 5px;
  font-size: 11px;
  font-weight: 600;
  color: var(--text-secondary);
}

.gc-dot {
  width: 8px;
  height: 8px;
  border-radius: 2px;
}

/* Growth trend */
.trend-chart {
  width: 100%;
}

.tc-bars {
  display: flex;
  align-items: flex-end;
  gap: 6px;
  height: 90px;
}

.tc-bar {
  flex: 1;
  border-radius: 5px 5px 0 0;
  background: var(--gradient);
}

.platform-badges {
  display: flex;
  gap: 8px;
  flex-wrap: wrap;
}

.p-badge {
  display: flex;
  align-items: center;
  gap: 6px;
  background: #fff;
  border: 1px solid var(--border);
  border-radius: 100px;
  padding: 6px 14px;
  font-size: 13px;
  font-weight: 600;
  color: var(--text-primary);
  box-shadow: var(--shadow-sm);
}

/* MAIN SPLIT LAYOUT */
.page {
  display: grid;
  grid-template-columns: 1fr 500px;
  height: calc(100vh - 64px);
  overflow: hidden;
  background: #0a1628;
}

/* LEFT INFO PANEL */
.info-panel {
  padding: 52px 56px;
  overflow-y: auto;
  /* background: var(--bg); */
  display: flex;
  flex-direction: column;
  gap: 0;
  position: relative;
}

.info-panel::after {
  content: "";
  position: absolute;
  top: 0;
  right: 0;
  width: 1px;
  bottom: 0;
  background: #1e3352;
}

/* Grid bg */
.info-panel::before {
  content: "";
  position: absolute;
  inset: 0;
  background-image:
    linear-gradient(var(--line) 1px, transparent 1px),
    linear-gradient(90deg, var(--line) 1px, transparent 1px);
  background-size: 48px 48px;
  pointer-events: none;
  mask-image: radial-gradient(
    ellipse 600px 400px at 50% 30%,
    black,
    transparent 70%
  );
}

.info-eyebrow {
  font-family: "JetBrains Mono", monospace;
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 1.5px;
  text-transform: uppercase;
  color: var(--teal);
  margin-bottom: 16px;
  position: relative;
  z-index: 1;
}

.info-h1 {
  font-size: clamp(24px, 3vw, 40px);
  font-weight: 800;
  color: var(--bright);
  letter-spacing: -1.5px;
  line-height: 1.1;
  margin-bottom: 16px;
  position: relative;
  z-index: 1;
}

.info-h1 .hl {
  background: var(--grad);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.info-sub {
  font-size: 16px;
  color: var(--muted);
  line-height: 1.7;
  margin-bottom: 40px;
  position: relative;
  z-index: 1;
  max-width: 440px;
}

/* PLAN TABS */
.plan-tabs {
  display: flex;
  gap: 0;
  background: #0f1f38;
  border: 1px solid #1e3352;
  border-radius: 12px;
  padding: 4px;
  margin-bottom: 28px;
  position: relative;
  z-index: 1;
}

.plan-tab {
  flex: 1;
  text-align: center;
  padding: 9px 0;
  font-size: 13px;
  font-weight: 600;
  color: var(--muted);
  cursor: pointer;
  border-radius: 9px;
  transition: all 0.2s;
  border: none;
  background: none;
  font-family: "Inter", sans-serif;
}

.plan-tab.active {
  background: #162540;
  color: var(--bright);
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.3);
}

.plan-tab .tab-badge {
  font-family: "JetBrains Mono", monospace;
  font-size: 9px;
  font-weight: 700;
  background: rgba(52, 174, 147, 0.2);
  color: var(--teal);
  padding: 1px 5px;
  border-radius: 3px;
  margin-left: 6px;
}

/* PLAN DETAIL CARDS */
.plan-card {
  background: #0f1f38;
  border: 1px solid var(--border2);
  border-radius: 14px;
  padding: 24px;
  margin-bottom: 28px;
  position: relative;
  z-index: 1;
  display: none;
}

.plan-card.active {
  display: block;
}

.plan-card.featured {
  border-color: rgba(52, 174, 147, 0.4);
  background: linear-gradient(180deg, rgba(52, 174, 147, 0.06) 0%, #0f1f38 40%);
}

.plan-name {
  font-family: "JetBrains Mono", monospace;
  font-size: 11px;
  font-weight: 700;
  color: var(--muted);
  text-transform: uppercase;
  letter-spacing: 1px;
  margin-bottom: 4px;
}

.plan-price {
  font-size: 36px;
  font-weight: 800;
  color: var(--bright);
  letter-spacing: -2px;
  line-height: 1;
}

.plan-price .period {
  font-size: 15px;
  font-weight: 500;
  color: var(--muted);
  letter-spacing: 0;
}

.plan-desc {
  font-size: 13.5px;
  color: var(--muted);
  margin-top: 8px;
  line-height: 1.6;
  margin-bottom: 20px;
}

.plan-limits {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 10px;
  margin-bottom: 20px;
}

.pl-item {
  background: rgba(255, 255, 255, 0.04);
  border: 1px solid var(--line);
  border-radius: 8px;
  padding: 12px;
}

.pl-val {
  font-family: "JetBrains Mono", monospace;
  font-size: 15px;
  font-weight: 700;
  color: var(--bright);
}

.pl-label {
  font-size: 11px;
  color: var(--muted);
  margin-top: 3px;
}

.plan-features {
  display: flex;
  flex-direction: column;
  gap: 8px;
}

.pf-item {
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: 13.5px;
  color: var(--text);
}

.pf-check {
  width: 18px;
  height: 18px;
  border-radius: 5px;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

.pf-check.yes {
  background: rgba(52, 174, 147, 0.2);
}

.pf-check.yes svg {
  width: 10px;
  height: 10px;
  fill: none;
  stroke: var(--teal);
  stroke-width: 2.5;
  stroke-linecap: round;
}

.pf-check.no {
  background: rgba(107, 143, 175, 0.1);
}

.pf-check.no svg {
  width: 10px;
  height: 10px;
  fill: none;
  stroke: rgba(107, 143, 175, 0.4);
  stroke-width: 2.5;
  stroke-linecap: round;
}

/* TRUST SIGNALS */
.trust-row {
  display: flex;
  gap: 20px;
  flex-wrap: wrap;
  position: relative;
  z-index: 1;
}

.trust-item {
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 13px;
  color: var(--muted);
}

.trust-icon {
  width: 28px;
  height: 28px;
  border-radius: 7px;
  background: rgba(52, 174, 147, 0.1);
  border: 1px solid rgba(52, 174, 147, 0.2);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

.trust-icon svg {
  width: 13px;
  height: 13px;
  fill: none;
  stroke: var(--teal);
  stroke-width: 2;
  stroke-linecap: round;
}

/* RIGHT FORM PANEL */
.form-panel {
  background: #0f1f38;
  overflow-y: auto;
  padding: 0;
}

/* Stepper */
.step-header {
  padding: 28px 36px 24px;
  border-bottom: 1px solid #1e3352;
  position: sticky;
  top: 0;
  background: #0f1f38;
  z-index: 10;
}

.step-progress {
  display: flex;
  align-items: center;
  gap: 0;
  margin-bottom: 20px;
}

.step-dot {
  width: 28px;
  height: 28px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: "JetBrains Mono", monospace;
  font-size: 11px;
  font-weight: 700;
  flex-shrink: 0;
  transition: all 0.3s;
}

.sd-done {
  background: var(--teal);
  color: #0a1628;
}

.sd-active {
  background: rgba(52, 174, 147, 0.2);
  border: 2px solid var(--teal);
  color: var(--teal);
}

.sd-todo {
  background: var(--surface2);
  border: 2px solid var(--border2);
  color: var(--muted);
}

.step-line {
  flex: 1;
  height: 2px;
  background: var(--border2);
  margin: 0 4px;
  transition: background 0.3s;
}

.step-line.done {
  background: var(--teal);
}

.step-titles {
  display: flex;
  justify-content: space-between;
}

.st-label {
  font-size: 11px;
  font-weight: 600;
  color: var(--muted);
  text-align: center;
  flex: 1;
}

.st-label.active {
  color: var(--teal);
}

.st-label.done {
  color: var(--bright);
}

/* FORM STEPS */
.form-steps {
  padding: 32px 36px 36px;
}

.form-step {
  display: none;
}

.form-step.active {
  display: block;
}

.step-title {
  font-size: 18px;
  font-weight: 800;
  color: var(--bright);
  letter-spacing: -0.5px;
  margin-bottom: 6px;
}

.step-desc {
  font-size: 13.5px;
  color: var(--muted);
  margin-bottom: 28px;
  line-height: 1.6;
}

.form-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 14px;
  margin-bottom: 14px;
}

.form-group {
  margin-bottom: 14px;
}

.form-label {
  display: block;
  font-size: 12px;
  font-weight: 700;
  color: var(--text);
  margin-bottom: 7px;
  letter-spacing: 0.3px;
}

.form-label .req {
  color: var(--teal);
  margin-left: 2px;
}

.form-input,
.form-select {
  width: 100%;
  height: 44px;
  background: var(--bg2);
  border: 1.5px solid var(--border2);
  border-radius: 9px;
  padding: 0 14px;
  font-size: 14px;
  font-family: "Inter", sans-serif;
  color: var(--bright);
  outline: none;
  transition:
    border-color 0.2s,
    box-shadow 0.2s;
}

.form-input::placeholder {
  color: var(--muted);
}

.form-input:focus,
.form-select:focus {
  border-color: #34ae93;
  box-shadow: 0 0 0 3px rgba(52, 174, 147, 0.1);
}

.form-select {
  cursor: pointer;
  appearance: none;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='12' viewBox='0 0 12 12'%3E%3Cpath d='M2 4l4 4 4-4' fill='none' stroke='%236B8FAF' stroke-width='1.5' stroke-linecap='round' stroke-linejoin='round'/%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-position: right 14px center;
  padding-right: 36px;
  background-color: var(--bg2);
}

.form-select option {
  background: var(--surface2);
  color: var(--bright);
}

/* Password field */
.pass-wrap {
  position: relative;
}

.pass-wrap .form-input {
  padding-right: 44px;
}

.pass-toggle {
  position: absolute;
  right: 12px;
  top: 50%;
  transform: translateY(-50%);
  background: none;
  border: none;
  cursor: pointer;
  color: var(--muted);
  transition: color 0.15s;
  padding: 4px;
}

.pass-toggle:hover {
  color: var(--teal);
}

.pass-toggle svg {
  width: 16px;
  height: 16px;
  fill: none;
  stroke: currentColor;
  stroke-width: 2;
  stroke-linecap: round;
}

/* Password strength */
.pass-strength {
  margin-top: 8px;
}

.ps-bars {
  display: flex;
  gap: 4px;
  margin-bottom: 5px;
}

.ps-bar {
  flex: 1;
  height: 3px;
  border-radius: 2px;
  background: var(--border2);
  transition: background 0.3s;
}

.ps-bar.weak {
  background: #ff6b6b;
}

.ps-bar.fair {
  background: var(--orange);
}

.ps-bar.good {
  background: var(--teal);
}

.ps-label {
  font-size: 11px;
  color: var(--muted);
}

/* Use case select */
.usecase-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 10px;
  margin-bottom: 14px;
}

.uc-option {
  background: var(--bg2);
  border: 1.5px solid var(--border2);
  border-radius: 9px;
  padding: 12px 14px;
  cursor: pointer;
  transition: all 0.2s;
  text-align: left;
}

.uc-option.selected {
  border-color: var(--teal);
  background: rgba(52, 174, 147, 0.06);
}

.uc-option:hover {
  border-color: rgba(52, 174, 147, 0.4);
}

.uc-icon {
  font-size: 18px;
  margin-bottom: 6px;
}

.uc-label {
  font-size: 13px;
  font-weight: 600;
  color: var(--text);
}

.uc-desc {
  font-size: 11.5px;
  color: var(--muted);
  margin-top: 2px;
  line-height: 1.4;
}

/* API key reveal */
.apikey-reveal {
  background: var(--bg2);
  border: 1.5px solid rgba(52, 174, 147, 0.4);
  border-radius: 12px;
  padding: 20px;
  margin-bottom: 24px;
}

.akr-label {
  font-size: 11px;
  font-weight: 700;
  color: var(--muted);
  text-transform: uppercase;
  letter-spacing: 0.8px;
  margin-bottom: 10px;
  font-family: "JetBrains Mono", monospace;
}

.akr-key {
  font-family: "JetBrains Mono", monospace;
  font-size: 13px;
  color: var(--teal);
  word-break: break-all;
  line-height: 1.6;
  margin-bottom: 12px;
  user-select: all;
}

.akr-actions {
  display: flex;
  gap: 8px;
}

.akr-btn {
  font-size: 12px;
  font-weight: 700;
  padding: 6px 14px;
  border-radius: 7px;
  cursor: pointer;
  border: none;
  font-family: "Inter", sans-serif;
  transition: all 0.15s;
  display: flex;
  align-items: center;
  gap: 5px;
}

.akr-btn svg {
  width: 12px;
  height: 12px;
  fill: none;
  stroke: currentColor;
  stroke-width: 2;
  stroke-linecap: round;
}

.akr-copy {
  background: rgba(52, 174, 147, 0.15);
  color: var(--teal);
}

.akr-copy:hover {
  background: rgba(52, 174, 147, 0.25);
}

.akr-dl {
  background: rgba(107, 143, 175, 0.1);
  color: var(--muted);
}

.akr-dl:hover {
  background: rgba(107, 143, 175, 0.2);
  color: var(--text);
}

.akr-warn {
  display: flex;
  align-items: flex-start;
  gap: 8px;
  background: rgba(245, 166, 35, 0.08);
  border: 1px solid rgba(245, 166, 35, 0.25);
  border-radius: 8px;
  padding: 10px 12px;
  font-size: 12.5px;
  color: rgba(200, 180, 100, 0.8);
  margin-top: 12px;
  line-height: 1.5;
}

.akr-warn svg {
  width: 14px;
  height: 14px;
  fill: none;
  stroke: var(--orange);
  stroke-width: 2;
  stroke-linecap: round;
  flex-shrink: 0;
  margin-top: 1px;
}

/* Next steps */
.next-steps {
  display: flex;
  flex-direction: column;
  gap: 12px;
  margin-bottom: 24px;
}

.ns-item {
  display: flex;
  align-items: flex-start;
  gap: 12px;
  background: var(--bg2);
  border: 1px solid var(--border2);
  border-radius: 10px;
  padding: 14px 16px;
}

.ns-icon {
  width: 32px;
  height: 32px;
  border-radius: 8px;
  background: rgba(52, 174, 147, 0.15);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

.ns-icon svg {
  width: 15px;
  height: 15px;
  fill: none;
  stroke: var(--teal);
  stroke-width: 2;
  stroke-linecap: round;
}

.ns-title {
  font-size: 13.5px;
  font-weight: 700;
  color: var(--bright);
  margin-bottom: 3px;
}

.ns-desc {
  font-size: 12.5px;
  color: var(--muted);
  line-height: 1.5;
}

/* TERMS checkbox */
.terms-check {
  display: flex;
  align-items: flex-start;
  gap: 10px;
  margin-bottom: 20px;
}

.terms-check input[type="checkbox"] {
  width: 16px;
  height: 16px;
  margin-top: 2px;
  accent-color: var(--teal);
  flex-shrink: 0;
  cursor: pointer;
}

.terms-check label {
  font-size: 13px;
  color: var(--muted);
  line-height: 1.55;
  cursor: pointer;
}

.terms-check label a {
  color: var(--teal);
}

/* BUTTONS */
.btn-next {
  width: 100%;
  height: 48px;
  background: var(--grad);
  color: #0a1628;
  font-weight: 700;
  font-size: 15px;
  border: none;
  border-radius: 10px;
  cursor: pointer;
  font-family: "Inter", sans-serif;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  transition:
    opacity 0.2s,
    transform 0.2s;
}

.btn-next:hover {
  opacity: 0.9;
  transform: translateY(-1px);
}

.btn-next svg {
  width: 16px;
  height: 16px;
  fill: none;
  stroke: currentColor;
  stroke-width: 2.5;
  stroke-linecap: round;
}

.btn-next.loading {
  opacity: 0.7;
  pointer-events: none;
}

.btn-docs-cta {
  width: 100%;
  height: 48px;
  background: transparent;
  color: var(--teal);
  font-weight: 700;
  font-size: 15px;
  border: 1.5px solid rgba(52, 174, 147, 0.35);
  border-radius: 10px;
  cursor: pointer;
  font-family: "Inter", sans-serif;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  transition: background 0.2s;
  margin-top: 10px;
}

.btn-docs-cta:hover {
  background: rgba(52, 174, 147, 0.08);
}

.form-note {
  font-size: 12px;
  color: var(--muted);
  text-align: center;
  margin-top: 12px;
  line-height: 1.55;
}

.form-note a {
  color: var(--teal);
}

/* Divider */
.or-divider {
  display: flex;
  align-items: center;
  gap: 12px;
  margin: 16px 0;
  color: var(--muted);
  font-size: 12px;
}

.or-divider::before,
.or-divider::after {
  content: "";
  flex: 1;
  height: 1px;
  background: var(--border2);
}

/* OAuth */
.oauth-row {
  display: flex;
  gap: 10px;
  margin-bottom: 16px;
}

.oauth-btn {
  flex: 1;
  height: 42px;
  background: var(--bg2);
  border: 1.5px solid var(--border2);
  border-radius: 9px;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  font-size: 13px;
  font-weight: 600;
  color: var(--text);
  cursor: pointer;
  transition:
    border-color 0.2s,
    background 0.2s;
}

.oauth-btn:hover {
  border-color: rgba(255, 255, 255, 0.2);
  background: rgba(255, 255, 255, 0.04);
}

.oauth-btn svg {
  width: 18px;
  height: 18px;
}

@media (max-width: 900px) {
  html,
  body {
    overflow: auto;
  }

  .page {
    grid-template-columns: 1fr;
    height: auto;
  }

  .info-panel {
    display: none;
  }

  .form-panel {
    height: auto;
  }
}

.creator-badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: rgba(52, 174, 147, 0.15);
  border: 1px solid rgba(52, 174, 147, 0.3);
  color: var(--mint);
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 0.05em;
  text-transform: uppercase;
  padding: 5px 14px;
  border-radius: 100px;
  margin-bottom: 28px;
}

.creator-badge-dot {
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: var(--mint);
  animation: blink 2s infinite;
}

@keyframes blink {
  0%,
  100% {
    opacity: 1;
  }

  50% {
    opacity: 0.4;
  }
}

.for-creators {
  background: var(--primary) !important;
  padding: 80px 24px 72px !important;
  position: relative;
  overflow: hidden;
  text-align: center;
}

.for-creators h1 {
  color: #fff;
}

.for-creators p {
  color: #ffffffb3;
}

.for-creators .btn-outline {
  color: #ffffffb3;
}

.for-creators .btn-outline:hover {
  background: rgba(255, 255, 255, 0.1);
}

.for-creators .hero-btns {
  margin-bottom: 40px;
  display: flex;
  gap: 12px;
  justify-content: center;
  flex-wrap: wrap;
}

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

.hp-label {
  font-size: 12px;
  color: rgba(255, 255, 255, 0.45);
  font-weight: 600;
  letter-spacing: 0.04em;
  text-transform: uppercase;
}

.platform-pill {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  background: rgba(255, 255, 255, 0.07);
  border: 1px solid rgba(255, 255, 255, 0.12);
  padding: 5px 12px;
  border-radius: 100px;
  font-size: 12px;
  font-weight: 600;
  color: rgba(255, 255, 255, 0.7);
}

/* SOCIAL PROOF STRIP */
#proof {
  background: var(--surface);
  border-bottom: 1px solid var(--border);
  padding: 32px 24px;
}

.proof-inner {
  max-width: 900px;
  margin: 0 auto;
  display: flex;
  align-items: center;
  justify-content: space-around;
  flex-wrap: wrap;
  gap: 20px;
}

.proof-item {
  text-align: center;
}

.proof-num {
  font-family: "DM Serif Display", serif;
  font-size: 28px;
  font-weight: 400;
  color: var(--primary);
  line-height: 1;
}

.proof-label {
  font-size: 12px;
  color: var(--ts);
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  margin-top: 4px;
}

/* WHY DREABEE */
#why {
  padding: 80px 24px;
}

.why-inner {
  max-width: 1100px;
  margin: 0 auto;
}

.sec-label {
  font-size: 11px;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  color: var(--teal);
  text-align: center;
  margin-bottom: 12px;
}

.sec-title {
  font-family: "DM Serif Display", serif;
  font-size: clamp(26px, 3.5vw, 40px);
  font-weight: 400;
  color: var(--primary);
  text-align: center;
  line-height: 1.2;
  margin-bottom: 14px;
}

.sec-sub {
  font-size: 15px;
  color: var(--ts);
  text-align: center;
  max-width: 540px;
  margin: 0 auto 52px;
  line-height: 1.7;
}

.features-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 18px;
}

@media (min-width: 600px) {
  .features-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (min-width: 900px) {
  .features-grid {
    grid-template-columns: repeat(3, 1fr);
  }
}

.feat-card {
  border: 1px solid var(--border);
  border-radius: 16px;
  padding: 26px;
  background: #fff;
  box-shadow: var(--s-sm);
  transition: 0.2s;
}

.feat-card:hover {
  transform: translateY(-3px);
  box-shadow: var(--s-md);
  border-color: rgba(52, 174, 147, 0.25);
}

.feat-icon {
  width: 46px;
  height: 46px;
  border-radius: 13px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 16px;
  font-size: 20px;
}

.feat-title {
  font-size: 15px;
  font-weight: 800;
  color: var(--primary);
  margin-bottom: 8px;
}

.feat-text {
  font-size: 13.5px;
  color: var(--ts);
  line-height: 1.7;
}

.feat-cta {
  display: inline-flex;
  align-items: center;
  gap: 5px;
  margin-top: 12px;
  font-size: 13px;
  font-weight: 700;
  color: var(--teal);
  text-decoration: none;
  transition: 0.15s;
}

.feat-cta:hover {
  gap: 8px;
}

/* PROFILE DEMO */
#demo {
  padding: 80px 24px;
  background: var(--surface);
  border-top: 1px solid var(--border);
}

.demo-inner {
  max-width: 1100px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1fr;
  gap: 48px;
  align-items: center;
}

@media (min-width: 860px) {
  .demo-inner {
    grid-template-columns: 1fr 1fr;
  }
}

.demo-text .sec-label,
.demo-text .sec-title {
  text-align: left;
}

.demo-text .sec-title {
  margin-bottom: 14px;
}

.demo-list {
  display: flex;
  flex-direction: column;
  gap: 14px;
  margin-bottom: 28px;
}

.demo-item {
  display: flex;
  align-items: flex-start;
  gap: 12px;
}

.demo-check {
  width: 22px;
  height: 22px;
  border-radius: 50%;
  background: var(--grad);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  margin-top: 2px;
}

.demo-item-text {
  font-size: 14px;
  color: #2a5062;
  line-height: 1.65;
}

.demo-item-text strong {
  color: var(--primary);
  font-weight: 700;
}

/* Mock profile card */
.profile-mock {
  background: #fff;
  border: 1px solid var(--border);
  border-radius: 20px;
  padding: 24px;
  box-shadow: var(--s-lg);
}

.pm-header {
  display: flex;
  align-items: center;
  gap: 14px;
  margin-bottom: 20px;
}

.pm-avatar {
  width: 56px;
  height: 56px;
  border-radius: 50%;
  background: var(--grad);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 18px;
  font-weight: 900;
  color: #fff;
  font-family: "DM Serif Display", serif;
  flex-shrink: 0;
}

.pm-name {
  font-size: 16px;
  font-weight: 800;
  color: var(--primary);
}

.pm-handle {
  font-size: 13px;
  color: var(--ts);
}

.pm-verified {
  display: inline-flex;
  align-items: center;
  gap: 4px;
  font-size: 11px;
  font-weight: 700;
  color: var(--teal);
  background: var(--tint);
  padding: 2px 8px;
  border-radius: 100px;
  margin-top: 3px;
}

.pm-kpis {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 10px;
  margin-bottom: 18px;
}

.pm-kpi {
  background: var(--surface);
  border-radius: 10px;
  padding: 12px;
  text-align: center;
}

.pm-kpi-val {
  font-family: "DM Serif Display", serif;
  font-size: 20px;
  font-weight: 400;
  color: var(--primary);
}

.pm-kpi-label {
  font-size: 11px;
  color: var(--ts);
  font-weight: 600;
}

.pm-bar-label {
  display: flex;
  justify-content: space-between;
  font-size: 12px;
  font-weight: 600;
  margin-bottom: 5px;
}

.pm-bar-label span:first-child {
  color: var(--tp);
}

.pm-bar-label span:last-child {
  color: var(--teal);
}

.pm-bar {
  height: 7px;
  background: var(--border);
  border-radius: 100px;
  overflow: hidden;
  margin-bottom: 10px;
}

.pm-bar-fill {
  height: 100%;
  background: var(--grad);
  border-radius: 100px;
}

.pm-footer {
  display: flex;
  gap: 8px;
  margin-top: 16px;
}

.pm-tag {
  font-size: 11px;
  font-weight: 600;
  padding: 4px 10px;
  border-radius: 100px;
  background: var(--tint);
  color: var(--teal);
  border: 1px solid rgba(52, 174, 147, 0.2);
}

/* HOW IT WORKS */
#how {
  padding: 80px 24px;
  background: var(--surface);
  border-top: 1px solid var(--border);
}

.how-inner {
  max-width: 840px;
  margin: 0 auto;
}

.steps {
  display: grid;
  grid-template-columns: 1fr;
  gap: 0;
  margin-top: 48px;
  position: relative;
}

@media (min-width: 600px) {
  .steps {
    grid-template-columns: repeat(3, 1fr);
  }
}

.step {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  padding: 24px;
  position: relative;
}

.step-num {
  width: 48px;
  height: 48px;
  border-radius: 50%;
  background: var(--primary);
  color: #fff;
  font-family: "DM Serif Display", serif;
  font-size: 20px;
  font-weight: 400;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 16px;
  position: relative;
  z-index: 1;
}

.step-title {
  font-size: 15px;
  font-weight: 800;
  color: var(--primary);
  margin-bottom: 8px;
}

.step-text {
  font-size: 13.5px;
  color: var(--ts);
  line-height: 1.65;
}

.steps::before {
  content: "";
  position: absolute;
  top: 44px;
  left: 25%;
  right: 25%;
  height: 2px;
  background: var(--border);
  display: none;
}

@media (min-width: 600px) {
  .steps::before {
    display: block;
  }
}

/* TESTIMONIALS */
#testimonials {
  padding: 80px 24px;
  border-top: 1px solid var(--border);
}

.test-inner {
  max-width: 1000px;
  margin: 0 auto;
}

.test-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 18px;
  margin-top: 48px;
}

@media (min-width: 600px) {
  .test-grid {
    grid-template-columns: repeat(3, 1fr);
  }
}

.test-card {
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: 16px;
  padding: 24px;
  position: relative;
}

.test-quote {
  font-size: 13.5px;
  color: #2a5062;
  line-height: 1.75;
  margin-bottom: 18px;
  font-style: italic;
}

.test-author {
  display: flex;
  align-items: center;
  gap: 10px;
}

.test-av {
  width: 36px;
  height: 36px;
  border-radius: 50%;
  background: var(--grad);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 12px;
  font-weight: 800;
  color: #fff;
  flex-shrink: 0;
}

.test-name {
  font-size: 13px;
  font-weight: 700;
  color: var(--primary);
}

.test-handle {
  font-size: 11px;
  color: var(--ts);
}

.test-stars {
  display: flex;
  gap: 2px;
  margin-bottom: 14px;
}

.star {
  color: #f59e0b;
  font-size: 13px;
}

/* FAQ */
#faq {
  padding: 64px 24px 80px;
  background: var(--surface);
  border-top: 1px solid var(--border);
}

.faq-inner {
  max-width: 700px;
  margin: 0 auto;
}

.faq-item {
  border: 1px solid var(--border);
  border-radius: 12px;
  background: #fff;
  margin-bottom: 10px;
  overflow: hidden;
}

.faq-q {
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
  padding: 17px 20px;
  background: none;
  border: none;
  font-family: inherit;
  font-size: 14px;
  font-weight: 600;
  color: var(--tp);
  cursor: pointer;
  text-align: left;
}

.faq-q:hover {
  color: var(--teal);
}

.faq-icon {
  width: 22px;
  height: 22px;
  border-radius: 50%;
  background: var(--surface);
  border: 1px solid var(--border);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  transition: 0.25s;
}

.faq-item.open .faq-icon {
  background: var(--teal);
  border-color: var(--teal);
  transform: rotate(45deg);
  color: #fff;
}

.faq-a {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.3s ease;
}

.faq-item.open .faq-a {
  max-height: 200px;
}

.faq-a-inner {
  padding: 0 20px 16px;
  font-size: 13.5px;
  color: var(--ts);
  line-height: 1.7;
  border-top: 1px solid var(--border);
}

.cta-dark {
  background: var(--primary) !important;
}

#cta h2 span {
  background: var(--grad);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

/* ═══ CREATOR LISTING SECTION ═══ */
#list-profile {
  padding: 100px 0;
  background: #fff;
  position: relative;
  overflow: hidden;
}

#list-profile::before {
  content: "";
  position: absolute;
  top: -120px;
  right: -180px;
  width: 600px;
  height: 600px;
  border-radius: 50%;
  background: radial-gradient(
    circle,
    rgba(138, 216, 163, 0.12) 0%,
    transparent 65%
  );
  pointer-events: none;
}

#list-profile::after {
  content: "";
  position: absolute;
  bottom: -80px;
  left: -100px;
  width: 400px;
  height: 400px;
  border-radius: 50%;
  background: radial-gradient(
    circle,
    rgba(52, 174, 147, 0.08) 0%,
    transparent 65%
  );
  pointer-events: none;
}

.clf-inner {
  max-width: 1120px;
  margin: 0 auto;
  padding: 0 32px;
  position: relative;
}

.clf-grid {
  display: grid;
  grid-template-columns: 1fr 1.6fr;
  gap: 64px;
  align-items: start;
}

@media (max-width: 900px) {
  .clf-grid {
    grid-template-columns: 1fr;
    gap: 40px;
  }
}

/* Left panel */
.clf-info {
}

.clf-chip {
  display: inline-flex;
  align-items: center;
  gap: 7px;
  background: #ecf7f3;
  border: 1px solid #d5ebe5;
  color: #34ae93;
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.07em;
  text-transform: uppercase;
  padding: 5px 14px;
  border-radius: 100px;
  margin-bottom: 22px;
}

.clf-chip::before {
  content: "";
  width: 6px;
  height: 6px;
  background: #34ae93;
  border-radius: 50%;
  animation: cpulse 2s ease-in-out infinite;
}

@keyframes cpulse {
  0%,
  100% {
    transform: scale(1);
  }

  50% {
    transform: scale(1.6);
    opacity: 0.4;
  }
}

.clf-info h2 {
  font-family: "Sora", sans-serif;
  font-size: clamp(28px, 3.5vw, 40px);
  font-weight: 800;
  color: #043e54;
  letter-spacing: -0.03em;
  line-height: 1.12;
  margin-bottom: 16px;
}

.clf-info p {
  font-size: 16px;
  color: #4a7a84;
  line-height: 1.75;
  margin-bottom: 32px;
}

.clf-perks {
  display: flex;
  flex-direction: column;
  gap: 14px;
  margin-bottom: 36px;
}

.clf-perk {
  display: flex;
  align-items: flex-start;
  gap: 12px;
}

.clf-perk-ico {
  width: 36px;
  height: 36px;
  border-radius: 10px;
  background: linear-gradient(135deg, #e8f6f0, #d5ebe5);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  font-size: 16px;
}

.clf-perk-text {
}

.clf-perk-title {
  font-size: 14px;
  font-weight: 700;
  color: #043e54;
  margin-bottom: 2px;
}

.clf-perk-sub {
  font-size: 13px;
  color: #4a7a84;
  line-height: 1.5;
}

.clf-platforms {
  display: flex;
  gap: 8px;
  flex-wrap: wrap;
}

.clf-plat {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  background: #f2f9f7;
  border: 1px solid #d5ebe5;
  border-radius: 8px;
  padding: 7px 12px;
  font-size: 12px;
  font-weight: 600;
  color: #4a7a84;
}

/* Right: Form card */
.clf-card {
  background: #fff;
  border: 1.5px solid #d5ebe5;
  border-radius: 24px;
  padding: 36px;
  box-shadow:
    0 24px 80px rgba(4, 62, 84, 0.08),
    0 4px 16px rgba(4, 62, 84, 0.04);
}

.clf-card-head {
  margin-bottom: 28px;
}

.clf-card-head h3 {
  font-family: "Sora", sans-serif;
  font-size: 20px;
  font-weight: 800;
  color: #043e54;
  margin-bottom: 6px;
}

.clf-card-head p {
  font-size: 13px;
  color: #4a7a84;
}

.clf-steps {
  display: flex;
  gap: 0;
  margin-bottom: 28px;
  border-bottom: 2px solid #f2f9f7;
}

.clf-step-tab {
  font-size: 12px;
  font-weight: 700;
  color: #4a7a84;
  padding: 8px 16px;
  cursor: pointer;
  border-bottom: 2px solid transparent;
  margin-bottom: -2px;
  transition: all 0.15s;
  white-space: nowrap;
}

.clf-step-tab.active {
  color: #34ae93;
  border-bottom-color: #34ae93;
}

/* Field styles */
.clf-section {
  display: none;
}

.clf-section.active {
  display: block;
}

.clf-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 14px;
}

@media (max-width: 500px) {
  .clf-row {
    grid-template-columns: 1fr;
  }
}

.clf-field {
  margin-bottom: 16px;
}

.clf-field label {
  display: block;
  font-size: 12px;
  font-weight: 700;
  color: #043e54;
  margin-bottom: 5px;
  text-transform: uppercase;
  letter-spacing: 0.04em;
}

.clf-field .clf-hint {
  font-size: 11px;
  color: #4a7a84;
  margin-bottom: 5px;
}

.clf-inp {
  width: 100%;
  padding: 10px 13px;
  border: 1.5px solid #d5ebe5;
  border-radius: 10px;
  font-size: 14px;
  color: #043e54;
  background: #fff;
  outline: none;
  transition:
    border-color 0.15s,
    box-shadow 0.15s;
  font-family: inherit;
  box-sizing: border-box;
}

.clf-inp:focus {
  border-color: #34ae93;
  box-shadow: 0 0 0 3px rgba(52, 174, 147, 0.1);
}

.clf-inp::placeholder {
  color: #9ab5bc;
}

.clf-inp.error {
  border-color: #ef4444;
  box-shadow: 0 0 0 3px rgba(239, 68, 68, 0.08);
}

.clf-sel {
  appearance: none;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 12 12'%3E%3Cpath d='M2 4l4 4 4-4' stroke='%234A7A84' stroke-width='1.5' fill='none' stroke-linecap='round'/%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-position: right 12px center;
  padding-right: 36px;
  cursor: pointer;
  background-size: 20px;
}

.clf-soc-wrap {
  position: relative;
}

.clf-soc-ico {
  position: absolute;
  left: 11px;
  top: 50%;
  transform: translateY(-50%);
  font-size: 14px;
  pointer-events: none;
  line-height: 1;
}

.clf-soc-wrap .clf-inp {
  padding-left: 34px;
}

.clf-textarea {
  min-height: 80px;
  resize: vertical;
}

.clf-err {
  display: none;
  font-size: 11px;
  color: #ef4444;
  margin-top: 4px;
  font-weight: 500;
}

.clf-err.show {
  display: block;
}

.clf-divider {
  border: none;
  border-top: 1px solid #f2f9f7;
  margin: 20px 0;
}

.clf-section-lbl {
  font-size: 10px;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  color: #4a7a84;
  margin-bottom: 12px;
  display: block;
}

.clf-socials-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 12px;
}

@media (max-width: 500px) {
  .clf-socials-grid {
    grid-template-columns: 1fr;
  }
}

.clf-check-row {
  display: flex;
  align-items: flex-start;
  gap: 10px;
  margin-bottom: 8px;
}

.clf-check-row input[type="checkbox"] {
  width: 15px;
  height: 15px;
  accent-color: #34ae93;
  flex-shrink: 0;
  margin-top: 2px;
  cursor: pointer;
}

.clf-check-row label {
  font-size: 12px;
  color: #4a7a84;
  line-height: 1.5;
  cursor: pointer;
}

.clf-check-row label a {
  color: #34ae93;
  text-decoration: none;
}

.clf-check-row label a:hover {
  text-decoration: underline;
}

.clf- .clf-btn-next {
  flex: 1;
  padding: 12px 20px;
  background: linear-gradient(140deg, #7ed5a0, #25967a);
  color: #fff;
  border: none;
  border-radius: 10px;
  font-size: 14px;
  font-weight: 700;
  font-family: "Sora", sans-serif;
  cursor: pointer;
  transition:
    transform 0.18s,
    box-shadow 0.18s;
}

.clf-btn-next:hover {
  transform: translateY(-2px);
  box-shadow: 0 8px 24px rgba(52, 174, 147, 0.35);
}

.clf-btn-back {
  padding: 12px 20px;
  background: #f2f9f7;
  border: 1.5px solid #d5ebe5;
  border-radius: 10px;
  font-size: 14px;
  font-weight: 600;
  color: #4a7a84;
  cursor: pointer;
  transition: all 0.15s;
  font-family: inherit;
}

.clf-btn-back:hover {
  background: #d5ebe5;
  color: #043e54;
}

.clf-progress {
  display: flex;
  gap: 6px;
  align-items: center;
}

.clf-prog-dot {
  width: 7px;
  height: 7px;
  border-radius: 50%;
  background: #d5ebe5;
  transition: all 0.2s;
}

.clf-prog-dot.active {
  background: #34ae93;
  width: 20px;
  border-radius: 4px;
}

/* Success */
.clf-success {
  display: none;
  text-align: center;
  padding: 32px 16px;
}

.clf-success-ring {
  width: 80px;
  height: 80px;
  border-radius: 50%;
  background: linear-gradient(135deg, #8ad8a3, #34ae93);
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 20px;
  box-shadow: 0 12px 36px rgba(52, 174, 147, 0.35);
}

.clf-success h3 {
  font-family: "Sora", sans-serif;
  font-size: 22px;
  font-weight: 800;
  color: #043e54;
  margin-bottom: 10px;
}

.clf-success p {
  font-size: 14px;
  color: #4a7a84;
  line-height: 1.7;
  max-width: 360px;
  margin: 0 auto;
}

.clf-btn-next {
  margin-top: 1.5rem;
}

/* FAQ PAGE */
.faq-hero {
  padding: calc(var(--nh) + 64px) 0 52px;
  background: linear-gradient(160deg, #e6f5ee 0%, #f5fcf9 45%, #fff 75%);
  position: relative;
  overflow: hidden;
}

.faq-hero::before {
  content: "";
  position: absolute;
  top: -80px;
  right: -120px;
  width: 560px;
  height: 560px;
  border-radius: 50%;
  background: radial-gradient(
    circle,
    rgba(138, 216, 163, 0.18) 0%,
    transparent 65%
  );
  pointer-events: none;
}

.faq-hero-inner {
  max-width: 780px;
  margin: 0 auto;
  padding: 0 32px;
  text-align: center;
}

.faq-hero h1 {
  margin-bottom: 20px;
}

.faq-hero .lead {
  max-width: 580px;
  margin: 0 auto 36px;
}

.faq-search-wrap {
  position: relative;
  max-width: 520px;
  margin: 0 auto;
}

.faq-search {
  width: 100%;
  padding: 14px 52px 14px 20px;
  font-family: "Plus Jakarta Sans", sans-serif;
  font-size: 15px;
  border: 2px solid var(--bdr);
  border-radius: 12px;
  outline: none;
  transition:
    border-color 0.18s,
    box-shadow 0.18s;
  background: #fff;
  color: var(--ink);
}

.faq-search:focus {
  border-color: var(--teal);
  box-shadow: 0 0 0 4px rgba(52, 174, 147, 0.1);
}

.faq-search-icon {
  position: absolute;
  right: 16px;
  top: 50%;
  transform: translateY(-50%);
  color: var(--muted);
  pointer-events: none;
}

.faq-stats {
  display: flex;
  justify-content: center;
  gap: 36px;
  margin-top: 40px;
  flex-wrap: wrap;
}

.faq-stat {
  text-align: center;
}

.faq-stat-num {
  font-family: "Sora", sans-serif;
  font-size: 26px;
  font-weight: 800;
  color: var(--ink);
  line-height: 1;
}

.faq-stat-lbl {
  font-size: 12px;
  color: var(--muted);
  font-weight: 500;
  margin-top: 4px;
}

.faq-cats {
  background: #fff;
  border-bottom: 1px solid var(--bdr);
  position: sticky;
  top: 64px;
  z-index: 100;
  overflow-x: auto;
  scrollbar-width: none;
}

.faq-cats::-webkit-scrollbar {
  display: none;
}

.faq-cats-inner {
  max-width: 1200px;
  margin: 0 auto;
  padding: 12px 32px;
  display: flex;
  gap: 4px;
}

.faq-cat-btn {
  font-family: "Plus Jakarta Sans", sans-serif;
  font-size: 13px;
  font-weight: 600;
  color: var(--muted);
  background: none;
  border: 1px solid transparent;
  padding: 7px 16px;
  border-radius: 8px;
  cursor: pointer;
  white-space: nowrap;
  transition: 0.15s;
}

.faq-cat-btn:hover {
  color: var(--ink);
  background: var(--tint);
}

.faq-cat-btn.active {
  color: var(--teal);
  background: var(--tint);
  border-color: var(--bdr);
}

.faq-body-sgnl {
  max-width: 860px;
  margin: 0 auto;
  padding: 64px 32px 80px;
}

.faq-section {
  margin-bottom: 64px;
}

.faq-section-title {
  display: flex;
  align-items: center;
  gap: 12px;
  margin-bottom: 28px;
  padding-bottom: 16px;
  border-bottom: 2px solid var(--bdr);
}

.faq-section-icon {
  width: 40px;
  height: 40px;
  border-radius: 10px;
  background: var(--tint);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 18px;
  flex-shrink: 0;
}

.faq-section-title h2 {
  font-size: 22px;
  font-weight: 800;
  letter-spacing: -0.02em;
}

.faq-item {
  border: 1px solid var(--bdr);
  border-radius: 12px;
  margin-bottom: 10px;
  overflow: hidden;
  transition: box-shadow 0.18s;
}

.faq-item:hover {
  box-shadow: 0 4px 20px rgba(4, 62, 84, 0.07);
}

.faq-item.open {
  box-shadow: 0 4px 24px rgba(4, 62, 84, 0.1);
}

.faq-q {
  width: 100%;
  background: none;
  border: none;
  padding: 18px 20px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  cursor: pointer;
  text-align: left;
  font-family: "Plus Jakarta Sans", sans-serif;
  font-size: 15px;
  font-weight: 600;
  color: var(--ink);
  transition: background 0.12s;
}

.faq-q:hover {
  background: var(--surf);
}

.faq-item.open .faq-q {
  background: var(--tint);
}

.faq-q-text {
  flex: 1;
  line-height: 1.45;
}

.faq-badges {
  display: flex;
  gap: 6px;
  flex-shrink: 0;
}

.faq-pop {
  font-size: 10px;
  font-weight: 700;
  background: var(--g1);
  color: #fff;
  padding: 2px 8px;
  border-radius: 100px;
  letter-spacing: 0.04em;
  white-space: nowrap;
}

.faq-chevron {
  width: 20px;
  height: 20px;
  border-radius: 6px;
  background: var(--surf);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  transition:
    transform 0.2s,
    background 0.15s;
}

.faq-item.open .faq-chevron {
  transform: rotate(180deg);
  background: var(--teal);
}

.faq-chevron svg {
  width: 12px;
  height: 12px;
  color: var(--muted);
}

.faq-item.open .faq-chevron svg {
  color: #fff;
}

.faq-a {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

.faq-item.open .faq-a {
  max-height: 600px;
}

.faq-a-inner {
  padding: 0 20px 20px;
  font-size: 14.5px;
  color: #2a5262;
  line-height: 1.8;
}

.faq-a-inner p {
  margin-bottom: 10px;
}

.faq-a-inner p:last-child {
  margin-bottom: 0;
}

.faq-a-inner a {
  color: var(--teal);
  text-decoration: underline;
  text-underline-offset: 3px;
}

.faq-a-inner ul {
  padding-left: 18px;
  display: flex;
  flex-direction: column;
  gap: 6px;
  margin-top: 8px;
}

.faq-a-inner li::marker {
  color: var(--teal);
}

.faq-empty {
  text-align: center;
  padding: 64px 20px;
  display: none;
}

.faq-empty.show {
  display: block;
}

.faq-empty-icon {
  font-size: 48px;
  margin-bottom: 16px;
}

.faq-empty h3 {
  font-family: "Sora", sans-serif;
  font-size: 20px;
  font-weight: 700;
  margin-bottom: 8px;
}

.faq-empty p {
  color: var(--muted);
  font-size: 15px;
}

.faq-contact {
  background: var(--surf);
  border-top: 1px solid var(--bdr);
  padding: 72px 32px;
  text-align: center;
}

.faq-contact-inner {
  max-width: 900px;
  margin: 0 auto;
}

.faq-contact h2 {
  margin-bottom: 14px;
}

.faq-contact .lead {
  margin-bottom: 44px;
}

.faq-contact-cards {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
  text-align: left;
}

@media (max-width: 680px) {
  .faq-contact-cards {
    grid-template-columns: 1fr;
  }
}

.fcc {
  background: #fff;
  border: 1px solid var(--bdr);
  border-radius: 16px;
  padding: 24px;
  transition:
    box-shadow 0.18s,
    transform 0.18s;
}

.fcc:hover {
  box-shadow: 0 8px 32px rgba(4, 62, 84, 0.1);
  transform: translateY(-3px);
}

.fcc-icon {
  width: 44px;
  height: 44px;
  border-radius: 12px;
  background: var(--tint);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 20px;
  margin-bottom: 14px;
}

.fcc h3 {
  font-family: "Sora", sans-serif;
  font-size: 16px;
  font-weight: 700;
  margin-bottom: 6px;
}

.fcc p {
  font-size: 13.5px;
  color: var(--muted);
  line-height: 1.6;
  margin-bottom: 16px;
}

.fcc a {
  font-size: 13px;
  font-weight: 700;
  color: var(--teal);
  text-decoration: none;
  display: inline-flex;
  align-items: center;
  gap: 5px;
}

.fcc a:hover {
  color: var(--ink);
}

.cta-banner {
  background: var(--ink);
  padding: 72px 32px;
  text-align: center;
}

.cta-banner h2 {
  font-family: "Sora", sans-serif;
  color: #fff;
  font-size: clamp(26px, 3.5vw, 42px);
  font-weight: 800;
  margin-bottom: 14px;
}

.cta-banner p {
  color: rgba(255, 255, 255, 0.7);
  font-size: 16px;
  margin-bottom: 36px;
}

.cta-actions {
  display: flex;
  justify-content: center;
  gap: 12px;
  flex-wrap: wrap;
}

@media (max-width: 640px) {
  .faq-hero-inner {
    padding: 0 20px;
  }

  .faq-body-sgnl {
    padding: 40px 20px 60px;
  }

  .faq-cats-inner {
    padding: 12px 20px;
  }
}

.lead {
  font-size: clamp(15px, 1.8vw, 18px);
  color: var(--muted);
  line-height: 1.8;
}

.g-text {
  background: var(--g1);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.btn-g {
  font-family: "Sora", sans-serif;
  font-size: 14px;
  font-weight: 700;
  background: var(--g2);
  color: #fff;
  text-decoration: none;
  padding: 13px 26px;
  border-radius: 10px;
  border: none;
  cursor: pointer;
  transition:
    transform 0.18s,
    box-shadow 0.18s;
  display: inline-flex;
  align-items: center;
  gap: 7px;
  white-space: nowrap;
}

.btn-g:hover {
  transform: translateY(-2px);
  box-shadow: 0 10px 30px rgba(52, 174, 147, 0.38);
}

.btn-gw {
  font-family: "Sora", sans-serif;
  font-size: 14px;
  font-weight: 700;
  background: var(--g2);
  color: #fff;
  text-decoration: none;
  padding: 13px 26px;
  border-radius: 10px;
  display: inline-flex;
  align-items: center;
  gap: 7px;
  transition:
    transform 0.18s,
    box-shadow 0.18s;
}

.btn-gw:hover {
  transform: translateY(-2px);
  box-shadow: 0 10px 30px rgba(52, 174, 147, 0.5);
}

.btn-w {
  font-family: "Sora", sans-serif;
  font-size: 14px;
  font-weight: 700;
  background: rgba(255, 255, 255, 0.1);
  border: 2px solid rgba(255, 255, 255, 0.25);
  color: #fff;
  text-decoration: none;
  padding: 12px 26px;
  border-radius: 10px;
  display: inline-flex;
  align-items: center;
  gap: 7px;
  transition: 0.18s;
}

.btn-w:hover {
  background: rgba(255, 255, 255, 0.18);
}

.sr {
  opacity: 0;
  transform: translateY(22px);
  transition:
    opacity 0.55s cubic-bezier(0.4, 0, 0.2, 1),
    transform 0.55s cubic-bezier(0.4, 0, 0.2, 1);
}

.sr.on {
  opacity: 1;
  transform: translateY(0);
}

.sr.d1 {
  transition-delay: 0.08s;
}

.sr.d2 {
  transition-delay: 0.16s;
}

.sr.d3 {
  transition-delay: 0.24s;
}

.chip {
  display: inline-flex;
  align-items: center;
  gap: 7px;
  background: var(--tint);
  border: 1px solid var(--bdr);
  color: var(--teal);
  font-family: "Sora", sans-serif;
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.07em;
  text-transform: uppercase;
  padding: 5px 14px;
  border-radius: 100px;
  margin-bottom: 22px;
}

.chip::before {
  content: "";
  width: 6px;
  height: 6px;
  background: var(--teal);
  border-radius: 50%;
  flex-shrink: 0;
}

.deve-hero {
  background: var(--bg2);
  padding: 88px 24px 0;
  position: relative;
  overflow: hidden;
}

/* animated grid lines */
.deve-hero::before {
  content: "";
  position: absolute;
  inset: 0;
  background-image:
    linear-gradient(rgba(52, 174, 147, 0.06) 1px, transparent 1px),
    linear-gradient(90deg, rgba(52, 174, 147, 0.06) 1px, transparent 1px);
  background-size: 60px 60px;
  pointer-events: none;
}

/* glow orbs */
.hero-glow {
  position: absolute;
  border-radius: 50%;
  pointer-events: none;
}

.hg1 {
  width: 500px;
  height: 500px;
  background: radial-gradient(
    circle,
    rgba(52, 174, 147, 0.12) 0%,
    transparent 70%
  );
  top: -200px;
  right: -100px;
}

.hg2 {
  width: 400px;
  height: 400px;
  background: radial-gradient(
    circle,
    rgba(138, 216, 163, 0.07) 0%,
    transparent 70%
  );
  bottom: -150px;
  left: -100px;
}

.hero-inner-dev {
  max-width: 1100px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1fr;
  gap: 48px;
  align-items: end;
}

@media (min-width: 860px) {
  .hero-inner-dev {
    grid-template-columns: 1fr 1fr;
  }
}

.hero-text {
  padding-bottom: 40px;
}

.hero-eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 7px;
  font-family: "JetBrains Mono", monospace;
  font-size: 11px;
  font-weight: 500;
  color: var(--teal);
  letter-spacing: 0.08em;
  text-transform: uppercase;
  margin-bottom: 22px;
}

.hero-eyebrow::before {
  content: "//";
  opacity: 0.5;
}

.hero-eyebrow-dot {
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: var(--teal);
  animation: blink 2s infinite;
}

@keyframes blink {
  0%,
  100% {
    opacity: 1;
  }

  50% {
    opacity: 0.3;
  }
}

h1.hero-title {
  font-family: "DM Serif Display", serif;
  font-size: clamp(34px, 5vw, 58px);
  font-weight: 400;
  color: #fff;
  line-height: 1.06;
  letter-spacing: -0.025em;
  margin-bottom: 20px;
}

h1.hero-title span {
  background: var(--grad);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.hero-sub-case-std {
  font-size: 16px;
  color: rgba(255, 255, 255, 0.6);
  line-height: 1.8;
  max-width: 480px;
  /* margin-bottom: 32px; */
}

.hero-actions {
  display: flex;
  gap: 12px;
  flex-wrap: wrap;
  margin-bottom: 36px;
}

.btn-primary-lg {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: var(--grad);
  color: #fff;
  font-size: 15px;
  font-weight: 700;
  padding: 13px 26px;
  border-radius: 10px;
  text-decoration: none;
  transition: 0.15s;
  border: none;
  cursor: pointer;
  font-family: inherit;
}

.btn-primary-lg:hover {
  transform: scale(1.02);
  box-shadow: 0 6px 24px rgba(52, 174, 147, 0.45);
}

.btn-outline-dark {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: transparent;
  color: rgba(255, 255, 255, 0.8);
  font-size: 15px;
  font-weight: 600;
  padding: 12px 24px;
  border-radius: 10px;
  text-decoration: none;
  transition: 0.15s;
  border: 1.5px solid rgba(255, 255, 255, 0.15);
}

.btn-outline-dark:hover {
  border-color: rgba(52, 174, 147, 0.5);
  color: #fff;
  background: rgba(52, 174, 147, 0.07);
}

.hero-stats {
  display: flex;
  gap: 28px;
  flex-wrap: wrap;
}

.hs-item {
  display: flex;
  flex-direction: column;
  gap: 3px;
}

.hs-num {
  font-family: "DM Serif Display", serif;
  font-size: 26px;
  color: #fff;
  line-height: 1;
}

.hs-label {
  font-size: 11px;
  color: rgba(255, 255, 255, 0.4);
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.06em;
}

/* terminal mockup */
.terminal {
  background: var(--code-bg);
  border: 1px solid var(--dark-border);
  border-radius: 14px;
  overflow: hidden;
  box-shadow: 0 24px 80px rgba(0, 0, 0, 0.5);
  margin-bottom: -1px;
  /* flush to section below */
  position: relative;
}

.term-bar {
  display: flex;
  align-items: center;
  gap: 7px;
  padding: 12px 16px;
  background: rgba(255, 255, 255, 0.04);
  border-bottom: 1px solid var(--dark-border);
}

.term-dot {
  width: 12px;
  height: 12px;
  border-radius: 50%;
}

.td1 {
  background: #ff5f57;
}

.td2 {
  background: #ffbd2e;
}

.td3 {
  background: #28c940;
}

.term-title {
  font-family: "JetBrains Mono", monospace;
  font-size: 11px;
  color: rgba(255, 255, 255, 0.3);
  margin-left: auto;
  margin-right: auto;
}

.term-body {
  padding: 20px 22px;
  font-family: "JetBrains Mono", monospace;
  font-size: 13px;
  line-height: 1.8;
}

.t-comment {
  color: rgba(255, 255, 255, 0.3);
}

.t-key {
  color: #7dd3fc;
}

.t-str {
  color: #86efac;
}

.t-num {
  color: #fbbf24;
}

.t-op {
  color: rgba(255, 255, 255, 0.5);
}

.t-method {
  color: var(--mint);
}

.t-url {
  color: rgba(255, 255, 255, 0.75);
}

.t-resp {
  color: #a78bfa;
}

.t-prompt {
  color: var(--teal);
}

.term-cursor {
  display: inline-block;
  width: 8px;
  height: 14px;
  background: var(--teal);
  vertical-align: middle;
  animation: cur 0.9s step-end infinite;
}

@keyframes cur {
  0%,
  100% {
    opacity: 1;
  }

  50% {
    opacity: 0;
  }
}

/* ── BASE URLS strip ── */
.base-strip {
  background: var(--dark2);
  border-bottom: 1px solid var(--dark-border);
  padding: 16px 24px;
}

.base-inner {
  max-width: 1100px;
  margin: 0 auto;
  display: flex;
  align-items: center;
  gap: 24px;
  flex-wrap: wrap;
}

.base-label {
  font-size: 11px;
  font-weight: 700;
  color: rgba(255, 255, 255, 0.3);
  text-transform: uppercase;
  letter-spacing: 0.07em;
}

.base-url {
  font-family: "JetBrains Mono", monospace;
  font-size: 13px;
  color: var(--mint);
  background: rgba(52, 174, 147, 0.08);
  border: 1px solid rgba(52, 174, 147, 0.2);
  padding: 5px 14px;
  border-radius: 6px;
}

.base-version {
  font-size: 11px;
  font-weight: 700;
  color: rgba(255, 255, 255, 0.3);
  background: rgba(255, 255, 255, 0.06);
  padding: 4px 10px;
  border-radius: 100px;
}

/* ── CAPABILITIES ── */
#capabilities {
  padding: 80px 24px;
  background: #fff;
}

.cap-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 16px;
}

@media (min-width: 600px) {
  .cap-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (min-width: 900px) {
  .cap-grid {
    grid-template-columns: repeat(3, 1fr);
  }
}

.cap-card {
  border: 1.5px solid var(--border);
  border-radius: 16px;
  padding: 26px;
  background: #fff;
  box-shadow: var(--s-sm);
  transition: 0.2s;
  position: relative;
  overflow: hidden;
}

.cap-card::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 3px;
  background: var(--grad);
  opacity: 0;
  transition: 0.2s;
}

.cap-card:hover {
  transform: translateY(-3px);
  box-shadow: var(--s-md);
  border-color: rgba(52, 174, 147, 0.25);
}

.cap-card:hover::before {
  opacity: 1;
}

.cap-icon {
  width: 44px;
  height: 44px;
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 16px;
  font-size: 18px;
}

.cap-title {
  font-size: 15px;
  font-weight: 800;
  color: var(--primary);
  margin-bottom: 7px;
}

.cap-text {
  font-size: 13.5px;
  color: var(--ts);
  line-height: 1.7;
  margin-bottom: 14px;
}

.cap-endpoint {
  font-family: "JetBrains Mono", monospace;
  font-size: 11px;
  color: var(--teal);
  background: var(--tint);
  padding: 4px 10px;
  border-radius: 5px;
  display: inline-block;
}

/* ── SDK CARDS ── */
#sdks {
  padding: 80px 24px;
  background: var(--surface);
  border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
}

.sdk-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 14px;
}

@media (min-width: 600px) {
  .sdk-grid {
    grid-template-columns: repeat(4, 1fr);
  }
}

.sdk-card {
  background: #fff;
  border: 1.5px solid var(--border);
  border-radius: 14px;
  padding: 22px 18px;
  text-align: center;
  text-decoration: none;
  box-shadow: var(--s-sm);
  transition: 0.2s;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 10px;
}

.sdk-card:hover {
  transform: translateY(-3px);
  box-shadow: var(--s-md);
  border-color: rgba(52, 174, 147, 0.3);
}

.sdk-logo {
  width: 48px;
  height: 48px;
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 26px;
}

.sdk-lang {
  font-size: 14px;
  font-weight: 800;
  color: var(--primary);
}

.sdk-install {
  font-family: "JetBrains Mono", monospace;
  font-size: 11px;
  color: var(--ts);
  background: var(--surface);
  padding: 4px 10px;
  border-radius: 5px;
  width: 100%;
  text-align: center;
}

.sdk-status {
  font-size: 10px;
  font-weight: 700;
  padding: 2px 8px;
  border-radius: 100px;
}

.s-stable {
  background: #d1fae5;
  color: #065f46;
}

.s-beta {
  background: #fef3c7;
  color: #92400e;
}

.s-soon {
  background: var(--surface);
  color: var(--ts);
  border: 1px solid var(--border);
}

/* ── QUICKSTART ── */
#quickstart {
  padding: 80px 24px;
  background: var(--bg2);
}

.qs-inner {
  max-width: 1100px;
  margin: 0 auto;
}

.qs-label {
  font-size: 11px;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  color: var(--teal);
  margin-bottom: 12px;
}

.qs-title {
  font-family: "DM Serif Display", serif;
  font-size: clamp(26px, 3.5vw, 38px);
  font-weight: 400;
  color: #fff;
  line-height: 1.2;
  margin-bottom: 14px;
}

.qs-sub {
  font-size: 15px;
  color: rgba(255, 255, 255, 0.6);
  max-width: 520px;
  margin-bottom: 52px;
  line-height: 1.75;
}

.steps-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 16px;
}

@media (min-width: 860px) {
  .steps-grid {
    grid-template-columns: 1fr 1fr;
  }
}

.qs-step {
  background: rgba(255, 255, 255, 0.04);
  border: 1px solid var(--dark-border);
  border-radius: 14px;
  padding: 26px;
  transition: 0.2s;
}

.qs-step:hover {
  border-color: var(--dark-border2);
  background: rgba(52, 174, 147, 0.04);
}

.step-num-dev {
  font-family: "JetBrains Mono", monospace;
  font-size: 11px;
  font-weight: 600;
  color: var(--teal);
  letter-spacing: 0.06em;
  margin-bottom: 10px;
}

.step-title {
  font-size: 15px;
  font-weight: 700;
  color: #fff;
  margin-bottom: 8px;
}

.step-desc {
  font-size: 13px;
  color: rgba(255, 255, 255, 0.55);
  line-height: 1.7;
  margin-bottom: 14px;
}

.code-block {
  background: var(--code-bg);
  border: 1px solid rgba(255, 255, 255, 0.07);
  border-radius: 9px;
  padding: 14px 16px;
  font-family: "JetBrains Mono", monospace;
  font-size: 12px;
  line-height: 1.7;
  position: relative;
  overflow-x: auto;
}

.copy-btn {
  position: absolute;
  top: 8px;
  right: 8px;
  background: rgba(255, 255, 255, 0.08);
  border: 1px solid rgba(255, 255, 255, 0.12);
  color: rgba(255, 255, 255, 0.5);
  font-size: 10px;
  font-weight: 700;
  padding: 3px 8px;
  border-radius: 5px;
  cursor: pointer;
  font-family: inherit;
  transition: 0.15s;
}

.copy-btn:hover {
  background: rgba(255, 255, 255, 0.14);
  color: #fff;
}

.copy-btn.copied {
  background: rgba(52, 174, 147, 0.2);
  border-color: rgba(52, 174, 147, 0.3);
  color: var(--teal);
}

/* ── RATE LIMITS TABLE ── */
#limits {
  padding: 80px 24px;
  background: #fff;
}

.limits-table {
  width: 100%;
  border-collapse: collapse;
  font-size: 13.5px;
  margin-top: 0;
}

.limits-table th {
  background: var(--surface);
  color: var(--tp);
  font-weight: 700;
  padding: 12px 16px;
  text-align: left;
  border: 1px solid var(--border);
  font-size: 11px;
  text-transform: uppercase;
  letter-spacing: 0.05em;
}

.limits-table td {
  padding: 12px 16px;
  border: 1px solid var(--border);
  color: #2a5062;
  vertical-align: top;
  line-height: 1.5;
}

.limits-table tr:nth-child(even) td {
  background: var(--surface);
}

.plan-badge {
  display: inline-flex;
  align-items: center;
  font-size: 10px;
  font-weight: 700;
  padding: 2px 8px;
  border-radius: 100px;
}

.pb-free {
  background: #f3f4f6;
  color: #374151;
}

.pb-starter {
  background: #ede9fe;
  color: #5b21b6;
}

.pb-pro {
  background: #d1fae5;
  color: #065f46;
}

.pb-enterprise {
  background: linear-gradient(
    90deg,
    rgba(52, 174, 147, 0.2),
    rgba(138, 216, 163, 0.2)
  );
  color: var(--primary);
}

.method-get {
  background: #d1fae5;
  color: #065f46;
  font-family: "JetBrains Mono", monospace;
  font-size: 10px;
  font-weight: 700;
  padding: 2px 7px;
  border-radius: 4px;
}

.method-post {
  background: #dbeafe;
  color: #1e40af;
  font-family: "JetBrains Mono", monospace;
  font-size: 10px;
  font-weight: 700;
  padding: 2px 7px;
  border-radius: 4px;
}

/* COOKIE BANNER PREVIEW */
.cookie-banner-preview {
  background: var(--primary);
  border-radius: 16px;
  padding: 24px 28px;
  margin-bottom: 36px;
  position: relative;
  overflow: hidden;
}

.cookie-banner-preview::before {
  content: "Preview";
  position: absolute;
  top: 12px;
  right: 16px;
  font-size: 10px;
  font-weight: 700;
  letter-spacing: 0.07em;
  text-transform: uppercase;
  color: rgba(255, 255, 255, 0.35);
}

.cbp-title {
  font-size: 15px;
  font-weight: 700;
  color: #fff;
  margin-bottom: 6px;
}

.cbp-text {
  font-size: 13px;
  color: rgba(255, 255, 255, 0.7);
  line-height: 1.6;
  margin-bottom: 16px;
  max-width: 520px;
}

.cbp-btns {
  display: flex;
  gap: 10px;
  flex-wrap: wrap;
}

.cbp-btn-accept {
  background: var(--grad);
  color: #fff;
  font-size: 13px;
  font-weight: 700;
  padding: 9px 20px;
  border-radius: 8px;
  border: none;
  cursor: pointer;
  font-family: inherit;
  transition: 0.15s;
}

.cbp-btn-accept:hover {
  opacity: 0.9;
}

.cbp-btn-manage {
  background: rgba(255, 255, 255, 0.1);
  color: #fff;
  font-size: 13px;
  font-weight: 600;
  padding: 9px 20px;
  border-radius: 8px;
  border: 1px solid rgba(255, 255, 255, 0.2);
  cursor: pointer;
  font-family: inherit;
  transition: 0.15s;
}

.cbp-btn-manage:hover {
  background: rgba(255, 255, 255, 0.16);
}

.cbp-btn-decline {
  background: none;
  color: rgba(255, 255, 255, 0.5);
  font-size: 12px;
  font-weight: 500;
  padding: 9px 14px;
  border-radius: 8px;
  border: none;
  cursor: pointer;
  font-family: inherit;
  transition: 0.15s;
}

.cbp-btn-decline:hover {
  color: rgba(255, 255, 255, 0.8);
}

/* COOKIE TYPE CARDS */
.cookie-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 14px;
  margin: 20px 0;
}

@media (min-width: 560px) {
  .cookie-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

.cookie-card {
  border: 1px solid var(--border);
  border-radius: 12px;
  padding: 18px;
  background: #fff;
  box-shadow: var(--s-sm);
  position: relative;
  overflow: hidden;
}

.cookie-card::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 3px;
}

.cc-essential::before {
  background: var(--grad);
}

.cc-functional::before {
  background: linear-gradient(90deg, #7ba8e8, #4a7a84);
}

.cc-analytics::before {
  background: linear-gradient(90deg, #f59e0b, #fbbf24);
}

.cc-marketing::before {
  background: linear-gradient(90deg, #b07be8, #7ba8e8);
}

.cc-icon {
  font-size: 22px;
  margin-bottom: 10px;
}

.cc-title {
  font-size: 14px;
  font-weight: 800;
  color: var(--primary);
  margin-bottom: 4px;
  display: flex;
  align-items: center;
  gap: 8px;
}

.cc-badge {
  font-size: 10px;
  font-weight: 700;
  padding: 2px 8px;
  border-radius: 100px;
}

.cc-badge-required {
  background: #d1fae5;
  color: #065f46;
}

.cc-badge-optional {
  background: #fef9c3;
  color: #78350f;
}

.cc-desc {
  font-size: 13px;
  color: var(--ts);
  line-height: 1.6;
  margin-bottom: 12px;
}

.cc-examples {
  font-size: 12px;
  color: var(--ts);
}

.cc-examples strong {
  color: var(--tp);
  font-weight: 600;
}

/* COOKIE TABLE */
.cookie-table {
  width: 100%;
  border-collapse: collapse;
  margin: 18px 0;
  font-size: 13px;
  overflow-x: auto;
  display: block;
}

.cookie-table th {
  background: var(--surface);
  color: var(--tp);
  font-weight: 700;
  padding: 10px 12px;
  text-align: left;
  border: 1px solid var(--border);
  font-size: 11px;
  text-transform: uppercase;
  letter-spacing: 0.04em;
  white-space: nowrap;
}

.cookie-table td {
  padding: 10px 12px;
  border: 1px solid var(--border);
  color: #2a5062;
  vertical-align: top;
  line-height: 1.5;
}

.cookie-table tr:nth-child(even) td {
  background: var(--surface);
}

.badge-session {
  display: inline-block;
  background: #eff6ff;
  color: #1d4ed8;
  font-size: 10px;
  font-weight: 700;
  padding: 2px 7px;
  border-radius: 100px;
}

.badge-persistent {
  display: inline-block;
  background: #f5f3ff;
  color: #6d28d9;
  font-size: 10px;
  font-weight: 700;
  padding: 2px 7px;
  border-radius: 100px;
}

/* TOGGLE SECTION */
.manage-section {
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: 14px;
  padding: 22px;
  margin: 18px 0;
}

.toggle-row {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  gap: 16px;
  padding: 16px 0;
  border-bottom: 1px solid var(--border);
}

.toggle-row:last-child {
  border-bottom: none;
  padding-bottom: 0;
}

.toggle-row:first-child {
  padding-top: 0;
}

.toggle-name {
  font-size: 14px;
  font-weight: 700;
  color: var(--primary);
  margin-bottom: 4px;
}

.toggle-desc {
  font-size: 13px;
  color: var(--ts);
  line-height: 1.55;
  max-width: 400px;
}

.toggle-wrap {
  flex-shrink: 0;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 4px;
}

.toggle {
  position: relative;
  width: 44px;
  height: 24px;
  flex-shrink: 0;
}

.toggle input {
  opacity: 0;
  width: 0;
  height: 0;
}

.toggle-slider {
  position: absolute;
  inset: 0;
  border-radius: 24px;
  cursor: pointer;
  transition: 0.25s;
  background: #cbd5e1;
}

.toggle-slider::before {
  content: "";
  position: absolute;
  width: 18px;
  height: 18px;
  left: 3px;
  bottom: 3px;
  border-radius: 50%;
  background: #fff;
  transition: 0.25s;
  box-shadow: 0 1px 3px rgba(0, 0, 0, 0.15);
}

.toggle input:checked + .toggle-slider {
  background: var(--teal);
}

.toggle input:checked + .toggle-slider::before {
  transform: translateX(20px);
}

.toggle input:disabled + .toggle-slider {
  opacity: 0.5;
  cursor: not-allowed;
}

.toggle-label {
  font-size: 10px;
  color: var(--ts);
  font-weight: 600;
}

.response-badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: #fff;
  border: 1px solid var(--border);
  border-radius: 100px;
  padding: 8px 16px;
  font-size: 13px;
  color: var(--ts);
  font-weight: 500;
}

.response-dot {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: #22c55e;
  flex-shrink: 0;
  animation: pulse 2s infinite;
}

@keyframes pulse {
  0%,
  100% {
    opacity: 1;
  }

  50% {
    opacity: 0.5;
  }
}

/* MAIN LAYOUT */
.main {
  max-width: 1100px;
  margin: 0 auto;
  padding: 64px 24px 96px;
  display: grid;
  grid-template-columns: 1fr;
  gap: 48px;
}

@media (min-width: 900px) {
  .main {
    grid-template-columns: 1fr 380px;
  }
}

/* CONTACT FORM */
.form-card {
  background: #fff;
  border: 1px solid var(--border);
  border-radius: 20px;
  padding: 36px;
  box-shadow: var(--s-md);
}

.form-title {
  font-family: "DM Serif Display", serif;
  font-size: 24px;
  font-weight: 400;
  color: var(--primary);
  margin-bottom: 6px;
}

.form-sub {
  font-size: 14px;
  color: var(--ts);
  margin-bottom: 28px;
  line-height: 1.6;
}

/* Topic selector */
.topic-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 8px;
  margin-bottom: 24px;
}

.topic-btn {
  padding: 10px 12px;
  border: 1.5px solid var(--border);
  border-radius: 10px;
  background: #fff;
  font-size: 13px;
  font-weight: 600;
  color: var(--ts);
  cursor: pointer;
  text-align: left;
  transition: 0.15s;
  display: flex;
  align-items: center;
  gap: 7px;
  font-family: inherit;
}

.topic-btn:hover {
  border-color: var(--teal);
  color: var(--primary);
  background: var(--tint);
}

.topic-btn.active {
  border-color: var(--teal);
  background: var(--tint);
  color: var(--primary);
}

/* Form fields */
.field-row {
  display: grid;
  grid-template-columns: 1fr;
  gap: 16px;
  margin-bottom: 16px;
}

@media (min-width: 480px) {
  .field-row {
    grid-template-columns: 1fr 1fr;
  }
}

.field {
  display: flex;
  flex-direction: column;
  gap: 6px;
  margin-bottom: 16px;
}

.field label {
  font-size: 13px;
  font-weight: 600;
  color: var(--tp);
}

.field label span {
  color: #ef4444;
  margin-left: 2px;
}

.field input,
.field select,
.field textarea {
  padding: 11px 14px;
  border: 1.5px solid var(--border);
  border-radius: 10px;
  font-size: 14px;
  font-family: inherit;
  color: var(--tp);
  outline: none;
  transition: 0.15s;
  background: #fff;
  resize: vertical;
}

.field input:focus,
.field select:focus,
.field textarea:focus {
  border-color: var(--teal);
  box-shadow: 0 0 0 3px rgba(52, 174, 147, 0.1);
}

.field input.error,
.field textarea.error {
  border-color: #ef4444;
}

.field-hint {
  font-size: 11px;
  color: var(--ts);
}

.btn-submit {
  width: 100%;
  padding: 14px;
  background: var(--grad);
  color: #fff;
  font-size: 15px;
  font-weight: 700;
  border: none;
  border-radius: 11px;
  cursor: pointer;
  font-family: inherit;
  transition: 0.15s;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
}

.btn-submit:hover {
  transform: scale(1.01);
  box-shadow: 0 6px 22px rgba(52, 174, 147, 0.4);
}

.btn-submit:disabled {
  opacity: 0.6;
  cursor: not-allowed;
  transform: none;
}

/* Success state */
.success-state {
  display: none;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  text-align: center;
  padding: 40px 20px;
  gap: 16px;
}

.success-icon {
  width: 64px;
  height: 64px;
  border-radius: 50%;
  background: var(--grad);
  display: flex;
  align-items: center;
  justify-content: center;
}

.success-title {
  font-family: "DM Serif Display", serif;
  font-size: 22px;
  color: var(--primary);
}

.success-sub {
  font-size: 14px;
  color: var(--ts);
  line-height: 1.6;
}

/* SIDEBAR */
.contact-sidebar {
  display: flex;
  flex-direction: column;
  gap: 20px;
}

/* Direct contact card */
.direct-card {
  background: var(--primary);
  border-radius: 18px;
  padding: 28px;
  color: #fff;
}

.dc-title {
  font-family: "DM Serif Display", serif;
  font-size: 20px;
  font-weight: 400;
  color: #fff;
  margin-bottom: 6px;
}

.dc-sub {
  font-size: 13px;
  color: rgba(255, 255, 255, 0.7);
  margin-bottom: 22px;
  line-height: 1.6;
}

.dc-links {
  display: flex;
  flex-direction: column;
  gap: 2px;
}

.dc-link {
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 12px;
  border-radius: 10px;
  text-decoration: none;
  transition: 0.15s;
  background: rgba(255, 255, 255, 0.06);
}

.dc-link:hover {
  background: rgba(255, 255, 255, 0.12);
}

.dc-icon {
  width: 36px;
  height: 36px;
  border-radius: 9px;
  background: rgba(255, 255, 255, 0.1);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

.dc-link-text {
  display: flex;
  flex-direction: column;
}

.dc-link-label {
  font-size: 11px;
  color: rgba(255, 255, 255, 0.5);
  font-weight: 600;
  letter-spacing: 0.04em;
  text-transform: uppercase;
}

.dc-link-value {
  font-size: 13px;
  color: #fff;
  font-weight: 600;
}

/* Hours card */
.hours-card {
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: 16px;
  padding: 22px;
}

.hc-title {
  font-size: 13px;
  font-weight: 800;
  color: var(--tp);
  margin-bottom: 14px;
  display: flex;
  align-items: center;
  gap: 8px;
}

.hc-row {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 8px 0;
  border-bottom: 1px solid var(--border);
  font-size: 13px;
}

.hc-row:last-child {
  border-bottom: none;
  padding-bottom: 0;
}

.hc-day {
  color: var(--ts);
  font-weight: 500;
}

.hc-time {
  color: var(--tp);
  font-weight: 600;
}

.hc-status-open {
  color: #22c55e;
  font-weight: 700;
  display: flex;
  align-items: center;
  gap: 4px;
  font-size: 11px;
}

.hc-status-open::before {
  content: "";
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: #22c55e;
}

/* Quick links */
.quick-card {
  background: #fff;
  border: 1px solid var(--border);
  border-radius: 16px;
  padding: 20px;
}

.qc-title {
  font-size: 12px;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: 0.07em;
  color: var(--ts);
  margin-bottom: 12px;
}

.qc-links {
  display: flex;
  flex-direction: column;
  gap: 4px;
}

.qc-link {
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 9px 10px;
  border-radius: 8px;
  text-decoration: none;
  font-size: 13px;
  font-weight: 500;
  color: var(--ts);
  transition: 0.15s;
}

.qc-link:hover {
  background: var(--tint);
  color: var(--primary);
}

.qc-link svg {
  flex-shrink: 0;
  opacity: 0.6;
}

.faq-sub {
  font-size: 15px;
  color: var(--ts);
  text-align: center;
  margin-bottom: 44px;
}

.faq-title {
  font-family: "DM Serif Display", serif;
  font-size: clamp(24px, 3.5vw, 34px);
  font-weight: 400;
  color: var(--primary);
  text-align: center;
  margin-bottom: 10px;
}

/* ════ HERO ════ */
.cmp-hero {
  padding: calc(var(--nh) + 64px) 0 56px;
  background: linear-gradient(160deg, #e4f3ec 0%, #f4fbf8 42%, #fff 72%);
  position: relative;
  overflow: hidden;
  text-align: center;
}

.cmp-hero::before {
  content: "";
  position: absolute;
  top: -80px;
  right: -100px;
  width: 480px;
  height: 480px;
  border-radius: 50%;
  background: radial-gradient(
    circle,
    rgba(138, 216, 163, 0.16) 0%,
    transparent 68%
  );
  pointer-events: none;
}

.cmp-hero-inner {
  max-width: 780px;
  margin: 0 auto;
  padding: 0 32px;
  position: relative;
  z-index: 1;
}

.cmp-hero h1 {
  margin-bottom: 18px;
}

.cmp-hero .lead {
  max-width: 580px;
  margin: 0 auto 36px;
}

.hero-actions {
  display: flex;
  justify-content: center;
  gap: 12px;
  flex-wrap: wrap;
}

/* winner strip */
.winner-strip {
  background: var(--ink);
  padding: 28px 32px;
}

.winner-strip-inner {
  max-width: 1280px;
  margin: 0 auto;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-wrap: wrap;
  gap: 32px;
}

.ws-item {
  text-align: center;
}

.ws-num {
  font-family: "Sora", sans-serif;
  font-size: 26px;
  font-weight: 800;
  color: #fff;
  line-height: 1;
  margin-bottom: 2px;
}

.ws-lbl {
  font-size: 11px;
  color: rgba(255, 255, 255, 0.5);
  font-weight: 600;
  letter-spacing: 0.04em;
  text-transform: uppercase;
}

.ws-div {
  width: 1px;
  height: 36px;
  background: rgba(255, 255, 255, 0.12);
}

@media (max-width: 600px) {
  .ws-div {
    display: none;
  }
}

/* ════ COMPETITOR TABS ════ */
.vs-tabs-wrap {
  background: #fff;
  border-bottom: 1px solid var(--bdr);
  position: sticky;
  top: 64px;
  z-index: 90;
  overflow-x: auto;
  scrollbar-width: none;
}

.vs-tabs-wrap::-webkit-scrollbar {
  display: none;
}

.vs-tabs {
  max-width: 1280px;
  margin: 0 auto;
  padding: 0 32px;
  display: flex;
  gap: 4px;
  padding-top: 12px;
  padding-bottom: 12px;
}

.vs-tab {
  font-family: "Plus Jakarta Sans", sans-serif;
  font-size: 13px;
  font-weight: 700;
  color: var(--muted);
  background: none;
  border: 1px solid transparent;
  padding: 8px 18px;
  border-radius: 8px;
  cursor: pointer;
  white-space: nowrap;
  transition: 0.15s;
  display: flex;
  align-items: center;
  gap: 6px;
}

.vs-tab:hover {
  color: var(--ink);
  background: var(--tint);
}

.vs-tab.active {
  color: var(--teal);
  background: var(--tint);
  border-color: var(--bdr);
}

.vs-tab-dot {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  flex-shrink: 0;
}

/* ════ MAIN COMPARISON TABLE ════ */
.cmp-main {
  padding: 56px 32px 80px;
  background: #fff;
}

.cmp-main-inner {
  max-width: 1280px;
  margin: 0 auto;
}

/* sticky-scrollable table wrapper */
.tbl-scroll {
  overflow-x: auto;
  border-radius: 18px;
  border: 1.5px solid var(--bdr);
  box-shadow: 0 8px 40px rgba(4, 62, 84, 0.08);
}

.cmp-tbl {
  width: 100%;
  border-collapse: collapse;
  font-size: 13.5px;
  min-width: 800px;
}

/* header row */
.cmp-tbl thead tr th {
  padding: 0;
  border-bottom: 2px solid var(--bdr);
  vertical-align: top;
}

.th-feat {
  width: 30%;
  min-width: 200px;
  padding: 20px 24px;
  text-align: left;
}

.th-feat-inner {
  font-family: "Sora", sans-serif;
  font-size: 11px;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  color: var(--muted);
}

.th-brand {
  padding: 16px 14px;
  text-align: center;
  min-width: 120px;
}

.th-brand-box {
  border-radius: 12px;
  padding: 14px 10px 12px;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 5px;
}

.th-brand-box.dreabee {
  background: var(--tint);
  border: 1.5px solid var(--teal);
}

.th-brand-box.rival {
  background: var(--surf);
  border: 1.5px solid var(--bdr);
}

.th-logo {
  width: 36px;
  height: 36px;
  border-radius: 9px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: "Sora", sans-serif;
  font-size: 13px;
  font-weight: 800;
  color: #fff;
  flex-shrink: 0;
}

.th-logo.db-logo {
  background: var(--g1);
}

.th-name {
  font-family: "Sora", sans-serif;
  font-size: 13px;
  font-weight: 800;
  color: var(--ink);
  line-height: 1.2;
}

.th-badge {
  font-size: 10px;
  font-weight: 700;
  background: var(--teal);
  color: #fff;
  padding: 2px 8px;
  border-radius: 100px;
  letter-spacing: 0.03em;
}

/* category separator */
.cmp-tbl .cat-row td {
  background: var(--surf2);
  padding: 10px 24px;
  font-family: "Sora", sans-serif;
  font-size: 10px;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  color: var(--muted);
  border-top: 1px solid var(--bdr);
  border-bottom: 1px solid var(--bdr);
}

/* data rows */
.cmp-tbl tbody td {
  padding: 14px 14px;
  border-bottom: 1px solid var(--bdr);
  vertical-align: middle;
}

.cmp-tbl tbody td.td-feat {
  padding: 14px 24px;
}

.cmp-tbl tbody tr:last-child td {
  border-bottom: none;
}

.cmp-tbl tbody tr:hover td {
  background: #fafcfb;
}

.cmp-tbl tbody tr:hover .td-dreabee {
  background: rgba(236, 247, 243, 0.7);
}

.td-dreabee {
  background: rgba(236, 247, 243, 0.45);
  text-align: center;
  font-weight: 700;
}

.td-rival {
  text-align: center;
  color: var(--muted);
}

.feat-name {
  font-weight: 600;
  color: var(--ink);
  font-size: 13.5px;
  line-height: 1.3;
}

.feat-sub {
  font-size: 11.5px;
  color: var(--muted);
  margin-top: 3px;
  font-weight: 400;
  line-height: 1.4;
}

/* cell values */
.cv-yes {
  color: var(--teal);
}

.cv-yes svg {
  width: 18px;
  height: 18px;
  vertical-align: middle;
}

.cv-no {
  color: #d0d9dc;
}

.cv-no svg {
  width: 18px;
  height: 18px;
  vertical-align: middle;
}

.cv-partial {
  font-size: 11px;
  font-weight: 700;
  background: var(--surf2);
  color: var(--muted);
  padding: 3px 9px;
  border-radius: 100px;
  display: inline-block;
  white-space: nowrap;
}

.cv-text {
  font-size: 12.5px;
  font-weight: 600;
  color: var(--ink);
}

.cv-text-muted {
  font-size: 12px;
  color: var(--muted);
}

.cv-pill {
  font-size: 11px;
  font-weight: 700;
  padding: 3px 9px;
  border-radius: 100px;
  display: inline-block;
  white-space: nowrap;
}

.cv-pill.green {
  background: rgba(52, 174, 147, 0.12);
  color: var(--teal);
}

.cv-pill.grey {
  background: var(--surf2);
  color: var(--muted);
}

.cv-pill.amber {
  background: rgba(234, 179, 8, 0.12);
  color: #92710b;
}

/* score row */
.score-row td {
  background: var(--surf);
  padding: 16px 14px;
}

.score-row .td-feat {
  padding: 16px 24px;
}

.score-row .td-dreabee {
  background: var(--tint);
}

.score-num {
  font-family: "Sora", sans-serif;
  font-size: 22px;
  font-weight: 800;
  color: var(--teal);
  line-height: 1;
}

.score-num.rival-score {
  color: var(--muted);
  font-size: 18px;
}

.score-label {
  font-size: 10px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.06em;
  color: var(--muted);
  margin-top: 2px;
}

/* ════ DEEP DIVE CARDS ════ */
.deep-dive {
  background: var(--surf);
  padding: 72px 32px;
}

.deep-dive-inner {
  max-width: 1280px;
  margin: 0 auto;
}

.deep-dive-head {
  text-align: center;
  margin-bottom: 52px;
}

.dd-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 22px;
}

@media (max-width: 900px) {
  .dd-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (max-width: 540px) {
  .dd-grid {
    grid-template-columns: 1fr;
  }
}

.dd-card {
  background: #fff;
  border: 1.5px solid var(--bdr);
  border-radius: 18px;
  padding: 26px 22px;
}

.dd-card h3 {
  font-size: 15px;
  font-weight: 800;
  margin-bottom: 16px;
  display: flex;
  align-items: center;
  gap: 8px;
}

.dd-rows {
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.dd-row {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 8px;
  padding: 8px 12px;
  border-radius: 8px;
  background: var(--surf);
}

.dd-row-name {
  font-size: 12px;
  font-weight: 700;
  color: var(--ink);
  display: flex;
  align-items: center;
  gap: 6px;
}

.dd-dot {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  flex-shrink: 0;
}

.dd-bar-wrap {
  flex: 1;
  height: 6px;
  background: var(--bdr);
  border-radius: 100px;
  overflow: hidden;
  margin: 0 8px;
}

.dd-bar {
  height: 100%;
  border-radius: 100px;
  transition: width 1.1s cubic-bezier(0.4, 0, 0.2, 1) 0.2s;
}

.dd-bar.db {
  background: var(--g1);
}

.dd-bar.r1 {
  background: #b0ccd6;
}

.dd-bar.r2 {
  background: #c5d8e0;
}

.dd-bar.r3 {
  background: #d6e4ea;
}

.dd-bar.r4 {
  background: #e2ecf0;
}

.dd-val {
  font-size: 11.5px;
  font-weight: 700;
  color: var(--muted);
  white-space: nowrap;
  min-width: 40px;
  text-align: right;
}

.dd-row.winner {
  background: var(--tint);
}

.dd-row.winner .dd-row-name {
  color: var(--teal);
}

.dd-row.winner .dd-val {
  color: var(--teal);
}

/* ════ SWITCH SECTION ════ */
.switch-sec {
  background: var(--ink);
  padding: 80px 32px;
}

.switch-inner {
  max-width: 1100px;
  margin: 0 auto;
}

.switch-head {
  text-align: center;
  margin-bottom: 52px;
}

.switch-head h2 {
  color: #fff;
  margin-bottom: 12px;
}

.switch-head p {
  color: rgba(255, 255, 255, 0.6);
  max-width: 480px;
  margin: 0 auto;
  font-size: 16px;
}

.switch-steps {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
  margin-bottom: 48px;
}

@media (max-width: 680px) {
  .switch-steps {
    grid-template-columns: 1fr;
  }
}

.sw-step {
  background: rgba(255, 255, 255, 0.05);
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 16px;
  padding: 26px 22px;
}

.sw-num {
  width: 34px;
  height: 34px;
  border-radius: 9px;
  background: var(--g1);
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: "Sora", sans-serif;
  font-size: 15px;
  font-weight: 800;
  color: #fff;
  margin-bottom: 14px;
}

.sw-step h3 {
  font-family: "Sora", sans-serif;
  font-size: 16px;
  font-weight: 700;
  color: #fff;
  margin-bottom: 8px;
}

.sw-step p {
  font-size: 13.5px;
  color: rgba(255, 255, 255, 0.55);
  line-height: 1.65;
}

.switch-quotes {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 18px;
}

@media (max-width: 760px) {
  .switch-quotes {
    grid-template-columns: 1fr;
  }
}

.sq {
  background: rgba(255, 255, 255, 0.04);
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: 12px;
  padding: 20px;
}

.sq-text {
  font-size: 13.5px;
  color: rgba(255, 255, 255, 0.75);
  line-height: 1.7;
  margin-bottom: 14px;
  font-style: italic;
}

.sq-author {
  display: flex;
  align-items: center;
  gap: 10px;
}

.sq-av {
  width: 34px;
  height: 34px;
  border-radius: 50%;
  background: var(--g1);
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: "Sora", sans-serif;
  font-size: 12px;
  font-weight: 700;
  color: #fff;
  flex-shrink: 0;
}

.sq-name {
  font-size: 13px;
  font-weight: 700;
  color: #fff;
  line-height: 1.2;
}

.sq-role {
  font-size: 11px;
  color: rgba(255, 255, 255, 0.4);
}

.compare-cta-banner {
  background: #fff;
  border-top: 1px solid var(--bdr);
  padding: 80px 32px;
  text-align: center;
}

.compare-cta-banner h2 {
  margin-bottom: 14px;
}

.compare-cta-banner p {
  color: var(--muted);
  font-size: 16px;
  margin-bottom: 36px;
  max-width: 500px;
  margin-left: auto;
  margin-right: auto;
}

.changelog-hero-sub {
  font-size: 15px;
  color: var(--ts);
  line-height: 1.75;
  max-width: 480px;
}

.hero-right {
  flex-shrink: 0;
}

.subscribe-box {
  background: var(--surface);
  border: 1.5px solid var(--border);
  border-radius: 14px;
  padding: 20px 22px;
  min-width: 280px;
}

.sb-label {
  font-size: 12px;
  font-weight: 700;
  color: var(--tp);
  margin-bottom: 10px;
  display: block;
}

.sb-row {
  display: flex;
  gap: 8px;
}

.sb-row input {
  flex: 1;
  min-width: 0;
  padding: 9px 12px;
  border: 1.5px solid var(--border);
  border-radius: 8px;
  font-size: 13px;
  font-family: inherit;
  color: var(--tp);
  outline: none;
  transition: 0.15s;
  background: #fff;
}

.sb-row input:focus {
  border-color: var(--teal);
  box-shadow: 0 0 0 3px rgba(52, 174, 147, 0.1);
}

.sb-row button {
  background: var(--grad);
  color: #fff;
  font-size: 13px;
  font-weight: 700;
  padding: 9px 16px;
  border-radius: 8px;
  border: none;
  cursor: pointer;
  font-family: inherit;
  transition: 0.15s;
  white-space: nowrap;
}

.sb-row button:hover {
  transform: scale(1.02);
  box-shadow: 0 3px 10px rgba(52, 174, 147, 0.35);
}

.sb-note {
  font-size: 11px;
  color: var(--ts);
  margin-top: 7px;
}

.sub-ok {
  font-size: 13px;
  color: var(--teal);
  font-weight: 700;
  display: none;
  margin-top: 8px;
}

/* ── PAGE BODY ── */
.page-body {
  max-width: 960px;
  margin: 0 auto;
  padding: 48px 24px 96px;
  display: grid;
  grid-template-columns: 1fr;
  gap: 0;
}

@media (min-width: 900px) {
  .page-body {
    grid-template-columns: 1fr 240px;
    gap: 0 48px;
    align-items: start;
  }
}

.changelog-hero-inner {
  max-width: 960px;
  margin: 0 auto;
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
  gap: 32px;
  flex-wrap: wrap;
}

/* Filter bar */
.filter-bar {
  display: flex;
  align-items: center;
  gap: 8px;
  flex-wrap: wrap;
  margin-bottom: 36px;
  padding: 16px 20px;
  background: #fff;
  border: 1.5px solid var(--border);
  border-radius: 14px;
  box-shadow: var(--s-sm);
}

.filter-label {
  font-size: 11px;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: 0.07em;
  color: var(--ts);
  margin-right: 6px;
  white-space: nowrap;
}

.fb {
  font-size: 12px;
  font-weight: 700;
  padding: 6px 13px;
  border-radius: 100px;
  border: 1.5px solid var(--border);
  background: var(--surface);
  color: var(--ts);
  cursor: pointer;
  transition: 0.15s;
  font-family: inherit;
}

.fb:hover {
  border-color: rgba(52, 174, 147, 0.4);
  color: var(--primary);
  background: var(--tint);
}

.fb.active {
  background: var(--primary);
  color: #fff;
  border-color: var(--primary);
}

/* Year heading */
.year-head {
  display: flex;
  align-items: center;
  gap: 16px;
  margin-bottom: 20px;
  margin-top: 36px;
}

.year-head:first-of-type {
  margin-top: 0;
}

.yh-num {
  font-family: "DM Serif Display", serif;
  font-size: 30px;
  color: var(--primary);
  font-weight: 400;
  line-height: 1;
}

.yh-line {
  flex: 1;
  height: 1px;
  background: var(--border);
}

/* ── RELEASE CARD ── */
.release-card {
  background: #fff;
  border: 1.5px solid var(--border);
  border-radius: 18px;
  overflow: hidden;
  margin-bottom: 14px;
  box-shadow: var(--s-sm);
  transition: 0.2s;
  scroll-margin-top: 84px;
}

.release-card:hover {
  box-shadow: var(--s-md);
  border-color: rgba(52, 174, 147, 0.22);
}

.release-card.open {
  border-color: rgba(52, 174, 147, 0.3);
}

/* ── CARD HEADER (always visible) ── */
.rc-header {
  display: flex;
  align-items: center;
  gap: 12px;
  flex-wrap: wrap;
  padding: 18px 22px;
  cursor: pointer;
  transition: 0.15s;
  user-select: none;
}

.rc-header:hover {
  background: rgba(52, 174, 147, 0.03);
}

.release-card.open .rc-header {
  border-bottom: 1px solid var(--border);
}

/* Left accent bar */
.release-card.open {
  border-left: 3px solid var(--teal);
}

/* version + tags */
.rc-ver {
  font-family: "JetBrains Mono", monospace;
  font-size: 16px;
  font-weight: 600;
  color: var(--primary);
  letter-spacing: -0.01em;
  flex-shrink: 0;
}

.vtag {
  font-size: 10px;
  font-weight: 800;
  padding: 3px 9px;
  border-radius: 100px;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  flex-shrink: 0;
}

.vt-major {
  background: linear-gradient(
    135deg,
    rgba(52, 174, 147, 0.18),
    rgba(138, 216, 163, 0.1)
  );
  color: var(--primary);
  border: 1px solid rgba(52, 174, 147, 0.28);
}

.vt-minor {
  background: var(--tint);
  color: var(--teal);
  border: 1px solid rgba(52, 174, 147, 0.2);
}

.vt-patch {
  background: #f3f4f6;
  color: #374151;
  border: 1px solid #e5e7eb;
}

.vt-latest {
  background: var(--primary);
  color: #fff;
}

/* summary row — title and date visible when collapsed */
.rc-summary {
  flex: 1;
  min-width: 0;
  display: flex;
  align-items: center;
  gap: 12px;
  flex-wrap: wrap;
}

.rc-title-inline {
  font-size: 14px;
  font-weight: 600;
  color: var(--tp);
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
  flex: 1;
  min-width: 120px;
}

.rc-chips {
  display: flex;
  gap: 5px;
  flex-wrap: wrap;
  flex-shrink: 0;
}

.rc-chip {
  font-size: 10px;
  font-weight: 700;
  padding: 2px 7px;
  border-radius: 4px;
}

.chip-new {
  background: #d1fae5;
  color: #065f46;
}

.chip-fix {
  background: #fce7f3;
  color: #9d174d;
}

.chip-improve {
  background: #dbeafe;
  color: #1e40af;
}

.chip-break {
  background: #fee2e2;
  color: #991b1b;
}

.rc-date {
  font-size: 12px;
  color: var(--ts);
  font-weight: 500;
  white-space: nowrap;
  flex-shrink: 0;
}

.rc-chevron {
  width: 20px;
  height: 20px;
  border-radius: 50%;
  background: var(--surface);
  border: 1px solid var(--border);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  transition: 0.2s;
}

.release-card.open .rc-chevron {
  background: var(--tint);
  border-color: rgba(52, 174, 147, 0.3);
  transform: rotate(180deg);
}

/* ── CARD BODY (expanded) ── */
.rc-body {
  display: none;
  padding: 24px 24px 28px;
}

.release-card.open .rc-body {
  display: block;
}

.rc-full-title {
  font-family: "DM Serif Display", serif;
  font-size: clamp(18px, 2.5vw, 22px);
  font-weight: 400;
  color: var(--primary);
  margin-bottom: 8px;
  line-height: 1.25;
}

.rc-desc {
  font-size: 14px;
  color: var(--ts);
  line-height: 1.78;
  margin-bottom: 22px;
  max-width: 660px;
}

/* Change list */
.changes {
  display: flex;
  flex-direction: column;
  gap: 6px;
  margin-bottom: 20px;
}

.ci {
  display: flex;
  align-items: flex-start;
  gap: 10px;
  padding: 12px 14px;
  border-radius: 10px;
  background: var(--surface);
  border: 1px solid var(--border);
  transition: 0.12s;
}

.ci:hover {
  border-color: rgba(52, 174, 147, 0.22);
  background: var(--tint);
}

.ci-badge {
  font-size: 10px;
  font-weight: 800;
  padding: 3px 8px;
  border-radius: 4px;
  text-transform: uppercase;
  letter-spacing: 0.04em;
  flex-shrink: 0;
  margin-top: 1px;
  white-space: nowrap;
}

.b-new {
  background: #d1fae5;
  color: #065f46;
}

.b-improve {
  background: #dbeafe;
  color: #1e40af;
}

.b-fix {
  background: #fce7f3;
  color: #9d174d;
}

.b-deprecate {
  background: #fef3c7;
  color: #92400e;
}

.b-break {
  background: #fee2e2;
  color: #991b1b;
}

.ci-text {
  font-size: 13.5px;
  color: #2a5062;
  line-height: 1.65;
}

.ci-text strong {
  color: var(--primary);
  font-weight: 700;
}

.ci-text code {
  font-family: "JetBrains Mono", monospace;
  font-size: 11.5px;
  background: #fff;
  border: 1px solid var(--border);
  padding: 1px 5px;
  border-radius: 3px;
  color: var(--primary);
}

/* Footer row */
.rc-foot {
  display: flex;
  align-items: center;
  gap: 16px;
  padding-top: 16px;
  border-top: 1px solid var(--border);
  flex-wrap: wrap;
}

.rcf-date {
  font-size: 12px;
  color: var(--ts);
  font-weight: 500;
  display: flex;
  align-items: center;
  gap: 5px;
}

.rcf-link {
  font-size: 12px;
  font-weight: 700;
  color: var(--teal);
  text-decoration: none;
  display: inline-flex;
  align-items: center;
  gap: 4px;
  transition: 0.12s;
}

.rcf-link:hover {
  color: var(--primary);
}

.rcf-spacer {
  flex: 1;
}

/* ── SIDEBAR ── */
.sidebar {
  position: sticky;
  top: 88px;
}

@media (max-width: 899px) {
  .sidebar {
    margin-top: 48px;
    position: static;
  }
}

.sb-widget {
  background: #fff;
  border: 1.5px solid var(--border);
  border-radius: 16px;
  padding: 20px;
  margin-bottom: 16px;
  box-shadow: var(--s-sm);
}

.sbw-title {
  font-size: 11px;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: 0.07em;
  color: var(--ts);
  margin-bottom: 14px;
}

.sb-ver-list {
  display: flex;
  flex-direction: column;
  gap: 2px;
}

.sbv-item {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 8px 10px;
  border-radius: 9px;
  cursor: pointer;
  transition: 0.14s;
  text-decoration: none;
}

.sbv-item:hover {
  background: var(--tint);
}

.sbv-item.active {
  background: var(--tint);
}

.sbv-left {
  display: flex;
  align-items: center;
  gap: 9px;
}

.sbv-dot {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  flex-shrink: 0;
}

.sbv-ver {
  font-family: "JetBrains Mono", monospace;
  font-size: 13px;
  font-weight: 600;
  color: var(--primary);
}

.sbv-right {
  display: flex;
  align-items: center;
  gap: 6px;
}

.sbv-date {
  font-size: 11px;
  color: var(--ts);
}

.sbv-tag {
  font-size: 9px;
  font-weight: 700;
  padding: 2px 6px;
  border-radius: 4px;
}

/* legend */
.legend-list {
  display: flex;
  flex-direction: column;
  gap: 6px;
}

.leg-row {
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 12px;
  color: var(--ts);
}

/* status widget */
.status-widget {
  background: var(--primary);
  border-radius: 16px;
  padding: 20px;
}

.sw-title {
  font-size: 11px;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: 0.07em;
  color: rgba(255, 255, 255, 0.45);
  margin-bottom: 12px;
}

.sw-status {
  display: flex;
  align-items: center;
  gap: 8px;
  margin-bottom: 10px;
}

.sw-dot {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: #22c55e;
  animation: blink2 2s ease-in-out infinite;
}

@keyframes blink2 {
  0%,
  100% {
    box-shadow: 0 0 0 0 rgba(34, 197, 94, 0.5);
  }

  50% {
    box-shadow: 0 0 0 5px rgba(34, 197, 94, 0);
  }
}

.sw-label {
  font-size: 14px;
  font-weight: 700;
  color: #fff;
}

.sw-sub {
  font-size: 12px;
  color: rgba(255, 255, 255, 0.5);
  margin-bottom: 14px;
}

.sw-link {
  font-size: 12px;
  font-weight: 600;
  color: rgba(52, 174, 147, 0.9);
  text-decoration: none;
}

.sw-link:hover {
  color: var(--mint);
}

.changelog-body {
  background: var(--surface);
}

.changelog-hero {
  background: #fff;
  border-bottom: 1px solid var(--border);
  padding: 64px 24px 52px;
}

.changelog-hero h1 span {
  background: var(--grad);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.case-std-purply {
  background: linear-gradient(
    135deg,
    var(--primary) 0%,
    #0a5c78 55%,
    #1a8a6a 100%
  );
  padding: 64px 24px 0;
  position: relative;
  overflow: hidden;
}

.case-std-purply h1 {
  font-family: "DM Serif Display", serif;
  font-size: clamp(26px, 4vw, 46px);
  font-weight: 400;
  color: #fff;
  line-height: 1.1;
  letter-spacing: -0.022em;
  margin-bottom: 18px;
}

.case-std-purply::after {
  content: "";
  position: absolute;
  width: 400px;
  height: 400px;
  border-radius: 50%;
  background: radial-gradient(
    circle,
    rgba(138, 216, 163, 0.08) 0%,
    transparent 70%
  );
  bottom: -100px;
  left: -80px;
  pointer-events: none;
}

.hero-meta-cst-purp {
  display: flex;
  align-items: center;
  gap: 10px;
  flex-wrap: wrap;
  margin-bottom: 22px;
}

.hm-badge {
  display: inline-flex;
  align-items: center;
  gap: 5px;
  background: rgba(255, 255, 255, 0.1);
  border: 1px solid rgba(255, 255, 255, 0.15);
  color: rgba(255, 255, 255, 0.8);
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  padding: 4px 11px;
  border-radius: 100px;
}

.hm-sep {
  width: 4px;
  height: 4px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.25);
}

.hero-inner-purple {
  max-width: 1100px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1fr;
  gap: 40px;
  position: relative;
  z-index: 1;
}

@media (min-width: 860px) {
  .hero-inner-purple {
    grid-template-columns: 1fr 320px;
    align-items: end;
  }
}

/* Company card (inside hero) */
.company-card {
  background: rgba(255, 255, 255, 0.07);
  border: 1px solid rgba(255, 255, 255, 0.12);
  border-radius: 20px;
  padding: 28px;
  backdrop-filter: blur(8px);
  margin-bottom: -1px;
}

.cc-logo-row {
  display: flex;
  align-items: center;
  gap: 14px;
  margin-bottom: 20px;
  padding-bottom: 20px;
  border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

.cc-logo {
  width: 56px;
  height: 56px;
  border-radius: 16px;
  background: var(--grad);
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: "DM Serif Display", serif;
  font-size: 20px;
  font-weight: 400;
  color: var(--primary);
  flex-shrink: 0;
}

.cc-name {
  font-size: 18px;
  font-weight: 800;
  color: #fff;
  line-height: 1.15;
}

.cc-type {
  font-size: 12px;
  color: rgba(255, 255, 255, 0.5);
  margin-top: 2px;
}

.cc-stats {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 14px;
}

.ccs-label {
  font-size: 10px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.06em;
  color: rgba(255, 255, 255, 0.4);
  margin-bottom: 3px;
}

.ccs-value {
  font-size: 14px;
  font-weight: 700;
  color: rgba(255, 255, 255, 0.9);
}

/* ── RESULTS STRIP ── */
.results-strip {
  background: #fff;
  border-bottom: 2px solid var(--border);
}

.rs-inner {
  max-width: 1100px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  border-left: 1px solid var(--border);
}

@media (min-width: 600px) {
  .rs-inner {
    grid-template-columns: repeat(3, 1fr);
  }
}

.rs-item {
  padding: 28px 24px;
  border-right: 1px solid var(--border);
  text-align: center;
  position: relative;
}

.rs-item::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 3px;
  background: var(--grad);
}

.rs-num {
  font-family: "DM Serif Display", serif;
  font-size: clamp(28px, 4vw, 44px);
  color: var(--primary);
  font-weight: 400;
  line-height: 1;
}

.rs-unit {
  font-size: 16px;
  color: var(--teal);
  font-weight: 700;
}

.rs-label {
  font-size: 12px;
  color: var(--ts);
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  margin-top: 6px;
  line-height: 1.4;
}

.rs-prev {
  font-size: 11px;
  color: var(--ts);
  margin-top: 4px;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 4px;
}

.arrow-up {
  color: var(--teal);
  font-weight: 700;
}

.arrow-down {
  color: #ef4444;
  font-weight: 700;
}

/* ── PAGE LAYOUT ── */
.page-wrap {
  max-width: 1100px;
  margin: 0 auto;
  padding: 56px 24px 96px;
  display: grid;
  grid-template-columns: 1fr;
  gap: 48px;
}

@media (min-width: 1000px) {
  .page-wrap {
    grid-template-columns: 1fr 300px;
    align-items: start;
  }
}

/* ── ARTICLE ── */
article h2 {
  font-family: "DM Serif Display", serif;
  font-size: clamp(22px, 3vw, 28px);
  font-weight: 400;
  color: var(--primary);
  margin-bottom: 14px;
  line-height: 1.2;
  margin-top: 48px;
}

article h2:first-child {
  margin-top: 0;
}

article h3 {
  font-size: 16px;
  font-weight: 700;
  color: var(--primary);
  margin-top: 28px;
  margin-bottom: 10px;
}

article p {
  font-size: 15px;
  color: #2a5062;
  line-height: 1.85;
  margin-bottom: 18px;
}

article p:last-child {
  margin-bottom: 0;
}

/* Pull quote */
.pull-quote {
  border-left: 4px solid var(--teal);
  background: var(--tint);
  border-radius: 0 16px 16px 0;
  padding: 22px 24px;
  margin: 32px 0;
}

.pq-text {
  font-family: "DM Serif Display", serif;
  font-size: clamp(17px, 2.2vw, 21px);
  font-weight: 400;
  color: var(--primary);
  line-height: 1.55;
  font-style: italic;
  margin-bottom: 12px;
}

.pq-attr {
  display: flex;
  align-items: center;
  gap: 9px;
}

.pq-av {
  width: 30px;
  height: 30px;
  border-radius: 50%;
  background: var(--grad);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 10px;
  font-weight: 800;
  color: #fff;
  flex-shrink: 0;
}

.pq-name {
  font-size: 13px;
  font-weight: 700;
  color: var(--primary);
}

.pq-role {
  font-size: 11px;
  color: var(--ts);
}

/* Highlight box */
.highlight-box {
  background: var(--surface);
  border: 1.5px solid var(--border);
  border-radius: 16px;
  padding: 22px 24px;
  margin: 28px 0;
}

.hb-title {
  font-size: 12px;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: 0.07em;
  color: var(--ts);
  margin-bottom: 14px;
  display: flex;
  align-items: center;
  gap: 7px;
}

.hb-list {
  display: flex;
  flex-direction: column;
  gap: 8px;
}

.hb-item {
  display: flex;
  align-items: flex-start;
  gap: 10px;
  font-size: 14px;
  color: #2a5062;
  line-height: 1.6;
}

.hb-dot {
  width: 7px;
  height: 7px;
  border-radius: 50%;
  background: var(--teal);
  flex-shrink: 0;
  margin-top: 7px;
}

/* Before/After table */
.ba-table {
  width: 100%;
  border-collapse: collapse;
  font-size: 14px;
  margin: 24px 0;
  overflow: hidden;
  border-radius: 12px;
  border: 1.5px solid var(--border);
}

.ba-table th {
  padding: 12px 16px;
  text-align: left;
  font-size: 11px;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  color: var(--ts);
  background: var(--surface);
}

.ba-table th.col-before {
  color: #991b1b;
  background: #fff5f5;
}

.ba-table th.col-after {
  color: #065f46;
  background: #f0fdf4;
}

.ba-table td {
  padding: 13px 16px;
  border-top: 1px solid var(--border);
  color: #2a5062;
  line-height: 1.5;
  vertical-align: top;
}

.ba-table tr:nth-child(even) td {
  background: rgba(247, 250, 250, 0.5);
}

.ba-metric {
  font-weight: 700;
  color: var(--primary);
}

.ba-before {
  color: #b91c1c;
  font-weight: 600;
}

.ba-after {
  color: #065f46;
  font-weight: 700;
}

/* Section divider */
.section-divider {
  height: 1px;
  background: var(--border);
  margin: 40px 0;
}

/* ── SIDEBAR ── */
.cs-sidebar {
  position: sticky;
  top: 88px;
}

@media (max-width: 999px) {
  .cs-sidebar {
    position: static;
  }
}

.side-card {
  background: var(--surface);
  border: 1.5px solid var(--border);
  border-radius: 16px;
  padding: 22px;
  margin-bottom: 16px;
  box-shadow: var(--s-sm);
}

.sc-title {
  font-size: 11px;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: 0.07em;
  color: var(--ts);
  margin-bottom: 14px;
}

.sc-stat-row {
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.scsr-item {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 10px 12px;
  background: #fff;
  border: 1px solid var(--border);
  border-radius: 9px;
}

.scsr-label {
  font-size: 12px;
  color: var(--ts);
  font-weight: 500;
}

.scsr-val {
  font-size: 13px;
  font-weight: 800;
  color: var(--primary);
}

.scsr-val.green {
  color: #065f46;
}

.scsr-val.teal {
  color: var(--teal);
}

/* TOC */
.toc-list {
  display: flex;
  flex-direction: column;
  gap: 2px;
}

.toc-link {
  display: block;
  font-size: 13px;
  font-weight: 500;
  color: var(--ts);
  text-decoration: none;
  padding: 7px 10px;
  border-radius: 8px;
  transition: 0.12s;
  border-left: 2px solid transparent;
}

.toc-link:hover {
  color: var(--primary);
  background: var(--tint);
}

.toc-link.active {
  color: var(--primary);
  background: var(--tint);
  border-left-color: var(--teal);
  font-weight: 600;
}

/* Share */
.share-row {
  display: flex;
  gap: 8px;
  flex-wrap: wrap;
}

.share-btn {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  font-size: 12px;
  font-weight: 700;
  padding: 8px 14px;
  border-radius: 8px;
  border: 1.5px solid var(--border);
  background: #fff;
  color: var(--ts);
  cursor: pointer;
  transition: 0.15s;
  font-family: inherit;
  text-decoration: none;
}

.share-btn:hover {
  border-color: rgba(52, 174, 147, 0.4);
  color: var(--primary);
}

/* CTA card */
.cta-card {
  background: var(--primary);
  border-radius: 16px;
  padding: 24px;
  margin-top: 16px;
}

.ctac-title {
  font-family: "DM Serif Display", serif;
  font-size: 20px;
  font-weight: 400;
  color: #fff;
  margin-bottom: 8px;
  line-height: 1.25;
}

.ctac-sub {
  font-size: 13px;
  color: rgba(255, 255, 255, 0.65);
  line-height: 1.65;
  margin-bottom: 18px;
}

.ctac-btns {
  display: flex;
  flex-direction: column;
  gap: 8px;
}

.ctac-primary {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 6px;
  background: var(--grad);
  color: #fff;
  font-size: 13px;
  font-weight: 700;
  padding: 11px 18px;
  border-radius: 9px;
  text-decoration: none;
  transition: 0.15s;
}

.ctac-primary:hover {
  transform: scale(1.02);
  box-shadow: 0 4px 14px rgba(52, 174, 147, 0.4);
}

.ctac-ghost {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 6px;
  background: transparent;
  color: rgba(255, 255, 255, 0.65);
  font-size: 13px;
  font-weight: 600;
  padding: 10px 18px;
  border-radius: 9px;
  text-decoration: none;
  border: 1px solid rgba(255, 255, 255, 0.15);
  transition: 0.15s;
}

.ctac-ghost:hover {
  border-color: rgba(255, 255, 255, 0.3);
  color: #fff;
}

/* ── MORE STORIES ── */
#more {
  background: var(--surface);
  border-top: 1px solid var(--border);
  padding: 64px 24px;
}

.more-inner {
  max-width: 1100px;
  margin: 0 auto;
}

.more-title {
  font-family: "DM Serif Display", serif;
  font-size: 28px;
  color: var(--primary);
  font-weight: 400;
  margin-bottom: 28px;
}

.more-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 16px;
}

@media (min-width: 640px) {
  .more-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (min-width: 900px) {
  .more-grid {
    grid-template-columns: repeat(3, 1fr);
  }
}

.more-card {
  background: #fff;
  border: 1.5px solid var(--border);
  border-radius: 16px;
  padding: 22px;
  text-decoration: none;
  display: block;
  box-shadow: var(--s-sm);
  transition: 0.2s;
}

.more-card:hover {
  transform: translateY(-3px);
  box-shadow: var(--s-md);
  border-color: rgba(52, 174, 147, 0.25);
}

.mc-industry {
  font-size: 10px;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: 0.07em;
  color: var(--ts);
  margin-bottom: 10px;
}

.mc-logo-row {
  display: flex;
  align-items: center;
  gap: 10px;
  margin-bottom: 12px;
}

.mc-logo {
  width: 36px;
  height: 36px;
  border-radius: 10px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 13px;
  font-weight: 900;
  color: #fff;
  flex-shrink: 0;
  font-family: "DM Serif Display", serif;
}

.mc-company {
  font-size: 14px;
  font-weight: 800;
  color: var(--primary);
}

.mc-title {
  font-size: 13.5px;
  font-weight: 600;
  color: var(--tp);
  line-height: 1.45;
  margin-bottom: 12px;
}

.mc-metric {
  display: flex;
  align-items: center;
  gap: 6px;
}

.mc-num {
  font-family: "DM Serif Display", serif;
  font-size: 20px;
  color: var(--teal);
}

.mc-label {
  font-size: 11px;
  color: var(--ts);
  font-weight: 600;
}

/* HERO */
.cst-hero {
  background: var(--primary);
  position: relative;
  overflow: hidden;
  min-height: 520px;
  display: flex;
  align-items: flex-end;
}

.cst-hero::before {
  content: "";
  position: absolute;
  inset: 0;
  background: radial-gradient(
    ellipse 900px 600px at 60% 60%,
    rgba(138, 216, 163, 0.12) 0%,
    transparent 55%
  );
}

/* Decorative number */
.cst-hero::after {
  content: "";
  position: absolute;
  right: -40px;
  top: 50%;
  transform: translateY(-50%);
  font-family: "Lora", serif;
  font-size: 300px;
  font-weight: 700;
  color: rgba(255, 255, 255, 0.03);
  line-height: 1;
  pointer-events: none;
}

.cs-hero {
  padding-top: 68px;
  background: var(--primary);
  position: relative;
  overflow: hidden;
  min-height: 520px;
  display: flex;
  align-items: flex-end;
}

.cs-hero::before {
  content: "";
  position: absolute;
  inset: 0;
  background: radial-gradient(
    ellipse 900px 600px at 60% 60%,
    rgba(138, 216, 163, 0.12) 0%,
    transparent 55%
  );
}

/* Decorative number */
.cs-hero::after {
  content: "";
  position: absolute;
  right: -40px;
  top: 50%;
  transform: translateY(-50%);
  font-family: "Lora", serif;
  font-size: 300px;
  font-weight: 700;
  color: rgba(255, 255, 255, 0.03);
  line-height: 1;
  pointer-events: none;
}

.hero-inner {
  position: relative;
  z-index: 1;
  padding: 80px 0 64px;
  width: 100%;
}

.breadcrumb {
  display: flex;
  align-items: center;
  gap: 6px;
  font-size: 12.5px;
  color: rgba(255, 255, 255, 0.4);
  margin-bottom: 24px;
}

.breadcrumb a {
  color: rgba(255, 255, 255, 0.5);
  transition: color 0.15s;
}

.breadcrumb a:hover {
  color: var(--mint);
}

.breadcrumb span {
  color: rgba(255, 255, 255, 0.25);
}

.industry-tag {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 1.2px;
  text-transform: uppercase;
  color: var(--mint);
  background: rgba(138, 216, 163, 0.15);
  border: 1px solid rgba(138, 216, 163, 0.25);
  padding: 5px 12px;
  border-radius: 50px;
  margin-bottom: 20px;
}

.cst-hero h1 {
  font-family: "Lora", Georgia, serif;
  font-size: clamp(26px, 4vw, 52px);
  font-weight: 700;
  color: #fff;
  line-height: 1.1;
  letter-spacing: -1px;
  max-width: 720px;
  margin-bottom: 24px;
}

.cs-hero h1 {
  font-family: "Lora", Georgia, serif;
  font-size: clamp(26px, 4vw, 52px);
  font-weight: 700;
  color: #fff;
  line-height: 1.1;
  letter-spacing: -1px;
  max-width: 720px;
  margin-bottom: 24px;
}

.cst-hero h1 em {
  font-style: italic;
  color: var(--mint);
}

.hero-meta {
  display: flex;
  align-items: center;
  gap: 20px;
  flex-wrap: wrap;
  margin-bottom: 48px;
}

.hm-item {
  display: flex;
  align-items: center;
  gap: 7px;
  font-size: 13px;
  color: rgba(255, 255, 255, 0.55);
}

.hm-dot {
  width: 4px;
  height: 4px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.2);
}

/* KEY RESULTS BAR */
.results-bar {
  background: rgba(255, 255, 255, 0.07);
  border: 1px solid rgba(255, 255, 255, 0.12);
  border-radius: 0;
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  border-top: 1px solid rgba(255, 255, 255, 0.1);
}

.rb-item {
  padding: 28px 32px;
  border-right: 1px solid rgba(255, 255, 255, 0.1);
  position: relative;
}

.rb-item:last-child {
  border-right: none;
}

.rb-val {
  font-size: clamp(24px, 3vw, 38px);
  font-weight: 800;
  color: #fff;
  letter-spacing: -1.5px;
  background: var(--grad);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  line-height: 1;
}

.rb-label {
  font-size: 12.5px;
  color: rgba(255, 255, 255, 0.5);
  margin-top: 5px;
}

.rb-change {
  font-size: 11px;
  font-weight: 700;
  color: var(--mint);
  margin-top: 3px;
  display: flex;
  align-items: center;
  gap: 3px;
}

.rb-change::before {
  content: "↑";
}

/* LAYOUT */
.article-layout {
  display: grid;
  grid-template-columns: 1fr 300px;
  gap: 64px;
  max-width: 1020px;
  margin: 0 auto;
  padding: 72px 24px 96px;
  align-items: start;
}

/* ARTICLE BODY */
.article-body {
  min-width: 0;
}

.section-intro {
  font-family: "Lora", Georgia, serif;
  font-size: 20px;
  line-height: 1.75;
  color: var(--primary);
  margin-bottom: 40px;
  font-style: italic;
  border-left: 3px solid var(--teal);
  padding-left: 24px;
}

.prose h2 {
  font-family: "Lora", Georgia, serif;
  font-size: 26px;
  font-weight: 700;
  color: var(--primary);
  letter-spacing: -0.5px;
  margin: 48px 0 16px;
  line-height: 1.2;
}

.prose h3 {
  font-size: 17px;
  font-weight: 700;
  color: var(--primary);
  margin: 28px 0 10px;
}

.prose p {
  font-size: 16px;
  line-height: 1.85;
  color: var(--muted);
  margin-bottom: 20px;
}

.prose strong {
  color: var(--primary);
  font-weight: 700;
}

.prose a {
  color: var(--teal);
  font-weight: 600;
}

.prose ul {
  list-style: none;
  margin-bottom: 20px;
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.prose ul li {
  padding-left: 20px;
  position: relative;
  font-size: 16px;
  line-height: 1.75;
  color: var(--muted);
}

.prose ul li::before {
  content: "";
  position: absolute;
  left: 0;
  top: 11px;
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: var(--grad);
}

/* DATA CALLOUT */
.data-callout {
  background: var(--primary);
  border-radius: 18px;
  padding: 32px;
  margin: 36px 0;
  position: relative;
  overflow: hidden;
}

.data-callout::before {
  content: "";
  position: absolute;
  inset: 0;
  background: radial-gradient(
    ellipse 400px 300px at 80% 50%,
    rgba(138, 216, 163, 0.1) 0%,
    transparent 60%
  );
}

.dc-inner {
  position: relative;
  z-index: 1;
}

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

.dc-stat {
  text-align: center;
}

.dc-val {
  font-size: clamp(24px, 3vw, 40px);
  font-weight: 800;
  letter-spacing: -1.5px;
  background: var(--grad);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  line-height: 1;
}

.dc-label {
  font-size: 13px;
  color: rgba(255, 255, 255, 0.55);
  margin-top: 6px;
}

.dc-arrow {
  font-size: 11px;
  font-weight: 700;
  color: var(--mint);
  margin-top: 3px;
}

/* PULLQUOTE */
.pullquote {
  margin: 40px 0;
  padding: 28px 32px;
  background: var(--tint);
  border-left: 4px solid var(--teal);
  border-radius: 0 14px 14px 0;
}

.pq-text {
  font-family: "Lora", Georgia, serif;
  font-style: italic;
  font-size: 20px;
  line-height: 1.65;
  color: var(--primary);
  margin-bottom: 16px;
}

.pq-attr {
  display: flex;
  align-items: center;
  gap: 12px;
}

.pq-avatar {
  width: 36px;
  height: 36px;
  border-radius: 50%;
  background: var(--grad);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 13px;
  font-weight: 800;
  color: var(--primary);
  flex-shrink: 0;
}

.pq-name {
  font-size: 13.5px;
  font-weight: 700;
  color: var(--primary);
}

.pq-role {
  font-size: 12.5px;
  color: var(--muted);
}

/* BEFORE/AFTER */
.before-after {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 20px;
  margin: 32px 0;
}

.ba-card {
  border-radius: 14px;
  padding: 24px;
}

.ba-before {
  background: #fef2f2;
  border: 1px solid #fecaca;
}

.ba-after {
  background: var(--tint);
  border: 1px solid var(--border);
}

.ba-label {
  font-size: 11px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 1px;
  margin-bottom: 14px;
  display: flex;
  align-items: center;
  gap: 6px;
}

.ba-before .ba-label {
  color: #dc2626;
}

.ba-after .ba-label {
  color: var(--teal);
}

.ba-item {
  display: flex;
  align-items: flex-start;
  gap: 8px;
  font-size: 14px;
  line-height: 1.55;
  margin-bottom: 8px;
}

.ba-before .ba-item::before {
  content: "✕";
  color: #ef4444;
  font-weight: 700;
  flex-shrink: 0;
  margin-top: 1px;
}

.ba-after .ba-item::before {
  content: "✓";
  color: var(--teal);
  font-weight: 700;
  flex-shrink: 0;
  margin-top: 1px;
}

.ba-before .ba-item {
  color: #7f1d1d;
}

.ba-after .ba-item {
  color: var(--muted);
}

/* CHART */
.chart-block {
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: 16px;
  padding: 28px;
  margin: 32px 0;
}

.chart-title {
  font-size: 14px;
  font-weight: 700;
  color: var(--primary);
  margin-bottom: 20px;
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.chart-legend {
  display: flex;
  gap: 16px;
  font-size: 12px;
  color: var(--muted);
}

.cl-item {
  display: flex;
  align-items: center;
  gap: 5px;
}

.cl-dot {
  width: 8px;
  height: 8px;
  border-radius: 50%;
}

.chart-bars-cst {
  display: flex;
  gap: 12px;
  align-items: flex-end;
  height: 160px;
  margin-bottom: 8px;
}

.chart-bar-group {
  flex: 1;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 4px;
}

.chart-bar-wrap {
  width: 100%;
  display: flex;
  gap: 4px;
  align-items: flex-end;
  height: 140px;
}

.cb {
  border-radius: 6px 6px 0 0;
  width: 48%;
  transition: opacity 0.2s;
}

.cb:hover {
  opacity: 0.8;
}

.cb-before {
  background: #ef4444;
}

.cb-after {
  background: var(--grad);
}

.chart-bar-label {
  font-size: 11px;
  color: var(--muted);
  text-align: center;
}

/* TIMELINE */
.timeline {
  margin: 32px 0;
  position: relative;
  padding-left: 32px;
}

.timeline::before {
  content: "";
  position: absolute;
  left: 8px;
  top: 8px;
  bottom: 8px;
  width: 2px;
  background: var(--border);
}

.tl-item-lux {
  position: relative;
  margin-bottom: 28px;
}

.tl-item-lux::before {
  content: "";
  position: absolute;
  left: -28px;
  top: 6px;
  width: 12px;
  height: 12px;
  border-radius: 50%;
  background: #fff;
  border: 2px solid var(--border);
}

.tl-item-lux.completed::before {
  background: var(--grad);
  border-color: var(--teal);
}

.tl-date {
  font-size: 11.5px;
  font-weight: 700;
  color: var(--teal);
  margin-bottom: 4px;
  text-transform: uppercase;
  letter-spacing: 0.8px;
}

.tl-title {
  font-size: 15px;
  font-weight: 700;
  color: var(--primary);
  margin-bottom: 4px;
}

.tl-text {
  font-size: 14px;
  color: var(--muted);
  line-height: 1.6;
}

/* SIDEBAR */
.case-sidebar {
  display: flex;
  flex-direction: column;
  gap: 20px;
  position: sticky;
  top: 88px;
}

.sidebar-card {
  background: #fff;
  border: 1px solid var(--border);
  border-radius: 16px;
  padding: 22px;
}

.sc-title {
  font-size: 11px;
  font-weight: 700;
  color: var(--muted);
  text-transform: uppercase;
  letter-spacing: 1px;
  margin-bottom: 14px;
}

.sc-fact {
  display: flex;
  justify-content: space-between;
  align-items: baseline;
  padding: 9px 0;
  border-bottom: 1px solid var(--border);
  font-size: 13.5px;
}

.sc-fact:last-child {
  border-bottom: none;
}

.sc-key {
  color: var(--muted);
}

.sc-val-lux {
  font-weight: 700;
  color: var(--primary);
  text-align: right;
}

.sidebar-cta {
  background: var(--primary);
  border-radius: 16px;
  padding: 22px;
}

.sidebar-cta h4 {
  font-family: "Lora", Georgia, serif;
  font-size: 17px;
  font-weight: 700;
  color: #fff;
  margin-bottom: 8px;
  line-height: 1.3;
}

.sidebar-cta p {
  font-size: 13px;
  color: rgba(255, 255, 255, 0.6);
  line-height: 1.6;
  margin-bottom: 16px;
}

.sc-btn {
  display: block;
  text-align: center;
  background: var(--grad);
  color: var(--primary);
  font-weight: 700;
  font-size: 14px;
  padding: 12px 0;
  border-radius: 10px;
  transition: opacity 0.2s;
}

.sc-btn:hover {
  opacity: 0.9;
}

.sc-btn-sec {
  display: block;
  text-align: center;
  border: 1.5px solid rgba(138, 216, 163, 0.4);
  color: var(--mint);
  font-weight: 600;
  font-size: 13.5px;
  padding: 11px 0;
  border-radius: 10px;
  margin-top: 8px;
  transition: background 0.2s;
}

.sc-btn-sec:hover {
  background: rgba(138, 216, 163, 0.1);
}

.more-stories h4 {
  font-size: 13px;
  font-weight: 700;
  color: var(--primary);
  margin-bottom: 14px;
}

.story-link {
  display: flex;
  align-items: flex-start;
  gap: 12px;
  margin-bottom: 14px;
  cursor: pointer;
  transition: opacity 0.2s;
}

.story-link:hover {
  opacity: 0.8;
}

.story-thumb {
  width: 44px;
  height: 44px;
  border-radius: 8px;
  flex-shrink: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 14px;
  font-weight: 800;
  color: #fff;
}

.story-title-cst-lux-skine {
  font-size: 13px;
  font-weight: 700;
  color: var(--primary);
  line-height: 1.35;
  margin-bottom: 2px;
}

.story-company {
  font-size: 11.5px;
  color: var(--muted);
}

.cs-std-hero h1 em {
  font-style: italic;
  color: var(--teal);
}

.cs-std-hero {
  background: var(--surface);
}

/* ── FEATURED CASE STUDY ── */
#featured-cst {
  padding: 72px 24px;
}

.featured-card {
  background: #fff;
  border: 1.5px solid var(--border);
  border-radius: 24px;
  overflow: hidden;
  box-shadow: var(--s-lg);
  display: grid;
  grid-template-columns: 1fr;
}

@media (min-width: 860px) {
  .featured-card {
    grid-template-columns: 1fr 1fr;
  }
}

.fc-visual {
  background: linear-gradient(
    135deg,
    var(--primary) 0%,
    #0a5c78 50%,
    #1a8a6a 100%
  );
  padding: 48px 40px;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  min-height: 400px;
  position: relative;
  overflow: hidden;
}

.fc-visual::before {
  content: "";
  position: absolute;
  width: 300px;
  height: 300px;
  border-radius: 50%;
  background: radial-gradient(
    circle,
    rgba(52, 174, 147, 0.15) 0%,
    transparent 70%
  );
  bottom: -100px;
  right: -80px;
}

.fcv-tag {
  font-size: 10px;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  color: rgba(255, 255, 255, 0.5);
  margin-bottom: 20px;
}

.fcv-company {
  display: flex;
  align-items: center;
  gap: 16px;
  margin-bottom: 24px;
}

.fcv-logo {
  width: 52px;
  height: 52px;
  border-radius: 14px;
  background: rgba(255, 255, 255, 0.12);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 22px;
  font-weight: 900;
  color: #fff;
  flex-shrink: 0;
  font-family: "DM Serif Display", serif;
}

.fcv-name {
  font-size: 20px;
  font-weight: 800;
  color: #fff;
  line-height: 1.2;
}

.fcv-type {
  font-size: 12px;
  color: rgba(255, 255, 255, 0.55);
  font-weight: 500;
}

.fcv-quote {
  font-family: "DM Serif Display", serif;
  font-size: clamp(18px, 2.5vw, 22px);
  font-weight: 400;
  color: #fff;
  line-height: 1.5;
  font-style: italic;
  margin-bottom: 28px;
  position: relative;
}

.fcv-quote::before {
  content: "\201C";
  font-size: 60px;
  color: rgba(52, 174, 147, 0.3);
  position: absolute;
  top: -20px;
  left: -8px;
  font-family: "DM Serif Display", serif;
  line-height: 1;
}

.fcv-attr {
  display: flex;
  align-items: center;
  gap: 10px;
}

.fcv-av {
  width: 36px;
  height: 36px;
  border-radius: 50%;
  background: var(--grad);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 12px;
  font-weight: 800;
  color: #fff;
  flex-shrink: 0;
}

.fcv-name2 {
  font-size: 13px;
  font-weight: 700;
  color: #fff;
}

.fcv-role {
  font-size: 11px;
  color: rgba(255, 255, 255, 0.5);
}

.fc-content {
  padding: 40px;
}

.fc-eyebrow {
  font-size: 11px;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  color: var(--teal);
  margin-bottom: 12px;
}

.fc-title {
  font-family: "DM Serif Display", serif;
  font-size: clamp(20px, 2.5vw, 26px);
  font-weight: 400;
  color: var(--primary);
  line-height: 1.25;
  margin-bottom: 16px;
}

.fc-body {
  font-size: 14px;
  color: #2a5062;
  line-height: 1.82;
  margin-bottom: 28px;
}

.fc-metrics {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 14px;
  margin-bottom: 28px;
}

.fc-metric {
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: 12px;
  padding: 16px 12px;
  text-align: center;
}

.fcm-num {
  font-family: "DM Serif Display", serif;
  font-size: clamp(20px, 2.5vw, 26px);
  color: var(--primary);
  line-height: 1;
}

.fcm-unit {
  font-size: 13px;
  color: var(--teal);
  font-weight: 700;
}

.fcm-label {
  font-size: 11px;
  color: var(--ts);
  font-weight: 600;
  margin-top: 5px;
  text-transform: uppercase;
  letter-spacing: 0.04em;
}

.fc-tags {
  display: flex;
  gap: 7px;
  flex-wrap: wrap;
  margin-bottom: 24px;
}

.fc-tag {
  font-size: 11px;
  font-weight: 600;
  padding: 4px 10px;
  border-radius: 100px;
  background: var(--tint);
  color: var(--teal);
  border: 1px solid rgba(52, 174, 147, 0.2);
}

.fc-cta {
  display: inline-flex;
  align-items: center;
  gap: 7px;
  background: var(--grad);
  color: #fff;
  font-size: 14px;
  font-weight: 700;
  padding: 11px 22px;
  border-radius: 9px;
  text-decoration: none;
  transition: 0.15s;
}

.fc-cta:hover {
  transform: scale(1.02);
  box-shadow: 0 5px 18px rgba(52, 174, 147, 0.4);
}

/* ── CATEGORY FILTER ── */
#filter {
  padding: 0 24px 40px;
  border-bottom: 1px solid var(--border);
}

.filter-inner {
  max-width: 1200px;
  margin: 0 auto;
  display: flex;
  align-items: center;
  gap: 10px;
  flex-wrap: wrap;
}

.filter-label {
  font-size: 12px;
  font-weight: 700;
  color: var(--ts);
  text-transform: uppercase;
  letter-spacing: 0.07em;
  margin-right: 4px;
}

.cat-btn {
  font-size: 12px;
  font-weight: 700;
  padding: 7px 16px;
  border-radius: 100px;
  border: 1.5px solid var(--border);
  background: #fff;
  color: var(--ts);
  cursor: pointer;
  transition: 0.15s;
  font-family: inherit;
  display: inline-flex;
  align-items: center;
  gap: 6px;
}

.cat-btn:hover {
  border-color: rgba(52, 174, 147, 0.4);
  color: var(--primary);
}

.cat-btn.active {
  background: var(--primary);
  color: #fff;
  border-color: var(--primary);
}

/* ── CASE STUDY GRID ── */
#grid {
  padding: 48px 24px 96px;
}

.cs-grid {
  max-width: 1200px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1fr;
  gap: 24px;
}

@media (min-width: 640px) {
  .cs-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (min-width: 1000px) {
  .cs-grid {
    grid-template-columns: repeat(3, 1fr);
  }
}

.cs-card {
  border: 1.5px solid var(--border);
  border-radius: 20px;
  background: #fff;
  box-shadow: var(--s-sm);
  overflow: hidden;
  transition: 0.22s;
  display: flex;
  flex-direction: column;
}

.cs-card:hover {
  transform: translateY(-4px);
  box-shadow: var(--s-md);
  border-color: rgba(52, 174, 147, 0.25);
}

.cs-card-top {
  padding: 24px 24px 0;
}

.cs-industry {
  font-size: 10px;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: 0.07em;
  color: var(--ts);
  margin-bottom: 12px;
}

.cs-company-row {
  display: flex;
  align-items: center;
  gap: 12px;
  margin-bottom: 18px;
}

.cs-logo {
  width: 44px;
  height: 44px;
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 18px;
  font-weight: 900;
  color: #fff;
  flex-shrink: 0;
  font-family: "DM Serif Display", serif;
}

.cs-co-name {
  font-size: 15px;
  font-weight: 800;
  color: var(--primary);
}

.cs-co-type {
  font-size: 12px;
  color: var(--ts);
}

.cs-title {
  font-family: "DM Serif Display", serif;
  font-size: 18px;
  font-weight: 400;
  color: var(--primary);
  line-height: 1.35;
  margin-bottom: 10px;
}

.cs-excerpt {
  font-size: 13px;
  color: var(--ts);
  line-height: 1.7;
  margin-bottom: 20px;
}

/* Metrics row inside card */
.cs-metrics {
  display: flex;
  gap: 0;
  border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
  margin: 0 -1px;
}

.cs-metric {
  flex: 1;
  padding: 14px 12px;
  text-align: center;
  border-right: 1px solid var(--border);
}

.cs-metric:last-child {
  border-right: none;
}

.csm-num {
  font-family: "DM Serif Display", serif;
  font-size: 20px;
  color: var(--primary);
  line-height: 1;
}

.csm-unit {
  font-size: 11px;
  color: var(--teal);
  font-weight: 700;
}

.csm-label {
  font-size: 10px;
  color: var(--ts);
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.04em;
  margin-top: 3px;
}

.cs-card-foot {
  padding: 18px 24px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-top: auto;
}

.cs-tags {
  display: flex;
  gap: 6px;
  flex-wrap: wrap;
}

.cs-tag {
  font-size: 10px;
  font-weight: 700;
  padding: 3px 8px;
  border-radius: 100px;
  background: var(--surface);
  color: var(--ts);
  border: 1px solid var(--border);
}

.cs-read {
  font-size: 13px;
  font-weight: 700;
  color: var(--teal);
  text-decoration: none;
  display: flex;
  align-items: center;
  gap: 4px;
  white-space: nowrap;
  transition: 0.15s;
}

.cs-read:hover {
  color: var(--primary);
}

.cs-std-testi {
  background: var(--primary);
}

.cs-std-testi .test-label {
  font-size: 11px;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  color: rgba(52, 174, 147, 0.8);
  text-align: center;
  margin-bottom: 12px;
}

.cs-std-testi .test-title {
  font-family: "DM Serif Display", serif;
  font-size: clamp(24px, 3.5vw, 36px);
  color: #fff;
  text-align: center;
  margin-bottom: 48px;
  font-weight: 400;
  line-height: 1.2;
}

.test-card-cs-std {
  background: rgba(255, 255, 255, 0.05);
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: 16px;
  padding: 24px;
}

.tc-stars {
  display: flex;
  gap: 2px;
  margin-bottom: 14px;
  font-size: 14px;
  color: #fbbf24;
}

.tc-quote {
  font-size: 14px;
  color: rgba(255, 255, 255, 0.8);
  line-height: 1.75;
  font-style: italic;
  margin-bottom: 18px;
}

.tc-author {
  display: flex;
  align-items: center;
  gap: 10px;
}

.tc-av {
  width: 36px;
  height: 36px;
  border-radius: 50%;
  background: var(--grad);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 11px;
  font-weight: 800;
  color: #fff;
  flex-shrink: 0;
}

.tc-name-cst {
  font-size: 13px;
  font-weight: 700;
  color: #fff;
}

.tc-role-cst {
  font-size: 11px;
  color: rgba(255, 255, 255, 0.45);
}

#cta-cst-std {
  padding: 80px 24px;
  text-align: center;
  border-top: 1px solid var(--border);
}

#cta-cst-std h2 {
  color: var(--primary);
  margin-bottom: 14px;
}

#cta-cst-std .cta-sub {
  color: var(--ts);
  margin-bottom: 32px;
}

#cta-cst-std .cta-inner {
  max-width: 640px;
  margin: 0 auto;
}

#cta-cst-std h2 span {
  background: var(--grad);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

#cta-cst-std .cta-btns {
  display: flex;
  gap: 12px;
  justify-content: center;
  flex-wrap: wrap;
}

.hero-sub {
  font-size: 16px;
  color: var(--ts);
  line-height: 1.75;
  max-width: 560px;
  margin: 0 auto 36px;
}

/* Aggregate stats */
.agg-stats {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 2px;
  background: var(--border);
  border-radius: 16px;
  overflow: hidden;
  max-width: 640px;
  margin: 0 auto;
  box-shadow: var(--s-sm);
}

@media (min-width: 500px) {
  .agg-stats {
    grid-template-columns: repeat(4, 1fr);
  }
}

.agg-item {
  background: #fff;
  padding: 22px 16px;
  text-align: center;
}

.agg-num {
  font-family: "DM Serif Display", serif;
  font-size: clamp(22px, 3.5vw, 32px);
  color: var(--primary);
  font-weight: 400;
  line-height: 1;
}

.agg-label {
  font-size: 11px;
  color: var(--ts);
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  margin-top: 5px;
}

.cs-std-hero .hero-inner {
  max-width: 800px;
  margin: 0 auto;
  text-align: center;
}

.hero-careers {
  padding: 108px 24px 80px;
  background: var(--primary);
  position: relative;
  overflow: hidden;
}

.hero-careers::before {
  content: "";
  position: absolute;
  inset: 0;
  background: radial-gradient(
    ellipse 700px 500px at 70% 60%,
    rgba(138, 216, 163, 0.1),
    transparent 55%
  );
}

.hero-careers::after {
  content: "HIRING";
  position: absolute;
  right: -20px;
  top: 50%;
  transform: translateY(-50%);
  font-size: 220px;
  font-weight: 900;
  line-height: 1;
  color: rgba(255, 255, 255, 0.02);
  pointer-events: none;
  letter-spacing: -8px;
  font-family: "Inter", sans-serif;
}

.hero-careers h1 {
  font-family: "Lora", Georgia, serif;
  font-size: clamp(28px, 4vw, 52px);
  font-weight: 700;
  color: #fff;
  line-height: 1.08;
  letter-spacing: -1.5px;
  margin-bottom: 18px;
}

.hero-careers h1 em {
  font-style: italic;
  color: var(--mint);
}

.hero-careers .hero-badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 1.5px;
  text-transform: uppercase;
  color: var(--mint);
  background: rgba(138, 216, 163, 0.15);
  border: 1px solid rgba(138, 216, 163, 0.25);
  padding: 6px 14px;
  border-radius: 50px;
  margin-bottom: 22px;
}

.hero-careers p {
  font-size: 17px;
  color: rgba(255, 255, 255, 0.65);
  line-height: 1.75;
  max-width: 500px;
  margin-bottom: 32px;
}

.hero-actions {
  display: flex;
  gap: 12px;
  flex-wrap: wrap;
}

.btn-primary {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: var(--grad);
  color: var(--primary);
  font-weight: 700;
  font-size: 15px;
  padding: 13px 26px;
  border-radius: 10px;
  transition: opacity 0.2s;
}

.btn-primary:hover {
  opacity: 0.9;
}

.btn-ghost {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  border: 2px solid rgba(138, 216, 163, 0.35);
  color: var(--mint);
  font-weight: 600;
  font-size: 15px;
  padding: 12px 26px;
  border-radius: 10px;
  transition: background 0.2s;
}

.btn-ghost:hover {
  background: rgba(138, 216, 163, 0.08);
}

.hero-actions-careers {
  display: flex;
  gap: 12px;
  flex-wrap: wrap;
}

/* STATS CARD IN HERO */
.hero-stats-card {
  background: rgba(255, 255, 255, 0.06);
  border: 1px solid rgba(255, 255, 255, 0.12);
  border-radius: 20px;
  padding: 28px;
}

.hsc-title {
  font-size: 11px;
  font-weight: 700;
  color: rgba(255, 255, 255, 0.4);
  text-transform: uppercase;
  letter-spacing: 1px;
  margin-bottom: 20px;
}

.hsc-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 20px;
}

.hsc-item {
  border-left: 2px solid rgba(138, 216, 163, 0.3);
  padding-left: 14px;
}

.hsc-val {
  font-size: 28px;
  font-weight: 900;
  color: #fff;
  letter-spacing: -1.5px;
  background: var(--grad);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.hsc-label {
  font-size: 12.5px;
  color: rgba(255, 255, 255, 0.5);
  margin-top: 3px;
}

.hsc-perks {
  margin-top: 20px;
  padding-top: 20px;
  border-top: 1px solid rgba(255, 255, 255, 0.1);
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.hsc-perk {
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: 13.5px;
  color: rgba(255, 255, 255, 0.7);
}

.hsc-perk-icon {
  width: 28px;
  height: 28px;
  border-radius: 7px;
  background: rgba(138, 216, 163, 0.15);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 14px;
  flex-shrink: 0;
}

.hero-inner-careers {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: 1fr 400px;
  gap: 64px;
  align-items: center;
}

/* VALUES SECTION */
.values-section {
  padding: 96px 0;
  background: #fff;
}

.section-eyebrow {
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 1.5px;
  text-transform: uppercase;
  color: var(--teal);
  margin-bottom: 14px;
}

.section-title {
  font-family: "Lora", Georgia, serif;
  font-size: clamp(24px, 3vw, 38px);
  font-weight: 700;
  color: var(--primary);
  letter-spacing: -0.5px;
  margin-bottom: 14px;
  line-height: 1.15;
}

.section-sub {
  font-size: 16px;
  color: var(--muted);
  line-height: 1.75;
  max-width: 560px;
}

.values-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
  margin-top: 48px;
}

.value-card {
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: 18px;
  padding: 28px;
  transition:
    box-shadow 0.2s,
    transform 0.2s;
}

.value-card:hover {
  box-shadow: 0 8px 32px rgba(52, 174, 147, 0.1);
  transform: translateY(-3px);
}

.vc-icon {
  font-size: 28px;
  margin-bottom: 16px;
}

.vc-title {
  font-size: 16px;
  font-weight: 800;
  color: var(--primary);
  margin-bottom: 8px;
  letter-spacing: -0.3px;
}

.vc-text {
  font-size: 14px;
  color: var(--muted);
  line-height: 1.7;
}

/* LIFE AT DREABEE */
.life-section {
  padding: 96px 0;
  background: var(--surface);
  border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
}

.life-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 48px;
  align-items: center;
}

.life-photos {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 12px;
  grid-template-rows: 180px 180px;
}

.life-photo {
  border-radius: 14px;
  overflow: hidden;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 36px;
}

.life-photo.tall {
  grid-row: span 2;
  font-size: 48px;
}

.perks-list {
  display: flex;
  flex-direction: column;
  gap: 14px;
  margin-top: 32px;
}

.perk-item {
  display: flex;
  align-items: flex-start;
  gap: 14px;
}

.perk-icon {
  width: 40px;
  height: 40px;
  border-radius: 10px;
  background: var(--tint);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 18px;
  flex-shrink: 0;
}

.perk-title {
  font-size: 15px;
  font-weight: 700;
  color: var(--primary);
  margin-bottom: 3px;
}

.perk-text {
  font-size: 13.5px;
  color: var(--muted);
  line-height: 1.55;
}

/* JOBS SECTION */
.jobs-section {
  padding: 96px 0;
}

.jobs-filter {
  display: flex;
  gap: 8px;
  flex-wrap: wrap;
  margin-bottom: 40px;
}

.jf-btn {
  font-size: 13px;
  font-weight: 600;
  padding: 7px 16px;
  border: 1.5px solid var(--border);
  border-radius: 50px;
  color: var(--muted);
  cursor: pointer;
  background: none;
  font-family: "Inter", sans-serif;
  transition: all 0.15s;
}

.jf-btn:hover,
.jf-btn.active {
  border-color: var(--teal);
  color: var(--teal);
  background: var(--tint);
}

.jf-count {
  font-size: 11px;
  background: var(--tint);
  color: var(--teal);
  padding: 1px 6px;
  border-radius: 3px;
  margin-left: 4px;
}

.jobs-list {
  display: flex;
  flex-direction: column;
  gap: 14px;
}

.job-card {
  background: #fff;
  border: 1px solid var(--border);
  border-radius: 16px;
  padding: 24px 28px;
  display: grid;
  grid-template-columns: 1fr auto;
  align-items: center;
  gap: 20px;
  transition:
    box-shadow 0.2s,
    border-color 0.2s;
  cursor: pointer;
}

.job-card:hover {
  box-shadow: 0 8px 32px rgba(52, 174, 147, 0.1);
  border-color: rgba(52, 174, 147, 0.4);
}

.job-dept {
  font-size: 11px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.8px;
  margin-bottom: 6px;
}

.job-title {
  font-size: 18px;
  font-weight: 800;
  color: var(--primary);
  letter-spacing: -0.3px;
  margin-bottom: 10px;
}

.job-meta {
  display: flex;
  gap: 14px;
  flex-wrap: wrap;
}

.job-tag {
  display: inline-flex;
  align-items: center;
  gap: 5px;
  font-size: 12.5px;
  font-weight: 600;
  color: var(--muted);
}

.job-tag svg {
  width: 13px;
  height: 13px;
  fill: none;
  stroke: currentColor;
  stroke-width: 2;
  stroke-linecap: round;
}

.job-apply {
  display: inline-flex;
  align-items: center;
  gap: 7px;
  background: var(--grad);
  color: var(--primary);
  font-weight: 700;
  font-size: 14px;
  padding: 11px 20px;
  border-radius: 9px;
  transition: opacity 0.2s;
  white-space: nowrap;
  flex-shrink: 0;
}

.job-apply:hover {
  opacity: 0.9;
}

.job-apply svg {
  width: 14px;
  height: 14px;
  fill: none;
  stroke: currentColor;
  stroke-width: 2.5;
  stroke-linecap: round;
}

.dept-eng {
  color: #34ae93;
}

.dept-product {
  color: #4a9eff;
}

.dept-design {
  color: #8b5cf6;
}

.dept-marketing {
  color: #f59e0b;
}

.dept-data {
  color: #ef4444;
}

.dept-ops {
  color: #10b981;
}

.job-new {
  font-size: 10px;
  font-weight: 700;
  background: rgba(52, 174, 147, 0.15);
  color: var(--teal);
  padding: 2px 8px;
  border-radius: 4px;
  margin-left: 10px;
  vertical-align: middle;
}

/* NO ROLE CTA */
.no-role {
  background: var(--tint);
  border: 1px solid var(--border);
  border-radius: 16px;
  padding: 28px;
  text-align: center;
  margin-top: 20px;
}

.no-role h4 {
  font-size: 17px;
  font-weight: 800;
  color: var(--primary);
  margin-bottom: 8px;
}

.no-role p {
  font-size: 14.5px;
  color: var(--muted);
  margin-bottom: 18px;
  line-height: 1.6;
}

/* HIRING PROCESS */
.process-section {
  padding: 96px 0;
  background: var(--surface);
  border-top: 1px solid var(--border);
}

.process-section-careers {
  padding: 96px 24px;
  background: var(--surface);
  border-top: 1px solid var(--border);
}

.process-steps {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: 0;
  margin-top: 48px;
  position: relative;
}

.process-steps::before {
  content: "";
  position: absolute;
  top: 23px;
  left: 10%;
  right: 10%;
  height: 2px;
  background: var(--border);
}

.ps-item-careers {
  text-align: center;
  padding: 0 12px;
  position: relative;
  z-index: 1;
}

.ps-num {
  width: 48px;
  height: 48px;
  border-radius: 50%;
  background: #fff;
  border: 2px solid var(--border);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 16px;
  font-weight: 800;
  color: var(--muted);
  margin: 0 auto 16px;
}

.ps-item-careers.done .ps-num {
  background: var(--grad);
  border-color: transparent;
  color: var(--primary);
}

.ps-title {
  font-size: 13.5px;
  font-weight: 700;
  color: var(--primary);
  margin-bottom: 6px;
}

.ps-text {
  font-size: 12.5px;
  color: var(--muted);
  line-height: 1.5;
}

/* Dashboard widget */
.dashboard-widget {
  background: #fff;
  border: 1px solid var(--border);
  border-radius: 18px;
  padding: 22px;
  box-shadow: var(--shadow-lg);
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.dw-head {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding-bottom: 14px;
  border-bottom: 1px solid var(--border);
}

.dw-title {
  font-size: 14px;
  font-weight: 800;
  color: var(--primary);
}

.dw-live {
  display: flex;
  align-items: center;
  gap: 5px;
  font-size: 11px;
  font-weight: 700;
  color: var(--teal);
}

.dw-dot {
  width: 7px;
  height: 7px;
  border-radius: 50%;
  background: var(--teal);
  animation: pulse 1.5s ease-in-out infinite;
}

@keyframes pulse {
  0%,
  100% {
    opacity: 1;
  }

  50% {
    opacity: 0.3;
  }
}

.dw-kpis {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 10px;
}

.dw-kpi {
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: 10px;
  padding: 10px;
  text-align: center;
}

.dw-kpi-v {
  font-family: "DM Serif Display", serif;
  font-size: 18px;
  font-weight: 400;
  color: var(--primary);
  line-height: 1;
}

.dw-kpi-l {
  font-size: 10px;
  color: var(--text-secondary);
  font-weight: 500;
  margin-top: 3px;
}

.dw-chart-title {
  font-size: 11px;
  font-weight: 700;
  color: var(--text-secondary);
  letter-spacing: 0.05em;
  text-transform: uppercase;
  margin-bottom: 8px;
}

.dw-bars {
  display: flex;
  align-items: flex-end;
  gap: 5px;
  height: 60px;
}

.dw-bar {
  flex: 1;
  border-radius: 4px 4px 0 0;
}

.dw-bar-primary {
  background: var(--gradient);
}

.dw-bar-secondary {
  background: rgba(52, 174, 147, 0.25);
}

.dw-creators {
  display: flex;
  flex-direction: column;
  gap: 7px;
}

.dw-creator {
  display: flex;
  align-items: center;
  gap: 9px;
}

.dw-av {
  width: 28px;
  height: 28px;
  border-radius: 50%;
  background: var(--gradient);
  flex-shrink: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 10px;
  font-weight: 800;
  color: #fff;
}

.dw-cname {
  font-size: 12px;
  font-weight: 600;
  color: var(--text-primary);
  flex: 1;
}

.dw-cstat {
  font-size: 11px;
  font-weight: 700;
  color: var(--teal);
}

.dw-cstatus {
  font-size: 10px;
  font-weight: 700;
  padding: 2px 7px;
  border-radius: 100px;
}

.status-live {
  background: #dcfce7;
  color: #16a34a;
}

.status-pending {
  background: #fef9c3;
  color: #a16207;
}

.status-flagged {
  background: #fee2e2;
  color: #dc2626;
}

.hero-grid {
  position: absolute;
  inset: 0;
  z-index: 0;
  background-image:
    linear-gradient(rgba(52, 174, 147, 0.04) 1px, transparent 1px),
    linear-gradient(90deg, rgba(52, 174, 147, 0.04) 1px, transparent 1px);
  background-size: 52px 52px;
  mask-image: radial-gradient(
    ellipse 80% 65% at 40% 30%,
    rgba(0, 0, 0, 0.45) 0%,
    transparent 70%
  );
  -webkit-mask-image: radial-gradient(
    ellipse 80% 65% at 40% 30%,
    rgba(0, 0, 0, 0.45) 0%,
    transparent 70%
  );
}

.hero-inner-camp-report {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: 1fr;
  gap: 52px;
  align-items: center;
  max-width: 1200px;
  margin: 0 auto;
}

@media (min-width: 768px) {
  .hero-inner-camp-report {
    grid-template-columns: 1fr 1fr;
  }
}

.hero-camp-report {
  padding: calc(var(--nh) + 72px) 24px 80px;
  position: relative;
  overflow: hidden;
  background: radial-gradient(
    ellipse 90% 55% at 50% -5%,
    rgba(138, 216, 163, 0.14) 0%,
    transparent 62%
  );
}

.hero-text-camp-report {
  display: flex;
  flex-direction: column;
  gap: 20px;
}

.hero-ctas-camp-report {
  display: flex;
  align-items: center;
  gap: 12px;
  flex-wrap: wrap;
}

.hero-text-camp-report .badge {
  width: fit-content;
}

#feature-rows {
  padding: 80px 24px;
}

.frow-camp-report {
  display: grid;
  grid-template-columns: 1fr;
  gap: 52px;
  align-items: center;
  padding: 64px 0;
  border-bottom: 1px solid var(--border);
  max-width: 1200px;
  margin: 0 auto;
}

@media (min-width: 768px) {
  .frow-camp-report {
    grid-template-columns: 1fr 1fr;
    gap: 64px;
  }
}

/* Content tracking panel */
.content-panel {
  background: #fff;
  border: 1px solid var(--border);
  border-radius: 12px;
  padding: 16px;
  width: 100%;
}

.cp-head {
  font-size: 11px;
  font-weight: 700;
  color: var(--text-secondary);
  letter-spacing: 0.05em;
  text-transform: uppercase;
  margin-bottom: 10px;
}

.cp-row {
  display: flex;
  align-items: center;
  gap: 9px;
  padding: 8px 0;
  border-bottom: 1px solid var(--border);
}

.cp-row:last-child {
  border-bottom: none;
}

.cp-av {
  width: 30px;
  height: 30px;
  border-radius: 50%;
  flex-shrink: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 10px;
  font-weight: 800;
  color: #fff;
}

.cp-name {
  font-size: 12px;
  font-weight: 600;
  color: var(--text-primary);
  flex: 1;
}

.cp-post {
  font-size: 11px;
  color: var(--text-secondary);
}

.cp-views {
  font-size: 11px;
  font-weight: 700;
  color: var(--teal);
}

.cp-status {
  font-size: 10px;
  font-weight: 700;
  padding: 2px 7px;
  border-radius: 100px;
  white-space: nowrap;
}

/* ── TESTIMONIAL ── */
#testimonial {
  background: var(--primary);
  padding: 80px 24px;
  position: relative;
  overflow: hidden;
}

#testimonial::before {
  content: "";
  position: absolute;
  width: 500px;
  height: 500px;
  border-radius: 50%;
  background: radial-gradient(
    circle,
    rgba(138, 216, 163, 0.07) 0%,
    transparent 70%
  );
  top: -150px;
  right: -80px;
  pointer-events: none;
}

#testimonial::after {
  content: "";
  position: absolute;
  width: 300px;
  height: 300px;
  border-radius: 50%;
  background: radial-gradient(
    circle,
    rgba(52, 174, 147, 0.07) 0%,
    transparent 70%
  );
  bottom: -60px;
  left: -40px;
  pointer-events: none;
}

.testimonial-inner {
  max-width: 820px;
  margin: 0 auto;
  text-align: center;
  position: relative;
  z-index: 1;
}

.t-logo {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: rgba(255, 255, 255, 0.08);
  border: 1px solid rgba(255, 255, 255, 0.15);
  border-radius: 100px;
  padding: 7px 18px;
  margin-bottom: 32px;
  font-size: 14px;
  font-weight: 800;
  color: #fff;
  letter-spacing: -0.01em;
}

.t-logo-dot {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: var(--mint);
}

blockquote {
  font-family: "DM Serif Display", Georgia, serif;
  font-size: clamp(18px, 2.5vw, 26px);
  font-weight: 400;
  font-style: italic;
  color: rgba(255, 255, 255, 0.92);
  line-height: 1.58;
  position: relative;
  padding: 0 20px;
}

blockquote::before {
  content: "\201C";
  font-size: 90px;
  line-height: 0.7;
  color: var(--teal);
  opacity: 0.3;
  font-family: "DM Serif Display", serif;
  position: absolute;
  top: -8px;
  left: 0;
}

.t-attr {
  margin-top: 28px;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 12px;
}

.t-av {
  width: 42px;
  height: 42px;
  border-radius: 50%;
  background: var(--gradient);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 14px;
  font-weight: 800;
  color: #fff;
}

.t-name {
  font-size: 14px;
  font-weight: 700;
  color: #fff;
}

.t-sub {
  font-size: 12px;
  color: rgba(255, 255, 255, 0.55);
}

.t-stars {
  color: var(--mint);
  font-size: 14px;
  letter-spacing: 2px;
}

/* ── COMPLIANCE ── */
#compliance {
  padding: 96px 24px;
  background: var(--surface);
}

.compliance-inner {
  display: grid;
  grid-template-columns: 1fr;
  gap: 52px;
  align-items: center;
  max-width: 1200px;
  margin: 0 auto;
}

@media (min-width: 768px) {
  .compliance-inner {
    grid-template-columns: 1fr 1fr;
    gap: 64px;
  }
}

.comp-text {
  display: flex;
  flex-direction: column;
  gap: 18px;
}

.comp-text h2 {
  margin-bottom: 0;
}

.comp-text p {
  font-size: 15px;
  color: var(--text-secondary);
  line-height: 1.72;
}

.compliance-badges {
  display: flex;
  gap: 8px;
  flex-wrap: wrap;
}

.comp-badge {
  background: #fff;
  border: 1px solid var(--border);
  border-radius: 8px;
  padding: 7px 13px;
  font-size: 12px;
  font-weight: 700;
  color: var(--primary);
  display: flex;
  align-items: center;
  gap: 6px;
  box-shadow: var(--shadow-sm);
}

.comp-badge-icon {
  font-size: 14px;
}

/* Compliance alert mock */
.comp-visual {
  background: var(--tint);
  border: 1.5px dashed var(--teal);
  border-radius: 18px;
  min-height: 320px;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 24px;
  position: relative;
  overflow: hidden;
}

.comp-visual::before {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(
    135deg,
    rgba(138, 216, 163, 0.07),
    rgba(52, 174, 147, 0.06)
  );
}

.comp-vc {
  position: relative;
  z-index: 1;
  width: 100%;
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.alert-card {
  background: #fff;
  border-radius: 10px;
  padding: 12px 14px;
  display: flex;
  align-items: flex-start;
  gap: 10px;
  box-shadow: var(--shadow-sm);
}

.alert-icon {
  font-size: 18px;
  flex-shrink: 0;
  margin-top: 1px;
}

.alert-title {
  font-size: 13px;
  font-weight: 700;
  margin-bottom: 3px;
}

.alert-body {
  font-size: 12px;
  color: var(--text-secondary);
  line-height: 1.5;
}

.alert-time {
  font-size: 10px;
  color: var(--text-secondary);
  margin-top: 4px;
}

.alert-badge {
  font-size: 10px;
  font-weight: 700;
  padding: 2px 8px;
  border-radius: 100px;
  float: right;
}

.alert-red {
  border-left: 3px solid #ef4444;
}

.alert-red .alert-title {
  color: #dc2626;
}

.alert-yellow {
  border-left: 3px solid #f59e0b;
}

.alert-yellow .alert-title {
  color: #b45309;
}

.alert-green {
  border-left: 3px solid #22c55e;
}

.alert-green .alert-title {
  color: #15803d;
}

#data-metrics {
  padding: 96px 24px;
}

.dm-grid-camp-report {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 12px;
  max-width: 1200px;
  margin: 0 auto;
}

@media (min-width: 640px) {
  .dm-grid-camp-report {
    grid-template-columns: repeat(3, 1fr);
  }
}

@media (min-width: 1024px) {
  .dm-grid-camp-report {
    grid-template-columns: repeat(5, 1fr);
  }
}

.dm-card-camp-report {
  background: #fff;
  border: 1px solid var(--border);
  border-radius: 12px;
  padding: 18px 16px;
  display: flex;
  flex-direction: column;
  gap: 8px;
  box-shadow: var(--shadow-sm);
  transition:
    transform 0.2s,
    box-shadow 0.2s,
    border-color 0.2s;
  position: relative;
  overflow: hidden;
}

.dm-card-camp-report:hover {
  transform: translateY(-2px);
  box-shadow: var(--shadow-md);
  border-color: rgba(52, 174, 147, 0.3);
}

.dm-card-camp-report::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 2px;
  background: var(--gradient);
}

.dm-icon {
  font-size: 20px;
}

.dm-title {
  font-size: 13px;
  font-weight: 700;
  color: var(--primary);
  line-height: 1.3;
}

.dm-sub {
  font-size: 11px;
  color: var(--text-secondary);
}

.dm-header {
  text-align: center;
  margin-bottom: 52px;
}

.dm-header .subtext {
  max-width: 640px;
  margin: 14px auto 0;
}

.section-badge {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  background: var(--tint);
  border: 1px solid var(--border);
  color: var(--teal);
  font-size: 12px;
  font-weight: 600;
  letter-spacing: 0.05em;
  text-transform: uppercase;
  padding: 5px 12px;
  border-radius: 100px;
  margin-bottom: 20px;
}

.section-badge::before {
  content: "";
  width: 6px;
  height: 6px;
  background: var(--teal);
  border-radius: 50%;
}

.hero-brand-monitoring {
  text-align: center;
}

/* Hero sentiment preview */
.hero-sentiment {
  margin-top: 56px;
  max-width: 820px;
  margin-left: auto;
  margin-right: auto;
  background: var(--tint);
  border: 1.5px dashed var(--teal);
  border-radius: 16px;
  padding: 32px 28px;
  position: relative;
  overflow: hidden;
}

.hero-sentiment::before {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(
    135deg,
    rgba(138, 216, 163, 0.05),
    rgba(52, 174, 147, 0.06)
  );
}

.sentiment-inner {
  position: relative;
  z-index: 1;
}

.sentiment-top {
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 12px;
  margin-bottom: 20px;
}

.sentiment-title {
  font-size: 13px;
  font-weight: 700;
  color: var(--primary);
}

.live-pill {
  display: inline-flex;
  align-items: center;
  gap: 5px;
  background: #fff;
  border: 1px solid var(--border);
  border-radius: 100px;
  padding: 4px 10px;
  font-size: 11px;
  font-weight: 700;
  color: var(--teal);
}

.live-dot {
  width: 7px;
  height: 7px;
  border-radius: 50%;
  background: var(--teal);
  animation: pulse 1.5s ease-in-out infinite;
}

@keyframes pulse {
  0%,
  100% {
    opacity: 1;
  }

  50% {
    opacity: 0.3;
  }
}

.sentiment-bars {
  display: flex;
  align-items: center;
  gap: 8px;
  margin-bottom: 16px;
}

.s-bar-label {
  font-size: 12px;
  font-weight: 600;
  color: var(--text-secondary);
  width: 72px;
  flex-shrink: 0;
}

.s-bar-track {
  flex: 1;
  height: 8px;
  background: var(--border);
  border-radius: 4px;
  overflow: hidden;
}

.s-bar-fill {
  height: 100%;
  border-radius: 4px;
}

.s-bar-pct {
  font-size: 12px;
  font-weight: 700;
  width: 36px;
  text-align: right;
}

.sentiment-metrics {
  display: flex;
  gap: 12px;
  flex-wrap: wrap;
  justify-content: center;
  margin-top: 8px;
}

.s-metric {
  background: #fff;
  border: 1px solid var(--border);
  border-radius: 9px;
  padding: 10px 16px;
  text-align: center;
  flex: 1;
  min-width: 80px;
}

.s-metric-val {
  font-size: 18px;
  font-weight: 800;
  color: var(--primary);
}

.s-metric-lbl {
  font-size: 10px;
  color: var(--text-secondary);
  font-weight: 500;
  margin-top: 2px;
}

/* ── FEATURE ROWS ── */
#feature-rows {
  padding: 80px 24px;
  background: var(--bg);
}

.feature-row {
  display: grid;
  grid-template-columns: 1fr;
  gap: 48px;
  align-items: center;
  padding: 60px 0;
  border-bottom: 1px solid var(--border);
}

.feature-row:first-child {
  padding-top: 0;
}

.feature-row:last-child {
  border-bottom: none;
  padding-bottom: 0;
}

@media (min-width: 768px) {
  .feature-row {
    grid-template-columns: 1fr 1fr;
  }

  .feature-row.rev .ftext {
    order: 2;
  }

  .feature-row.rev .fvisual {
    order: 1;
  }
}

.ftext {
  display: flex;
  flex-direction: column;
  gap: 14px;
}

.row-badge {
  display: inline-flex;
  align-items: center;
  gap: 5px;
  background: var(--tint);
  border: 1px solid var(--border);
  color: var(--teal);
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  padding: 4px 10px;
  border-radius: 100px;
  width: fit-content;
}

.ftext h3 {
  font-size: clamp(17px, 2.2vw, 21px);
}

.ftext p {
  font-size: 15px;
  color: var(--text-secondary);
  line-height: 1.72;
}

.flink {
  display: inline-flex;
  align-items: center;
  gap: 5px;
  font-size: 14px;
  font-weight: 700;
  color: var(--teal);
  text-decoration: none;
  transition: gap 0.15s;
  width: fit-content;
  margin-top: 4px;
}

.flink:hover {
  gap: 8px;
}

/* Visual placeholder */
.vp {
  background: var(--tint);
  border: 1.5px dashed var(--teal);
  border-radius: 16px;
  min-height: 260px;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 24px;
  position: relative;
  overflow: hidden;
}

.vp::before {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(
    135deg,
    rgba(138, 216, 163, 0.05),
    rgba(52, 174, 147, 0.06)
  );
}

.vp-inner {
  position: relative;
  z-index: 1;
  width: 100%;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 14px;
}

.vp-lbl {
  font-size: 11px;
  font-weight: 700;
  color: var(--teal);
  letter-spacing: 0.07em;
  text-transform: uppercase;
}

.vp-icon {
  width: 46px;
  height: 46px;
  border-radius: 12px;
  background: rgba(52, 174, 147, 0.15);
  display: flex;
  align-items: center;
  justify-content: center;
}

.vp-metrics {
  display: flex;
  gap: 10px;
  flex-wrap: wrap;
  justify-content: center;
}

.vp-metric {
  background: #fff;
  border: 1px solid var(--border);
  border-radius: 9px;
  padding: 9px 14px;
  text-align: center;
}

.vp-metric-v {
  font-size: 17px;
  font-weight: 800;
  color: var(--primary);
}

.vp-metric-l {
  font-size: 10px;
  color: var(--text-secondary);
  font-weight: 500;
  margin-top: 2px;
}

/* Sentiment donut */
.donut-wrap {
  position: relative;
  width: 100px;
  height: 100px;
}

.donut-wrap svg {
  transform: rotate(-90deg);
}

.donut-center {
  position: absolute;
  inset: 0;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
}

.donut-center-val {
  font-size: 18px;
  font-weight: 800;
  color: var(--primary);
  line-height: 1;
}

.donut-center-lbl {
  font-size: 9px;
  font-weight: 600;
  color: var(--text-secondary);
}

/* ── SOLUTIONS ── */
#solutions {
  background: var(--surface);
  padding: 96px 24px;
}

#every-need,
#trends,
#how-it-works {
  padding: 96px 24px;
}

.solutions-header {
  text-align: center;
  margin-bottom: 52px;
}

.solutions-header .subtext {
  max-width: 640px;
  margin: 12px auto 0;
}

.solutions-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 20px;
}

@media (min-width: 768px) {
  .solutions-grid {
    grid-template-columns: repeat(3, 1fr);
  }
}

.solution-card {
  background: #fff;
  border: 1px solid var(--border);
  border-radius: 14px;
  padding: 32px 28px;
  box-shadow: 0 1px 5px rgba(4, 62, 84, 0.04);
  transition:
    transform 0.2s,
    box-shadow 0.2s;
  display: flex;
  flex-direction: column;
  gap: 14px;
}

.solution-card:hover {
  transform: translateY(-3px);
  box-shadow: 0 8px 28px rgba(4, 62, 84, 0.09);
}

.sol-icon {
  width: 48px;
  height: 48px;
  border-radius: 12px;
  background: var(--gradient);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

.sol-icon svg {
  width: 22px;
  height: 22px;
}

.solution-card h3 {
  font-size: 17px;
  font-weight: 700;
  color: var(--primary);
}

.solution-card p {
  font-size: 14px;
  color: var(--text-secondary);
  line-height: 1.67;
}

/* ── EVERY BUSINESS NEED ── */
#every-need {
  background: var(--bg);
}

.every-inner {
  display: grid;
  grid-template-columns: 1fr;
  gap: 56px;
  align-items: center;
}

@media (min-width: 768px) {
  .every-inner {
    grid-template-columns: 1fr 1fr;
  }
}

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

.every-text h2 {
  margin-bottom: 0;
}

.every-stat-row {
  display: flex;
  gap: 28px;
  flex-wrap: wrap;
  padding: 20px 0;
  border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
}

.every-stat-val {
  font-size: 28px;
  font-weight: 800;
  color: var(--primary);
  letter-spacing: -0.02em;
}

.every-stat-lbl {
  font-size: 12px;
  color: var(--text-secondary);
  font-weight: 500;
  margin-top: 2px;
}

.every-visual {
  background: var(--tint);
  border: 1.5px dashed var(--teal);
  border-radius: 16px;
  min-height: 320px;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 28px;
  position: relative;
  overflow: hidden;
}

.every-visual::before {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(
    135deg,
    rgba(138, 216, 163, 0.05),
    rgba(52, 174, 147, 0.06)
  );
}

.ev-inner {
  position: relative;
  z-index: 1;
  width: 100%;
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.ev-row {
  display: flex;
  align-items: center;
  gap: 12px;
  background: #fff;
  border: 1px solid var(--border);
  border-radius: 10px;
  padding: 12px 14px;
}

.ev-dot {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  flex-shrink: 0;
}

.ev-brand {
  font-size: 13px;
  font-weight: 700;
  color: var(--primary);
  flex: 1;
}

.ev-bar-wrap {
  flex: 2;
  height: 6px;
  background: var(--border);
  border-radius: 3px;
  overflow: hidden;
}

.ev-bar {
  height: 100%;
  border-radius: 3px;
}

.ev-pct {
  font-size: 12px;
  font-weight: 700;
  color: var(--teal);
  width: 36px;
  text-align: right;
}

/* ── TRENDS ── */
#trends {
  background: var(--surface);
}

.trends-inner {
  display: grid;
  grid-template-columns: 1fr;
  gap: 56px;
  align-items: center;
}

@media (min-width: 768px) {
  .trends-inner {
    grid-template-columns: 1fr 1fr;
  }
}

.trends-text {
  display: flex;
  flex-direction: column;
  gap: 18px;
}

.trend-pills {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin-top: 4px;
}

.trend-pill {
  background: #fff;
  border: 1px solid var(--border);
  border-radius: 100px;
  padding: 5px 14px;
  font-size: 13px;
  font-weight: 600;
  color: var(--text-primary);
  display: flex;
  align-items: center;
  gap: 5px;
  transition:
    border-color 0.15s,
    background 0.15s;
  cursor: default;
}

.trend-pill:hover {
  border-color: var(--teal);
  background: var(--tint);
}

.trend-pill-dot {
  width: 6px;
  height: 6px;
  border-radius: 50%;
}

.trends-visual {
  background: var(--tint);
  border: 1.5px dashed var(--teal);
  border-radius: 16px;
  min-height: 280px;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 28px;
  position: relative;
  overflow: hidden;
}

.trends-visual::before {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(
    135deg,
    rgba(138, 216, 163, 0.05),
    rgba(52, 174, 147, 0.06)
  );
}

.tv-inner {
  position: relative;
  z-index: 1;
  width: 100%;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 16px;
}

.tv-bars {
  display: flex;
  align-items: flex-end;
  gap: 7px;
}

.tv-bar {
  border-radius: 5px 5px 0 0;
  background: var(--gradient);
}

/* ── HOW IT WORKS ── */
#how-it-works {
  background: var(--bg);
}

.how-header {
  text-align: center;
  margin-bottom: 52px;
}

.how-header .subtext {
  max-width: 580px;
  margin: 12px auto 0;
}

.steps-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 24px;
  max-width: 900px;
  margin: 0 auto;
}

@media (min-width: 768px) {
  .steps-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

.step-card {
  background: #fff;
  border: 1px solid var(--border);
  border-radius: 14px;
  padding: 32px;
  box-shadow: 0 1px 5px rgba(4, 62, 84, 0.04);
  display: flex;
  flex-direction: column;
  gap: 16px;
  transition:
    transform 0.2s,
    box-shadow 0.2s;
  position: relative;
  overflow: hidden;
}

.step-card:hover {
  transform: translateY(-3px);
  box-shadow: 0 8px 28px rgba(4, 62, 84, 0.09);
}

.step-card::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 3px;
  background: var(--gradient);
}

.step-num {
  width: 36px;
  height: 36px;
  border-radius: 9px;
  background: var(--gradient);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 16px;
  font-weight: 800;
  color: #fff;
}

.step-card h3 {
  font-size: 17px;
  font-weight: 700;
  color: var(--primary);
}

.step-card p {
  font-size: 14px;
  color: var(--text-secondary);
  line-height: 1.7;
}

.btn-outline-cta {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  background: transparent;
  color: var(--primary);
  font-size: 15px;
  font-weight: 700;
  font-family: inherit;
  padding: 12px 26px;
  border-radius: 9px;
  border: 1.5px solid var(--border);
  cursor: pointer;
  text-decoration: none;
  transition:
    border-color 0.15s,
    background 0.15s;
}

.btn-outline-cta:hover {
  border-color: var(--teal);
  background: var(--tint);
}

.herobrand-comp {
  text-align: center;
}

/* ── INSIGHTS GRID ── */
#insights {
  background: var(--surface);
  padding: 96px 24px;
}

.insights-header {
  text-align: center;
  margin-bottom: 52px;
}

.insights-header .subtext {
  max-width: 580px;
  margin: 12px auto 0;
}

.insights-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 18px;
}

@media (min-width: 640px) {
  .insights-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (min-width: 960px) {
  .insights-grid {
    grid-template-columns: repeat(3, 1fr);
  }
}

/* Make last row's orphan card span full width if needed */
.insight-card:last-child:nth-child(3n + 1) {
  grid-column: 1 / -1;
  max-width: 380px;
  margin: 0 auto;
}

@media (max-width: 959px) {
  .insight-card:last-child:nth-child(3n + 1) {
    grid-column: auto;
    max-width: none;
    margin: 0;
  }
}

.insight-card {
  background: #fff;
  border: 1px solid var(--border);
  border-radius: 14px;
  padding: 28px;
  box-shadow: 0 1px 5px rgba(4, 62, 84, 0.04);
  transition:
    transform 0.2s,
    box-shadow 0.2s;
  display: flex;
  flex-direction: column;
  gap: 14px;
}

.insight-card:hover {
  transform: translateY(-3px);
  box-shadow: 0 8px 28px rgba(4, 62, 84, 0.09);
}

.insight-num {
  width: 32px;
  height: 32px;
  border-radius: 8px;
  background: var(--gradient);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 13px;
  font-weight: 800;
  color: #fff;
  flex-shrink: 0;
}

.insight-card h3 {
  font-size: 15px;
  font-weight: 700;
  color: var(--primary);
}

.insight-card p {
  font-size: 14px;
  color: var(--text-secondary);
  line-height: 1.65;
}

.feature-text {
  display: flex;
  flex-direction: column;
  gap: 14px;
}

.feature-row-badge {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  background: var(--tint);
  border: 1px solid var(--border);
  color: var(--teal);
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.05em;
  text-transform: uppercase;
  padding: 4px 10px;
  border-radius: 100px;
  width: fit-content;
}

.feature-text h3 {
  font-size: clamp(18px, 2.2vw, 22px);
}

.feature-text p {
  font-size: 15px;
  color: var(--text-secondary);
  line-height: 1.72;
}

.feature-link {
  display: inline-flex;
  align-items: center;
  gap: 5px;
  font-size: 14px;
  font-weight: 700;
  color: var(--teal);
  text-decoration: none;
  transition: gap 0.15s;
  width: fit-content;
  margin-top: 4px;
}

.feature-link:hover {
  gap: 8px;
}

/* Visual placeholders */
.visual-placeholder {
  background: var(--tint);
  border: 1.5px dashed var(--teal);
  border-radius: 16px;
  min-height: 280px;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 28px;
  position: relative;
  overflow: hidden;
}

.visual-placeholder::before {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(
    135deg,
    rgba(138, 216, 163, 0.05) 0%,
    rgba(52, 174, 147, 0.06) 100%
  );
}

/* Overlap visual */
.overlap-rings {
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
  height: 100px;
  width: 200px;
}

.overlap-ring {
  width: 80px;
  height: 80px;
  border-radius: 50%;
  border: 2px solid;
  opacity: 0.55;
  position: absolute;
}

.ring-a {
  border-color: var(--teal);
  background: rgba(52, 174, 147, 0.12);
  left: 0;
}

.ring-b {
  border-color: var(--mint);
  background: rgba(138, 216, 163, 0.12);
  left: 30px;
}

.ring-c {
  border-color: #4a7a84;
  background: rgba(74, 122, 132, 0.1);
  left: 60px;
}

.vp-metric-val {
  font-size: 18px;
  font-weight: 800;
  color: var(--primary);
}

.vp-metric-lbl {
  font-size: 10px;
  color: var(--text-secondary);
  font-weight: 500;
  margin-top: 2px;
}

.vp-label {
  font-size: 11px;
  font-weight: 700;
  color: var(--teal);
  letter-spacing: 0.07em;
  text-transform: uppercase;
}

@media (min-width: 768px) {
  .feature-row {
    grid-template-columns: 1fr 1fr;
  }

  .feature-row.reverse .feature-text {
    order: 2;
  }

  .feature-row.reverse .feature-visual {
    order: 1;
  }
}

.vp-bars {
  display: flex;
  align-items: flex-end;
  gap: 6px;
}

.vp-bar {
  border-radius: 4px 4px 0 0;
  background: var(--gradient);
}

/* ── MULTI-BRAND COMPARE ── */
#multi-brand {
  background: var(--surface);
}

.multi-inner {
  display: grid;
  grid-template-columns: 1fr;
  gap: 56px;
  align-items: start;
}

@media (min-width: 768px) {
  .multi-inner {
    grid-template-columns: 1fr 1fr;
  }
}

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

.multi-text h2 {
  margin-bottom: 4px;
}

/* Compare table mini */
.compare-mini {
  background: #fff;
  border: 1px solid var(--border);
  border-radius: 14px;
  overflow: hidden;
  box-shadow: 0 2px 8px rgba(4, 62, 84, 0.05);
}

.compare-mini-head {
  display: grid;
  grid-template-columns: 1.4fr 1fr 1fr 1fr;
  background: var(--tint);
  border-bottom: 1px solid var(--border);
  padding: 12px 16px;
}

.compare-mini-head span {
  font-size: 11px;
  font-weight: 700;
  color: var(--teal);
  letter-spacing: 0.05em;
  text-transform: uppercase;
  text-align: center;
}

.compare-mini-head span:first-child {
  text-align: left;
  color: var(--text-secondary);
}

.compare-mini-row {
  display: grid;
  grid-template-columns: 1.4fr 1fr 1fr 1fr;
  padding: 11px 16px;
  border-bottom: 1px solid var(--border);
  transition: background 0.12s;
  align-items: center;
}

.compare-mini-row:last-child {
  border-bottom: none;
}

.compare-mini-row:hover {
  background: rgba(237, 247, 245, 0.45);
}

.compare-mini-row span {
  font-size: 13px;
  color: var(--text-secondary);
  text-align: center;
}

.compare-mini-row span:first-child {
  font-weight: 600;
  color: var(--text-primary);
  text-align: left;
}

.compare-mini-row .you {
  color: var(--teal);
  font-weight: 700;
}

/* Accordion */
.accordion {
  display: flex;
  flex-direction: column;
  gap: 8px;
}

.accordion-item {
  background: #fff;
  border: 1px solid var(--border);
  border-radius: 11px;
  overflow: hidden;
}

.accordion-trigger {
  width: 100%;
  background: none;
  border: none;
  cursor: pointer;
  font-family: inherit;
  font-size: 14px;
  font-weight: 600;
  color: var(--primary);
  padding: 15px 18px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  text-align: left;
  gap: 12px;
  transition: background 0.12s;
}

.accordion-trigger:hover {
  background: var(--tint);
}

.acc-icon {
  flex-shrink: 0;
  width: 20px;
  height: 20px;
  border-radius: 50%;
  border: 1.5px solid var(--teal);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 15px;
  font-weight: 400;
  color: var(--teal);
  line-height: 1;
  transition: transform 0.2s;
}

.accordion-item.open .acc-icon {
  transform: rotate(45deg);
}

.accordion-body {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.3s ease;
}

.accordion-item.open .accordion-body {
  max-height: 160px;
}

.accordion-body-inner {
  padding: 0 18px 15px;
  font-size: 14px;
  color: var(--text-secondary);
  line-height: 1.7;
}

#multi-brand {
  padding: 96px 24px;
}

/* ── AUDIENCE SECTION ── */
#audience {
  background: var(--bg);
}

.audience-header {
  text-align: center;
  margin-bottom: 52px;
}

.audience-header .subtext {
  max-width: 600px;
  margin: 12px auto 0;
}

.audience-cards-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 18px;
  margin-bottom: 44px;
}

@media (min-width: 768px) {
  .audience-cards-grid {
    grid-template-columns: repeat(3, 1fr);
  }
}

.audience-card {
  background: #fff;
  border: 1px solid var(--border);
  border-radius: 14px;
  padding: 28px;
  box-shadow: 0 1px 5px rgba(4, 62, 84, 0.04);
  transition:
    transform 0.2s,
    box-shadow 0.2s;
  display: flex;
  flex-direction: column;
  gap: 14px;
}

.audience-card:hover {
  transform: translateY(-3px);
  box-shadow: 0 8px 28px rgba(4, 62, 84, 0.09);
}

.aud-icon-wrap {
  width: 44px;
  height: 44px;
  border-radius: 11px;
  background: var(--gradient);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

.aud-icon-wrap svg {
  width: 20px;
  height: 20px;
}

.audience-card h3 {
  font-size: 16px;
  font-weight: 700;
  color: var(--primary);
}

.audience-card p {
  font-size: 14px;
  color: var(--text-secondary);
  line-height: 1.65;
}

.closing-callout {
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: 14px;
  padding: 28px 32px;
  font-size: 15px;
  color: var(--text-secondary);
  line-height: 1.75;
  text-align: center;
  max-width: 820px;
  margin: 0 auto;
}

.closing-callout strong {
  color: var(--primary);
}

.faq-body-inner {
  padding: 0 20px 18px;
  font-size: 14px;
  color: var(--text-secondary);
  line-height: 1.75;
}

/* ── ICON CARDS ── */
.icon-cards-section {
  background: var(--surface);
  padding: 96px 24px;
}

.icon-cards-header {
  text-align: center;
  margin-bottom: 52px;
}

.icon-cards-header .subtext {
  max-width: 600px;
  margin: 12px auto 0;
}

.icon-cards-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 20px;
}

@media (min-width: 768px) {
  .icon-cards-grid {
    grid-template-columns: repeat(3, 1fr);
  }
}

.icon-card {
  background: #fff;
  border: 1px solid var(--border);
  border-radius: 14px;
  padding: 28px;
  box-shadow: 0 1px 5px rgba(4, 62, 84, 0.04);
  transition:
    transform 0.2s,
    box-shadow 0.2s;
  display: flex;
  flex-direction: column;
  gap: 14px;
}

.icon-card:hover {
  transform: translateY(-3px);
  box-shadow: 0 8px 28px rgba(4, 62, 84, 0.09);
}

.icon-card-icon {
  width: 44px;
  height: 44px;
  border-radius: 11px;
  background: var(--gradient);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

.icon-card-icon svg {
  width: 20px;
  height: 20px;
}

.icon-card h3 {
  font-size: 16px;
  font-weight: 700;
  color: var(--primary);
}

.icon-card p {
  font-size: 14px;
  color: var(--text-secondary);
  line-height: 1.65;
}

/* ── AUDIENCE INTELLIGENCE ── */
.audience-section {
  background: var(--bg);
  padding: 96px 24px;
}

.audience-inner {
  display: grid;
  grid-template-columns: 1fr;
  gap: 56px;
  align-items: center;
}

@media (min-width: 768px) {
  .audience-inner {
    grid-template-columns: 1fr 1fr;
  }
}

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

.audience-text h2 {
  margin-bottom: 4px;
}

.audience-stat-row {
  display: flex;
  gap: 24px;
  flex-wrap: wrap;
  padding: 20px 0;
  border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
}

.audience-stat {
  text-align: center;
}

.audience-stat-val {
  font-size: 28px;
  font-weight: 800;
  color: var(--primary);
  letter-spacing: -0.02em;
}

.audience-stat-lbl {
  font-size: 12px;
  color: var(--text-secondary);
  font-weight: 500;
  margin-top: 2px;
}

.audience-cards {
  display: flex;
  flex-direction: column;
  gap: 14px;
}

.audience-card {
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: 12px;
  padding: 18px 20px;
  display: flex;
  gap: 14px;
  align-items: flex-start;
  transition: box-shadow 0.2s;
}

.audience-card:hover {
  box-shadow: 0 4px 16px rgba(4, 62, 84, 0.07);
}

.aud-icon {
  width: 36px;
  height: 36px;
  border-radius: 9px;
  background: var(--gradient);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

.aud-icon svg {
  width: 16px;
  height: 16px;
}

.aud-text h4 {
  font-size: 14px;
  font-weight: 700;
  color: var(--primary);
  margin-bottom: 4px;
}

.aud-text p {
  font-size: 13px;
  color: var(--text-secondary);
  line-height: 1.6;
}

.info-badge {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  background: var(--tint);
  border: 1px solid rgba(52, 174, 147, 0.3);
  color: var(--teal);
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  padding: 4px 12px;
  border-radius: 100px;
  margin-bottom: 20px;
}

.info-title {
  font-family: "DM Serif Display", serif;
  font-size: clamp(28px, 4vw, 46px);
  font-weight: 400;
  color: var(--primary);
  line-height: 1.1;
  letter-spacing: -0.02em;
  margin-bottom: 16px;
}

.info-title span {
  background: var(--grad);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.info-sub {
  font-size: 15px;
  color: var(--ts);
  line-height: 1.75;
  margin-bottom: 32px;
  max-width: 480px;
}

.what-list {
  display: flex;
  flex-direction: column;
  gap: 12px;
  margin-bottom: 36px;
}

.what-item {
  display: flex;
  align-items: flex-start;
  gap: 12px;
}

.what-check {
  width: 22px;
  height: 22px;
  border-radius: 50%;
  background: var(--grad);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  margin-top: 2px;
}

.what-text {
  font-size: 14px;
  color: #2a5062;
  line-height: 1.6;
}

.what-text strong {
  color: var(--primary);
  font-weight: 700;
}

.duration-badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: 10px;
  padding: 10px 16px;
  font-size: 13px;
  color: var(--ts);
  font-weight: 500;
  margin-bottom: 36px;
}

/* SOCIAL PROOF */
.proof-row {
  display: flex;
  flex-direction: column;
  gap: 14px;
  margin-bottom: 36px;
}

.proof-card {
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: 14px;
  padding: 18px;
}

.pc-stars {
  display: flex;
  gap: 2px;
  margin-bottom: 8px;
  font-size: 13px;
  color: #f59e0b;
}

.pc-quote {
  font-size: 13px;
  color: #2a5062;
  line-height: 1.6;
  font-style: italic;
  margin-bottom: 12px;
}

.pc-author {
  display: flex;
  align-items: center;
  gap: 9px;
}

.pc-av {
  width: 32px;
  height: 32px;
  border-radius: 50%;
  background: var(--grad);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 11px;
  font-weight: 800;
  color: #fff;
  flex-shrink: 0;
}

.pc-name {
  font-size: 13px;
  font-weight: 700;
  color: var(--primary);
}

.pc-role {
  font-size: 11px;
  color: var(--ts);
}

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

.ps-item {
  background: #fff;
  border: 1px solid var(--border);
  border-radius: 10px;
  padding: 14px 12px;
  text-align: center;
  box-shadow: var(--s-sm);
}

.ps-num {
  font-family: "DM Serif Display", serif;
  font-size: 22px;
  color: var(--primary);
}

.ps-label {
  font-size: 11px;
  color: var(--ts);
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.04em;
  margin-top: 2px;
}

/* RIGHT — FORM CARD */
.form-card-book {
  background: #fff;
  border: 1.5px solid var(--border);
  border-radius: 20px;
  box-shadow: var(--s-lg);
  overflow: hidden;
  position: sticky;
  top: calc(var(--nh) + 20px);
}

.form-card-header {
  background: var(--primary);
  padding: 24px 28px;
}

.fch-title {
  font-family: "DM Serif Display", serif;
  font-size: 21px;
  font-weight: 400;
  color: #fff;
  margin-bottom: 4px;
}

.fch-sub {
  font-size: 13px;
  color: rgba(255, 255, 255, 0.65);
}

.form-card-body {
  padding: 28px;
}

/* TIME SLOTS */
.slot-label {
  font-size: 12px;
  font-weight: 700;
  color: var(--tp);
  margin-bottom: 10px;
  text-transform: uppercase;
  letter-spacing: 0.06em;
}

.slot-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 7px;
  margin-bottom: 20px;
}

.slot-btn {
  padding: 8px 4px;
  border: 1.5px solid var(--border);
  border-radius: 9px;
  background: #fff;
  font-size: 12px;
  font-weight: 600;
  color: var(--ts);
  cursor: pointer;
  text-align: center;
  transition: 0.15s;
  font-family: inherit;
}

.slot-btn:hover {
  border-color: var(--teal);
  color: var(--primary);
  background: var(--tint);
}

.slot-btn.active {
  border-color: var(--teal);
  background: var(--tint);
  color: var(--primary);
}

.slot-btn.taken {
  opacity: 0.4;
  cursor: not-allowed;
  text-decoration: line-through;
}

/* Date picker row */
.date-row {
  display: flex;
  gap: 7px;
  overflow-x: auto;
  padding-bottom: 4px;
  margin-bottom: 20px;
  scrollbar-width: none;
}

.date-row::-webkit-scrollbar {
  display: none;
}

.date-btn {
  flex-shrink: 0;
  display: flex;
  flex-direction: column;
  align-items: center;
  padding: 10px 12px;
  border: 1.5px solid var(--border);
  border-radius: 10px;
  background: #fff;
  cursor: pointer;
  transition: 0.15s;
  min-width: 52px;
}

.date-btn:hover {
  border-color: var(--teal);
  background: var(--tint);
}

.date-btn.active {
  border-color: var(--teal);
  background: var(--primary);
}

.date-btn.active .db-day,
.date-btn.active .db-num {
  color: #fff;
}

.db-day {
  font-size: 10px;
  font-weight: 700;
  color: var(--ts);
  text-transform: uppercase;
  letter-spacing: 0.05em;
}

.db-num {
  font-family: "DM Serif Display", serif;
  font-size: 18px;
  color: var(--tp);
  line-height: 1.1;
  margin-top: 2px;
}

.btn-book {
  width: 100%;
  padding: 14px;
  background: var(--grad);
  color: #fff;
  font-size: 15px;
  font-weight: 700;
  border: none;
  border-radius: 11px;
  cursor: pointer;
  font-family: inherit;
  transition: 0.15s;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  margin-top: 18px;
}

.btn-book:hover {
  transform: scale(1.01);
  box-shadow: 0 6px 22px rgba(52, 174, 147, 0.4);
}

.btn-book:disabled {
  opacity: 0.6;
  cursor: not-allowed;
  transform: none;
}

.form-note {
  font-size: 11px;
  color: var(--ts);
  text-align: center;
  margin-top: 10px;
}

/* Confirmation state */
.confirm-state {
  display: none;
  flex-direction: column;
  align-items: center;
  text-align: center;
  padding: 32px 24px;
  gap: 14px;
}

.confirm-icon {
  width: 64px;
  height: 64px;
  border-radius: 50%;
  background: var(--grad);
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 4px;
}

.confirm-title {
  font-family: "DM Serif Display", serif;
  font-size: 22px;
  color: var(--primary);
}

.confirm-detail {
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: 12px;
  padding: 16px 20px;
  width: 100%;
  text-align: left;
}

.cd-row {
  display: flex;
  justify-content: space-between;
  align-items: center;
  font-size: 13px;
  padding: 6px 0;
  border-bottom: 1px solid var(--border);
}

.cd-row:last-child {
  border-bottom: none;
}

.cd-label {
  color: var(--ts);
  font-weight: 600;
}

.cd-val {
  color: var(--primary);
  font-weight: 700;
}

.confirm-sub {
  font-size: 13px;
  color: var(--ts);
  line-height: 1.6;
}

.page-wrap-book {
  max-width: 1200px;
  margin: 0 auto;
  padding: 56px 0 96px;
  display: grid;
  grid-template-columns: 1fr;
  gap: 40px;
  align-items: start;
}

@media (min-width: 900px) {
  .page-wrap-book {
    grid-template-columns: 1fr 400px;
  }
}

.ps-num-book {
  font-family: "DM Serif Display", serif;
  font-size: 22px;
  color: var(--primary);
}

.search-wrap {
  max-width: 500px;
  margin: 0 auto;
  position: relative;
  display: flex;
  align-items: center;
}

.search-icon {
  position: absolute;
  left: 16px;
  color: var(--text-secondary);
  pointer-events: none;
}

.search-input {
  width: 100%;
  padding: 13px 16px 13px 44px;
  font-size: 15px;
  font-family: inherit;
  color: var(--text-primary);
  background: #fff;
  border: 1.5px solid var(--border);
  border-radius: 10px;
  outline: none;
  transition:
    border-color 0.15s,
    box-shadow 0.15s;
}

.search-input::placeholder {
  color: #9bb8c0;
}

.search-input:focus {
  border-color: var(--teal);
  box-shadow: 0 0 0 3px rgba(52, 174, 147, 0.1);
}

/* ── CATEGORY TABS ── */
#categories {
  padding: 0 24px 0;
  position: sticky;
  top: var(--nh);
  z-index: 100;
  background: rgba(255, 255, 255, 0.92);
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
  border-bottom: 1px solid var(--border);
}

.cats-inner {
  max-width: 1200px;
  margin: 0 auto;
  display: flex;
  gap: 0;
  overflow-x: auto;
  scrollbar-width: none;
}

.cats-inner::-webkit-scrollbar {
  display: none;
}

.cat-btn-blog {
  flex-shrink: 0;
  background: none;
  border: none;
  cursor: pointer;
  font-family: inherit;
  font-size: 13px;
  font-weight: 600;
  color: var(--text-secondary);
  padding: 14px 18px;
  position: relative;
  transition: color 0.15s;
  white-space: nowrap;
}

.cat-btn-blog::after {
  content: "";
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  height: 2.5px;
  background: var(--gradient);
  border-radius: 2px 2px 0 0;
  transform: scaleX(0);
  transition: transform 0.2s;
}

.cat-btn-blog.active {
  color: var(--primary);
}

.cat-btn-blog.active::after {
  transform: scaleX(1);
}

.cat-btn-blog:hover {
  color: var(--primary);
}

/* ── FEATURED ── */
#featured {
  padding: 64px 0 0;
}

.featured-card {
  display: grid;
  grid-template-columns: 1fr;
  background: #fff;
  border: 1px solid var(--border);
  border-radius: 16px;
  overflow: hidden;
  box-shadow: 0 2px 12px rgba(4, 62, 84, 0.05);
  transition: box-shadow 0.2s;
}

.featured-card:hover {
  box-shadow: 0 8px 32px rgba(4, 62, 84, 0.1);
}

@media (min-width: 768px) {
  .featured-card {
    grid-template-columns: 1fr 1fr;
  }
}

.featured-img {
  min-height: 260px;
  background: linear-gradient(135deg, #d4f0e0 0%, #a8e4c8 40%, #5cc9a7 100%);
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
  overflow: hidden;
}

.featured-img-inner {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 12px;
  padding: 24px;
}

.featured-img-icon {
  width: 72px;
  height: 72px;
  border-radius: 18px;
  background: rgba(255, 255, 255, 0.35);
  backdrop-filter: blur(8px);
  display: flex;
  align-items: center;
  justify-content: center;
}

.featured-img-label {
  font-size: 13px;
  font-weight: 700;
  color: rgba(4, 62, 84, 0.7);
  text-align: center;
  letter-spacing: 0.01em;
}

.featured-img-bars {
  display: flex;
  align-items: flex-end;
  gap: 5px;
  margin-top: 4px;
}

.featured-img-bar {
  width: 10px;
  border-radius: 3px 3px 0 0;
  background: rgba(255, 255, 255, 0.5);
}

.featured-body {
  padding: 40px 36px;
  display: flex;
  flex-direction: column;
  justify-content: center;
  gap: 16px;
}

.featured-meta {
  display: flex;
  align-items: center;
  gap: 10px;
}

.cat-badge {
  display: inline-block;
  padding: 3px 10px;
  background: var(--tint);
  border: 1px solid var(--border);
  color: var(--teal);
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.05em;
  text-transform: uppercase;
  border-radius: 100px;
}

.art-date {
  font-size: 12px;
  color: var(--text-secondary);
  font-weight: 500;
}

.featured-title {
  font-size: clamp(20px, 2.5vw, 26px);
  font-weight: 800;
  color: var(--primary);
  line-height: 1.25;
  letter-spacing: -0.01em;
}

.featured-desc {
  font-size: 15px;
  color: var(--text-secondary);
  line-height: 1.7;
}

.btn-read {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  background: var(--gradient);
  color: #fff;
  font-size: 14px;
  font-weight: 700;
  font-family: inherit;
  padding: 10px 20px;
  border-radius: 8px;
  border: none;
  cursor: pointer;
  text-decoration: none;
  width: fit-content;
  transition:
    transform 0.15s,
    box-shadow 0.15s;
}

.btn-read:hover {
  transform: scale(1.02);
  box-shadow: 0 4px 14px rgba(52, 174, 147, 0.35);
}

/* ── BLOG GRID ── */
#blog-grid {
  padding: 56px 24px 96px;
}

.grid-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 32px;
  flex-wrap: wrap;
  gap: 12px;
}

.grid-header h2 {
  font-size: 22px;
  font-weight: 800;
}

.results-count {
  font-size: 13px;
  color: var(--text-secondary);
  font-weight: 500;
}

.articles-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 24px;
}

@media (min-width: 600px) {
  .articles-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (min-width: 960px) {
  .articles-grid {
    grid-template-columns: repeat(3, 1fr);
  }
}

.article-card {
  background: #fff;
  border: 1px solid var(--border);
  border-radius: 14px;
  overflow: hidden;
  box-shadow: 0 1px 5px rgba(4, 62, 84, 0.04);
  transition:
    transform 0.2s,
    box-shadow 0.2s;
  display: flex;
  flex-direction: column;
}

.article-card:hover {
  transform: translateY(-3px);
  box-shadow: 0 8px 28px rgba(4, 62, 84, 0.09);
}

.article-thumb {
  height: 200px;
  position: relative;
  overflow: hidden;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 0;
}

.thumb-1 {
  background: linear-gradient(135deg, #d4f0e0 0%, #8ad8a3 100%);
}

.thumb-2 {
  background: linear-gradient(135deg, #e0f4f0 0%, #74c9b5 100%);
}

.thumb-3 {
  background: linear-gradient(135deg, #fce8d4 0%, #f4a96a 100%);
}

.thumb-4 {
  background: linear-gradient(135deg, #dde8f8 0%, #7ba8e8 100%);
}

.thumb-5 {
  background: linear-gradient(135deg, #f0e8fc 0%, #b07be8 100%);
}

.thumb-6 {
  background: linear-gradient(135deg, #f8f0d4 0%, #e8c56a 100%);
}

.thumb-icon {
  opacity: 0.7;
}

.thumb-tag {
  position: absolute;
  top: 12px;
  left: 12px;
  background: rgba(255, 255, 255, 0.85);
  backdrop-filter: blur(6px);
  font-size: 10px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.06em;
  padding: 3px 10px;
  border-radius: 100px;
  color: #043e54;
}

.article-meta {
  display: flex;
  align-items: center;
  gap: 8px;
  flex-wrap: wrap;
}

.article-title {
  font-size: 16px;
  font-weight: 700;
  color: var(--primary);
  line-height: 1.35;
  letter-spacing: -0.01em;
}

.article-excerpt {
  font-size: 13px;
  color: var(--text-secondary);
  line-height: 1.6;
  flex: 1;
}

.btn-read-more {
  display: inline-flex;
  align-items: center;
  gap: 5px;
  font-size: 13px;
  font-weight: 700;
  color: var(--teal);
  text-decoration: none;
  margin-top: 4px;
  transition: gap 0.15s;
}

.btn-read-more:hover {
  gap: 8px;
}

/* hide/show for filter */
.article-card[data-hidden="true"] {
  display: none;
}

/* ── NEWSLETTER ── */
#newsletter {
  background: var(--surface);
  padding: 80px 24px;
  border-top: 1px solid var(--border);
}

.newsletter-inner {
  max-width: 560px;
  margin: 0 auto;
  text-align: center;
}

.newsletter-icon {
  width: 52px;
  height: 52px;
  border-radius: 14px;
  background: var(--gradient);
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 20px;
}

#newsletter h2 {
  margin-bottom: 12px;
}

#newsletter .subtext {
  margin-bottom: 32px;
}

.newsletter-form {
  display: flex;
  gap: 10px;
  flex-wrap: wrap;
  justify-content: center;
}

.email-input {
  flex: 1;
  min-width: 220px;
  padding: 12px 16px;
  font-size: 14px;
  font-family: inherit;
  color: var(--text-primary);
  background: #fff;
  border: 1.5px solid var(--border);
  border-radius: 9px;
  outline: none;
  transition:
    border-color 0.15s,
    box-shadow 0.15s;
}

.email-input::placeholder {
  color: #9bb8c0;
}

.email-input:focus {
  border-color: var(--teal);
  box-shadow: 0 0 0 3px rgba(52, 174, 147, 0.1);
}

.btn-subscribe {
  background: var(--gradient);
  color: #fff;
  font-size: 14px;
  font-weight: 700;
  font-family: inherit;
  padding: 12px 22px;
  border-radius: 9px;
  border: none;
  cursor: pointer;
  transition:
    transform 0.15s,
    box-shadow 0.15s;
  white-space: nowrap;
}

.btn-subscribe:hover {
  transform: scale(1.02);
  box-shadow: 0 4px 14px rgba(52, 174, 147, 0.35);
}

.newsletter-note {
  font-size: 12px;
  color: var(--text-secondary);
  margin-top: 12px;
}

.article-body-blog {
  padding: 1rem;
}

/* ── NO RESULTS ── */
.no-results {
  display: none;
  grid-column: 1 / -1;
  text-align: center;
  padding: 60px 20px;
  color: var(--text-secondary);
  font-size: 15px;
}

.no-results.show {
  display: block;
}

/* ── BREADCRUMB ── */
.breadcrumb-blog-post {
  padding: 18px 0 0;
  max-width: 1200px;
  margin: 0 auto;
  display: flex;
  align-items: center;
  gap: 8px;
  flex-wrap: wrap;
}

.bc-item {
  font-size: 13px;
  color: var(--muted);
  text-decoration: none;
  transition: color 0.15s;
}

.bc-item:hover {
  color: var(--primary);
}

.bc-sep {
  font-size: 13px;
  color: var(--border);
}

.bc-current {
  font-size: 13px;
  color: var(--tp);
  font-weight: 500;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
  max-width: 300px;
}

/* ── HERO ── */
.post-hero {
  padding: 32px 0 0;
}

.post-hero-inner {
  max-width: 1200px;
  margin: 0 auto;
}

.post-hero-top {
  display: flex;
  align-items: center;
  gap: 10px;
  flex-wrap: wrap;
  margin-bottom: 20px;
}

.cat-pill {
  display: inline-flex;
  align-items: center;
  gap: 5px;
  background: var(--tint);
  border: 1px solid rgba(52, 174, 147, 0.3);
  color: var(--teal);
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.05em;
  text-transform: uppercase;
  padding: 4px 12px;
  border-radius: 100px;
  text-decoration: none;
  transition: 0.15s;
}

.cat-pill:hover {
  background: rgba(52, 174, 147, 0.12);
}

.cat-pill::before {
  content: "";
  width: 5px;
  height: 5px;
  background: var(--teal);
  border-radius: 50%;
}

.read-time {
  font-size: 12px;
  color: var(--ts);
  font-weight: 500;
}

.post-title {
  font-family: "DM Serif Display", serif;
  font-size: clamp(28px, 4.5vw, 52px);
  font-weight: 400;
  line-height: 1.1;
  letter-spacing: -0.02em;
  color: var(--primary);
  max-width: 860px;
  margin-bottom: 20px;
}

.post-desc {
  font-size: clamp(15px, 1.6vw, 17px);
  color: var(--ts);
  line-height: 1.75;
  max-width: 720px;
  margin-bottom: 28px;
}

/* Author row */
.author-row {
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 16px;
  padding: 18px 0;
  border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
  margin-bottom: 0;
}

.author-info {
  display: flex;
  align-items: center;
  gap: 12px;
}

.author-av {
  width: 40px;
  height: 40px;
  border-radius: 50%;
  background: var(--grad);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 14px;
  font-weight: 800;
  color: #fff;
  flex-shrink: 0;
}

.author-name {
  font-size: 14px;
  font-weight: 700;
  color: var(--tp);
}

.author-role {
  font-size: 12px;
  color: var(--ts);
}

.post-meta-right {
  display: flex;
  align-items: center;
  gap: 16px;
  flex-wrap: wrap;
}

.meta-item {
  font-size: 12px;
  color: var(--ts);
  display: flex;
  align-items: center;
  gap: 5px;
}

.meta-item svg {
  opacity: 0.6;
}

/* Share buttons */
.share-btns {
  display: flex;
  align-items: center;
  gap: 8px;
}

.share-btn-bl-post {
  width: 32px;
  height: 32px;
  border-radius: 8px;
  display: flex;
  align-items: center;
  justify-content: center;
  border: 1px solid var(--border);
  background: #fff;
  cursor: pointer;
  transition: 0.15s;
  text-decoration: none;
}

.share-btn-bl-post:hover {
  border-color: var(--teal);
  background: var(--tint);
  transform: translateY(-1px);
}

/* ── HERO IMAGE ── */
.post-cover {
  margin: 32px 0 0;
}

.post-cover-inner {
  max-width: 1100px;
  margin: 0 auto;
  padding: 0 24px;
}

.cover-img {
  width: 100%;
  height: clamp(240px, 36vw, 480px);
  border-radius: 18px;
  overflow: hidden;
  background: linear-gradient(135deg, #d4f0e0 0%, #043e54 100%);
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
}

.cover-illustration {
  position: absolute;
  inset: 0;
  display: flex;
  align-items: center;
  justify-content: center;
}

.cover-caption {
  font-size: 12px;
  color: var(--ts);
  text-align: center;
  margin-top: 10px;
  font-style: italic;
}

/* ── MAIN LAYOUT ── */
.post-layout {
  max-width: 1200px;
  margin: 48px auto 0;
  padding: 0 0 96px;
  display: grid;
  grid-template-columns: 1fr;
  gap: 48px;
}

@media (min-width: 900px) {
  .post-layout {
    grid-template-columns: 1fr 300px;
  }
}

.sidebar-widget {
  background: #fff;
  border: 1px solid var(--border);
  border-radius: 14px;
  padding: 20px;
  box-shadow: var(--s-sm);
}

.sw-title {
  font-size: 12px;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: 0.06em;
  color: var(--ts);
  margin-bottom: 14px;
}

.toc-sidebar-list {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 2px;
}

.toc-sidebar-item a {
  display: flex;
  align-items: flex-start;
  gap: 8px;
  font-size: 13px;
  color: var(--ts);
  text-decoration: none;
  padding: 5px 8px;
  border-radius: 7px;
  line-height: 1.4;
  transition: 0.15s;
}

.toc-sidebar-item a:hover,
.toc-sidebar-item.active a {
  color: var(--primary);
  background: var(--tint);
}

.toc-sidebar-item.active a {
  font-weight: 600;
}

.toc-sidebar-item a::before {
  content: "";
  width: 4px;
  height: 4px;
  border-radius: 50%;
  background: var(--border);
  flex-shrink: 0;
  margin-top: 7px;
  transition: background 0.15s;
}

.toc-sidebar-item.active a::before {
  background: var(--teal);
}

.toc-sidebar-item.h3 a {
  padding-left: 20px;
  font-size: 12px;
}

/* Progress widget */
.progress-widget {
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.pw-bar-wrap {
  background: var(--surface);
  border-radius: 100px;
  height: 6px;
  overflow: hidden;
}

.pw-bar {
  height: 100%;
  background: var(--grad);
  border-radius: 100px;
  width: 0%;
  transition: width 0.2s;
}

.pw-pct {
  font-size: 13px;
  font-weight: 700;
  color: var(--tp);
}

.pw-label {
  font-size: 12px;
  color: var(--ts);
}

.sidebar-bl-post {
  display: flex;
  flex-direction: column;
  gap: 24px;
}

/* TOC inline (mobile) */
.toc-inline {
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: 14px;
  padding: 20px 22px;
  margin-bottom: 36px;
  display: block;
}

@media (min-width: 900px) {
  .toc-inline {
    display: none;
  }
}

.toc-title {
  font-size: 13px;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: 0.06em;
  color: var(--ts);
  margin-bottom: 14px;
}

.toc-list {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 8px;
}

.toc-item a {
  font-size: 13px;
  color: var(--ts);
  text-decoration: none;
  display: flex;
  align-items: flex-start;
  gap: 8px;
  line-height: 1.4;
  transition: color 0.15s;
}

.toc-item a:hover {
  color: var(--primary);
}

.toc-item a::before {
  content: "";
  width: 4px;
  height: 4px;
  border-radius: 50%;
  background: var(--teal);
  flex-shrink: 0;
  margin-top: 6px;
}

.toc-item.h3 a {
  padding-left: 16px;
  font-size: 12px;
}

/* Stat highlight */
.stat-highlight {
  display: grid;
  grid-template-columns: 1fr;
  gap: 14px;
  margin: 28px 0;
}

@media (min-width: 560px) {
  .stat-highlight {
    grid-template-columns: repeat(3, 1fr);
  }
}

.sh-card {
  background: #fff;
  border: 1px solid var(--border);
  border-radius: 12px;
  padding: 18px 16px;
  text-align: center;
  position: relative;
  overflow: hidden;
  box-shadow: var(--s-sm);
}

.sh-card::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 3px;
  background: var(--grad);
}

.sh-v {
  font-family: "DM Serif Display", serif;
  font-size: 32px;
  color: var(--primary);
  line-height: 1;
}

.sh-l {
  font-size: 12px;
  color: var(--ts);
  font-weight: 600;
  margin-top: 5px;
  line-height: 1.4;
}

.prose ul,
.prose ol {
  padding-left: 22px;
  margin-bottom: 20px;
  display: flex;
  flex-direction: column;
  gap: 8px;
}

.prose li {
  font-size: clamp(15px, 1.5vw, 16.5px);
  color: #2a5062;
  line-height: 1.75;
}

.prose li::marker {
  color: var(--teal);
}

.prose hr {
  border: none;
  border-top: 1px solid var(--border);
  margin: 40px 0;
}

.callout-warning {
  background: #fef9c3;
  border-left-color: #f59e0b;
}

.callout-warning p {
  color: #92400e !important;
}

.callout-danger {
  background: #fef2f2;
  border-left-color: #ef4444;
}

.callout-danger p {
  color: #991b1b !important;
}

/* Inline image / chart placeholder */
.post-img {
  margin: 32px 0;
}

.post-img-inner {
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: 14px;
  padding: 28px;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 16px;
}

.chart-bars {
  display: flex;
  align-items: flex-end;
  gap: 6px;
  height: 80px;
}

.chart-bar {
  border-radius: 4px 4px 0 0;
  min-width: 18px;
  flex: 1;
}

.post-img-caption {
  font-size: 12px;
  color: var(--ts);
  text-align: center;
  font-style: italic;
}

/* Tag list */
.post-tags {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin-top: 40px;
  padding-top: 28px;
  border-top: 1px solid var(--border);
}

.post-tag {
  font-size: 12px;
  font-weight: 600;
  color: var(--ts);
  background: var(--surface);
  border: 1px solid var(--border);
  padding: 4px 12px;
  border-radius: 100px;
  text-decoration: none;
  transition: 0.15s;
}

.post-tag:hover {
  color: var(--teal);
  border-color: rgba(52, 174, 147, 0.4);
  background: var(--tint);
}

/* Author bio card */
.author-bio {
  margin-top: 40px;
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: 16px;
  padding: 24px;
  display: flex;
  gap: 16px;
  align-items: flex-start;
  flex-wrap: wrap;
}

.author-bio-av {
  width: 56px;
  height: 56px;
  border-radius: 50%;
  background: var(--grad);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 20px;
  font-weight: 900;
  color: #fff;
  flex-shrink: 0;
}

.author-bio-body {
  flex: 1;
  min-width: 180px;
}

.author-bio-name {
  font-size: 15px;
  font-weight: 800;
  color: var(--primary);
  margin-bottom: 4px;
}

.author-bio-role {
  font-size: 12px;
  font-weight: 600;
  color: var(--teal);
  margin-bottom: 8px;
}

.author-bio-text {
  font-size: 13px;
  color: var(--ts);
  line-height: 1.65;
}

/* ── RELATED ARTICLES SECTION ── */
#related {
  padding: 64px 0 80px;
  background: var(--surface);
  border-top: 1px solid var(--border);
}

.related-inner {
  max-width: 1200px;
  margin: 0 auto;
}

.related-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 32px;
  flex-wrap: wrap;
  gap: 12px;
}

.related-header h2 {
  font-family: "DM Serif Display", serif;
  font-size: clamp(22px, 2.8vw, 30px);
  font-weight: 400;
  color: var(--primary);
}

.related-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 20px;
}

@media (min-width: 560px) {
  .related-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (min-width: 900px) {
  .related-grid {
    grid-template-columns: repeat(3, 1fr);
  }
}

.rel-card {
  background: #fff;
  border: 1px solid var(--border);
  border-radius: 14px;
  overflow: hidden;
  box-shadow: var(--s-sm);
  display: flex;
  flex-direction: column;
  text-decoration: none;
  transition: 0.2s;
}

.rel-card:hover {
  transform: translateY(-3px);
  box-shadow: var(--s-md);
  border-color: rgba(52, 174, 147, 0.3);
}

.rel-thumb {
  height: 160px;
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
  overflow: hidden;
}

.rel-thumb-1 {
  background: linear-gradient(135deg, #d4f0e0, #89d9a8);
}

.rel-thumb-2 {
  background: linear-gradient(135deg, #dde8f8, #7ba8e8);
}

.rel-thumb-3 {
  background: linear-gradient(135deg, #fce8d4, #f4a96a);
}

.rel-thumb-4 {
  background: linear-gradient(135deg, #f0e8fc, #b07be8);
}

.rel-thumb-5 {
  background: linear-gradient(135deg, #f8f0d4, #e8c56a);
}

.rel-thumb-icon {
  width: 44px;
  height: 44px;
  background: rgba(255, 255, 255, 0.4);
  backdrop-filter: blur(6px);
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
}

.rel-body {
  padding: 18px;
  flex: 1;
  display: flex;
  flex-direction: column;
  gap: 8px;
}

.rel-cat {
  display: inline-flex;
  align-items: center;
  gap: 4px;
  background: var(--tint);
  border: 1px solid rgba(52, 174, 147, 0.3);
  color: var(--teal);
  font-size: 10px;
  font-weight: 700;
  letter-spacing: 0.05em;
  text-transform: uppercase;
  padding: 3px 9px;
  border-radius: 100px;
  width: fit-content;
}

.rel-title {
  font-size: 14px;
  font-weight: 700;
  color: var(--primary);
  line-height: 1.35;
  letter-spacing: -0.01em;
  flex: 1;
}

.rel-excerpt {
  font-size: 12px;
  color: var(--ts);
  line-height: 1.55;
}

.rel-link {
  font-size: 12px;
  font-weight: 700;
  color: var(--teal);
  display: inline-flex;
  align-items: center;
  gap: 4px;
  margin-top: auto;
  transition: gap 0.15s;
}

.rel-link:hover {
  gap: 7px;
}

.cta-widget {
  background: var(--primary);
  border: none;
  text-align: center;
}

.cta-widget .sw-title {
  color: rgba(255, 255, 255, 0.6);
}

.cta-widget-title {
  font-family: "DM Serif Display", serif;
  font-size: 19px;
  font-weight: 400;
  color: #fff;
  line-height: 1.3;
  margin-bottom: 10px;
}

.cta-widget-sub {
  font-size: 13px;
  color: rgba(255, 255, 255, 0.7);
  margin-bottom: 16px;
  line-height: 1.55;
}

/* Newsletter widget */
.nl-input {
  width: 100%;
  padding: 10px 13px;
  border: 1.5px solid var(--border);
  border-radius: 8px;
  font-size: 13px;
  font-family: inherit;
  outline: none;
  color: var(--tp);
  margin-bottom: 8px;
  transition: 0.15s;
}

.nl-input:focus {
  border-color: var(--teal);
  box-shadow: 0 0 0 3px rgba(52, 174, 147, 0.12);
}

.nl-btn {
  width: 100%;
  padding: 10px;
  background: var(--grad);
  color: #fff;
  font-size: 13px;
  font-weight: 700;
  border: none;
  border-radius: 8px;
  cursor: pointer;
  font-family: inherit;
  transition: 0.15s;
}

.nl-btn:hover {
  opacity: 0.9;
}

.nl-note {
  font-size: 11px;
  color: var(--ts);
  text-align: center;
  margin-top: 7px;
}

/* Related posts widget */
.related-post {
  display: flex;
  gap: 12px;
  align-items: flex-start;
  padding: 10px 0;
  border-bottom: 1px solid var(--border);
}

.related-post:last-child {
  border-bottom: none;
  padding-bottom: 0;
}

.rp-thumb {
  width: 52px;
  height: 44px;
  border-radius: 8px;
  flex-shrink: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 18px;
}

.rp-title {
  font-size: 13px;
  font-weight: 600;
  color: var(--tp);
  line-height: 1.35;
  text-decoration: none;
  transition: color 0.15s;
}

.rp-title:hover {
  color: var(--teal);
}

.rp-meta {
  font-size: 11px;
  color: var(--ts);
  margin-top: 3px;
}

/* Progress reading bar */
.read-progress {
  position: fixed;
  top: var(--nh);
  left: 0;
  right: 0;
  height: 3px;
  background: var(--border);
  z-index: 999;
}

.read-progress-fill {
  height: 100%;
  background: var(--grad);
  width: 0%;
  transition: width 0.1s linear;
  border-radius: 0 2px 2px 0;
}

/* ── DOCS LAYOUT ── */
.docs-wrap {
  display: grid;
  grid-template-columns: var(--sb-w) 1fr;
  min-height: 100vh;
  /* padding-top: var(--nh); */
}

@media (min-width: 1100px) {
  .docs-wrap {
    grid-template-columns: var(--sb-w) 1fr var(--ex-w);
  }
}

/* ── LEFT SIDEBAR ── */
.docs-sidebar {
  position: sticky;
  top: var(--nh);
  height: calc(100vh - var(--nh));
  overflow-y: auto;
  background: var(--dark);
  border-right: 1px solid var(--dark-border);
  padding: 24px 0 40px;
  scrollbar-width: thin;
  scrollbar-color: rgba(255, 255, 255, 0.1) transparent;
}

.docs-sidebar::-webkit-scrollbar {
  width: 4px;
}

.docs-sidebar::-webkit-scrollbar-thumb {
  background: rgba(255, 255, 255, 0.1);
  border-radius: 2px;
}

.sb-section {
  margin-bottom: 8px;
}

.sb-section-title {
  font-size: 10px;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: 0.09em;
  color: rgba(255, 255, 255, 0.25);
  padding: 14px 20px 6px;
  display: block;
}

.sb-link {
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 13px;
  font-weight: 500;
  color: rgba(255, 255, 255, 0.5);
  text-decoration: none;
  padding: 7px 20px;
  transition: 0.12s;
  border-left: 2px solid transparent;
  cursor: pointer;
}

.sb-link:hover {
  color: rgba(255, 255, 255, 0.85);
  background: rgba(255, 255, 255, 0.04);
}

.sb-link.active {
  color: #fff;
  background: rgba(52, 174, 147, 0.08);
  border-left-color: var(--teal);
  font-weight: 600;
}

.sb-method {
  font-family: "JetBrains Mono", monospace;
  font-size: 9px;
  font-weight: 700;
  padding: 1px 5px;
  border-radius: 3px;
  flex-shrink: 0;
}

.m-get {
  background: rgba(22, 163, 74, 0.2);
  color: #4ade80;
}

.m-post {
  background: rgba(59, 130, 246, 0.2);
  color: #93c5fd;
}

.m-delete {
  background: rgba(239, 68, 68, 0.2);
  color: #fca5a5;
}

.m-patch {
  background: rgba(245, 158, 11, 0.2);
  color: #fcd34d;
}

/* ── MAIN CONTENT ── */
.docs-content {
  min-width: 0;
  padding: 40px 48px 96px;
  background: #fff;
}

@media (max-width: 900px) {
  .docs-content {
    padding: 32px 20px 80px;
  }
}

/* Section anchors */
.doc-section {
  margin-bottom: 64px;
  padding-bottom: 64px;
  border-bottom: 1px solid var(--border);
  scroll-margin-top: calc(var(--nh) + 20px);
}

.doc-section:last-child {
  border-bottom: none;
}

.ds-tag {
  font-family: "JetBrains Mono", monospace;
  font-size: 11px;
  font-weight: 600;
  color: var(--teal);
  letter-spacing: 0.07em;
  text-transform: uppercase;
  margin-bottom: 10px;
  display: block;
}

.ds-title {
  font-family: "DM Serif Display", serif;
  font-size: clamp(22px, 2.5vw, 30px);
  font-weight: 400;
  color: var(--primary);
  margin-bottom: 12px;
  line-height: 1.2;
}

.ds-desc {
  font-size: 14.5px;
  color: #2a5062;
  line-height: 1.82;
  margin-bottom: 24px;
}

.ds-desc p {
  margin-bottom: 12px;
}

.ds-desc p:last-child {
  margin-bottom: 0;
}

/* Endpoint block */
.endpoint-block {
  margin-bottom: 28px;
  border: 1.5px solid var(--border);
  border-radius: 14px;
  overflow: hidden;
}

.eb-header {
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 14px 18px;
  background: var(--surface);
  border-bottom: 1px solid var(--border);
  cursor: pointer;
  transition: 0.15s;
}

.eb-header:hover {
  background: var(--tint);
}

.eb-method {
  font-family: "JetBrains Mono", monospace;
  font-size: 11px;
  font-weight: 800;
  padding: 3px 8px;
  border-radius: 5px;
  flex-shrink: 0;
}

.get {
  background: #d1fae5;
  color: #065f46;
}

.post {
  background: #dbeafe;
  color: #1e40af;
}

.delete-m {
  background: #fee2e2;
  color: #991b1b;
}

.patch {
  background: #fef3c7;
  color: #92400e;
}

.eb-path {
  font-family: "JetBrains Mono", monospace;
  font-size: 13px;
  font-weight: 500;
  color: var(--primary);
}

.eb-desc {
  font-size: 13px;
  color: var(--ts);
  margin-left: auto;
}

.eb-chevron {
  color: var(--ts);
  transition: transform 0.2s;
  flex-shrink: 0;
}

.endpoint-block.open .eb-chevron {
  transform: rotate(180deg);
}

.eb-body {
  display: none;
  padding: 20px 20px 24px;
  background: #fff;
}

.endpoint-block.open .eb-body {
  display: block;
}

/* Parameter table */
.param-table {
  width: 100%;
  border-collapse: collapse;
  font-size: 13px;
  margin: 16px 0;
}

.param-table th {
  background: var(--surface);
  font-size: 10px;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: 0.06em;
  color: var(--ts);
  padding: 8px 12px;
  text-align: left;
  border: 1px solid var(--border);
}

.param-table td {
  padding: 10px 12px;
  border: 1px solid var(--border);
  vertical-align: top;
  line-height: 1.5;
  color: #2a5062;
}

.param-table tr:nth-child(even) td {
  background: var(--surface);
}

.param-name {
  font-family: "JetBrains Mono", monospace;
  font-size: 12px;
  color: var(--primary);
  font-weight: 600;
}

.param-type {
  font-family: "JetBrains Mono", monospace;
  font-size: 11px;
  color: #7c3aed;
  background: #f5f3ff;
  padding: 1px 6px;
  border-radius: 4px;
}

.param-req {
  font-size: 10px;
  font-weight: 700;
  padding: 1px 6px;
  border-radius: 4px;
  background: #fee2e2;
  color: #991b1b;
}

.param-opt {
  font-size: 10px;
  font-weight: 700;
  padding: 1px 6px;
  border-radius: 4px;
  background: var(--surface);
  color: var(--ts);
  border: 1px solid var(--border);
}

/* inline code */
code {
  font-family: "JetBrains Mono", monospace;
  font-size: 12px;
  background: var(--surface);
  border: 1px solid var(--border);
  padding: 1px 6px;
  border-radius: 4px;
  color: var(--primary);
}

/* response badge */
.res-badge {
  display: inline-flex;
  align-items: center;
  gap: 5px;
  font-family: "JetBrains Mono", monospace;
  font-size: 11px;
  font-weight: 700;
  padding: 3px 10px;
  border-radius: 5px;
  margin-bottom: 10px;
}

.r200 {
  background: #d1fae5;
  color: #065f46;
}

.r400 {
  background: #fef3c7;
  color: #92400e;
}

.r401 {
  background: #fee2e2;
  color: #991b1b;
}

.r429 {
  background: #fce7f3;
  color: #9d174d;
}

/* Auth callout */
.auth-callout {
  background: linear-gradient(
    135deg,
    rgba(52, 174, 147, 0.07),
    rgba(138, 216, 163, 0.05)
  );
  border: 1.5px solid rgba(52, 174, 147, 0.2);
  border-radius: 12px;
  padding: 18px 20px;
  margin: 20px 0;
  display: flex;
  align-items: flex-start;
  gap: 12px;
}

.auth-callout-icon {
  font-size: 20px;
  flex-shrink: 0;
  margin-top: 2px;
}

.auth-callout-text {
  font-size: 13.5px;
  color: var(--tp);
  line-height: 1.65;
}

.auth-callout-text strong {
  color: var(--primary);
}

/* Warning callout */
.warn-callout {
  background: #fffbeb;
  border: 1.5px solid #fde68a;
  border-radius: 12px;
  padding: 16px 18px;
  margin: 20px 0;
  font-size: 13px;
  color: #78350f;
  line-height: 1.65;
}

/* ── RIGHT CODE PANEL ── */
.docs-examples {
  background: var(--code-bg);
  border-left: 1px solid rgba(255, 255, 255, 0.06);
  position: sticky;
  top: var(--nh);
  height: calc(100vh - var(--nh));
  overflow-y: auto;
  display: none;
  scrollbar-width: thin;
  scrollbar-color: rgba(255, 255, 255, 0.1) transparent;
}

@media (min-width: 1100px) {
  .docs-examples {
    display: block;
  }
}

.docs-examples::-webkit-scrollbar {
  width: 4px;
}

.docs-examples::-webkit-scrollbar-thumb {
  background: rgba(255, 255, 255, 0.1);
  border-radius: 2px;
}

.ex-section {
  padding: 32px 24px;
  border-bottom: 1px solid rgba(255, 255, 255, 0.05);
}

.ex-section:last-child {
  border-bottom: none;
}

.ex-lang-tabs {
  display: flex;
  gap: 2px;
  margin-bottom: 14px;
  background: rgba(255, 255, 255, 0.04);
  border-radius: 7px;
  padding: 3px;
}

.ex-tab {
  font-size: 11px;
  font-weight: 600;
  color: rgba(255, 255, 255, 0.4);
  padding: 4px 10px;
  border-radius: 5px;
  cursor: pointer;
  transition: 0.15s;
  border: none;
  background: none;
  font-family: inherit;
}

.ex-tab:hover {
  color: rgba(255, 255, 255, 0.7);
}

.ex-tab.active {
  background: rgba(255, 255, 255, 0.1);
  color: #fff;
}

.ex-title {
  font-size: 11px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.07em;
  color: rgba(255, 255, 255, 0.3);
  margin-bottom: 10px;
}

.code-ex {
  font-family: "JetBrains Mono", monospace;
  font-size: 12px;
  line-height: 1.75;
  color: rgba(255, 255, 255, 0.85);
  white-space: pre;
  overflow-x: auto;
  position: relative;
}

.code-ex::-webkit-scrollbar {
  height: 4px;
}

.code-ex::-webkit-scrollbar-thumb {
  background: rgba(255, 255, 255, 0.1);
}

.ex-copy {
  position: sticky;
  left: calc(100% - 58px);
  top: 0;
  display: inline-block;
  float: right;
  background: rgba(255, 255, 255, 0.07);
  border: 1px solid rgba(255, 255, 255, 0.1);
  color: rgba(255, 255, 255, 0.4);
  font-size: 10px;
  font-weight: 700;
  padding: 3px 8px;
  border-radius: 4px;
  cursor: pointer;
  font-family: inherit;
  transition: 0.15s;
  margin-bottom: 6px;
}

.ex-copy:hover {
  background: rgba(255, 255, 255, 0.12);
  color: #fff;
}

.t-k {
  color: #7dd3fc;
}

.t-s {
  color: #86efac;
}

.t-n {
  color: #fbbf24;
}

.t-c {
  color: rgba(255, 255, 255, 0.3);
}

.t-m {
  color: var(--mint);
}

.t-u {
  color: rgba(255, 255, 255, 0.75);
}

.t-r {
  color: #a78bfa;
}

.t-pr {
  color: var(--teal);
}

/* TOP NAV */
.top-nav {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 200;
  background: rgba(10, 22, 40, 0.95);
  backdrop-filter: blur(16px);
  border-bottom: 1px solid var(--border);
  height: 64px;
  display: flex;
  align-items: center;
}

.top-nav-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  width: 100%;
  padding: 0 20px;
}

.nav-logo {
  display: flex;
  align-items: center;
  gap: 8px;
  font-family: "JetBrains Mono", monospace;
  font-size: 14px;
  font-weight: 700;
  color: var(--bright);
}

.nav-logo svg {
  width: 20px;
  height: 20px;
}

.slash {
  color: var(--border);
  margin: 0 2px;
}

.page-name {
  color: var(--teal);
}

.nav-badge {
  font-family: "JetBrains Mono", monospace;
  font-size: 10px;
  font-weight: 600;
  background: rgba(52, 174, 147, 0.2);
  border: 1px solid rgba(52, 174, 147, 0.4);
  color: var(--teal);
  padding: 2px 7px;
  border-radius: 4px;
  margin-left: 8px;
}

.nav-right {
  display: flex;
  align-items: center;
  gap: 12px;
}

.search-box {
  display: flex;
  align-items: center;
  gap: 8px;
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: 8px;
  padding: 7px 14px;
  width: 220px;
  cursor: text;
  transition: border-color 0.2s;
}

.search-box:hover {
  border-color: rgba(52, 174, 147, 0.4);
}

.search-box svg {
  width: 14px;
  height: 14px;
  fill: none;
  stroke: var(--muted);
  stroke-width: 2;
  stroke-linecap: round;
  flex-shrink: 0;
}

.search-box span {
  font-size: 13px;
  color: var(--muted);
}

.search-kbd {
  margin-left: auto;
  font-family: "JetBrains Mono", monospace;
  font-size: 10px;
  color: var(--muted);
  background: var(--border);
  padding: 2px 5px;
  border-radius: 3px;
}

.btn-key {
  font-size: 13px;
  font-weight: 700;
  background: var(--grad);
  color: #0a1628;
  padding: 7px 16px;
  border-radius: 7px;
}

/* 3-PANEL */
.docs-layout {
  display: grid;
  grid-template-columns: 240px 1fr 400px;
  min-height: calc(100vh - 64px);
  margin-top: 64px;
  overflow: hidden;
  background: var(--bg2);
}

/* LEFT NAV */
.sidebar-left {
  background: var(--dark2);
  border-right: 1px solid var(--border);
  overflow-y: auto;
  padding: 20px 0;
  height: calc(100vh - 64px);
  /* position: sticky; */
  /* top: 64px */
}

.doc-section-api-doc-auth h2 {
  font-size: 22px;
  font-weight: 800;
  color: var(--bright);
  letter-spacing: -0.5px;
  margin-bottom: 12px;
  padding-bottom: 12px;
  border-bottom: 1px solid var(--border);
}

.sidebar-left::-webkit-scrollbar {
  width: 4px;
}

.sidebar-left::-webkit-scrollbar-thumb {
  background: var(--border);
  border-radius: 2px;
}

.nav-section-title {
  font-family: "JetBrains Mono", monospace;
  font-size: 10px;
  font-weight: 700;
  color: var(--muted);
  text-transform: uppercase;
  letter-spacing: 1.2px;
  padding: 10px 20px 4px;
}

.nav-item {
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 13px;
  color: var(--muted);
  padding: 8px 20px;
  cursor: pointer;
  border-left: 2px solid transparent;
  transition: all 0.15s;
}

.nav-item:hover {
  background: rgba(255, 255, 255, 0.04);
  color: var(--text);
}

.nav-item.active {
  color: var(--teal);
  border-left-color: var(--teal);
  background: rgba(52, 174, 147, 0.06);
}

.nm {
  font-family: "JetBrains Mono", monospace;
  font-size: 9px;
  font-weight: 700;
  padding: 1px 5px;
  border-radius: 3px;
  flex-shrink: 0;
}

.nm-get {
  background: rgba(74, 158, 255, 0.15);
  color: var(--blue);
}

.nm-post {
  background: rgba(52, 174, 147, 0.15);
  color: var(--teal);
}

.nm-del {
  background: rgba(239, 68, 68, 0.15);
  color: #f87171;
}

/* MAIN */
.docs-main {
  overflow-y: auto;
  padding: 0;
}

.docs-main::-webkit-scrollbar {
  width: 4px;
}

.docs-main::-webkit-scrollbar-thumb {
  background: var(--border);
  border-radius: 2px;
}

/* PAGE HEADER */
.page-header {
  padding: 40px 48px 32px;
  border-bottom: 1px solid var(--border);
}

.ph-breadcrumb {
  display: flex;
  align-items: center;
  gap: 6px;
  font-family: "JetBrains Mono", monospace;
  font-size: 11px;
  color: var(--muted);
  margin-bottom: 16px;
}

.ph-breadcrumb a {
  color: var(--muted);
  transition: color 0.15s;
}

.ph-breadcrumb a:hover {
  color: var(--teal);
}

.ph-breadcrumb span {
  color: var(--border);
}

.ph-badge {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  font-family: "JetBrains Mono", monospace;
  font-size: 10px;
  font-weight: 600;
  color: var(--teal);
  background: rgba(52, 174, 147, 0.1);
  border: 1px solid rgba(52, 174, 147, 0.2);
  padding: 3px 10px;
  border-radius: 4px;
  margin-bottom: 14px;
  text-transform: uppercase;
  letter-spacing: 0.8px;
}

.page-header h1 {
  font-size: 32px;
  font-weight: 800;
  color: var(--bright);
  letter-spacing: -1.5px;
  margin-bottom: 12px;
}

.page-header p {
  font-size: 15px;
  color: var(--muted);
  line-height: 1.75;
  max-width: 600px;
}

/* ON-PAGE NAV */
.on-page-nav {
  padding: 16px 48px;
  border-bottom: 1px solid var(--line);
  display: flex;
  gap: 4px;
  overflow-x: auto;
  background: rgba(255, 255, 255, 0.02);
}

.opn-link {
  font-family: "JetBrains Mono", monospace;
  font-size: 12px;
  color: var(--muted);
  padding: 5px 12px;
  border-radius: 6px;
  white-space: nowrap;
  cursor: pointer;
  transition: all 0.15s;
  border: 1px solid transparent;
}

.opn-link:hover,
.opn-link.active {
  background: rgba(52, 174, 147, 0.1);
  border-color: rgba(52, 174, 147, 0.2);
  color: var(--teal);
}

/* CONTENT */
.doc-content {
  padding: 40px 48px 80px;
}

.doc-section {
  margin-bottom: 60px;
  scroll-margin-top: 24px;
}

.doc-section h2 {
  font-size: 22px;
  font-weight: 800;
  color: #000;
  letter-spacing: -0.5px;
  margin-bottom: 12px;
  padding-bottom: 12px;
  border-bottom: 1px solid var(--border);
}

.doc-section h3 {
  font-size: 16px;
  font-weight: 700;
  color: var(--text);
  margin: 28px 0 10px;
}

.doc-section p {
  font-size: 14.5px;
  color: var(--muted);
  line-height: 1.8;
  margin-bottom: 14px;
}

.doc-section p code,
.ic {
  font-family: "JetBrains Mono", monospace;
  font-size: 12.5px;
  background: var(--surface2);
  border: 1px solid var(--border);
  padding: 2px 7px;
  border-radius: 4px;
  color: var(--teal);
}

/* ALERT BOXES */
.alert {
  display: flex;
  gap: 12px;
  border-radius: 10px;
  padding: 14px 16px;
  margin: 20px 0;
  font-size: 13.5px;
  line-height: 1.65;
}

.alert svg {
  width: 16px;
  height: 16px;
  fill: none;
  stroke-width: 2;
  stroke-linecap: round;
  flex-shrink: 0;
  margin-top: 1px;
}

.alert-info {
  background: rgba(74, 158, 255, 0.08);
  border: 1px solid rgba(74, 158, 255, 0.2);
  color: var(--blue);
}

.alert-info svg {
  stroke: var(--blue);
}

.alert-warn {
  background: rgba(245, 166, 35, 0.08);
  border: 1px solid rgba(245, 166, 35, 0.2);
  color: var(--orange);
}

.alert-warn svg {
  stroke: var(--orange);
}

.alert-danger {
  background: rgba(255, 107, 107, 0.08);
  border: 1px solid rgba(255, 107, 107, 0.2);
  color: var(--red);
}

.alert-danger svg {
  stroke: var(--red);
}

.alert-success {
  background: rgba(52, 174, 147, 0.08);
  border: 1px solid rgba(52, 174, 147, 0.2);
  color: var(--teal);
}

.alert-success svg {
  stroke: var(--teal);
}

/* CODE BLOCKS */
.code-block {
  background: #060e1d;
  border: 1px solid var(--border);
  border-radius: 12px;
  overflow: hidden;
  margin: 16px 0;
}

.cb-header {
  background: var(--surface);
  padding: 10px 16px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  border-bottom: 1px solid var(--border);
}

.cb-lang {
  font-family: "JetBrains Mono", monospace;
  font-size: 11px;
  font-weight: 600;
  color: var(--teal);
}

.cb-filename {
  font-family: "JetBrains Mono", monospace;
  font-size: 11px;
  color: var(--muted);
}

.cb-copy {
  font-size: 11px;
  color: var(--muted);
  cursor: pointer;
  background: none;
  border: none;
  font-family: "Inter", sans-serif;
  transition: color 0.15s;
  display: flex;
  align-items: center;
  gap: 4px;
}

.cb-copy:hover {
  color: var(--teal);
}

.cb-copy svg {
  width: 12px;
  height: 12px;
  fill: none;
  stroke: currentColor;
  stroke-width: 2;
}

.cb-body {
  padding: 20px;
  font-family: "JetBrains Mono", monospace;
  font-size: 13px;
  line-height: 1.8;
  overflow-x: auto;
}

/* Syntax */
.tk {
  color: var(--blue);
}

.ts {
  color: var(--orange);
}

.tn {
  color: var(--pink);
}

.tb {
  color: #a78bfa;
}

.tc {
  color: rgba(107, 143, 175, 0.55);
  font-style: italic;
}

.to {
  color: var(--muted);
}

.tp {
  color: var(--bright);
}

.tcmt {
  color: #34ae93;
}

/* KEY FORMAT TABLE */
.key-anatomy {
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: 12px;
  padding: 20px;
  margin: 20px 0;
}

.ka-key {
  font-family: "JetBrains Mono", monospace;
  font-size: 18px;
  font-weight: 700;
  color: var(--bright);
  margin-bottom: 16px;
  letter-spacing: 1px;
  word-break: break-all;
}

.ka-segments {
  display: flex;
  gap: 0;
  flex-wrap: wrap;
}

.ka-seg {
  padding: 6px 14px;
  font-family: "JetBrains Mono", monospace;
  font-size: 12px;
  font-weight: 700;
  cursor: pointer;
  transition: opacity 0.2s;
  border-top: 3px solid transparent;
}

.ka-seg:hover {
  opacity: 0.8;
}

.ks-prefix {
  background: rgba(52, 174, 147, 0.15);
  color: var(--teal);
  border-color: var(--teal);
}

.ks-env {
  background: rgba(74, 158, 255, 0.15);
  color: var(--blue);
  border-color: var(--blue);
}

.ks-type {
  background: rgba(245, 166, 35, 0.15);
  color: var(--orange);
  border-color: var(--orange);
}

.ks-secret {
  background: rgba(107, 143, 175, 0.1);
  color: var(--muted);
  border-color: var(--muted);
}

.ka-legend {
  display: flex;
  gap: 20px;
  flex-wrap: wrap;
  margin-top: 14px;
  padding-top: 14px;
  border-top: 1px solid var(--border);
}

.kl-item {
  font-size: 12px;
  display: flex;
  align-items: center;
  gap: 6px;
  color: var(--muted);
}

.kl-dot {
  width: 8px;
  height: 8px;
  border-radius: 2px;
  flex-shrink: 0;
}

/* ERROR TABLE */
.err-table {
  width: 100%;
  border-collapse: collapse;
  margin: 16px 0;
  font-size: 13.5px;
}

.err-table th {
  text-align: left;
  padding: 10px 14px;
  font-family: "JetBrains Mono", monospace;
  font-size: 10.5px;
  font-weight: 700;
  color: var(--muted);
  text-transform: uppercase;
  letter-spacing: 0.8px;
  border-bottom: 1px solid var(--border);
}

.err-table td {
  padding: 12px 14px;
  border-bottom: 1px solid var(--line);
  vertical-align: top;
}

.err-table tr:last-child td {
  border-bottom: none;
}

.err-table tr:hover td {
  background: rgba(255, 255, 255, 0.02);
}

.status-badge {
  font-family: "JetBrains Mono", monospace;
  font-size: 12px;
  font-weight: 700;
  padding: 3px 8px;
  border-radius: 4px;
}

.s200 {
  background: rgba(52, 174, 147, 0.15);
  color: var(--teal);
}

.s400 {
  background: rgba(245, 166, 35, 0.15);
  color: var(--orange);
}

.s401 {
  background: rgba(255, 107, 107, 0.15);
  color: var(--red);
}

.s429 {
  background: rgba(245, 166, 35, 0.15);
  color: var(--orange);
}

.s500 {
  background: rgba(255, 107, 107, 0.15);
  color: var(--red);
}

/* RATE LIMIT VISUAL */
.rl-visual {
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: 14px;
  padding: 24px;
  margin: 20px 0;
}

.rlv-row {
  display: flex;
  align-items: center;
  gap: 16px;
  margin-bottom: 14px;
}

.rlv-row:last-child {
  margin-bottom: 0;
}

.rlv-label {
  font-family: "JetBrains Mono", monospace;
  font-size: 12px;
  color: var(--muted);
  width: 100px;
  flex-shrink: 0;
}

.rlv-bar {
  flex: 1;
  height: 8px;
  background: var(--border);
  border-radius: 4px;
  overflow: hidden;
}

.rlv-fill {
  height: 100%;
  border-radius: 4px;
  background: var(--grad);
}

.rlv-val {
  font-family: "JetBrains Mono", monospace;
  font-size: 12px;
  font-weight: 700;
  color: var(--bright);
  width: 80px;
  text-align: right;
  flex-shrink: 0;
}

/* PAGINATION */
.pagination-section {
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: 12px;
  padding: 24px;
  margin: 20px 0;
}

.pagination-section h4 {
  font-family: "JetBrains Mono", monospace;
  font-size: 11px;
  font-weight: 700;
  color: var(--muted);
  text-transform: uppercase;
  letter-spacing: 0.8px;
  margin-bottom: 14px;
}

.pag-field {
  display: flex;
  align-items: baseline;
  justify-content: space-between;
  padding: 8px 0;
  border-bottom: 1px solid var(--line);
  font-size: 13.5px;
}

.pag-field:last-child {
  border-bottom: none;
}

.pf-name {
  font-family: "JetBrains Mono", monospace;
  font-size: 12.5px;
  color: var(--teal);
}

.pf-type {
  font-family: "JetBrains Mono", monospace;
  font-size: 11px;
  color: var(--muted);
  margin: 0 12px;
}

.pf-desc {
  font-size: 13px;
  color: var(--muted);
}

/* RIGHT CODE PANEL */
.sidebar-right {
  background: #060e1d;
  border-left: 1px solid var(--border);
  overflow-y: auto;
  display: flex;
  flex-direction: column;
}

.sidebar-right::-webkit-scrollbar {
  width: 4px;
}

.sidebar-right::-webkit-scrollbar-thumb {
  background: var(--border);
  border-radius: 2px;
}

.code-panel-section {
  border-bottom: 1px solid var(--border);
}

.cps-header {
  background: var(--dark2);
  padding: 12px 16px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  border-bottom: 1px solid var(--border);
  cursor: pointer;
}

.cps-title {
  font-family: "JetBrains Mono", monospace;
  font-size: 11px;
  font-weight: 700;
  color: var(--muted);
  text-transform: uppercase;
  letter-spacing: 0.8px;
}

.code-tabs {
  display: flex;
  background: rgba(255, 255, 255, 0.03);
  border-bottom: 1px solid var(--border);
}

.ctab {
  font-family: "JetBrains Mono", monospace;
  font-size: 11px;
  font-weight: 600;
  padding: 9px 14px;
  color: var(--muted);
  cursor: pointer;
  white-space: nowrap;
  border-bottom: 2px solid transparent;
  transition: all 0.2s;
}

.ctab:hover {
  color: var(--text);
}

.ctab.active {
  color: var(--teal);
  border-bottom-color: var(--teal);
}

.code-tab-content {
  display: none;
  padding: 18px;
  font-family: "JetBrains Mono", monospace;
  font-size: 12px;
  line-height: 1.8;
}

.code-tab-content.active {
  display: block;
}

.resp-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 10px 16px;
  background: var(--dark2);
  border-bottom: 1px solid var(--border);
}

.resp-title {
  font-family: "JetBrains Mono", monospace;
  font-size: 11px;
  font-weight: 700;
  color: var(--muted);
  text-transform: uppercase;
  letter-spacing: 0.8px;
}

.resp-status {
  font-family: "JetBrains Mono", monospace;
  font-size: 11px;
  font-weight: 700;
  color: var(--teal);
  background: rgba(52, 174, 147, 0.1);
  padding: 3px 8px;
  border-radius: 4px;
}

.resp-body {
  padding: 18px;
  font-family: "JetBrains Mono", monospace;
  font-size: 12px;
  line-height: 1.8;
}

@media (max-width: 1100px) {
  .docs-layout {
    grid-template-columns: 240px 1fr;
  }
}

.sidebar-right-mobile {
  display: none;
}

@media (max-width: 1100px) {
  .sidebar-right {
    display: none;
  }
}

@media (max-width: 768px) {
  .docs-layout {
    grid-template-columns: 1fr;
  }

  .sidebar-left {
    display: none;
  }

  .page-header,
  .doc-content,
  .on-page-nav {
    padding-left: 24px;
    padding-right: 24px;
  }
}

/* ── DOCS RESPONSIVE ── */
@media (max-width: 1100px) {
  .docs-layout {
    grid-template-columns: 220px 1fr 340px;
  }
}

@media (max-width: 900px) {
  .docs-layout {
    grid-template-columns: 200px 1fr;
  }

  .sidebar-right {
    display: none;
  }
}

@media (max-width: 640px) {
  .docs-layout {
    grid-template-columns: 1fr;
    min-height: auto;
  }

  .sidebar-left {
    display: none;
  }

  .docs-main {
    padding: 20px 16px;
  }

  .top-nav-inner {
    padding: 0 16px;
  }

  .search-box {
    display: none;
  }
}

.doc-section-api-doc-auth p {
  font-size: 14.5px;
  color: var(--muted);
  line-height: 1.8;
  margin-bottom: 14px;
}

.doc-section-api-doc-auth h3 {
  color: var(--bright);
}

.about-hero {
  padding: 80px 24px 72px;
  text-align: center;
  background: var(--surface);
  border-bottom: 1px solid var(--border);
  position: relative;
  overflow: hidden;
  text-align: center;
}

.about-hero::before {
  content: "";
  position: absolute;
  width: 600px;
  height: 600px;
  border-radius: 50%;
  background: radial-gradient(
    circle,
    rgba(52, 174, 147, 0.08) 0%,
    transparent 70%
  );
  top: -200px;
  right: -150px;
  pointer-events: none;
}

.about-hero::after {
  content: "";
  position: absolute;
  width: 400px;
  height: 400px;
  border-radius: 50%;
  background: radial-gradient(
    circle,
    rgba(138, 216, 163, 0.07) 0%,
    transparent 70%
  );
  bottom: -100px;
  left: -100px;
  pointer-events: none;
}

.hero-founded {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  margin-top: 32px;
  font-size: 13px;
  color: var(--ts);
  font-weight: 500;
}

/* STATS STRIP */
#stats {
  padding: 48px 24px;
  border-bottom: 1px solid var(--border);
}

.stats-grid {
  max-width: 900px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 2px;
  /* background: var(--border); */
  border-radius: 16px;
  overflow: hidden;
  box-shadow: var(--s-sm);
}

@media (min-width: 600px) {
  .stats-grid {
    grid-template-columns: repeat(4, 1fr);
  }
}

.stat-item {
  background: #fff;
  padding: 28px 20px;
  text-align: center;
}

.stat-num {
  font-family: "DM Serif Display", serif;
  font-size: clamp(28px, 4vw, 40px);
  font-weight: 400;
  color: var(--primary);
  line-height: 1;
}

.stat-unit {
  font-size: 16px;
  color: var(--teal);
}

.stat-label {
  font-size: 12px;
  color: var(--ts);
  font-weight: 600;
  margin-top: 6px;
  text-transform: uppercase;
  letter-spacing: 0.05em;
}

/* STORY */
#story {
  padding: 80px 24px;
}

.story-grid {
  max-width: 1100px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1fr;
  gap: 56px;
  align-items: center;
}

@media (min-width: 860px) {
  .story-grid {
    grid-template-columns: 1fr 1fr;
  }
}

.story-label {
  font-size: 11px;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  color: var(--teal);
  margin-bottom: 14px;
}

.story-title {
  font-family: "DM Serif Display", serif;
  font-size: clamp(26px, 3.5vw, 38px);
  font-weight: 400;
  color: var(--primary);
  line-height: 1.2;
  margin-bottom: 22px;
}

.story-body p {
  font-size: 15px;
  color: #2a5062;
  line-height: 1.82;
  margin-bottom: 16px;
}

.story-body p:last-child {
  margin-bottom: 0;
}

.story-visual {
  background: linear-gradient(
    135deg,
    var(--primary) 0%,
    #0a5c78 60%,
    #34ae93 100%
  );
  border-radius: 20px;
  aspect-ratio: 4/3;
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
  overflow: hidden;
}

.story-visual-inner {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 20px;
  padding: 32px;
}

.sv-year {
  font-family: "DM Serif Display", serif;
  font-size: 80px;
  font-weight: 400;
  color: rgba(255, 255, 255, 0.12);
  line-height: 1;
  position: absolute;
  bottom: 16px;
  right: 24px;
}

.sv-row {
  display: flex;
  gap: 12px;
  flex-wrap: wrap;
  justify-content: center;
}

.sv-chip {
  background: rgba(255, 255, 255, 0.1);
  border: 1px solid rgba(255, 255, 255, 0.15);
  backdrop-filter: blur(6px);
  color: #fff;
  font-size: 12px;
  font-weight: 600;
  padding: 6px 14px;
  border-radius: 100px;
}

.sv-headline {
  font-family: "DM Serif Display", serif;
  font-size: 22px;
  font-weight: 400;
  color: #fff;
  text-align: center;
  line-height: 1.35;
}

/* MISSION / VALUES */
#values {
  padding: 80px 24px;
  background: var(--surface);
  border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
}

.values-inner {
  max-width: 1100px;
  margin: 0 auto;
}

.section-label {
  font-size: 11px;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  color: var(--teal);
  text-align: center;
  margin-bottom: 12px;
}

.section-title {
  font-family: "DM Serif Display", serif;
  font-size: clamp(26px, 3.5vw, 38px);
  font-weight: 400;
  color: var(--primary);
  text-align: center;
  line-height: 1.2;
  margin-bottom: 14px;
}

.section-sub {
  font-size: 15px;
  color: var(--ts);
  text-align: center;
  line-height: 1.7;
  max-width: 560px;
  margin: 0 auto 52px;
}

.values-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 20px;
}

@media (min-width: 600px) {
  .values-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (min-width: 900px) {
  .values-grid {
    grid-template-columns: repeat(3, 1fr);
  }
}

.value-card {
  background: #fff;
  border: 1px solid var(--border);
  border-radius: 16px;
  padding: 28px;
  box-shadow: var(--s-sm);
  transition: 0.2s;
}

.value-card:hover {
  transform: translateY(-3px);
  box-shadow: var(--s-md);
}

.vc-icon {
  width: 48px;
  height: 48px;
  border-radius: 14px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 18px;
  font-size: 22px;
}

.vc-title {
  font-size: 16px;
  font-weight: 800;
  color: var(--primary);
  margin-bottom: 8px;
}

.vc-text {
  font-size: 14px;
  color: var(--ts);
  line-height: 1.7;
}

/* TEAM */
#team {
  padding: 80px 24px;
}

.team-inner {
  max-width: 1100px;
  margin: 0 auto;
}

.team-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 20px;
  margin-top: 52px;
}

@media (min-width: 600px) {
  .team-grid {
    grid-template-columns: repeat(3, 1fr);
  }
}

@media (min-width: 900px) {
  .team-grid {
    grid-template-columns: repeat(4, 1fr);
  }
}

.team-card {
  background: #fff;
  border: 1px solid var(--border);
  border-radius: 16px;
  padding: 24px 20px;
  text-align: center;
  box-shadow: var(--s-sm);
  transition: 0.2s;
}

.team-card:hover {
  transform: translateY(-3px);
  box-shadow: var(--s-md);
  border-color: rgba(52, 174, 147, 0.25);
}

.tc-avatar {
  width: 72px;
  height: 72px;
  border-radius: 50%;
  background: var(--grad);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 22px;
  font-weight: 900;
  color: #fff;
  margin: 0 auto 16px;
  font-family: "DM Serif Display", serif;
}

.tc-name {
  font-size: 15px;
  font-weight: 800;
  color: var(--primary);
  margin-bottom: 4px;
}

.tc-role {
  font-size: 12px;
  color: var(--teal);
  font-weight: 600;
  margin-bottom: 8px;
}

.tc-bio {
  font-size: 12px;
  color: var(--ts);
  line-height: 1.6;
}

/* TIMELINE */
#timeline {
  padding: 80px 24px;
  background: var(--surface);
  border-top: 1px solid var(--border);
}

.timeline-inner {
  max-width: 700px;
  margin: 0 auto;
}

.tl-items {
  margin-top: 48px;
  position: relative;
  padding-left: 24px;
}

.tl-items::before {
  content: "";
  position: absolute;
  left: 7px;
  top: 8px;
  bottom: 8px;
  width: 2px;
  background: var(--border);
}

.tl-item-about {
  position: relative;
  margin-bottom: 36px;
  padding-left: 28px;
}

.tl-item:last-child {
  margin-bottom: 0;
}

.tl-dot {
  position: absolute;
  left: -24px;
  top: 6px;
  width: 16px;
  height: 16px;
  border-radius: 50%;
  background: var(--grad);
  border: 3px solid #fff;
  box-shadow: 0 0 0 2px var(--teal);
}

.tl-year {
  font-size: 11px;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: 0.07em;
  color: var(--teal);
  margin-bottom: 5px;
}

.tl-event {
  font-size: 15px;
  font-weight: 700;
  color: var(--primary);
  margin-bottom: 5px;
}

.tl-detail {
  font-size: 13px;
  color: var(--ts);
  line-height: 1.6;
}

/* CULTURE */
#culture {
  padding: 80px 24px;
  border-top: 1px solid var(--border);
}

.culture-inner {
  max-width: 1100px;
  margin: 0 auto;
}

.culture-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 14px;
  margin-top: 48px;
}

@media (min-width: 600px) {
  .culture-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (min-width: 900px) {
  .culture-grid {
    grid-template-columns: repeat(4, 1fr);
  }
}

.culture-card {
  border-radius: 14px;
  padding: 24px;
  border: 1px solid var(--border);
  position: relative;
  overflow: hidden;
}

.culture-card:nth-child(1) {
  background: linear-gradient(135deg, #d4f0e0, #a8e6c4);
}

.culture-card:nth-child(2) {
  background: linear-gradient(135deg, #dde8f8, #aec8f0);
}

.culture-card:nth-child(3) {
  background: linear-gradient(135deg, #f0e8fc, #d4b8f0);
}

.culture-card:nth-child(4) {
  background: linear-gradient(135deg, #fce8d4, #f4c09a);
}

.cc-num {
  font-family: "DM Serif Display", serif;
  font-size: 48px;
  font-weight: 400;
  color: rgba(4, 62, 84, 0.12);
  position: absolute;
  bottom: 8px;
  right: 14px;
  line-height: 1;
}

.cc-title {
  font-size: 14px;
  font-weight: 800;
  color: var(--primary);
  margin-bottom: 8px;
}

.cc-text {
  font-size: 13px;
  color: var(--tp);
  line-height: 1.6;
  opacity: 0.75;
}

/* PAGE BG — normal block flow */
.page-bg {
  background: var(--surface);
  padding: 64px 24px 80px;
  position: relative;
}

/* dot-grid texture */
.page-bg::before {
  content: "";
  position: absolute;
  inset: 0;
  background-image: radial-gradient(
    circle,
    rgba(4, 62, 84, 0.08) 1px,
    transparent 1px
  );
  background-size: 28px 28px;
  pointer-events: none;
  mask-image: radial-gradient(
    ellipse 80% 80% at 50% 50%,
    #000 30%,
    transparent 100%
  );
  -webkit-mask-image: radial-gradient(
    ellipse 80% 80% at 50% 50%,
    #000 30%,
    transparent 100%
  );
}

/* content column */
.error-inner {
  position: relative;
  z-index: 1;
  max-width: 600px;
  margin: 0 auto;
  text-align: center;
}

/* STATUS BADGE */
.status-badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: #fff;
  border: 1.5px solid #fecaca;
  border-radius: 100px;
  padding: 7px 18px;
  font-size: 12px;
  font-weight: 700;
  color: #b91c1c;
  margin-bottom: 24px;
}

.status-dot {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: #ef4444;
  flex-shrink: 0;
  animation: pulse 1.6s ease-in-out infinite;
}

@keyframes pulse {
  0%,
  100% {
    box-shadow: 0 0 0 0 rgba(239, 68, 68, 0.5);
  }

  50% {
    box-shadow: 0 0 0 6px rgba(239, 68, 68, 0);
  }
}

/* 500 NUMBER with glitch effect */
.num-wrap {
  position: relative;
  display: inline-block;
  margin-bottom: 8px;
  line-height: 1;
}

.error-num-500 {
  font-family: "DM Serif Display", serif;
  font-size: clamp(96px, 15vw, 156px);
  font-weight: 400;
  line-height: 1;
  letter-spacing: -0.04em;
  color: var(--primary);
  display: block;
  position: relative;
}

.error-num-500::before {
  content: "500";
  position: absolute;
  left: 4px;
  top: 0;
  color: rgba(52, 174, 147, 0.3);
  animation: glitch1 5s infinite;
  pointer-events: none;
}

.error-num-500::after {
  content: "500";
  position: absolute;
  left: -4px;
  top: 0;
  color: rgba(239, 68, 68, 0.18);
  animation: glitch2 5s infinite;
  pointer-events: none;
}

@keyframes glitch1 {
  0%,
  93%,
  100% {
    clip-path: none;
    transform: none;
  }

  94% {
    clip-path: polygon(0 25%, 100% 25%, 100% 45%, 0 45%);
    transform: translateX(5px);
  }

  95% {
    clip-path: polygon(0 65%, 100% 65%, 100% 80%, 0 80%);
    transform: translateX(-5px);
  }

  96% {
    clip-path: none;
    transform: none;
  }
}

@keyframes glitch2 {
  0%,
  90%,
  100% {
    clip-path: none;
    transform: none;
  }

  91% {
    clip-path: polygon(0 50%, 100% 50%, 100% 68%, 0 68%);
    transform: translateX(-4px);
  }

  92% {
    clip-path: none;
    transform: none;
  }
}

/* COPY */
.error-title {
  font-family: "DM Serif Display", serif;
  font-size: clamp(20px, 3vw, 28px);
  color: var(--primary);
  font-weight: 400;
  margin-bottom: 10px;
  line-height: 1.25;
}

.error-sub {
  font-size: 15px;
  color: var(--ts);
  line-height: 1.8;
  max-width: 460px;
  margin: 0 auto 32px;
}

/* COUNTDOWN */
.countdown-bar {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: #fff;
  border: 1px solid var(--border);
  border-radius: 100px;
  padding: 8px 18px;
  font-size: 13px;
  color: var(--ts);
  font-weight: 500;
  margin-bottom: 28px;
  box-shadow: var(--s-sm);
}

.countdown-bar strong {
  color: var(--primary);
  font-variant-numeric: tabular-nums;
}

/* STATUS CARD */
.status-card {
  background: #fff;
  border: 1.5px solid var(--border);
  border-radius: 16px;
  padding: 22px 24px;
  margin: 0 auto 28px;
  max-width: 480px;
  box-shadow: var(--s-sm);
  text-align: left;
}

.sc-title {
  font-size: 11px;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: 0.07em;
  color: var(--ts);
  margin-bottom: 16px;
  display: flex;
  align-items: center;
  gap: 7px;
}

.sc-row {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 10px 0;
  border-bottom: 1px solid var(--border);
  font-size: 13px;
}

.sc-row:last-child {
  border-bottom: none;
  padding-bottom: 0;
}

.sc-service {
  color: var(--ts);
  font-weight: 500;
}

.sc-stat {
  display: flex;
  align-items: center;
  gap: 6px;
  font-size: 12px;
  font-weight: 700;
}

.dot {
  width: 7px;
  height: 7px;
  border-radius: 50%;
  flex-shrink: 0;
}

.ok .dot {
  background: #16a34a;
}

.ok {
  color: #16a34a;
}

.deg .dot {
  background: #d97706;
}

.deg {
  color: #d97706;
}

.down .dot {
  background: #dc2626;
}

.down {
  color: #dc2626;
}

.sc-footer {
  margin-top: 12px;
  font-size: 11px;
  color: var(--ts);
  text-align: right;
}

/* ACTION BUTTONS */
.action-row {
  display: flex;
  gap: 10px;
  justify-content: center;
  flex-wrap: wrap;
  margin-bottom: 24px;
}

.btn-retry {
  display: inline-flex;
  align-items: center;
  gap: 7px;
  background: var(--grad);
  color: #fff;
  font-size: 14px;
  font-weight: 700;
  padding: 12px 24px;
  border-radius: 9px;
  border: none;
  cursor: pointer;
  font-family: inherit;
  transition: 0.15s;
}

.btn-retry:hover {
  transform: scale(1.02);
  box-shadow: 0 5px 18px rgba(52, 174, 147, 0.4);
}

.btn-retry:disabled {
  opacity: 0.55;
  cursor: not-allowed;
  transform: none;
  box-shadow: none;
}

.btn-retry .spin {
  animation: spin 0.75s linear infinite;
}

@keyframes spin {
  to {
    transform: rotate(360deg);
  }
}

.btn-back {
  display: inline-flex;
  align-items: center;
  gap: 7px;
  background: #fff;
  color: var(--ts);
  font-size: 14px;
  font-weight: 600;
  padding: 12px 24px;
  border-radius: 9px;
  border: 1.5px solid var(--border);
  text-decoration: none;
  transition: 0.15s;
}

.btn-back:hover {
  border-color: rgba(52, 174, 147, 0.35);
  color: var(--primary);
  background: var(--tint);
}

/* ERROR ID */
.error-id {
  font-size: 12px;
  color: var(--ts);
  font-family: "SFMono-Regular", Consolas, monospace;
  background: #fff;
  border: 1px solid var(--border);
  border-radius: 7px;
  padding: 7px 14px;
  display: inline-block;
  margin-bottom: 24px;
  letter-spacing: 0.04em;
  box-shadow: var(--s-sm);
}

/* HELP LINKS */
.help-row {
  display: flex;
  gap: 20px;
  justify-content: center;
  flex-wrap: wrap;
}

.help-link {
  display: flex;
  align-items: center;
  gap: 5px;
  color: var(--ts);
  font-size: 13px;
  font-weight: 500;
  text-decoration: none;
  transition: 0.15s;
}

.help-link:hover {
  color: var(--teal);
}

/* blobs stay purely decorative and behind content */
.blob {
  position: absolute;
  border-radius: 50%;
  pointer-events: none;
  z-index: 0;
}

.b1 {
  width: 560px;
  height: 560px;
  background: radial-gradient(
    circle,
    rgba(52, 174, 147, 0.07) 0%,
    transparent 70%
  );
  top: -220px;
  right: -140px;
}

.b2 {
  width: 420px;
  height: 420px;
  background: radial-gradient(
    circle,
    rgba(138, 216, 163, 0.06) 0%,
    transparent 70%
  );
  bottom: -160px;
  left: -100px;
}

/* centred content column */
.error-inner {
  position: relative;
  z-index: 1;
  max-width: 640px;
  margin: 0 auto;
  text-align: center;
}

/* 404 NUMBER */
.num-wrap {
  position: relative;
  display: inline-block;
  margin-bottom: 4px;
  line-height: 1;
}

.error-num {
  font-family: "DM Serif Display", serif;
  font-size: clamp(100px, 16vw, 168px);
  font-weight: 400;
  line-height: 1;
  letter-spacing: -0.04em;
  background: var(--grad);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  display: block;
}

.bee-float {
  position: absolute;
  top: -18px;
  right: -20px;
  animation: buzz 3.2s ease-in-out infinite;
  transform-origin: 50% 50%;
}

@keyframes buzz {
  0%,
  100% {
    transform: translate(0, 0) rotate(-6deg);
  }

  20% {
    transform: translate(3px, -8px) rotate(5deg);
  }

  45% {
    transform: translate(-4px, 4px) rotate(-5deg);
  }

  70% {
    transform: translate(5px, 1px) rotate(7deg);
  }
}

/* BADGE + COPY */
.error-badge {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  background: var(--tint);
  border: 1px solid rgba(52, 174, 147, 0.3);
  color: var(--teal);
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  padding: 4px 12px;
  border-radius: 100px;
  margin-bottom: 16px;
}

.error-title {
  font-family: "DM Serif Display", serif;
  font-size: clamp(22px, 3.5vw, 30px);
  color: var(--primary);
  font-weight: 400;
  margin-bottom: 10px;
  line-height: 1.25;
}

.error-sub {
  font-size: 15px;
  color: var(--ts);
  line-height: 1.8;
  max-width: 440px;
  margin: 0 auto 36px;
}

/* SEARCH BAR */
.error-search {
  display: flex;
  align-items: center;
  max-width: 420px;
  margin: 0 auto 40px;
  background: #fff;
  border: 1.5px solid var(--border);
  border-radius: 11px;
  overflow: hidden;
  box-shadow: var(--s-sm);
  transition: 0.15s;
}

.error-search:focus-within {
  border-color: var(--teal);
  box-shadow: 0 0 0 3px rgba(52, 174, 147, 0.1);
}

.es-icon {
  padding: 0 13px;
  color: var(--ts);
  display: flex;
  align-items: center;
  flex-shrink: 0;
}

.error-search input {
  flex: 1;
  min-width: 0;
  border: none;
  outline: none;
  font-size: 14px;
  font-family: inherit;
  color: var(--tp);
  padding: 13px 0;
  background: transparent;
}

.error-search input::placeholder {
  color: var(--ts);
}

.es-btn {
  background: var(--grad);
  color: #fff;
  border: none;
  font-size: 13px;
  font-weight: 700;
  padding: 13px 20px;
  cursor: pointer;
  font-family: inherit;
  transition: 0.15s;
  flex-shrink: 0;
}

.es-btn:hover {
  opacity: 0.88;
}

/* QUICK LINKS */
.ql-label {
  font-size: 11px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.07em;
  color: var(--ts);
  margin-bottom: 14px;
}

.quick-links {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 10px;
  max-width: 520px;
  margin: 0 auto 36px;
}

@media (min-width: 480px) {
  .quick-links {
    grid-template-columns: repeat(3, 1fr);
  }
}

.ql-btn {
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 14px;
  border: 1.5px solid var(--border);
  border-radius: 13px;
  background: #fff;
  text-decoration: none;
  transition: 0.18s;
  box-shadow: var(--s-sm);
  text-align: left;
}

.ql-btn:hover {
  border-color: rgba(52, 174, 147, 0.4);
  transform: translateY(-2px);
  box-shadow: var(--s-md);
}

.ql-icon {
  font-size: 22px;
  flex-shrink: 0;
  line-height: 1;
}

.ql-name {
  font-size: 13px;
  font-weight: 700;
  color: var(--primary);
  display: block;
  line-height: 1.3;
  margin-bottom: 1px;
}

.ql-desc {
  font-size: 11px;
  color: var(--ts);
  line-height: 1.3;
}

/* BACK BUTTON */
.back-link {
  display: inline-flex;
  align-items: center;
  gap: 7px;
  color: var(--ts);
  font-size: 14px;
  font-weight: 500;
  text-decoration: none;
  transition: 0.15s;
  border: 1.5px solid var(--border);
  padding: 10px 22px;
  border-radius: 9px;
  background: #fff;
  box-shadow: var(--s-sm);
}

.back-link:hover {
  color: var(--primary);
  border-color: rgba(52, 174, 147, 0.35);
  background: var(--tint);
}

.search-influe-hero {
  text-align: center;
}

.contact-hero {
  background: var(--surface);
  border-bottom: 1px solid var(--border);
  text-align: center;
}

.contact-hero h1 {
  font-family: "DM Serif Display", serif;
  font-size: clamp(30px, 4.5vw, 50px);
  font-weight: 400;
  color: var(--primary);
  line-height: 1.1;
  letter-spacing: -0.02em;
  margin-bottom: 14px;
}

.contact-hero h1 span {
  background: var(--grad);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.contact-hero .sub {
  font-size: 16px;
  color: var(--ts);
  line-height: 1.7;
  margin-bottom: 32px;
}

.field-row-login {
  display: flex;
  justify-content: space-between;
}

.forgot-link:hover {
  color: #1e8a6e;
  border-bottom-color: #1e8a6e;
  border-bottom-style: solid;
}

.insta-eg-rt {
  text-align: center;
}

.tik-tok-eg-hero {
  text-align: center;
}

.heading-dm-sns-40 {
  font-family: 'DM Serif Display', serif;
  font-size: clamp(26px, 4vw, 40px);
  color: var(--primary);
  margin-bottom: 14px;
  line-height: 1.15;
}

/* Responsive */
@media (max-width: 1024px) {
  .gnav-link,
  .gnav-toggle {
    padding: 5px 8px;
    font-size: 13px;
  }

  .gnav-links {
    gap: 0;
  }
}

@media (max-width: 960px) {
  .gfoot-top {
    grid-template-columns: 1fr 1fr;
    gap: 32px;
  }

  .gfoot-top {
    grid-template-columns: 1fr 1fr;
    gap: 32px;
  }

  .gfoot-top {
    grid-template-columns: 1fr 1fr;
    gap: 32px;
  }

  .page-body {
    grid-template-columns: 1fr;
    padding: 20px 20px 60px;
  }

  .hero-score {
    display: none;
  }

  .side-col {
    position: static;
  }

  .stats-row {
    grid-template-columns: 1fr 1fr;
  }
}

@media (max-width: 900px) {
  .apply-layout {
    grid-template-columns: 1fr;
  }

  .apply-sidebar {
    position: static;
  }
}

@media (max-width: 859px) {
  .fill-col {
    border-left: 1.5px solid var(--bdr);
    border-top: none;
    border-radius: 0 0 20px 20px;
    min-height: 280px;
  }
}

@media (max-width: 768px) {
  .gnav-links {
    display: none !important;
  }

  .gnav-ham {
    display: flex !important;
  }

  .gnav-actions {
    display: none !important;
  }

  .form-row {
    grid-template-columns: 1fr;
  }

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

  .progress-inner {
    gap: 0;
  }

  .prog-step {
    padding: 14px 16px 14px 0;
  }

  .prog-step span {
    display: none;
  }

  .jb-meta {
    gap: 10px;
  }

  .read-progress {
    top: 0;
  }

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

  .hero-inner-careers {
    grid-template-columns: 1fr;
    gap: 24px;
  }

  .cs-hero {
    flex-direction: column;
  }
}

@media (max-width: 640px) {
  .hero-content {
    padding: 0 20px;
  }

  .tabs-row {
    padding: 0 20px;
  }

  .stats-row {
    grid-template-columns: 1fr 1fr;
  }

  .hero-row {
    gap: 16px;
  }

  .hero-avatar {
    width: 68px;
    height: 68px;
    font-size: 24px;
  }

  .topnav-left span {
    display: none;
  }

  .results-bar {
    grid-template-columns: 1fr 1fr;
  }
}

@media (max-width: 560px) {
  .gfoot-top {
    grid-template-columns: 1fr;
    gap: 24px;
  }
}

@media (max-width: 480px) {
  .gnav {
    padding: 0 16px;
  }

  .gfoot-inner {
    padding: 0 16px;
  }

  .gfoot-bot {
    flex-direction: column;
    align-items: flex-start;
    padding: 20px 16px;
    gap: 8px;
  }

  .g .gfoot-grid {
    grid-template-columns: 1fr !important;
  }

  .sc-row {
    flex-direction: column;
  }

  .nav-back span {
    display: none;
  }

  .progress-inner {
    overflow-x: auto;
  }

  .stats-row {
    grid-template-columns: 1fr 1fr;
  }

  .gauge-outer {
    flex-direction: column;
    align-items: flex-start;
    gap: 16px;
  }

  .hero-careers {
    padding: 108px 16px 80px;
  }

  .process-section-careers {
    padding: 96px 16px;
  }

  .job-banner {
    padding: 88px 16px 40px;
  }
}
