/* ============================================================
   arigato.one — main.css  v16
   ============================================================
  
  FONTS — production setup (Local @font-face)
  ───────────────────────────────────────────
  Replaced Google Fonts @import with local high-performance 
  .woff2 declarations for 100/100 PageSpeed.
  ============================================================ */
   
@font-face {
  font-family: 'DM Sans';
  src: url('../fonts/DMSans-Regular.woff2') format('woff2');
  font-weight: 400;
  font-style: normal;
  font-display: swap;
}

@font-face {
  font-family: 'Cormorant Garamond';
  src: url('../fonts/CormorantGaramond.woff2') format('woff2');
  font-weight: 400;
  font-style: normal;
  font-display: swap;
}

@font-face {
  font-family: 'Cormorant Garamond';
  src: url('../fonts/CormorantGaramond-Italic.woff2') format('woff2');
  font-weight: 400;
  font-style: italic;
  font-display: swap;
}

/* ============================================================
   DESIGN TOKENS — Light (default)
   ============================================================ */
:root {
  --bg:           #F5F3FF;
  --bg-2:         #EDE9FB;
  --bg-3:         #FFFFFF;
  --surface:      #FFFFFF;
  --border:       rgba(80,60,160,0.10);
  --border-strong:rgba(80,60,160,0.20);
  --text:         #180F3A;
  --text-2:       rgba(24,15,58,0.55);
  --text-muted:   rgba(24,15,58,0.55);
  --text-faint:   rgba(24,15,58,0.35);
  --accent:       #FF3636;
  --accent-dim:   rgba(255,54,54,0.08);
  --accent-hover: #E52A2A;
  --accent-text:  #FFFFFF;
  --green:        #0CCE6B;

  /* Shadows */
  --shadow-xs: 0 1px 3px rgba(0,0,0,0.06);
  --shadow-sm: 0 2px 12px rgba(0,0,0,0.06), 0 1px 3px rgba(0,0,0,0.04);
  --shadow-md: 0 8px 32px rgba(0,0,0,0.08), 0 2px 8px rgba(0,0,0,0.04);
  --shadow-lg: 0 20px 60px rgba(0,0,0,0.10), 0 6px 20px rgba(0,0,0,0.06);
  --shadow-xl: 0 40px 80px rgba(0,0,0,0.12), 0 12px 32px rgba(0,0,0,0.08);

  /* Typography */
  --font-display: 'Cormorant Garamond', Georgia, 'Book Antiqua', serif;
  --font-sans:    'DM Sans', -apple-system, BlinkMacSystemFont, 'Helvetica Neue', Arial, sans-serif;

  /* Fluid type scale */
  --text-xs:   clamp(0.72rem,  0.68rem + 0.2vw,  0.82rem);
  --text-sm:   clamp(0.82rem,  0.78rem + 0.2vw,  0.94rem);
  --text-base: clamp(1rem,     0.96rem + 0.2vw,  1.1rem);
  --text-lg:   clamp(1.1rem,   1rem    + 0.5vw,  1.4rem);
  --text-xl:   clamp(1.3rem,   1.1rem  + 1vw,    1.9rem);
  --text-2xl:  clamp(1.8rem,   1.3rem  + 2.5vw,  3.2rem);
  --text-hero: clamp(2.2rem,   1.2rem  + 4.5vw,  5.5rem);

  /* Spacing */
  --sp-1:  0.25rem;   --sp-2:  0.5rem;    --sp-3:  0.75rem;
  --sp-4:  1rem;      --sp-5:  1.25rem;   --sp-6:  1.5rem;
  --sp-8:  2rem;      --sp-10: 2.5rem;    --sp-12: 3rem;
  --sp-16: 4rem;      --sp-20: 5rem;      --sp-24: 6rem;
  --sp-32: 8rem;

  /* Layout */
  --max-w:       1200px;
  --max-w-text:  700px;
  --pad-x:       clamp(1.5rem, 5vw, 4rem);
  --nav-h:       72px;
  --section-py:  clamp(5rem, 9vw, 9rem);
  --radius-sm:   8px;
  --radius-md:   14px;
  --radius-lg:   22px;
  --radius-xl:   32px;
  --radius-full: 9999px;

  /* Motion */
  --ease:       cubic-bezier(0.16, 1, 0.3, 1);
  --ease-out:   cubic-bezier(0, 0, 0.2, 1);
  --ease-in:    cubic-bezier(0.4, 0, 1, 1);
  --t-fast:     180ms;
  --t-base:     360ms;
  --t-slow:     700ms;
  --t-slower:   1000ms;
}

/* Dark theme via system preference */
@media (prefers-color-scheme: dark) {
  :root {
    --bg:           #0D0B1A;
    --bg-2:         #13102A;
    --bg-3:         #1A1635;
    --surface:      #1A1635;
    --border:       rgba(255,255,255,0.07);
    --border-strong:rgba(255,255,255,0.14);
    --text:         #EDE9F8;
    --text-2:       rgba(237,233,248,0.55);
    --text-muted:   rgba(237,233,248,0.55);
    --text-faint:   rgba(237,233,248,0.30);
    --accent:       #FF3636;
    --accent-dim:   rgba(255,54,54,0.12);
    --accent-hover: #FF5555;
    --shadow-xs: 0 1px 3px rgba(0,0,0,0.4);
    --shadow-sm: 0 2px 12px rgba(0,0,0,0.3);
    --shadow-md: 0 8px 32px rgba(0,0,0,0.4);
    --shadow-lg: 0 20px 60px rgba(0,0,0,0.5);
    --shadow-xl: 0 40px 80px rgba(0,0,0,0.6);
  }
}

