
:root {
 --ink: #00323d;
 --ink-light: #47727b;
 --ink-muted: #4a7079;
 --cream: #f0f7f8;
 --cream-dark: #dceef1;
 --warm-bg: #fff8ed;
 --teal: #00758f;
 --teal-hover: #007d99;
 --accent: #d6284e;
 --gold: #ffc759;
 --highlight: #fff1d5;
 --white: #ffffff;
 --border: rgba(0,50,61,0.12);
 --border-strong: rgba(0,50,61,0.2);
 --r-sm: 6px;
 --r-lg: 12px;
 --shadow-card: 0 10px 30px rgba(0,50,61,0.06);
 --shadow-lift: 0 18px 45px rgba(0,50,61,0.10);
 --font-display: 'Lora', Georgia, serif;
 --font-body: 'Open Sans', 'Segoe UI', sans-serif;
}
* { margin: 0; padding: 0; box-sizing: border-box; }
[id] { scroll-margin-top: 5.5rem; }
.skip { position: absolute; left: -9999px; top: 0; z-index: 200; background: var(--ink); color: var(--white);
    padding: 0.75rem 1.25rem; border-radius: 0 0 var(--r-sm) 0; text-decoration: none; font-size: 0.9rem; font-weight: 600; }
.skip:focus { left: 0; }
html { scroll-behavior: smooth; font-size: 17px; }
body { font-family: var(--font-body); color: var(--ink); background: var(--cream); line-height: 1.65; -webkit-font-smoothing: antialiased; padding-top: 56px; }
.container { max-width: 1120px; margin: 0 auto; padding: 0 2rem; }
.container--narrow { max-width: 860px; }
.section { padding: 5rem 0; }
.section--tight { padding: 3.5rem 0; }
.section--cream { background: var(--cream); border-top: 1px solid var(--border); }
.section--white { background: var(--white); }
.fade-up { opacity: 0; transform: translateY(24px); animation: fadeUpFallback 0s 1.5s forwards; }
.fade-up.is-visible { opacity: 1; transform: translateY(0); transition: opacity 0.7s ease-out, transform 0.7s ease-out; animation: none; }
@keyframes fadeUpFallback { to { opacity: 1; transform: translateY(0); } }
.nav { position: fixed; top: 0; left: 0; right: 0; z-index: 100; background: rgba(240,247,248,0.92); backdrop-filter: blur(12px); -webkit-backdrop-filter: blur(12px); border-bottom: 1px solid var(--border); padding: 0.85rem 0; transition: box-shadow 0.3s; }
.nav--scrolled { box-shadow: 0 2px 24px rgba(0,50,61,0.06); }
.nav .container { display: flex; justify-content: space-between; align-items: center; }
.nav__links { display: flex; align-items: center; gap: 1.5rem; }
.nav__link { font-size: 0.9rem; font-weight: 500; color: var(--ink-light); text-decoration: none; transition: color 0.2s; position: relative; }
.nav__link:hover { color: var(--teal); }
.nav__link--active { color: var(--ink); }
.nav__link--active::after { content: ''; position: absolute; left: 0; right: 0; bottom: -0.4rem; height: 2px; background: var(--gold); border-radius: 1px; }
.nav__brand { display: flex; flex-direction: column; line-height: 1.1; text-decoration: none; }
.nav__brand-name { font-family: var(--font-display); font-size: 1.2rem; font-weight: 600; color: var(--ink); }
.nav__brand-sub { font-size: 0.66rem; font-weight: 700; letter-spacing: 0.08em; text-transform: uppercase; color: var(--ink-muted); margin-top: 0.1rem; }
.nav__cta { font-size: 0.85rem; padding: 0.55rem 1.25rem; }
.nav .container { position: relative; }
.nav__toggle { display: none; background: none; border: none; cursor: pointer; padding: 0.5rem; flex-direction: column; gap: 4px; border-radius: var(--r-sm); }
.nav__toggle:focus-visible { outline: 2px solid var(--gold); outline-offset: 2px; }
.nav__toggle span { display: block; width: 22px; height: 2px; background: var(--ink); border-radius: 1px; transition: transform 0.25s ease, opacity 0.2s ease; }
.nav__toggle[aria-expanded="true"] span:nth-child(1) { transform: translateY(6px) rotate(45deg); }
.nav__toggle[aria-expanded="true"] span:nth-child(2) { opacity: 0; }
.nav__toggle[aria-expanded="true"] span:nth-child(3) { transform: translateY(-6px) rotate(-45deg); }
@media (max-width: 900px) {
 .nav__toggle { display: flex; }
 .nav__links { position: absolute; top: calc(100% + 0.85rem); left: 0; right: 0; background: var(--cream);
    border-top: 1px solid var(--border); border-bottom: 1px solid var(--border); flex-direction: column;
    align-items: stretch; gap: 0; padding: 0.25rem 2rem 1.5rem; display: none; box-shadow: var(--shadow-card); }
 .nav__links.is-open { display: flex; }
 .nav__link { padding: 0.9rem 0; font-size: 1rem; border-bottom: 1px solid var(--border); }
 .nav__link--active::after { display: none; }
 .nav__link--active { color: var(--teal); font-weight: 600; }
 .nav__cta { margin-top: 1.25rem; text-align: center; padding: 0.85rem 1.25rem; font-size: 0.95rem; }
}
.btn { display: inline-block; padding: 0.85rem 2rem; background: var(--teal); color: var(--white); text-decoration: none; font-family: var(--font-body); font-size: 0.95rem; font-weight: 600; letter-spacing: 0.02em; border-radius: var(--r-sm); border: none; cursor: pointer; transition: background 0.2s, transform 0.15s, box-shadow 0.2s; }
.btn:hover { background: var(--teal-hover); transform: translateY(-1px); box-shadow: 0 4px 16px rgba(0,117,143,0.22); }
.btn:focus-visible { outline: 2px solid var(--gold); outline-offset: 2px; }
.btn--ghost { background: transparent; color: var(--teal); border: 1px solid var(--border-strong); box-shadow: none; }
.btn--ghost:hover { background: rgba(0,125,153,0.06); color: var(--teal-hover); box-shadow: none; }
.btn--light { background: var(--white); color: var(--ink); }
.btn--light:hover { background: var(--cream); color: var(--ink); }
.hero { padding: 6rem 0 4.5rem; position: relative; overflow: hidden; background: var(--white); }
.hero::before { content: ''; position: absolute; top: 0; left: 0; right: 0; bottom: 0; background: radial-gradient(ellipse at 80% 20%, rgba(0,125,153,0.04) 0%, transparent 50%), radial-gradient(ellipse at 20% 80%, rgba(255,199,89,0.06) 0%, transparent 50%); z-index: 0; }
.hero .container { position: relative; z-index: 1; max-width: 880px; }
.hero__eyebrow { font-size: 0.8rem; font-weight: 700; letter-spacing: 0.08em; text-transform: uppercase; color: var(--teal); margin-bottom: 1.25rem; }
.hero h1 { font-family: var(--font-display); font-size: 3rem; line-height: 1.15; color: var(--ink); margin-bottom: 1.5rem; font-weight: 600; }
.hero h1 em { font-style: italic; color: var(--accent); }
.hero__sub { font-size: 1.1rem; color: var(--ink-light); line-height: 1.7; margin-bottom: 1.75rem; max-width: 660px; }
.hero__buttons { display: flex; gap: 0.85rem; flex-wrap: wrap; }
.hero__cred { margin-top: 1.75rem; max-width: 700px; font-size: 0.85rem; color: var(--ink-muted); line-height: 1.65; padding-top: 1.25rem; border-top: 1px solid var(--border); }
.hero__cred strong { color: var(--ink-light); font-weight: 600; }
.hero--split .container { max-width: 1060px; display: grid; grid-template-columns: 1.35fr 0.9fr; gap: 3.5rem; align-items: center; }
.hero--split .hero__cred { max-width: none; }
.hero__portrait { position: relative; }
.hero__portrait::before { content: ''; position: absolute; top: 1.1rem; left: 1.1rem; right: -1.1rem; bottom: -1.1rem; border: 2px solid var(--gold); border-radius: var(--r-lg); z-index: 0; }
.hero__portrait img { position: relative; z-index: 1; width: 100%; aspect-ratio: 4 / 5; object-fit: cover; border-radius: var(--r-lg); display: block; }
@media (max-width: 820px) { .hero--split .container { grid-template-columns: 1fr; gap: 2.25rem; } .hero__portrait { max-width: 300px; } .hero__portrait::before { right: -0.8rem; bottom: -0.8rem; top: 0.8rem; left: 0.8rem; } .about--portrait .about__wrap { grid-template-columns: 1fr; gap: 2.25rem; } .about__photo { max-width: 280px; } }
.bridge { text-align: center; padding: 3rem 0; background: var(--highlight); border-bottom: 1px solid rgba(255,199,89,0.3); }
.bridge__text { font-family: var(--font-display); font-size: 1.35rem; font-weight: 500; color: var(--ink); line-height: 1.55; max-width: 760px; margin: 0 auto; }
.bridge__text strong { color: var(--accent); font-weight: 600; }
.problem { background: var(--ink); color: var(--cream); }
.problem h2 { font-family: var(--font-display); font-size: 2rem; font-weight: 600; margin-bottom: 1rem; color: var(--white); }
.problem__intro { font-size: 1.05rem; color: rgba(240,247,248,0.7); margin-bottom: 2rem; max-width: 680px; }
.problem__label { font-size: 0.8rem; font-weight: 700; letter-spacing: 0.08em; text-transform: uppercase; color: var(--gold); margin-bottom: 1.5rem; }
.problem__points { display: grid; gap: 1.5rem; max-width: 780px; }
.problem__point { font-size: 1rem; color: rgba(240,247,248,0.85); padding-left: 1.25rem; border-left: 2px solid var(--accent); line-height: 1.6; }
.problem__point strong { display: block; margin-bottom: 0.3rem; color: var(--white); font-weight: 600; font-size: 1.05rem; }
.sit__go { display: inline-block; margin-top: 0.6rem; font-size: 0.88rem; font-weight: 600; color: var(--gold);
  text-decoration: none; border-bottom: 1px solid rgba(255,199,89,0.35); padding-bottom: 1px; transition: border-color 0.2s; }
