@charset "UTF-8";

:root {
  --bg: #343941;
  --bg-deep: #282d34;
  --black: #101318;
  --black-soft: #181c22;
  --surface: rgba(236, 240, 247, 0.07);
  --line: rgba(236, 240, 247, 0.15);
  --line-strong: rgba(236, 240, 247, 0.28);
  --white: #f5f7fa;
  --text: #f2f4f7;
  --muted: #bac1cc;
  --dim: #858e9c;
  --silver: #aebbd0;
  --shadow: 0 42px 90px rgba(5, 7, 10, 0.36), 0 10px 28px rgba(5, 7, 10, 0.28);
  --shadow-soft: 0 26px 60px rgba(5, 7, 10, 0.25), 0 5px 18px rgba(5, 7, 10, 0.2);
  --radius-xl: 40px;
  --radius-lg: 29px;
  --radius-md: 20px;
  --max: 1280px;
  --header: 76px;
}

* { box-sizing: border-box; }

html {
  scroll-behavior: smooth;
  scroll-padding-top: calc(var(--header) + 24px);
}

body {
  margin: 0;
  min-width: 320px;
  overflow-x: hidden;
  color: var(--text);
  background:
    radial-gradient(circle at 8% 2%, rgba(181, 199, 227, 0.13), transparent 26rem),
    linear-gradient(145deg, #3b414a, #30353c 54%, #292e35);
  font-family: Inter, ui-sans-serif, -apple-system, BlinkMacSystemFont, "Segoe UI", Helvetica, Arial, sans-serif;
  font-size: 16px;
  line-height: 1.5;
  text-rendering: optimizeLegibility;
  -webkit-font-smoothing: antialiased;
}

body::before {
  position: fixed;
  inset: 0;
  z-index: -1;
  content: "";
  opacity: 0.1;
  pointer-events: none;
  background-image:
    linear-gradient(rgba(255,255,255,0.045) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255,255,255,0.035) 1px, transparent 1px);
  background-size: 88px 88px;
  mask-image: linear-gradient(to bottom, #000, transparent 55%);
}

a { color: inherit; text-decoration: none; }
img { display: block; max-width: 100%; }
button, summary, a { -webkit-tap-highlight-color: transparent; }
::selection { color: #111419; background: #e2e8f2; }

.skip-link {
  position: fixed;
  top: 10px;
  left: 10px;
  z-index: 1000;
  padding: 10px 16px;
  color: #111419;
  background: white;
  border-radius: 8px;
  transform: translateY(-150%);
}
.skip-link:focus { transform: translateY(0); }

.section-shell { width: min(calc(100% - 64px), var(--max)); margin-inline: auto; }

.site-header {
  position: sticky;
  top: 0;
  z-index: 100;
  height: var(--header);
  padding: 10px 0;
  background: linear-gradient(to bottom, rgba(42,47,54,0.94), rgba(42,47,54,0.78));
  border-bottom: 1px solid rgba(236,240,247,0.09);
  backdrop-filter: blur(22px) saturate(125%);
}

.header-shell {
  width: min(calc(100% - 40px), 1380px);
  height: 100%;
  margin-inline: auto;
  display: grid;
  grid-template-columns: auto 1fr auto;
  align-items: center;
  gap: 34px;
}

.brand { display: inline-flex; align-items: center; gap: 12px; width: fit-content; }
.brand-mark {
  width: 42px;
  height: 42px;
  display: grid;
  place-items: center;
  overflow: hidden;
  background: #090b0e;
  border: 1px solid rgba(255,255,255,0.13);
  border-radius: 12px;
  box-shadow: inset 0 1px rgba(255,255,255,0.08), 0 8px 18px rgba(5,7,10,0.28);
}
.brand-mark img { width: 31px; height: auto; }
.brand-name { font-size: 0.86rem; font-weight: 720; letter-spacing: 0.24em; }

.desktop-nav { justify-self: center; display: flex; align-items: center; gap: 28px; }
.desktop-nav > a, .ecosystem-menu > summary {
  color: #c8ced7;
  font-size: 0.78rem;
  font-weight: 560;
  letter-spacing: 0.02em;
  cursor: pointer;
  transition: color 170ms ease;
}
.desktop-nav > a:hover, .desktop-nav > a:focus-visible, .ecosystem-menu > summary:hover, .ecosystem-menu > summary:focus-visible { color: white; }
.ecosystem-menu { position: relative; }
.ecosystem-menu > summary { display: flex; align-items: center; gap: 8px; list-style: none; }
.ecosystem-menu > summary::-webkit-details-marker { display: none; }
.ecosystem-menu > summary span {
  width: 18px;
  height: 18px;
  display: grid;
  place-items: center;
  color: #aab3c0;
  font-size: 0.75rem;
  font-weight: 400;
  border: 1px solid var(--line);
  border-radius: 50%;
  transition: transform 170ms ease;
}
.ecosystem-menu[open] > summary span { transform: rotate(45deg); }
.ecosystem-popover {
  position: absolute;
  top: calc(100% + 20px);
  right: 0;
  width: 286px;
  padding: 9px;
  background: rgba(17,20,24,0.98);
  border: 1px solid var(--line);
  border-radius: 19px;
  box-shadow: var(--shadow-soft);
}
.ecosystem-popover::before { position: absolute; top: -20px; right: 0; left: 0; height: 20px; content: ""; }
.ecosystem-popover a { display: grid; gap: 2px; padding: 12px 13px; border-radius: 12px; }
.ecosystem-popover a:hover, .ecosystem-popover a:focus-visible { background: rgba(255,255,255,0.06); }
.ecosystem-popover span { font-size: 0.84rem; font-weight: 650; }
.ecosystem-popover small { color: var(--dim); font-size: 0.67rem; }

.header-cta {
  min-height: 46px;
  padding: 0 18px;
  display: inline-flex;
  align-items: center;
  gap: 18px;
  color: #171a1f;
  font-size: 0.76rem;
  font-weight: 720;
  background: linear-gradient(145deg, #f4f6fa, #b9c3d1);
  border: 1px solid rgba(255,255,255,0.62);
  border-radius: 13px;
  box-shadow: 0 9px 24px rgba(5,7,10,0.26), inset 0 1px white;
  transition: transform 170ms ease;
}
.header-cta:hover, .header-cta:focus-visible { transform: translateY(-2px); }
.mobile-nav { display: none; }

.eyebrow {
  margin: 0 0 22px;
  display: flex;
  align-items: center;
  gap: 11px;
  color: #c7ced8;
  font-size: 0.68rem;
  font-weight: 720;
  letter-spacing: 0.19em;
  text-transform: uppercase;
}
.eyebrow > span { width: 6px; height: 6px; border-radius: 50%; background: #dbe5f4; box-shadow: 0 0 15px rgba(219,229,244,0.65); }

h1, h2 { text-wrap: balance; }
h1 em, h2 em { color: var(--silver); font-family: Georgia, "Times New Roman", serif; font-weight: 400; }

.button {
  min-height: 54px;
  padding: 0 22px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 28px;
  font-size: 0.78rem;
  font-weight: 720;
  border-radius: 15px;
  transition: transform 170ms ease, box-shadow 170ms ease, border-color 170ms ease;
}
.button:hover, .button:focus-visible { transform: translateY(-2px); }
.button-light { color: #14171b; background: linear-gradient(145deg,#f5f7fa,#b6c1cf); border: 1px solid rgba(255,255,255,0.7); box-shadow: 0 14px 28px rgba(5,7,10,0.3), inset 0 1px white; }
.button-dark { color: white; background: linear-gradient(145deg,#2b3037,#111419); border: 1px solid rgba(255,255,255,0.13); box-shadow: 0 16px 28px rgba(5,7,10,0.34), inset 0 1px rgba(255,255,255,0.08); }
.button-outline { color: var(--text); border: 1px solid var(--line-strong); background: rgba(255,255,255,0.03); }
.button-outline:hover, .button-outline:focus-visible { border-color: rgba(255,255,255,0.5); box-shadow: 0 12px 30px rgba(5,7,10,0.24); }
.text-link { width: fit-content; padding: 8px 0; display: inline-flex; align-items: center; gap: 10px; color: #d8dde5; font-size: 0.82rem; font-weight: 650; border-bottom: 1px solid rgba(255,255,255,0.23); }
.text-link:hover, .text-link:focus-visible { color: white; border-color: white; }

.hero {
  min-height: min(920px, calc(100svh - var(--header)));
  padding-top: 72px;
  padding-bottom: 96px;
  display: grid;
  grid-template-columns: minmax(0,0.93fr) minmax(500px,1.07fr);
  align-items: center;
  gap: clamp(36px,5vw,82px);
}
.hero-copy { position: relative; z-index: 3; }
.hero h1 { margin: 0; max-width: 730px; font-size: clamp(3.5rem,5.35vw,6.2rem); font-weight: 470; line-height: 0.98; letter-spacing: -0.066em; }
.hero-lead { max-width: 650px; margin: 34px 0 0; color: #c3cad3; font-size: clamp(1rem,1.35vw,1.18rem); line-height: 1.72; }
.hero-actions { margin-top: 36px; display: flex; align-items: center; gap: 28px; }
.hero-proof { margin-top: 48px; padding-top: 24px; display: grid; grid-template-columns: repeat(3,1fr); gap: 18px; border-top: 1px solid var(--line); }
.hero-proof div { display: grid; gap: 3px; }
.hero-proof strong { font-size: 0.74rem; font-weight: 700; }
.hero-proof span { color: var(--dim); font-size: 0.65rem; }

.hero-art {
  position: relative;
  min-height: 640px;
  margin: 0;
  overflow: hidden;
  background: #090c10;
  border: 1px solid rgba(239,243,249,0.14);
  border-radius: var(--radius-xl);
  box-shadow: var(--shadow), inset 0 1px rgba(255,255,255,0.1);
}
.hero-art .atmos-img { position: absolute; inset: 0; width: 100%; height: 100%; object-fit: cover; object-position: 56% center; filter: brightness(0.48) saturate(0.78) contrast(1.13); }
.hero-art-shade { position: absolute; inset: 0; background: linear-gradient(150deg,rgba(5,7,10,0.36),rgba(5,7,10,0.65)), radial-gradient(circle at 50% 48%,transparent,rgba(2,3,5,0.5)); }
.hero-symbol { position: absolute; top: 47%; left: 50%; width: 250px; height: auto; filter: drop-shadow(0 24px 42px rgba(0,0,0,0.42)); transform: translate(-50%,-50%); }
.art-caption { position: absolute; right: 32px; bottom: 30px; left: 32px; padding-top: 17px; display: flex; justify-content: space-between; align-items: end; gap: 30px; border-top: 1px solid rgba(255,255,255,0.2); }
.art-caption span, .digital-overlay span, .micro-label { color: #9ba5b4; font-family: ui-monospace,SFMono-Regular,Menlo,Consolas,monospace; font-size: 0.55rem; letter-spacing: 0.12em; text-transform: uppercase; }
.art-caption strong { max-width: 260px; font-size: 0.8rem; font-weight: 590; text-align: right; }
.hero-disciplines { grid-column: 2; margin-top: -45px; padding: 0 24px; display: grid; grid-template-columns: repeat(5,1fr); gap: 8px; }
.hero-disciplines span { padding: 10px 6px; color: #afb7c3; font-size: 0.58rem; text-align: center; border: 1px solid var(--line); border-radius: 9px; background: rgba(18,21,25,0.28); }

.launch {
  position: relative;
  padding: 130px 0 118px;
  overflow: hidden;
  background: #0e1115;
  border-top: 1px solid rgba(255,255,255,0.08);
  border-bottom: 1px solid rgba(255,255,255,0.08);
}
.launch-art { position: absolute; inset: 0; opacity: 0.15; background: linear-gradient(rgba(6,8,10,0.9),rgba(6,8,10,0.94)), url("atmos-4.webp") center/cover no-repeat; }
.launch-shell { position: relative; z-index: 2; }
.launch-heading { max-width: 900px; }
.launch-heading h2, .section-intro h2, .service-heading h2, .new-web h2, .digital-heading h2, .consulting-copy h2, .ecosystem-heading h2, .before-heading h2, .final-copy h2 { margin: 0; font-size: clamp(2.8rem,4.8vw,5.55rem); font-weight: 470; line-height: 1.01; letter-spacing: -0.06em; }
.launch-heading > p:last-child { max-width: 640px; margin: 24px 0 0; color: var(--muted); font-size: 1rem; line-height: 1.7; }

.founder-card {
  margin-top: 62px;
  padding: 34px;
  display: grid;
  grid-template-columns: 1.3fr 0.65fr auto 0.7fr 0.55fr 0.82fr;
  align-items: center;
  gap: 25px;
  color: #13161a;
  background: radial-gradient(circle at 80% 0%,rgba(255,255,255,0.8),transparent 18rem), linear-gradient(145deg,#edf2f8,#abb7c6);
  border: 1px solid rgba(255,255,255,0.7);
  border-radius: var(--radius-lg);
  box-shadow: 0 38px 80px rgba(2,4,7,0.42), inset 0 1px white;
}
.founder-intro { display: grid; gap: 7px; }
.founder-intro small, .price span, .regular-price span { color: #515966; font-family: ui-monospace,monospace; font-size: 0.56rem; letter-spacing: 0.1em; text-transform: uppercase; }
.founder-intro strong { margin-top: 4px; font-size: 1.6rem; font-weight: 570; letter-spacing: -0.035em; }
.founder-intro > span { color: #505864; font-size: 0.68rem; }
.price { display: grid; align-content: center; }
.price strong { font-size: clamp(2.8rem,4.2vw,4.6rem); font-weight: 540; line-height: 0.94; letter-spacing: -0.075em; }
.price sup { margin-right: 3px; font-size: 0.27em; vertical-align: 1.7em; letter-spacing: 0; }
.price small, .regular-price small { margin-top: 7px; color: #58616e; font-size: 0.59rem; }
.price-main strong { color: #34435a; }
.price-plus { color: #6e7784; font-family: Georgia,serif; font-size: 1.4rem; }
.regular-price { padding-left: 22px; display: grid; gap: 4px; border-left: 1px solid rgba(10,14,18,0.15); }
.regular-price strong { font-size: 1.2rem; font-weight: 650; }

.paths { padding-top: 136px; padding-bottom: 148px; }
.section-intro { display: grid; grid-template-columns: 1.15fr 0.55fr; align-items: end; gap: 80px; }
.section-intro .eyebrow { grid-column: 1 / -1; margin-bottom: -25px; }
.section-intro > p:last-child { max-width: 430px; margin: 0 0 6px; color: var(--muted); line-height: 1.72; }
.path-grid { margin-top: 70px; display: grid; grid-template-columns: repeat(3,1fr); gap: 18px; }
.path-card { overflow: hidden; background: linear-gradient(145deg,rgba(255,255,255,0.075),rgba(12,15,18,0.18)); border: 1px solid var(--line); border-radius: var(--radius-md); box-shadow: var(--shadow-soft), inset 0 1px rgba(255,255,255,0.07); }
.path-image { height: 225px; overflow: hidden; background: #111419; }
.path-image img { width: 100%; height: 100%; object-fit: cover; filter: brightness(0.68) saturate(0.72); transition: transform 500ms ease, filter 250ms ease; }
.path-card:hover .path-image img { transform: scale(1.025); filter: brightness(0.8) saturate(0.82); }
.path-content { min-height: 275px; padding: 28px; display: flex; flex-direction: column; }
.path-content > span { color: #9099a7; font-family: ui-monospace,monospace; font-size: 0.56rem; letter-spacing: 0.11em; }
.path-content h3 { margin: 28px 0 13px; font-size: 1.35rem; font-weight: 600; letter-spacing: -0.025em; }
.path-content p { margin: 0; color: var(--muted); font-size: 0.83rem; line-height: 1.65; }
.path-content a { width: fit-content; margin-top: auto; padding-top: 25px; color: #dde2ea; font-size: 0.72rem; font-weight: 650; }
.path-featured { background: linear-gradient(145deg,#e8edf4,#a9b5c5); color: #14171b; border-color: rgba(255,255,255,0.65); }
.path-featured .path-content > span, .path-featured .path-content p { color: #4f5865; }
.path-featured .path-content a { color: #14171b; }

.brand-service { padding: 140px 0 150px; background: linear-gradient(145deg,#20242a,#15181d 75%); border-top: 1px solid rgba(255,255,255,0.08); border-bottom: 1px solid rgba(255,255,255,0.08); }
.service-heading { display: grid; grid-template-columns: 1.05fr 0.65fr; align-items: end; gap: 82px; }
.service-heading > p { max-width: 470px; margin: 0 0 7px; color: var(--muted); font-size: 1rem; line-height: 1.72; }
.brand-layout { margin-top: 88px; display: grid; grid-template-columns: 0.95fr 1.05fr; align-items: center; gap: 82px; }
.identity-stage { position: relative; min-height: 640px; }
.identity-sheet { position: absolute; inset: 36px 34px 36px 0; padding: 25px; overflow: hidden; color: #12151a; background: linear-gradient(145deg,#f0f3f7,#adb9c8); border: 1px solid rgba(255,255,255,0.75); border-radius: 29px; box-shadow: 0 45px 80px rgba(3,5,8,0.4), inset 0 1px white; }
.identity-sheet::after { position: absolute; inset: 0; content: ""; opacity: 0.18; background-image: linear-gradient(rgba(10,14,19,0.1) 1px,transparent 1px), linear-gradient(90deg,rgba(10,14,19,0.1) 1px,transparent 1px); background-size: 35px 35px; mask-image: linear-gradient(135deg,#000,transparent 72%); }
.sheet-top { position: relative; z-index: 2; display: flex; justify-content: space-between; font-family: ui-monospace,monospace; font-size: 0.54rem; letter-spacing: 0.11em; }
.sheet-logo { position: relative; z-index: 2; height: 345px; display: grid; place-items: center; border-bottom: 1px solid rgba(10,14,19,0.16); }
.sheet-logo img { width: min(72%,360px); max-height: 255px; object-fit: contain; }
.sheet-palette { position: relative; z-index: 2; margin-top: 25px; display: grid; grid-template-columns: repeat(4,1fr); gap: 8px; }
.sheet-palette i { height: 48px; border: 1px solid rgba(0,0,0,0.16); border-radius: 9px; }
.sheet-palette i:nth-child(1) { background: #101318; } .sheet-palette i:nth-child(2) { background: #3b424c; } .sheet-palette i:nth-child(3) { background: #8794a7; } .sheet-palette i:nth-child(4) { background: #e7ebf1; }
.sheet-rule { position: relative; z-index: 2; margin-top: 25px; display: grid; gap: 8px; }
.sheet-rule i { height: 2px; background: rgba(0,0,0,0.2); } .sheet-rule i:nth-child(2) { width: 78%; } .sheet-rule i:nth-child(3) { width: 46%; }
.glass-tag { position: absolute; z-index: 4; width: 178px; padding: 14px 16px; display: grid; gap: 5px; background: linear-gradient(145deg,rgba(76,85,98,0.88),rgba(24,28,34,0.9)); border: 1px solid rgba(255,255,255,0.17); border-radius: 14px; box-shadow: 0 22px 40px rgba(4,6,9,0.34), inset 0 1px rgba(255,255,255,0.1); backdrop-filter: blur(13px); }
.glass-tag small { color: #929caa; font-family: ui-monospace,monospace; font-size: 0.52rem; letter-spacing: 0.14em; }
.glass-tag strong { font-size: 0.69rem; font-weight: 620; }
.tag-type { top: 12px; right: 0; } .tag-icon { top: 170px; left: -22px; } .tag-brand { right: -5px; bottom: 173px; } .tag-color { bottom: 24px; left: 40px; }
.service-list { border-top: 1px solid var(--line); }
.service-list > .micro-label { margin: 0; padding: 0 0 18px; }
.service-list article { padding: 20px 0; display: grid; grid-template-columns: 44px 1fr; gap: 18px; border-bottom: 1px solid var(--line); }
.service-list article > span { padding-top: 3px; color: var(--dim); font-family: ui-monospace,monospace; font-size: 0.57rem; }
.service-list h3 { margin: 0 0 5px; font-size: 0.94rem; font-weight: 620; }
.service-list p { margin: 0; color: var(--muted); font-size: 0.77rem; line-height: 1.58; }

.new-web { padding-top: 150px; padding-bottom: 158px; display: grid; grid-template-columns: 1.05fr 0.75fr; align-items: center; gap: 92px; }
.editorial-art { position: relative; min-height: 610px; margin: 0; overflow: hidden; background: #0b0e12; border: 1px solid var(--line); border-radius: var(--radius-xl); box-shadow: var(--shadow-soft), inset 0 1px rgba(255,255,255,0.07); }
.editorial-art img { position: absolute; inset: 0; width: 100%; height: 100%; object-fit: cover; filter: brightness(0.67) saturate(0.75); }
.editorial-art::after { position: absolute; inset: 0; content: ""; background: linear-gradient(to top,rgba(5,7,10,0.78),transparent 55%); }
.editorial-art figcaption { position: absolute; right: 30px; bottom: 28px; left: 30px; z-index: 2; padding-top: 16px; display: flex; justify-content: space-between; gap: 25px; border-top: 1px solid rgba(255,255,255,0.22); }
.editorial-art span { color: #99a3b1; font-family: ui-monospace,monospace; font-size: 0.54rem; letter-spacing: 0.11em; }
.editorial-art strong { font-size: 0.78rem; font-weight: 590; }
.new-web-copy > p:not(.eyebrow) { margin: 27px 0 0; color: var(--muted); font-size: 1rem; line-height: 1.76; }
.web-tags { margin-top: 32px; display: flex; flex-wrap: wrap; gap: 9px; }
.web-tags span { padding: 9px 11px; color: #c8ced7; font-size: 0.62rem; background: rgba(255,255,255,0.03); border: 1px solid var(--line); border-radius: 9px; }

.digital-product { padding: 142px 0 148px; background: #0e1115; border-top: 1px solid rgba(255,255,255,0.08); border-bottom: 1px solid rgba(255,255,255,0.08); }
.digital-heading { display: grid; grid-template-columns: 1.05fr 0.55fr; align-items: end; gap: 90px; }
.digital-heading > div:last-child p { max-width: 430px; margin: 0 0 25px; color: var(--muted); font-size: 1rem; line-height: 1.72; }
.digital-visual { position: relative; height: 590px; margin-top: 72px; overflow: hidden; border: 1px solid rgba(255,255,255,0.13); border-radius: var(--radius-lg); box-shadow: 0 35px 70px rgba(3,5,8,0.38); }
.digital-visual img { width: 100%; height: 100%; object-fit: cover; filter: brightness(0.62) saturate(0.78) contrast(1.06); }
.digital-visual::after { position: absolute; inset: 0; content: ""; background: linear-gradient(to top,rgba(5,7,10,0.82),transparent 55%); }
.digital-overlay { position: absolute; right: 34px; bottom: 31px; left: 34px; z-index: 2; padding-top: 17px; display: flex; justify-content: space-between; align-items: end; gap: 28px; border-top: 1px solid rgba(255,255,255,0.2); }
.digital-overlay strong { font-size: 0.88rem; font-weight: 590; }
.capability-grid { margin-top: 18px; display: grid; grid-template-columns: repeat(4,1fr); gap: 18px; }
.capability-grid article { min-height: 230px; padding: 26px; display: flex; flex-direction: column; justify-content: flex-end; background: linear-gradient(145deg,rgba(255,255,255,0.07),rgba(255,255,255,0.018)); border: 1px solid rgba(255,255,255,0.11); border-radius: 16px; }
.capability-grid article > span { margin-bottom: auto; color: #727c8b; font-family: ui-monospace,monospace; font-size: 0.54rem; }
.capability-grid h3 { margin: 0 0 11px; font-size: 1rem; font-weight: 610; }
.capability-grid p { margin: 0; color: #929aa7; font-size: 0.72rem; line-height: 1.62; }

.consulting { padding-top: 150px; padding-bottom: 152px; display: grid; grid-template-columns: 0.93fr 1.07fr; align-items: center; gap: 82px; }
.consulting-copy > p:not(.eyebrow) { max-width: 560px; margin: 28px 0 34px; color: var(--muted); line-height: 1.75; }
.consulting-panel { padding: 34px; display: grid; grid-template-columns: 0.82fr 1.18fr; gap: 31px; background: linear-gradient(145deg,rgba(255,255,255,0.08),rgba(13,16,19,0.22)); border: 1px solid var(--line); border-radius: var(--radius-lg); box-shadow: var(--shadow-soft), inset 0 1px rgba(255,255,255,0.08); }
.research-years { min-height: 400px; padding: 28px; display: flex; flex-direction: column; justify-content: flex-end; color: #14171b; background: linear-gradient(145deg,#eef2f7,#a9b5c4); border: 1px solid rgba(255,255,255,0.72); border-radius: 20px; box-shadow: 0 24px 46px rgba(5,7,10,0.28), inset 0 1px white; }
.research-years strong { font-size: clamp(5rem,8vw,8rem); font-weight: 520; line-height: 0.8; letter-spacing: -0.09em; }
.research-years span { margin-top: 24px; font-size: 0.82rem; font-weight: 720; }
.research-years small { margin-top: 7px; color: #4d5662; font-size: 0.65rem; line-height: 1.5; }
.research-scope { display: flex; flex-direction: column; }
.research-scope > .micro-label { margin: 0; padding-bottom: 15px; border-bottom: 1px solid var(--line); }
.research-scope ul { margin: 0; padding: 0; list-style: none; }
.research-scope li { min-height: 56px; display: grid; grid-template-columns: 34px 1fr; align-items: center; font-size: 0.81rem; font-weight: 570; border-bottom: 1px solid var(--line); }
.research-scope li span { color: var(--dim); font-family: ui-monospace,monospace; font-size: 0.53rem; }
.research-note { margin: auto 0 0; padding-top: 19px; color: #949dab; font-size: 0.66rem; line-height: 1.6; }
.consulting-flow { grid-column: 1 / -1; margin-top: 4px; display: grid; grid-template-columns: auto 1fr auto 1fr auto 1fr auto 1fr auto; align-items: center; gap: 18px; }
.consulting-flow span { color: #aeb6c1; font-size: 0.65rem; font-weight: 620; }
.consulting-flow i { height: 1px; background: var(--line); }

.ecosystem { padding: 142px 0 150px; color: #14171b; background: linear-gradient(145deg,#eef2f7,#a9b5c4); border-top: 1px solid rgba(255,255,255,0.6); }
.ecosystem .eyebrow { color: #4e5866; }
.ecosystem .eyebrow > span { background: #2f3b4d; box-shadow: none; }
.ecosystem-heading { display: grid; grid-template-columns: 1.05fr 0.55fr; align-items: end; gap: 84px; }
.ecosystem-heading h2 em { color: #52647f; }
.ecosystem-heading > p { max-width: 440px; margin: 0 0 7px; color: #4e5763; line-height: 1.72; }
.ecosystem-grid { margin-top: 66px; display: grid; grid-template-columns: repeat(4,1fr); gap: 15px; }
.ecosystem-grid a { position: relative; min-height: 285px; padding: 27px; display: flex; flex-direction: column; background: #111419; color: white; border: 1px solid rgba(255,255,255,0.12); border-radius: var(--radius-md); box-shadow: 0 20px 45px rgba(5,7,10,0.23); transition: transform 180ms ease; }
.ecosystem-grid a:hover, .ecosystem-grid a:focus-visible { transform: translateY(-4px); }
.ecosystem-grid span { color: #7f8997; font-family: ui-monospace,monospace; font-size: 0.55rem; }
.ecosystem-grid strong { margin-top: auto; font-size: 1.05rem; font-weight: 620; }
.ecosystem-grid p { margin: 9px 0 0; color: #9ea7b4; font-size: 0.72rem; line-height: 1.58; }
.ecosystem-grid b { position: absolute; top: 23px; right: 23px; width: 34px; height: 34px; display: grid; place-items: center; font-size: 0.75rem; font-weight: 500; border: 1px solid rgba(255,255,255,0.15); border-radius: 50%; }

.before { padding-top: 138px; padding-bottom: 150px; display: grid; grid-template-columns: 0.65fr 1.35fr; align-items: start; gap: 92px; }
.before-heading { position: sticky; top: 118px; }
.before-list { border-top: 1px solid var(--line); }
.before-list details { border-bottom: 1px solid var(--line); }
.before-list summary { min-height: 86px; display: grid; grid-template-columns: 42px 1fr auto; align-items: center; gap: 10px; cursor: pointer; list-style: none; font-size: 0.92rem; font-weight: 590; }
.before-list summary::-webkit-details-marker { display: none; }
.before-list summary span { color: var(--dim); font-family: ui-monospace,monospace; font-size: 0.55rem; }
.before-list summary b { width: 31px; height: 31px; display: grid; place-items: center; color: #b6bec9; font-size: 1rem; font-weight: 400; border: 1px solid var(--line); border-radius: 50%; transition: transform 180ms ease; }
.before-list details[open] summary b { transform: rotate(45deg); }
.before-list details > p { max-width: 720px; margin: -3px 48px 29px 52px; color: var(--muted); font-size: 0.81rem; line-height: 1.72; }

.final-cta { position: relative; min-height: 650px; margin-bottom: 70px; overflow: hidden; background: #0b0e12; border: 1px solid var(--line); border-radius: var(--radius-xl); box-shadow: var(--shadow), inset 0 1px rgba(255,255,255,0.08); }
.final-cta > img { position: absolute; inset: 0; width: 100%; height: 100%; object-fit: cover; object-position: center; filter: brightness(0.52) saturate(0.78); }
.final-shade { position: absolute; inset: 0; background: linear-gradient(90deg,rgba(5,7,10,0.93) 0%,rgba(5,7,10,0.65) 58%,rgba(5,7,10,0.25)), linear-gradient(to top,rgba(5,7,10,0.5),transparent 60%); }
.final-copy { position: relative; z-index: 2; max-width: 850px; min-height: 650px; padding: 78px 70px; display: flex; flex-direction: column; justify-content: center; align-items: flex-start; }
.final-copy > p:not(.eyebrow) { max-width: 630px; margin: 28px 0 35px; color: var(--muted); line-height: 1.72; }

.site-footer { padding: 74px 0 32px; background: #111419; border-top: 1px solid rgba(255,255,255,0.09); }
.footer-grid { display: grid; grid-template-columns: 0.65fr 1.35fr; gap: 86px; }
.footer-brand p { margin: 22px 0 0; color: var(--dim); font-size: 0.76rem; }
.footer-links { display: grid; grid-template-columns: repeat(3,1fr); gap: 46px; }
.footer-links > div { display: grid; align-content: start; gap: 10px; }
.footer-links strong { margin-bottom: 7px; color: #7f8997; font-size: 0.63rem; letter-spacing: 0.08em; text-transform: uppercase; }
.footer-links a { width: fit-content; color: #bac1cb; font-size: 0.75rem; }
.footer-links a:hover, .footer-links a:focus-visible { color: white; }
.footer-bottom { grid-column: 1 / -1; margin-top: 68px; padding-top: 24px; display: grid; grid-template-columns: 1fr auto auto; gap: 38px; color: #727b88; font-family: ui-monospace,monospace; font-size: 0.57rem; border-top: 1px solid rgba(255,255,255,0.09); }

@media (max-width: 1120px) {
  :root { --max: 1050px; }
  .desktop-nav { gap: 18px; }
  .hero { grid-template-columns: 0.92fr 1.08fr; gap: 38px; }
  .hero-art { min-height: 570px; }
  .founder-card { grid-template-columns: 1.2fr 0.65fr auto 0.7fr 0.55fr; }
  .founder-card .button { grid-column: 1 / -1; justify-self: end; }
  .brand-layout { gap: 45px; }
  .capability-grid { grid-template-columns: 1fr 1fr; }
  .ecosystem-grid { grid-template-columns: 1fr 1fr; }
}

@media (max-width: 900px) {
  :root { --header: 70px; }
  .section-shell { width: min(calc(100% - 40px),var(--max)); }
  .desktop-nav, .header-cta { display: none; }
  .header-shell { grid-template-columns: 1fr auto; }
  .mobile-nav { position: relative; display: block; }
  .mobile-nav > summary { width: 43px; height: 43px; display: grid; align-content: center; gap: 6px; list-style: none; cursor: pointer; background: rgba(10,12,15,0.22); border: 1px solid var(--line); border-radius: 12px; }
  .mobile-nav > summary::-webkit-details-marker { display: none; }
  .mobile-nav > summary span { width: 18px; height: 1px; margin-inline: auto; display: block; background: white; }
  .mobile-nav nav { position: absolute; top: calc(100% + 12px); right: 0; width: min(310px,calc(100vw - 40px)); padding: 10px; display: grid; background: rgba(17,20,24,0.98); border: 1px solid var(--line); border-radius: 18px; box-shadow: var(--shadow-soft); }
  .mobile-nav nav a { padding: 12px; color: #c3cad3; font-size: 0.78rem; border-radius: 10px; }
  .mobile-nav nav a:hover, .mobile-nav nav a:focus-visible { color: white; background: rgba(255,255,255,0.06); }
  .mobile-nav nav .mobile-contact { margin-top: 6px; color: #15181d; background: #d9e1ec; }
  .hero { grid-template-columns: 1fr; min-height: auto; padding-top: 70px; }
  .hero-art { min-height: 610px; }
  .hero-disciplines { grid-column: 1; margin-top: -50px; }
  .founder-card { grid-template-columns: 1fr 1fr; }
  .founder-intro { grid-column: 1 / -1; }
  .price-plus { display: none; }
  .regular-price { border-left: 0; padding-left: 0; }
  .founder-card .button { grid-column: 1 / -1; width: 100%; }
  .section-intro, .service-heading, .digital-heading, .ecosystem-heading, .before, .footer-grid { grid-template-columns: 1fr; gap: 36px; }
  .section-intro .eyebrow { margin-bottom: -5px; }
  .path-grid { grid-template-columns: 1fr; }
  .path-card { display: grid; grid-template-columns: 0.85fr 1.15fr; }
  .path-image { height: auto; min-height: 300px; }
  .brand-layout { grid-template-columns: 1fr; gap: 60px; }
  .identity-stage { min-height: 680px; }
  .identity-sheet { right: 38px; }
  .new-web { grid-template-columns: 1fr; gap: 55px; }
  .editorial-art { min-height: 580px; }
  .digital-visual { height: 520px; }
  .consulting { grid-template-columns: 1fr; gap: 52px; }
  .consulting-panel { grid-template-columns: 0.82fr 1.18fr; }
  .before-heading { position: static; }
  .final-copy { padding: 60px 50px; }
}

@media (max-width: 620px) {
  .section-shell { width: min(calc(100% - 28px),var(--max)); }
  .header-shell { width: calc(100% - 24px); }
  .hero { padding-top: 55px; padding-bottom: 76px; }
  .hero h1 { font-size: clamp(3.05rem,14.2vw,4.8rem); }
  .hero-lead { margin-top: 27px; }
  .hero-actions { align-items: stretch; flex-direction: column; gap: 12px; }
  .hero-actions .button { width: 100%; }
  .hero-actions .text-link { width: fit-content; }
  .hero-proof { grid-template-columns: 1fr; gap: 14px; }
  .hero-art { min-height: 470px; border-radius: 27px; }
  .hero-symbol { width: 180px; }
  .art-caption { right: 22px; bottom: 21px; left: 22px; flex-direction: column; align-items: flex-start; gap: 7px; }
  .art-caption strong { text-align: left; }
  .hero-disciplines { margin-top: -36px; padding: 0 10px; grid-template-columns: 1fr 1fr; }
  .hero-disciplines span:last-child { grid-column: 1 / -1; }
  .launch, .paths, .brand-service, .digital-product, .ecosystem { padding-top: 96px; padding-bottom: 102px; }
  .launch-heading h2, .section-intro h2, .service-heading h2, .new-web h2, .digital-heading h2, .consulting-copy h2, .ecosystem-heading h2, .before-heading h2, .final-copy h2 { font-size: clamp(2.45rem,11.5vw,4rem); }
  .founder-card { margin-top: 45px; padding: 25px; gap: 28px 18px; }
  .founder-intro strong { font-size: 1.35rem; }
  .price strong { font-size: 3.4rem; }
  .regular-price { grid-column: 1 / -1; padding-top: 18px; border-top: 1px solid rgba(10,14,18,0.14); }
  .path-grid { margin-top: 48px; }
  .path-card { grid-template-columns: 1fr; }
  .path-image { min-height: 220px; }
  .path-content { min-height: 260px; }
  .brand-service { padding-top: 100px; }
  .brand-layout { margin-top: 58px; }
  .identity-stage { min-height: 530px; }
  .identity-sheet { inset: 25px 18px 25px 0; padding: 18px; }
  .sheet-logo { height: 280px; }
  .sheet-logo img { width: 68%; max-height: 205px; }
  .sheet-palette i { height: 42px; }
  .glass-tag { width: 142px; padding: 10px 12px; }
  .glass-tag strong { font-size: 0.59rem; }
  .tag-type { top: 5px; } .tag-icon { top: 138px; left: -7px; } .tag-brand { right: -3px; bottom: 125px; } .tag-color { bottom: 5px; left: 22px; }
  .service-list article { grid-template-columns: 36px 1fr; padding: 18px 0; }
  .new-web { padding-top: 100px; padding-bottom: 105px; }
  .editorial-art { min-height: 430px; border-radius: 27px; }
  .editorial-art figcaption, .digital-overlay { right: 21px; bottom: 20px; left: 21px; flex-direction: column; gap: 6px; }
  .digital-heading { gap: 28px; }
  .digital-visual { height: 430px; margin-top: 52px; }
  .capability-grid { grid-template-columns: 1fr; }
  .capability-grid article { min-height: 210px; }
  .consulting { padding-top: 100px; padding-bottom: 105px; }
  .consulting-panel { padding: 20px; grid-template-columns: 1fr; }
  .research-years { min-height: 290px; }
  .research-note { margin-top: 22px; }
  .consulting-flow { grid-template-columns: 1fr; gap: 8px; }
  .consulting-flow i { width: 1px; height: 14px; margin-left: 3px; }
  .ecosystem-heading { gap: 26px; }
  .ecosystem-grid { margin-top: 46px; grid-template-columns: 1fr; }
  .ecosystem-grid a { min-height: 230px; }
  .before { padding-top: 98px; padding-bottom: 105px; gap: 40px; }
  .before-list summary { min-height: 80px; grid-template-columns: 30px 1fr auto; font-size: 0.81rem; }
  .before-list details > p { margin: -2px 8px 27px 40px; }
  .final-cta { min-height: 610px; margin-bottom: 30px; border-radius: 27px; }
  .final-copy { min-height: 610px; padding: 42px 25px; }
  .footer-grid { gap: 48px; }
  .footer-links { grid-template-columns: 1fr 1fr; }
  .footer-links > div:last-child { grid-column: 1 / -1; }
  .footer-bottom { margin-top: 46px; grid-template-columns: 1fr; gap: 12px; }
}

@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
  *, *::before, *::after { transition-duration: 0.01ms !important; scroll-behavior: auto !important; }
}