/* Manual dark override */
html.dark {
  --bg:           #0D0B1A;
  --bg-2:         #13102A;
  --bg-3:         #1A1635;
  --surface:      #1A1635;
  --border:       rgba(255,255,255,0.07);
  --border-strong:rgba(255,255,255,0.14);
  --text:         #EDE9F8;
  --text-2:       rgba(237,233,248,0.55);
  --text-muted:   rgba(237,233,248,0.55);
  --text-faint:   rgba(237,233,248,0.30);
  --accent:       #FF3636;
  --accent-dim:   rgba(255,54,54,0.12);
  --accent-hover: #FF5555;
  --shadow-xs: 0 1px 3px rgba(0,0,0,0.4);
  --shadow-sm: 0 2px 12px rgba(0,0,0,0.3);
  --shadow-md: 0 8px 32px rgba(0,0,0,0.4);
  --shadow-lg: 0 20px 60px rgba(0,0,0,0.5);
  --shadow-xl: 0 40px 80px rgba(0,0,0,0.6);
}

/* Manual light override */
html.light {
  --bg:           #F5F3FF;
  --bg-2:         #EDE9FB;
  --bg-3:         #FFFFFF;
  --surface:      #FFFFFF;
  --border:       rgba(80,60,160,0.10);
  --border-strong:rgba(80,60,160,0.20);
  --text:         #180F3A;
  --text-2:       rgba(24,15,58,0.55);
  --text-muted:   rgba(24,15,58,0.55);
  --text-faint:   rgba(24,15,58,0.35);
  --accent:       #FF3636;
  --accent-dim:   rgba(255,54,54,0.08);
  --accent-hover: #E52A2A;
  --shadow-xs: 0 1px 3px rgba(0,0,0,0.06);
  --shadow-sm: 0 2px 12px rgba(0,0,0,0.06), 0 1px 3px rgba(0,0,0,0.04);
  --shadow-md: 0 8px 32px rgba(0,0,0,0.08), 0 2px 8px rgba(0,0,0,0.04);
  --shadow-lg: 0 20px 60px rgba(0,0,0,0.10), 0 6px 20px rgba(0,0,0,0.06);
  --shadow-xl: 0 40px 80px rgba(0,0,0,0.12), 0 12px 32px rgba(0,0,0,0.08);
}

/* ============================================================
   RESET & BASE
   ============================================================ */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }

html {
  -webkit-text-size-adjust: 100%;
}

body {
  font-family: var(--font-sans);
  font-size: var(--text-base);
  line-height: 1.65;
  color: var(--text);
  background-color: var(--bg);
  min-height: 100svh;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  overflow-x: hidden;
}

img, picture, svg { display: block; max-width: 100%; height: auto; }
a { color: inherit; text-decoration: none; }
ul, ol { list-style: none; }
button { font-family: var(--font-sans); cursor: pointer; border: none; background: none; }
p { text-wrap: pretty; }
h1, h2, h3, h4 { text-wrap: balance; }

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

.container {
  width: 100%;
  max-width: var(--max-w);
  margin-inline: auto;
  padding-inline: var(--pad-x);
}

/* ============================================================
   PAGE BORDER FRAME
   ============================================================ */
#page-border {
  position: fixed;
  inset: 0;
  z-index: 99998;
  pointer-events: none;
  /* view-transition-name keeps it in its own VT layer during theme animations */
  view-transition-name: page-border;
}

/* Gradient border via background + mask so VT can snapshot it correctly.
   (border-image is not captured by the View Transitions snapshot API) */
