/* Guardfolio homepage — Deep Signal redesign (body.home-page only) */

body.home-page {
  --ds-ink: #0b1220;
  --ds-ink-soft: #132038;
  --ds-navy: #1a3a6b;
  --ds-blue: #2563eb;
  --ds-blue-bright: #3b82f6;
  --ds-blue-deep: #1d4ed8;
  --ds-surface: #f4f7fb;
  --ds-surface-2: #e8eef7;
  --ds-paper: #f8fafc;
  --ds-line: rgba(37, 99, 235, 0.14);
  --ds-muted: #5b6b86;
  --ds-text: #152033;
  --ds-white: #f7f9fc;
  --ds-danger: #dc2626;
  --ds-ok: #059669;
  --ds-radius: 14px;
  --ds-ease: cubic-bezier(0.16, 1, 0.3, 1);
  background: var(--ds-surface);
  color: var(--ds-text);
  -webkit-font-smoothing: antialiased;
}

body.home-page .container {
  max-width: 1180px;
  margin: 0 auto;
  padding: 0 clamp(20px, 4vw, 32px);
  width: 100%;
  box-sizing: border-box;
}

body.home-page .skip-link:focus {
  position: fixed;
  top: 10px;
  left: 10px;
  z-index: 10000;
  padding: 12px 24px;
  background: var(--ds-blue);
  color: #fff;
  text-decoration: none;
  border-radius: 8px;
  font-weight: 600;
  width: auto;
  height: auto;
}

/* —— Shared section chrome —— */
body.home-page .ds-eyebrow {
  margin: 0 0 12px;
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--ds-blue);
  font-family: Sora, "Plus Jakarta Sans", sans-serif;
}

body.home-page .ds-title {
  margin: 0 0 14px;
  font-family: Sora, "Plus Jakarta Sans", sans-serif;
  font-weight: 700;
  letter-spacing: -0.03em;
  line-height: 1.12;
  color: var(--ds-ink);
  font-size: clamp(1.75rem, 3.2vw, 2.45rem);
}

body.home-page .ds-lead {
  margin: 0;
  max-width: 36rem;
  font-size: 1.0625rem;
  line-height: 1.6;
  color: var(--ds-muted);
  font-weight: 500;
}

body.home-page .ds-link {
  color: var(--ds-blue);
  font-weight: 700;
  text-decoration: none;
  border-bottom: 1px solid transparent;
  transition: border-color 0.2s var(--ds-ease), color 0.2s;
}

body.home-page .ds-link:hover {
  color: var(--ds-blue-deep);
  border-bottom-color: currentColor;
}

body.home-page .llm-definition {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  white-space: nowrap;
  border: 0;
}

/* —— Hero —— */
/* navigation.css sets `#nav-placeholder + main { padding-top: var(--nav-clearance) }`.
   That clearance includes a large gap meant for article pages. Cancel it on the
   homepage so the blue hero sits flush under the floating nav. */
body.home.home-page #nav-placeholder + main,
body.home.home-page #nav-placeholder + main#main-content,
body.home.home-page main#main-content {
  padding-top: 0 !important;
}

/* In-page anchors (nav links, mobile menu, hero "See how it works") jump to
   section tops via #hash. The nav floats fixed over content at every
   breakpoint, so without this the target section's heading lands underneath
   it. Offset by the live nav box plus a small breathing gap. */
body.home-page main#main-content section[id] {
  scroll-margin-top: calc(var(--nav-height, 64px) + var(--nav-top-offset, 16px) + 24px);
}