.sit__go:hover { border-bottom-color: var(--gold); }
.sit__go:focus-visible { outline: 2px solid var(--gold); outline-offset: 3px; border-radius: 2px; }
.problem__coda { margin-top: 2.5rem; font-size: 1.05rem; color: var(--white); font-weight: 600; max-width: 680px; }
.problem__roles { list-style: none; display: grid; grid-template-columns: 1fr 1fr; gap: 0.6rem 2.5rem; max-width: 720px; margin-bottom: 2rem; }
.problem__role { font-size: 0.97rem; color: rgba(240,247,248,0.85); padding-left: 1.3rem; position: relative; }
.problem__role::before { content: ''; position: absolute; left: 0; top: 0.7rem; width: 7px; height: 7px; border-radius: 2px; background: var(--gold); }
.problem__role strong { color: var(--white); font-weight: 600; }
.cards__grid { display: grid; grid-template-columns: 1fr 1fr; gap: 2.5rem; }
.card { padding: 2.5rem 0; }
.card:first-child { border-right: 1px solid var(--border); padding-right: 2.5rem; }
.card:last-child { padding-left: 2.5rem; }
.card h3 { font-family: var(--font-display); font-size: 1.5rem; font-weight: 600; margin-bottom: 1.25rem; color: var(--ink); }
.card__quals { list-style: none; }
.card__quals li { padding: 0.45rem 0 0.45rem 1.6rem; font-size: 0.95rem; color: var(--ink-light); position: relative; }
.card__quals li::before { content: ''; position: absolute; left: 0; top: 0.95rem; width: 8px; height: 8px; border-radius: 2px; }
.card--yes .card__quals li::before { background: var(--teal); }
.card--no .card__quals li::before { background: var(--accent); }
.curriculum__header { text-align: center; margin-bottom: 2.5rem; }
.curriculum__header h2 { font-family: var(--font-display); font-size: 2rem; font-weight: 600; margin-bottom: 0.75rem; }
.curriculum__intro { max-width: 680px; margin: 0 auto; color: var(--ink-light); font-size: 1rem; }
.curriculum__accordion { max-width: 860px; margin: 0 auto; }
.accordion { border-top: 1px solid var(--border); }
.accordion:last-child { border-bottom: 1px solid var(--border); }
.accordion__trigger { width: 100%; display: grid; grid-template-columns: 1fr 20px; align-items: start; gap: 1rem; text-align: left; background: none; border: none; padding: 1.25rem 0.5rem; cursor: pointer; font-family: var(--font-body); border-radius: var(--r-sm); transition: background 0.2s; }
.accordion__trigger:hover { background: rgba(0,125,153,0.04); }
.accordion__trigger:focus-visible { outline: 2px solid var(--gold); outline-offset: 2px; }
.accordion__week { font-size: 0.78rem; font-weight: 700; letter-spacing: 0.06em; text-transform: uppercase; color: var(--teal); display: block; margin-bottom: 0.35rem; }
.accordion__title { display: block; font-size: 1.1rem; font-weight: 600; color: var(--ink); margin-bottom: 0.35rem; transition: color 0.2s; font-family: var(--font-display); }
.accordion__trigger:hover .accordion__title { color: var(--teal); }
.accordion__quote { display: block; font-size: 0.9rem; font-style: italic; color: var(--ink-muted); line-height: 1.5; }
.accordion__chevron { width: 20px; height: 20px; margin-top: 4px; transition: transform 0.3s ease; flex-shrink: 0; color: var(--ink-muted); }
.accordion__chevron line { stroke: currentColor; stroke-width: 2; stroke-linecap: round; }
.accordion--open .accordion__chevron { transform: rotate(180deg); }
.accordion__body { display: grid; grid-template-rows: 0fr; overflow: hidden; transition: grid-template-rows 0.35s ease; }
.accordion__body > * { min-height: 0; }
.accordion--open .accordion__body { grid-template-rows: 1fr; padding-bottom: 1.5rem; }
.accordion__content { font-size: 0.95rem; color: var(--ink-light); line-height: 1.7; padding: 0 0.5rem; }
.accordion__content strong { color: var(--ink); font-weight: 600; }
.accordion__content p { margin-bottom: 0.75rem; }
.accordion__cols { display: grid; grid-template-columns: 1fr 1fr; gap: 1.5rem; margin-top: 0.5rem; }
.accordion__cols h4 { font-size: 0.78rem; font-weight: 700; letter-spacing: 0.06em; text-transform: uppercase; color: var(--ink-muted); margin-bottom: 0.6rem; }
.accordion__cols ul { list-style: none; }
.accordion__cols li { padding: 0.25rem 0 0.25rem 1.3rem; position: relative; font-size: 0.92rem; color: var(--ink-light); }
.accordion__cols li::before { content: ''; position: absolute; left: 0; top: 0.7rem; width: 6px; height: 6px; border-radius: 2px; background: var(--teal); }
.callout { background: var(--highlight); border-left: 3px solid var(--gold); border-radius: var(--r-sm);
    padding: 0.9rem 1.25rem; font-size: 0.9rem; color: var(--ink-light); line-height: 1.6; }