#page-border::before {
  content: '';
  position: absolute;
  inset: 0;
  padding: 2px;
  background: linear-gradient(
    to bottom,
    #FF3636 0%,
    rgba(255, 54, 54, 0.45) 35%,
    rgba(255, 54, 54, 0.12) 65%,
    transparent 100%
  );
  -webkit-mask:
    linear-gradient(#000 0 0) content-box,
    linear-gradient(#000 0 0);
  -webkit-mask-composite: destination-out;
  mask:
    linear-gradient(#000 0 0) content-box,
    linear-gradient(#000 0 0);
  mask-composite: exclude;
}

.skip-link {
  position: absolute; top: -200%; left: 1rem;
  padding: 0.5rem 1.25rem;
  background: var(--accent); color: var(--accent-text);
  font-weight: 600; z-index: 9999;
  border-radius: var(--radius-sm);
  transition: top 0.18s;
}
.skip-link:focus { top: 0.75rem; }

/* ============================================================
   SCROLL REVEAL
   ============================================================ */
.reveal {
  opacity: 0;
  transform: translateY(20px);
  transition:
    opacity var(--t-slow) var(--ease),
    transform var(--t-slow) var(--ease);
}
.reveal.visible { opacity: 1; transform: translateY(0); }

.reveal-delay-1 { transition-delay: 100ms; }
.reveal-delay-2 { transition-delay: 200ms; }
.reveal-delay-3 { transition-delay: 300ms; }
.reveal-delay-4 { transition-delay: 400ms; }

/* ============================================================
   BUTTONS
   ============================================================ */
.btn {
  display: inline-flex;
  align-items: center;
  gap: var(--sp-2);
  padding: 0.875rem 1.75rem;
  border-radius: var(--radius-full);
  font-family: var(--font-sans);
  font-size: var(--text-sm);
  font-weight: 500;
  letter-spacing: 0.01em;
  line-height: 1;
  cursor: pointer;
  transition:
    background-color var(--t-fast) var(--ease-out),
    color var(--t-fast) var(--ease-out),
    transform var(--t-fast) var(--ease-out),
    box-shadow var(--t-fast) var(--ease-out),
    border-color var(--t-fast) var(--ease-out);
  white-space: nowrap;
  text-align: center;
}

.btn:focus-visible {
  outline: 2px solid var(--accent);
  outline-offset: 3px;
}

.btn:active { transform: scale(0.98); }

.btn-primary {
  background: var(--accent);
  color: var(--accent-text);
}
.btn-primary:hover {
  background: var(--accent-hover);
  transform: translateY(-1px);
  box-shadow: var(--shadow-md);
}

.btn-ghost {
  background: transparent;
  color: var(--text);
  border: 1px solid var(--border-strong);
}
.btn-ghost:hover {
  background: var(--bg-2);
  border-color: transparent;
}

.btn-sm { padding: 0.625rem 1.25rem; font-size: var(--text-xs); }
.btn-lg { padding: 1.125rem 2.25rem; font-size: var(--text-base); }

/* ============================================================
   NAVIGATION
   ============================================================ */
.site-header {
  position: fixed;
  inset: 0 0 auto 0;
  z-index: 100;
  height: var(--nav-h);
  transition:
    background-color var(--t-base) var(--ease),
    backdrop-filter var(--t-base) var(--ease),
    border-color var(--t-base) var(--ease);
  border-bottom: 1px solid transparent;
}

.site-header.scrolled {
  background-color: rgba(245,243,255,0.88);
  backdrop-filter: blur(20px) saturate(1.4);
  -webkit-backdrop-filter: blur(20px) saturate(1.4);
  border-color: var(--border);
}

@media (prefers-color-scheme: dark) {
  .site-header.scrolled {
    background-color: rgba(13,11,26,0.88);
  }
}

html.dark .site-header.scrolled {
  background-color: rgba(13,11,26,0.88);
}

html.light .site-header.scrolled {
  background-color: rgba(245,243,255,0.88);
}

.nav {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 100%;
  gap: var(--sp-8);
}

.nav-logo {
  display: flex;
  align-items: center;
  flex-shrink: 0;
}
.nav-logo img { height: 26px; width: auto; }

.logo-dark  { display: none; }
.logo-light { display: block; }

@media (prefers-color-scheme: dark) {
  .logo-light { display: none; }
  .logo-dark  { display: block; }
}
html.dark  .logo-light { display: none; }
html.dark  .logo-dark  { display: block; }
html.light .logo-light { display: block; }
html.light .logo-dark  { display: none; }

.nav-links {
  display: none;
  align-items: center;
  gap: var(--sp-8);
}

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

.nav-link {
  font-size: var(--text-sm);
  font-weight: 400;
  color: var(--text-muted);
  transition: color var(--t-fast) ease;
}
.nav-link:hover { color: var(--text); }

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

/* ── Theme toggle button ── */
.theme-toggle {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 36px;
  height: 36px;
  border-radius: 50%;
  border: 1px solid var(--border);
  background: transparent;
  color: var(--text);
  cursor: pointer;
  box-shadow: var(--shadow-sm);
  flex-shrink: 0;
}
.theme-toggle svg { display: block; }

/* ── Lang switcher ── */
.lang-switcher { position: relative; }

.lang-current {
  display: flex;
  align-items: center;
  gap: 6px;
  height: 36px;
  padding: 0 10px;
  border: 1px solid var(--border);
  border-radius: 8px;
  background: transparent;
  color: var(--text);
  cursor: pointer;
  transition: background-color var(--t-fast) ease, border-color var(--t-fast) ease;
  font-family: var(--font-sans);
}
.lang-current:hover { background: var(--accent-dim); border-color: var(--accent); }

.lang-flag {
  width: 20px;
  height: 14px;
  border-radius: 2px;
  flex-shrink: 0;
  overflow: hidden;
  display: flex;
  align-items: center;
}
.lang-flag svg { width: 100%; height: 100%; display: block; }

.lang-code {
  font-size: 0.75rem;
  font-weight: 600;
  letter-spacing: 0.05em;
  text-transform: uppercase;
}

/* On very narrow screens hide the language code text and tighten the
   lang button padding so the hamburger is never clipped */
@media (max-width: 359px) {
  .lang-code { display: none; }
  .lang-current { padding: 0 8px; gap: 0; }
  .nav-actions { gap: 8px; }
}

.lang-dropdown {
  position: absolute;
  top: calc(100% + 8px);
  right: 0;
  background: var(--bg-3);
  border: 1px solid var(--border);
  border-radius: 12px;
  padding: 6px;
  min-width: 120px;
  display: none;
  flex-direction: column;
  gap: 2px;
  z-index: 200;
  box-shadow: var(--shadow-md);
}
.lang-switcher.open .lang-dropdown { display: flex; }

.lang-option {
  display: flex;
  align-items: center;
  gap: 8px;
  padding: 8px 10px;
  border-radius: 8px;
  width: 100%;
  text-align: left;
  cursor: pointer;
  background: transparent;
  color: var(--text);
  font-family: var(--font-sans);
  transition: background-color var(--t-fast) ease;
}
.lang-option:hover { background: var(--accent-dim); }

.nav-toggle {
  display: flex;
  flex-direction: column;
  justify-content: center;
  gap: 5px;
  width: 36px;
  height: 36px;
  padding: 6px;
  border-radius: var(--radius-sm);
  cursor: pointer;
}
@media (min-width: 768px) { .nav-toggle { display: none; } }

/* Never show the scrolled CTA in the header on mobile — it crowds out the hamburger */
@media (max-width: 767px) { #nav-cta { display: none !important; } }

.nav-toggle span {
  display: block;
  height: 1.5px;
  background: var(--text);
  border-radius: 2px;
  transition: transform var(--t-base) var(--ease), opacity var(--t-base) var(--ease);
}
.nav-toggle[aria-expanded="true"] span:nth-child(1) { transform: translateY(6.5px) rotate(45deg); }
.nav-toggle[aria-expanded="true"] span:nth-child(2) { opacity: 0; transform: scaleX(0); }
.nav-toggle[aria-expanded="true"] span:nth-child(3) { transform: translateY(-6.5px) rotate(-45deg); }

.nav-mobile {
  position: fixed;
  inset: var(--nav-h) 0 0 0;
  /* z-index above the header (100) so the menu overlays the page,
     but the header itself always paints on top via its own z-index */
  z-index: 101;
  background: var(--bg);
  padding: var(--sp-8) var(--pad-x);
  display: flex;
  flex-direction: column;
  gap: var(--sp-8);
  transform: translateY(-8px);
  opacity: 0;
  pointer-events: none;
  transition:
    opacity var(--t-base) var(--ease),
    transform var(--t-base) var(--ease);
  border-top: 1px solid var(--border);
}
.nav-mobile.open {
  opacity: 1;
  transform: translateY(0);
  pointer-events: auto;
}
@media (min-width: 768px) { .nav-mobile { display: none; } }

.nav-mobile ul { display: flex; flex-direction: column; gap: var(--sp-6); }

.nav-mobile-link {
  font-size: var(--text-xl);
  font-weight: 500;
  color: var(--text);
}

/* ============================================================
   HERO
   ============================================================ */
.hero {
  min-height: 100svh;
  display: flex;
  flex-direction: column;
  justify-content: flex-start;
  position: relative;
  overflow: hidden;
}

.hero::before {
  content: '';
  position: absolute;
  inset: 0;
  background:
    radial-gradient(ellipse 80% 60% at 70% 40%, rgba(255,54,54,0.04) 0%, transparent 70%);
  pointer-events: none;
}

@media (prefers-color-scheme: dark) {
  .hero::before {
    background:
      radial-gradient(ellipse 70% 50% at 65% 35%, rgba(255,54,54,0.06) 0%, transparent 65%);
  }
}
html.dark .hero::before {
  background:
    radial-gradient(ellipse 70% 50% at 65% 35%, rgba(255,54,54,0.06) 0%, transparent 65%);
}

.hero-container {
  display: grid;
  grid-template-columns: 1fr;
  gap: var(--sp-16);
  align-items: center;
  padding-block: var(--sp-20);
}

@media (min-width: 1024px) {
  .hero-container {
    grid-template-columns: 1fr 420px;
    gap: var(--sp-12);
    padding-block: var(--sp-24);
  }
}

/* Short viewports (SE, landscape phones): anchor content to the top so
   the stacked single-column layout doesn't overflow above the fold */
@media (max-height: 750px) {
  .hero-container {
    padding-block: var(--sp-8);
  }
}

/* Grid items: prevent min-content blowout on narrow viewports */
.hero-container > * {
  min-width: 0;
}

/* ── Eyebrow ── */
.hero-eyebrow {
  display: inline-flex;
  align-items: center;
  gap: var(--sp-2);
  font-size: var(--text-xs);
  font-weight: 500;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--text-muted);
  margin-bottom: var(--sp-6);
  opacity: 0;
  transform: translateX(-16px);
  animation: eyebrowIn 0.8s var(--ease) 0.15s forwards;
}

.eyebrow-dot {
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: var(--accent);
  flex-shrink: 0;
  animation: pulse 3s ease-in-out 1.2s infinite;
}

@keyframes eyebrowIn {
  to { opacity: 1; transform: translateX(0); }
}

@keyframes pulse {
  0%, 100% { opacity: 1; transform: scale(1); }
  50%       { opacity: 0.5; transform: scale(0.7); }
}

/* ── Headline ── */
.hero-headline {
  margin-bottom: var(--sp-8);
}

.line-wrap {
  display: block;
  overflow: hidden;
  padding-bottom: 0.07em;
  margin-bottom: -0.07em;
}

.headline-line {
  display: block;
  font-family: var(--font-sans);
  font-size: var(--text-hero);
  font-weight: 600;
  line-height: 1.0;
  letter-spacing: -0.03em;
  color: var(--text);
  opacity: 0;
  transform: translateY(105%);
}

.headline-line.line-serif {
  font-family: var(--font-display);
  font-style: italic;
  font-weight: 400;
  font-size: calc(var(--text-hero) * 1.1);
  letter-spacing: -0.01em;
  line-height: 1.05;
}

.hero-headline.lines-loaded .headline-line {
  animation: lineReveal 0.9s var(--ease) both;
}
.hero-headline.lines-loaded .headline-line:nth-child(1) { animation-delay: 0.3s; }
.hero-headline.lines-loaded .headline-line:nth-child(2) { animation-delay: 0.44s; }
.hero-headline.lines-loaded .headline-line:nth-child(3) { animation-delay: 0.58s; }

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

/* ── Body & CTAs ── */
.hero-body {
  font-size: var(--text-lg);
  color: var(--text-muted);
  line-height: 1.7;
  margin-bottom: var(--sp-10);
  max-width: 480px;
}

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

.hero-proof {
  display: flex;
  align-items: center;
  flex-wrap: wrap;
  gap: var(--sp-3);
  font-size: var(--text-xs);
  font-weight: 500;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: var(--text-faint);
}

.hero-proof .sep { color: var(--border-strong); }

/* ── Score card ── */
.hero-visual {
  display: flex;
  justify-content: center;
  opacity: 0;
  transform: translateX(32px) translateY(16px);
  animation: visualIn 1s var(--ease) 0.75s forwards;
}

@media (min-width: 1024px) {
  .hero-visual { justify-content: flex-end; }
}

@keyframes visualIn {
  to { opacity: 1; transform: translateX(0) translateY(0); }
}

.score-card {
  background: #FFFFFF;
  color: #0A0A0A;
  border-radius: var(--radius-lg);
  padding: var(--sp-6);
  box-shadow: var(--shadow-xl);
  width: 100%;
  max-width: 300px;
  animation: cardFloat 9s ease-in-out 1.8s infinite;
  border: 1px solid rgba(0,0,0,0.06);
}

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

.score-header {
  display: flex;
  align-items: center;
  gap: var(--sp-2);
  margin-bottom: var(--sp-5);
}

.score-header-label {
  font-size: 0.75rem;
  font-weight: 600;
  color: #0A0A0A;
  flex: 1;
  letter-spacing: 0.01em;
}

.score-live {
  font-size: 0.65rem;
  font-weight: 600;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--green);
  background: rgba(12, 206, 107, 0.1);
  padding: 2px 8px;
  border-radius: var(--radius-full);
}

.score-body {
  display: flex;
  align-items: center;
  gap: var(--sp-5);
  margin-bottom: var(--sp-5);
}

.score-ring-wrap {
  position: relative;
  flex-shrink: 0;
  width: 72px;
  height: 72px;
  display: flex;
  align-items: center;
  justify-content: center;
}

.score-ring { position: absolute; inset: 0; }

.score-ring-fill {
  animation: ringFill 1.6s var(--ease) 1.4s forwards;
}

@keyframes ringFill {
  to { stroke-dashoffset: 0; }
}

.score-number {
  font-size: 1.6rem;
  font-weight: 700;
  color: #0A0A0A;
  letter-spacing: -0.04em;
  position: relative;
  z-index: 1;
}

.score-metrics { flex: 1; display: flex; flex-direction: column; gap: 7px; }

.metric {
  display: grid;
  grid-template-columns: 1fr auto auto;
  align-items: center;
  gap: var(--sp-2);
}

.metric-label {
  font-size: 0.68rem;
  color: #5A5A5A;
  white-space: nowrap;
}

.metric-bar {
  width: 44px;
  height: 4px;
  background: #E5E5E5;
  border-radius: 2px;
  overflow: hidden;
}

.metric-fill {
  height: 100%;
  background: var(--green);
  border-radius: 2px;
  transform: scaleX(0);
  transform-origin: left;
  animation: barFill 0.8s var(--ease) calc(1.6s + var(--bar-delay, 0s)) forwards;
}

.metric:nth-child(1) .metric-fill { --bar-delay: 0s; }
.metric:nth-child(2) .metric-fill { --bar-delay: 0.1s; }
.metric:nth-child(3) .metric-fill { --bar-delay: 0.2s; }
.metric:nth-child(4) .metric-fill { --bar-delay: 0.3s; }

@keyframes barFill {
  to { transform: scaleX(1); }
}

.metric-val {
  font-size: 0.68rem;
  font-weight: 700;
  color: var(--green);
  width: 1.8rem;
  text-align: right;
}

.score-caption {
  font-size: 0.7rem;
  color: #9A9A9A;
  text-align: center;
  letter-spacing: 0.04em;
  border-top: 1px solid #F0F0F0;
  padding-top: var(--sp-4);
  margin-top: var(--sp-1);
}

/* ── Scroll indicator ── */
.hero-scroll {
  position: fixed;
  bottom: var(--sp-8);
  left: 50%;
  transform: translateX(-50%);
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: var(--sp-2);
  z-index: 10;
  opacity: 0;
  animation: fadeIn 1s ease 2s forwards;
  transition: opacity 0.5s ease;
  pointer-events: none;
}
/* Fade out once the user has scrolled past the hero */
.hero-scroll.is-gone {
  opacity: 0 !important;
}

.scroll-indicator {
  width: 1px;
  height: 40px;
  background: linear-gradient(to bottom, transparent, var(--text-faint));
  animation: scrollBounce 2.4s ease-in-out 2.2s infinite;
}

@keyframes scrollBounce {
  0%, 100% { transform: scaleY(1); transform-origin: top; }
  50%       { transform: scaleY(0.4); transform-origin: bottom; }
}

@keyframes fadeIn {
  to { opacity: 1; }
}

/* ============================================================
   MARQUEE
   ============================================================ */
.marquee-section {
  border-block: 1px solid var(--border);
  overflow: hidden;
  padding-block: var(--sp-5);
}

.marquee-track { overflow: hidden; }

.marquee-inner {
  display: inline-flex;
  align-items: center;
  gap: var(--sp-8);
  white-space: nowrap;
  animation: marquee 32s linear infinite;
}

.marquee-inner:hover { animation-play-state: paused; }

@keyframes marquee {
  from { transform: translateX(0); }
  to   { transform: translateX(-50%); }
}

.marquee-item {
  font-size: var(--text-xs);
  font-weight: 500;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--text-faint);
}

.marquee-dot {
  color: var(--border-strong);
  font-size: 0.6rem;
  flex-shrink: 0;
}

/* ============================================================
   SECTION SHARED
   ============================================================ */
.section { padding-block: var(--section-py); }

.section-eyebrow {
  display: inline-block;
  font-size: var(--text-xs);
  font-weight: 500;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--accent);
  margin-bottom: var(--sp-5);
}

