/* =============================================================
   Setu Education UK, design system
   Editorial quiet-confidence · warm light theme
   Besley (display slab) + Hanken Grotesk (humanist sans)
   Colour in OKLCH, neutrals tinted warm toward the paper hue.
   ============================================================= */

/* ----------  Tokens  ---------- */
:root {
  /* Surfaces, warm cream paper, never pure white */
  --paper:        oklch(0.973 0.013 78);
  --paper-2:      oklch(0.948 0.017 78);
  --surface:      oklch(0.993 0.008 78);
  --surface-sink: oklch(0.935 0.018 78);

  /* Ink, deep, tinted toward navy */
  --ink:        oklch(0.245 0.028 252);
  --ink-soft:   oklch(0.415 0.030 252);
  --ink-faint:  oklch(0.545 0.026 252);

  /* Brand deep navy (dark sections, footer) */
  --navy:    oklch(0.295 0.055 250);
  --navy-2:  oklch(0.235 0.050 252);
  --navy-3:  oklch(0.190 0.042 252);
  --on-navy:      oklch(0.955 0.014 78);
  --on-navy-soft: oklch(0.815 0.020 78);
  --on-navy-line: oklch(0.40 0.040 250);

  /* Accent, marigold / saffron, the action colour (rare) */
  --gold:        oklch(0.815 0.135 78);
  --gold-hover:  oklch(0.760 0.140 73);
  --gold-deep:   oklch(0.620 0.130 66);   /* gold that passes contrast as text on paper */
  --gold-wash:   oklch(0.940 0.045 80);

  /* Supporting calm tint for "safety / verified" cues */
  --sage:       oklch(0.640 0.058 175);
  --sage-deep:  oklch(0.430 0.050 178);
  --sage-wash:  oklch(0.945 0.022 170);

  /* Lines */
  --line:        oklch(0.885 0.013 78);
  --line-strong: oklch(0.835 0.016 78);

  /* Spacing, 4pt scale, semantic */
  --space-2xs: 0.25rem;  /* 4  */
  --space-xs:  0.5rem;   /* 8  */
  --space-sm:  0.75rem;  /* 12 */
  --space-md:  1rem;     /* 16 */
  --space-lg:  1.5rem;   /* 24 */
  --space-xl:  2rem;     /* 32 */
  --space-2xl: 3rem;     /* 48 */
  --space-3xl: 4rem;     /* 64 */
  --space-4xl: 6rem;     /* 96 */
  --space-5xl: 8rem;     /* 128 */

  /* Fluid section rhythm */
  --section-y: clamp(3.5rem, 2rem + 7vw, 7.5rem);

  /* Type, fluid modular scale, ~1.28 ratio */
  --step--1: clamp(0.82rem, 0.80rem + 0.10vw, 0.875rem);
  --step-0:  clamp(1.0rem, 0.96rem + 0.18vw, 1.09rem);
  --step-1:  clamp(1.22rem, 1.13rem + 0.42vw, 1.45rem);
  --step-2:  clamp(1.52rem, 1.33rem + 0.95vw, 2.05rem);
  --step-3:  clamp(1.95rem, 1.58rem + 1.85vw, 2.95rem);
  --step-4:  clamp(2.5rem, 1.85rem + 3.2vw, 4.1rem);
  --step-5:  clamp(3.0rem, 1.9rem + 5.4vw, 5.6rem);

  --font-display: "Besley", Georgia, "Times New Roman", serif;
  --font-sans: "Hanken Grotesk", system-ui, -apple-system, "Segoe UI", sans-serif;

  /* Shape & depth */
  --radius-sm: 6px;
  --radius:    12px;
  --radius-lg: 20px;
  --radius-xl: 28px;
  --shadow-sm: 0 1px 2px oklch(0.30 0.04 252 / 0.06), 0 1px 1px oklch(0.30 0.04 252 / 0.04);
  --shadow:    0 6px 20px -8px oklch(0.30 0.04 252 / 0.18), 0 2px 6px -2px oklch(0.30 0.04 252 / 0.08);
  --shadow-lg: 0 24px 60px -22px oklch(0.28 0.05 252 / 0.30), 0 6px 16px -8px oklch(0.28 0.05 252 / 0.12);

  --maxw: 1180px;
  --maxw-narrow: 720px;

  --ease-out: cubic-bezier(0.22, 1, 0.36, 1);     /* quint-ish */
  --ease-out-soft: cubic-bezier(0.16, 1, 0.3, 1);
}

/* ----------  Reset / base  ---------- */
*, *::before, *::after { box-sizing: border-box; }
* { margin: 0; }

html { -webkit-text-size-adjust: 100%; scroll-behavior: smooth; }
@media (prefers-reduced-motion: reduce) { html { scroll-behavior: auto; } }

body {
  font-family: var(--font-sans);
  font-size: var(--step-0);
  line-height: 1.62;
  color: var(--ink);
  background: var(--paper);
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
  font-variant-ligatures: common-ligatures;
  overflow-x: hidden;
}

img, svg, video { display: block; max-width: 100%; }
a { color: inherit; }
button { font: inherit; color: inherit; cursor: pointer; }
::selection { background: var(--gold); color: var(--ink); }

:focus-visible {
  outline: 2.5px solid var(--gold-deep);
  outline-offset: 3px;
  border-radius: 3px;
}

/* ----------  Typography  ---------- */
h1, h2, h3, h4 {
  font-family: var(--font-display);
  font-weight: 600;
  line-height: 1.05;
  letter-spacing: -0.012em;
  color: var(--ink);
  text-wrap: balance;
}
h2 { font-size: var(--step-3); }
h3 { font-size: var(--step-2); line-height: 1.12; }
h4 { font-size: var(--step-1); line-height: 1.2; letter-spacing: -0.006em; }
p { text-wrap: pretty; }

.display {
  font-size: var(--step-5);
  font-weight: 600;
  line-height: 0.98;
  letter-spacing: -0.02em;
}

.lede {
  font-size: var(--step-1);
  line-height: 1.5;
  color: var(--ink-soft);
  max-width: 60ch;
  font-weight: 400;
}

