/* ==========================================================================
   HEXALIS — site.css
   Typeface: Times New Roman throughout. One family, worked hard — size,
   weight, tracking, case and italic do all the differentiating. No webfont
   request, so the page paints immediately.

   00 reset · 01 tokens · 02 type · 03 layout · 04 chrome · 05 hero
   06 hexwheel · 07 pillars · 08 scenario · 09 editorial · 10 inner pages
   11 forms · 12 motion & transitions · 13 responsive
   ========================================================================== */

/* -- 00 reset -------------------------------------------------------------- */
*, *::before, *::after { box-sizing: border-box; }
html { -webkit-text-size-adjust: 100%; }
body, h1, h2, h3, h4, p, figure, blockquote, dl, dd, ul, ol { margin: 0; padding: 0; }
ul, ol { list-style: none; }
img, svg { display: block; max-width: 100%; }
button, input, textarea, select { font: inherit; color: inherit; }
a { color: inherit; text-decoration: none; }
table { border-collapse: collapse; width: 100%; }

/* -- 01 tokens ------------------------------------------------------------- */
:root {
  --ink:        #03080a;
  --ink-2:      #06100f;
  --surface:    #0a1618;
  --surface-2:  #0d1f22;
  --paper:      #f3f0e9;
  --paper-2:    #eae6dd;
  --paper-ink:  #0a1315;

  --cyan:       #4fe4f2;
  --cyan-soft:  #8df1fa;
  --cyan-deep:  #12626d;
  --teal:       #0d3b42;
  --sand:       #e8c294;

  /* serif on near-black needs a touch more light than a sans would */
  --text:       #e6f0f1;
  --text-dim:   #adc1c3;
  --text-mute:  #7d9295;

  --line:       rgba(126, 200, 208, .15);
  --line-soft:  rgba(126, 200, 208, .075);
  --line-hard:  rgba(126, 200, 208, .32);

  --serif: "Times New Roman", Times, "Liberation Serif", "Nimbus Roman", serif;
  --display: var(--serif);
  --body: var(--serif);
  --mono: var(--serif);

  --shell: 1280px;
  --gut: clamp(20px, 5vw, 64px);
  --rhythm: clamp(64px, 9vh, 120px);
  --nav-h: 76px;

  --ease: cubic-bezier(.22, 1, .36, 1);
  --ease-io: cubic-bezier(.65, .05, .36, 1);
}

/* -- 02 type --------------------------------------------------------------- */
body {
  background: var(--ink);
  color: var(--text);
  font-family: var(--body);
  font-size: 18px;
  line-height: 1.66;
  font-weight: 400;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  font-synthesis-weight: none;
  overflow-x: hidden;
}

h1, h2, h3, h4, .display {
  font-family: var(--display);
  font-weight: 400;
  line-height: 1.05;
  letter-spacing: -.012em;
}

.t-hero { font-size: clamp(3.2rem, 9.4vw, 8rem); line-height: .96; letter-spacing: -.028em; }
.t-xl   { font-size: clamp(2.4rem, 5.6vw, 4.6rem); line-height: 1.02; letter-spacing: -.022em; }
.t-lg   { font-size: clamp(1.9rem, 3.6vw, 3rem); line-height: 1.08; letter-spacing: -.018em; }
.t-md   { font-size: clamp(1.35rem, 2.1vw, 1.8rem); line-height: 1.22; }
.t-sm   { font-size: 1.16rem; line-height: 1.35; }

.lede {
  font-size: clamp(1.15rem, 1.65vw, 1.42rem);
  line-height: 1.6; color: var(--text-dim);
}
.body-dim { color: var(--text-dim); }
.body-mute { color: var(--text-mute); }
p + p { margin-top: 1em; }

/* Small tracked caps carry every label on the site. In one-typeface systems
   this is the workhorse — it has to be generous or Times turns to mush. */
.label {
  font-family: var(--serif);
  font-size: .74rem;
  font-weight: 400;
  letter-spacing: .3em;
  text-transform: uppercase;
  color: var(--cyan);
  line-height: 1.4;
}
.label--mute { color: var(--text-mute); }
.label--sand { color: var(--sand); }

.label-rule { display: flex; align-items: center; gap: 18px; margin-bottom: clamp(24px, 3.6vw, 40px); }
.label-rule::after { content: ""; flex: 1; height: 1px; background: var(--line); }
.label-rule .num { font-size: .74rem; letter-spacing: .22em; color: var(--text-mute); text-transform: uppercase; }

.wordmark { font-family: var(--serif); font-weight: 400; letter-spacing: .36em; text-transform: uppercase; }