.section-headline {
  font-family: var(--font-sans);
  font-size: var(--text-2xl);
  font-weight: 600;
  line-height: 1.15;
  letter-spacing: -0.025em;
  color: var(--text);
  margin-bottom: var(--sp-16);
}

.section-headline em {
  font-family: var(--font-display);
  font-style: italic;
  font-weight: 400;
  font-size: 1.1em;
}

/* ============================================================
   SERVICES
   ============================================================ */
.services-section { background: var(--bg); }

.services-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: var(--sp-6);
}

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

.service-card {
  padding: var(--sp-8);
  border-radius: var(--radius-lg);
  border: 1px solid var(--border);
  background: var(--surface);
  display: flex;
  flex-direction: column;
  gap: var(--sp-4);
  transition:
    border-color var(--t-base) var(--ease),
    box-shadow var(--t-base) var(--ease),
    transform var(--t-base) var(--ease);
}

.service-card:hover {
  border-color: var(--accent);
  box-shadow: var(--shadow-md);
  transform: translateY(-3px);
}

.service-icon {
  width: 44px;
  height: 44px;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: var(--radius-sm);
  background: var(--accent-dim);
  color: var(--accent);
  flex-shrink: 0;
}

.service-title {
  font-size: var(--text-lg);
  font-weight: 600;
  letter-spacing: -0.02em;
  color: var(--text);
  line-height: 1.3;
}