.eyebrow {
  font-family: var(--font-sans);
  font-size: var(--step--1);
  font-weight: 600;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--gold-deep);
  display: inline-flex;
  align-items: center;
  gap: 0.6em;
}
.eyebrow::before {
  content: "";
  width: 1.8rem; height: 1px;
  background: var(--gold-deep);
  opacity: 0.7;
}
.eyebrow.is-light { color: var(--gold); }
.eyebrow.is-light::before { background: var(--gold); }
.eyebrow.no-rule::before { display: none; }

/* ----------  Layout  ---------- */
.wrap { width: min(100% - 2.5rem, var(--maxw)); margin-inline: auto; }
.wrap-narrow { width: min(100% - 2.5rem, var(--maxw-narrow)); margin-inline: auto; }
.section { padding-block: var(--section-y); }
.section-tight { padding-block: clamp(2.5rem, 1.5rem + 4vw, 4.5rem); }

.section-head { max-width: 56ch; margin-bottom: var(--space-2xl); }
.section-head .eyebrow { margin-bottom: var(--space-md); }
.section-head h2 + p { margin-top: var(--space-md); color: var(--ink-soft); font-size: var(--step-1); line-height: 1.5; }

.bg-paper-2 { background: var(--paper-2); }
.bg-sink   { background: var(--surface-sink); }
.dark { background: var(--navy); color: var(--on-navy); }
.dark h1, .dark h2, .dark h3, .dark h4 { color: var(--on-navy); }
.dark p { color: var(--on-navy-soft); }

/* ----------  Buttons  ---------- */
.btn {
  --_bg: var(--gold);
  --_fg: var(--ink);
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.6em;
  padding: 0.85em 1.5em;
  background: var(--_bg);
  color: var(--_fg);
  font-weight: 600;
  font-size: var(--step-0);
  letter-spacing: -0.005em;
  border: 1px solid transparent;
  border-radius: 999px;
  text-decoration: none;
  transition: transform 0.35s var(--ease-out), background-color 0.25s ease, box-shadow 0.3s ease;
  box-shadow: 0 1px 0 oklch(0.30 0.04 252 / 0.10);
  will-change: transform;
}
.btn:hover { background: var(--_bg-hover, var(--gold-hover)); transform: translateY(-2px); box-shadow: var(--shadow); }
.btn:active { transform: translateY(0); }
.btn .arrow { transition: transform 0.35s var(--ease-out); }
.btn:hover .arrow { transform: translateX(3px); }

.btn-ghost {
  --_bg: transparent;
  --_fg: var(--ink);
  --_bg-hover: transparent;
  border-color: var(--line-strong);
  box-shadow: none;
}
.btn-ghost:hover { border-color: var(--ink); background: oklch(0.30 0.04 252 / 0.04); box-shadow: none; }

.btn-navy { --_bg: var(--navy); --_fg: var(--on-navy); --_bg-hover: var(--navy-2); }

.dark .btn-ghost { --_fg: var(--on-navy); border-color: var(--on-navy-line); }
.dark .btn-ghost:hover { border-color: var(--on-navy); background: oklch(0.95 0.01 78 / 0.07); }

.btn-lg { padding: 1em 1.85em; font-size: var(--step-1); }

.textlink {
  color: var(--ink);
  text-decoration: none;
  font-weight: 600;
  display: inline-flex;
  align-items: center;
  gap: 0.4em;
  background-image: linear-gradient(var(--gold-deep), var(--gold-deep));
  background-size: 0% 2px;
  background-position: 0 100%;
  background-repeat: no-repeat;
  transition: background-size 0.35s var(--ease-out), color 0.2s;
  padding-bottom: 2px;
}
.textlink:hover { background-size: 100% 2px; }
.textlink .arrow { transition: transform 0.35s var(--ease-out); }
.textlink:hover .arrow { transform: translateX(3px); }
.dark .textlink { color: var(--on-navy); background-image: linear-gradient(var(--gold), var(--gold)); }

/* ----------  Header  ---------- */
.site-header {
  position: sticky;
  top: 0;
  z-index: 100;
  background: oklch(0.973 0.013 78 / 0.72);
  backdrop-filter: saturate(140%) blur(14px);
  -webkit-backdrop-filter: saturate(140%) blur(14px);
  border-bottom: 1px solid transparent;
  transition: border-color 0.4s ease, background-color 0.4s ease, box-shadow 0.4s ease;
}
.site-header.scrolled {
  border-bottom-color: var(--line);
  background: oklch(0.975 0.013 78 / 0.88);
  box-shadow: 0 1px 24px -16px oklch(0.30 0.05 252 / 0.5);
}
.nav {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: var(--space-lg);
  padding-block: 0.85rem;
}
.brand {
  display: inline-flex;
  align-items: center;
  gap: 0.6rem;
  text-decoration: none;
  color: var(--ink);
  font-family: var(--font-display);
  font-weight: 600;
  font-size: 1.4rem;
  letter-spacing: -0.02em;
}
.brand .brand-mark { width: 34px; height: auto; flex: none; }
.brand .brand-sub {
  font-family: var(--font-sans);
  font-size: 0.62rem;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--ink-faint);
  font-weight: 600;
  margin-left: 0.1rem;
  align-self: flex-end;
  padding-bottom: 0.35rem;
}
.nav-links {
  display: flex;
  align-items: center;
  gap: clamp(0.5rem, 1.6vw, 1.6rem);
  list-style: none;
  padding: 0;
}
.nav-links a {
  text-decoration: none;
  color: var(--ink-soft);
  font-weight: 500;
  font-size: 0.98rem;
  padding: 0.4rem 0.2rem;
  position: relative;
  transition: color 0.2s;
  white-space: nowrap;
}
.nav-links a::after {
  content: "";
  position: absolute;
  left: 0.2rem; right: 0.2rem; bottom: 0.1rem;
  height: 2px;
  background: var(--gold-deep);
  transform: scaleX(0);
  transform-origin: left;
  transition: transform 0.3s var(--ease-out);
}
.nav-links a:hover { color: var(--ink); }
.nav-links a:hover::after,
.nav-links a[aria-current="page"]::after { transform: scaleX(1); }
.nav-links a[aria-current="page"] { color: var(--ink); }
.nav-actions { display: flex; align-items: center; gap: var(--space-md); }

.nav-toggle { display: none; }

