/* ==========================================================================
   Anna Goodwin — AnnaGoodwin.is
   ========================================================================== */

/* Self-hosted fonts (no third-party requests) */
@font-face { font-family: "Montserrat"; font-style: normal; font-weight: 400; font-display: swap; src: url("../fonts/montserrat-latin-400-normal.woff2") format("woff2"); }
@font-face { font-family: "Montserrat"; font-style: normal; font-weight: 500; font-display: swap; src: url("../fonts/montserrat-latin-500-normal.woff2") format("woff2"); }
@font-face { font-family: "Montserrat"; font-style: normal; font-weight: 600; font-display: swap; src: url("../fonts/montserrat-latin-600-normal.woff2") format("woff2"); }
@font-face { font-family: "Montserrat"; font-style: normal; font-weight: 700; font-display: swap; src: url("../fonts/montserrat-latin-700-normal.woff2") format("woff2"); }
@font-face { font-family: "Source Sans 3"; font-style: normal; font-weight: 400; font-display: swap; src: url("../fonts/source-sans-3-latin-400-normal.woff2") format("woff2"); }
@font-face { font-family: "Source Sans 3"; font-style: italic; font-weight: 400; font-display: swap; src: url("../fonts/source-sans-3-latin-400-italic.woff2") format("woff2"); }
@font-face { font-family: "Source Sans 3"; font-style: normal; font-weight: 500; font-display: swap; src: url("../fonts/source-sans-3-latin-500-normal.woff2") format("woff2"); }
@font-face { font-family: "Source Sans 3"; font-style: normal; font-weight: 600; font-display: swap; src: url("../fonts/source-sans-3-latin-600-normal.woff2") format("woff2"); }

:root {
  /* Palette (matches the Timaci template) */
  --ink:         #16282A;
  --text:        #3D4B4D;
  --muted:       #6A7879;
  --teal:        #15646A;
  --teal-deep:   #0F4D52;
  --teal-mid:    #2C7C80;
  --teal-soft:   #E7F0EF;
  --teal-tint:   #F2F7F6;
  --forest:      #1C4A44;
  --forest-deep: #12342F;
  --lime:        #C9DA6E;
  --lime-soft:   #E4EDB6;
  --line:        #E1E8E7;
  --paper:       #FFFFFF;
  --soft:        #F6F8F7;

  --f-head: "Montserrat", system-ui, -apple-system, "Segoe UI", sans-serif;
  --f-body: "Source Sans 3", system-ui, -apple-system, "Segoe UI", sans-serif;

  --container: 1200px;
  --gutter: clamp(20px, 4vw, 40px);
  --header-h: 76px;
  --radius: 4px;
  --ease: cubic-bezier(.22, .61, .36, 1);
  --ease-out: cubic-bezier(.16, 1, .3, 1);
}

/* ---------- Base ---------- */
*, *::before, *::after { box-sizing: border-box; }
html { scroll-behavior: smooth; scroll-padding-top: calc(var(--header-h) + 8px); -webkit-text-size-adjust: 100%; }
body {
  margin: 0;
  font-family: var(--f-body);
  font-size: 18px;
  line-height: 1.7;
  color: var(--text);
  background: var(--paper);
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
}
img { max-width: 100%; height: auto; display: block; }
a { color: var(--teal); text-decoration: none; }
p { margin: 0 0 1.15em; }
p:last-child { margin-bottom: 0; }
h1, h2, h3 { font-family: var(--f-head); color: var(--ink); margin: 0; line-height: 1.15; letter-spacing: -0.01em; }
ul, ol { margin: 0; padding: 0; list-style: none; }
::selection { background: var(--lime); color: var(--ink); }