.it { font-style: italic; letter-spacing: -.005em; }
strong, b { font-weight: 700; color: #f2fafb; }

::selection { background: var(--cyan); color: var(--ink); }

/* fine grain over the whole page — stops big flat blacks from banding and
   gives the surface something closer to printed paper */
body::after {
  content: "";
  position: fixed; inset: 0; z-index: 9999; pointer-events: none; opacity: .05;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='180' height='180'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='.85' numOctaves='4' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='180' height='180' filter='url(%23n)'/%3E%3C/svg%3E");
  background-size: 180px 180px;
}

/* -- 03 layout ------------------------------------------------------------- */
.shell { width: 100%; max-width: var(--shell); margin-inline: auto; padding-inline: var(--gut); }
.shell--wide { max-width: 1520px; }
section { position: relative; }
.pad { padding-block: var(--rhythm); }
.pad-t { padding-top: var(--rhythm); }
.pad-b { padding-bottom: var(--rhythm); }

.rule { height: 1px; background: var(--line); border: 0; }
.grid { display: grid; gap: clamp(24px, 3.4vw, 52px); }
.g-2 { grid-template-columns: repeat(2, 1fr); }
.g-3 { grid-template-columns: repeat(3, 1fr); }
.g-12 { grid-template-columns: repeat(12, 1fr); }
.span-4 { grid-column: span 4; } .span-5 { grid-column: span 5; }
.span-6 { grid-column: span 6; } .span-7 { grid-column: span 7; }
.span-8 { grid-column: span 8; }
.stack-sm > * + * { margin-top: 14px; }

.gridlines {
  position: absolute; inset: 0; pointer-events: none; z-index: 0;
  background-image: linear-gradient(90deg, var(--line-soft) 1px, transparent 1px);
  background-size: calc(100% / 6) 100%;
  mask-image: linear-gradient(180deg, transparent, #000 12%, #000 88%, transparent);
  -webkit-mask-image: linear-gradient(180deg, transparent, #000 12%, #000 88%, transparent);
}
.above { position: relative; z-index: 1; }

.paper {
  background: var(--paper);
  color: var(--paper-ink);
  --text: var(--paper-ink);
  --text-dim: #414d4f;
  --text-mute: #6b7879;
  --line: rgba(10, 19, 21, .14);
  --line-soft: rgba(10, 19, 21, .07);
  --line-hard: rgba(10, 19, 21, .28);
  --cyan: #0b6873;
  --surface: #eae6dd;
}
.paper ::selection { background: #0b6873; color: var(--paper); }

/* -- 04 chrome ------------------------------------------------------------- */
.skip { position: absolute; left: -9999px; top: 0; z-index: 200; background: var(--cyan); color: var(--ink); padding: 10px 18px; font-size: .8rem; letter-spacing: .1em; text-transform: uppercase; }
.skip:focus { left: 12px; top: 12px; }

.nav {
  position: fixed; inset: 0 0 auto 0; z-index: 100; height: var(--nav-h);
  display: flex; align-items: center;
  transition: background .45s var(--ease), border-color .45s var(--ease), transform .5s var(--ease);
  border-bottom: 1px solid transparent;
}
.nav.is-stuck {
  background: rgba(3, 8, 10, .8);
  backdrop-filter: saturate(150%) blur(16px);
  -webkit-backdrop-filter: saturate(150%) blur(16px);
  border-bottom-color: var(--line);
}
.nav.is-hidden { transform: translateY(-102%); }
.nav__in { display: flex; align-items: center; justify-content: space-between; gap: 22px; width: 100%; }
.brand { display: flex; align-items: center; gap: 12px; flex: none; }
.brand__mark { width: 27px; height: 30px; color: var(--cyan); flex: none; transition: transform .7s var(--ease); }
.brand:hover .brand__mark { transform: rotate(60deg); }
.brand__type { font-size: 1.12rem; letter-spacing: .34em; font-family: var(--serif); color: #fff; padding-left: 2px; }

.nav__links { display: flex; align-items: center; gap: 0; }
.nav__link {
  position: relative; padding: 9px 14px; font-size: .98rem; color: var(--text-dim);
  transition: color .3s var(--ease);
}
.nav__link:hover, .nav__link[aria-expanded="true"], .nav__link.is-current { color: #fff; }
.nav__link::after {
  content: ""; position: absolute; left: 14px; right: 14px; bottom: 4px; height: 1px;
  background: var(--cyan); transform: scaleX(0); transform-origin: left; transition: transform .42s var(--ease);
}
.nav__link:hover::after, .nav__link.is-current::after { transform: scaleX(1); }
.nav__link.is-current::after { background: var(--sand); }

.nav__cta {
  font-size: .76rem; letter-spacing: .2em; text-transform: uppercase;
  border: 1px solid var(--line-hard); padding: 12px 20px; color: var(--text);
  transition: background .35s var(--ease), color .35s var(--ease), border-color .35s var(--ease);
}
.nav__cta:hover { background: var(--cyan); border-color: var(--cyan); color: var(--ink); }

.mega {
  position: fixed; left: 0; right: 0; top: var(--nav-h); z-index: 99;
  background: rgba(6, 16, 15, .97);
  backdrop-filter: blur(18px); -webkit-backdrop-filter: blur(18px);
  border-block: 1px solid var(--line);
  padding: 32px 0 34px;
  opacity: 0; visibility: hidden; transform: translateY(-12px);
  transition: opacity .36s var(--ease), transform .36s var(--ease), visibility .36s;
}
.mega.is-open { opacity: 1; visibility: visible; transform: none; }
.mega__grid { display: grid; grid-template-columns: repeat(6, 1fr); gap: 1px; background: var(--line); border: 1px solid var(--line); }
.mega__item { background: var(--ink-2); padding: 20px 18px 22px; transition: background .35s var(--ease); }
.mega__item:hover { background: var(--surface-2); }
.mega__item .n { font-size: .72rem; color: var(--text-mute); letter-spacing: .22em; }
.mega__item h4 { font-size: 1.22rem; margin: 8px 0 7px; }
.mega__item:hover h4 { color: var(--cyan); }
.mega__item p { font-size: .88rem; line-height: 1.45; color: var(--text-mute); font-style: italic; }
.mega__foot { display: flex; justify-content: space-between; align-items: center; gap: 20px; margin-top: 18px; flex-wrap: wrap; }

.burger { display: none; width: 44px; height: 44px; background: none; border: 0; cursor: pointer; padding: 0; }
.burger span { display: block; width: 22px; height: 1px; background: var(--text); margin: 5px auto; transition: transform .34s var(--ease), opacity .2s; }
.burger.is-open span:nth-child(1) { transform: translateY(6px) rotate(45deg); }
.burger.is-open span:nth-child(2) { opacity: 0; }
.burger.is-open span:nth-child(3) { transform: translateY(-6px) rotate(-45deg); }

.drawer {
  position: fixed; inset: var(--nav-h) 0 0 0; z-index: 98; background: var(--ink);
  padding: 24px var(--gut) 40px; overflow-y: auto;
  transform: translateY(-102%); transition: transform .54s var(--ease); visibility: hidden;
}
.drawer.is-open { transform: none; visibility: visible; }
.drawer a { display: block; padding: 14px 0; border-bottom: 1px solid var(--line-soft); font-size: 1.62rem; }
.drawer a .n { font-size: .74rem; color: var(--text-mute); margin-right: 14px; letter-spacing: .2em; }
.drawer.is-open a { animation: drawerIn .55s var(--ease) both; }
@keyframes drawerIn { from { opacity: 0; transform: translateY(14px); } to { opacity: 1; transform: none; } }

.progress { position: fixed; top: 0; left: 0; height: 2px; background: var(--cyan); z-index: 101; width: 0; }

.foot { background: var(--ink-2); border-top: 1px solid var(--line); padding-top: clamp(48px, 7vw, 84px); }
.foot__top { display: grid; grid-template-columns: 1.5fr 1fr 1fr 1fr; gap: 40px; padding-bottom: 48px; }
.foot h5 { font-size: .72rem; letter-spacing: .26em; text-transform: uppercase; color: var(--text-mute); margin-bottom: 14px; font-weight: 400; }
.foot li a { display: inline-block; padding: 4px 0; font-size: 1rem; color: var(--text-dim); transition: color .25s; }
.foot li a:hover { color: var(--cyan); }
.foot__bar { border-top: 1px solid var(--line-soft); padding: 20px 0 28px; display: flex; justify-content: space-between; gap: 18px; flex-wrap: wrap; font-size: .8rem; letter-spacing: .1em; color: var(--text-mute); text-transform: uppercase; }
.foot__mark { display: flex; align-items: center; gap: 12px; margin-bottom: 16px; }
.foot__mark svg { width: 30px; color: var(--cyan); }

/* -- 05 hero --------------------------------------------------------------- */
.hero { position: relative; min-height: 100svh; display: flex; align-items: flex-end; padding-bottom: clamp(40px, 7vh, 80px); padding-top: calc(var(--nav-h) + 40px); overflow: hidden; }
.hero__canvas { position: absolute; inset: 0; width: 100%; height: 100%; z-index: 0; }
.hero::after {
  content: ""; position: absolute; inset: 0; z-index: 1; pointer-events: none;
  background:
    radial-gradient(118% 78% at 50% 108%, rgba(18, 98, 109, .34), transparent 62%),
    linear-gradient(180deg, rgba(3, 8, 10, .8) 0%, transparent 32%, transparent 60%, rgba(3, 8, 10, .9) 100%);
}
.hero__in { position: relative; z-index: 2; width: 100%; }
.hero__eyebrow { display: flex; align-items: center; gap: 16px; margin-bottom: clamp(20px, 3.6vh, 34px); }
.hero__eyebrow::before { content: ""; width: clamp(30px, 6vw, 82px); height: 1px; background: var(--cyan); }
.hero h1 { max-width: 14ch; }
.hero h1 .ln { display: block; overflow: hidden; }
.hero h1 .ln > span { display: block; }
.hero h1 .accent { color: var(--cyan); font-style: italic; }
.hero__lede { max-width: 52ch; margin-top: clamp(20px, 3vh, 30px); }
.hero__foot { display: flex; align-items: flex-end; justify-content: space-between; gap: 40px; margin-top: clamp(30px, 5vh, 56px); flex-wrap: wrap; }
.hero__stats { display: flex; gap: clamp(26px, 4.4vw, 64px); flex-wrap: wrap; }
.stat .n { font-size: clamp(1.9rem, 3.2vw, 2.7rem); display: block; line-height: 1; letter-spacing: -.02em; }
.stat .k { font-size: .72rem; letter-spacing: .24em; text-transform: uppercase; color: var(--text-mute); margin-top: 8px; display: block; }

.scrollcue { display: flex; align-items: center; gap: 12px; font-size: .72rem; letter-spacing: .26em; text-transform: uppercase; color: var(--text-mute); }
.scrollcue i { display: block; width: 1px; height: 36px; background: linear-gradient(180deg, var(--cyan), transparent); animation: cue 2.4s var(--ease-io) infinite; }
@keyframes cue { 0%,100% { transform: scaleY(.3); transform-origin: top; opacity: .4; } 50% { transform: scaleY(1); opacity: 1; } }

.btn {
  display: inline-flex; align-items: center; gap: 12px; position: relative; overflow: hidden;
  font-size: .78rem; letter-spacing: .2em; text-transform: uppercase;
  padding: 16px 28px; border: 1px solid var(--cyan); color: var(--ink); background: var(--cyan);
  transition: color .35s var(--ease), border-color .35s var(--ease);
}
.btn span { position: relative; z-index: 1; }
.btn::before { content: ""; position: absolute; inset: 0; background: var(--ink); transform: scaleY(0); transform-origin: bottom; transition: transform .44s var(--ease); }
.btn:hover::before { transform: scaleY(1); }
.btn:hover { color: var(--cyan); }
.btn--ghost { background: transparent; color: var(--text); border-color: var(--line-hard); }
.btn--ghost::before { background: var(--cyan); }
.btn--ghost:hover { color: var(--ink); border-color: var(--cyan); }
.btn .arw { position: relative; z-index: 1; transition: transform .35s var(--ease); }
.btn:hover .arw { transform: translateX(5px); }

.tlink {
  display: inline-flex; align-items: center; gap: 10px; font-size: .78rem;
  letter-spacing: .2em; text-transform: uppercase; color: var(--cyan); padding-bottom: 5px;
  background-image: linear-gradient(var(--cyan), var(--cyan));
  background-size: 0% 1px; background-position: 0 100%; background-repeat: no-repeat;
  transition: background-size .45s var(--ease);
}
.tlink:hover { background-size: 100% 1px; }
.tlink .arw { transition: transform .35s var(--ease); }
.tlink:hover .arw { transform: translateX(5px); }

/* -- 06 hexwheel ----------------------------------------------------------- */
.wheel-wrap { display: grid; grid-template-columns: minmax(0, 1.02fr) minmax(0, 1fr); gap: clamp(32px, 5vw, 76px); align-items: center; }
.wheel { position: relative; aspect-ratio: 1; max-width: 600px; width: 100%; margin-inline: auto; }
.wheel svg { width: 100%; height: 100%; overflow: visible; }
.wheel__seg { cursor: pointer; }
.wheel__seg .fill { fill: rgba(13, 59, 66, .2); stroke: var(--line); stroke-width: 1; transition: fill .5s var(--ease), stroke .5s var(--ease); }
.wheel__seg .ico { fill: none; stroke: var(--text-dim); stroke-width: 1.5; stroke-linecap: round; stroke-linejoin: round; transition: stroke .45s var(--ease), transform .6s var(--ease); transform-box: fill-box; transform-origin: center; }
.wheel__seg .txt { font-family: var(--serif); font-size: 13px; letter-spacing: .24em; text-transform: uppercase; fill: var(--text-dim); text-anchor: middle; transition: fill .45s var(--ease); }
.wheel__seg .num { font-family: var(--serif); font-size: 11px; letter-spacing: .18em; fill: var(--text-mute); text-anchor: middle; transition: fill .45s var(--ease); }
.wheel__seg:hover .fill { fill: rgba(18, 98, 109, .32); stroke: var(--line-hard); }
.wheel__seg.is-active .fill { fill: rgba(18, 98, 109, .52); stroke: var(--cyan); }
.wheel__seg.is-active .ico { stroke: var(--cyan); }
.wheel__seg.is-active .txt { fill: #fff; }
.wheel__seg.is-active .num { fill: var(--cyan); }
.wheel__hub circle { fill: var(--ink); stroke: var(--line); }
.wheel__hub text { text-anchor: middle; font-family: var(--serif); }
.wheel__hub .h1 { font-size: 17px; letter-spacing: .34em; fill: #fff; }
.wheel__hub .h2 { font-size: 9.5px; letter-spacing: .22em; fill: var(--text-mute); text-transform: uppercase; }
.wheel__ring { fill: none; stroke: var(--line-soft); }
.wheel__spin { transform-origin: 50% 50%; animation: spin 72s linear infinite; }
@keyframes spin { to { transform: rotate(360deg); } }

.wpanel { min-height: 320px; position: relative; }
.wpanel__body { position: absolute; inset: 0; opacity: 0; visibility: hidden; transform: translateY(16px); transition: opacity .45s var(--ease), transform .6s var(--ease), visibility .45s; }
.wpanel__body.is-active { opacity: 1; visibility: visible; transform: none; position: relative; }
.wpanel__num { font-size: .74rem; letter-spacing: .3em; color: var(--sand); text-transform: uppercase; }
.wpanel h3 { font-size: clamp(2.2rem, 4vw, 3.4rem); margin: 12px 0 6px; letter-spacing: -.02em; }
.wpanel .tag { font-size: 1.16rem; color: var(--cyan); font-style: italic; }
.wpanel p { margin-top: 18px; color: var(--text-dim); max-width: 46ch; }
.chips { display: flex; flex-wrap: wrap; gap: 7px; margin-top: 22px; }
.chip { font-size: .72rem; letter-spacing: .14em; text-transform: uppercase; border: 1px solid var(--line); padding: 7px 12px; color: var(--text-mute); }
.wpanel .tlink { margin-top: 26px; }

/* -- 07 pillar index ------------------------------------------------------- */
.plist { border-top: 1px solid var(--line); }
.prow {
  display: grid; grid-template-columns: 92px minmax(0, 1.05fr) minmax(0, 1.35fr) 56px;
  gap: clamp(14px, 2.6vw, 40px); align-items: center;
  padding: clamp(22px, 3vw, 36px) 0; border-bottom: 1px solid var(--line);
  position: relative; transition: padding-left .55s var(--ease);
}
.prow::before {
  content: ""; position: absolute; left: 0; top: 0; bottom: 0; width: 0;
  background: linear-gradient(90deg, rgba(18, 98, 109, .28), transparent 76%);
  transition: width .65s var(--ease); z-index: 0;
}
.prow:hover::before { width: 100%; }
.prow:hover { padding-left: 24px; }
.prow > * { position: relative; z-index: 1; }
.prow__n { font-size: .92rem; letter-spacing: .22em; color: var(--text-mute); transition: color .45s; }
.prow:hover .prow__n { color: var(--sand); }
.prow__name { display: flex; align-items: baseline; gap: 16px; flex-wrap: wrap; }
.prow__name h3 { font-size: clamp(1.7rem, 3vw, 2.5rem); transition: color .45s var(--ease); }
.prow:hover .prow__name h3 { color: var(--cyan); }
.prow__name .kicker { font-size: .72rem; letter-spacing: .24em; text-transform: uppercase; color: var(--text-mute); }
.prow__desc { color: var(--text-dim); font-size: 1rem; line-height: 1.52; }
.prow__go { justify-self: end; width: 42px; height: 42px; border: 1px solid var(--line); display: grid; place-items: center; color: var(--text-mute); transition: all .45s var(--ease); }
.prow:hover .prow__go { border-color: var(--cyan); color: var(--cyan); transform: rotate(-45deg); }

/* compact six-across strip used on the home page */
.strip { display: grid; grid-template-columns: repeat(6, 1fr); gap: 1px; background: var(--line); border: 1px solid var(--line); }
.strip a { background: var(--ink); padding: clamp(20px, 2.2vw, 30px) clamp(14px, 1.6vw, 22px) clamp(22px, 2.4vw, 32px); position: relative; overflow: hidden; transition: background .45s var(--ease); }
.strip a::after { content: ""; position: absolute; left: 0; right: 0; bottom: 0; height: 2px; background: var(--cyan); transform: scaleX(0); transform-origin: left; transition: transform .55s var(--ease); }
.strip a:hover { background: var(--surface); }
.strip a:hover::after { transform: scaleX(1); }
.strip .n { font-size: .72rem; letter-spacing: .22em; color: var(--text-mute); }
.strip .ic { width: 30px; height: 30px; color: var(--text-mute); margin: 18px 0 14px; transition: color .45s var(--ease), transform .6s var(--ease); }
.strip .ic svg { width: 100%; height: 100%; fill: none; stroke: currentColor; stroke-width: 1.4; stroke-linecap: round; stroke-linejoin: round; }
.strip a:hover .ic { color: var(--cyan); transform: translateY(-3px); }
.strip h3 { font-size: 1.28rem; margin-bottom: 6px; }
.strip a:hover h3 { color: var(--cyan); }
.strip p { font-size: .84rem; line-height: 1.45; color: var(--text-mute); font-style: italic; }

/* big navigational cards */
.doors { display: grid; grid-template-columns: repeat(3, 1fr); gap: 1px; background: var(--line); border: 1px solid var(--line); }
.door { background: var(--ink); padding: clamp(26px, 3vw, 44px); display: flex; flex-direction: column; justify-content: space-between; min-height: clamp(220px, 24vw, 300px); position: relative; overflow: hidden; transition: background .5s var(--ease); }
.door::before { content: ""; position: absolute; inset: auto -20% -60% -20%; height: 100%; background: radial-gradient(50% 60% at 50% 100%, rgba(18, 98, 109, .38), transparent 70%); opacity: 0; transition: opacity .6s var(--ease); }
.door:hover { background: var(--surface); }
.door:hover::before { opacity: 1; }
.door > * { position: relative; z-index: 1; }
.door .k { font-size: .74rem; letter-spacing: .26em; text-transform: uppercase; color: var(--text-mute); }
.door h3 { font-size: clamp(1.7rem, 2.6vw, 2.3rem); margin: 16px 0 12px; }
.door:hover h3 { color: var(--cyan); }
.door p { font-size: .96rem; color: var(--text-mute); line-height: 1.5; }
.door .go { margin-top: 26px; display: inline-flex; align-items: center; gap: 10px; font-size: .74rem; letter-spacing: .2em; text-transform: uppercase; color: var(--cyan); }
.door:hover .go .arw { transform: translateX(5px); }
.door .go .arw { transition: transform .4s var(--ease); }

/* -- 08 scenario ----------------------------------------------------------- */
.scn__tabs { display: flex; border: 1px solid var(--line); flex-wrap: wrap; margin-bottom: clamp(26px, 4vw, 44px); }
.scn__tab {
  flex: 1 1 auto; background: none; border: 0; border-right: 1px solid var(--line); cursor: pointer;
  padding: 17px 20px; text-align: left; font-size: .78rem; letter-spacing: .16em;
  text-transform: uppercase; color: var(--text-mute); transition: background .38s var(--ease), color .38s var(--ease);
}
.scn__tab:last-child { border-right: 0; }
.scn__tab:hover { color: var(--text); background: rgba(18, 98, 109, .14); }
.scn__tab[aria-selected="true"] { color: var(--ink); background: var(--cyan); }
.scn__panel { display: none; }
.scn__panel.is-active { display: block; }
.scn__summary { max-width: 62ch; margin-bottom: clamp(26px, 4vw, 42px); }
.moves { display: grid; grid-template-columns: repeat(3, 1fr); gap: 1px; background: var(--line); border: 1px solid var(--line); }
.move { background: var(--ink); padding: clamp(20px, 2.4vw, 30px); transition: background .4s var(--ease); }
.move:hover { background: var(--surface); }
.move__top { display: flex; align-items: center; gap: 11px; margin-bottom: 15px; }
.move__ico { width: 23px; height: 23px; color: var(--cyan); flex: none; }
.move__ico svg { width: 100%; height: 100%; fill: none; stroke: currentColor; stroke-width: 1.6; stroke-linecap: round; stroke-linejoin: round; }
.move__pil { font-size: .7rem; letter-spacing: .2em; text-transform: uppercase; color: var(--cyan); }
.move h4 { font-size: 1.28rem; margin-bottom: 9px; }
.move p { font-size: .94rem; line-height: 1.52; color: var(--text-mute); }
.scn__panel.is-active .move { animation: moveIn .6s var(--ease) both; }
.scn__panel.is-active .move:nth-child(2) { animation-delay: .06s; }
.scn__panel.is-active .move:nth-child(3) { animation-delay: .12s; }
.scn__panel.is-active .move:nth-child(4) { animation-delay: .18s; }
.scn__panel.is-active .move:nth-child(5) { animation-delay: .24s; }
.scn__panel.is-active .move:nth-child(6) { animation-delay: .3s; }
@keyframes moveIn { from { opacity: 0; transform: translateY(18px); } to { opacity: 1; transform: none; } }

/* -- 09 editorial blocks --------------------------------------------------- */
.compare { display: grid; grid-template-columns: 1fr 1fr; gap: 1px; background: var(--line); border: 1px solid var(--line); }
.compare__col { background: var(--ink); padding: clamp(26px, 3.4vw, 46px); }
.compare__col--us { background: linear-gradient(165deg, rgba(18, 98, 109, .24), rgba(3, 8, 10, .1)); }
.paper .compare__col { background: var(--paper); }
.paper .compare__col--us { background: linear-gradient(168deg, #ecebe3 0%, #f4f2eb 62%); box-shadow: inset 3px 0 0 var(--cyan); }
.compare h3 { font-size: clamp(1.45rem, 2.2vw, 1.9rem); margin: 14px 0 26px; }
.compare li { display: flex; gap: 16px; padding: 12px 0; border-bottom: 1px solid var(--line-soft); font-size: 1rem; color: var(--text-dim); }
.compare li:last-child { border-bottom: 0; }
.compare li i { flex: none; width: 20px; font-size: .78rem; color: var(--text-mute); font-style: normal; letter-spacing: .1em; padding-top: 3px; }
.compare__col--us li i { color: var(--cyan); }
.compare__col--us li { color: var(--text); }

.pull { font-weight: 400; letter-spacing: -.024em; line-height: 1.1; font-size: clamp(2rem, 4.6vw, 3.8rem); max-width: 19ch; }
.pull .accent { color: var(--cyan); font-style: italic; }

.steps { counter-reset: s; display: grid; grid-template-columns: repeat(4, 1fr); gap: 1px; background: var(--line); border-block: 1px solid var(--line); }
.step { background: var(--ink); padding: clamp(24px, 3vw, 38px) clamp(18px, 2vw, 28px); counter-increment: s; }
.paper .step { background: var(--paper); }
.step::before { content: "0" counter(s); font-size: .78rem; letter-spacing: .22em; color: var(--sand); display: block; margin-bottom: 20px; }
.paper .step::before { color: #a06d24; }
.step h4 { font-size: 1.48rem; margin-bottom: 12px; }
.step p { font-size: .95rem; line-height: 1.55; color: var(--text-mute); }

.modes { display: grid; grid-template-columns: repeat(2, 1fr); gap: 1px; background: var(--line); border: 1px solid var(--line); }
.mode { background: var(--ink); padding: clamp(26px, 3vw, 40px); display: flex; gap: clamp(18px, 2.4vw, 34px); transition: background .4s var(--ease); }
.mode:hover { background: var(--surface); }
.paper .mode { background: var(--paper); }
.paper .mode:hover { background: var(--surface); }
.mode__k { font-size: .72rem; letter-spacing: .26em; text-transform: uppercase; color: var(--text-mute); writing-mode: vertical-rl; flex: none; }
.mode h4 { font-size: 1.6rem; margin-bottom: 11px; }
.mode p { font-size: 1rem; color: var(--text-dim); line-height: 1.56; }

.goals { display: grid; grid-template-columns: repeat(3, 1fr); gap: 1px; background: var(--line); border: 1px solid var(--line); }
.goal { background: var(--ink); padding: clamp(24px, 2.8vw, 36px); }
.paper .goal { background: var(--paper); }
.goal .g-n { font-size: .76rem; letter-spacing: .22em; color: var(--cyan); text-transform: uppercase; }
.goal h4 { font-size: 1.32rem; margin: 14px 0 10px; }
.goal p { font-size: .95rem; color: var(--text-mute); line-height: 1.52; }

.vm { display: grid; grid-template-columns: repeat(2, 1fr); gap: clamp(30px, 5vw, 80px); }
.vm__item .label-rule { margin-bottom: 20px; }
.vm__item p { font-size: clamp(1.3rem, 2vw, 1.72rem); line-height: 1.36; letter-spacing: -.014em; }

.ticker { overflow: hidden; border-block: 1px solid var(--line); padding: 14px 0; --dur: 74s; }
.ticker__in { display: flex; width: max-content; animation: slide var(--dur) linear infinite; }
.ticker:hover .ticker__in { animation-play-state: paused; }
.ticker span { font-size: .78rem; letter-spacing: .24em; text-transform: uppercase; color: var(--text-mute); padding: 0 22px; white-space: nowrap; display: flex; align-items: center; gap: 22px; }
.ticker span::after { content: ""; width: 4px; height: 4px; background: var(--cyan-deep); transform: rotate(45deg); }
@keyframes slide { to { transform: translateX(-50%); } }

.acc { border-top: 1px solid var(--line); }
.acc__item { border-bottom: 1px solid var(--line); }
.acc__btn {
  width: 100%; background: none; border: 0; cursor: pointer; text-align: left;
  display: flex; gap: 24px; align-items: baseline; justify-content: space-between;
  padding: clamp(20px, 2.4vw, 28px) 0; font-size: clamp(1.2rem, 1.9vw, 1.5rem);
  color: var(--text); transition: color .3s;
}
.acc__btn:hover { color: var(--cyan); }
.acc__btn .pm { flex: none; width: 15px; height: 15px; position: relative; }
.acc__btn .pm::before, .acc__btn .pm::after { content: ""; position: absolute; background: var(--cyan); transition: transform .42s var(--ease); }
.acc__btn .pm::before { left: 0; right: 0; top: 7px; height: 1px; }
.acc__btn .pm::after { top: 0; bottom: 0; left: 7px; width: 1px; }
.acc__btn[aria-expanded="true"] .pm::after { transform: scaleY(0); }
.acc__panel { overflow: hidden; height: 0; transition: height .5s var(--ease); }
.acc__panel p { padding-bottom: 26px; max-width: 72ch; color: var(--text-dim); }

.cta { position: relative; overflow: hidden; background: var(--ink-2); border-top: 1px solid var(--line); }
.cta::before { content: ""; position: absolute; inset: -50% -10% auto -10%; height: 200%; background: radial-gradient(50% 40% at 50% 50%, rgba(18, 98, 109, .3), transparent 70%); pointer-events: none; }
.cta__in { position: relative; display: grid; grid-template-columns: 1.25fr 1fr; gap: clamp(30px, 5vw, 70px); align-items: end; }
.cta h2 { max-width: 15ch; }
.cta__meta { display: flex; flex-direction: column; gap: 18px; }
.cta__mail { font-size: clamp(1.25rem, 2.1vw, 1.75rem); color: var(--cyan); word-break: break-word; }

/* -- 10 inner-page heroes -------------------------------------------------- */
.phero { position: relative; padding-top: calc(var(--nav-h) + clamp(52px, 10vh, 118px)); padding-bottom: clamp(42px, 7vh, 88px); overflow: hidden; border-bottom: 1px solid var(--line); }
.phero__canvas { position: absolute; inset: 0; width: 100%; height: 100%; z-index: 0; }
.phero::before {
  content: ""; position: absolute; inset: 0; z-index: 1; pointer-events: none;
  background:
    radial-gradient(80% 110% at 88% 0%, rgba(18, 98, 109, .32), transparent 62%),
    linear-gradient(180deg, rgba(3, 8, 10, .72), transparent 46%, rgba(3, 8, 10, .55));
}
.phero .shell { position: relative; z-index: 2; }
.phero__in { display: grid; grid-template-columns: 1fr auto; gap: 40px; align-items: start; }
.phero__num { font-size: .82rem; letter-spacing: .32em; color: var(--sand); text-transform: uppercase; }
.phero h1 { font-size: clamp(2.9rem, 8.6vw, 6.4rem); margin: 18px 0 12px; letter-spacing: -.03em; line-height: .98; }
.phero__tag { font-size: clamp(1.25rem, 2.4vw, 1.9rem); color: var(--cyan); font-style: italic; letter-spacing: -.01em; }
.phero__kick { font-size: .76rem; letter-spacing: .26em; text-transform: uppercase; color: var(--text-mute); margin-top: 22px; }
.phero__ico { width: clamp(80px, 12vw, 132px); height: clamp(80px, 12vw, 132px); color: var(--cyan); opacity: .85; }
.phero__ico svg { width: 100%; height: 100%; fill: none; stroke: currentColor; stroke-width: 1.1; stroke-linecap: round; stroke-linejoin: round; }
.phero__purpose { margin-top: clamp(28px, 4.6vh, 46px); max-width: 58ch; }

.streams { border-top: 1px solid var(--line); }
.srow { display: grid; grid-template-columns: 52px minmax(0, .82fr) minmax(0, 1.18fr); gap: clamp(14px, 2.4vw, 36px); padding: clamp(17px, 2vw, 24px) 0; border-bottom: 1px solid var(--line); align-items: baseline; transition: background .4s var(--ease); }
.srow:hover { background: rgba(18, 98, 109, .1); }
.srow .n { font-size: .82rem; color: var(--text-mute); letter-spacing: .18em; }
.srow h4 { font-size: 1.3rem; }
.srow p { color: var(--text-mute); font-size: .98rem; }

.ladder { display: flex; flex-wrap: wrap; align-items: center; gap: 10px 6px; margin: 28px 0 24px; }
.ladder .rung { font-size: .76rem; letter-spacing: .18em; text-transform: uppercase; border: 1px solid var(--line-hard); padding: 11px 16px; color: var(--text); background: rgba(18, 98, 109, .12); }
.ladder .sep { color: var(--cyan); padding: 0 4px; }

.crumbs { font-size: .74rem; letter-spacing: .22em; text-transform: uppercase; color: var(--text-mute); display: flex; gap: 12px; flex-wrap: wrap; }
.crumbs a:hover { color: var(--cyan); }

.pnext { display: grid; grid-template-columns: repeat(2, 1fr); gap: 1px; background: var(--line); border: 1px solid var(--line); }
.pnext a { background: var(--ink); padding: clamp(24px, 3vw, 40px); transition: background .45s var(--ease); }
.pnext a:hover { background: var(--surface); }
.pnext .k { font-size: .74rem; letter-spacing: .22em; text-transform: uppercase; color: var(--text-mute); }
.pnext h4 { font-size: clamp(1.55rem, 2.6vw, 2.2rem); margin-top: 12px; }
.pnext a:hover h4 { color: var(--cyan); }
.pnext .r { text-align: right; }

/* -- 11 forms -------------------------------------------------------------- */
.form { display: grid; gap: 22px; }
.field { display: grid; gap: 9px; }
.field label { font-size: .74rem; letter-spacing: .22em; text-transform: uppercase; color: var(--text-mute); }
.field input, .field textarea, .field select {
  background: rgba(255, 255, 255, .03); border: 1px solid var(--line); padding: 13px 15px;
  font-size: 1.02rem; color: var(--text); border-radius: 0; transition: border-color .3s, background .3s;
}
.field input:focus, .field textarea:focus, .field select:focus { outline: none; border-color: var(--cyan); background: rgba(18, 98, 109, .12); }
.field textarea { min-height: 130px; resize: vertical; }
.picks { display: flex; flex-wrap: wrap; gap: 8px; }
.pick { position: relative; }
.pick input { position: absolute; opacity: 0; inset: 0; cursor: pointer; }
.pick span { display: block; font-size: .74rem; letter-spacing: .16em; text-transform: uppercase; border: 1px solid var(--line); padding: 10px 15px; color: var(--text-mute); cursor: pointer; transition: all .3s var(--ease); }
.pick input:checked + span { border-color: var(--cyan); color: var(--ink); background: var(--cyan); }
.pick input:focus-visible + span { outline: 2px solid var(--sand); outline-offset: 2px; }

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

/* -- 12 motion & page transitions ------------------------------------------ */
/* Page enter / leave.
   The DEFAULT state is visible. The hidden state is only ever added by a
   class, so a failed script, a blocked file or a paused animation can never
   leave a blank page behind. */
.js main, .js .foot { transition: opacity .8s var(--ease), transform .9s var(--ease); }
.js .foot { transition-delay: .08s; }
.js.is-entering main, .js.is-entering .foot { opacity: 0; transform: translateY(20px); }
.js.is-leaving main, .js.is-leaving .foot {
  opacity: 0; transform: translateY(-14px);
  transition: opacity .3s var(--ease-io), transform .3s var(--ease-io); transition-delay: 0s;
}

/* the wipe that covers the page between routes */
.curtain {
  position: fixed; inset: 0; z-index: 500; pointer-events: none;
  background: var(--ink);
  transform: scaleY(0); transform-origin: bottom;
  transition: transform .42s var(--ease-io);
}
.is-leaving .curtain { transform: scaleY(1); }
.curtain__mark { position: absolute; left: 50%; top: 50%; width: 40px; margin: -22px 0 0 -20px; color: var(--cyan); opacity: 0; transition: opacity .3s .12s; }
.is-leaving .curtain__mark { opacity: 1; }

.js [data-rise] { opacity: 0; transform: translateY(28px); }
.js [data-rise].is-in { opacity: 1; transform: none; transition: opacity .9s var(--ease), transform 1s var(--ease); }
.js [data-rise][data-d="1"].is-in { transition-delay: .08s; }
.js [data-rise][data-d="2"].is-in { transition-delay: .16s; }
.js [data-rise][data-d="3"].is-in { transition-delay: .24s; }
.js [data-rise][data-d="4"].is-in { transition-delay: .32s; }
.js [data-rise][data-d="5"].is-in { transition-delay: .4s; }

.js .reveal-line > span { display: block; transform: translateY(104%); transition: transform 1.1s var(--ease); }
.js .reveal-line.is-in > span { transform: none; }
.js .reveal-line:nth-child(2) > span { transition-delay: .1s; }
.js .reveal-line:nth-child(3) > span { transition-delay: .2s; }

/* word-by-word heading reveal, built by JS from a plain text heading */
.js .w { display: inline-block; overflow: hidden; vertical-align: bottom;
  padding-bottom: .14em; margin-bottom: -.14em; }
.js .w > i { display: inline-block; font-style: inherit; transform: translateY(105%); transition: transform .95s var(--ease); transition-delay: calc(var(--i) * 42ms); }
.js .is-in .w > i, .js .w.is-in > i { transform: none; }

/* a hairline that draws itself in when its section arrives */
.js .label-rule::after { transform: scaleX(0); transform-origin: left; transition: transform 1.1s var(--ease) .15s; }
.js .label-rule.is-in::after { transform: scaleX(1); }

@media (prefers-reduced-motion: reduce) {
  *, *::before, *::after { animation-duration: .01ms !important; animation-iteration-count: 1 !important; transition-duration: .01ms !important; }
  .js.is-entering main, .js.is-entering .foot { opacity: 1; transform: none; }
  .js [data-rise] { opacity: 1; transform: none; }
  .js .reveal-line > span, .js .w > i { transform: none; }
  .js .label-rule::after { transform: scaleX(1); }
  .curtain { display: none; }
  .wheel__spin { animation: none; }
}

/* -- 13 responsive --------------------------------------------------------- */
@media (max-width: 1240px) {
  .nav__link { padding: 9px 11px; font-size: .93rem; }
  .strip { grid-template-columns: repeat(3, 1fr); }
}
@media (max-width: 1100px) {
  .moves, .goals, .steps, .doors { grid-template-columns: repeat(2, 1fr); }
  .foot__top { grid-template-columns: 1fr 1fr; gap: 34px; }
}
@media (max-width: 980px) {
  :root { --nav-h: 66px; }
  .nav__links, .nav__cta { display: none; }
  .burger { display: block; }
  .mega { display: none; }
  .wheel-wrap { grid-template-columns: 1fr; gap: 34px; }
  .wpanel { min-height: 0; }
  .wpanel__body { position: relative; }
  .wpanel__body:not(.is-active) { display: none; }
  .cta__in, .vm, .compare, .modes, .pnext, .doors { grid-template-columns: 1fr; }
  .phero__in { grid-template-columns: 1fr; }
  .phero__ico { order: -1; }
  .prow { grid-template-columns: 56px 1fr 42px; }
  .prow__desc { grid-column: 2 / 4; margin-top: 6px; }
  .g-2, .g-3, .g-12 { grid-template-columns: 1fr; }
  .span-4, .span-5, .span-6, .span-7, .span-8 { grid-column: 1 / -1; }
}
@media (max-width: 700px) {
  body { font-size: 17px; }
  .moves, .goals, .steps, .strip { grid-template-columns: 1fr; }
  .srow { grid-template-columns: 38px 1fr; }
  .srow p { grid-column: 2; margin-top: 4px; }
  .hero__foot { align-items: flex-start; }
  .scrollcue { display: none; }
  .scn__tab { flex: 1 1 100%; border-right: 0; border-bottom: 1px solid var(--line); }
  .foot__top { grid-template-columns: 1fr; }
  .mode { flex-direction: column; gap: 14px; }
  .mode__k { writing-mode: horizontal-tb; }
  .gridlines { background-size: calc(100% / 3) 100%; }
  .wheel__seg .txt { font-size: 18px; letter-spacing: .14em; }
  .wheel__seg .num { font-size: 15px; }
  .wheel__hub .h1 { font-size: 24px; }
  .wheel__hub .h2 { font-size: 12px; }
}
@media print {
  .nav, .mega, .drawer, .hero__canvas, .phero__canvas, .progress, .scrollcue, .curtain { display: none !important; }
  body { background: #fff; color: #000; }
  .js main, .js .foot { opacity: 1 !important; transform: none !important; }
}