/* ----------  Hero  ---------- */
.hero { position: relative; padding-top: clamp(2.5rem, 1rem + 6vw, 5.5rem); padding-bottom: var(--section-y); overflow: hidden; }
.hero-grid {
  display: grid;
  grid-template-columns: 1.15fr 0.85fr;
  gap: clamp(2rem, 5vw, 5rem);
  align-items: center;
}
.hero-copy { position: relative; z-index: 2; }
.hero .eyebrow { margin-bottom: var(--space-lg); }
.hero h1 { margin-bottom: var(--space-lg); max-width: 16ch; }
.hero h1 .accent { color: var(--gold-deep); font-style: italic; }
.hero .lede { margin-bottom: var(--space-xl); }
.hero-actions { display: flex; flex-wrap: wrap; gap: var(--space-md); align-items: center; }
.hero-note { margin-top: var(--space-lg); font-size: var(--step--1); color: var(--ink-faint); display: flex; align-items: center; gap: 0.5rem; }

.hero-art { position: relative; }
.hero-art .bridge-card {
  position: relative;
  background: linear-gradient(165deg, var(--navy) 0%, var(--navy-2) 100%);
  border-radius: var(--radius-xl);
  padding: clamp(1.5rem, 3vw, 2.5rem);
  color: var(--on-navy);
  box-shadow: var(--shadow-lg);
  overflow: hidden;
  min-height: 420px;
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
}
.hero-art .bridge-svg { position: absolute; inset: 0; width: 100%; height: 100%; opacity: 0.9; }
/* scrim so the quote stays crisp where it crosses the arches */
.hero-art .bridge-card::before {
  content: "";
  position: absolute;
  left: 0; right: 0; bottom: 0;
  height: 60%;
  background: linear-gradient(to top, var(--navy-2) 16%, transparent);
  z-index: 1;
  pointer-events: none;
}
.hero-art .bridge-quote {
  position: relative;
  z-index: 2;
  font-family: var(--font-display);
  font-size: var(--step-2);
  line-height: 1.18;
  letter-spacing: -0.01em;
  margin-top: auto;
}
.hero-art .bridge-quote .by { display: block; margin-top: var(--space-md); font-family: var(--font-sans); font-size: 0.85rem; letter-spacing: 0.04em; color: var(--on-navy-soft); font-weight: 500; }
.hero-art .bridge-tag {
  position: absolute; top: clamp(1.2rem,3vw,2rem); left: clamp(1.2rem,3vw,2rem);
  z-index: 2;
  font-size: var(--step--1); font-weight: 600; letter-spacing: 0.14em; text-transform: uppercase;
  color: var(--gold);
}

/* bridge stroke draw */
.bridge-draw { stroke-dasharray: var(--len, 1200); stroke-dashoffset: var(--len, 1200); animation: draw 2.4s var(--ease-out-soft) 0.3s forwards; }
@keyframes draw { to { stroke-dashoffset: 0; } }

/* floating signal chips on hero card */
.signal-chip {
  position: absolute; z-index: 3;
  background: var(--surface);
  color: var(--ink);
  border: 1px solid var(--line);
  border-radius: 999px;
  padding: 0.5rem 0.95rem;
  font-size: 0.82rem;
  font-weight: 600;
  display: inline-flex; align-items: center; gap: 0.45rem;
  box-shadow: var(--shadow);
}
.signal-chip svg { width: 16px; height: 16px; color: var(--sage-deep); }
.signal-chip.s1 { top: 10%; right: -5%; }
.signal-chip.s2 { top: 34%; left: -6%; }

/* ----------  Trust strip (marquee)  ---------- */
.trust-strip { border-block: 1px solid var(--line); background: var(--paper); overflow: hidden; }
.trust-track {
  display: flex; gap: 0; align-items: center;
  width: max-content;
  animation: marquee 38s linear infinite;
}
.trust-strip:hover .trust-track { animation-play-state: paused; }
.trust-track .item {
  display: inline-flex; align-items: center; gap: 0.7rem;
  padding: 1.05rem 2rem;
  font-size: 0.95rem; font-weight: 500; color: var(--ink-soft);
  white-space: nowrap;
}
.trust-track .item .dot { width: 5px; height: 5px; border-radius: 50%; background: var(--gold); flex: none; }
@keyframes marquee { to { transform: translateX(-50%); } }

/* ----------  Manifesto / promise  ---------- */
.manifesto { background: var(--navy); color: var(--on-navy); position: relative; overflow: hidden; }
.manifesto .wrap { position: relative; z-index: 2; }
.manifesto-grid { display: grid; grid-template-columns: 0.85fr 1.15fr; gap: clamp(2rem, 5vw, 5rem); align-items: start; }
.manifesto h2 { color: var(--on-navy); font-size: var(--step-4); }
.manifesto h2 .u { color: var(--gold); }
.promise-list { list-style: none; padding: 0; display: grid; gap: 0; }
.promise-list li {
  display: grid;
  grid-template-columns: auto 1fr;
  gap: var(--space-lg);
  align-items: start;
  padding: var(--space-lg) 0;
  border-top: 1px solid var(--on-navy-line);
}
.promise-list li:last-child { border-bottom: 1px solid var(--on-navy-line); }
.promise-list .never {
  font-family: var(--font-display);
  font-style: italic;
  color: var(--gold);
  font-size: 1.05rem;
  white-space: nowrap;
  padding-top: 0.15rem;
}
.promise-list h4 { color: var(--on-navy); margin-bottom: 0.25rem; }
.promise-list p { color: var(--on-navy-soft); font-size: 0.98rem; }
.manifesto-bg { position: absolute; right: -8%; bottom: -20%; width: 60%; opacity: 0.10; z-index: 1; color: var(--gold); }

/* ----------  Steps / journey  ---------- */
.phases { display: grid; grid-template-columns: repeat(3, 1fr); gap: var(--space-lg); }
.phase {
  background: var(--surface);
  border: 1px solid var(--line);
  border-radius: var(--radius-lg);
  padding: var(--space-xl);
  position: relative;
  transition: transform 0.4s var(--ease-out), box-shadow 0.4s var(--ease-out), border-color 0.3s;
}
.phase:hover { transform: translateY(-4px); box-shadow: var(--shadow); border-color: var(--line-strong); }
.phase .ph-num {
  font-family: var(--font-display);
  font-size: 2.6rem;
  line-height: 1;
  color: var(--gold-deep);
  margin-bottom: var(--space-md);
}
.phase h3 { font-size: var(--step-1); margin-bottom: var(--space-sm); }
.phase p { color: var(--ink-soft); font-size: 0.97rem; }
.phase .ph-steps { list-style: none; padding: 0; margin-top: var(--space-md); display: grid; gap: 0.5rem; }
.phase .ph-steps li { display: flex; gap: 0.6rem; font-size: 0.92rem; color: var(--ink-soft); }
.phase .ph-steps li::before { content: "·"; color: var(--gold-deep); flex: none; }