body.home.home-page .hero {
  position: relative;
  margin-top: 0 !important;
  padding: calc(var(--nav-height, 64px) + var(--nav-top-offset, 16px) + 36px) 0 0 !important;
  min-height: unset !important;
  overflow: hidden !important;
  color: var(--ds-white) !important;
  text-align: left !important;
  background:
    radial-gradient(ellipse 70% 55% at 88% 18%, rgba(147, 197, 253, 0.45) 0%, transparent 58%),
    radial-gradient(ellipse 45% 50% at 8% 70%, rgba(59, 130, 246, 0.35) 0%, transparent 52%),
    linear-gradient(145deg, #1e3a8a 0%, #1e40af 28%, #2563eb 52%, #3b82f6 72%, #1d4ed8 100%) !important;
  border-bottom: none !important;
  isolation: isolate;
}

/* Soft atmosphere drift - slow enough to feel premium, not flashy */
body.home-page .hero::before {
  display: block !important;
  content: "" !important;
  position: absolute;
  top: -18%;
  right: -12%;
  width: min(72vw, 720px);
  height: min(72vw, 720px);
  border-radius: 50%;
  background: radial-gradient(circle, rgba(191, 219, 254, 0.38) 0%, rgba(147, 197, 253, 0.12) 42%, transparent 70%);
  pointer-events: none;
  z-index: 0;
  animation: dsHeroGlow 16s ease-in-out infinite alternate;
}

body.home-page .hero::after {
  display: block !important;
  content: "" !important;
  position: absolute;
  left: -18%;
  bottom: -28%;
  width: min(58vw, 520px);
  height: min(58vw, 520px);
  border-radius: 50%;
  background: radial-gradient(circle, rgba(59, 130, 246, 0.28) 0%, transparent 68%);
  pointer-events: none;
  z-index: 0;
  animation: dsHeroGlow 22s ease-in-out infinite alternate-reverse;
}

body.home-page .hero .container.hero-container,
body.home-page .hero-container {
  position: relative;
  z-index: 1;
  display: grid !important;
  grid-template-columns: minmax(300px, 480px) minmax(0, 1fr) !important;
  gap: clamp(20px, 3vw, 40px) !important;
  align-items: center !important;
  justify-content: stretch !important;
  max-width: 1400px !important;
  width: 100% !important;
  padding-left: clamp(24px, 4vw, 40px) !important;
  padding-right: 0 !important;
  margin: 0 auto !important;
}

body.home-page .hero-content {
  text-align: left !important;
  max-width: 460px !important;
  padding: 0 0 40px !important;
  flex: unset !important;
  position: relative;
  z-index: 2;
}

body.home-page .hero-brand {
  display: none !important;
}

body.home-page .hero h1 {
  margin: 0 0 16px !important;
  color: #fff !important;
  font-family: Sora, "Plus Jakarta Sans", sans-serif !important;
  font-weight: 700 !important;
  letter-spacing: -0.035em !important;
  line-height: 1.08 !important;
  font-size: clamp(2.05rem, 4.4vw, 3.35rem) !important;
  text-shadow: none !important;
  opacity: 0;
  transform: translateY(16px);
  animation: dsHeroIn 0.95s var(--ds-ease) 0.12s forwards !important;
}

/* Higher specificity than main.css `.hero h1 span:not(.h1-line){display:block!important}` */
body.home-page .hero h1 span.hero-headline-desktop {
  display: inline !important;
  font-size: inherit !important;
  font-weight: inherit !important;
  margin: 0 !important;
  line-height: inherit !important;
}

body.home-page .hero h1 span.hero-headline-mobile {
  display: none !important;
  font-size: inherit !important;
  font-weight: inherit !important;
  margin: 0 !important;
  line-height: inherit !important;
}

body.home-page .hero-support {
  margin: 0 0 28px;
  max-width: 28rem;
  font-size: 1.0625rem;
  line-height: 1.55;
  font-weight: 500;
  color: rgba(255, 255, 255, 0.88);
  opacity: 0;
  transform: translateY(12px);
  animation: dsHeroIn 0.9s var(--ds-ease) 0.2s forwards;
}

body.home-page .hero-support-desktop {
  display: inline;
}

body.home-page .hero-support-mobile {
  display: none;
}

body.home-page .hero-cta-buttons {
  display: flex !important;
  flex-wrap: wrap;
  align-items: center;
  gap: 18px !important;
  margin: 0 0 14px !important;
  width: auto !important;
  max-width: none !important;
  opacity: 0;
  transform: translateY(12px);
  animation: dsHeroIn 0.9s var(--ds-ease) 0.28s forwards;
}

body.home-page .hero-cta-btn-same,
body.home-page a.hero-cta-btn-same {
  display: inline-flex !important;
  align-items: center;
  justify-content: center;
  gap: 8px;
  padding: 15px 26px !important;
  min-width: 0 !important;
  width: auto !important;
  background: #fff !important;
  border: 1px solid rgba(255, 255, 255, 0.9) !important;
  border-radius: 12px !important;
  color: #1e3a8a !important;
  text-decoration: none !important;
  font-weight: 700 !important;
  font-size: 15px !important;
  letter-spacing: -0.01em;
  box-shadow:
    0 1px 0 rgba(255, 255, 255, 0.7) inset,
    0 12px 28px rgba(15, 23, 42, 0.22) !important;
  transition: transform 0.25s var(--ds-ease), background 0.25s, box-shadow 0.25s !important;
}

body.home-page .hero-cta-btn-same:hover {
  background: #f8fafc !important;
  color: #1e40af !important;
  transform: translateY(-2px) !important;
  box-shadow:
    0 1px 0 rgba(255, 255, 255, 0.85) inset,
    0 16px 34px rgba(15, 23, 42, 0.28) !important;
}

body.home-page .hero-how-link {
  color: rgba(255, 255, 255, 0.95);
  font-size: 14px;
  font-weight: 700;
  text-decoration: none;
  border-bottom: 1px solid rgba(255, 255, 255, 0.45);
  text-underline-offset: 4px;
  transition: color 0.2s, border-color 0.2s;
}

body.home-page .hero-how-link:hover {
  color: #fff;
  border-bottom-color: #fff;
}

body.home-page .hero-trust-stamp {
  display: flex;
  flex-direction: column;
  gap: 4px;
  margin: 0 !important;
  opacity: 0;
  animation: dsHeroIn 0.9s var(--ds-ease) 0.36s forwards;
}

body.home-page .hero-trust-badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 0 !important;
  border: 0 !important;
  background: transparent !important;
  box-shadow: none !important;
  font-size: 13px !important;
  font-weight: 600;
  color: rgba(255, 255, 255, 0.9);
}

body.home-page .hero-trust-badge svg {
  color: #bbf7d0;
  flex-shrink: 0;
}

body.home-page .hero-trust-sub {
  color: rgba(255, 255, 255, 0.82) !important;
  font-size: 12px !important;
  padding-left: 24px;
}

/* —— Product frame (clean chrome over real screenshots) —— */
body.home-page .pf-shell {
  position: relative;
  isolation: isolate;
}

body.home-page .pf-shell::before {
  content: "";
  position: absolute;
  inset: 18% -6% -12% 10%;
  background:
    radial-gradient(ellipse at 70% 35%, rgba(255, 255, 255, 0.35), transparent 55%),
    radial-gradient(ellipse at 40% 90%, rgba(30, 64, 175, 0.28), transparent 60%);
  filter: blur(36px);
  z-index: 0;
  pointer-events: none;
  opacity: 0.85;
}

body.home-page .pf {
  --pf-bg: #f8fafc;
  --pf-panel: #ffffff;
  --pf-line: rgba(15, 23, 42, 0.08);
  position: relative;
  z-index: 1;
  background: #fff;
  border: 1px solid rgba(255, 255, 255, 0.55);
  border-radius: 16px;
  color: #334155;
  font-size: 12px;
  overflow: hidden;
  box-shadow:
    0 1px 0 rgba(255, 255, 255, 0.7) inset,
    0 24px 48px rgba(15, 23, 42, 0.18),
    0 8px 18px rgba(30, 64, 175, 0.12);
  opacity: 0;
  transform: translateY(20px) scale(0.99);
  animation: dsHeroIn 1s var(--ds-ease) 0.22s forwards;
}

body.home-page .pf::after {
  content: none;
}

body.home-page .hero-dashboard-preview {
  flex: unset !important;
  max-width: none !important;
  width: 100%;
  display: block !important;
  align-items: stretch !important;
  padding: 8px 0 36px;
  margin-left: 0;
  position: relative;
  z-index: 1;
}

body.home-page .hero .pf-shell {
  transform: none;
  width: 100%;
  animation: dsPfFloat 9s ease-in-out 1.2s infinite alternate;
}

body.home-page .hero .pf {
  border-radius: 18px 0 0 18px;
  border-right: 0;
  box-shadow:
    0 1px 0 rgba(255, 255, 255, 0.85) inset,
    0 28px 56px rgba(15, 23, 42, 0.22),
    0 10px 22px rgba(30, 64, 175, 0.16);
}

body.home-page .hero .pf-shell::before {
  inset: 12% -8% -16% 0;
  filter: blur(40px);
  opacity: 0.9;
}

body.home-page .hero .pf-shot img {
  min-height: 0;
  object-fit: contain;
  object-position: left top;
}

