:root {
  --midnight: #0b1020;
  --midnight-2: #10182a;
  --gold: #b08d57;
  --gold-bright: #d7b16d;
  --ivory: #f7f2e8;
  --paper: #fbf8f2;
  --slate: #56606b;
  --ink: #101624;
  --white: #ffffff;
  --line-dark: rgba(255,255,255,.14);
  --line-light: rgba(11,16,32,.16);
  --serif: "Cormorant Garamond", Georgia, "Times New Roman", serif;
  --sans: Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  --page: min(1180px, calc(100vw - 48px));
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
  margin: 0;
  color: var(--ink);
  background: var(--paper);
  font-family: var(--sans);
  font-size: 16px;
  line-height: 1.65;
  -webkit-font-smoothing: antialiased;
}
body.menu-open { overflow: hidden; }
a { color: inherit; }
button, input, textarea, select { font: inherit; }
button { cursor: pointer; }
img { max-width: 100%; }

.skip-link {
  position: fixed; left: 16px; top: -80px; z-index: 200;
  padding: 10px 16px; background: var(--ivory); color: var(--ink);
}
.skip-link:focus { top: 16px; }

.site-header {
  position: absolute; inset: 0 0 auto; z-index: 50;
  background: #050c1d;
  border-bottom: 1px solid var(--line-dark);
  color: var(--ivory);
}
.header-inner {
  width: var(--page); height: 92px; margin: 0 auto;
  display: flex; align-items: center; justify-content: space-between; gap: 28px;
}
.logo { display: inline-flex; align-items: center; gap: 16px; text-decoration: none; }
.logo-art-frame {
  display: block;
  width: 168px;
  height: 68px;
  overflow: hidden;
  flex: 0 0 auto;
  background: #050c1d;
}
.logo-art {
  display: block;
  width: 248px;
  max-width: none;
  height: auto;
  transform: translate(-44px, -15px);
}
.wordmark {
  position: relative; font-family: var(--serif); font-size: 2.75rem; line-height: .8;
  letter-spacing: .02em; color: var(--ivory); font-weight: 500;
}
.wordmark::after {
  content: ""; position: absolute; width: 30px; height: 5px; right: 16px; top: 23px;
  background: linear-gradient(90deg, var(--gold-bright), var(--gold)); transform: rotate(42deg);
}
.logo-tag { font-size: .64rem; line-height: 1.2; letter-spacing: .31em; color: var(--gold-bright); }
.nav { display: flex; flex: 1; align-items: center; justify-content: space-between; gap: clamp(10px, 1.4vw, 24px); margin-left: 12px; }
.nav a, .nav button {
  color: var(--ivory); text-decoration: none; background: transparent; border: 0; padding: 8px 0;
  font-size: .76rem; text-transform: uppercase; letter-spacing: .13em; white-space: nowrap; text-align: center;
}
.nav a:hover, .nav a:focus-visible, .nav button:hover, .nav button:focus-visible { color: var(--gold-bright); }
.nav .nav-cta {
  border: 1px solid var(--gold);
  padding: 10px 15px;
  background: linear-gradient(90deg, var(--gold) 0 50%, transparent 50% 100%);
  background-size: 205% 100%;
  background-position: 100% 0;
  transition: background-position .55s cubic-bezier(.22,.7,.2,1), color .35s ease, transform .25s ease;
}
.nav .nav-cta:hover { background-position: 0 0; color: var(--midnight); transform: translateY(-2px); }
.menu-toggle { display: none; background: transparent; border: 0; color: var(--ivory); width: 44px; height: 44px; }
.menu-toggle span, .menu-toggle::before, .menu-toggle::after {
  content: ""; display: block; width: 24px; height: 1px; background: currentColor; margin: 6px auto;
}