/* numbered journey list (how-it-works) */
.journey { display: grid; gap: 0; max-width: 880px; }
.journey-step {
  display: grid;
  grid-template-columns: auto 1fr;
  gap: clamp(1.2rem, 3vw, 2.5rem);
  padding: var(--space-xl) 0;
  border-top: 1px solid var(--line);
  align-items: start;
}
.journey-step:last-child { border-bottom: 1px solid var(--line); }
.journey-step .js-num {
  font-family: var(--font-display);
  font-size: var(--step-3);
  line-height: 1;
  color: var(--ink-faint);
  font-variant-numeric: tabular-nums;
  min-width: 2.2ch;
}
.journey-step h3 { font-size: var(--step-1); margin-bottom: var(--space-xs); }
.journey-step p { color: var(--ink-soft); }
.journey-step .js-tag {
  display: inline-block; margin-top: var(--space-sm);
  font-size: 0.78rem; font-weight: 600; letter-spacing: 0.06em;
  color: var(--sage-deep); background: var(--sage-wash);
  padding: 0.25rem 0.7rem; border-radius: 999px;
}

/* ----------  Aftercare feature  ---------- */
.aftercare-band { background: var(--paper-2); }
.aftercare-grid { display: grid; grid-template-columns: 1fr 1fr; gap: clamp(2rem,5vw,4.5rem); align-items: center; }
.care-cards { display: grid; grid-template-columns: 1fr 1fr; gap: var(--space-md); }
.care-card {
  background: var(--surface);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  padding: var(--space-lg);
}
.care-card .ic { width: 30px; height: 30px; color: var(--gold-deep); margin-bottom: var(--space-sm); }
.care-card h4 { font-size: 1.02rem; margin-bottom: 0.2rem; font-family: var(--font-sans); font-weight: 700; letter-spacing: 0; }
.care-card p { font-size: 0.88rem; color: var(--ink-soft); line-height: 1.5; }
.care-card:nth-child(odd) { transform: translateY(0); }
.care-card:nth-child(2), .care-card:nth-child(3) { transform: translateY(14px); }
@media (max-width: 600px){ .care-card:nth-child(2), .care-card:nth-child(3){ transform:none; } }

.pull-quote {
  font-family: var(--font-display);
  font-size: var(--step-2);
  line-height: 1.25;
  letter-spacing: -0.01em;
  color: var(--ink);
}
.pull-quote .mark { color: var(--gold-deep); }

/* ----------  Transparency / money  ---------- */
.money-grid { display: grid; grid-template-columns: 1fr 1fr; gap: clamp(2rem,5vw,4rem); align-items: center; }
.flow {
  display: grid; gap: 0;
  counter-reset: flow;
}
.flow-row {
  display: grid; grid-template-columns: auto 1fr; gap: var(--space-md); align-items: center;
  padding: var(--space-md) 0;
}
.flow-row + .flow-row { border-top: 1px dashed var(--line-strong); }
.flow-row .bubble {
  width: 46px; height: 46px; border-radius: 50%;
  background: var(--gold-wash); color: var(--gold-deep);
  display: grid; place-items: center; flex: none;
}
.flow-row .bubble svg { width: 22px; height: 22px; }
.flow-row strong { display: block; font-size: 1rem; }
.flow-row span { font-size: 0.9rem; color: var(--ink-soft); }
.free-badge {
  display: inline-flex; align-items: baseline; gap: 0.5rem;
  font-family: var(--font-display); font-size: var(--step-4); color: var(--ink);
}
.free-badge .sub { font-family: var(--font-sans); font-size: 1rem; color: var(--ink-soft); font-weight: 500; }

/* ----------  Floating WhatsApp button  ---------- */
.wa-fab {
  position: fixed;
  right: clamp(1rem, 3vw, 1.75rem);
  bottom: clamp(1rem, 3vw, 1.75rem);
  z-index: 95;
  display: inline-flex;
  align-items: center;
  gap: 0.55rem;
  background: #25D366;
  color: #fff;
  text-decoration: none;
  padding: 0.7rem 1.1rem;
  border-radius: 999px;
  font-family: var(--font-sans);
  font-weight: 700;
  font-size: 0.95rem;
  box-shadow: 0 10px 26px -6px oklch(0.3 0.04 252 / 0.35), 0 2px 6px oklch(0.3 0.04 252 / 0.18);
  transition: transform 0.35s var(--ease-out), box-shadow 0.3s ease;
}
.wa-fab:hover { transform: translateY(-3px); box-shadow: 0 16px 34px -8px oklch(0.3 0.04 252 / 0.4); }
.wa-fab svg { width: 24px; height: 24px; fill: currentColor; flex: none; }
@media (max-width: 540px) { .wa-fab { padding: 0.85rem; } .wa-fab .wa-label { display: none; } }
@media (prefers-reduced-motion: reduce) { .wa-fab { transition: none; } }