body.home-page .pf-chrome {
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 10px 14px;
  border-bottom: 1px solid rgba(15, 23, 42, 0.06);
  background: linear-gradient(180deg, #f8fafc 0%, #f1f5f9 100%);
}

body.home-page .pf-dots {
  display: inline-flex;
  gap: 6px;
  flex-shrink: 0;
}

body.home-page .pf-dots i {
  width: 9px;
  height: 9px;
  border-radius: 50%;
  background: #cbd5e1;
}

body.home-page .pf-dots i:nth-child(1) { background: #f87171; }
body.home-page .pf-dots i:nth-child(2) { background: #fbbf24; }
body.home-page .pf-dots i:nth-child(3) { background: #34d399; }

body.home-page .pf-top {
  display: flex;
  align-items: center;
  justify-content: flex-end;
  gap: 12px;
  flex: 1;
  min-width: 0;
}

body.home-page .pf-top:has(.pf-chrome-title) {
  justify-content: space-between;
}

body.home-page .pf-brand,
body.home-page .pf-mark {
  display: none !important;
}

body.home-page .pf-chrome-title {
  display: inline-flex;
  align-items: center;
  font-family: Sora, "Plus Jakarta Sans", sans-serif;
  font-weight: 650;
  letter-spacing: -0.02em;
  color: #334155;
  font-size: 13px;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}

body.home-page .pf-live {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  padding: 4px 9px;
  border-radius: 999px;
  font-size: 10px;
  font-weight: 700;
  color: #15803d;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  background: rgba(34, 197, 94, 0.12);
  border: 1px solid rgba(34, 197, 94, 0.22);
}

body.home-page .pf-live::before {
  content: "";
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: #22c55e;
  box-shadow: 0 0 0 3px rgba(34, 197, 94, 0.16);
  animation: dsLivePulse 2.2s ease-in-out infinite;
}

@keyframes dsLivePulse {
  0%, 100% { box-shadow: 0 0 0 3px rgba(34, 197, 94, 0.16); }
  50% { box-shadow: 0 0 0 6px rgba(34, 197, 94, 0.08); }
}

body.home-page .pf--shot {
  margin: 0;
}

body.home-page .pf--shot::after {
  display: none;
}

body.home-page .pf-shot {
  margin: 0;
  background: #f8fafc;
  line-height: 0;
}

body.home-page .pf-shot img {
  display: block;
  width: 100%;
  height: auto;
}

body.home-page .ds-band-visual .pf {
  animation-delay: 0s;
}

@keyframes dsHeroIn {
  to {
    opacity: 1;
    transform: translateY(0) scale(1);
  }
}

@keyframes dsHeroGlow {
  from {
    transform: translate3d(0, 0, 0) scale(1);
    opacity: 0.72;
  }
  to {
    transform: translate3d(-6%, 5%, 0) scale(1.08);
    opacity: 1;
  }
}

@keyframes dsPfFloat {
  from {
    transform: translate3d(0, 0, 0);
  }
  to {
    transform: translate3d(0, -8px, 0);
  }
}

/* Scroll reveals for product immersion bands */
body.home-page [data-reveal] {
  opacity: 0;
  transform: translateY(22px);
  transition:
    opacity 0.85s var(--ds-ease),
    transform 0.85s var(--ds-ease);
}

body.home-page [data-reveal].is-inview {
  opacity: 1;
  transform: translateY(0);
}

@media (prefers-reduced-motion: reduce) {
  body.home-page .hero h1,
  body.home-page .hero-support,
  body.home-page .hero-cta-buttons,
  body.home-page .hero-trust-stamp,
  body.home-page .pf {
    animation: none !important;
    opacity: 1 !important;
    transform: none !important;
  }

  body.home-page .hero::before,
  body.home-page .hero::after,
  body.home-page .hero .pf-shell,
  body.home-page .pf-live::before {
    animation: none !important;
  }

  body.home-page [data-reveal] {
    opacity: 1 !important;
    transform: none !important;
    transition: none !important;
  }
}

/* —— Problem —— */
body.home-page .ds-problem {
  padding: clamp(64px, 9vw, 112px) 0;
  background: linear-gradient(180deg, #ffffff 0%, #f4f7fb 100%);
}

body.home-page .ds-problem-grid {
  display: grid;
  grid-template-columns: 1.1fr 0.9fr;
  gap: clamp(32px, 5vw, 72px);
  align-items: start;
  margin-top: 40px;
}

body.home-page .overlap-story {
  display: grid;
  gap: 14px;
  padding: 22px 22px 20px;
  border-radius: 16px;
  background: #fff;
  border: 1px solid rgba(37, 99, 235, 0.1);
  box-shadow: 0 12px 28px rgba(15, 23, 42, 0.05);
}

body.home-page .overlap-line {
  display: grid;
  grid-template-columns: 96px 1fr;
  gap: 14px;
  align-items: center;
}

body.home-page .overlap-tag {
  font-family: Sora, sans-serif;
  font-size: 13px;
  font-weight: 700;
  letter-spacing: -0.02em;
  color: var(--ds-ink);
}

body.home-page .overlap-track {
  position: relative;
  height: 22px;
  border-radius: 999px;
  background: #eef2ff;
  overflow: hidden;
}

body.home-page .overlap-fill {
  position: absolute;
  inset: 0 auto 0 0;
  border-radius: 999px;
  background: rgba(37, 99, 235, 0.22);
}

body.home-page .overlap-fill.a { width: 28%; left: 8%; background: linear-gradient(90deg, #60a5fa, #2563eb); }
body.home-page .overlap-fill.b { width: 34%; left: 18%; background: linear-gradient(90deg, #93c5fd, #3b82f6); }
body.home-page .overlap-fill.c { width: 42%; left: 12%; background: linear-gradient(90deg, #bfdbfe, #1d4ed8); }

body.home-page .overlap-result {
  margin-top: 8px;
  padding-top: 16px;
  border-top: 1px solid rgba(37, 99, 235, 0.1);
  font-size: 15px;
  line-height: 1.55;
  color: var(--ds-text);
  font-weight: 600;
}

body.home-page .overlap-result strong {
  color: var(--ds-blue-deep);
}

/* —— Product immersion —— */
body.home-page .ds-immersion {
  padding: 0;
  background:
    radial-gradient(ellipse 60% 50% at 80% 20%, rgba(59, 130, 246, 0.22), transparent 55%),
    linear-gradient(165deg, #1e3a8a 0%, #1e40af 42%, #17356f 100%);
  color: var(--ds-white);
}

body.home-page .ds-band {
  display: grid;
  grid-template-columns: minmax(0, 0.9fr) minmax(0, 1.1fr);
  gap: clamp(24px, 3.5vw, 40px);
  align-items: center;
  max-width: 1280px;
  margin: 0 auto;
  padding: clamp(40px, 5vw, 64px) clamp(20px, 4vw, 32px);
}

body.home-page .ds-band + .ds-band {
  padding-top: clamp(12px, 2vw, 24px);
}

body.home-page .ds-immersion .ds-band:first-child {
  padding-bottom: clamp(12px, 2vw, 24px);
}

body.home-page .ds-immersion .pf-shell::before {
  inset: 22% -4% -8% 8%;
  opacity: 0.45;
  filter: blur(28px);
}

body.home-page .ds-band--flip {
  grid-template-columns: minmax(0, 1.1fr) minmax(0, 0.9fr);
}

body.home-page .ds-band--flip .ds-band-copy {
  order: 2;
}

body.home-page .ds-band--flip .ds-band-visual {
  order: 1;
}

body.home-page .ds-band .ds-eyebrow {
  color: #bfdbfe;
}

body.home-page .ds-band .ds-title {
  color: #fff;
}

body.home-page .ds-band .ds-lead {
  color: rgba(255, 255, 255, 0.78);
  margin-bottom: 18px;
}

body.home-page .ds-band .ds-link {
  color: #dbeafe;
}

body.home-page .ds-band .pf {
  border-radius: 16px;
  box-shadow:
    0 1px 0 rgba(255, 255, 255, 0.55) inset,
    0 24px 48px rgba(15, 23, 42, 0.28);
  opacity: 1;
  transform: none;
  animation: none;
}

/* —— Video —— */
body.home-page .ds-video {
  padding: clamp(56px, 8vw, 88px) 0;
  background: var(--ds-surface);
}

body.home-page .ds-video-inner {
  display: grid;
  grid-template-columns: minmax(0, 0.85fr) minmax(0, 1.15fr);
  gap: clamp(24px, 4vw, 48px);
  align-items: center;
}

body.home-page .yt-facade {
  position: relative;
  display: block;
  width: 100%;
  aspect-ratio: 16 / 9;
  border: 0;
  padding: 0;
  border-radius: 14px;
  overflow: hidden;
  cursor: pointer;
  background: var(--ds-ink);
  box-shadow: 0 18px 40px rgba(15, 23, 42, 0.18);
}

body.home-page .yt-facade img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  opacity: 0.92;
}

body.home-page .yt-facade-play {
  position: absolute;
  inset: 0;
  display: grid;
  place-items: center;
  background: linear-gradient(180deg, transparent 40%, rgba(11, 18, 32, 0.45));
}

body.home-page .yt-facade-play span {
  display: inline-flex;
  width: 64px;
  height: 64px;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  background: var(--ds-blue);
  color: #fff;
  box-shadow: 0 12px 28px rgba(15, 23, 42, 0.35);
  transition: transform 0.25s var(--ds-ease), background 0.25s;
}

body.home-page .yt-facade:hover .yt-facade-play span {
  transform: scale(1.06);
  background: var(--ds-blue-deep);
}

body.home-page .yt-frame {
  width: 100%;
  aspect-ratio: 16 / 9;
  border: 0;
  border-radius: 14px;
  display: block;
}

body.home-page .ds-video-aside p {
  margin: 10px 0 0;
  font-size: 14px;
  color: var(--ds-muted);
}

/* —— Methodology —— */
body.home-page .ds-method {
  padding: clamp(56px, 8vw, 96px) 0;
  background: var(--ds-paper);
  border-top: 1px solid var(--ds-line);
}

/* —— Assurance (security + team, quiet strip directly before pricing) —— */
body.home-page .ds-assurance {
  padding: clamp(32px, 5vw, 48px) 0;
  background: var(--ds-paper);
}

body.home-page .pipeline {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 10px 6px;
  margin: 36px 0 28px;
}

body.home-page .pipeline-step {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 10px 14px;
  border-radius: 999px;
  border: 1px solid var(--ds-line);
  background: #fff;
  font-size: 13px;
  font-weight: 700;
  color: var(--ds-ink);
}

body.home-page .pipeline-step.is-active {
  background: rgba(37, 99, 235, 0.08);
  border-color: rgba(37, 99, 235, 0.28);
  color: var(--ds-blue-deep);
}

body.home-page .pipeline-arrow {
  color: #94a3b8;
  font-size: 14px;
  font-weight: 700;
}

body.home-page .tools-index {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 0;
  border-top: 1px solid var(--ds-line);
}

body.home-page .tools-index a {
  display: block;
  padding: 20px 16px 20px 0;
  text-decoration: none;
  color: inherit;
  border-right: 1px solid var(--ds-line);
}

body.home-page .tools-index a:last-child {
  border-right: 0;
  padding-right: 0;
}

body.home-page .tools-index strong {
  display: block;
  margin-bottom: 6px;
  font-family: Sora, sans-serif;
  font-size: 15px;
  font-weight: 700;
  letter-spacing: -0.02em;
  color: var(--ds-ink);
}

body.home-page .tools-index span {
  font-size: 13px;
  line-height: 1.45;
  color: var(--ds-muted);
}

body.home-page .tools-index a:hover strong {
  color: var(--ds-blue);
}

/* —— Pricing calm overrides —— */
body.home-page #pricing.pricing {
  padding: clamp(64px, 9vw, 104px) 0;
  background: var(--ds-surface);
}

body.home-page #pricing .section-header h2 {
  font-family: Sora, "Plus Jakarta Sans", sans-serif;
  font-size: clamp(1.75rem, 3vw, 2.35rem);
  letter-spacing: -0.03em;
}

body.home-page #pricing .section-header h2::after {
  display: none;
}

body.home-page #pricing .pricing-card {
  border-radius: 16px;
  border: 1px solid rgba(37, 99, 235, 0.12);
  box-shadow: 0 8px 24px rgba(15, 23, 42, 0.04);
  background: #fff;
}

body.home-page #pricing .pricing-card:hover {
  transform: none;
  box-shadow: 0 12px 32px rgba(15, 23, 42, 0.08);
}

body.home-page #pricing .pricing-card.featured {
  border-color: rgba(37, 99, 235, 0.35);
  box-shadow: 0 14px 36px rgba(37, 99, 235, 0.12);
  background: #fff;
}

body.home-page #pricing .pricing-card.featured::after,
body.home-page #pricing .pricing-card::before {
  display: none;
}

body.home-page #pricing .pricing-badge,
body.home-page #pricing .pricing-badge-popular {
  background: var(--ds-blue) !important;
  box-shadow: none;
  border-radius: 8px;
}

body.home-page #pricing .btn-primary {
  background: var(--ds-blue) !important;
  box-shadow: none;
}

body.home-page #pricing .btn-primary:hover {
  background: var(--ds-blue-deep) !important;
  transform: translateY(-1px);
}

/* —— Trust editorial —— */
body.home-page .ds-trust {
  padding: clamp(64px, 9vw, 104px) 0;
  background: var(--ds-paper);
}

body.home-page .trust-quotes {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: clamp(28px, 4vw, 48px);
  margin-top: 40px;
}

body.home-page .trust-quote-block {
  margin: 0;
}

body.home-page .trust-quote-block p {
  margin: 0 0 18px;
  font-family: Sora, "Plus Jakarta Sans", sans-serif;
  font-size: clamp(1.05rem, 1.5vw, 1.2rem);
  line-height: 1.45;
  letter-spacing: -0.02em;
  font-weight: 600;
  color: var(--ds-ink);
}

body.home-page .trust-quote-block .trust-attr {
  margin: 0;
  font-size: 13px;
  color: var(--ds-muted);
  font-weight: 600;
}

body.home-page .ds-founder {
  display: flex;
  align-items: center;
  gap: 16px;
  margin-top: 48px;
  padding-top: 28px;
  border-top: 1px solid var(--ds-line);
}

body.home-page .ds-founder-photos {
  display: flex;
}

body.home-page .ds-founder-photos img {
  width: 48px;
  height: 48px;
  border-radius: 50%;
  object-fit: cover;
  border: 2px solid #fff;
  margin-left: -10px;
}

body.home-page .ds-founder-photos img:first-child {
  margin-left: 0;
}

body.home-page .ds-founder p {
  margin: 0;
  font-size: 14px;
  line-height: 1.5;
  color: var(--ds-muted);
  max-width: 42rem;
}

body.home-page .ds-founder strong {
  color: var(--ds-ink);
}

body.home-page .ds-security {
  margin-top: 20px;
  font-size: 13px;
  color: var(--ds-muted);
  line-height: 1.55;
}

body.home-page .ds-security a {
  color: var(--ds-blue);
  font-weight: 600;
  text-decoration: none;
}

body.home-page .ds-badges-quiet {
  margin-top: 16px;
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
  align-items: center;
  opacity: 0.75;
}

body.home-page .ds-badges-quiet img {
  height: 28px;
  width: auto;
}

/* —— Global coverage —— */
/* Global exchanges section - slightly less top padding so the trust block feels shorter */
    body.home-page .global-section {
      background: #0b1220;
      border-top: 1px solid rgba(148,163,184,0.12);
      padding: 44px 0 72px;
    }
    body.home-page .global-section .section-header {
      margin-bottom: 48px;
    }
    body.home-page .global-eyebrow {
      font-size: 12px;
      font-weight: 700;
      letter-spacing: 0.1em;
      text-transform: uppercase;
      color: #93c5fd;
      margin-bottom: 12px;
    }
    body.home-page .global-headline {
      font-size: clamp(1.6rem, 3.5vw, 2.2rem);
      font-weight: 800;
      color: #f7f9fc;
      margin-bottom: 12px;
      letter-spacing: -0.02em;
      line-height: 1.2;
    }
    body.home-page .global-subtext {
      font-size: 16px;
      color: rgba(247,249,252,0.68);
      max-width: 600px;
      line-height: 1.6;
    }
    body.home-page .global-regions {
      display: grid;
      grid-template-columns: repeat(2, 1fr);
      gap: 32px;
    }
    @media (max-width: 768px) {
      body.home-page .global-regions {
        grid-template-columns: 1fr;
      }
    }
    body.home-page .global-region {
      border: 1px solid rgba(255,255,255,0.1);
      border-radius: 12px;
      overflow: hidden;
    }
    body.home-page .global-region__header {
      background: rgba(255,255,255,0.06);
      border-bottom: 1px solid rgba(148,163,184,0.12);
      padding: 14px 20px;
      display: flex;
      align-items: center;
      gap: 10px;
    }
    body.home-page .global-region__name {
      font-size: 13px;
      font-weight: 700;
      color: #e2e8f0;
      text-transform: uppercase;
      letter-spacing: 0.06em;
    }
    body.home-page .global-region__count {
      margin-left: auto;
      font-size: 11px;
      font-weight: 600;
      color: #94a3b8;
      background: #e2e8f0;
      padding: 2px 8px;
      border-radius: 20px;
    }
    body.home-page .global-country-list {
      padding: 8px 0;
    }
    body.home-page .global-country {
      display: flex;
      align-items: center;
      gap: 10px;
      padding: 9px 20px;
      border-bottom: 1px solid #f1f5f9;
    }
    body.home-page .global-country:last-child {
      border-bottom: none;
    }
    body.home-page .global-country__flag {
      font-size: 18px;
      line-height: 1;
      flex-shrink: 0;
    }
    body.home-page .global-country__info {
      flex: 1;
      min-width: 0;
    }
    body.home-page .global-country__name {
      font-size: 13px;
      font-weight: 600;
      color: #e2e8f0;
      white-space: nowrap;
      overflow: hidden;
      text-overflow: ellipsis;
    }
    body.home-page .global-country__exchange {
      font-size: 11px;
      color: rgba(226,232,240,0.55);
      margin-top: 1px;
    }
    body.home-page .global-stat-row {
      display: flex;
      gap: 32px;
      margin-top: 40px;
      padding-top: 32px;
      border-top: 1px solid rgba(148,163,184,0.12);
      flex-wrap: wrap;
    }
    body.home-page .global-stat {
      display: flex;
      flex-direction: column;
      gap: 2px;
    }
    body.home-page .global-stat__num {
      font-size: 2rem;
      font-weight: 800;
      color: #f7f9fc;
      letter-spacing: -0.03em;
      line-height: 1;
    }
    body.home-page .global-stat__label {
      font-size: 13px;
      color: rgba(226,232,240,0.55);
    }
    body.home-page .global-country-grid {
      display: flex;
      flex-wrap: wrap;
      gap: 6px;
      padding: 20px 0;
      border-top: 1px solid rgba(148,163,184,0.12);
      border-bottom: 1px solid rgba(148,163,184,0.12);
      margin: 24px 0;
    }
    body.home-page .gcc-item {
      font-size: 12px;
      font-weight: 600;
      color: rgba(247,249,252,0.68);
      background: rgba(255,255,255,0.06);
      border: 1px solid rgba(255,255,255,0.1);
      border-radius: 20px;
      padding: 3px 10px;
      white-space: nowrap;
    }
    body.home-page .global-compact {
      display: grid;
      grid-template-columns: minmax(0, 0.92fr) minmax(320px, 1.08fr);
      gap: 40px;
      align-items: center;
      margin-bottom: 40px;
    }
    @media (max-width: 640px) {
      .global-compact { grid-template-columns: 1fr; gap: 24px; }
    }
    body.home-page .global-link {
      display: inline-block;
      margin-top: 16px;
      font-size: 14px;
      font-weight: 600;
      color: #93c5fd;
      text-decoration: none;
    }
    .global-link:hover { text-decoration: underline; }
    body.home-page .global-compact__regions {
      display: grid;
      grid-template-columns: 1fr 1fr;
      gap: 12px;
    }
    body.home-page .global-compact-region {
      display: flex;
      flex-direction: column;
      gap: 2px;
      padding: 14px 16px;
      background: rgba(255,255,255,0.06);
      border: 1px solid rgba(255,255,255,0.1);
      border-radius: 10px;
      font-size: 13px;
    }
    body.home-page .gcr-label {
      font-weight: 600;
      color: #e2e8f0;
    }
    body.home-page .gcr-count {
      color: rgba(226,232,240,0.55);
      font-size: 12px;
    }
    body.home-page .global-globe-panel {
      position: relative;
      min-height: 380px;
      overflow: hidden;
      border: 1px solid rgba(15, 23, 42, 0.1);
      border-radius: 24px;
      background:
        radial-gradient(circle at 72% 26%, rgba(59, 130, 246, 0.28), transparent 34%),
        linear-gradient(135deg, #0b1626 0%, #12243b 56%, #17324c 100%);
      box-shadow: 0 24px 70px rgba(15, 23, 42, 0.16);
      isolation: isolate;
    }
    body.home-page .global-globe-panel::before {
      content: "";
      position: absolute;
      inset: 0;
      background:
        linear-gradient(rgba(255, 255, 255, 0.035) 1px, transparent 1px),
        linear-gradient(90deg, rgba(255, 255, 255, 0.035) 1px, transparent 1px);
      background-size: 36px 36px;
      mask-image: radial-gradient(circle at 70% 50%, black, transparent 72%);
      pointer-events: none;
    }
    body.home-page .global-globe-wrap {
      position: absolute;
      top: 38px;
      right: 36px;
      width: min(290px, 48%);
      aspect-ratio: 1;
      z-index: 1;
    }
    body.home-page .global-globe-canvas {
      width: 100%;
      height: 100%;
      aspect-ratio: 1;
      contain: layout paint size;
      opacity: 0;
      transition: opacity 900ms ease;
    }
    body.home-page .global-globe-fallback {
      position: absolute;
      inset: 14%;
      border-radius: 999px;
      background:
        radial-gradient(circle at 34% 30%, rgba(96, 165, 250, 0.34), transparent 18%),
        radial-gradient(circle at 62% 46%, rgba(59, 130, 246, 0.3), transparent 20%),
        radial-gradient(circle at center, rgba(148, 163, 184, 0.18), rgba(15, 23, 42, 0.12) 48%, transparent 70%);
      border: 1px solid rgba(148, 163, 184, 0.28);
      box-shadow: 0 0 48px rgba(59, 130, 246, 0.22);
    }
    body.home-page .global-globe-copy {
      position: relative;
      z-index: 2;
      max-width: 285px;
      padding: 28px;
    }
    body.home-page .global-globe-kicker {
      color: #93c5fd;
      font-size: 11px;
      font-weight: 800;
      letter-spacing: 0.12em;
      margin: 0 0 10px;
      text-transform: uppercase;
    }
    body.home-page .global-globe-title {
      color: #ffffff;
      font-size: 20px;
      font-weight: 800;
      line-height: 1.15;
      margin: 0 0 10px;
      letter-spacing: -0.02em;
    }
    body.home-page .global-globe-text {
      color: rgba(226, 232, 240, 0.82);
      font-size: 14px;
      line-height: 1.6;
      margin: 0;
    }
    body.home-page .global-globe-markets {
      position: absolute;
      left: 28px;
      right: 28px;
      bottom: 24px;
      z-index: 2;
      display: grid;
      grid-template-columns: repeat(2, minmax(0, 1fr));
      gap: 10px;
      max-width: 320px;
    }
    body.home-page .global-globe-market {
      border: 1px solid rgba(148, 163, 184, 0.2);
      border-radius: 12px;
      background: rgba(15, 23, 42, 0.54);
      color: rgba(226, 232, 240, 0.9);
      font-size: 12px;
      font-weight: 700;
      padding: 9px 11px;
      backdrop-filter: blur(10px);
    }
    body.home-page .global-globe-market span {
      display: block;
      color: rgba(148, 163, 184, 0.86);
      font-size: 11px;
      font-weight: 600;
      margin-top: 2px;
    }
    @media (max-width: 900px) {
      body.home-page .global-compact {
        grid-template-columns: 1fr;
      }
      body.home-page .global-globe-panel {
        min-height: 390px;
      }
      body.home-page .global-globe-wrap {
        width: min(330px, 56%);
      }
    }
    @media (max-width: 560px) {
      body.home-page .global-globe-panel {
        min-height: 500px;
      }
      body.home-page .global-globe-wrap {
        inset: 132px auto auto 50%;
        width: min(300px, 88%);
        transform: translateX(-50%);
      }
      body.home-page .global-globe-copy {
        max-width: none;
        padding: 22px;
      }
      body.home-page .global-globe-markets {
        grid-template-columns: 1fr 1fr;
        left: 18px;
        right: 18px;
        bottom: 18px;
      }
    }
    

/* —— Bottom cluster —— */
body.home-page .ds-seo {
  padding: 48px 0 24px;
  background: var(--ds-surface);
}

body.home-page .ds-faq {
  padding: 40px 0 72px;
  background: var(--ds-surface);
}

body.home-page .ds-faq .faq-container {
  column-count: 2;
  column-gap: 16px;
}

body.home-page .ds-faq .llm-faq-item {
  display: inline-block;
  width: 100%;
  break-inside: avoid;
  margin-bottom: 10px;
  background: #fff;
  border: 1px solid var(--ds-line);
  border-radius: 10px;
  padding: 4px 14px;
}

body.home-page .ds-faq summary {
  cursor: pointer;
  list-style: none;
  padding: 10px 0;
}

body.home-page .ds-faq summary h3 {
  margin: 0;
  font-size: 15px;
  font-weight: 700;
  color: var(--ds-ink);
  letter-spacing: -0.01em;
}

body.home-page .ds-faq .llm-faq-answer {
  margin: 0 0 12px;
  font-size: 14px;
  line-height: 1.55;
  color: var(--ds-muted);
}

body.home-page .ds-guides {
  padding: 56px 0 80px;
  background: var(--ds-paper);
  border-top: 1px solid var(--ds-line);
}

body.home-page .guide-list {
  display: grid;
  gap: 0;
  margin-top: 28px;
  border-top: 1px solid var(--ds-line);
}

body.home-page .guide-list a {
  display: grid;
  grid-template-columns: 110px 1fr auto;
  gap: 16px;
  align-items: baseline;
  padding: 18px 0;
  border-bottom: 1px solid var(--ds-line);
  text-decoration: none;
  color: inherit;
}

body.home-page .guide-list em {
  font-style: normal;
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--ds-blue);
}

body.home-page .guide-list strong {
  font-size: 16px;
  font-weight: 700;
  color: var(--ds-ink);
  letter-spacing: -0.02em;
}

body.home-page .guide-list span {
  font-size: 13px;
  font-weight: 700;
  color: var(--ds-muted);
}

body.home-page .guide-list a:hover strong {
  color: var(--ds-blue);
}

body.home-page .compare-row {
  margin-top: 28px;
  font-size: 14px;
  color: var(--ds-muted);
}

body.home-page .compare-row a {
  color: var(--ds-blue);
  font-weight: 700;
  text-decoration: none;
}

/* Kill old home clutter when leftover classes appear */
body.home-page .hero-workflow,
body.home-page .hero-preview-label,
body.home-page .hero-product-eyebrow,
body.home-page .mobile-mock,
body.home-page .hero-mobile-summary {
  display: none !important;
}

/* —— Responsive —— */
@media (max-width: 980px) {
  body.home-page .hero .container.hero-container,
  body.home-page .hero-container {
    grid-template-columns: 1fr !important;
    padding-right: clamp(20px, 4vw, 32px) !important;
    gap: 28px !important;
  }

  body.home-page .hero-content {
    padding-bottom: 8px !important;
    max-width: 100% !important;
    text-align: center !important;
  }

  body.home-page .hero h1 {
    text-align: center !important;
  }

  body.home-page .hero h1 span.hero-headline-desktop { display: none !important; }
  body.home-page .hero h1 span.hero-headline-mobile { display: inline !important; }

  body.home-page .pf {
    border-radius: 16px;
  }

  body.home-page .hero .pf {
    border-radius: 16px;
    border-right: 1px solid rgba(148, 163, 184, 0.28);
  }

  body.home-page .hero-dashboard-preview {
    width: 100%;
    margin-left: 0;
    padding: 4px 0 8px;
  }

  body.home-page .hero .pf-shot img {
    min-height: 0;
    object-fit: contain;
  }

  body.home-page .ds-problem-grid,
  body.home-page .ds-band,
  body.home-page .ds-band--flip,
  body.home-page .ds-video-inner,
  body.home-page .trust-quotes {
    grid-template-columns: 1fr;
  }

  body.home-page .ds-band--flip .ds-band-copy,
  body.home-page .ds-band--flip .ds-band-visual {
    order: unset;
  }

  body.home-page .tools-index {
    grid-template-columns: 1fr 1fr;
  }

  body.home-page .tools-index a {
    border-right: 0;
    border-bottom: 1px solid var(--ds-line);
    padding-right: 0;
  }

  body.home-page .ds-faq .faq-container {
    column-count: 1;
  }

  body.home-page .guide-list a {
    grid-template-columns: 1fr;
    gap: 6px;
  }
}

@media (max-width: 640px) {
  body.home.home-page #main-content > section.hero,
  body.home.home-page .hero {
    margin-top: 0 !important;
    padding-top: calc(var(--nav-height, 58px) + var(--nav-top-offset, 10px) + 20px) !important;
  }

  body.home-page .hero-cta-buttons {
    flex-direction: column;
    align-items: center !important;
    gap: 16px !important;
    width: 100% !important;
  }

  body.home-page .hero-cta-btn-same,
  body.home-page a.hero-cta-btn-same {
    width: 100% !important;
    max-width: 100% !important;
    box-sizing: border-box !important;
  }

  body.home-page .hero-how-link-wrap {
    text-align: center;
  }

  body.home-page .ds-founder {
    flex-direction: column;
    align-items: flex-start;
  }

  body.home-page .overlap-line {
    grid-template-columns: 78px 1fr;
    gap: 10px;
  }

  body.home-page .ds-band {
    padding-left: 20px;
    padding-right: 20px;
  }

  body.home-page .tools-index {
    grid-template-columns: 1fr;
  }

  /* Stack pricing instead of horizontal swipe carousel from main.css */
  body.home-page #pricing .pricing-grid {
    display: flex !important;
    flex-direction: column !important;
    flex-wrap: nowrap !important;
    gap: 16px !important;
    padding: 0 !important;
    margin: 0 !important;
    overflow: visible !important;
  }

  body.home-page #pricing .pricing-grid .pricing-card {
    flex: 1 1 auto !important;
    min-width: 0 !important;
    max-width: none !important;
    width: 100% !important;
  }

  body.home-page .tip-bubble,
  body.home-page .tip-bubble--wide {
    width: min(280px, calc(100vw - 48px));
    left: 0;
    transform: none;
  }

  body.home-page .tip-bubble--wide::after {
    left: 20px;
  }
}