.service-body {
  font-size: var(--text-sm);
  color: var(--text-muted);
  line-height: 1.75;
  flex: 1;
}

.service-tags {
  display: flex;
  flex-wrap: wrap;
  gap: var(--sp-2);
  margin-top: var(--sp-2);
}

.service-tags li {
  font-size: var(--text-xs);
  font-weight: 500;
  letter-spacing: 0.04em;
  color: var(--text-faint);
  background: var(--bg-2);
  padding: 4px 10px;
  border-radius: var(--radius-full);
  border: 1px solid var(--border);
}

/* ============================================================
   STATS
   ============================================================ */
.stats-section {
  background: var(--bg-2);
  border-block: 1px solid var(--border);
}

.stats-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: var(--sp-8) var(--sp-6);
}

@media (min-width: 768px) {
  .stats-grid {
    grid-template-columns: repeat(4, 1fr);
    gap: 0;
  }
}

.stat-item {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  gap: var(--sp-2);
  padding: var(--sp-6) var(--sp-8);
}

@media (min-width: 768px) {
  .stat-item {
    border-right: 1px solid var(--border);
  }
  .stat-item:last-child {
    border-right: none;
  }
}

.stat-number {
  font-family: var(--font-sans);
  font-size: clamp(2.4rem, 1.5rem + 3.5vw, 4.5rem);
  font-weight: 600;
  letter-spacing: -0.04em;
  color: var(--text);
  line-height: 1;
}