.container { width: 100%; max-width: var(--container); margin: 0 auto; padding: 0 var(--gutter); }
.sr-only { position: absolute; width: 1px; height: 1px; overflow: hidden; clip: rect(0 0 0 0); white-space: nowrap; }
.skip-link { position: absolute; left: 12px; top: -60px; z-index: 200; background: var(--teal); color: #fff; padding: 10px 16px; border-radius: var(--radius); }
.skip-link:focus { top: 12px; }
:focus-visible { outline: 2px solid var(--teal); outline-offset: 3px; }

.ico { width: 18px; height: 18px; flex: none; transition: transform .35s var(--ease); }

/* ---------- Buttons ---------- */
.btn {
  --bg: transparent; --fg: var(--teal); --bd: var(--teal);
  position: relative;
  display: inline-flex; align-items: center; justify-content: center; gap: 10px;
  min-height: 50px; padding: 0 26px;
  font-family: var(--f-head); font-size: 14.5px; font-weight: 600; letter-spacing: .01em;
  color: var(--fg); background: var(--bg);
  border: 1.5px solid var(--bd); border-radius: var(--radius);
  cursor: pointer; overflow: hidden; isolation: isolate;
  transition: color .35s var(--ease), border-color .35s var(--ease), background-color .35s var(--ease), transform .35s var(--ease);
  white-space: nowrap;
}
.btn::before {
  content: ""; position: absolute; inset: 0; z-index: -1;
  background: var(--fill, var(--teal-deep));
  transform: scaleX(0); transform-origin: right center;
  transition: transform .5s var(--ease-out);
}
.btn:hover::before { transform: scaleX(1); transform-origin: left center; }
.btn:hover .ico { transform: translateX(4px); }
.btn:active { transform: translateY(1px); }

.btn-primary { --bg: var(--teal); --fg: #fff; --bd: var(--teal); --fill: var(--teal-deep); }
.btn-primary:hover { border-color: var(--teal-deep); }
.btn-outline { --fg: var(--teal); --bd: var(--teal); --fill: var(--teal); }
.btn-outline:hover { color: #fff; }
.btn-ghost { --fg: var(--teal); --bd: var(--line); --fill: var(--teal-soft); }
.btn-ghost:hover { border-color: var(--teal-soft); }
.btn-light { --bg: var(--lime); --fg: var(--forest-deep); --bd: var(--lime); --fill: #fff; }
.btn-light:hover { border-color: #fff; }
.btn-sm { min-height: 42px; padding: 0 20px; font-size: 13.5px; }
.btn-row { display: flex; flex-wrap: wrap; gap: 12px; margin-top: 28px; }

.link-arrow {
  display: inline-flex; align-items: center; gap: 8px; margin-top: auto; padding-top: 22px; align-self: flex-start;
  font-family: var(--f-head); font-weight: 600; font-size: 14.5px; color: var(--teal);
}
.link-arrow:hover .ico { transform: translateX(5px); }

/* ---------- Header ---------- */
.site-header {
  position: fixed; inset: 0 0 auto 0; z-index: 100; height: var(--header-h);
  background: rgba(255,255,255,0); border-bottom: 1px solid transparent;
  transition: background-color .4s var(--ease), border-color .4s var(--ease), height .4s var(--ease), box-shadow .4s var(--ease);
}
.site-header.is-scrolled {
  --header-h: 64px;
  background: rgba(255,255,255,.94);
  -webkit-backdrop-filter: saturate(140%) blur(10px); backdrop-filter: saturate(140%) blur(10px);
  border-color: var(--line);
}
.header-inner { height: 100%; display: flex; align-items: center; justify-content: space-between; gap: 24px; }

.brand { display: inline-flex; align-items: center; gap: 12px; color: var(--ink); }
.brand-mark {
  display: grid; place-items: center; width: 38px; height: 38px;
  border: 1.5px solid var(--teal); border-radius: 50%;
  font-family: var(--f-head); font-size: 12.5px; font-weight: 700; letter-spacing: .06em; color: var(--teal);
  transition: background-color .35s var(--ease), color .35s var(--ease);
}
.brand:hover .brand-mark { background: var(--teal); color: #fff; }
.brand-name { font-family: var(--f-head); font-weight: 600; font-size: 16px; letter-spacing: .01em; }

.nav ul { display: flex; align-items: center; gap: 6px; }
.nav a:not(.btn) {
  position: relative; display: block; padding: 8px 14px;
  font-family: var(--f-head); font-size: 14px; font-weight: 500; color: var(--text);
  transition: color .3s var(--ease);
}
.nav a:not(.btn)::after {
  content: ""; position: absolute; left: 14px; right: 14px; bottom: 2px; height: 2px;
  background: var(--teal); transform: scaleX(0); transform-origin: left;
  transition: transform .45s var(--ease-out);
}
.nav a:not(.btn):hover, .nav a.is-active { color: var(--teal); }
.nav a:not(.btn):hover::after, .nav a.is-active::after { transform: scaleX(1); }
.nav-cta { margin-left: 10px; }

.nav-toggle { display: none; }

/* ---------- Hero ---------- */
.hero {
  position: relative;
  padding: calc(var(--header-h) + clamp(40px, 7vw, 90px)) 0 clamp(70px, 9vw, 120px);
  background:
    linear-gradient(90deg, var(--paper) 0 62%, var(--teal-tint) 62% 100%);
  overflow: hidden;
}
.hero-grid { display: grid; grid-template-columns: 1.15fr .85fr; gap: clamp(40px, 6vw, 90px); align-items: center; }
.hero-copy { display: flex; flex-direction: column; }

.mask { display: block; overflow: hidden; padding-bottom: .06em; }
.mask > span { display: block; }

.hero-name { font-size: clamp(44px, 5.2vw, 74px); font-weight: 600; letter-spacing: -0.025em; line-height: 1.02; }
.hero-role {
  margin: 18px 0 0;
  font-family: var(--f-head); font-size: clamp(17px, 1.6vw, 21px); font-weight: 500; line-height: 1.45; color: var(--teal);
}
.hero-headline {
  position: relative; margin: 30px 0 0; padding-top: 26px; max-width: 30ch;
  font-family: var(--f-head); font-size: clamp(22px, 2.3vw, 30px); line-height: 1.3; color: var(--ink);
}
.hero-headline strong { font-weight: 600; }
.hero-headline::before {
  content: ""; position: absolute; top: 0; left: 0; width: 56px; height: 3px; background: var(--lime);
}
.hero-text { margin-top: 22px; max-width: 56ch; color: var(--text); }
.hero-actions { display: flex; flex-wrap: wrap; gap: 12px; margin-top: 36px; }

.hero-media { position: relative; margin: 0; }
.hero-frame {
  position: absolute; inset: 28px -28px -28px 28px;
  border: 1.5px solid var(--teal); border-radius: var(--radius); opacity: .55;
}
.hero-photo {
  position: relative; border-radius: var(--radius); overflow: hidden;
  aspect-ratio: 4 / 5; background: var(--teal-soft);
  box-shadow: 0 30px 60px -30px rgba(15, 77, 82, .35);
}
.hero-photo img { width: 100%; height: 100%; object-fit: cover; object-position: 50% 12%; will-change: transform; }

.scroll-cue {
  position: absolute; left: 50%; bottom: 26px; width: 22px; height: 36px; margin-left: -11px;
  border: 1.5px solid rgba(21,100,106,.45); border-radius: 12px;
}
.scroll-cue span {
  position: absolute; left: 50%; top: 7px; width: 3px; height: 7px; margin-left: -1.5px;
  border-radius: 2px; background: var(--teal);
  animation: cue 2s var(--ease) infinite;
}
@keyframes cue { 0% { opacity: 0; transform: translateY(-3px); } 30% { opacity: 1; } 80%, 100% { opacity: 0; transform: translateY(12px); } }

/* Hero intro animation (only when JS present) */
.js .hero-name .mask > span,
.js .hero-role .mask > span { transform: translateY(105%); }
.js .hero-headline, .js .hero-text, .js .hero-actions { opacity: 0; transform: translateY(18px); }
.js .hero-headline::before { transform: scaleX(0); transform-origin: left; }
.js .hero-photo { clip-path: inset(100% 0 0 0); }
.js .hero-photo img { transform: scale(1.12); }
.js .hero-frame { opacity: 0; transform: translate(-14px, -14px); }

.is-loaded .hero-name .mask > span { transform: none; transition: transform 1.1s var(--ease-out) .15s; }
.is-loaded .hero-role .mask:nth-child(1) > span { transform: none; transition: transform 1s var(--ease-out) .35s; }
.is-loaded .hero-role .mask:nth-child(2) > span { transform: none; transition: transform 1s var(--ease-out) .45s; }
.is-loaded .hero-headline { opacity: 1; transform: none; transition: opacity .9s var(--ease) .6s, transform .9s var(--ease-out) .6s; }
.is-loaded .hero-headline::before { transform: none; transition: transform .9s var(--ease-out) .9s; }
.is-loaded .hero-text { opacity: 1; transform: none; transition: opacity .9s var(--ease) .75s, transform .9s var(--ease-out) .75s; }
.is-loaded .hero-actions { opacity: 1; transform: none; transition: opacity .9s var(--ease) .9s, transform .9s var(--ease-out) .9s; }
.is-loaded .hero-photo { clip-path: inset(0 0 0 0); transition: clip-path 1.4s var(--ease-out) .2s; }
.is-loaded .hero-photo img { transform: scale(1); transition: transform 2s var(--ease-out) .2s; }
.is-loaded .hero-frame { opacity: .55; transform: none; transition: opacity 1s var(--ease) 1s, transform 1.2s var(--ease-out) 1s; }

/* ---------- Sections ---------- */
.section { position: relative; padding: clamp(80px, 10vw, 140px) 0; }
.section-soft { background: var(--soft); }
.section + .section:not(.section-soft):not(.section-forest)::before {
  content: ""; position: absolute; top: 0; left: var(--gutter); right: var(--gutter);
  max-width: calc(var(--container) - 2 * var(--gutter)); margin: 0 auto; height: 1px; background: var(--line);
}
.section-soft + .section::before, .section-forest + .section::before { display: none; }

.split { display: grid; grid-template-columns: minmax(0, 4fr) minmax(0, 7fr); gap: clamp(36px, 6vw, 96px); align-items: start; }

.sec-head { position: relative; }
.sec-num {
  display: block; margin-bottom: 18px;
  font-family: var(--f-head); font-size: 13px; font-weight: 600; letter-spacing: .14em; color: var(--muted);
}
.sec-rule { display: block; width: 44px; height: 2px; margin-bottom: 22px; background: var(--teal); transform-origin: left; }
.js .sec-head.reveal .sec-rule { transform: scaleX(0); transition: transform 1s var(--ease-out) .25s; }
.js .sec-head.reveal.is-in .sec-rule { transform: scaleX(1); }
.sec-head h2 { font-size: clamp(30px, 3.4vw, 44px); font-weight: 600; letter-spacing: -0.02em; max-width: 14ch; }
.sec-intro { margin-top: 22px; color: var(--muted); font-size: 17px; max-width: 40ch; }
.sec-sub { margin-top: 16px; font-family: var(--f-head); font-size: 16px; font-weight: 500; line-height: 1.5; color: var(--teal); max-width: 32ch; }

.sec-body { padding-top: 6px; }
.lead { font-size: clamp(19px, 1.6vw, 21.5px); line-height: 1.65; color: var(--ink); }

.callout {
  margin: 34px 0; padding: 6px 0 6px 28px;
  border-left: 3px solid var(--teal);
  font-family: var(--f-head); font-size: clamp(17px, 1.5vw, 19.5px); font-weight: 500; line-height: 1.6; color: var(--teal-deep);
}
.section-soft .callout { background: transparent; }

/* ---------- Reveal on scroll ---------- */
.js .reveal { opacity: 0; transform: translateY(26px); transition: opacity .9s var(--ease), transform 1s var(--ease-out); transition-delay: var(--d, 0s); }
.js .reveal.is-in { opacity: 1; transform: none; }

/* ---------- Stats ---------- */
.stats {
  display: grid; grid-template-columns: repeat(3, 1fr); margin: 44px 0 10px;
  border-top: 1px solid var(--line); border-bottom: 1px solid var(--line);
}
.stat { position: relative; padding: 28px 24px 28px 0; }
.stat + .stat { padding-left: 24px; border-left: 1px solid var(--line); }
.stat-num, .stat-plus { font-family: var(--f-head); font-size: clamp(34px, 3.6vw, 48px); font-weight: 600; letter-spacing: -0.03em; line-height: 1; color: var(--teal); font-variant-numeric: tabular-nums; }
.stat-plus { color: var(--teal-mid); margin-left: 2px; }
.stat-label { display: block; margin-top: 12px; font-size: 15px; line-height: 1.45; color: var(--muted); max-width: 24ch; }

/* ---------- Ecosystem ---------- */
.eco-overview {
  padding: clamp(26px, 3.2vw, 38px);
  background: var(--paper); border: 1px solid var(--line); border-top: 3px solid var(--teal); border-radius: var(--radius);
}
.eco-overview-title { font-size: 13px; font-weight: 600; letter-spacing: .16em; text-transform: uppercase; color: var(--teal); margin-bottom: 14px; }
.eco-overview > p { color: var(--ink); font-size: 18.5px; }
.eco-index { margin-top: 22px; border-top: 1px solid var(--line); }
.eco-index a {
  position: relative; display: flex; align-items: baseline; flex-wrap: wrap; gap: 0 2px;
  padding: 16px 36px 16px 0; border-bottom: 1px solid var(--line); color: var(--text);
  transition: padding-left .45s var(--ease-out), color .3s var(--ease);
}
.eco-index a::before {
  content: ""; position: absolute; left: 0; top: 50%; width: 0; height: 2px; background: var(--lime);
  transition: width .45s var(--ease-out);
}
.eco-index .eco-domain { font-family: var(--f-head); font-weight: 600; color: var(--ink); }
.eco-index .eco-dash { color: var(--muted); }
.eco-index .ico { position: absolute; right: 4px; top: 50%; margin-top: -9px; color: var(--teal); opacity: .55; }
.eco-index a:hover { padding-left: 26px; color: var(--teal-deep); }
.eco-index a:hover::before { width: 16px; }
.eco-index a:hover .ico { opacity: 1; transform: translate(3px, -3px); }

.eco-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 22px; margin-top: clamp(48px, 6vw, 72px); }
.eco-card {
  position: relative; display: flex; flex-direction: column;
  padding: clamp(26px, 3vw, 36px);
  background: var(--paper); border: 1px solid var(--line); border-radius: var(--radius);
  transition: border-color .4s var(--ease), box-shadow .5s var(--ease), transform .5s var(--ease-out);
}
.eco-card::after {
  content: ""; position: absolute; left: -1px; top: -1px; bottom: -1px; width: 3px; border-radius: var(--radius) 0 0 var(--radius);
  background: var(--teal); transform: scaleY(0); transform-origin: top; transition: transform .55s var(--ease-out);
}
.eco-card:hover { border-color: #cfdcda; box-shadow: 0 24px 48px -32px rgba(15,77,82,.35); transform: translateY(-3px); }
.eco-card:hover::after { transform: scaleY(1); }
.eco-card h3 { font-size: 19px; font-weight: 600; line-height: 1.35; margin-bottom: 14px; }
.eco-card-domain { color: var(--teal); }
.eco-card p { font-size: 16.5px; line-height: 1.65; }
.eco-card-tech { grid-column: span 2; }
.eco-card-corp { grid-column: span 1; }
.eco-card-wide h3 { font-size: 21px; }

.demo-note {
  margin-top: 22px; padding: 18px 20px;
  background: var(--teal-tint); border: 1px dashed #b9cfcc; border-radius: var(--radius);
}
.demo-note p { font-size: 15.5px; color: var(--text); }
.demo-badge {
  display: inline-block; margin-bottom: 10px; padding: 4px 10px;
  font-family: var(--f-head); font-size: 11.5px; font-weight: 600; letter-spacing: .06em; text-transform: uppercase;
  color: var(--teal-deep); background: var(--lime-soft); border-radius: 2px;
}

.eco-card-corp {
  background: linear-gradient(135deg, var(--forest) 0%, var(--forest-deep) 100%);
  border-color: var(--forest); color: rgba(255,255,255,.82);
}
.eco-card-corp h3 { color: #fff; }
.eco-card-corp::after { background: var(--lime); }
.eco-card-corp .btn { align-self: flex-start; margin-top: auto; white-space: normal; text-align: left; line-height: 1.3; padding-top: 12px; padding-bottom: 12px; }
.eco-card-corp p { margin-bottom: 26px; }
.eco-card-corp:hover { border-color: var(--forest); }

/* ---------- Movement (forest band) ---------- */
.section-forest {
  background:
    radial-gradient(1200px 500px at 85% 0%, rgba(201,218,110,.07), transparent 60%),
    linear-gradient(135deg, var(--forest) 0%, var(--forest-deep) 100%);
  color: rgba(255,255,255,.8);
}
.section-forest .sec-num { color: rgba(255,255,255,.45); }
.section-forest .sec-rule { background: var(--lime); }
.section-forest .sec-head h2 { color: var(--lime); }
.section-forest .lead { color: #fff; }
.move-intro { margin-top: 36px; font-family: var(--f-head); font-weight: 500; font-size: 15px; letter-spacing: .04em; color: rgba(255,255,255,.6); }
.move-list { margin-top: 12px; border-top: 1px solid rgba(255,255,255,.14); counter-reset: mv; }
.move-list li {
  position: relative; display: grid; grid-template-columns: 1fr auto 1fr; align-items: center; gap: 18px;
  padding: 22px 0; border-bottom: 1px solid rgba(255,255,255,.14);
  font-size: 18px;
}
.move-list li::after {
  content: ""; grid-column: 2; grid-row: 1; width: 44px; height: 1px; background: rgba(201,218,110,.6);
}
.move-list .from { grid-column: 1; grid-row: 1; color: rgba(255,255,255,.55); }
.move-list .to { grid-column: 3; grid-row: 1; font-family: var(--f-head); font-weight: 600; color: #fff; }
.move-list li::before {
  content: ""; position: absolute; left: 0; bottom: -1px; height: 1px; width: 100%; background: var(--lime);
  transform: scaleX(0); transform-origin: left; transition: transform .8s var(--ease-out);
}
.move-list li:hover::before { transform: scaleX(1); }
.move-list li:hover .to { color: var(--lime); }
.move-list .to { transition: color .3s var(--ease); }
.js .move-list li.reveal .to { opacity: 0; transform: translateX(-10px); transition: opacity .8s var(--ease) .35s, transform .9s var(--ease-out) .35s, color .3s var(--ease); }
.js .move-list li.reveal.is-in .to { opacity: 1; transform: none; }
.js .move-list li.reveal::after { transform: scaleX(0); transform-origin: left; transition: transform .7s var(--ease-out) .2s; }
.js .move-list li.reveal.is-in::after { transform: scaleX(1); }

.forest-box {
  margin-top: 40px; padding: 26px 28px;
  border: 1px solid rgba(255,255,255,.18); border-radius: var(--radius); background: rgba(255,255,255,.04);
  font-family: var(--f-head); font-size: 18px; font-weight: 500; line-height: 1.6; color: #fff;
}

/* ---------- Investor Relations (dark band) ---------- */
.section-ink { background: #1E282C; color: rgba(255,255,255,.72); }
.section-ink .sec-num { color: rgba(255,255,255,.45); }
.section-ink .sec-rule { background: var(--lime); }
.section-ink .sec-head h2 { color: #fff; }
.section-ink .lead { color: rgba(255,255,255,.78); }
.ir-title {
  margin-bottom: 20px;
  font-family: var(--f-head); font-size: clamp(22px, 2.3vw, 30px); font-weight: 600; line-height: 1.3; letter-spacing: -0.01em; color: var(--lime);
}
.section-ink .btn { margin-top: 18px; }
.section-ink + .section::before { display: none; }

/* ---------- About ---------- */
.about-portrait {
  margin-top: 36px; max-width: 300px; aspect-ratio: 1 / 1; overflow: hidden; border-radius: var(--radius);
  background: var(--teal-soft);
}
.about-portrait img { width: 100%; height: 100%; object-fit: cover; object-position: 50% 6%; transform: scale(1.02); transition: transform 1.2s var(--ease-out); }
.about-portrait:hover img { transform: scale(1.06); }
.about-card {
  margin-top: 36px; padding: clamp(26px, 3.2vw, 38px);
  background: var(--teal-tint); border-left: 3px solid var(--teal); border-radius: 0 var(--radius) var(--radius) 0;
}
.about-card .btn { margin-top: 26px; }

/* ---------- Partnerships ---------- */
.list-intro { margin-top: 34px; font-family: var(--f-head); font-weight: 600; font-size: 15px; color: var(--ink); }
.collab-grid { display: grid; grid-template-columns: repeat(2, 1fr); gap: 0 28px; margin-top: 10px; counter-reset: collab; }
.collab-grid li {
  counter-increment: collab; position: relative;
  display: flex; align-items: baseline; gap: 16px;
  padding: 17px 0; border-bottom: 1px solid var(--line); color: var(--ink); font-size: 17.5px;
  transition: color .3s var(--ease);
}
.collab-grid li::before {
  content: counter(collab, decimal-leading-zero);
  font-family: var(--f-head); font-size: 12.5px; font-weight: 600; letter-spacing: .08em; color: var(--teal-mid); min-width: 22px;
}
.collab-grid li > span { display: block; }
.collab-grid li > span::first-letter { text-transform: uppercase; }
.collab-grid li::after {
  content: ""; position: absolute; left: 0; bottom: -1px; height: 1px; width: 100%; background: var(--teal);
  transform: scaleX(0); transform-origin: left; transition: transform .6s var(--ease-out);
}
.collab-grid li:hover { color: var(--teal-deep); }
.collab-grid li:hover::after { transform: scaleX(1); }

/* ---------- Media ---------- */
.topic-chips { display: flex; flex-wrap: wrap; gap: 10px; margin: 30px 0 34px; }
.topic-chips li {
  padding: 8px 16px; border: 1px solid var(--line); border-radius: 100px;
  font-family: var(--f-head); font-size: 13.5px; font-weight: 500; color: var(--teal-deep); background: var(--paper);
  transition: background-color .3s var(--ease), border-color .3s var(--ease), color .3s var(--ease);
}
.topic-chips li::first-letter { text-transform: uppercase; }
.topic-chips li:hover { background: var(--teal); border-color: var(--teal); color: #fff; }

/* ---------- Founder statement ---------- */
.statement {
  position: relative; overflow: hidden;
  padding: clamp(90px, 12vw, 160px) 0;
  background: var(--teal); color: #fff; text-align: center;
}
.statement::before, .statement::after {
  content: ""; position: absolute; border: 1px solid rgba(255,255,255,.08); border-radius: 50%; pointer-events: none;
}
.statement::before { width: 620px; height: 620px; left: -240px; top: -300px; }
.statement::after { width: 780px; height: 780px; right: -360px; bottom: -460px; }
.statement-inner { position: relative; max-width: 980px; }
.statement-label {
  font-family: var(--f-head); font-size: 12.5px; font-weight: 600; letter-spacing: .2em; text-transform: uppercase; color: rgba(255,255,255,.65);
}
.quote-mark { display: block; margin: 20px 0 6px; font-family: Georgia, "Times New Roman", serif; font-size: 96px; line-height: .8; color: var(--lime); height: 50px; }
.statement blockquote { margin: 0; }
.statement-quote {
  margin: 0 auto; max-width: 24ch;
  font-family: var(--f-head); font-size: clamp(28px, 4vw, 50px); font-weight: 600; line-height: 1.22; letter-spacing: -0.02em; color: #fff;
}
.statement-quote .w { display: inline-block; }
.js .statement-quote .w { opacity: .12; transition: opacity .6s var(--ease); transition-delay: var(--wd, 0s); }
.js .statement-quote.is-in .w { opacity: 1; }
.statement-by {
  display: inline-flex; align-items: center; gap: 14px; margin-top: 34px;
  font-family: var(--f-head); font-size: 15px; font-weight: 600; letter-spacing: .06em; color: var(--lime);
}
.statement-by::before { content: ""; width: 32px; height: 1.5px; background: var(--lime); }

/* ---------- Contact form ---------- */
.contact-form {
  padding: clamp(26px, 3.6vw, 44px);
  background: var(--paper); border: 1px solid var(--line); border-radius: var(--radius);
  box-shadow: 0 30px 60px -45px rgba(15,77,82,.35);
}
.form-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 20px 18px; }
.field { display: flex; flex-direction: column; gap: 8px; min-width: 0; }
.field-full { grid-column: 1 / -1; }
.field label, .api-fields legend { font-family: var(--f-head); font-size: 13px; font-weight: 600; color: var(--ink); letter-spacing: .01em; }
.field input, .field select, .field textarea {
  width: 100%; padding: 13px 15px;
  font: inherit; font-size: 16px; color: var(--ink);
  background: var(--soft); border: 1px solid var(--line); border-radius: var(--radius);
  transition: border-color .25s var(--ease), background-color .25s var(--ease), box-shadow .25s var(--ease);
  -webkit-appearance: none; appearance: none;
}
.field textarea { resize: vertical; min-height: 140px; line-height: 1.55; }
.field input::placeholder, .field textarea::placeholder { color: #93a09f; }
.field input:hover, .field select:hover, .field textarea:hover { border-color: #cfdad8; }
.field input:focus, .field select:focus, .field textarea:focus {
  outline: none; background: #fff; border-color: var(--teal); box-shadow: 0 0 0 3px rgba(21,100,106,.12);
}
.field.has-error input, .field.has-error select, .field.has-error textarea { border-color: #b3261e; background: #fff8f7; }
.field-error { font-size: 13.5px; color: #b3261e; }
.select-wrap { position: relative; }
.select-wrap::after {
  content: ""; position: absolute; right: 16px; top: 50%; width: 8px; height: 8px; margin-top: -6px;
  border-right: 1.5px solid var(--teal); border-bottom: 1.5px solid var(--teal); transform: rotate(45deg); pointer-events: none;
}
.field select { padding-right: 40px; cursor: pointer; }
.field select:invalid { color: #93a09f; }

.api-fields { margin: 4px 0 0; padding: 22px; border: 1px solid #cfe0dd; border-radius: var(--radius); background: var(--teal-tint); min-width: 0; }
.api-fields legend { padding: 0 8px; margin-left: -8px; color: var(--teal-deep); }
.api-fields .field input { background: #fff; }
.api-fields:not([hidden]) { animation: slideIn .5s var(--ease-out); }
@keyframes slideIn { from { opacity: 0; transform: translateY(-8px); } to { opacity: 1; transform: none; } }

.hp { position: absolute !important; left: -9999px; width: 1px; height: 1px; overflow: hidden; }

.btn-submit { margin-top: 26px; min-width: 190px; }
.btn-submit.is-loading { pointer-events: none; opacity: .75; }
.btn-submit.is-loading .ico { animation: nudge .8s var(--ease) infinite alternate; }
@keyframes nudge { to { transform: translateX(6px); } }

.form-notice { margin-bottom: 22px; padding: 14px 18px; border-radius: var(--radius); font-size: 16px; }
.form-notice.is-ok { background: var(--teal-soft); color: var(--teal-deep); border-left: 3px solid var(--teal); }
.form-notice.is-error { background: #fdf1f0; color: #8c1d18; border-left: 3px solid #b3261e; }

.contact-form.is-flash { animation: flash 1.2s var(--ease); }
@keyframes flash { 0% { box-shadow: 0 0 0 0 rgba(201,218,110,.9); } 100% { box-shadow: 0 0 0 18px rgba(201,218,110,0); } }

/* ---------- Footer ---------- */
.site-footer { border-top: 1px solid var(--line); padding: 44px 0; background: var(--paper); }
.footer-inner { display: grid; grid-template-columns: 1fr auto; gap: 18px 40px; align-items: center; }
.footer-id { margin: 0; font-size: 15px; color: var(--muted); display: flex; flex-wrap: wrap; gap: 4px 10px; }
.footer-name { font-family: var(--f-head); font-weight: 600; color: var(--ink); }
.footer-id .sep { color: #c3cccb; }
.footer-links { display: flex; flex-wrap: wrap; gap: 6px 22px; }
.footer-links a { position: relative; font-family: var(--f-head); font-size: 13.5px; font-weight: 500; color: var(--text); transition: color .3s var(--ease); }
.footer-links a:hover { color: var(--teal); }
.footer-copy { grid-column: 1 / -1; margin: 12px 0 0; padding-top: 22px; border-top: 1px solid var(--line); font-size: 13.5px; color: var(--muted); }

/* ==========================================================================
   Responsive
   ========================================================================== */
@media (max-width: 1080px) {
  .nav a:not(.btn) { padding: 8px 10px; }
  .nav a:not(.btn)::after { left: 10px; right: 10px; }
}

@media (max-width: 1080px) {
  .eco-grid { grid-template-columns: repeat(2, 1fr); }
  .eco-card-tech, .eco-card-corp { grid-column: 1 / -1; }
}

@media (max-width: 960px) {
  :root { --header-h: 66px; }
  body { font-size: 17px; }

  /* Mobile nav */
  .nav-toggle {
    display: inline-flex; flex-direction: column; justify-content: center; gap: 6px;
    width: 44px; height: 44px; padding: 0 10px; margin-right: -10px;
    background: none; border: 0; cursor: pointer; position: relative; z-index: 120;
  }
  .nav-toggle .bar { display: block; height: 1.5px; width: 24px; background: var(--ink); transition: transform .4s var(--ease-out), width .3s var(--ease); }
  .nav-toggle .bar:nth-child(3) { width: 16px; }
  .nav-open .nav-toggle .bar:nth-child(2) { transform: translateY(3.75px) rotate(45deg); }
  .nav-open .nav-toggle .bar:nth-child(3) { width: 24px; transform: translateY(-3.75px) rotate(-45deg); }

  .nav {
    position: fixed; inset: 0; z-index: 110;
    display: flex; align-items: center;
    padding: calc(var(--header-h) + 20px) var(--gutter) 40px;
    background: var(--paper);
    clip-path: inset(0 0 100% 0); visibility: hidden;
    transition: clip-path .6s var(--ease-out), visibility 0s linear .6s;
  }
  .nav-open .nav { clip-path: inset(0 0 0 0); visibility: visible; transition: clip-path .6s var(--ease-out), visibility 0s; }
  .nav ul { flex-direction: column; align-items: flex-start; gap: 0; width: 100%; }
  .nav li { width: 100%; opacity: 0; transform: translateY(14px); transition: opacity .4s var(--ease), transform .5s var(--ease-out); }
  .nav-open .nav li { opacity: 1; transform: none; }
  .nav-open .nav li:nth-child(1) { transition-delay: .12s; } .nav-open .nav li:nth-child(2) { transition-delay: .17s; }
  .nav-open .nav li:nth-child(3) { transition-delay: .22s; } .nav-open .nav li:nth-child(4) { transition-delay: .27s; }
  .nav-open .nav li:nth-child(5) { transition-delay: .32s; } .nav-open .nav li:nth-child(6) { transition-delay: .37s; }
  .nav a:not(.btn) { padding: 16px 0; font-size: 26px; font-weight: 600; color: var(--ink); border-bottom: 1px solid var(--line); }
  .nav a:not(.btn)::after { display: none; }
  .nav-cta { margin: 28px 0 0; }
  .nav-cta .btn { min-height: 52px; padding: 0 30px; font-size: 15px; }
  .nav-open { overflow: hidden; }
  .nav-open .site-header { background: var(--paper); border-color: transparent; }

  /* Hero: photo on top, buttons visible on first screen */
  .hero { padding-top: calc(var(--header-h) + 18px); background: var(--paper); }
  .hero-grid { grid-template-columns: 1fr; gap: 28px; }
  .hero-media { order: -1; }
  .hero-frame { inset: 14px -10px -10px 14px; }
  .hero-photo { aspect-ratio: auto; height: clamp(230px, 36svh, 440px); }
  .hero-photo img { object-position: 50% 14%; }
  .hero-headline { margin-top: 22px; padding-top: 20px; }
  .hero-actions { order: 1; margin-top: 24px; }
  .hero-text { order: 2; margin-top: 30px; }
  .scroll-cue { display: none; }

  .split { grid-template-columns: 1fr; gap: 30px; }
  .sec-head h2 { max-width: 20ch; }
  .about-portrait { max-width: 200px; margin-top: 26px; }
}

@media (max-width: 680px) {
  .stats { grid-template-columns: 1fr; }
  .stat, .stat + .stat { padding: 22px 0; border-left: 0; }
  .stat + .stat { border-top: 1px solid var(--line); }
  .stat-label { max-width: none; }

  .eco-grid { grid-template-columns: 1fr; }
  .eco-index a { padding-right: 30px; }
  .collab-grid { grid-template-columns: 1fr; }
  .move-list li { grid-template-columns: 1fr; gap: 6px; padding: 18px 0; }
  .move-list li::after { display: none; }
  .move-list .from, .move-list .to { grid-column: 1; grid-row: auto; }
  .move-list .to::before { content: "→ "; color: var(--lime); font-weight: 400; }

  .form-grid { grid-template-columns: 1fr; }
  .btn-row .btn, .about-card .btn, .eco-card-corp .btn { width: 100%; white-space: normal; text-align: center; padding-top: 12px; padding-bottom: 12px; }
  .btn-submit { width: 100%; }
  .footer-inner { grid-template-columns: 1fr; }
  .quote-mark { font-size: 76px; height: 40px; }
}

@media (max-width: 420px) {
  .hero-actions { display: grid; grid-template-columns: 1fr 1fr; gap: 10px; }
  .hero-actions .btn { padding: 0 12px; font-size: 13.5px; }
  .hero-actions .btn .ico { display: none; }
}

/* ---------- Reduced motion ---------- */
@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
  *, *::before, *::after { animation-duration: .001ms !important; animation-iteration-count: 1 !important; transition-duration: .001ms !important; transition-delay: 0s !important; }
  .js .reveal, .js .hero-headline, .js .hero-text, .js .hero-actions, .js .hero-frame { opacity: 1 !important; transform: none !important; }
  .js .hero-name .mask > span, .js .hero-role .mask > span, .js .hero-photo img { transform: none !important; }
  .js .hero-photo { clip-path: none !important; }
  .js .statement-quote .w { opacity: 1 !important; }
}

@media (max-width: 680px) {
  .eco-index .eco-dash { display: none; }
  .eco-index .eco-what { flex-basis: 100%; font-size: 15.5px; }
}