.callout strong { color: var(--ink); font-weight: 600; }
.callout--lead { max-width: 700px; margin: 0 auto 2.5rem; text-align: center; font-size: 0.95rem; padding: 1rem 1.5rem; line-height: 1.65; }
.callout--tight { margin-bottom: 1rem; font-size: 0.88rem; padding: 0.85rem 1.15rem; }
.callout--offer { margin-bottom: 1.5rem; font-size: 0.9rem; padding: 1rem 1.25rem; }
.proof { background: var(--warm-bg); border-top: 1px solid rgba(255,199,89,0.25); border-bottom: 1px solid rgba(255,199,89,0.25); }
.proof__grid { display: grid; grid-template-columns: repeat(3, 1fr); text-align: center; gap: 2rem; }
.proof__num { font-family: var(--font-display); font-size: 3.5rem; color: var(--ink); line-height: 1; margin-bottom: 0.5rem; font-weight: 700; }
.proof__num--text { font-size: 1.6rem; line-height: 1.15; }
.proof__label { font-size: 0.9rem; color: var(--ink-light); line-height: 1.5; max-width: 240px; margin: 0 auto; }
.proof__grid--four { grid-template-columns: repeat(4, 1fr); gap: 1.75rem; }
.proof__grid--four .proof__num { font-size: 2.5rem; }
.proof__grid--two { grid-template-columns: repeat(2, 1fr); max-width: 600px; margin: 0 auto; }
.proof__domains { text-align: center; margin: 1.75rem auto 0; max-width: 780px; font-size: 0.86rem; color: var(--ink-muted); line-height: 1.9; }
.proof__domains span { white-space: nowrap; }
.about h2 { font-family: var(--font-display); font-size: 2rem; font-weight: 600; margin-bottom: 1.5rem; }
.about__body { max-width: 760px; font-size: 1rem; color: var(--ink-light); line-height: 1.75; }
.about__body p { margin-bottom: 1rem; }
.about__body p:last-child { margin-bottom: 0; }
.about__body strong { color: var(--ink); font-weight: 600; }
.about--portrait .about__wrap { display: grid; grid-template-columns: 300px 1fr; gap: 3rem; align-items: start; max-width: 980px; }
.about--portrait .about__body { max-width: none; }
.about__photo { position: relative; }
.about__photo::before { content: ''; position: absolute; top: 0.9rem; left: 0.9rem; right: -0.9rem; bottom: -0.9rem; border: 2px solid var(--gold); border-radius: var(--r-lg); z-index: 0; }
.about__photo img { position: relative; z-index: 1; width: 100%; aspect-ratio: 4 / 5; object-fit: cover; border-radius: var(--r-lg); display: block; }
.checklist { list-style: none; max-width: 860px; margin: 1.5rem 0 0; }
.checklist li { padding: 0.7rem 0 0.7rem 1.6rem; border-top: 1px solid var(--border); position: relative; font-size: 0.95rem; color: var(--ink-light); line-height: 1.55; }
.checklist li:last-child { border-bottom: 1px solid var(--border); }
.checklist li::before { content: ''; position: absolute; left: 0; top: 1.05rem; width: 8px; height: 8px; border-radius: 2px; background: var(--gold); }
.checklist li strong { color: var(--ink); font-weight: 600; }
.about__translate { list-style: none; max-width: 760px; margin: 1.5rem 0 0; columns: 2; column-gap: 2.5rem; }
.about__translate li { break-inside: avoid; padding: 0.35rem 0 0.35rem 1.3rem; position: relative; font-size: 0.95rem; color: var(--ink-light); }
.about__translate li::before { content: ''; position: absolute; left: 0; top: 0.75rem; width: 7px; height: 2px; background: var(--gold); }
.qgrid { display: grid; grid-template-columns: repeat(auto-fit, minmax(290px, 1fr)); gap: 1.5rem; max-width: 1020px; margin: 0 auto; }
.pillar { background: var(--white); border: 1px solid var(--border); border-radius: var(--r-lg); padding: 2rem; }
.pillar--q { border-top: 3px solid var(--gold); }
.pillar h3 { font-family: var(--font-display); font-size: 1.2rem; font-weight: 600; color: var(--ink); margin-bottom: 0.6rem; line-height: 1.3; }
.pillar__desc { font-size: 0.93rem; color: var(--ink-light); line-height: 1.6; margin-bottom: 1.1rem; }
.pillar__desc:last-child { margin-bottom: 0; }
.pillar__list { list-style: none; }
.pillar__list li { padding: 0.3rem 0 0.3rem 1.3rem; position: relative; font-size: 0.88rem; color: var(--ink-light); }
.pillar__list li::before { content: ''; position: absolute; left: 0; top: 0.7rem; width: 6px; height: 6px; border-radius: 2px; background: var(--teal); }
.pillar__meta { margin-top: 1.1rem; padding-top: 0.9rem; border-top: 1px solid var(--border); font-size: 0.82rem; color: var(--ink-muted); }
.pillar__meta strong { color: var(--ink-light); font-weight: 600; }
.entry__card { max-width: 960px; margin: 0 auto; background: var(--white); border: 1px solid var(--teal); border-radius: var(--r-lg); overflow: hidden; box-shadow: var(--shadow-lift); display: grid; grid-template-columns: 1.2fr 1fr; }
.entry__main { padding: 2.5rem; }
.entry__tier { font-size: 0.78rem; font-weight: 700; letter-spacing: 0.08em; text-transform: uppercase; color: var(--teal); margin-bottom: 0.6rem; }
.entry__name { font-family: var(--font-display); font-size: 1.85rem; font-weight: 600; color: var(--ink); margin-bottom: 1rem; line-height: 1.2; }
.entry__desc { font-size: 0.97rem; color: var(--ink-light); line-height: 1.7; margin-bottom: 1.5rem; }
.entry__side { padding: 2.5rem; background: var(--ink); color: var(--cream); }
.entry__side h3 { font-family: var(--font-display); font-size: 1.15rem; color: var(--white); margin-bottom: 1.1rem; }
.entry__side ul { list-style: none; }
.entry__side li { padding: 0.5rem 0 0.5rem 1.6rem; position: relative; font-size: 0.92rem; color: rgba(240,247,248,0.85); border-top: 1px solid rgba(240,247,248,0.1); }
.entry__side li:first-child { border-top: none; }
.entry__side li::before { content: ''; position: absolute; left: 0; top: 0.95rem; width: 9px; height: 6px; border-left: 2px solid var(--gold); border-bottom: 2px solid var(--gold); transform: rotate(-45deg); }
.qa { max-width: 820px; margin: 0 auto; }
.qa__item { padding: 1.5rem 0; border-top: 1px solid var(--border); }
.qa__item:last-child { border-bottom: 1px solid var(--border); }
.qa__q { font-family: var(--font-display); font-size: 1.2rem; font-weight: 600; color: var(--ink); margin-bottom: 0.6rem; }
.qa__a { font-size: 0.97rem; color: var(--ink-light); line-height: 1.7; }
.circle-cards { display: grid; grid-template-columns: 1fr 1fr; gap: 1.5rem; max-width: 900px; margin: 0 auto; align-items: stretch; }
.circle-cards--four { max-width: 1000px; }
.circle-card { background: var(--white); border: 1px solid var(--border); border-top: 3px solid var(--teal); border-radius: var(--r-lg); padding: 2rem; display: flex; flex-direction: column; box-shadow: var(--shadow-card); }
.circle-card h3 { font-family: var(--font-display); font-size: 1.3rem; font-weight: 600; color: var(--ink); margin-bottom: 0.4rem; line-height: 1.3; }
.circle-card__for { font-size: 0.82rem; font-weight: 700; letter-spacing: 0.04em; text-transform: uppercase; color: var(--teal); margin-bottom: 1rem; }
.circle-card__desc { font-size: 0.93rem; color: var(--ink-light); line-height: 1.6; margin-bottom: 1.5rem; }
.circle-card .btn { margin-top: auto; align-self: flex-start; }
.pointer { max-width: 820px; margin: 0 auto; text-align: center; background: var(--cream); border: 1px solid var(--border); border-radius: var(--r-lg); padding: 2rem 2.25rem; }
.section--cream .pointer { background: var(--white); }
.pointer h3 { font-family: var(--font-display); font-size: 1.25rem; font-weight: 600; color: var(--ink); margin-bottom: 0.6rem; }
.pointer p { font-size: 0.97rem; color: var(--ink-light); line-height: 1.65; margin-bottom: 1.25rem; }
.accordion__trigger--faq { grid-template-columns: 1fr 20px; }
.accordion__trigger--faq .accordion__title { font-size: 1.05rem; margin-bottom: 0; }
@media (max-width: 760px) { .circle-cards { grid-template-columns: 1fr; } }
.cta { background: var(--ink); color: var(--cream); text-align: center; }
.cta h2 { font-family: var(--font-display); font-size: 2rem; font-weight: 600; margin-bottom: 1rem; color: var(--white); }
.cta p { font-size: 1.05rem; color: rgba(240,247,248,0.7); margin: 0 auto 2rem; max-width: 600px; }
.cta__buttons { display: flex; gap: 0.85rem; justify-content: center; flex-wrap: wrap; }
.footer { padding: 2.5rem 0; text-align: center; font-size: 0.85rem; color: rgba(240,247,248,0.65); border-top: 1px solid rgba(240,247,248,0.08); background: var(--ink); }
.footer__name { font-weight: 600; color: rgba(240,247,248,0.8); margin-bottom: 0.25rem; }
.footer__email { margin-bottom: 1rem; }
.footer__email a { color: var(--teal-hover); text-decoration: none; }
.footer__email a:hover { text-decoration: underline; }
.footer__links { margin-bottom: 1rem; }
.footer__links a { color: rgba(240,247,248,0.65); text-decoration: none; margin: 0 0.75rem; transition: color 0.2s; }
.footer__links a:hover { color: var(--teal-hover); }
.footer__links a:focus-visible { outline: 2px solid var(--gold); outline-offset: 2px; }
@media (max-width: 900px) {
 html { font-size: 16px; }
 .hero h1 { font-size: 2.25rem; }
 .cards__grid { grid-template-columns: 1fr; }
 .card:first-child { border-right: none; border-bottom: 1px solid var(--border); padding-right: 0; padding-bottom: 2rem; }
 .card:last-child { padding-left: 0; padding-top: 2rem; }
 .proof__grid { grid-template-columns: 1fr; }
 .proof__grid--four { grid-template-columns: 1fr 1fr; }
 .problem__roles { grid-template-columns: 1fr; }
   .entry__card { grid-template-columns: 1fr; }
  .accordion__cols { grid-template-columns: 1fr; }
 .about__translate { columns: 1; }
}
@media (prefers-reduced-motion: reduce) { .fade-up { opacity: 1; transform: none; animation: none; transition: none; } html { scroll-behavior: auto; } }