.stat-label {
  font-size: var(--text-sm);
  color: var(--text-muted);
  font-weight: 400;
}

/* On very narrow screens the default padding + font is too wide for a 2-col grid.
   Tighten the column gap, reduce padding, and shrink the number slightly. */
@media (max-width: 479px) {
  .stats-grid { gap: var(--sp-6) var(--sp-3); }
  .stat-item   { padding: var(--sp-4) var(--sp-2); }
  .stat-number { font-size: clamp(1.8rem, 5vw + 0.5rem, 2.2rem); }

  /* Proof stats: tighten so all three items fit on one line */
  .hero-proof { gap: var(--sp-2); letter-spacing: 0.03em; }
  .hero-proof .sep { display: none; }
}

/* ============================================================
   CLIENTS SECTION
   ============================================================ */
.clients-section {
  padding: 4rem 0;
  background: var(--bg);
  border-bottom: 1px solid var(--border);
}

.clients-header {
  text-align: center;
  margin-bottom: 2.5rem;
}

.clients-title {
  font-size: 0.875rem;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--text-2);
}

.clients-grid {
  display: flex;
  flex-wrap: wrap;
  gap: 1.5rem 2rem;
  justify-content: center;
  align-items: center;
}

.client-country {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0.5rem;
}

.client-flag {
  width: 40px;
  height: 28px;
  border-radius: 4px;
  overflow: hidden;
  box-shadow: 0 1px 4px rgba(0,0,0,0.15);
}

.client-flag svg {
  width: 100%;
  height: 100%;
  display: block;
}

.client-name {
  font-size: 0.7rem;
  color: var(--text-2);
  letter-spacing: 0.05em;
}

/* ============================================================
   PROCESS
   ============================================================ */
.process-section { background: var(--bg); }

.process-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: var(--sp-10);
}

@media (min-width: 640px) {
  .process-grid { grid-template-columns: repeat(2, 1fr); gap: var(--sp-10) var(--sp-12); }
}

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

.process-step {
  display: flex;
  flex-direction: column;
  gap: var(--sp-4);
  position: relative;
}

@media (min-width: 1024px) {
  .process-step:not(:last-child)::after {
    content: '';
    position: absolute;
    top: 1.1rem;
    left: calc(100% + var(--sp-5));
    width: 50%;
    height: 1px;
    background: linear-gradient(to right, var(--border-strong), var(--border));
  }
}

.step-number {
  font-family: var(--font-display);
  font-size: clamp(2.8rem, 2rem + 3vw, 5rem);
  font-weight: 400;
  line-height: 1;
  color: var(--accent);
  letter-spacing: -0.03em;
}

.step-title {
  font-size: var(--text-base);
  font-weight: 600;
  color: var(--text);
  letter-spacing: -0.01em;
}

.step-body {
  font-size: var(--text-sm);
  color: var(--text-muted);
  line-height: 1.75;
}

/* ============================================================
   WORK
   ============================================================ */
.work-section { background: var(--bg-2); }

.work-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: var(--sp-6);
  margin-bottom: var(--sp-12);
}

@media (min-width: 768px) {
  .work-grid {
    grid-template-columns: 1fr 1fr;
    grid-template-rows: auto auto;
  }
  .work-card-large {
    grid-column: 1;
    grid-row: 1 / 3;
  }
}

.work-card {
  border-radius: var(--radius-lg);
  overflow: hidden;
  border: 1px solid var(--border);
  background: var(--surface);
  transition: transform var(--t-base) var(--ease), box-shadow var(--t-base) var(--ease), border-color var(--t-base) var(--ease);
}

.work-card:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-lg);
  border-color: var(--accent);
}

.work-image {
  position: relative;
  overflow: hidden;
}

.work-card-large .work-image { aspect-ratio: 3/4; }
@media (max-width: 767px) { .work-card-large .work-image { aspect-ratio: 16/10; } }
.work-card:not(.work-card-large) .work-image { aspect-ratio: 16/9; }

.work-image-bg {
  width: 100%;
  height: 100%;
  transition: transform 0.7s var(--ease);
}
.work-card:hover .work-image-bg { transform: scale(1.04); }

