:root {
  --bg: #08050e;
  --bg-soft: #0d0717;
  --surface: rgba(255, 255, 255, .025);
  --surface-strong: rgba(116, 31, 202, .1);
  --line: rgba(255, 255, 255, .09);
  --line-gold: rgba(255, 210, 73, .28);
  --text: #f8f2fa;
  --muted: #a496ad;
  --muted-dark: #756a7d;
  --gold: #ffd957;
  --amber: #ffae29;
  --orange: #ff681c;
  --pink: #ef38d4;
  --purple: #7c26e8;
  --gradient: linear-gradient(120deg, #fff081 0%, #ffc72d 42%, #ff7a21 100%);
  --gradient-purple: linear-gradient(135deg, rgba(78, 13, 139, .94), rgba(27, 7, 55, .96));
  --shadow: 0 24px 80px rgba(0, 0, 0, .42);
  --container: 1220px;
  --header-height: 82px;
}

*, *::before, *::after { box-sizing: border-box; }
html { scroll-behavior: smooth; scroll-padding-top: calc(var(--header-height) + 24px); }
body {
  min-width: 320px;
  margin: 0;
  overflow-x: hidden;
  background: var(--bg);
  color: var(--text);
  font-family: "Kanit", system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  font-weight: 300;
  line-height: 1.75;
  text-rendering: optimizeLegibility;
  -webkit-font-smoothing: antialiased;
}
body.nav-open { overflow: hidden; }
img { display: block; max-width: 100%; }
a { color: inherit; text-decoration: none; }
button, input { font: inherit; }
button { color: inherit; }
figure { margin: 0; }
p { color: var(--muted); }
h1, h2, h3, p { margin-top: 0; }
h1, h2, h3 { line-height: 1.24; }
h1 { margin-bottom: 0; font-size: clamp(2.5rem, 5.2vw, 5.15rem); font-weight: 600; letter-spacing: -.04em; }
h2 { margin-bottom: 22px; font-size: clamp(2rem, 4.3vw, 3.75rem); font-weight: 500; letter-spacing: -.035em; }
h3 { font-weight: 500; }
h1 em, h2 em { display: block; background: var(--gradient); background-clip: text; -webkit-background-clip: text; color: transparent; font-style: normal; }

::selection { background: var(--gold); color: #1d0a02; }
:focus-visible { outline: 2px solid var(--gold); outline-offset: 4px; }
.container { width: min(calc(100% - 48px), var(--container)); margin-inline: auto; }
.section { padding-block: clamp(85px, 10vw, 145px); }
.skip-link { position: fixed; top: 10px; left: 10px; z-index: 999; padding: 10px 15px; border-radius: 5px; background: var(--gold); color: #120704; transform: translateY(-150%); transition: transform .2s ease; }
.skip-link:focus { transform: translateY(0); }
.page-glow { position: fixed; inset: 0; z-index: -2; pointer-events: none; background: radial-gradient(circle at 10% 5%, rgba(127, 28, 231, .14), transparent 25%), radial-gradient(circle at 90% 35%, rgba(239, 56, 212, .07), transparent 26%), radial-gradient(circle at 65% 95%, rgba(255, 112, 22, .06), transparent 25%); }
.page-glow::after { position: absolute; inset: 0; background-image: linear-gradient(rgba(255,255,255,.012) 1px, transparent 1px), linear-gradient(90deg, rgba(255,255,255,.012) 1px, transparent 1px); background-size: 70px 70px; content: ""; mask-image: linear-gradient(to bottom, black, transparent 68%); }

/* Header */
.site-header { position: fixed; inset: 0 0 auto; z-index: 100; height: var(--header-height); border-bottom: 1px solid transparent; background: rgba(8, 5, 14, .7); backdrop-filter: blur(16px); transition: height .25s ease, background .25s ease, border-color .25s ease; }
.site-header.is-scrolled { height: 72px; border-color: var(--line); background: rgba(8, 5, 14, .94); }
.header-inner { display: flex; height: 100%; align-items: center; gap: 22px; }
.brand { display: inline-flex; flex: 0 0 auto; align-items: center; gap: 11px; }
.brand img { width: 50px; height: 50px; object-fit: contain; filter: drop-shadow(0 0 16px rgba(255, 188, 34, .2)); }
.brand > span { display: grid; gap: 0; }
.brand strong { background: var(--gradient); background-clip: text; -webkit-background-clip: text; color: transparent; font: 800 1.18rem/1 "Montserrat", sans-serif; letter-spacing: .03em; }
.brand small { color: #d8cadd; font: 600 .49rem/1.5 "Montserrat", sans-serif; letter-spacing: .18em; }
.primary-nav { display: flex; align-items: center; justify-content: center; gap: clamp(11px, 1.6vw, 24px); margin-left: auto; }
.primary-nav a { position: relative; padding-block: 10px; color: #aea1b5; font-size: .77rem; font-weight: 400; white-space: nowrap; transition: color .2s ease; }
.primary-nav a::after { position: absolute; inset: auto 50% 1px; width: 0; height: 1px; background: var(--gradient); content: ""; transition: width .2s ease, inset .2s ease; }
.primary-nav a:hover, .primary-nav a.is-active { color: #fff8e7; }
.primary-nav a:hover::after, .primary-nav a.is-active::after { inset-inline: 0; width: 100%; }
.header-actions { display: flex; flex: 0 0 auto; align-items: center; margin-left: 4px; }
.nav-toggle { display: none; width: 42px; height: 42px; margin-left: auto; padding: 11px; border: 0; background: transparent; cursor: pointer; }
.nav-toggle span { display: block; width: 100%; height: 1px; margin: 5px 0; background: #eee4f1; transition: transform .25s ease, opacity .2s ease; }

.button { display: inline-flex; min-height: 50px; align-items: center; justify-content: center; gap: 10px; padding: 12px 23px; border: 1px solid rgba(255, 238, 150, .5); border-radius: 999px; background: var(--gradient); box-shadow: 0 12px 32px rgba(255, 131, 26, .14); color: #1b0a02; font-weight: 600; transition: transform .2s ease, box-shadow .2s ease, filter .2s ease; }
.button:hover { transform: translateY(-2px); box-shadow: 0 16px 38px rgba(255, 131, 26, .24); filter: saturate(1.1); }
.button--small { min-height: 42px; padding: 8px 18px; font-size: .76rem; }

/* Hero */
.hero { position: relative; overflow: hidden; padding: calc(var(--header-height) + 32px) 0 clamp(75px, 9vw, 125px); background: linear-gradient(180deg, rgba(42, 9, 77, .28), transparent 46%); }
.hero::before { position: absolute; top: 12%; left: 50%; width: min(1100px, 90vw); height: 420px; border-radius: 50%; background: rgba(115, 28, 211, .13); content: ""; filter: blur(100px); transform: translateX(-50%); }
.hero .container { position: relative; z-index: 1; }
.breadcrumbs { display: flex; align-items: center; gap: 9px; margin-bottom: 18px; color: #756a7d; font-size: .69rem; }
.breadcrumbs a:hover { color: var(--gold); }
.hero-banner { position: relative; overflow: hidden; border: 1px solid rgba(255, 217, 93, .24); border-radius: 14px; background: #130722; box-shadow: 0 28px 95px rgba(0, 0, 0, .54), 0 0 70px rgba(128, 23, 219, .12); }
.hero-banner::after { position: absolute; inset: 0; border-radius: inherit; box-shadow: inset 0 0 50px rgba(255, 188, 46, .08); content: ""; pointer-events: none; }
.hero-banner img { width: 100%; height: auto; aspect-ratio: 2244 / 701; object-fit: cover; }
.hero-intro { display: grid; grid-template-columns: 1.15fr .85fr; gap: clamp(45px, 8vw, 110px); align-items: end; padding-top: clamp(48px, 7vw, 88px); }
.eyebrow, .section-kicker { color: var(--amber); font: 700 .63rem/1.3 "Montserrat", sans-serif; letter-spacing: .18em; }
.eyebrow { display: flex; align-items: center; gap: 10px; margin-bottom: 22px; }
.eyebrow span { width: 30px; height: 1px; background: var(--gradient); }
.hero-summary p { margin-bottom: 16px; color: #b8abbf; font-size: .95rem; }
.hero-summary p:last-child { margin-bottom: 0; }
.trust-strip { display: grid; grid-template-columns: repeat(4, 1fr); margin: clamp(52px, 8vw, 90px) 0 0; padding: 0; border: 1px solid var(--line); border-radius: 10px; background: rgba(255,255,255,.018); list-style: none; }
.trust-strip li { display: grid; grid-template-columns: 48px 1fr; column-gap: 15px; align-items: center; min-height: 105px; padding: 20px; border-right: 1px solid var(--line); }
.trust-strip li:last-child { border-right: 0; }
.trust-strip li > span { display: grid; width: 45px; height: 45px; grid-row: 1 / span 2; place-items: center; border: 1px solid rgba(255, 212, 78, .32); border-radius: 50%; color: var(--gold); font: 700 .66rem/1 "Montserrat", sans-serif; }
.trust-strip strong { align-self: end; color: #f3ebf5; font-size: .83rem; font-weight: 500; }
.trust-strip small { align-self: start; color: #756a7d; font-size: .66rem; }

/* Content shell */
.about-shell { border-top: 1px solid var(--line); background: linear-gradient(180deg, rgba(13, 7, 23, .9), var(--bg) 24%); }
.about-layout { display: grid; grid-template-columns: 235px minmax(0, 1fr); gap: clamp(55px, 8vw, 115px); align-items: start; }
.table-of-contents { position: sticky; top: calc(var(--header-height) + 35px); }
.table-of-contents > p { margin: 0 0 18px; color: #f4e9f8; font-size: .76rem; font-weight: 600; letter-spacing: .06em; }
.table-of-contents nav { display: grid; border-left: 1px solid var(--line); }
.table-of-contents a { display: grid; grid-template-columns: 30px 1fr; gap: 8px; align-items: center; padding: 10px 0 10px 17px; color: #756b7c; font-size: .73rem; line-height: 1.35; transition: color .2s ease, border-color .2s ease; }
.table-of-contents a span { color: #4f4656; font: 600 .55rem/1 "Montserrat", sans-serif; }
.table-of-contents a:hover, .table-of-contents a.is-active { color: var(--gold); }
.table-of-contents a.is-active { margin-left: -1px; border-left: 1px solid var(--gold); }
.about-content { min-width: 0; }
.content-section { position: relative; padding: clamp(15px, 2vw, 25px) 0 clamp(85px, 10vw, 135px); }
.content-section + .content-section { padding-top: clamp(78px, 9vw, 115px); border-top: 1px solid var(--line); }
.content-section h2 { max-width: 900px; }
.content-section > p:not(.section-kicker) { max-width: 850px; font-size: .98rem; }
.section-kicker { margin-bottom: 18px; }
.lead { color: #d1c5d7 !important; font-size: 1.08rem !important; }
.statement-card { display: grid; grid-template-columns: 55px 1fr; gap: 15px; align-items: start; margin-top: 38px; padding: clamp(25px, 4vw, 42px); border: 1px solid var(--line-gold); border-radius: 11px; background: linear-gradient(135deg, rgba(117, 29, 210, .16), rgba(255, 111, 26, .055)); }
.statement-card > span { background: var(--gradient); background-clip: text; -webkit-background-clip: text; color: transparent; font: 800 3.3rem/.8 serif; }
.statement-card p { margin: 0; color: #d8cddd; font-size: 1.02rem; }

/* Vision */
.vision-card { position: relative; overflow: hidden; margin-top: 34px; padding: clamp(30px, 5vw, 52px); border: 1px solid var(--line-gold); border-radius: 12px; background: radial-gradient(circle at 85% 10%, rgba(240, 53, 211, .18), transparent 36%), var(--gradient-purple); box-shadow: var(--shadow); }
.vision-card::after { position: absolute; right: -50px; bottom: -75px; width: 220px; height: 220px; border: 1px solid rgba(255, 218, 91, .12); border-radius: 50%; content: ""; }
.card-label { display: block; margin-bottom: 34px; color: var(--gold); font: 700 .6rem/1 "Montserrat", sans-serif; letter-spacing: .2em; }
.vision-card p { position: relative; z-index: 1; max-width: 810px; margin: 0; color: #fff6e8; font-size: clamp(1.3rem, 2.5vw, 2rem); font-weight: 400; line-height: 1.55; }
.mission-grid { display: grid; grid-template-columns: repeat(2, 1fr); gap: 14px; margin-top: 14px; }
.mission-grid article { position: relative; min-height: 295px; padding: 28px; border: 1px solid var(--line); border-radius: 10px; background: linear-gradient(145deg, rgba(255,255,255,.02), rgba(107, 25, 193, .07)); }
.mission-number { position: absolute; top: 24px; right: 25px; color: #514858; font: 700 .59rem/1 "Montserrat", sans-serif; }
.mission-icon { display: grid; width: 50px; height: 50px; margin-bottom: 70px; place-items: center; border: 1px solid rgba(255, 210, 70, .28); border-radius: 12px; background: rgba(255, 196, 29, .05); color: var(--gold); font: 700 .77rem/1 "Montserrat", sans-serif; }
.mission-grid h3 { margin-bottom: 10px; color: #f5edf7; font-size: 1.05rem; }
.mission-grid p { margin: 0; font-size: .82rem; }

/* Image placeholders */
.image-slot { display: grid; min-height: 255px; grid-template-columns: .9fr 1.1fr; gap: 34px; align-items: center; margin-top: 42px; padding: 28px; border: 1px dashed rgba(255, 208, 70, .3); border-radius: 11px; background: linear-gradient(135deg, rgba(116, 29, 209, .09), rgba(255, 105, 20, .035)); }
.image-slot__art { position: relative; min-height: 195px; overflow: hidden; border: 1px solid rgba(255,255,255,.08); border-radius: 8px; background: radial-gradient(circle at 50% 50%, rgba(116, 31, 205, .26), transparent 42%), repeating-linear-gradient(45deg, rgba(255,255,255,.018) 0 1px, transparent 1px 12px); }
.image-slot__art::before, .image-slot__art::after { position: absolute; inset: 50% auto auto 50%; border: 1px solid rgba(255, 210, 78, .22); border-radius: 50%; content: ""; transform: translate(-50%, -50%); }
.image-slot__art::before { width: 112px; height: 112px; }
.image-slot__art::after { width: 72px; height: 72px; }
.image-slot__art span { position: absolute; inset: 50% auto auto 50%; z-index: 1; color: var(--gold); font: 300 2.2rem/1 sans-serif; transform: translate(-50%, -50%); }
.image-slot figcaption { display: grid; gap: 8px; }
.image-slot figcaption strong { color: #f1e6f4; font-size: .92rem; }
.image-slot figcaption span { color: #796f80; font-size: .72rem; }
.image-slot--wide { grid-template-columns: 1.2fr .8fr; }

/* Journey */
.timeline { position: relative; display: grid; gap: 0; margin: 45px 0 0; padding: 0; list-style: none; }
.timeline::before { position: absolute; top: 8px; bottom: 8px; left: 129px; width: 1px; background: linear-gradient(var(--gold), rgba(127, 31, 226, .3)); content: ""; }
.timeline li { position: relative; display: grid; grid-template-columns: 110px 1fr; gap: 54px; padding: 0 0 42px; }
.timeline li:last-child { padding-bottom: 0; }
.timeline li::before { position: absolute; top: 7px; left: 124px; width: 11px; height: 11px; border: 2px solid var(--gold); border-radius: 50%; background: var(--bg); box-shadow: 0 0 18px rgba(255, 207, 55, .45); content: ""; }
.timeline time { padding-top: 3px; color: var(--gold); font: 700 .68rem/1.5 "Montserrat", sans-serif; }
.timeline h3 { margin-bottom: 7px; color: #f4eaf6; font-size: 1.05rem; }
.timeline p { max-width: 700px; margin: 0; font-size: .84rem; }
.stats-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 12px; margin-top: 52px; }
.stats-grid article { min-height: 205px; padding: 25px 20px; border: 1px solid var(--line); border-radius: 10px; background: linear-gradient(145deg, rgba(255, 255, 255, .02), rgba(109, 26, 197, .07)); }
.stats-grid strong { display: block; background: var(--gradient); background-clip: text; -webkit-background-clip: text; color: transparent; font: 800 clamp(1.8rem, 3vw, 2.65rem)/1 "Montserrat", sans-serif; letter-spacing: -.06em; }
.stats-grid span { display: block; margin-top: 12px; color: #f1e8f3; font-size: .8rem; font-weight: 500; }
.stats-grid p { margin: 35px 0 0; color: #716778; font-size: .7rem; line-height: 1.5; }

/* Reasons */
.reason-list { display: grid; margin-top: 38px; border-top: 1px solid var(--line); }
.reason-list article { display: grid; grid-template-columns: 72px 1fr; gap: 18px; padding: 27px 0; border-bottom: 1px solid var(--line); }
.reason-list article > span { padding-top: 6px; color: #594f60; font: 700 .64rem/1 "Montserrat", sans-serif; }
.reason-list h3 { margin: 0 0 5px; color: #f3ebf5; font-size: 1rem; }
.reason-list p { max-width: 720px; margin: 0; font-size: .86rem; }

/* Values */
.values-row { display: grid; grid-template-columns: repeat(5, 1fr); gap: 10px; margin-top: 42px; }
.values-row article { display: flex; min-height: 205px; flex-direction: column; padding: 23px 18px; border: 1px solid var(--line); border-radius: 9px; background: var(--surface); }
.values-row strong { background: var(--gradient); background-clip: text; -webkit-background-clip: text; color: transparent; font: 800 2.3rem/1 "Montserrat", sans-serif; }
.values-row span { margin-top: auto; color: #eee4f1; font: 600 .63rem/1.35 "Montserrat", sans-serif; overflow-wrap: anywhere; }
.values-row small { margin-top: 8px; color: #716678; font-size: .64rem; line-height: 1.45; }
.responsible-panel { display: grid; grid-template-columns: 150px 1fr; gap: clamp(28px, 5vw, 55px); align-items: center; margin-top: 45px; padding: clamp(30px, 5vw, 52px); border: 1px solid var(--line-gold); border-radius: 12px; background: radial-gradient(circle at 10% 50%, rgba(255, 183, 28, .1), transparent 24%), var(--gradient-purple); }
.responsible-mark { display: grid; width: 140px; height: 140px; place-content: center; place-items: center; border: 1px solid rgba(255, 216, 88, .35); border-radius: 50%; box-shadow: inset 0 0 35px rgba(105, 29, 190, .3), 0 0 35px rgba(255, 142, 21, .08); }
.responsible-mark strong { color: var(--gold); font: 800 2.2rem/1 "Montserrat", sans-serif; }
.responsible-mark span { margin-top: 9px; color: #a99aad; font: 700 .48rem/1 "Montserrat", sans-serif; letter-spacing: .16em; }
.responsible-panel h3 { margin: 0 0 10px; color: #fff5e9; font-size: 1.28rem; }
.responsible-panel p { margin: 0; font-size: .87rem; }
.responsible-panel .responsible-note { margin-top: 16px; padding-top: 16px; border-top: 1px solid rgba(255,255,255,.1); color: #d4c5d8; font-size: .75rem; }

/* FAQ / CTA */
.faq-list { margin-top: 35px; border-top: 1px solid var(--line); }
.faq-list details { border-bottom: 1px solid var(--line); }
.faq-list summary { display: flex; min-height: 80px; align-items: center; justify-content: space-between; gap: 25px; color: #f1e8f3; cursor: pointer; font-size: .96rem; font-weight: 400; list-style: none; }
.faq-list summary::-webkit-details-marker { display: none; }
.faq-list summary span { display: grid; width: 31px; height: 31px; flex: 0 0 auto; place-items: center; border: 1px solid var(--line); border-radius: 50%; color: var(--gold); transition: transform .25s ease; }
.faq-list details[open] summary span { transform: rotate(45deg); }
.faq-list details p { max-width: 800px; padding: 0 58px 25px 0; font-size: .85rem; }
.final-cta { display: grid; grid-template-columns: minmax(0, 1fr) auto; gap: 35px; align-items: center; padding: clamp(34px, 5vw, 58px); border: 1px solid rgba(255, 216, 94, .26); border-radius: 13px; background: radial-gradient(circle at 80% 50%, rgba(255, 114, 21, .18), transparent 30%), var(--gradient-purple); box-shadow: var(--shadow); }
.final-cta h2 { margin-bottom: 12px; font-size: clamp(1.8rem, 3.4vw, 3.1rem); }
.final-cta p:not(.section-kicker) { max-width: 650px; margin: 0; color: #d7c9de; font-size: .88rem; }
.final-cta .button { white-space: nowrap; }

/* Footer */
.site-footer { border-top: 1px solid rgba(255, 200, 39, .18); background: radial-gradient(circle at 12% 5%, rgba(255, 180, 24, .025), transparent 28%), #070605; }
.footer-main { display: grid; grid-template-columns: minmax(300px, 1.25fr) minmax(420px, .75fr); gap: clamp(70px, 12vw, 170px); align-items: start; padding-block: 62px 52px; }
.brand--footer img { width: 56px; height: 56px; filter: drop-shadow(0 0 12px rgba(255, 150, 17, .22)); }
.footer-brand-block > p { max-width: 390px; margin: 28px 0 0; color: #b0a79f; font-size: .82rem; line-height: 1.75; }
.footer-nav { display: grid; grid-template-columns: repeat(2, minmax(135px, 1fr)); gap: clamp(55px, 8vw, 110px); padding-top: 3px; }
.footer-nav div { display: flex; flex-direction: column; align-items: flex-start; gap: 10px; }
.footer-nav strong { margin-bottom: 7px; color: var(--gold); font-size: .7rem; letter-spacing: .04em; }
.footer-nav a { color: #b3aaa2; font-size: .76rem; transition: color .2s ease; }
.footer-nav a:hover { color: var(--gold); }
.footer-license { padding-block: 32px 0; border-top: 1px solid rgba(255, 198, 34, .15); background: linear-gradient(120deg, rgba(255, 185, 24, .022), transparent 34%); }
.license-heading { display: flex; align-items: center; justify-content: space-between; gap: 35px; margin-bottom: 26px; }
.license-heading h2 { margin: 0; color: var(--gold); font: 700 .62rem/1.2 "Montserrat", sans-serif; letter-spacing: .15em; text-transform: uppercase; }
.license-heading p { margin: 0; color: #716a63; font-size: .67rem; }
.license-grid { display: grid; grid-template-columns: repeat(5, minmax(0, 1fr)); gap: 11px; }
.license-card { display: grid; min-width: 0; height: 94px; place-items: center; padding: 15px 18px; overflow: hidden; border: 1px solid rgba(255, 255, 255, .09); border-radius: 9px; background: linear-gradient(145deg, rgba(255, 255, 255, .025), rgba(255, 255, 255, .008)); transition: border-color .25s ease, transform .25s ease; }
.license-card:hover { border-color: rgba(255, 201, 40, .27); transform: translateY(-2px); }
.license-card img { width: 100%; max-width: 225px; height: 64px; object-fit: contain; }
.footer-bottom { display: grid; grid-template-columns: 1fr 1fr auto; gap: 30px; align-items: center; margin-top: 37px; padding-block: 20px; border-top: 1px solid rgba(255, 198, 34, .15); }
.footer-bottom p, .footer-bottom a { margin: 0; color: #716a63; font-size: .67rem; }
.footer-age { display: flex; align-items: center; justify-content: center; gap: 8px; }
.footer-age strong { color: var(--gold); font-weight: 700; }
.footer-bottom a:hover { color: #fff; }
.sticky-signup { position: fixed; right: 16px; bottom: 16px; z-index: 90; display: none; align-items: center; gap: 8px; padding: 11px 16px; border: 1px solid rgba(255, 237, 160, .44); border-radius: 999px; background: var(--gradient); box-shadow: 0 14px 38px rgba(0,0,0,.58); color: #170a02; font-size: .78rem; font-weight: 600; }

/* Motion */
.js [data-reveal] { opacity: 0; transform: translateY(22px); transition: opacity .72s ease, transform .72s cubic-bezier(.2,.75,.25,1); }
.js [data-reveal].is-visible { opacity: 1; transform: translateY(0); }

@media (max-width: 1120px) {
  .primary-nav { gap: 12px; }
  .primary-nav a { font-size: .72rem; }
  .stats-grid { grid-template-columns: repeat(2, 1fr); }
  .values-row { grid-template-columns: repeat(3, 1fr); }
}

@media (max-width: 920px) {
  :root { --header-height: 72px; }
  .container { width: min(calc(100% - 32px), var(--container)); }
  .site-header, .site-header.is-scrolled { height: var(--header-height); }
  .nav-toggle { display: block; }
  .nav-open .nav-toggle span:nth-child(1) { transform: translateY(6px) rotate(45deg); }
  .nav-open .nav-toggle span:nth-child(2) { opacity: 0; }
  .nav-open .nav-toggle span:nth-child(3) { transform: translateY(-6px) rotate(-45deg); }
  .primary-nav { position: fixed; inset: var(--header-height) 0 auto; display: grid; max-height: 0; gap: 0; overflow: hidden; margin: 0; padding-inline: 20px; border-bottom: 1px solid transparent; background: rgba(8, 5, 14, .985); opacity: 0; transition: max-height .35s ease, opacity .25s ease, padding .35s ease, border-color .35s ease; }
  .nav-open .primary-nav { max-height: calc(100dvh - var(--header-height)); padding-block: 14px 24px; border-color: var(--line); opacity: 1; overflow-y: auto; }
  .primary-nav a { padding: 13px 5px; border-bottom: 1px solid rgba(255,255,255,.045); font-size: .88rem; }
  .primary-nav a::after { display: none; }
  .header-actions { margin-left: 0; }
  .hero-intro { grid-template-columns: 1fr; gap: 26px; }
  .trust-strip { grid-template-columns: 1fr 1fr; }
  .trust-strip li:nth-child(2) { border-right: 0; }
  .trust-strip li:nth-child(-n+2) { border-bottom: 1px solid var(--line); }
  .about-layout { grid-template-columns: 1fr; }
  .table-of-contents { position: relative; top: auto; overflow-x: auto; margin-bottom: 10px; padding-bottom: 7px; }
  .table-of-contents > p { display: none; }
  .table-of-contents nav { display: flex; width: max-content; border: 0; }
  .table-of-contents a { display: flex; padding: 9px 13px; border: 1px solid var(--line); border-radius: 999px; }
  .table-of-contents a + a { margin-left: 7px; }
  .table-of-contents a.is-active { margin-left: 7px; border-color: var(--gold); }
  .table-of-contents a:first-child.is-active { margin-left: 0; }
  .footer-main { grid-template-columns: 1fr; }
  .footer-nav { width: min(480px, 100%); }
  .license-grid { grid-template-columns: repeat(3, minmax(0, 1fr)); }
}

@media (max-width: 720px) {
  .section { padding-block: 76px; }
  h1 { font-size: clamp(2.2rem, 10vw, 3.6rem); }
  h2 { font-size: clamp(1.8rem, 8vw, 2.8rem); }
  .hero { padding-top: calc(var(--header-height) + 24px); }
  .hero-banner { border-radius: 9px; }
  .hero-banner img { min-height: 220px; object-position: center; }
  .mission-grid, .stats-grid { grid-template-columns: 1fr; }
  .image-slot, .image-slot--wide { grid-template-columns: 1fr; }
  .image-slot__art { min-height: 185px; }
  .timeline::before { left: 7px; }
  .timeline li { grid-template-columns: 1fr; gap: 9px; padding-left: 35px; }
  .timeline li::before { left: 2px; }
  .values-row { grid-template-columns: repeat(2, 1fr); }
  .responsible-panel { grid-template-columns: 1fr; }
  .responsible-mark { width: 115px; height: 115px; }
  .final-cta { grid-template-columns: 1fr; }
  .final-cta .button { justify-self: start; }
  .license-heading { align-items: flex-start; flex-direction: column; gap: 10px; }
  .license-grid { grid-template-columns: repeat(2, minmax(0, 1fr)); }
  .footer-nav { grid-template-columns: 1fr 1fr; }
  .footer-bottom { grid-template-columns: 1fr; gap: 7px; text-align: center; }
  .sticky-signup { display: inline-flex; }
}

@media (max-width: 520px) {
  .container { width: min(calc(100% - 24px), var(--container)); }
  .brand span { display: none; }
  .header-inner { gap: 9px; }
  .header-actions .button { min-height: 39px; padding-inline: 12px; font-size: .7rem; }
  .hero-banner img { min-height: 185px; object-position: 51% center; }
  .hero-intro { padding-top: 35px; }
  .trust-strip { grid-template-columns: 1fr; }
  .trust-strip li { border-right: 0; border-bottom: 1px solid var(--line); }
  .trust-strip li:last-child { border-bottom: 0; }
  .statement-card { grid-template-columns: 1fr; }
  .mission-grid article { min-height: 270px; padding: 24px; }
  .mission-icon { margin-bottom: 53px; }
  .image-slot { padding: 18px; }
  .stats-grid article { min-height: 175px; }
  .reason-list article { grid-template-columns: 42px 1fr; }
  .values-row { grid-template-columns: 1fr; }
  .values-row article { min-height: 160px; }
  .responsible-panel { padding: 26px 22px; }
  .final-cta { padding: 29px 23px; }
  .final-cta .button { width: 100%; }
  .footer-main { gap: 42px; padding-block: 52px 44px; }
  .footer-nav { grid-template-columns: repeat(2, minmax(0, 1fr)); gap: 28px; }
  .footer-license { padding-top: 27px; }
  .license-grid { grid-template-columns: 1fr; }
  .license-card { height: 88px; }
}

@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
  *, *::before, *::after { scroll-behavior: auto !important; animation-duration: .01ms !important; animation-iteration-count: 1 !important; transition-duration: .01ms !important; }
  .js [data-reveal] { opacity: 1; transform: none; }
}

@media print {
  .site-header, .table-of-contents, .sticky-signup, .footer-nav, .final-cta, .image-slot { display: none !important; }
  body { background: #fff; color: #111; }
  h1, h2, h3, p, .lead { color: #111 !important; }
  .hero, .about-shell, .site-footer { background: #fff; }
  .hero { padding-top: 20px; }
  .hero-banner { box-shadow: none; }
  .about-layout { display: block; }
  .content-section { break-inside: avoid; padding-block: 30px; }
}