/* ----------  Pricing tiers  ---------- */
.tiers { display: grid; grid-template-columns: repeat(3, 1fr); gap: var(--space-lg); align-items: stretch; }
.tier {
  background: var(--surface);
  border: 1px solid var(--line);
  border-radius: var(--radius-lg);
  padding: var(--space-xl);
  display: flex;
  flex-direction: column;
  position: relative;
  transition: transform 0.4s var(--ease-out), box-shadow 0.4s var(--ease-out), border-color 0.3s;
}
.tier:hover { transform: translateY(-4px); box-shadow: var(--shadow); }
.tier.featured { border-color: var(--gold); box-shadow: var(--shadow); }
.tier .tier-badge {
  position: absolute; top: -0.7rem; left: var(--space-xl);
  background: var(--gold); color: var(--ink);
  font-size: 0.7rem; font-weight: 700; letter-spacing: 0.08em; text-transform: uppercase;
  padding: 0.3rem 0.7rem; border-radius: 999px;
}
.tier .tier-name { font-family: var(--font-display); font-size: var(--step-1); margin-bottom: var(--space-xs); }
.tier .tier-sub { font-size: 0.88rem; color: var(--ink-faint); margin-bottom: var(--space-md); }
.tier .price { font-family: var(--font-display); font-size: var(--step-3); line-height: 1; color: var(--ink); margin-bottom: 0.2rem; }
.tier .price .per { font-family: var(--font-sans); font-size: 0.9rem; color: var(--ink-soft); font-weight: 500; }
.tier .tier-list { list-style: none; padding: 0; margin: var(--space-lg) 0; display: grid; gap: 0.6rem; flex: 1; }
.tier .tier-list li { display: flex; gap: 0.6rem; font-size: 0.92rem; color: var(--ink-soft); line-height: 1.45; }
.tier .tier-list li svg { width: 16px; height: 16px; color: var(--sage-deep); flex: none; margin-top: 0.25rem; }
.tier .btn { width: 100%; }
@media (max-width: 900px) {
  .tiers { grid-template-columns: 1fr; max-width: 460px; margin-inline: auto; }
}

/* ----------  Stat row (landscape facts)  ---------- */
.stats { display: grid; grid-template-columns: repeat(4, 1fr); gap: var(--space-lg); }
.stat { padding-top: var(--space-md); border-top: 2px solid var(--ink); }
.stat .n { font-family: var(--font-display); font-size: var(--step-3); line-height: 1; letter-spacing: -0.02em; }
.stat .l { margin-top: var(--space-sm); font-size: 0.9rem; color: var(--ink-soft); }
.dark .stat { border-top-color: var(--gold); }
.dark .stat .n { color: var(--on-navy); }
.dark .stat .l { color: var(--on-navy-soft); }

/* ----------  Cities  ---------- */
.cities-grid { display: grid; grid-template-columns: 1fr 1fr; gap: clamp(2rem,5vw,4rem); align-items: center; }
.city-list { display: flex; flex-wrap: wrap; gap: var(--space-sm); }
.city-chip {
  border: 1px solid var(--line-strong); border-radius: 999px;
  padding: 0.5rem 1.1rem; font-weight: 600; font-size: 0.95rem;
  background: var(--surface);
}
.city-chip.soon { border-style: dashed; color: var(--ink-faint); font-weight: 500; }
.city-chip.lead { background: var(--ink); color: var(--paper); border-color: var(--ink); }

/* ----------  Clock / urgency  ---------- */
.clock-grid { display: grid; grid-template-columns: repeat(3,1fr); gap: var(--space-lg); }
.clock-card {
  border: 1px solid var(--on-navy-line); border-radius: var(--radius-lg);
  padding: var(--space-xl); background: oklch(0.95 0.01 78 / 0.04);
}
.clock-card .when { font-family: var(--font-display); font-size: var(--step-2); color: var(--gold); margin-bottom: var(--space-sm); }
.clock-card h4 { color: var(--on-navy); margin-bottom: 0.3rem; }
.clock-card p { color: var(--on-navy-soft); font-size: 0.92rem; }

/* ----------  Credentials  ---------- */
.creds { display: grid; grid-template-columns: repeat(auto-fit, minmax(220px, 1fr)); gap: var(--space-lg); }
.cred {
  display: grid; grid-template-columns: auto 1fr; gap: var(--space-md); align-items: start;
  padding: var(--space-lg);
  background: var(--surface); border: 1px solid var(--line); border-radius: var(--radius);
}
.cred .ic { width: 28px; height: 28px; color: var(--sage-deep); }
.cred h4 { font-size: 1rem; font-family: var(--font-sans); font-weight: 700; margin-bottom: 0.2rem; }
.cred p { font-size: 0.86rem; color: var(--ink-soft); line-height: 1.45; }

/* ----------  Testimonials (honest placeholder)  ---------- */
.testi-note {
  border: 1px dashed var(--line-strong);
  border-radius: var(--radius-lg);
  padding: var(--space-2xl);
  text-align: center;
  background: var(--surface);
  max-width: 700px; margin-inline: auto;
}
.testi-note .q { font-family: var(--font-display); font-size: var(--step-2); line-height: 1.25; margin-bottom: var(--space-md); }
.testi-note small { color: var(--ink-faint); font-size: 0.85rem; }

/* ----------  FAQ  ---------- */
.faq { max-width: 800px; }
.faq details {
  border-top: 1px solid var(--line);
  padding: var(--space-md) 0;
}
.faq details:last-of-type { border-bottom: 1px solid var(--line); }
.faq summary {
  list-style: none;
  display: flex; justify-content: space-between; align-items: center; gap: var(--space-md);
  cursor: pointer;
  font-family: var(--font-display);
  font-size: var(--step-1);
  font-weight: 500;
  padding: var(--space-sm) 0;
  color: var(--ink);
}
.faq summary::-webkit-details-marker { display: none; }
.faq summary .pm {
  flex: none; width: 26px; height: 26px; border-radius: 50%;
  border: 1px solid var(--line-strong);
  display: grid; place-items: center;
  transition: transform 0.4s var(--ease-out), background-color 0.3s, border-color 0.3s;
  position: relative;
}
.faq summary .pm::before, .faq summary .pm::after {
  content: ""; position: absolute; background: var(--ink); border-radius: 2px;
}
.faq summary .pm::before { width: 11px; height: 1.5px; }
.faq summary .pm::after { width: 1.5px; height: 11px; transition: transform 0.3s var(--ease-out); }
.faq details[open] summary .pm { background: var(--gold); border-color: var(--gold); }
.faq details[open] summary .pm::after { transform: scaleY(0); }
.faq .faq-body { overflow: hidden; }
.faq .faq-body p { color: var(--ink-soft); padding-bottom: var(--space-md); max-width: 68ch; }
.faq details[open] .faq-body { animation: reveal-faq 0.45s var(--ease-out); }
@keyframes reveal-faq { from { opacity: 0; transform: translateY(-6px); } to { opacity: 1; transform: none; } }