/* Pricing tip bubbles */
body.home-page .tip {
  position: relative;
  display: inline-flex;
  align-items: center;
  gap: 4px;
  cursor: default;
}
body.home-page .tip-icon {
  width: 14px;
  height: 14px;
  border: none;
  border-radius: 50%;
  background: #dbeafe;
  color: #2563eb;
  font-size: 9px;
  font-weight: 700;
  font-family: inherit;
  line-height: 1;
  padding: 0;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  cursor: help;
  flex-shrink: 0;
  font-style: normal;
}
body.home-page .tip-icon:focus-visible {
  outline: 2px solid #2563eb;
  outline-offset: 2px;
}
body.home-page .tip-bubble {
  position: absolute;
  bottom: calc(100% + 8px);
  left: 50%;
  transform: translateX(-50%);
  background: #1e293b;
  color: #e2e8f0;
  font-size: 12px;
  line-height: 1.5;
  padding: 8px 12px;
  border-radius: 8px;
  width: 220px;
  white-space: normal;
  opacity: 0;
  visibility: hidden;
  pointer-events: none;
  transition: opacity 0.15s, visibility 0.15s;
  z-index: 20;
  font-weight: 400;
}
body.home-page .tip-bubble::after {
  content: '';
  position: absolute;
  top: 100%;
  left: 50%;
  transform: translateX(-50%);
  border: 5px solid transparent;
  border-top-color: #1e293b;
}
body.home-page .tip:hover .tip-bubble,
body.home-page .tip:focus-within .tip-bubble,
body.home-page .tip.is-open .tip-bubble {
  opacity: 1;
  visibility: visible;
}
body.home-page .tip.is-open .tip-bubble {
  pointer-events: auto;
}
/* Wide tooltip variant for full country list */
body.home-page .tip-bubble--wide {
  width: 320px;
  left: -8px;
  transform: none;
  padding: 14px 16px;
}
body.home-page .tip-bubble--wide::after {
  left: 20px;
  transform: none;
}
body.home-page .tip-bubble__header {
  display: block;
  font-size: 10px;
  font-weight: 700;
  letter-spacing: 0.07em;
  text-transform: uppercase;
  color: #94a3b8;
  margin-bottom: 12px;
  border-bottom: 1px solid rgba(255,255,255,0.08);
  padding-bottom: 8px;
}
body.home-page .tip-bubble__region {
  margin-bottom: 9px;
}
body.home-page .tip-bubble__region:last-of-type { margin-bottom: 0; }
body.home-page .tip-bubble__region-label {
  font-size: 9px;
  font-weight: 700;
  color: #64748b;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  margin-bottom: 4px;
}
body.home-page .tip-bubble__countries {
  font-size: 11px;
  color: #cbd5e1;
  line-height: 1.5;
}
body.home-page .tip-bubble__link {
  display: inline-block;
  margin-top: 11px;
  font-size: 11px;
  color: #93c5fd;
  font-weight: 600;
  text-decoration: none;
  pointer-events: auto;
  border-top: 1px solid rgba(255,255,255,0.08);
  padding-top: 9px;
  width: 100%;
}
body.home-page .tip-bubble__link:hover { color: #bfdbfe; }

@media (max-width: 768px) {
  body.home-page nav[role="navigation"] {
    left: 14px;
    right: 14px;
    box-shadow: 0 8px 24px rgba(0, 0, 0, 0.18);
  }

  /* Fill the top inset so body paper never peeks above the blue */
  body.home.home-page #main-content > section.hero {
    margin-top: 0 !important;
    padding-top: calc(var(--nav-height, 58px) + var(--nav-top-offset, 10px) + 24px) !important;
    padding-right: 0 !important;
    padding-bottom: 36px !important;
    padding-left: 0 !important;
  }

  body.home-page .hero .container,
  body.home-page .hero .container.hero-container {
    display: grid !important;
    flex-direction: unset !important;
    grid-template-columns: 1fr !important;
    gap: 32px !important;
    padding-left: max(40px, env(safe-area-inset-left, 0px)) !important;
    padding-right: max(40px, env(safe-area-inset-right, 0px)) !important;
    align-items: stretch !important;
    justify-items: center !important;
  }

  body.home-page .hero-content {
    order: 1 !important;
    text-align: center !important;
    width: 100% !important;
    max-width: 26rem !important;
    margin: 0 auto !important;
    padding: 0 !important;
  }

  body.home-page .hero-dashboard-preview {
    order: 2 !important;
    display: block !important;
    visibility: visible !important;
    max-width: 100% !important;
    width: 100% !important;
    padding: 4px 0 0 !important;
    margin: 0 !important;
  }

  body.home-page .hero h1,
  body.home-page .hero-support,
  body.home-page .hero-cta-buttons,
  body.home-page .hero-trust-stamp,
  body.home-page .hero .pf {
    opacity: 0;
    animation: dsHeroIn 0.75s var(--ds-ease) forwards !important;
  }

  body.home-page .hero h1 { animation-delay: 0.08s !important; }
  body.home-page .hero-support { animation-delay: 0.16s !important; }
  body.home-page .hero-cta-buttons { animation-delay: 0.24s !important; }
  body.home-page .hero-trust-stamp { animation-delay: 0.3s !important; }
  body.home-page .hero .pf { animation-delay: 0.2s !important; }

  body.home-page .hero .pf-shell {
    animation: dsPfFloat 10s ease-in-out 1s infinite alternate;
  }

  body.home-page .hero h1 {
    font-size: clamp(1.45rem, 6vw, 1.75rem) !important;
    font-weight: 700 !important;
    line-height: 1.22 !important;
    letter-spacing: -0.03em !important;
    text-align: center !important;
    margin: 0 0 14px !important;
    word-break: normal !important;
  }

  body.home-page .hero-support-desktop {
    display: none !important;
  }

  body.home-page .hero-support-mobile {
    display: inline !important;
  }

  body.home-page .hero-support {
    font-size: 0.95rem !important;
    line-height: 1.55 !important;
    margin: 0 auto 26px !important;
    max-width: 22rem !important;
    text-align: center !important;
    color: rgba(255, 255, 255, 0.9) !important;
  }

  body.home-page .hero-cta-buttons {
    flex-direction: column !important;
    align-items: center !important;
    justify-content: center !important;
    gap: 16px !important;
    width: 100% !important;
    margin: 0 0 18px !important;
  }

  body.home-page .hero-cta-btn-same,
  body.home-page a.hero-cta-btn-same {
    width: 100% !important;
    max-width: 100% !important;
    min-height: 52px !important;
    padding: 14px 22px !important;
    border-radius: 14px !important;
    font-size: 15px !important;
    box-sizing: border-box !important;
  }

  body.home-page .hero-how-link-wrap {
    text-align: center !important;
    width: 100%;
  }

  body.home-page .hero-how-link {
    font-size: 14px;
  }

  body.home-page .hero-trust-stamp {
    align-items: center !important;
    gap: 6px !important;
  }

  body.home-page .hero-trust-badge {
    justify-content: center !important;
    font-size: 13px !important;
  }

  body.home-page .hero-trust-sub {
    padding-left: 0 !important;
    text-align: center !important;
    color: rgba(255, 255, 255, 0.8) !important;
    font-size: 12px !important;
    line-height: 1.4 !important;
  }

  body.home-page .hero .pf-shell {
    overflow: hidden;
    max-width: 100%;
  }

  body.home-page .hero .pf-shell::before {
    inset: 18% 0 -10% 0;
  }

  body.home-page .hero .pf {
    border-radius: 16px !important;
    border: 1px solid rgba(255, 255, 255, 0.45) !important;
    max-width: 100%;
  }

  body.home-page .hero .pf-shot img {
    width: 100% !important;
    max-width: 100% !important;
    height: auto !important;
  }

  body.home-page .container {
    padding-left: max(24px, env(safe-area-inset-left, 0px));
    padding-right: max(24px, env(safe-area-inset-right, 0px));
  }

  body.home-page .ds-title {
    font-size: clamp(1.45rem, 6vw, 1.85rem);
  }

  body.home-page .ds-lead {
    font-size: 0.98rem;
  }
}