/* ==========================================================================
  MOVES (before -> after proof) — uses existing tokens only
  ========================================================================== */
.moves { max-width: 900px; margin: 0 auto; }
.move { display: grid; grid-template-columns: 300px 1fr; gap: 1.25rem 2.25rem; align-items: baseline;
    padding: 1.5rem 0; border-top: 1px solid var(--border); }
.move:last-child { border-bottom: 1px solid var(--border); }
.move__t { font-family: var(--font-display); font-size: 1.35rem; font-weight: 600; line-height: 1.3; color: var(--ink); }
.move__from { color: var(--ink-muted); font-weight: 500; }
.move__arw { color: var(--accent); padding: 0 0.3rem; }
.move__note { font-size: 0.95rem; color: var(--ink-light); line-height: 1.65; }
.move__note strong { color: var(--ink); font-weight: 600; }
@media (max-width: 760px) { .move { grid-template-columns: 1fr; gap: 0.4rem; } }

/* ---- clients ---- */
.clients { display: flex; flex-wrap: wrap; gap: 0.5rem 1.5rem; justify-content: center;
      font-family: var(--font-display); font-size: 1.15rem; font-weight: 600; color: var(--ink-light); }
.clients span::after { content: '\00b7'; color: var(--gold); margin-left: 1.5rem; }
.clients span:last-child::after { content: ''; margin: 0; }