/* ----------  CTA band  ---------- */
.cta-band { background: var(--navy-2); color: var(--on-navy); position: relative; overflow: hidden; text-align: center; }
.cta-band .wrap-narrow { position: relative; z-index: 2; }
.cta-band h2 { color: var(--on-navy); font-size: var(--step-4); margin-bottom: var(--space-md); }
.cta-band p { color: var(--on-navy-soft); font-size: var(--step-1); margin-bottom: var(--space-xl); max-width: 50ch; margin-inline: auto; }
.cta-actions { display: flex; gap: var(--space-md); justify-content: center; flex-wrap: wrap; }
.cta-band .bridge-faint { position: absolute; left: 50%; bottom: -30%; transform: translateX(-50%); width: 120%; opacity: 0.08; color: var(--gold); z-index: 1; }

/* ----------  Forms (contact)  ---------- */
.form-grid { display: grid; grid-template-columns: 1.1fr 0.9fr; gap: clamp(2rem,5vw,4rem); align-items: start; }
.field { display: grid; gap: 0.4rem; margin-bottom: var(--space-md); }
.field label { font-size: 0.88rem; font-weight: 600; color: var(--ink); }
.field label .opt { color: var(--ink-faint); font-weight: 400; }
.field input, .field select, .field textarea {
  font: inherit; font-size: 0.98rem;
  padding: 0.75rem 0.9rem;
  background: var(--surface);
  border: 1px solid var(--line-strong);
  border-radius: var(--radius-sm);
  color: var(--ink);
  transition: border-color 0.2s, box-shadow 0.2s;
  width: 100%;
}
.field textarea { resize: vertical; min-height: 120px; }
.field input:focus, .field select:focus, .field textarea:focus {
  outline: none; border-color: var(--gold-deep);
  box-shadow: 0 0 0 3px var(--gold-wash);
}
.form-aside { background: var(--surface); border: 1px solid var(--line); border-radius: var(--radius-lg); padding: var(--space-xl); }
.form-aside h3 { font-size: var(--step-1); margin-bottom: var(--space-md); }
.contact-line { display: flex; gap: var(--space-md); align-items: flex-start; padding: var(--space-sm) 0; }
.contact-line .ic { width: 22px; height: 22px; color: var(--gold-deep); flex: none; margin-top: 2px; }
.contact-line a { color: var(--ink); text-decoration: none; font-weight: 600; }
.contact-line a:hover { color: var(--gold-deep); }
.contact-line span { display: block; font-size: 0.85rem; color: var(--ink-faint); font-weight: 400; }
.form-success { display: none; background: var(--sage-wash); border: 1px solid var(--sage); border-radius: var(--radius); padding: var(--space-md); color: var(--sage-deep); font-weight: 600; margin-bottom: var(--space-md); }
.form-success.show { display: block; }
.form-error { display: none; background: oklch(0.95 0.04 35); border: 1px solid oklch(0.72 0.13 35); border-radius: var(--radius); padding: var(--space-md); color: oklch(0.48 0.15 32); font-weight: 600; margin-bottom: var(--space-md); }
.form-error.show { display: block; }
.hp-field { position: absolute; left: -9999px; width: 1px; height: 1px; overflow: hidden; }

/* ----------  Page hero (interior)  ---------- */
.page-hero { padding-top: clamp(2.5rem,1rem+5vw,5rem); padding-bottom: clamp(2rem,1rem+3vw,3.5rem); }
.page-hero .eyebrow { margin-bottom: var(--space-md); }
.page-hero h1 { font-size: var(--step-4); max-width: 18ch; margin-bottom: var(--space-md); }
.page-hero .lede { font-size: var(--step-1); }
.breadcrumb { font-size: 0.85rem; color: var(--ink-faint); margin-bottom: var(--space-lg); }
.breadcrumb a { text-decoration: none; color: var(--ink-faint); }
.breadcrumb a:hover { color: var(--ink); }

/* prose for content pages */
.prose { max-width: 68ch; }
.prose h3 { margin-top: var(--space-2xl); margin-bottom: var(--space-sm); }
.prose h4 { margin-top: var(--space-xl); margin-bottom: var(--space-xs); }
.prose p { margin-bottom: var(--space-md); color: var(--ink-soft); }
.prose ul { margin: 0 0 var(--space-md); padding-left: 0; list-style: none; display: grid; gap: var(--space-sm); }
.prose ul li { display: flex; gap: 0.7rem; color: var(--ink-soft); }
.prose ul li::before { content: ""; flex: none; width: 7px; height: 7px; margin-top: 0.6em; border-radius: 50%; background: var(--gold); }
.prose strong { color: var(--ink); font-weight: 700; }

.callout {
  background: var(--gold-wash);
  border: 1px solid oklch(0.86 0.07 80);
  border-radius: var(--radius);
  padding: var(--space-lg);
  margin: var(--space-lg) 0;
}
.callout p { color: var(--ink); margin: 0; }
.callout .label { font-weight: 700; display:block; margin-bottom: 0.25rem; color: var(--gold-deep); font-size: 0.85rem; letter-spacing: 0.04em; text-transform: uppercase; }

/* ----------  Footer  ---------- */
.site-footer { background: var(--navy-3); color: var(--on-navy-soft); padding-top: var(--space-4xl); }
.footer-top { display: grid; grid-template-columns: 1.4fr repeat(3, 1fr); gap: var(--space-2xl); padding-bottom: var(--space-2xl); }
.footer-brand .brand { color: var(--on-navy); }
.footer-brand p { margin-top: var(--space-md); max-width: 34ch; font-size: 0.92rem; color: var(--on-navy-soft); }
.footer-col h5 { font-family: var(--font-sans); font-size: 0.78rem; letter-spacing: 0.14em; text-transform: uppercase; color: var(--gold); margin-bottom: var(--space-md); font-weight: 600; }
.footer-col ul { list-style: none; padding: 0; display: grid; gap: 0.6rem; }
.footer-col a { color: var(--on-navy-soft); text-decoration: none; font-size: 0.92rem; transition: color 0.2s; }
.footer-col a:hover { color: var(--on-navy); }
.footer-disclaimer {
  border-top: 1px solid var(--on-navy-line);
  padding-block: var(--space-lg);
  font-size: 0.78rem; line-height: 1.6; color: oklch(0.66 0.02 78);
  max-width: 92ch;
}
.footer-bottom {
  border-top: 1px solid var(--on-navy-line);
  padding-block: var(--space-lg) var(--space-2xl);
  display: flex; justify-content: space-between; flex-wrap: wrap; gap: var(--space-md);
  font-size: 0.82rem; color: oklch(0.66 0.02 78);
}
.footer-bottom .placeholder { color: var(--gold); }