.hero, .page-hero {
  position: relative; overflow: hidden; color: var(--ivory);
  background:
    radial-gradient(circle at 76% 34%, rgba(176,141,87,.14), transparent 31%),
    linear-gradient(135deg, #07101f 0%, var(--midnight) 50%, #101a2c 100%);
}
.hero::before, .page-hero::before {
  content: ""; position: absolute; inset: 0;
  background: repeating-linear-gradient(90deg, transparent 0 28px, rgba(176,141,87,.10) 29px, transparent 30px);
  mask-image: linear-gradient(90deg, black, transparent 22%, transparent 75%, black);
}
.hero::after {
  content: ""; position: absolute; width: 760px; height: 1px; right: -110px; top: 58%;
  background: linear-gradient(90deg, transparent, var(--gold), transparent); transform: rotate(-28deg);
  box-shadow: 0 34px 0 rgba(176,141,87,.18), 0 -34px 0 rgba(176,141,87,.18);
}
.hero-inner {
  position: relative; z-index: 2; width: var(--page); min-height: 780px; margin: 0 auto;
  padding: 196px 0 100px; display: grid; grid-template-columns: 1.2fr .7fr; gap: 90px; align-items: center;
}
.eyebrow { margin: 0 0 20px; color: var(--gold-bright); font-size: .74rem; text-transform: uppercase; letter-spacing: .28em; font-weight: 600; }
h1, h2, h3 { font-family: var(--serif); font-weight: 500; line-height: .99; margin: 0; }
h1 { max-width: 820px; font-size: clamp(3.7rem, 7vw, 7rem); letter-spacing: -.035em; }
.hero h1 em { color: var(--gold-bright); font-style: normal; }
.hero-copy { max-width: 720px; margin: 30px 0 0; color: rgba(247,242,232,.82); font-size: 1.13rem; }
.hero-actions { display: flex; flex-wrap: wrap; gap: 14px; margin-top: 36px; }
.button {
  --button-start: var(--gold);
  --button-end: var(--ivory);
  display: inline-flex; align-items: center; justify-content: center; min-height: 50px; padding: 0 22px;
  border: 1px solid var(--gold); color: var(--midnight); text-decoration: none;
  background: linear-gradient(90deg, var(--button-end) 0 50%, var(--button-start) 50% 100%);
  background-size: 205% 100%;
  background-position: 100% 0;
  font-size: .76rem; font-weight: 700; text-transform: uppercase; letter-spacing: .13em;
  transition: background-position .55s cubic-bezier(.22,.7,.2,1), color .35s ease, transform .25s ease, box-shadow .45s ease;
}
.button:hover, .button:focus-visible { background-position: 0 0; color: var(--midnight); transform: translateY(-3px); box-shadow: 0 14px 34px rgba(176,141,87,.28); }
.button-ghost { --button-start: transparent; --button-end: var(--gold-bright); color: var(--ivory); border-color: rgba(255,255,255,.42); }
.button-ghost:hover { color: var(--midnight); border-color: var(--gold-bright); }
.button-dark { --button-start: var(--midnight); --button-end: var(--ivory); color: var(--ivory); border-color: var(--midnight); }
.button-dark:hover { color: var(--midnight); box-shadow: 0 14px 34px rgba(11,16,32,.24); }

.hero-aside { align-self: end; margin-bottom: 28px; border-top: 1px solid var(--gold); padding-top: 24px; }
.hero-aside > p { margin: 0 0 22px; color: rgba(247,242,232,.76); font-size: 1rem; line-height: 1.7; }
.hero-aside strong { color: var(--ivory); font-weight: 500; }
.hero-index {
  position: relative; overflow: hidden; display: grid; grid-template-columns: 42px 1fr; gap: 18px;
  margin-top: 10px; padding: 19px 20px; border: 1px solid rgba(215,177,109,.2);
  background: rgba(11,16,32,.42); backdrop-filter: blur(4px);
  transition: transform .35s cubic-bezier(.22,.7,.2,1), border-color .35s ease, background-color .35s ease, box-shadow .35s ease;
}
.hero-index::after { content: ""; position: absolute; inset: 0 0 0 auto; width: 3px; background: var(--gold-bright); transform: scaleY(0); transform-origin: bottom; transition: transform .35s ease; }
.hero-index:hover { transform: translateX(-8px); border-color: rgba(215,177,109,.66); background: rgba(22,33,56,.9); box-shadow: 14px 14px 34px rgba(0,0,0,.24); }
.hero-index:hover::after { transform: scaleY(1); }
.hero-index span { color: var(--gold-bright); font-family: var(--serif); font-size: 1.45rem; line-height: 1.25; transition: transform .35s ease, color .35s ease; }
.hero-index:hover span { transform: translateX(4px); color: var(--ivory); }
.hero-index p { margin: 0; color: rgba(247,242,232,.78); font-size: 1rem; }

.boundary-bar { background: var(--ivory); border-bottom: 1px solid var(--line-light); }
.boundary-inner { width: var(--page); margin: 0 auto; padding: 19px 0; display: flex; align-items: center; gap: 18px; }
.boundary-inner strong { white-space: nowrap; color: var(--gold); font-size: .71rem; text-transform: uppercase; letter-spacing: .2em; }
.boundary-inner p { margin: 0; font-size: .87rem; color: #46505c; }

.section { padding: 112px 0; }
.section-dark { background: var(--midnight); color: var(--ivory); }
.section-ivory { background: var(--ivory); }
.section-inner { width: var(--page); margin: 0 auto; }
.section-head { display: grid; grid-template-columns: minmax(220px, .4fr) 1fr; gap: 54px; align-items: stretch; margin-bottom: 64px; }
.kicker { margin: 0; color: var(--gold); font-size: .88rem; line-height: 1.45; text-transform: uppercase; letter-spacing: .18em; font-weight: 700; }
.section-head > .kicker {
  position: relative; min-height: 96px; padding: 24px 26px; border: 1px solid var(--line-light); border-top: 3px solid var(--gold);
  background: rgba(176,141,87,.055); display: flex; align-items: flex-start;
  transition: transform .35s cubic-bezier(.22,.7,.2,1), border-color .35s ease, background-color .35s ease, box-shadow .35s ease;
}
.section-head > .kicker::after { content: ""; position: absolute; right: 26px; bottom: 28px; width: 44px; height: 1px; background: var(--gold); transition: width .35s ease; }
.section-head > .kicker:hover { transform: translateY(-6px); border-color: rgba(176,141,87,.65); background: rgba(176,141,87,.11); box-shadow: 0 16px 38px rgba(11,16,32,.1); }
.section-head > .kicker:hover::after { width: 68px; }
.section-dark .section-head > .kicker { border-color: var(--line-dark); border-top-color: var(--gold-bright); background: rgba(176,141,87,.08); color: var(--gold-bright); }
.section-dark .section-head > .kicker:hover { border-color: rgba(215,177,109,.5); background: #162138; box-shadow: 0 18px 42px rgba(0,0,0,.24); }
.section h2 { font-size: clamp(2.7rem, 5vw, 4.7rem); letter-spacing: -.025em; }
.section-lede { max-width: 720px; margin: 24px 0 0; font-size: 1.06rem; color: var(--slate); }
.section-dark .section-lede { color: rgba(247,242,232,.7); }

.model-grid { display: grid; grid-template-columns: repeat(2, 1fr); border-top: 1px solid var(--line-light); border-bottom: 1px solid var(--line-light); }
.model-card { position: relative; overflow: hidden; min-width: 0; min-height: 500px; padding: 52px; display: flex; flex-direction: column; justify-content: space-between; }
.model-card::before { content: ""; position: absolute; inset: 0 0 auto; height: 4px; background: linear-gradient(90deg, var(--gold), var(--gold-bright)); transform: scaleX(0); transform-origin: left; transition: transform .4s cubic-bezier(.22,.7,.2,1); }
.model-card:hover::before { transform: scaleX(1); }
.model-card + .model-card { border-left: 1px solid var(--line-light); }
.model-number { color: var(--gold); font-family: var(--serif); font-size: 1.3rem; transition: color .35s ease, transform .35s ease; }
.model-card:hover .model-number { color: #8d6b32; transform: translateX(6px); }
.model-card h3 { margin-top: 80px; font-size: clamp(2.5rem, 4vw, 4rem); transition: color .35s ease, transform .35s ease; }
.model-card:hover h3 { color: #8d6b32; transform: translateX(6px); }
.model-card p { max-width: 480px; color: var(--slate); }
.text-link { display: inline-flex; align-items: center; gap: 16px; width: fit-content; color: var(--ink); text-decoration: none; font-weight: 700; font-size: .76rem; text-transform: uppercase; letter-spacing: .14em; }
.text-link::after { content: "→"; color: var(--gold); font-size: 1.2rem; transition: transform .2s; }
.text-link:hover::after { transform: translateX(5px); }
.section-dark .text-link { color: var(--ivory); }

.process { display: grid; grid-template-columns: repeat(5, 1fr); counter-reset: step; }
.process article { position: relative; min-height: 265px; padding: 30px 24px; border-left: 1px solid var(--line-dark); }
.process article:last-child { border-right: 1px solid var(--line-dark); }
.process article::before { counter-increment: step; content: "0" counter(step); color: var(--gold-bright); font-family: var(--serif); font-size: 1.15rem; }
.process article::after { content: ""; position: absolute; inset: auto 24px 0; height: 3px; background: var(--gold-bright); transform: scaleX(0); transform-origin: left; transition: transform .35s ease; }
.process article:hover::after { transform: scaleX(1); }
.process h3 { margin-top: 64px; font-size: 1.75rem; }
.process p { margin: 14px 0 0; color: rgba(247,242,232,.64); font-size: .9rem; }

.principle-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 1px; background: var(--line-light); border: 1px solid var(--line-light); }
.principle { min-height: 280px; background: var(--paper); padding: 36px; }
.principle .icon { width: 44px; height: 44px; color: var(--gold); margin-bottom: 64px; }
.principle h3 { font-size: 1.8rem; }
.principle p { color: var(--slate); }
.section-dark .principle { color: var(--ink); }
.section-dark .principle h3 { color: var(--midnight); transition: color .35s ease; }
.section-dark .principle:hover h3 { color: #8d6b32; }

.split { display: grid; grid-template-columns: .9fr 1.1fr; gap: 95px; align-items: start; }
.split-copy h2 { margin-bottom: 26px; }
.split-copy p { color: var(--slate); }
.section-dark .split-copy p { color: rgba(247,242,232,.68); }
.rule-list { border-top: 1px solid currentColor; }
.rule-list article { display: grid; grid-template-columns: 48px 1fr; gap: 18px; padding: 26px 0; border-bottom: 1px solid rgba(86,96,107,.3); }
.section-dark .rule-list article { border-color: var(--line-dark); }
.rule-list span { color: var(--gold); font-family: var(--serif); font-size: 1.1rem; }
.rule-list h3 { font-size: 1.5rem; }
.rule-list p { margin: 8px 0 0; color: var(--slate); font-size: .93rem; }
.section-dark .rule-list p { color: rgba(247,242,232,.65); }

.cta-panel { position: relative; overflow: hidden; background: var(--gold); color: var(--midnight); padding: 72px; display: grid; grid-template-columns: 1fr auto; gap: 60px; align-items: end; }
.cta-panel::after { content: "SQN"; position: absolute; right: -16px; top: -62px; color: rgba(255,255,255,.14); font-family: var(--serif); font-size: 14rem; line-height: 1; }
.cta-panel h2 { position: relative; z-index: 1; max-width: 700px; }
.cta-panel p { position: relative; z-index: 1; max-width: 620px; }
.cta-panel .button { position: relative; z-index: 1; }

.page-hero-inner { position: relative; z-index: 2; width: var(--page); margin: 0 auto; padding: 215px 0 108px; }
.page-hero h1 { max-width: 950px; font-size: clamp(3.6rem, 7vw, 6.7rem); }
.page-hero .lede { max-width: 780px; margin: 28px 0 0; color: rgba(247,242,232,.74); font-size: 1.12rem; }
.page-marker { margin-top: 52px; display: inline-flex; gap: 18px; align-items: center; color: var(--gold-bright); font-size: .72rem; text-transform: uppercase; letter-spacing: .2em; }
.page-marker::before { content: ""; display: block; width: 64px; height: 1px; background: currentColor; }
.page-hero-actions { display: flex; flex-wrap: wrap; gap: 14px; margin-top: 34px; }
.professional-hero .page-hero-actions { justify-content: flex-start; }

.intro-grid { display: grid; grid-template-columns: .7fr 1.3fr; gap: 90px; align-items: start; }
.intro-grid h2 { font-size: clamp(2.6rem, 4.8vw, 4.5rem); }
.intro-grid .lead-copy { font-family: var(--serif); font-size: 1.65rem; line-height: 1.3; color: var(--ink); }
.intro-grid p { color: var(--slate); }
.stage-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 22px; }
.stage { min-height: 390px; padding: 34px; border: 1px solid var(--line-light); display: flex; flex-direction: column; }
.stage span { color: var(--gold); font-family: var(--serif); font-size: 1.15rem; }
.stage h3 { margin: auto 0 20px; font-size: 2.1rem; }
.stage p { margin: 0; color: var(--slate); }
.note { margin-top: 26px; padding: 20px 22px; border-left: 2px solid var(--gold); background: rgba(176,141,87,.08); color: var(--slate); font-size: .9rem; }

.civil-journey { position: relative; overflow: hidden; }
.civil-journey + .section-ivory { background: var(--paper); }
.civil-journey::before { content: ""; position: absolute; inset: 0; pointer-events: none; background: radial-gradient(circle at 82% 12%, rgba(176,141,87,.12), transparent 28%); }
.civil-journey .section-inner { position: relative; z-index: 1; }
.civil-journey-head { max-width: 920px; margin-bottom: 64px; }
.civil-journey-head h2 { margin-top: 18px; }
.civil-journey-head > p:last-child { margin: 24px 0 0; color: var(--slate); font-size: 1.14rem; }
.civil-journey-grid { display: grid; grid-template-columns: repeat(2, minmax(0, 1fr)); gap: 24px; counter-reset: journey; }
.civil-journey-card { position: relative; overflow: hidden; min-height: 430px; padding: 30px; border: 1px solid var(--line-light); background: var(--paper); transition: transform .4s cubic-bezier(.22,.7,.2,1), border-color .35s ease, background-color .35s ease, box-shadow .4s ease; }
.civil-journey-card::before { content: ""; position: absolute; inset: 0 0 auto; height: 3px; background: linear-gradient(90deg, var(--gold), var(--gold-bright)); transform: scaleX(0); transform-origin: left; transition: transform .4s cubic-bezier(.22,.7,.2,1); }
.civil-journey-card:hover { z-index: 2; transform: translateY(-8px); border-color: rgba(176,141,87,.72); background: var(--white); box-shadow: 0 22px 50px rgba(11,16,32,.12); }
.civil-journey-card:hover::before { transform: scaleX(1); }
.civil-journey-visual { height: 150px; margin: -4px 0 24px; display: grid; place-items: center; border-bottom: 1px solid rgba(11,16,32,.08); background: linear-gradient(135deg, rgba(176,141,87,.045), rgba(255,255,255,.72)); color: var(--midnight); }
.civil-journey-visual svg { width: 150px; height: 100px; overflow: visible; fill: none; stroke: currentColor; stroke-width: 2.6; stroke-linecap: round; stroke-linejoin: round; transition: transform .45s cubic-bezier(.22,.7,.2,1); }
.civil-journey-card:hover .civil-journey-visual svg { transform: translateY(-4px) scale(1.05); }
.civil-journey-visual .journey-fill { fill: var(--midnight); stroke: var(--midnight); }
.civil-journey-visual .journey-gold-fill { fill: var(--gold-bright); stroke: var(--gold-bright); }
.civil-journey-visual .journey-gold-stroke { stroke: var(--gold-bright); }
.civil-journey-visual .journey-paper-fill { fill: var(--paper); stroke: none; }
.civil-journey-visual .journey-icon-heavy { stroke-width: 4.1; }
.civil-journey-visual .journey-fill-light { fill: var(--gold); stroke: var(--gold); }
.civil-journey-visual .journey-white { stroke: var(--white); }
.civil-journey-visual .journey-halo { fill: rgba(176,141,87,.1); stroke: rgba(176,141,87,.2); }
.civil-journey-number { display: block; margin-bottom: 12px; color: #80602f; font-family: var(--serif); font-size: 1.45rem; line-height: 1; }
.civil-journey-card h3 { max-width: 100%; font-size: clamp(1.75rem, 2.5vw, 2.35rem); line-height: 1.06; }
.civil-journey-card > p { max-width: 500px; margin: 18px 0 0; color: var(--slate); }

.audience-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 22px; }
.audience-card { padding: 42px; border: 1px solid var(--line-dark); min-height: 340px; }
.audience-card h3 { font-size: 2.2rem; }
.audience-card p { color: rgba(247,242,232,.66); }
.audience-card .button { margin-top: 24px; }
.audience-card-light { border-color: var(--line-light); background: var(--paper); }
.audience-card-light .kicker { color: #80602f; }
.audience-card-light > p:not(.kicker) { color: var(--slate); }
.funding-card-visual { width: 96px; height: 96px; margin: 0 0 28px; color: var(--gold); }
.funding-card-visual svg { width: 100%; height: 100%; overflow: visible; stroke: currentColor; stroke-width: 2; stroke-linecap: round; stroke-linejoin: round; }
.audience-card:hover .funding-card-visual { color: #8d6b32; transform: translateY(-3px) scale(1.04); }
.funding-card-visual { transition: transform .4s cubic-bezier(.22,.7,.2,1), color .35s ease; }

.button-external { gap: 16px; }
.button-external::after { content: "↗"; font-size: 1rem; line-height: 1; }
.button-wide { width: 100%; }

.panel-card-grid { display: flex; flex-wrap: wrap; gap: 20px; }
.panel-card {
  position: relative;
  overflow: hidden;
  min-height: 300px;
  padding: 34px;
  border: 1px solid var(--line-light);
  background: var(--paper);
  display: flex;
  flex-direction: column;
  flex: 1 1 calc(33.333% - 14px);
  transition: transform .35s cubic-bezier(.22,.7,.2,1), border-color .35s ease, background-color .35s ease, box-shadow .35s ease;
}
.panel-card::before { content: ""; position: absolute; inset: 0 0 auto; height: 3px; background: var(--gold); transform: scaleX(0); transform-origin: left; transition: transform .4s cubic-bezier(.22,.7,.2,1); }
.panel-card:hover { transform: translateY(-7px); border-color: rgba(176,141,87,.72); background: var(--white); box-shadow: 0 18px 45px rgba(11,16,32,.10); }
.panel-card:hover::before { transform: scaleX(1); }
.panel-card-number { color: var(--gold); font-family: var(--serif); font-size: 1.2rem; }
.panel-card h3 { margin-top: auto; font-size: 2rem; }
.panel-card p { margin-bottom: 0; color: var(--slate); }

.payment-timeline { display: grid; grid-template-columns: repeat(3, 1fr); border-top: 1px solid var(--line-light); border-bottom: 1px solid var(--line-light); }
.payment-step { min-height: 340px; padding: 38px; background: transparent; transition: transform .35s cubic-bezier(.22,.7,.2,1), background-color .35s ease, box-shadow .35s ease; }
.payment-step:hover { position: relative; z-index: 2; transform: translateY(-7px); background: var(--white); box-shadow: 0 18px 44px rgba(11,16,32,.10); }
.payment-step + .payment-step { border-left: 1px solid var(--line-light); }
.payment-step h3 { margin-top: 0; font-size: 2rem; }
.payment-step p { color: var(--slate); }
.payment-promise { margin-top: 38px; padding: 30px 34px; background: var(--midnight); color: var(--ivory); font-family: var(--serif); font-size: clamp(1.55rem, 2.4vw, 2.2rem); line-height: 1.25; transition: transform .35s ease, background-color .35s ease, box-shadow .35s ease; }
.payment-promise:hover { transform: translateY(-6px); background: var(--midnight-2); box-shadow: 0 18px 42px rgba(11,16,32,.2); }
.payment-promise-text { max-width: 1180px; margin: 42px 0 0; color: var(--ink); font-family: var(--serif); font-size: clamp(1.65rem, 2.7vw, 2.45rem); line-height: 1.3; }

.workflow-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 1px; background: var(--line-dark); border: 1px solid var(--line-dark); counter-reset: workflow; }
.workflow-step { min-height: 190px; padding: 28px; background: var(--midnight); transition: transform .32s ease, background-color .35s ease, box-shadow .35s ease; }
.workflow-step:hover { position: relative; z-index: 2; transform: translateY(-6px); background: #162138; box-shadow: 0 16px 36px rgba(0,0,0,.28); }
.workflow-step::before { counter-increment: workflow; content: "0" counter(workflow); color: var(--gold-bright); font-family: var(--serif); }
.workflow-step h3 { margin-top: 54px; font-size: 1.45rem; transition: color .3s ease; }
.workflow-step:hover h3 { color: var(--gold-bright); }

.profile-grid { display: grid; grid-template-columns: repeat(2, 1fr); gap: 0 44px; border-top: 1px solid var(--line-light); }
.profile-item { padding: 27px 0; border-bottom: 1px solid var(--line-light); display: grid; grid-template-columns: 34px 1fr; gap: 16px; align-items: start; transition: padding-left .32s ease, background-color .32s ease; }
.profile-item:hover { padding-left: 18px; background: rgba(176,141,87,.08); }
.profile-item span { color: var(--gold); font-family: var(--serif); }
.profile-item p { margin: 0; color: var(--slate); }
.section-dark .profile-grid { border-color: var(--line-dark); }
.section-dark .profile-item { border-color: var(--line-dark); }
.section-dark .profile-item p { color: rgba(247,242,232,.72); }

.application-panel {
  position: relative;
  overflow: hidden;
  background: var(--gold);
  color: var(--midnight);
  padding: 76px;
  display: grid;
  grid-template-columns: minmax(0, 1fr) 330px;
  gap: 70px;
  align-items: center;
}
.application-panel::after { content: "SQN"; position: absolute; right: -20px; bottom: -80px; color: rgba(255,255,255,.14); font-family: var(--serif); font-size: 15rem; line-height: 1; }
.application-panel > * { position: relative; z-index: 1; }
.application-panel h2 { max-width: 720px; }
.application-panel p { max-width: 690px; }
.application-panel small { display: block; margin-top: 18px; color: rgba(11,16,32,.7); }

.professional-hero .page-hero-inner {
  text-align: left;
}
.professional-hero h1 { margin-inline: 0; }
.professional-hero .lede { margin-inline: 0; max-width: 840px; }
.professional-hero .page-marker { justify-content: flex-start; }
.professional-hero .hero-primary-cta-wrap { justify-content: flex-start; }
.hero-primary-cta-wrap { display: flex; justify-content: center; margin-top: 42px; }
.button-hero { min-height: 66px; padding-inline: 38px; font-size: .86rem; }
.button-animated {
  --button-start: var(--gold);
  --button-end: var(--ivory);
  background: linear-gradient(90deg, var(--button-end) 0 50%, var(--button-start) 50% 100%);
  background-size: 205% 100%;
  background-position: 100% 0;
  transition: background-position .55s cubic-bezier(.22,.7,.2,1), color .35s ease, transform .25s ease, box-shadow .45s ease;
}
.button.button-animated:hover,
.button.button-animated:focus-visible {
  background: linear-gradient(90deg, var(--button-end) 0 50%, var(--button-start) 50% 100%);
  background-size: 205% 100%;
  background-position: 0 0;
  color: var(--midnight);
  transform: translateY(-3px);
  box-shadow: 0 14px 34px rgba(176,141,87,.28);
}
.button-dark.button-animated { --button-start: var(--midnight); --button-end: var(--ivory); color: var(--ivory); }
.button-dark.button-animated:hover,
.button-dark.button-animated:focus-visible { color: var(--midnight); box-shadow: 0 14px 34px rgba(11,16,32,.24); }
.inline-cta { display: flex; justify-content: center; margin-top: 44px; }
.panel-icon {
  width: 46px;
  height: 46px;
  margin-bottom: 56px;
  color: var(--gold);
  transition: transform .35s ease, color .35s ease;
}
.panel-card:hover .panel-icon, .payment-step:hover .panel-icon { transform: translateY(-4px) scale(1.04); color: var(--gold-bright); }
.panel-card .panel-icon + h3 { margin-top: auto; }
.relationship-statement { display: grid; grid-template-columns: repeat(3, 1fr); gap: 1px; margin-top: 42px; border: 1px solid var(--line-dark); background: var(--line-dark); }
.relationship-statement p { margin: 0; padding: 32px; background: var(--midnight); color: var(--ivory); font-family: var(--serif); font-size: 1.55rem; line-height: 1.25; transition: transform .32s ease, background-color .35s ease, box-shadow .35s ease; }
.relationship-statement p:hover { position: relative; z-index: 2; transform: translateY(-6px); background: #162138; box-shadow: 0 16px 36px rgba(0,0,0,.26); }
.relationship-statement strong { color: var(--gold-bright); font-weight: 500; }
.relationship-cta { justify-content: flex-start; margin-top: 28px; }

.crisis-page .eyebrow,
.crisis-page .kicker,
.crisis-page .page-marker { font-size: .9rem; line-height: 1.5; }
.crisis-page .boundary-inner strong { font-size: .82rem; }
.crisis-page .principle h3 { font-size: 2rem; }
.crisis-page .rule-list h3 { font-size: 1.7rem; }
.linked-matters-section .split { grid-template-columns: .95fr 1.05fr; }
.linked-matters-section .split-copy h2 { font-size: clamp(2.8rem, 4.5vw, 4.4rem); }
.linked-matters-copy > p { margin-top: 0; margin-bottom: 26px; color: var(--slate); }
.linked-matters-copy .note { margin-top: 34px; margin-bottom: 0; }

.about-page .eyebrow,
.about-page .kicker,
.about-page .page-marker { font-size: .9rem; line-height: 1.5; }
.about-hero .page-hero-inner { padding-bottom: 132px; }
.about-hero h1 { max-width: 900px; }
.about-hero .about-hero-lede { color: var(--ivory); font-family: var(--serif); font-size: clamp(1.8rem, 3vw, 2.65rem); line-height: 1.15; }
.about-origin { display: grid; grid-template-columns: .82fr 1.18fr; gap: 100px; align-items: start; }
.about-origin h2 { font-size: clamp(2.9rem, 5vw, 4.7rem); }
.about-story-copy > p { margin: 0 0 24px; color: var(--slate); }
.about-story-copy .lead-copy { color: var(--ink); font-family: var(--serif); font-size: 1.65rem; line-height: 1.3; }
.about-pullquote { margin: 38px 0; padding: 32px 36px; border-left: 3px solid var(--gold); background: var(--midnight); color: var(--ivory); font-family: var(--serif); font-size: clamp(2rem, 3vw, 3rem); line-height: 1.08; transition: transform .35s ease, background-color .35s ease, box-shadow .35s ease; }
.about-pullquote:hover { transform: translateY(-7px); background: var(--midnight-2); box-shadow: 0 18px 45px rgba(11,16,32,.2), inset 0 3px 0 var(--gold); }

.about-card-grid { display: flex; flex-wrap: wrap; gap: 18px; }
.about-card { position: relative; overflow: hidden; min-height: 285px; min-width: 260px; padding: 34px; border: 1px solid var(--line-light); background: var(--paper); display: flex; flex: 1 1 calc(33.333% - 18px); flex-direction: column; transition: transform .35s cubic-bezier(.22,.7,.2,1), border-color .35s ease, background-color .35s ease, box-shadow .35s ease; }
.about-card::before { content: ""; position: absolute; inset: 0 0 auto; height: 3px; background: var(--gold); transform: scaleX(0); transform-origin: left; transition: transform .4s cubic-bezier(.22,.7,.2,1); }
.about-card:hover { z-index: 2; transform: translateY(-7px); border-color: rgba(176,141,87,.72); background: var(--white); box-shadow: 0 18px 45px rgba(11,16,32,.12), inset 0 3px 0 var(--gold); }
.about-card:hover::before { transform: scaleX(1); }
.about-card-number { color: var(--gold-bright); font-family: var(--serif); font-size: 1.25rem; }
.about-card h3 { margin-top: auto; font-size: 1.8rem; line-height: 1.08; }
.about-card p { margin: 16px 0 0; color: var(--slate); }
.about-card-dark { border-color: var(--line-dark); background: var(--midnight); color: var(--ivory); }
.about-card-dark p { color: rgba(247,242,232,.7); }
.about-card-dark:hover { background: #162138; border-color: rgba(215,177,109,.7); box-shadow: 0 18px 45px rgba(0,0,0,.28), inset 0 3px 0 var(--gold); }
.about-pressure-grid .about-card { min-height: 260px; }
.about-corner-grid { display: grid; grid-template-columns: .8fr 1.2fr; gap: 80px; margin-top: 72px; align-items: start; }
.about-corner-copy .lead-copy { margin: 0 0 16px; color: var(--gold-bright); font-family: var(--serif); font-size: 2rem; line-height: 1.15; }
.about-corner-copy p:not(.lead-copy) { color: rgba(247,242,232,.72); }
.about-corner-editorial { display: grid; grid-template-columns: .8fr 1.2fr; gap: 80px; margin-top: 72px; padding-top: 42px; border-top: 1px solid var(--line-dark); align-items: start; }
.about-action-prose { max-width: 760px; }
.about-action-prose p { margin: 0 0 22px; color: rgba(247,242,232,.78); font-family: var(--serif); font-size: clamp(1.45rem, 2.3vw, 2rem); line-height: 1.3; }
.about-action-prose p:last-child { margin-bottom: 0; padding-top: 24px; border-top: 1px solid var(--line-dark); }
.about-action-prose strong { color: var(--ivory); font-weight: 600; }
.about-action-list { display: flex; flex-wrap: wrap; gap: 1px; border: 1px solid var(--line-dark); background: var(--line-dark); }
.about-action-list span { flex: 1 1 calc(50% - 1px); min-width: 220px; padding: 22px 24px; background: var(--midnight); color: var(--ivory); transition: transform .35s ease, background-color .35s ease, box-shadow .35s ease; }
.about-action-list span:hover { z-index: 2; transform: translateY(-7px); background: #162138; box-shadow: 0 18px 45px rgba(0,0,0,.28), inset 0 3px 0 var(--gold); }
.about-dark-statement { margin-top: 54px; padding: 34px 38px; border-left: 3px solid var(--gold); background: #111a2d; display: flex; justify-content: space-between; gap: 32px; align-items: baseline; transition: transform .35s ease, background-color .35s ease, box-shadow .35s ease; }
.about-dark-statement:hover { transform: translateY(-7px); background: #162138; box-shadow: 0 18px 45px rgba(0,0,0,.28), inset 0 3px 0 var(--gold); }
.about-dark-statement strong { color: var(--ivory); font-family: var(--serif); font-size: clamp(1.8rem, 3vw, 2.7rem); font-weight: 500; line-height: 1.1; }
.about-dark-statement span { max-width: 500px; color: rgba(247,242,232,.7); }

.about-activity-strip { display: flex; flex-wrap: wrap; gap: 1px; border: 1px solid var(--line-light); background: var(--line-light); }
.about-activity-strip span, .about-activity-strip strong { flex: 1 1 190px; padding: 22px 24px; background: var(--paper); transition: transform .35s ease, background-color .35s ease, box-shadow .35s ease; }
.about-activity-strip strong { background: var(--gold); color: var(--midnight); }
.about-activity-strip span:hover, .about-activity-strip strong:hover { z-index: 2; transform: translateY(-7px); background: var(--white); box-shadow: 0 18px 45px rgba(11,16,32,.12), inset 0 3px 0 var(--gold); }
.about-centred-copy { max-width: 820px; margin: 56px auto; text-align: center; color: var(--slate); font-family: var(--serif); font-size: 1.55rem; line-height: 1.35; }
.about-question-grid, .about-decision-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 18px; }
.about-question { min-height: 190px; padding: 28px; border: 1px solid var(--line-light); background: var(--paper); transition: transform .35s ease, border-color .35s ease, background-color .35s ease, box-shadow .35s ease; }
.about-question:hover { z-index: 2; transform: translateY(-7px); border-color: rgba(176,141,87,.72); background: var(--white); box-shadow: 0 18px 45px rgba(11,16,32,.12), inset 0 3px 0 var(--gold); }
.about-question span { color: var(--gold); font-family: var(--serif); }
.about-question h3 { margin-top: 46px; font-size: 1.55rem; line-height: 1.15; }
.about-gold-statement { margin-top: 54px; padding: 40px; background: var(--gold); color: var(--midnight); display: flex; gap: 30px; justify-content: space-between; align-items: center; font-family: var(--serif); font-size: clamp(1.65rem, 3vw, 2.6rem); line-height: 1.12; transition: transform .35s ease, background-color .35s ease, box-shadow .35s ease; }
.about-gold-statement:hover { transform: translateY(-7px); background: var(--gold-bright); box-shadow: 0 18px 45px rgba(11,16,32,.16); }
.about-gold-statement strong { font-weight: 600; }
.about-decision-grid .about-card { min-width: 0; }
.about-card-icon { width: 46px; height: 46px; margin-bottom: 52px; color: var(--gold); transition: transform .35s ease, color .35s ease; }
.about-card:hover .about-card-icon, .principle:hover .about-card-icon { transform: translateY(-4px) scale(1.04); color: var(--gold-bright); }
.about-principle-line { margin-top: 54px; padding: 34px 40px; background: var(--midnight); color: var(--ivory); font-family: var(--serif); font-size: clamp(1.8rem, 3vw, 2.8rem); text-align: center; line-height: 1.15; transition: transform .35s ease, background-color .35s ease, box-shadow .35s ease; }
.about-principle-line:hover { transform: translateY(-7px); background: var(--midnight-2); box-shadow: 0 18px 45px rgba(11,16,32,.2), inset 0 3px 0 var(--gold); }

.about-role-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 22px; }
.about-role-card { min-height: 390px; padding: 42px; border: 1px solid var(--line-dark); display: flex; flex-direction: column; transition: transform .35s ease, background-color .35s ease, border-color .35s ease, box-shadow .35s ease; }
.about-role-card:hover { transform: translateY(-7px); background: #162138; border-color: rgba(215,177,109,.65); box-shadow: 0 18px 45px rgba(0,0,0,.28), inset 0 3px 0 var(--gold); }
.about-role-card h3 { margin-top: auto; font-size: 2.25rem; line-height: 1.05; }
.about-role-card > p:last-child { color: rgba(247,242,232,.68); }
.about-role-card-gold { background: var(--gold); color: var(--midnight); border-color: var(--gold); }
.about-role-card-gold .kicker, .about-role-card-gold > p:last-child { color: var(--midnight); }
.about-role-card-gold:hover { background: var(--gold-bright); color: var(--midnight); }
.about-benefit-grid { display: flex; flex-wrap: wrap; gap: 1px; margin-top: 22px; border: 1px solid var(--line-dark); background: var(--line-dark); }
.about-benefit-grid span { flex: 1 1 230px; padding: 23px 24px; background: var(--midnight); transition: transform .35s ease, background-color .35s ease, box-shadow .35s ease; }
.about-benefit-grid span:hover { z-index: 2; transform: translateY(-7px); background: #162138; box-shadow: 0 18px 45px rgba(0,0,0,.28), inset 0 3px 0 var(--gold); }
.about-principle-grid .principle { min-height: 410px; display: flex; flex-direction: column; }
.about-principle-grid .principle h3 { font-size: 2rem; }
.about-principle-grid .principle p { margin-top: 18px; }

.about-outcome-grid { display: grid; grid-template-columns: repeat(2, 1fr); gap: 1px; border: 1px solid var(--line-light); background: var(--line-light); }
.about-outcome { min-height: 150px; padding: 30px; background: var(--paper); display: grid; grid-template-columns: 42px 1fr; gap: 20px; align-items: start; transition: transform .35s ease, background-color .35s ease, box-shadow .35s ease; }
.about-outcome:hover { z-index: 2; transform: translateY(-7px); background: var(--white); box-shadow: 0 18px 45px rgba(11,16,32,.12), inset 0 3px 0 var(--gold); }
.about-outcome span { color: var(--gold); font-family: var(--serif); }
.about-outcome p { margin: 0; font-family: var(--serif); font-size: 1.55rem; line-height: 1.18; }
.about-centred-statement { max-width: 920px; margin: 64px auto 0; text-align: center; }
.about-centred-statement strong, .about-centred-statement span { display: block; }
.about-centred-statement strong { color: var(--ink); font-family: var(--serif); font-size: clamp(2.2rem, 4vw, 3.7rem); font-weight: 500; line-height: 1.05; }
.about-centred-statement span { margin-top: 22px; color: var(--slate); }

.about-answer-grid { display: flex; flex-wrap: wrap; gap: 1px; border: 1px solid var(--line-dark); background: var(--line-dark); }
.about-answer-grid article { min-height: 180px; min-width: 250px; padding: 28px; background: var(--midnight); flex: 1 1 calc(33.333% - 1px); transition: transform .35s ease, background-color .35s ease, box-shadow .35s ease; }
.about-answer-grid article:hover { z-index: 2; transform: translateY(-7px); background: #162138; box-shadow: 0 18px 45px rgba(0,0,0,.28), inset 0 3px 0 var(--gold); }
.about-answer-grid span { color: var(--gold-bright); font-family: var(--serif); }
.about-answer-grid h3 { margin-top: 45px; font-size: 1.65rem; line-height: 1.15; }

.about-service-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 22px; }
.about-service-card { min-height: 620px; padding: 46px; border: 1px solid var(--line-light); background: var(--paper); display: flex; flex-direction: column; transition: transform .35s ease, border-color .35s ease, background-color .35s ease, box-shadow .35s ease; }
.about-service-card:hover { z-index: 2; transform: translateY(-7px); border-color: rgba(176,141,87,.72); background: var(--white); box-shadow: 0 18px 45px rgba(11,16,32,.12), inset 0 3px 0 var(--gold); }
.about-service-number { color: var(--gold); font-family: var(--serif); font-size: 1.35rem; }
.about-service-card .kicker { margin-top: 58px; }
.about-service-card h3 { margin: 16px 0 22px; font-size: clamp(2.2rem, 3.4vw, 3.3rem); line-height: 1.02; }
.about-service-card > p:not(.kicker), .about-service-card li { color: var(--slate); }
.about-service-card ul { margin: 16px 0 34px; padding-left: 20px; }
.about-service-card .button { width: fit-content; margin-top: auto; }
.about-service-card-dark { border-color: var(--midnight); background: var(--midnight); color: var(--ivory); }
.about-service-card-dark > p:not(.kicker) { color: rgba(247,242,232,.7); }
.about-service-card-dark:hover { background: #162138; border-color: rgba(215,177,109,.65); box-shadow: 0 18px 45px rgba(0,0,0,.28), inset 0 3px 0 var(--gold); }

.about-preparation-list { border-top: 1px solid var(--line-light); }
.about-preparation-list article { padding: 24px 0; border-bottom: 1px solid var(--line-light); display: grid; grid-template-columns: 44px 1fr; gap: 18px; transition: transform .35s ease, padding-left .35s ease, background-color .35s ease, box-shadow .35s ease; }
.about-preparation-list article:hover { transform: translateY(-7px); padding-left: 18px; background: rgba(176,141,87,.08); box-shadow: 0 18px 45px rgba(11,16,32,.1), inset 0 3px 0 var(--gold); }
.about-preparation-list span { color: var(--gold); font-family: var(--serif); }
.about-preparation-list p { margin: 0; font-family: var(--serif); font-size: 1.45rem; line-height: 1.2; }

.about-stakes-grid { display: flex; flex-wrap: wrap; gap: 1px; border: 1px solid var(--line-light); background: var(--line-light); }
.about-stakes-grid span { min-width: 240px; min-height: 120px; padding: 26px; background: var(--paper); flex: 1 1 calc(25% - 1px); display: flex; align-items: flex-end; font-family: var(--serif); font-size: 1.35rem; line-height: 1.18; transition: transform .35s ease, background-color .35s ease, box-shadow .35s ease; }
.about-stakes-grid span:hover { z-index: 2; transform: translateY(-7px); background: var(--white); box-shadow: 0 18px 45px rgba(11,16,32,.12), inset 0 3px 0 var(--gold); }
.about-mission { margin-top: 54px; padding: 50px; background: var(--midnight); color: var(--ivory); display: grid; grid-template-columns: 1.2fr .8fr; gap: 70px; align-items: center; transition: transform .35s ease, background-color .35s ease, box-shadow .35s ease; }
.about-mission:hover { transform: translateY(-7px); background: var(--midnight-2); box-shadow: 0 18px 45px rgba(11,16,32,.2), inset 0 3px 0 var(--gold); }
.about-mission > p { margin: 0; font-family: var(--serif); font-size: clamp(1.8rem, 3vw, 2.7rem); line-height: 1.13; }
.about-mission > div { display: grid; grid-template-columns: 1fr 1fr; gap: 1px; background: var(--line-dark); }
.about-mission span { padding: 14px; background: var(--midnight); color: var(--gold-bright); font-size: .88rem; text-transform: uppercase; letter-spacing: .1em; }

.about-finale { overflow: hidden; background: var(--midnight); color: var(--ivory); }
.about-finale-title { text-align: center; }
.about-finale-title h2 { font-size: clamp(4.6rem, 9vw, 8.5rem); }
.about-finale-title > p:last-child { margin: 10px 0 0; color: var(--gold-bright); font-family: var(--serif); font-size: 2.2rem; }
.about-finale-copy { max-width: 850px; margin: 48px auto 0; color: rgba(247,242,232,.72); text-align: center; font-size: 1.1rem; }
.about-finale-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 1px; margin: 58px 0 76px; border: 1px solid var(--line-dark); background: var(--line-dark); }
.about-finale-grid article { min-height: 210px; padding: 28px; background: var(--midnight); transition: transform .35s ease, background-color .35s ease, box-shadow .35s ease; }
.about-finale-grid article:hover { z-index: 2; transform: translateY(-7px); background: #162138; box-shadow: 0 18px 45px rgba(0,0,0,.28), inset 0 3px 0 var(--gold); }
.about-finale-grid strong, .about-finale-grid span { display: block; }
.about-finale-grid strong { color: var(--gold-bright); font-family: var(--serif); font-size: 2rem; font-weight: 500; }
.about-finale-grid span { margin-top: 50px; color: rgba(247,242,232,.68); }
.about-finale .cta-panel .kicker { color: var(--midnight); }

.model-number,
.process article::before,
.stage > span,
.rule-list article > span,
.panel-card-number,
.workflow-step::before,
.profile-item > span,
.about-card-number,
.about-question > span,
.about-outcome > span,
.about-answer-grid article > span,
.about-service-number,
.about-preparation-list article > span { font-size: 1.45rem; line-height: 1; }

.model-card,
.process article,
.principle,
.stage,
.audience-card,
.rule-list article,
.panel-card,
.payment-step,
.payment-promise,
.workflow-step,
.profile-item,
.relationship-statement p {
  transition: transform .35s cubic-bezier(.22,.7,.2,1), border-color .35s ease, background-color .35s ease, box-shadow .35s ease;
}
.contact-card {
  transition: transform .35s cubic-bezier(.22,.7,.2,1), background-color .35s ease, box-shadow .35s ease;
}
.model-card:hover,
.principle:hover,
.stage:hover,
.audience-card:hover,
.panel-card:hover,
.payment-step:hover {
  position: relative;
  z-index: 2;
  transform: translateY(-7px);
  background-color: var(--white);
  border-color: rgba(176,141,87,.72);
  box-shadow: 0 18px 45px rgba(11,16,32,.12), inset 0 3px 0 var(--gold);
}
.process article:hover,
.section-dark .rule-list article:hover,
.payment-promise:hover,
.workflow-step:hover,
.section-dark .profile-item:hover,
.relationship-statement p:hover {
  position: relative;
  z-index: 2;
  transform: translateY(-7px);
  background-color: #162138;
  box-shadow: 0 18px 45px rgba(0,0,0,.28), inset 0 3px 0 var(--gold);
}
.contact-card:hover {
  transform: translateY(-7px);
  background-color: #162138;
  box-shadow: 0 18px 45px rgba(0,0,0,.28), inset 0 3px 0 var(--gold);
}
.rule-list article:hover,
.profile-item:hover {
  position: relative;
  z-index: 2;
  transform: translateY(-7px);
  background-color: rgba(176,141,87,.08);
  box-shadow: 0 18px 45px rgba(11,16,32,.10), inset 0 3px 0 var(--gold);
}
.profile-item:hover { padding-left: 0; }

.contact-layout { display: grid; grid-template-columns: .72fr 1.28fr; gap: 80px; }
.contact-card { background: var(--midnight); color: var(--ivory); padding: 42px; position: sticky; top: 24px; }
.contact-card h2 { font-size: 2.6rem; }
.contact-card p { color: rgba(247,242,232,.68); }
.detail { padding: 18px 0; border-top: 1px solid var(--line-dark); }
.detail small { display: block; color: var(--gold-bright); text-transform: uppercase; letter-spacing: .14em; }
.form-shell { border-top: 1px solid var(--line-light); }
.form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 22px; }
.field { margin-top: 24px; }
.field label, .field legend { display: block; margin-bottom: 8px; font-size: .78rem; font-weight: 700; text-transform: uppercase; letter-spacing: .09em; }
.field input, .field textarea, .field select {
  width: 100%; border: 1px solid rgba(11,16,32,.28); background: transparent; color: var(--ink); padding: 14px 15px; border-radius: 0;
}
.field input:focus, .field textarea:focus, .field select:focus { outline: 2px solid var(--gold); outline-offset: 2px; }
.field textarea { min-height: 145px; resize: vertical; }
.form-note { margin: 24px 0; color: var(--slate); font-size: .87rem; }

.site-footer { background: #050c1d; color: var(--ivory); padding: 76px 0 28px; }
.footer-inner { width: var(--page); margin: 0 auto; }
.footer-top { display: grid; grid-template-columns: 1.2fr .8fr .8fr; gap: 70px; padding-bottom: 65px; }
.footer-brand p { max-width: 420px; color: rgba(247,242,232,.56); }
.footer-nav h3 { font-family: var(--sans); color: var(--gold-bright); font-size: .7rem; text-transform: uppercase; letter-spacing: .18em; margin-bottom: 22px; }
.footer-nav a, .footer-nav button { display: block; width: fit-content; padding: 5px 0; border: 0; background: none; color: rgba(247,242,232,.72); text-decoration: none; }
.footer-nav a:hover, .footer-nav button:hover { color: var(--gold-bright); }
.footer-bottom { border-top: 1px solid var(--line-dark); padding-top: 24px; display: flex; justify-content: space-between; gap: 30px; color: rgba(247,242,232,.45); font-size: .75rem; }

.modal-backdrop { display: none; position: fixed; inset: 0; z-index: 100; background: rgba(4,8,16,.83); padding: 24px; align-items: center; justify-content: center; }
.modal-backdrop.open { display: flex; }
.modal { width: min(590px, 100%); background: var(--ivory); padding: 42px; box-shadow: 0 30px 90px rgba(0,0,0,.4); }
.modal h2 { font-size: 2.7rem; }
.modal p { color: var(--slate); }
.modal-close { float: right; border: 0; background: transparent; font-size: 1.5rem; color: var(--ink); }

.reveal { opacity: 0; transform: translateY(16px); transition: opacity .6s ease, transform .6s ease; }
.reveal.visible { opacity: 1; transform: none; }

@media (max-width: 1040px) {
  .menu-toggle { display: block; }
  .nav {
    display: none; position: fixed; inset: 0; background: var(--midnight); padding: 110px 28px 40px;
    flex-direction: column; align-items: flex-start; justify-content: flex-start; gap: 13px; margin-left: 0;
  }
  .nav.open { display: flex; }
  .nav a, .nav button { font-size: 1rem; }
  .hero-inner { grid-template-columns: 1fr; gap: 45px; min-height: 760px; }
  .hero-aside { max-width: 620px; }
  .section-head, .intro-grid { grid-template-columns: 1fr; gap: 24px; }
  .process { grid-template-columns: repeat(2, 1fr); }
  .process article:nth-child(5) { grid-column: 1 / -1; }
  .split, .contact-layout { grid-template-columns: 1fr; gap: 55px; }
  .application-panel { grid-template-columns: 1fr; gap: 42px; }
  .panel-card { flex-basis: calc(50% - 10px); }
  .contact-card { position: static; }
  .about-origin { grid-template-columns: 1fr; gap: 42px; }
  .about-corner-grid { grid-template-columns: 1fr; gap: 42px; }
  .about-question-grid, .about-decision-grid { grid-template-columns: repeat(2, 1fr); }
  .about-role-grid, .about-service-grid, .about-mission { grid-template-columns: 1fr; }
  .about-role-card { min-height: 340px; }
  .about-service-card { min-height: 560px; }
  .about-finale-grid { grid-template-columns: repeat(2, 1fr); }
}

@media (max-width: 720px) {
  :root { --page: min(100% - 32px, 1180px); }
  .header-inner { height: 76px; }
  .logo-tag { display: none; }
  .logo-art-frame { width: 142px; height: 58px; }
  .logo-art { width: 210px; transform: translate(-37px, -12px); }
  .wordmark { font-size: 2.25rem; }
  .wordmark::after { width: 24px; height: 4px; right: 13px; top: 19px; }
  .hero-inner { min-height: auto; padding: 155px 0 76px; }
  h1 { font-size: clamp(3.25rem, 16vw, 5rem); }
  .hero-copy { font-size: 1rem; }
  .boundary-inner { align-items: flex-start; flex-direction: column; gap: 6px; }
  .section { padding: 76px 0; }
  .section-head { margin-bottom: 42px; }
  .model-grid, .stage-grid, .audience-grid, .principle-grid { grid-template-columns: 1fr; }
  .civil-journey-grid { grid-template-columns: 1fr; }
  .civil-journey-card { min-height: auto; padding: 24px; }
  .civil-journey-visual { height: 130px; }
  .payment-timeline, .profile-grid, .workflow-grid { grid-template-columns: 1fr; }
  .panel-card { flex-basis: 100%; }
  .relationship-statement { grid-template-columns: 1fr; }
  .payment-step { min-height: 270px; padding: 32px 0; }
  .payment-step + .payment-step { border-left: 0; border-top: 1px solid var(--line-light); }
  .payment-step h3 { margin-top: 0; }
  .application-panel { padding: 44px 28px; }
  .model-card { min-height: 390px; padding: 36px 28px; }
  .model-card + .model-card { border-left: 0; border-top: 1px solid var(--line-light); }
  .model-card h3 { margin-top: 46px; }
  .process { grid-template-columns: 1fr; }
  .process article, .process article:nth-child(5) { grid-column: auto; min-height: 205px; border-right: 1px solid var(--line-dark); border-bottom: 1px solid var(--line-dark); }
  .process h3 { margin-top: 38px; }
  .cta-panel { padding: 40px 28px; grid-template-columns: 1fr; gap: 28px; }
  .cta-panel::after { font-size: 9rem; }
  .page-hero-inner { padding: 160px 0 76px; }
  .page-hero h1 { font-size: clamp(3.15rem, 15vw, 5rem); }
  .stage { min-height: 320px; }
  .form-row { grid-template-columns: 1fr; gap: 0; }
  .footer-top { grid-template-columns: 1fr; gap: 36px; }
  .footer-bottom { flex-direction: column; }
  .modal { padding: 30px 24px; }
  .about-hero .page-hero-inner { padding-bottom: 92px; }
  .about-question-grid, .about-decision-grid, .about-outcome-grid { grid-template-columns: 1fr; }
  .about-card { min-width: 100%; }
  .about-corner-editorial { grid-template-columns: 1fr; gap: 34px; }
  .about-action-list span, .about-answer-grid article, .about-stakes-grid span { min-width: 100%; }
  .about-dark-statement, .about-gold-statement { flex-direction: column; align-items: flex-start; }
  .about-role-card, .about-service-card { min-height: auto; padding: 34px 28px; }
  .about-service-card .kicker { margin-top: 42px; }
  .about-service-card .button { width: 100%; }
  .about-mission { padding: 36px 28px; gap: 38px; }
  .about-mission > div { grid-template-columns: 1fr; }
  .about-finale-grid { grid-template-columns: 1fr; }
  .about-finale-grid article { min-height: 170px; }
  .about-finale-grid span { margin-top: 32px; }
}

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