/* ---- pricing floor ---- */

/* ---- offer rows ---- */
.offers { max-width: 900px; margin: 0 auto; }
.offer { display: grid; grid-template-columns: 260px 1fr; gap: 1rem 2.5rem;
     padding: 2rem 0; border-top: 1px solid var(--border); }
.offer:last-child { border-bottom: 1px solid var(--border); }
.offer__name { font-family: var(--font-display); font-size: 1.3rem; font-weight: 600; color: var(--ink); margin-bottom: 0.4rem; line-height: 1.3; }
.offer__price { font-family: var(--font-display); font-size: 1.9rem; font-weight: 700; color: var(--ink); line-height: 1; margin-bottom: 0.4rem; }
.offer__when { font-size: 0.85rem; color: var(--ink-light); line-height: 1.5; display: block; }
.offer__when strong { display: block; font-weight: 700; color: var(--teal); font-size: 0.9rem; letter-spacing: 0.01em; }
.offer__when span { display: block; margin-top: 0.15rem; color: var(--ink-muted); }
.offer__body p { font-size: 0.97rem; color: var(--ink-light); line-height: 1.7; margin-bottom: 0.75rem; }
.offer__body ul { list-style: none; margin-bottom: 0.9rem; }
.offer__body li { padding: 0.3rem 0 0.3rem 1.3rem; position: relative; font-size: 0.93rem; color: var(--ink-light); }
.offer__body li::before { content: ''; position: absolute; left: 0; top: 0.72rem; width: 6px; height: 6px; border-radius: 2px; background: var(--teal); }
@media (max-width: 760px) { .offer { grid-template-columns: 1fr; gap: 0.75rem; } }