.ph {
  /* editable placeholder marker */
  background: oklch(0.815 0.135 78 / 0.18);
  border-bottom: 1px dashed var(--gold-deep);
  padding: 0 0.15em;
  border-radius: 2px;
}
.dark .ph, .site-footer .ph { background: oklch(0.815 0.135 78 / 0.20); border-bottom-color: var(--gold); }

/* ----------  Reveal animation  ---------- */
[data-reveal] { opacity: 0; transform: translateY(18px); transition: opacity 0.7s var(--ease-out), transform 0.7s var(--ease-out); }
[data-reveal].is-visible { opacity: 1; transform: none; }
[data-reveal][data-delay="1"] { transition-delay: 0.08s; }
[data-reveal][data-delay="2"] { transition-delay: 0.16s; }
[data-reveal][data-delay="3"] { transition-delay: 0.24s; }
[data-reveal][data-delay="4"] { transition-delay: 0.32s; }

@media (prefers-reduced-motion: reduce) {
  [data-reveal] { opacity: 1; transform: none; transition: none; }
  .trust-track { animation: none; }
  .bridge-draw { animation: none; stroke-dashoffset: 0; }
  .btn, .phase, .nav-links a::after, .textlink { transition: none; }
}

/* ----------  Responsive  ---------- */
@media (max-width: 940px) {
  .hero-grid { grid-template-columns: 1fr; gap: var(--space-2xl); }
  .hero-art { max-width: 460px; }
  .manifesto-grid { grid-template-columns: 1fr; gap: var(--space-xl); }
  .phases { grid-template-columns: 1fr; }
  .aftercare-grid, .money-grid, .cities-grid, .form-grid { grid-template-columns: 1fr; }
  .clock-grid { grid-template-columns: 1fr; }
  .stats { grid-template-columns: 1fr 1fr; gap: var(--space-xl); }
  .footer-top { grid-template-columns: 1fr 1fr; gap: var(--space-xl); }
  .signal-chip.s1 { right: 2%; }
  .signal-chip.s2 { left: 2%; }
}

@media (max-width: 860px) {
  .nav-links, .nav-actions .btn-desktop { display: none; }
  .nav-toggle {
    display: inline-flex; align-items: center; justify-content: center;
    width: 44px; height: 44px; border-radius: 10px;
    border: 1px solid var(--line-strong); background: var(--surface);
  }
  .nav-toggle svg { width: 22px; height: 22px; }
  .mobile-menu {
    position: fixed; inset: 0 0 0 auto; width: min(82vw, 340px);
    background: var(--paper); z-index: 200;
    transform: translateX(100%); transition: transform 0.4s var(--ease-out);
    box-shadow: var(--shadow-lg);
    padding: var(--space-2xl) var(--space-xl);
    display: flex; flex-direction: column; gap: var(--space-md);
    overflow-y: auto;
  }
  .mobile-menu.open { transform: translateX(0); }
  .mobile-menu a { text-decoration: none; color: var(--ink); font-family: var(--font-display); font-size: var(--step-2); padding: 0.4rem 0; }
  .mobile-menu a.btn { color: var(--_fg); font-family: var(--font-sans); font-size: var(--step-0); padding: 0.85em 1.5em; margin-top: var(--space-md); justify-content: center; }
  .mobile-menu .close { align-self: flex-end; width: 44px; height: 44px; border: none; background: none; }
  .mobile-menu .close svg { width: 24px; height: 24px; }
  .menu-backdrop { position: fixed; inset: 0; background: oklch(0.2 0.04 252 / 0.4); z-index: 150; opacity: 0; pointer-events: none; transition: opacity 0.3s; }
  .menu-backdrop.show { opacity: 1; pointer-events: auto; }
}

@media (max-width: 540px) {
  .stats { grid-template-columns: 1fr; }
  .care-cards { grid-template-columns: 1fr; }
  .footer-top { grid-template-columns: 1fr; }
  .hero-actions .btn { width: 100%; }
  .free-badge { flex-direction: column; gap: 0.2rem; }
  /* tighten the header so brand + language + menu fit comfortably */
  .brand .brand-sub { display: none; }
  .nav { gap: var(--space-sm); }
  .nav-actions { gap: var(--space-xs); }
  .lang-switch button { padding: 0.4rem 0.62rem; }
}

.mobile-menu { display: none; }
@media (max-width: 860px){ .mobile-menu { display: flex; } }
.sr-only { position: absolute; width: 1px; height: 1px; padding: 0; margin: -1px; overflow: hidden; clip: rect(0,0,0,0); border: 0; }
.skip-link { position: absolute; left: 1rem; top: -3rem; background: var(--ink); color: var(--paper); padding: 0.6rem 1rem; border-radius: 8px; z-index: 300; transition: top 0.2s; }
.skip-link:focus { top: 1rem; }

/* =============================================================
   Craft layer, texture, depth, and refined micro-interactions
   (all gated on pointer:fine / prefers-reduced-motion below)
   ============================================================= */

/* Paper grain, a faint tactile texture so surfaces never read as flat */
body::after {
  content: "";
  position: fixed;
  inset: 0;
  z-index: 1;
  pointer-events: none;
  opacity: 0.5;
  mix-blend-mode: soft-light;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='180' height='180'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.8' numOctaves='2' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23n)' opacity='0.45'/%3E%3C/svg%3E");
}

/* Scroll progress, a hairline gold line that tracks reading position */
.scroll-progress {
  position: fixed;
  top: 0; left: 0;
  height: 3px;
  width: 100%;
  transform: scaleX(0);
  transform-origin: 0 50%;
  background: linear-gradient(90deg, var(--gold), var(--gold-deep));
  z-index: 200;
  pointer-events: none;
  will-change: transform;
}