.work-image-bg.bg-1 {
  background: linear-gradient(145deg, #EDE8DF 0%, #D8D0C4 100%);
}
.work-image-bg.bg-2 {
  background: linear-gradient(145deg, #E2E9F0 0%, #CAD5E0 100%);
}
.work-image-bg.bg-3 {
  background: linear-gradient(145deg, #E8E2ED 0%, #D4CAE0 100%);
}

@media (prefers-color-scheme: dark) {
  .work-image-bg.bg-1 { background: linear-gradient(145deg, #1C1814 0%, #120F0A 100%); }
  .work-image-bg.bg-2 { background: linear-gradient(145deg, #141820 0%, #0C1018 100%); }
  .work-image-bg.bg-3 { background: linear-gradient(145deg, #18141C 0%, #100C16 100%); }
}
html.dark .work-image-bg.bg-1 { background: linear-gradient(145deg, #1C1814 0%, #120F0A 100%); }
html.dark .work-image-bg.bg-2 { background: linear-gradient(145deg, #141820 0%, #0C1018 100%); }
html.dark .work-image-bg.bg-3 { background: linear-gradient(145deg, #18141C 0%, #100C16 100%); }

.work-badge {
  position: absolute;
  top: var(--sp-4);
  right: var(--sp-4);
  font-size: 0.65rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  background: var(--accent);
  color: var(--accent-text);
  padding: 4px 10px;
  border-radius: var(--radius-full);
  backdrop-filter: blur(8px);
}

.work-info {
  padding: var(--sp-6);
  display: flex;
  flex-direction: column;
  gap: var(--sp-2);
}

.work-category {
  font-size: var(--text-xs);
  font-weight: 500;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--text-faint);
}

.work-title {
  font-size: var(--text-base);
  font-weight: 600;
  color: var(--text);
  letter-spacing: -0.01em;
}

.work-result {
  font-size: var(--text-sm);
  color: var(--text-muted);
}

.work-cta { text-align: center; }

/* ============================================================
   TESTIMONIAL
   ============================================================ */
.testimonial-section {
  background: var(--bg);
  padding-block: var(--section-py);
}

.testimonial {
  max-width: 860px;
  margin-inline: auto;
  text-align: center;
}

.testimonial-quote {
  font-family: var(--font-display);
  font-size: clamp(1.5rem, 1rem + 2.5vw, 2.6rem);
  font-style: italic;
  font-weight: 400;
  line-height: 1.5;
  color: var(--text);
  margin-bottom: var(--sp-10);
  letter-spacing: -0.01em;
  quotes: '"' '"';
}

.testimonial-quote::before { content: open-quote; }
.testimonial-quote::after  { content: close-quote; }

.testimonial-footer {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: var(--sp-4);
}

.testimonial-avatar {
  width: 40px;
  height: 40px;
  border-radius: 50%;
  background: var(--bg-3);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: var(--text-xs);
  font-weight: 600;
  color: var(--text-muted);
  flex-shrink: 0;
}

.testimonial-meta { text-align: left; }

.testimonial-name {
  display: block;
  font-style: normal;
  font-weight: 600;
  font-size: var(--text-sm);
  color: var(--text);
}

.testimonial-role {
  font-size: var(--text-xs);
  color: var(--text-faint);
}

/* ============================================================
   CTA
   ============================================================ */
.cta-section {
  background: var(--bg-2);
  border-top: 1px solid var(--border);
}

.cta-content {
  text-align: center;
  max-width: 700px;
  margin-inline: auto;
}

.cta-headline {
  font-family: var(--font-sans);
  font-size: var(--text-2xl);
  font-weight: 600;
  letter-spacing: -0.03em;
  line-height: 1.15;
  color: var(--text);
  margin-bottom: var(--sp-6);
}

.cta-body {
  font-size: var(--text-lg);
  color: var(--text-muted);
  line-height: 1.7;
  margin-bottom: var(--sp-10);
}

.cta-note {
  font-size: var(--text-xs);
  color: var(--text-faint);
  margin-top: var(--sp-5);
  letter-spacing: 0.04em;
}

/* ============================================================
   FOOTER
   ============================================================ */
.footer {
  background: var(--bg);
  border-top: 1px solid var(--border);
  padding-block: var(--sp-16) var(--sp-10);
}

.footer-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: var(--sp-12);
  margin-bottom: var(--sp-12);
}

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

.footer-brand {
  display: flex;
  flex-direction: column;
  gap: var(--sp-4);
}
.footer-brand img { height: 22px; width: auto; }

.footer-tagline {
  font-size: var(--text-sm);
  color: var(--text-muted);
  max-width: 300px;
  line-height: 1.6;
}

.footer-nav {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: var(--sp-8);
}

.footer-nav-title {
  font-size: var(--text-xs);
  font-weight: 600;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--text-faint);
  margin-bottom: var(--sp-4);
}

.footer-nav-group ul {
  display: flex;
  flex-direction: column;
  gap: var(--sp-3);
}

.footer-nav-group a {
  font-size: var(--text-sm);
  color: var(--text-muted);
  transition: color var(--t-fast) ease;
}
.footer-nav-group a:hover { color: var(--accent); }

.footer-bottom {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: var(--sp-5);
  padding-top: var(--sp-8);
  border-top: 1px solid var(--border);
  text-align: center;
}

@media (min-width: 640px) {
  .footer-bottom { flex-direction: row; justify-content: space-between; text-align: left; }
}

.footer-legal {
  font-size: var(--text-xs);
  color: var(--text-faint);
}

.footer-credit {
  display: inline-flex;
  align-items: center;
  gap: var(--sp-2);
  font-size: var(--text-xs);
  color: var(--text-faint);
  transition: color var(--t-fast) ease;
}
.footer-credit:hover { color: var(--accent); }

.footer-credit-logo.logo-light { display: inline-block; }
.footer-credit-logo.logo-dark  { display: none; }

@media (prefers-color-scheme: dark) {
  .footer-credit-logo.logo-light { display: none; }
  .footer-credit-logo.logo-dark  { display: inline-block; }
}
html.dark  .footer-credit-logo.logo-light { display: none; }
html.dark  .footer-credit-logo.logo-dark  { display: inline-block; }
html.light .footer-credit-logo.logo-light { display: inline-block; }
html.light .footer-credit-logo.logo-dark  { display: none; }

/* ============================================================
   COOKIE BANNER
   ============================================================ */
.cookie-banner {
  position: fixed;
  bottom: var(--sp-5);
  left: 50%;
  transform: translateX(-50%) translateY(0);
  z-index: 200;
  width: calc(100% - var(--sp-8));
  max-width: 640px;
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  padding: var(--sp-5) var(--sp-6);
  box-shadow: var(--shadow-lg);
  display: flex;
  align-items: center;
  flex-wrap: wrap;
  gap: var(--sp-4);
  transition: transform 0.5s var(--ease), opacity 0.5s var(--ease);
}

.cookie-banner[aria-hidden="true"] {
  transform: translateX(-50%) translateY(120%);
  opacity: 0;
  pointer-events: none;
}

.cookie-text {
  font-size: var(--text-sm);
  color: var(--text-muted);
  flex: 1;
  min-width: 200px;
}

.cookie-link { color: var(--text); text-decoration: underline; text-underline-offset: 3px; }

.cookie-actions { display: flex; gap: var(--sp-3); align-items: center; flex-shrink: 0; }

.cookie-btn {
  font-size: var(--text-xs);
  font-weight: 500;
  padding: 0.5rem 1.25rem;
  border-radius: var(--radius-full);
  cursor: pointer;
  transition: all var(--t-fast) ease;
}

.cookie-btn-primary {
  background: var(--accent);
  color: var(--accent-text);
}
.cookie-btn-primary:hover { background: var(--accent-hover); }

.cookie-btn-ghost {
  background: transparent;
  color: var(--text-muted);
  border: 1px solid var(--border-strong);
}
.cookie-btn-ghost:hover { color: var(--text); }


/* Text selection color */
::selection {
  background: rgba(255, 54, 54, 0.2);
  color: inherit;
}

/* ============================================================
   THEME TRANSITION — circular ink reveal via View Transitions API
   Coordinates set as --vt-x / --vt-y / --vt-r on <html> from JS.
   ============================================================ */

/* ── Keyframes and ::view-transition-old/new(root) rules are injected
   dynamically by JS with exact pixel coordinates so the circle always
   originates from (and retracts into) the toggle button precisely. ── */

/* Suppress CSS transitions during the VT to prevent colour flicker.
   #page-border is excluded — it lives in its own named VT layer. */
.vt-active *:not(#page-border) { transition: none !important; }

/* Prevent the VT overlay from swallowing pointer events during the animation */
::view-transition-old(root),
::view-transition-new(root) {
  pointer-events: none;
}


/* Keep the page border static throughout all theme transitions */
::view-transition-group(page-border),
::view-transition-old(page-border),
::view-transition-new(page-border) {
  animation: none;
  mix-blend-mode: normal;
}

/* ============================================================
   FAQ
   ============================================================ */
.faq-section { background: var(--bg); }

/* Featured partner card */
.faq-partner {
  border-left: 3px solid var(--accent);
  background: var(--surface);
  border-radius: 0 var(--radius-lg) var(--radius-lg) 0;
  padding: var(--sp-8) var(--sp-10);
  margin-bottom: var(--sp-10);
  display: flex;
  flex-direction: column;
  gap: var(--sp-4);
  box-shadow: var(--shadow-sm);
}

.faq-partner-badge {
  display: inline-flex;
  align-items: center;
  gap: var(--sp-2);
  font-size: var(--text-xs);
  font-weight: 600;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--accent);
  border: 1px solid var(--accent);
  border-radius: var(--radius-full);
  padding: var(--sp-1) var(--sp-4);
  width: fit-content;
}

.faq-partner-q {
  font-size: var(--text-lg);
  font-weight: 600;
  line-height: 1.3;
  letter-spacing: -0.02em;
  color: var(--text);
}

.faq-partner-a {
  font-size: var(--text-base);
  line-height: 1.7;
  color: var(--text-muted);
  max-width: 72ch;
}

/* Accordion list */
.faq-list {
  display: flex;
  flex-direction: column;
  gap: var(--sp-3);
}

.faq-item {
  border: 1px solid var(--border);
  border-radius: var(--radius-md);
  background: var(--surface);
  overflow: hidden;
  transition: border-color var(--t-base) var(--ease);
}

.faq-item:hover,
.faq-item[open] {
  border-color: var(--border-strong);
}

.faq-q {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: var(--sp-6);
  padding: var(--sp-5) var(--sp-6);
  font-size: var(--text-base);
  font-weight: 500;
  color: var(--text);
  cursor: pointer;
  list-style: none;
  user-select: none;
}

.faq-q::-webkit-details-marker { display: none; }

.faq-q::after {
  content: '';
  flex-shrink: 0;
  width: 20px;
  height: 20px;
  border-radius: var(--radius-full);
  border: 1.5px solid var(--border-strong);
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='10' height='10' viewBox='0 0 10 10'%3E%3Cpath d='M5 1v8M1 5h8' stroke='currentColor' stroke-width='1.5' stroke-linecap='round'/%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-position: center;
  transition: transform var(--t-base) var(--ease), border-color var(--t-base) var(--ease);
}

details[open] .faq-q::after {
  transform: rotate(45deg);
  border-color: var(--accent);
}

/* Smooth height animation via grid trick */
.faq-a {
  display: grid;
  grid-template-rows: 0fr;
  transition: grid-template-rows 0.35s var(--ease);
}

details[open] .faq-a {
  grid-template-rows: 1fr;
}

.faq-a > p {
  overflow: hidden;
  padding: 0 var(--sp-6);
  font-size: var(--text-base);
  line-height: 1.7;
  color: var(--text-muted);
  transition: padding-bottom 0.35s var(--ease);
}

details[open] .faq-a > p {
  padding-bottom: var(--sp-6);
}

@media (min-width: 768px) {
  .faq-partner {
    flex-direction: column;
    padding: var(--sp-10) var(--sp-12);
  }
}

/* ============================================================
   REDUCED MOTION
   ============================================================ */
@media (prefers-reduced-motion: reduce) {
  *,
  *::before,
  *::after {
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: 0.01ms !important;
  }

  html { scroll-behavior: auto; }

  .headline-line,
  .hero-eyebrow,
  .hero-visual {
    opacity: 1 !important;
    transform: none !important;
  }

  .score-ring-fill { stroke-dashoffset: 0 !important; }
  .metric-fill     { transform: scaleX(1) !important; }
}