/* ---- case study ---- */
.case { max-width: 820px; margin: 0 auto; }
.case p { font-size: 1rem; color: var(--ink-light); line-height: 1.75; margin-bottom: 1rem; }
.case__out { font-family: var(--font-display); font-size: 1.6rem; font-weight: 600; color: var(--ink);
       line-height: 1.35; margin: 1.75rem 0; padding-left: 1.25rem; border-left: 3px solid var(--accent); }
.case__coda { font-style: italic; color: var(--ink-muted); }

/* ---- steps ---- */
.steps { max-width: 820px; margin: 0 auto; counter-reset: st; }
.step { counter-increment: st; position: relative; padding: 1.25rem 0 1.25rem 3rem; border-top: 1px solid var(--border); }
.step:last-child { border-bottom: 1px solid var(--border); }
.step::before { content: counter(st, decimal-leading-zero); position: absolute; left: 0; top: 1.35rem;
        font-family: var(--font-display); font-size: 1.1rem; font-weight: 700; color: var(--gold); }
.step strong { display: block; font-family: var(--font-display); font-size: 1.1rem; font-weight: 600; color: var(--ink); margin-bottom: 0.25rem; }
.step span { font-size: 0.95rem; color: var(--ink-light); line-height: 1.65; }

/* ---- crosslink ---- */
.crosslink { text-align: center; margin-top: 2rem; font-size: 0.9rem; color: rgba(240,247,248,0.7); }
.crosslink a { color: var(--teal-hover); text-decoration: none; border-bottom: 1px solid rgba(0,157,186,0.4); }
.crosslink a:hover { border-color: var(--teal-hover); }
.section--cream .crosslink, .section--white .crosslink { color: var(--ink-muted); }
.section--cream .crosslink a, .section--white .crosslink a { color: var(--teal); border-bottom-color: var(--border-strong); }