/* Marquee edge fade, items dissolve at the edges instead of hard-cutting */
.trust-strip {
  -webkit-mask-image: linear-gradient(90deg, transparent, #000 7%, #000 93%, transparent);
  mask-image: linear-gradient(90deg, transparent, #000 7%, #000 93%, transparent);
}

/* Cursor spotlight on cards, a soft warm glow that follows the pointer */
.phase, .care-card, .cred, .clock-card { position: relative; overflow: hidden; }
.phase::after, .care-card::after, .cred::after, .clock-card::after {
  content: "";
  position: absolute;
  inset: 0;
  border-radius: inherit;
  pointer-events: none;
  opacity: 0;
  transition: opacity 0.45s ease;
  background: radial-gradient(260px circle at var(--mx, 50%) var(--my, 50%), oklch(0.82 0.135 78 / 0.16), transparent 62%);
}
.clock-card::after { background: radial-gradient(260px circle at var(--mx, 50%) var(--my, 50%), oklch(0.82 0.135 78 / 0.13), transparent 62%); }
.phase.is-spot::after, .care-card.is-spot::after, .cred.is-spot::after, .clock-card.is-spot::after { opacity: 1; }

/* Button sheen, a single light sweep across solid buttons on hover */
.btn { position: relative; overflow: hidden; }
.btn:not(.btn-ghost)::after {
  content: "";
  position: absolute;
  top: 0; left: -75%;
  width: 45%; height: 100%;
  background: linear-gradient(110deg, transparent, oklch(1 0 0 / 0.30), transparent);
  transform: skewX(-18deg);
  transition: left 0.6s var(--ease-out);
  pointer-events: none;
}
.btn:not(.btn-ghost):hover::after { left: 135%; }

/* Hero signal chips, gentle independent float */
@keyframes floaty { 0%, 100% { transform: translateY(0); } 50% { transform: translateY(-7px); } }
.signal-chip.s1 { animation: floaty 5.5s ease-in-out infinite; }
.signal-chip.s2 { animation: floaty 6.8s ease-in-out infinite 0.7s; }

/* Hero bridge, a travelling light along the deck + twinkling destination stars */
.bridge-spark { transform-box: fill-box; filter: drop-shadow(0 0 5px #e0a93b); animation: spark 6.5s linear infinite; }
@keyframes spark {
  0%   { transform: translateX(0);     opacity: 0; }
  7%   { opacity: 1; }
  92%  { opacity: 1; }
  100% { transform: translateX(452px); opacity: 0; }
}
.bridge-stars circle { animation: twinkle 4s ease-in-out infinite; }
.bridge-stars circle:nth-child(2) { animation-delay: 0.8s; }
.bridge-stars circle:nth-child(3) { animation-delay: 1.6s; }
.bridge-stars circle:nth-child(4) { animation-delay: 2.4s; }
.bridge-stars circle:nth-child(5) { animation-delay: 1.2s; }
@keyframes twinkle { 0%, 100% { opacity: 0.18; } 50% { opacity: 0.85; } }

@media (prefers-reduced-motion: reduce) {
  .signal-chip.s1, .signal-chip.s2, .bridge-spark, .bridge-stars circle { animation: none; }
  .bridge-spark { opacity: 0; }
  .btn:not(.btn-ghost)::after { display: none; }
  .scroll-progress { display: none; }
}

/* ----------  Bilingual (EN / বাংলা)  ---------- */
/* Default state shows English; .lang-bn on <html> flips to Bengali. */
.t-bn { display: none; }
html.lang-bn .t-en { display: none; }
html.lang-bn .t-bn { display: inline; }
/* keep inline-block where the original needs it (badges etc.) handled inline */

.lang-switch {
  display: inline-flex;
  align-items: center;
  border: 1px solid var(--line-strong);
  border-radius: 999px;
  overflow: hidden;
  background: var(--surface);
  flex: none;
}
.lang-switch button {
  padding: 0.4rem 0.75rem;
  font-size: 0.8rem;
  font-weight: 600;
  background: transparent;
  border: none;
  color: var(--ink-soft);
  font-family: var(--font-sans);
  line-height: 1;
  transition: background-color 0.2s, color 0.2s;
}
.lang-switch button:hover { color: var(--ink); }
.lang-switch button[aria-pressed="true"] { background: var(--ink); color: var(--paper); }
.lang-switch button + button { border-left: 1px solid var(--line); }

.mobile-menu .lang-switch { align-self: flex-start; margin-bottom: var(--space-md); }

/* Bengali typography, swap families and give the script room to breathe */
html.lang-bn {
  --font-display: "Noto Serif Bengali", Georgia, serif;
  --font-sans: "Hind Siliguri", system-ui, -apple-system, sans-serif;
}
html.lang-bn body { line-height: 1.8; }
html.lang-bn h1, html.lang-bn h2, html.lang-bn h3, html.lang-bn h4 {
  line-height: 1.32;
  letter-spacing: normal;
  font-weight: 600;
}
html.lang-bn .display { line-height: 1.2; letter-spacing: normal; }
html.lang-bn .lede,
html.lang-bn p,
html.lang-bn .prose li,
html.lang-bn .faq .faq-body p { line-height: 1.85; }
html.lang-bn .eyebrow { letter-spacing: 0.04em; }
html.lang-bn .free-badge,
html.lang-bn .stat .n,
html.lang-bn .clock-card .when,
html.lang-bn .phase .ph-num,
html.lang-bn .journey-step .js-num { letter-spacing: normal; }
html.lang-bn .btn,
html.lang-bn .nav-links a,
html.lang-bn .city-chip,
html.lang-bn .js-tag { letter-spacing: normal; }
html.lang-bn .promise-list .never { font-style: normal; }
/* hero accent: Besley italic doesn't exist in Bengali, render upright + coloured */
html.lang-bn .hero h1 .accent { font-style: normal; }

/* ----------  Trilingual — Italian  ---------- */
/* .t-en stays visible in Italian mode; JS hides it inline only where a .t-it sibling exists */
.t-it { display: none; }
html.lang-it .t-bn { display: none; }
html.lang-it .t-it { display: inline; }
html.lang-it .promise-list .never { font-style: italic; }
/* Italian uses accented vowels and longer words — give body text a touch more room */
html.lang-it body { word-spacing: 0.02em; }
html.lang-it .lede, html.lang-it .prose p, html.lang-it .faq .faq-body p { line-height: 1.68; }
/* Besley italic renders the accents beautifully — keep it, just ensure weight is consistent */
html.lang-it h1, html.lang-it h2, html.lang-it h3 { letter-spacing: -0.014em; }