/* ==========================================================================
   TESTIMONIALS
   ========================================================================== */
.quotes { display: grid; grid-template-columns: 1.1fr 1fr; gap: 3.5rem; max-width: 1000px; margin: 0 auto; }
.quote { border-left: 3px solid var(--gold); padding-left: 1.75rem; }
.quote__text { font-family: var(--font-display); font-size: 1.22rem; font-weight: 400; font-style: italic; color: var(--ink); line-height: 1.65; margin-bottom: 1.5rem; }
.quote__name { font-weight: 700; font-size: 0.95rem; color: var(--ink); }
.quote__role { font-size: 0.9rem; color: var(--ink-muted); line-height: 1.5; margin-top: 0.1rem; }
@media (max-width: 760px) { .quotes { grid-template-columns: 1fr; gap: 2.5rem; } }

/* Gates: two kinds of proof, not one flat logo strip */
.gates { display: grid; grid-template-columns: 1fr 1fr; gap: 2.5rem; max-width: 980px; margin: 2.5rem auto 0; }
.gate { text-align: center; }
.gate__label { font-size: 0.72rem; font-weight: 700; letter-spacing: 0.09em; text-transform: uppercase;
  color: var(--teal); margin-bottom: 1rem; }
.gate .clients { margin: 0; gap: 0.5rem 1.5rem; }
.gate__note { margin-top: 1rem; font-size: 0.88rem; line-height: 1.6; color: var(--ink-light); }
.gate + .gate { border-left: 1px solid rgba(255,199,89,0.4); padding-left: 2.5rem; }
@media (max-width: 760px) {
  .gates { grid-template-columns: 1fr; gap: 2rem; }
  .gate + .gate { border-left: none; padding-left: 0; padding-top: 2rem; border-top: 1px solid rgba(255,199,89,0.4); }
}


.section--white .entry__card { background: var(--cream); }
