:root {
  --ink: #f4f1f7;
  --muted: #a7a0ad;
  --dim: #736b7b;
  --line: rgba(255, 255, 255, .11);
  --panel: rgba(255, 255, 255, .045);
  --violet: #8d63ff;
  --violet-bright: #b69cff;
  --blue: #72a8ff;
  --rose: #ff7db6;
  --gold: #e8bf75;
  --bg: #07070a;
  --display: 'Plus Jakarta Sans', sans-serif;
  --body: 'Manrope', sans-serif;
  --mono: 'DM Mono', monospace;
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body { position: relative; margin: 0; overflow-x: hidden; background: var(--bg); color: var(--ink); font-family: var(--body); -webkit-font-smoothing: antialiased; }
body, .site-header, .type-break, .expertise-card, .method-card, .outcome-panel, .contact { transition: color .45s ease, background-color .45s ease, border-color .45s ease, box-shadow .45s ease; }
a { color: inherit; }
button, input, textarea { font: inherit; }
.shell { width: min(1240px, calc(100% - 80px)); margin-inline: auto; }
.section { padding-block: clamp(110px, 12vw, 180px); }

body::before { content: ''; position: fixed; inset: 0; z-index: -2; background: radial-gradient(circle at 75% 12%, rgba(126, 83, 240, .12), transparent 25%), radial-gradient(circle at 15% 58%, rgba(87, 61, 160, .08), transparent 28%), #07070a; }
body::after { content: ''; position: fixed; inset: 0; z-index: 50; pointer-events: none; opacity: .025; background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 180 180' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='.85' numOctaves='4' stitchTiles='stitchTiles'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23n)'/%3E%3C/svg%3E"); }
.ambient-canvas { position: fixed; inset: 0; z-index: 0; width: 100%; height: 100%; pointer-events: none; opacity: .55; mix-blend-mode: screen; }
main, .footer { position: relative; z-index: 1; }
.cursor-glow { position: fixed; z-index: 0; width: 420px; height: 420px; border-radius: 50%; pointer-events: none; background: radial-gradient(circle, rgba(141, 99, 255, .09), transparent 68%); transform: translate(-50%, -50%); opacity: 0; transition: opacity .4s; }
body.pointer-active .cursor-glow { opacity: 1; }
.scroll-progress { position: fixed; inset: 0 0 auto; height: 2px; z-index: 100; background: rgba(255,255,255,.04); }
.scroll-progress span { display: block; width: 100%; height: 100%; transform: scaleX(0); transform-origin: left; background: linear-gradient(90deg, var(--violet), var(--rose)); box-shadow: 0 0 14px var(--violet); }

.site-header { position: absolute; top: 22px; left: 50%; z-index: 20; transform: translateX(-50%); height: 76px; display: flex; align-items: center; padding: 0 24px; border: 1px solid rgba(255,255,255,.09); border-radius: 18px; background: rgba(10, 9, 14, .68); backdrop-filter: blur(22px) saturate(140%); box-shadow: 0 20px 60px rgba(0,0,0,.32), inset 0 1px rgba(255,255,255,.05); }
.brand { display: inline-flex; align-items: center; gap: 12px; text-decoration: none; }
.brand-glyph { position: relative; width: 31px; height: 31px; display: grid; place-items: center; border: 1px solid rgba(182,156,255,.75); border-radius: 9px; transform: rotate(45deg); box-shadow: inset 0 0 18px rgba(141,99,255,.17), 0 0 20px rgba(141,99,255,.12); }
.brand-glyph i { position: absolute; display: block; width: 14px; height: 1px; background: var(--violet-bright); }
.brand-glyph i:first-child { transform: translateY(-4px); }
.brand-glyph i:last-child { transform: translateY(4px); }
.brand-type { color: #fff; font: 700 12px/1 var(--display); letter-spacing: .12em; }
.brand-type span { color: var(--violet-bright); }
.nav-links { display: flex; gap: 6px; margin-left: auto; margin-right: 22px; }
.nav-links a { padding: 10px 14px; color: var(--muted); font-size: 12px; text-decoration: none; border-radius: 9px; transition: .3s ease; }
.nav-links a:hover { color: #fff; background: rgba(255,255,255,.055); }
.header-contact { display: inline-flex; align-items: center; gap: 14px; padding: 12px 15px; border: 1px solid rgba(182,156,255,.28); border-radius: 11px; background: rgba(141,99,255,.09); color: #fff; font-size: 11px; text-decoration: none; transition: border-color .3s, background .3s; }
.header-contact:hover { border-color: rgba(182,156,255,.65); background: rgba(141,99,255,.18); }
.header-contact span { color: var(--violet-bright); font-size: 16px; }
.theme-toggle { display: inline-flex; align-items: center; gap: 7px; margin-right: 9px; padding: 10px 11px; border: 1px solid var(--line); border-radius: 10px; background: rgba(255,255,255,.025); color: var(--muted); cursor: pointer; font: 500 10px var(--body); transition: color .3s, border-color .3s, background .3s, transform .3s; }
.theme-toggle:hover { color: var(--ink); border-color: rgba(182,156,255,.36); background: rgba(141,99,255,.08); transform: translateY(-1px); }
.theme-icon { color: var(--violet-bright); font-size: 15px; line-height: 1; }
.menu-toggle { display: none; width: 40px; height: 40px; border: 0; background: transparent; padding: 10px; }
.menu-toggle span { display: block; height: 1px; background: #fff; margin: 6px 0; }

.hero { position: relative; isolation: isolate; min-height: 980px; padding-top: 205px; display: grid; grid-template-columns: minmax(0, 1.05fr) minmax(440px, .95fr); align-content: start; gap: 70px; }
.liquid-surface { position: absolute; z-index: 0; inset: 0 -20vw; overflow: hidden; pointer-events: none; background: #07050c; mask-image: linear-gradient(to bottom, #000 0%, #000 72%, transparent 100%); }
.liquid-surface canvas { position: absolute; inset: 0; width: 100%; height: 100%; display: block; filter: contrast(1.18) saturate(1.28) brightness(.88); transform: scale(1.035); }
.liquid-veil { position: absolute; inset: 0; background: linear-gradient(90deg, rgba(7,7,10,.93) 0%, rgba(7,7,10,.72) 34%, rgba(7,7,10,.2) 70%, rgba(7,7,10,.06) 100%), linear-gradient(180deg, rgba(7,7,10,.5) 0%, transparent 34%, rgba(7,7,10,.12) 68%, #07070a 100%); }
.hero-grid { position: absolute; z-index: 1; inset: 0 -20vw; opacity: .15; background-image: linear-gradient(rgba(255,255,255,.055) 1px, transparent 1px), linear-gradient(90deg, rgba(255,255,255,.055) 1px, transparent 1px); background-size: 72px 72px; mask-image: radial-gradient(ellipse 72% 72% at 50% 38%, #000 20%, transparent 78%); }
.hero-copy, .hero-stage, .hero-proof { position: relative; z-index: 2; }
.hero-aura { position: absolute; z-index: 1; border-radius: 50%; filter: blur(5px); pointer-events: none; }
.aura-one { width: 650px; height: 650px; right: -18%; top: 8%; background: radial-gradient(circle, rgba(120,77,231,.17), rgba(61,44,108,.05) 48%, transparent 70%); }
.aura-two { width: 380px; height: 380px; left: -15%; top: 36%; background: radial-gradient(circle, rgba(255,125,182,.07), transparent 70%); }
.overline { display: flex; align-items: center; gap: 12px; margin: 0 0 26px; color: #c0b8c7; font: 500 10px/1 var(--mono); letter-spacing: .13em; text-transform: uppercase; }
.overline > span { width: 26px; height: 1px; background: var(--violet-bright); box-shadow: 7px 0 var(--rose); }
.hero h1, h2 { margin: 0; font-family: var(--display); letter-spacing: -.065em; }
.hero h1 { max-width: 750px; font-size: clamp(66px, 7.4vw, 112px); line-height: .92; font-weight: 700; }
.hero h1 em, h2 em { color: transparent; font-style: normal; background: linear-gradient(100deg, #fff 4%, #cdbfff 43%, #8d63ff 76%, #ff8dc0 110%); -webkit-background-clip: text; background-clip: text; }
.hero-lede { max-width: 600px; margin: 34px 0 0; color: var(--muted); font-size: 15px; line-height: 1.85; }
.hero-actions { display: flex; gap: 12px; margin-top: 38px; }
.button { position: relative; display: inline-flex; align-items: center; justify-content: center; gap: 22px; min-height: 54px; padding: 0 22px; border: 1px solid transparent; border-radius: 12px; overflow: hidden; cursor: pointer; text-decoration: none; font-size: 11px; font-weight: 700; letter-spacing: .01em; transition: transform .3s, border-color .3s, background .3s, box-shadow .3s; }
.button::before { content: ''; position: absolute; inset: 0; background: linear-gradient(110deg, transparent 20%, rgba(255,255,255,.42) 48%, transparent 75%); transform: translateX(-120%); transition: transform .7s ease; }
.button:hover::before { transform: translateX(120%); }
.button span, .button b { position: relative; z-index: 1; }
.button b { font-size: 17px; font-weight: 400; }
.button-primary { color: #0b0811; background: linear-gradient(105deg, #d8ccff, #9a76ff 52%, #f28abb); box-shadow: 0 12px 35px rgba(119,76,219,.25); }
.button-primary:hover { box-shadow: 0 15px 44px rgba(141,99,255,.4); }
.button-ghost { color: #ddd8e2; border-color: var(--line); background: rgba(255,255,255,.025); }
.button-ghost:hover { border-color: rgba(182,156,255,.35); background: rgba(255,255,255,.055); }

.hero-stage { position: relative; height: 510px; perspective: 1000px; }
.stage-orbit { position: absolute; border: 1px solid rgba(182,156,255,.2); border-radius: 50%; }
.orbit-a { width: 420px; height: 420px; top: 34px; left: 48px; animation: orbit 24s linear infinite; }
.orbit-b { width: 310px; height: 465px; top: 10px; left: 105px; transform: rotate(48deg); border-color: rgba(114,168,255,.22); animation: orbit-reverse 31s linear infinite; }
.orbit-c { width: 500px; height: 240px; top: 130px; left: 4px; transform: rotate(-18deg); border-color: rgba(255,125,182,.16); animation: orbit-pulse 8s ease-in-out infinite; }
.stage-core { position: absolute; top: 164px; left: 178px; width: 196px; height: 196px; padding: 38px; display: flex; flex-direction: column; justify-content: flex-end; border-radius: 50%; background: radial-gradient(circle at 32% 25%, #59448e, #20172f 45%, #0c0b11 72%); border: 1px solid rgba(255,255,255,.15); color: #fff; box-shadow: inset 12px 12px 30px rgba(255,255,255,.06), inset -18px -18px 38px rgba(0,0,0,.62), 0 35px 90px rgba(100,59,196,.28); animation: core-float 6s ease-in-out infinite; }
.stage-core::after { content: ''; position: absolute; inset: 14px; border: 1px solid rgba(255,255,255,.08); border-radius: 50%; }
.stage-core small { color: var(--violet-bright); font: 9px var(--mono); letter-spacing: .12em; }
.stage-core strong { margin-top: 8px; font: 600 18px/1.2 var(--display); letter-spacing: -.04em; }
.core-pulse { position: absolute; right: 43px; top: 42px; width: 9px; height: 9px; border-radius: 50%; background: #d6c8ff; box-shadow: 0 0 0 8px rgba(182,156,255,.08), 0 0 26px #b69cff; animation: pulse 2.5s ease-in-out infinite; }
.signal-card { position: absolute; z-index: 3; display: flex; align-items: center; gap: 13px; padding: 14px 16px; border: 1px solid rgba(255,255,255,.11); border-radius: 13px; background: rgba(15,13,20,.72); backdrop-filter: blur(18px); box-shadow: 0 18px 45px rgba(0,0,0,.3); animation: signal-float 6s ease-in-out infinite; }
.signal-card > span:not(.signal-bars) { width: 32px; height: 32px; display: grid; place-items: center; border-radius: 9px; background: rgba(141,99,255,.14); color: var(--violet-bright); font: 10px var(--mono); }
.signal-card small, .signal-card strong { display: block; }
.signal-card small { color: #7f7788; font: 8px var(--mono); letter-spacing: .11em; }
.signal-card strong { margin-top: 4px; font-size: 12px; }
.signal-one { right: 0; top: 72px; }
.signal-two { left: 12px; bottom: 52px; animation-delay: -2s; }
.signal-three { right: 10px; bottom: 76px; padding: 12px 15px; animation-delay: -4s; }
.signal-bars { height: 32px; display: flex; gap: 3px; align-items: flex-end; }
.signal-bars i { display: block; width: 4px; border-radius: 3px; background: linear-gradient(#c9b8ff, #7754d8); }
.signal-bars i:nth-child(1) { height: 12px; }.signal-bars i:nth-child(2) { height: 22px; }.signal-bars i:nth-child(3) { height: 17px; }.signal-bars i:nth-child(4) { height: 29px; }
.hero-proof { grid-column: 1 / -1; display: grid; grid-template-columns: repeat(3, 1fr); margin-top: 62px; border-top: 1px solid var(--line); border-bottom: 1px solid var(--line); }
.hero-proof > div { display: flex; align-items: center; gap: 18px; padding: 26px 30px; border-right: 1px solid var(--line); }
.hero-proof > div:last-child { border-right: 0; }
.hero-proof strong { min-width: 58px; font: 600 38px var(--display); letter-spacing: -.06em; }
.hero-proof strong::after { content: '+'; color: var(--violet-bright); font-size: 17px; vertical-align: top; margin-left: 2px; }
.hero-proof > div:last-child strong::after { content: ''; }
.hero-proof span { color: var(--dim); font-size: 10px; line-height: 1.6; }

.type-break { position: relative; z-index: 1; overflow: hidden; padding: clamp(55px, 7vw, 90px) 0; border-block: 1px solid var(--line); background: rgba(255,255,255,.018); text-align: center; }
.type-break::before { content: ''; position: absolute; inset: -30% 18%; pointer-events: none; background: radial-gradient(ellipse, rgba(141,99,255,.12), transparent 68%); }
.type-line { position: relative; width: max-content; min-width: 100%; color: #f5f2f8; font: 700 clamp(52px, 8.4vw, 132px)/.88 var(--display); letter-spacing: -.075em; white-space: nowrap; transition: transform .8s cubic-bezier(.2,.8,.2,1), color .4s; }
.type-line-one { transform: translateX(-3%); }
.type-line-two { transform: translateX(3%); color: transparent; -webkit-text-stroke: 1px rgba(235,228,242,.34); }
.type-line i { color: var(--violet); font-style: normal; font-weight: 500; }
.type-line em { color: transparent; font-style: normal; -webkit-text-stroke: 1px rgba(182,156,255,.66); }
.type-break:hover .type-line-one { transform: translateX(1.5%); color: #d8cdff; }
.type-break:hover .type-line-two { transform: translateX(-1.5%); }
.type-break > p { position: relative; margin: 34px auto 0; padding-inline: 20px; color: var(--dim); font: 10px/1.7 var(--mono); letter-spacing: .08em; text-transform: uppercase; }

.expertise, .outcomes, .founder { position: relative; isolation: isolate; }
.expertise::before, .outcomes::before, .founder::before { content: ''; position: absolute; z-index: -1; width: 720px; height: 520px; pointer-events: none; opacity: .15; filter: blur(.2px); background: repeating-radial-gradient(ellipse at center, transparent 0 34px, rgba(182,156,255,.25) 35px 36px, transparent 37px 63px); mask-image: radial-gradient(ellipse, #000, transparent 72%); animation: contour-drift 16s ease-in-out infinite alternate; }
.expertise::before { right: -28%; top: 5%; transform: rotate(-18deg); }
.outcomes::before { left: -34%; top: 8%; transform: rotate(15deg); animation-delay: -5s; }
.founder::before { right: -30%; bottom: 0; transform: rotate(-12deg); animation-delay: -9s; }

.section-heading { display: grid; grid-template-columns: .6fr 1.4fr; align-items: end; gap: 40px; margin-bottom: 70px; }
.section-heading .overline { align-self: start; }
h2 { font-size: clamp(52px, 6.3vw, 90px); line-height: .98; font-weight: 650; }
.section-heading > p:last-child { grid-column: 2; max-width: 520px; margin: 0; color: var(--muted); font-size: 14px; line-height: 1.8; }
.bento-grid { display: grid; grid-template-columns: repeat(3, minmax(0, 1fr)); grid-template-rows: repeat(2, minmax(330px, auto)); gap: 16px; }
.expertise-card { --accent: var(--violet); position: relative; min-width: 0; min-height: 330px; padding: clamp(26px, 3.2vw, 42px); overflow: hidden; display: flex; flex-direction: column; justify-content: space-between; border: 1px solid var(--line); border-radius: 22px; background: linear-gradient(145deg, rgba(255,255,255,.055), rgba(255,255,255,.018)); transform-style: preserve-3d; transition: border-color .35s, box-shadow .35s, transform .18s ease-out; }
.expertise-card[data-accent='blue'] { --accent: var(--blue); }.expertise-card[data-accent='gold'] { --accent: var(--gold); }.expertise-card[data-accent='rose'] { --accent: var(--rose); }
.expertise-card:hover { border-color: color-mix(in srgb, var(--accent) 45%, transparent); box-shadow: 0 30px 70px rgba(0,0,0,.32), inset 0 1px rgba(255,255,255,.07); }
.card-wide { grid-column: 1 / 3; grid-row: 1; }
.card-tall { grid-column: 3; grid-row: 1 / 3; min-height: 680px; }
.card-flare { position: absolute; inset: -45%; pointer-events: none; opacity: 0; background: radial-gradient(circle at var(--x,50%) var(--y,50%), color-mix(in srgb, var(--accent) 20%, transparent), transparent 27%); transition: opacity .35s; }
.expertise-card:hover .card-flare { opacity: 1; }
.expertise-card::after { content: ''; position: absolute; inset: 0; pointer-events: none; background: linear-gradient(115deg, transparent 35%, rgba(255,255,255,.12) 48%, transparent 60%); transform: translateX(-110%); transition: transform .8s ease; }
.expertise-card:hover::after { transform: translateX(110%); }
.card-top, .card-copy, .card-tags, .product-window { position: relative; z-index: 1; transform: translateZ(18px); }
.card-top { display: flex; justify-content: space-between; align-items: center; }
.card-index { color: #6e6774; font: 10px var(--mono); }
.card-icon { width: 44px; height: 44px; display: grid; place-items: center; border: 1px solid color-mix(in srgb, var(--accent) 38%, transparent); border-radius: 50%; color: var(--accent); font-size: 19px; background: color-mix(in srgb, var(--accent) 7%, transparent); }
.card-copy > p:first-child { margin: 0 0 13px; color: var(--accent); font: 500 9px var(--mono); letter-spacing: .14em; }
.card-copy h3 { max-width: 470px; margin: 0; font: 600 clamp(25px, 3vw, 39px)/1.08 var(--display); letter-spacing: -.045em; }
.card-copy > p:last-child { max-width: 560px; margin: 18px 0 0; color: var(--muted); font-size: 13px; line-height: 1.75; }
.card-tags { display: flex; flex-wrap: wrap; gap: 7px; margin-top: 28px; }
.card-tags span { padding: 8px 10px; border: 1px solid var(--line); border-radius: 999px; color: #98919f; font: 9px var(--mono); }
.product-window { height: 260px; margin: 50px 0; border: 1px solid rgba(114,168,255,.22); border-radius: 16px; background: linear-gradient(145deg, rgba(114,168,255,.09), rgba(0,0,0,.1)); box-shadow: 0 26px 60px rgba(0,0,0,.2); overflow: hidden; }
.product-window > span { display: inline-block; width: 6px; height: 6px; margin: 15px 1px 0 12px; border-radius: 50%; background: #615c67; }
.product-window > span + span { margin-left: 1px; }
.product-window div { position: absolute; inset: 52px 24px 24px; display: grid; grid-template-columns: 1.3fr .7fr; grid-template-rows: 1fr 1fr; gap: 9px; }
.product-window i { display: block; border: 1px solid rgba(114,168,255,.16); border-radius: 10px; background: linear-gradient(135deg, rgba(114,168,255,.12), rgba(141,99,255,.04)); }
.product-window i:first-child { grid-row: 1 / 3; }
.product-window i:first-child::after { content: ''; display: block; width: 42%; height: 42%; margin: 25% auto; border: 1px solid rgba(182,156,255,.28); border-radius: 50%; box-shadow: 0 0 30px rgba(141,99,255,.18); }

.method { position: relative; background: linear-gradient(180deg, transparent, rgba(141,99,255,.055) 18%, rgba(141,99,255,.055) 82%, transparent); }
.method::before { content: ''; position: absolute; inset: 13% 0; pointer-events: none; border-block: 1px solid rgba(255,255,255,.05); }
.method::after { content: ''; position: absolute; inset: 8% 0; z-index: -1; pointer-events: none; opacity: .18; background-image: radial-gradient(circle, rgba(182,156,255,.32) 1px, transparent 1.5px); background-size: 28px 28px; mask-image: linear-gradient(90deg, transparent, #000 22%, #000 78%, transparent); animation: dot-field 18s linear infinite; }
.method-layout { display: grid; grid-template-columns: .8fr 1.2fr; gap: clamp(70px, 10vw, 150px); align-items: start; }
.method-intro { position: sticky; top: 120px; }
.method-intro > p:not(.overline) { max-width: 470px; margin: 30px 0; color: var(--muted); font-size: 14px; line-height: 1.85; }
.text-link { display: inline-flex; gap: 14px; align-items: center; padding-bottom: 8px; border-bottom: 1px solid rgba(182,156,255,.4); color: #e9e5ec; font-size: 11px; text-decoration: none; }
.text-link span { color: var(--violet-bright); font-size: 17px; transition: transform .3s; }
.text-link:hover span { transform: translate(3px,-3px); }
.method-steps { display: grid; gap: 14px; }
.method-card { position: relative; min-height: 230px; padding: 35px 34px; display: grid; grid-template-columns: 45px 1fr 50px; gap: 20px; align-items: start; overflow: hidden; border: 1px solid var(--line); border-radius: 18px; background: rgba(10,9,14,.7); transition: transform .4s, border-color .4s, background .4s; }
.method-card:hover { transform: translateX(-10px); border-color: rgba(182,156,255,.36); background: rgba(22,17,33,.9); }
.method-card::before { content: ''; position: absolute; width: 180px; height: 180px; right: -120px; top: 20px; border-radius: 50%; background: radial-gradient(circle, rgba(141,99,255,.14), transparent 70%); transition: transform .5s; }
.method-card:hover::before { transform: translateX(-55px) scale(1.3); }
.step-number { color: #696270; font: 10px var(--mono); }
.method-card small { color: var(--violet-bright); font: 9px var(--mono); letter-spacing: .13em; }
.method-card h3 { margin: 15px 0 0; font: 600 25px/1.1 var(--display); letter-spacing: -.04em; }
.method-card p { max-width: 470px; margin: 16px 0 0; color: var(--muted); font-size: 12px; line-height: 1.7; }
.step-mark { width: 44px; height: 44px; display: grid; place-items: center; border: 1px solid rgba(182,156,255,.2); border-radius: 50%; color: var(--violet-bright); font-size: 19px; transition: transform .5s; }
.method-card:hover .step-mark { transform: rotate(90deg); }

.outcome-panel { padding: clamp(45px, 7vw, 90px); display: grid; grid-template-columns: .9fr 1.1fr; gap: clamp(50px, 8vw, 120px); border: 1px solid rgba(182,156,255,.19); border-radius: 28px; background: radial-gradient(circle at 10% 20%, rgba(141,99,255,.13), transparent 35%), linear-gradient(145deg, #14111b, #0b0a0e); box-shadow: 0 40px 100px rgba(0,0,0,.28); }
.outcome-copy h2 { font-size: clamp(42px, 5vw, 68px); }
.outcome-list > div { display: grid; grid-template-columns: 35px 1fr 25px; gap: 15px; align-items: center; padding: 24px 0; border-top: 1px solid var(--line); transition: padding .3s, border-color .3s; }
.outcome-list > div:hover { padding-left: 10px; border-color: rgba(182,156,255,.5); }
.outcome-list span { color: #665f6d; font: 9px var(--mono); }
.outcome-list p { margin: 0; font-size: 14px; }
.outcome-list i { color: var(--violet-bright); font-style: normal; transition: transform .3s; }
.outcome-list > div:hover i { transform: translate(4px,-4px); }

.founder { display: grid; grid-template-columns: .88fr 1.12fr; gap: clamp(70px, 10vw, 150px); align-items: center; }
.founder-portrait { position: relative; min-height: 600px; overflow: hidden; border: 1px solid var(--line); border-radius: 26px; background: radial-gradient(circle at 50% 45%, rgba(141,99,255,.25), transparent 36%), linear-gradient(145deg, #17131f, #09090c); box-shadow: 0 40px 90px rgba(0,0,0,.25); }
.portrait-grid { position: absolute; inset: 0; opacity: .3; background-image: linear-gradient(rgba(255,255,255,.05) 1px, transparent 1px), linear-gradient(90deg, rgba(255,255,255,.05) 1px, transparent 1px); background-size: 42px 42px; mask-image: linear-gradient(to bottom, #000, transparent); }
.portrait-monogram { position: absolute; inset: 0; display: grid; place-items: center; color: transparent; font: 700 clamp(150px, 20vw, 250px)/1 var(--display); letter-spacing: -.16em; -webkit-text-stroke: 1px rgba(215,204,255,.34); text-shadow: 0 0 65px rgba(141,99,255,.2); transform: translateX(-12px); }
.portrait-orbit { position: absolute; width: 390px; height: 390px; left: calc(50% - 195px); top: calc(50% - 195px); border: 1px solid rgba(182,156,255,.25); border-radius: 50%; animation: portrait-orbit 13s linear infinite; }
.portrait-orbit::before { content: ''; position: absolute; width: 10px; height: 10px; left: 41px; top: 46px; border-radius: 50%; background: var(--violet-bright); box-shadow: 0 0 22px var(--violet); }
.founder-badge { position: absolute; left: 28px; bottom: 28px; display: flex; align-items: center; gap: 9px; padding: 11px 14px; border: 1px solid var(--line); border-radius: 999px; background: rgba(7,7,10,.7); backdrop-filter: blur(12px); color: #b8b1be; font: 9px var(--mono); letter-spacing: .08em; text-transform: uppercase; }
.founder-badge span { width: 7px; height: 7px; border-radius: 50%; background: #7be6b0; box-shadow: 0 0 12px #7be6b0; }
.founder-copy h2 { font-size: clamp(57px, 6vw, 84px); }
.founder-lede { max-width: 570px; margin: 30px 0; color: #d5ceda; font-size: 17px; line-height: 1.7; }
blockquote { max-width: 580px; margin: 36px 0; padding: 0 0 0 22px; border-left: 2px solid var(--violet); color: var(--muted); font-size: 14px; line-height: 1.85; }
.founder-contact { display: flex; align-items: center; flex-wrap: wrap; gap: 24px; }
.founder-mail { color: #9e96a5; font-size: 11px; text-underline-offset: 6px; }
.founder-mail:hover { color: #fff; }

.contact { position: relative; overflow: hidden; padding-block: clamp(110px, 12vw, 170px); border-block: 1px solid var(--line); background: radial-gradient(circle at 80% 35%, rgba(141,99,255,.2), transparent 28%), linear-gradient(120deg, #0f0c15, #09090d 65%); }
.contact::before { content: ''; position: absolute; width: 600px; height: 600px; right: -180px; top: -220px; border: 1px solid rgba(182,156,255,.13); border-radius: 50%; box-shadow: 0 0 0 70px rgba(182,156,255,.025), 0 0 0 140px rgba(182,156,255,.018); }
.contact-layout { position: relative; display: grid; grid-template-columns: .85fr 1.15fr; gap: clamp(70px, 9vw, 135px); align-items: center; }
.contact-copy h2 { font-size: clamp(50px, 5.7vw, 80px); }
.contact-copy > p:not(.overline) { max-width: 510px; margin: 30px 0; color: var(--muted); font-size: 14px; line-height: 1.8; }
.phone-link { display: inline-flex; flex-direction: column; gap: 6px; margin-top: 18px; text-decoration: none; }
.phone-link small { color: var(--violet-bright); font: 9px var(--mono); letter-spacing: .13em; }
.phone-link strong { font: 600 22px var(--display); transition: color .3s; }
.phone-link:hover strong { color: var(--violet-bright); }
.contact-form { position: relative; min-height: 700px; padding: 104px 70px 118px; overflow: hidden; display: flex; flex-direction: column; justify-content: center; border: 1px solid rgba(218,201,255,.22); border-radius: 48% 52% 42% 58% / 23% 29% 71% 77%; background: linear-gradient(145deg, #241438 0%, #5c2ca2 56%, #7d367e 112%); color: #fff; box-shadow: 0 38px 95px rgba(68,31,125,.34), inset 0 1px rgba(255,255,255,.14); isolation: isolate; animation: leaf-sway 8s ease-in-out infinite; }
.contact-form::before { content: ''; position: absolute; inset: 18px; z-index: 1; pointer-events: none; border: 1px solid rgba(255,255,255,.14); border-radius: 46% 54% 40% 60% / 21% 31% 69% 79%; }
.contact-form::after { content: ''; position: absolute; inset: 0; z-index: 0; pointer-events: none; background: radial-gradient(circle at 78% 16%, rgba(205,178,255,.32), transparent 24%), radial-gradient(circle at 12% 86%, rgba(18,8,42,.42), transparent 30%); mix-blend-mode: screen; animation: leaf-light 5.5s ease-in-out infinite alternate; }
.contact-form > *:not(.leaf-orb) { position: relative; z-index: 2; }
.contact-form > .form-row, .contact-form > label, .contact-form > .form-footer { width: min(82%, 520px); align-self: center; }
.leaf-orb { position: absolute; z-index: 1; border: 1px solid rgba(255,255,255,.13); border-radius: 50%; pointer-events: none; }
.leaf-orb-one { width: 250px; height: 250px; right: -82px; top: -85px; }
.leaf-orb-two { width: 180px; height: 180px; left: -70px; bottom: -62px; }
.form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 22px; }
.contact-form label { display: block; margin-bottom: 28px; }
.contact-form label span { display: block; margin-bottom: 10px; color: #b9b1c0; font: 9px var(--mono); letter-spacing: .1em; text-transform: uppercase; }
.contact-form input, .contact-form textarea { width: 100%; padding: 12px 0; border: 0; border-bottom: 1px solid rgba(255,255,255,.15); outline: 0; resize: vertical; color: #fff; background: transparent; font-size: 13px; transition: border-color .3s; }
.contact-form input:focus, .contact-form textarea:focus { border-color: var(--violet-bright); }
.contact-form input::placeholder, .contact-form textarea::placeholder { color: #67616c; }
.form-footer { display: flex; justify-content: space-between; align-items: center; gap: 20px; margin-top: 8px; padding: 0 8px 8px; }
.form-status { min-height: 18px; margin: 0; color: #aaa2b0; font-size: 10px; line-height: 1.5; }
.button-light { flex: 0 0 auto; color: #121017; background: #f5f2f8; }
.button-light:hover { background: #d7caff; }
.button:disabled { opacity: .55; cursor: wait; }

.footer { min-height: 130px; display: grid; grid-template-columns: 1fr auto 1fr; gap: 30px; align-items: center; }
.footer > p { color: #6f6875; font-size: 10px; }
.footer > div { display: flex; justify-content: flex-end; gap: 24px; color: #6f6875; font-size: 9px; }
.footer > div a { text-decoration: none; color: #a9a1af; }

.reveal { opacity: 0; transform: translateY(28px); transition: opacity .85s cubic-bezier(.2,.8,.2,1), transform .85s cubic-bezier(.2,.8,.2,1); }
.reveal.is-visible { opacity: 1; transform: none; }
.method-card.reveal:nth-child(2), .expertise-card.reveal:nth-child(2) { transition-delay: .08s; }
.method-card.reveal:nth-child(3), .expertise-card.reveal:nth-child(3) { transition-delay: .16s; }
.method-card.reveal:nth-child(4), .expertise-card.reveal:nth-child(4) { transition-delay: .24s; }

@keyframes orbit { to { transform: rotate(360deg); } }
@keyframes orbit-reverse { to { transform: rotate(-312deg); } }
@keyframes orbit-pulse { 0%,100% { transform: rotate(-18deg) scale(1); opacity: .7; } 50% { transform: rotate(-10deg) scale(1.08); opacity: 1; } }
@keyframes core-float { 0%,100% { transform: translateY(0) rotate(-1deg); } 50% { transform: translateY(-12px) rotate(2deg); } }
@keyframes pulse { 0%,100% { transform: scale(.8); opacity: .6; } 50% { transform: scale(1.35); opacity: 1; } }
@keyframes signal-float { 0%,100% { transform: translateY(0); } 50% { transform: translateY(-9px); } }
@keyframes portrait-orbit { to { transform: rotate(360deg); } }
@keyframes contour-drift { from { translate: 0 -10px; scale: .96; } to { translate: -35px 25px; scale: 1.06; } }
@keyframes dot-field { to { background-position: 28px 28px; } }
@keyframes leaf-sway { 0%,100% { transform: rotate(-.3deg) translate3d(0,0,0); border-radius: 48% 52% 42% 58% / 23% 29% 71% 77%; } 40% { transform: rotate(.45deg) translate3d(4px,-5px,0); border-radius: 52% 48% 46% 54% / 26% 25% 75% 74%; } 72% { transform: rotate(-.15deg) translate3d(-3px,4px,0); border-radius: 45% 55% 44% 56% / 21% 32% 68% 79%; } }
@keyframes leaf-light { from { transform: translate(-4%,3%) scale(1); } to { transform: translate(5%,-3%) scale(1.12); } }

.light-theme {
  --ink: #19151f;
  --muted: #685f70;
  --dim: #8b8291;
  --line: rgba(35, 25, 45, .12);
  --panel: rgba(255, 255, 255, .72);
  --violet: #6f43e5;
  --violet-bright: #7650dd;
  --bg: #f4f1f7;
}
.light-theme body { background: #f4f1f7; }
.light-theme body::before { background: radial-gradient(circle at 75% 12%, rgba(126,83,240,.14), transparent 26%), radial-gradient(circle at 15% 58%, rgba(220,149,199,.12), transparent 30%), #f4f1f7; }
.light-theme .ambient-canvas { opacity: .26; mix-blend-mode: multiply; }
.light-theme .cursor-glow { background: radial-gradient(circle, rgba(111,67,229,.1), transparent 68%); }
.light-theme .site-header { border-color: rgba(65,45,78,.12); background: rgba(255,255,255,.72); box-shadow: 0 20px 60px rgba(64,38,82,.12), inset 0 1px rgba(255,255,255,.85); }
.light-theme .brand-type { color: #1b1620; }
.light-theme .nav-links a { color: #665d6c; }
.light-theme .nav-links a:hover { color: #1d1722; background: rgba(111,67,229,.07); }
.light-theme .theme-toggle { background: rgba(111,67,229,.055); color: #544b5a; }
.light-theme .overline { color: #5d5364; }
.light-theme .header-contact { color: #281d35; border-color: rgba(111,67,229,.22); background: rgba(111,67,229,.075); }
.light-theme .liquid-surface { background: #eee8f4; opacity: .38; mix-blend-mode: multiply; }
.light-theme .liquid-surface canvas { filter: contrast(1.08) saturate(1.08) brightness(1.42); }
.light-theme .liquid-veil { background: linear-gradient(90deg, rgba(244,241,247,.96), rgba(244,241,247,.8) 35%, rgba(244,241,247,.25) 72%, rgba(244,241,247,.08)), linear-gradient(180deg, rgba(244,241,247,.35), transparent 48%, #f4f1f7 100%); }
.light-theme .hero-grid { background-image: linear-gradient(rgba(40,25,53,.065) 1px, transparent 1px), linear-gradient(90deg, rgba(40,25,53,.065) 1px, transparent 1px); opacity: .35; }
.light-theme .button-ghost { color: #302735; background: rgba(255,255,255,.42); }
.light-theme .signal-card { border-color: rgba(48,31,62,.12); background: rgba(255,255,255,.76); color: #1b1620; box-shadow: 0 18px 45px rgba(62,39,78,.12); }
.light-theme .signal-card small { color: #827887; }
.light-theme .hero-proof { background: rgba(255,255,255,.16); }
.light-theme .type-break { background: rgba(255,255,255,.34); }
.light-theme .type-line { color: #211a27; }
.light-theme .type-line-two { color: transparent; -webkit-text-stroke-color: rgba(42,29,52,.32); }
.light-theme .type-line em { -webkit-text-stroke-color: rgba(111,67,229,.65); }
.light-theme .expertise-card { border-color: rgba(46,30,58,.12); background: linear-gradient(145deg, rgba(255,255,255,.9), rgba(247,242,250,.7)); box-shadow: 0 20px 55px rgba(67,40,83,.08); }
.light-theme .card-index { color: #928897; }
.light-theme .card-tags span { color: #6b626f; background: rgba(255,255,255,.5); }
.light-theme .product-window { background: linear-gradient(145deg, rgba(114,168,255,.14), rgba(255,255,255,.55)); box-shadow: 0 26px 60px rgba(67,40,83,.1); }
.light-theme .method { background: linear-gradient(180deg, transparent, rgba(111,67,229,.05) 18%, rgba(111,67,229,.05) 82%, transparent); }
.light-theme .method-card { border-color: rgba(46,30,58,.12); background: rgba(255,255,255,.75); box-shadow: 0 14px 40px rgba(67,40,83,.06); }
.light-theme .method-card:hover { background: #fff; border-color: rgba(111,67,229,.28); }
.light-theme .text-link { color: #302735; }
.light-theme .outcome-panel { border-color: rgba(111,67,229,.17); background: radial-gradient(circle at 10% 20%, rgba(111,67,229,.12), transparent 35%), linear-gradient(145deg, #fff, #eee8f2); box-shadow: 0 40px 100px rgba(67,40,83,.12); }
.light-theme .outcome-list span { color: #928798; }
.light-theme .founder-portrait { box-shadow: 0 40px 90px rgba(67,40,83,.16); }
.light-theme blockquote { color: #5d5363; }
.light-theme .founder-mail { color: #62576a; }
.light-theme .contact { border-color: rgba(46,30,58,.12); background: radial-gradient(circle at 80% 35%, rgba(111,67,229,.14), transparent 28%), linear-gradient(120deg, #eee8f2, #faf8fb 65%); }
.light-theme .contact::before { border-color: rgba(111,67,229,.14); box-shadow: 0 0 0 70px rgba(111,67,229,.025), 0 0 0 140px rgba(111,67,229,.018); }
.light-theme .contact-form { color: #fff; background: linear-gradient(145deg, #2a173f, #6b35b2 56%, #91448c 112%); }
.light-theme .contact-form label span { color: #e2d8ec; }
.light-theme .contact-form input, .light-theme .contact-form textarea { color: #fff; border-color: rgba(255,255,255,.22); }
.light-theme .contact-form input::placeholder, .light-theme .contact-form textarea::placeholder { color: #b7a9c0; }
.light-theme .footer > p, .light-theme .footer > div { color: #7d7383; }
.light-theme .footer > div a { color: #4f4555; }

/* Light mode is a separate 2-D doodle art direction. */
.light-theme body { color: #1d1822; background-color: #f3eef8; background-image: linear-gradient(rgba(45,34,55,.055) 1px, transparent 1px), linear-gradient(90deg, rgba(45,34,55,.055) 1px, transparent 1px), radial-gradient(circle at 18% 18%, rgba(202,185,255,.5), transparent 28%), radial-gradient(circle at 82% 52%, rgba(255,205,229,.42), transparent 25%); background-size: 72px 72px, 72px 72px, auto, auto; }
.light-theme body::before { display: none; }
.light-theme .ambient-canvas, .light-theme .cursor-glow, .light-theme .liquid-surface { display: none; }
.light-theme .site-header { border: 2px solid #201925; border-radius: 13px; background: #fffdfd; backdrop-filter: none; box-shadow: 6px 6px 0 #bba6ff; }
.light-theme .brand-glyph { border: 2px solid #201925; border-radius: 7px; background: #c7b5ff; box-shadow: none; }
.light-theme .brand-glyph i { background: #201925; }
.light-theme .theme-toggle, .light-theme .header-contact { border: 2px solid #201925; border-radius: 8px; background: #e2d8ff; box-shadow: 3px 3px 0 #201925; color: #201925; }
.light-theme .theme-toggle:hover, .light-theme .header-contact:hover { border-color: #201925; background: #d2c2ff; transform: translate(-1px,-1px); box-shadow: 4px 4px 0 #201925; }
.light-theme .nav-links a:hover { color: #201925; background: #eee7ff; }
.light-theme .hero-grid { z-index: 0; opacity: .6; background-image: linear-gradient(rgba(45,34,55,.07) 1px, transparent 1px), linear-gradient(90deg, rgba(45,34,55,.07) 1px, transparent 1px); mask-image: linear-gradient(to bottom, #000 0 75%, transparent); }
.light-theme .hero-aura { display: block; filter: none; background: transparent; border: 2px solid #201925; opacity: .25; }
.light-theme .aura-one { width: 430px; height: 430px; right: -5%; top: 20%; box-shadow: 18px 18px 0 rgba(187,166,255,.45); }
.light-theme .aura-two { width: 180px; height: 180px; left: -7%; top: 52%; border-style: dashed; }
.light-theme .hero h1, .light-theme h2 { color: #1c1721; }
.light-theme .hero h1 em, .light-theme h2 em { color: #7552e8; background: none; -webkit-background-clip: initial; background-clip: initial; -webkit-text-fill-color: #7552e8; }
.light-theme .hero-lede, .light-theme .section-heading > p:last-child, .light-theme .method-intro > p:not(.overline), .light-theme .method-card p, .light-theme .card-copy > p:last-child, .light-theme .founder-lede, .light-theme .contact-copy > p:not(.overline) { color: #514858; }
.light-theme .overline { color: #302836; }
.light-theme .overline > span { height: 3px; background: #201925; box-shadow: 8px 0 0 #7552e8; }
.light-theme .button { border: 2px solid #201925; border-radius: 8px; box-shadow: 5px 5px 0 #201925; }
.light-theme .button::before { display: none; }
.light-theme .button-primary { color: #201925; background: #bca8ff; }
.light-theme .button-ghost { color: #201925; background: #fffdfd; }
.light-theme .button:hover { transform: translate(-2px,-2px); box-shadow: 7px 7px 0 #201925; }
.light-theme .stage-orbit { border: 2px solid #201925; opacity: .38; }
.light-theme .orbit-b { border-style: dashed; }.light-theme .orbit-c { border-color: #7552e8; }
.light-theme .stage-core { border: 2px solid #201925; color: #201925; background: #c8b7ff; box-shadow: 9px 9px 0 #201925; }
.light-theme .stage-core::after { border-color: rgba(32,25,37,.35); }
.light-theme .stage-core small { color: #4e2ec2; }
.light-theme .core-pulse { background: #201925; box-shadow: 0 0 0 7px rgba(32,25,37,.12); }
.light-theme .signal-card { border: 2px solid #201925; border-radius: 8px; background: #fffdfd; color: #201925; box-shadow: 5px 5px 0 #201925; backdrop-filter: none; }
.light-theme .signal-card > span:not(.signal-bars) { background: #ddd1ff; color: #201925; }
.light-theme .signal-card small { color: #605667; }
.light-theme .hero-proof { border-color: #201925; background: rgba(255,255,255,.45); box-shadow: 7px 7px 0 #c6b5ff; }
.light-theme .hero-proof > div { border-color: #201925; }
.light-theme .hero-proof span { color: #514858; }
.light-theme .type-break { border-block: 2px solid #201925; background: #ddd2ff; }
.light-theme .type-break::before { background: radial-gradient(circle, #fff 0 3px, transparent 4px); background-size: 28px 28px; opacity: .45; }
.light-theme .type-line, .light-theme .type-line-two { color: #201925; -webkit-text-stroke: 0; }
.light-theme .type-line-two { color: #7552e8; }
.light-theme .type-line em { color: #fffdfd; -webkit-text-stroke: 2px #201925; }
.light-theme .type-break:hover .type-line-one { color: #201925; }
.light-theme .type-break > p { color: #514858; }
.light-theme .expertise::before, .light-theme .outcomes::before, .light-theme .founder::before { opacity: .35; background: repeating-radial-gradient(ellipse at center, transparent 0 34px, #7552e8 35px 37px, transparent 38px 63px); }
.light-theme .expertise::after, .light-theme .outcomes::after, .light-theme .founder::after { position: absolute; z-index: -1; color: #7552e8; font: 700 90px/1 var(--display); opacity: .55; transform: rotate(-12deg); }
.light-theme .expertise::after { content: '✦'; left: -5%; top: 35%; }.light-theme .outcomes::after { content: '↗'; right: -5%; top: 16%; }.light-theme .founder::after { content: '○'; right: -4%; bottom: 18%; }
.light-theme .expertise-card { border: 2px solid #201925; border-radius: 14px; background: #fffdfd; box-shadow: 8px 8px 0 #201925; }
.light-theme .expertise-card:nth-child(2) { background: #d9ceff; }.light-theme .expertise-card:nth-child(3) { background: #fff0b9; }.light-theme .expertise-card:nth-child(4) { background: #ffd6e7; }
.light-theme .expertise-card::after, .light-theme .card-flare { display: none; }
.light-theme .expertise-card:hover { border-color: #201925; box-shadow: 12px 12px 0 #201925; }
.light-theme .card-icon { border: 2px solid #201925; background: #fffdfd; color: #201925; }
.light-theme .card-tags span { border: 1px solid #201925; background: #fffdfd; color: #201925; }
.light-theme .product-window { border: 2px solid #201925; border-radius: 10px; background: #eee8ff; box-shadow: 6px 6px 0 #201925; }
.light-theme .product-window i { border: 1px solid #201925; background: #fffdfd; }
.light-theme .method { background: rgba(221,210,255,.32); }
.light-theme .method::before { border-color: rgba(32,25,37,.25); }.light-theme .method::after { opacity: .35; background-image: radial-gradient(circle, #7552e8 1.5px, transparent 2px); }
.light-theme .method-card { border: 2px solid #201925; border-radius: 12px; background: #fffdfd; box-shadow: 7px 7px 0 #201925; }
.light-theme .method-card:hover { border-color: #201925; background: #e8dfff; box-shadow: 10px 10px 0 #201925; }
.light-theme .step-mark { border: 2px solid #201925; color: #201925; background: #d9ceff; }
.light-theme .text-link { color: #201925; border-bottom: 2px solid #201925; }
.light-theme .outcome-panel { border: 2px solid #201925; border-radius: 16px; background: #fff0b9; box-shadow: 10px 10px 0 #201925; }
.light-theme .outcome-list > div { border-color: #201925; }.light-theme .outcome-list span { color: #6b5d45; }
.light-theme .founder-portrait { border: 2px solid #201925; border-radius: 14px; background: #bba6ff; box-shadow: 10px 10px 0 #201925; }
.light-theme .portrait-grid { opacity: .16; background-image: linear-gradient(#201925 1px, transparent 1px), linear-gradient(90deg, #201925 1px, transparent 1px); }
.light-theme .portrait-monogram { -webkit-text-stroke: 2px #201925; text-shadow: none; }.light-theme .portrait-orbit { border: 2px dashed #201925; }
.light-theme blockquote { border-color: #201925; color: #4d4453; }
.light-theme .contact { border-block: 2px solid #201925; background: #e4dcf2; }
.light-theme .contact::before { border: 2px dashed #7552e8; box-shadow: 0 0 0 70px rgba(117,82,232,.06), 0 0 0 140px rgba(117,82,232,.035); }
.light-theme .contact-form { border: 2px solid #201925; color: #201925; background: #bca8ff; box-shadow: 11px 11px 0 #201925; }
.light-theme .contact-form::before { border: 2px dashed rgba(32,25,37,.46); }
.light-theme .contact-form::after { background: radial-gradient(circle at 78% 16%, rgba(255,255,255,.48), transparent 24%), radial-gradient(circle at 12% 86%, rgba(117,82,232,.18), transparent 30%); mix-blend-mode: normal; }
.light-theme .leaf-orb { border-color: rgba(32,25,37,.36); }
.light-theme .contact-form label span { color: #352b3b; }
.light-theme .contact-form input, .light-theme .contact-form textarea { color: #201925; border-color: rgba(32,25,37,.55); }
.light-theme .contact-form input::placeholder, .light-theme .contact-form textarea::placeholder { color: #675a70; }
.light-theme .form-status { color: #352b3b; }
.light-theme .button-light { border: 2px solid #201925; color: #201925; background: #fffdfd; }
.light-theme .phone-link strong, .light-theme .footer { color: #201925; }

@media (max-width: 1050px) {
  .hero { grid-template-columns: minmax(0, 1fr) 420px; gap: 30px; }
  .hero-stage { transform: scale(.85); transform-origin: center; }
  .method-layout, .founder, .contact-layout { gap: 60px; }
  .founder-portrait { min-height: 530px; }
}

@media (max-width: 820px) {
  .shell { width: min(100% - 40px, 680px); }
  .section { padding-block: 100px; }
  .site-header { top: 12px; height: 64px; padding: 0 15px; }
  .brand-type { font-size: 10px; }
  .nav-links { position: absolute; top: 72px; left: 0; right: 0; display: none; margin: 0; padding: 12px; flex-direction: column; border: 1px solid var(--line); border-radius: 14px; background: rgba(9,8,12,.96); box-shadow: 0 20px 50px rgba(0,0,0,.5); }
  .nav-links.open { display: flex; }
  .nav-links a { padding: 12px; }
  .header-contact { display: none; }
  .menu-toggle { display: block; margin-left: 4px; }
  .theme-toggle { margin-left: auto; margin-right: 2px; }
  .light-theme .nav-links { background: rgba(255,255,255,.97); box-shadow: 0 20px 50px rgba(64,38,82,.15); }
  .light-theme .menu-toggle span { background: #211a27; }
  .hero { min-height: 1120px; padding-top: 150px; display: block; }
  .hero h1 { font-size: clamp(55px, 13.2vw, 84px); }
  .light-theme .hero h1 { font-size: clamp(52px, 11.5vw, 74px); }
  .liquid-surface { inset-inline: -35vw; opacity: .92; }
  .liquid-veil { background: linear-gradient(180deg, rgba(7,7,10,.84) 0%, rgba(7,7,10,.48) 28%, rgba(7,7,10,.12) 62%, #07070a 100%); }
  .hero-stage { width: 520px; max-width: 115%; height: 470px; margin: 55px 0 0 50%; transform: translateX(-50%) scale(.82); transform-origin: center top; }
  .hero-proof { margin-top: -35px; grid-template-columns: 1fr; }
  .hero-proof > div { border-right: 0; border-bottom: 1px solid var(--line); }
  .hero-proof > div:last-child { border-bottom: 0; }
  .type-line { width: auto; min-width: 0; padding-inline: 18px; white-space: normal; font-size: clamp(44px, 11vw, 74px); line-height: .94; }
  .type-line-one, .type-line-two, .type-break:hover .type-line-one, .type-break:hover .type-line-two { transform: none; }
  .section-heading { display: block; margin-bottom: 50px; }
  .section-heading h2 { margin-top: 30px; }
  .section-heading > p:last-child { margin-top: 25px; }
  .bento-grid { grid-template-columns: 1fr; grid-template-rows: none; }
  .card-wide, .card-tall { grid-column: auto; grid-row: auto; min-height: 410px; }
  .card-tall { min-height: 640px; }
  .method-layout { grid-template-columns: 1fr; }
  .method-intro { position: static; }
  .method-steps { margin-top: 25px; }
  .outcome-panel { grid-template-columns: 1fr; }
  .founder { grid-template-columns: 1fr; }
  .founder-portrait { min-height: 520px; }
  .contact-layout { grid-template-columns: 1fr; }
  .contact-form { min-height: 730px; padding: 104px 50px 122px; }
  .footer { grid-template-columns: 1fr; padding: 35px 0; }
  .footer > div { justify-content: flex-start; }
  .cursor-glow { display: none; }
  .ambient-canvas { opacity: .38; }
}

@media (max-width: 520px) {
  .shell { width: calc(100% - 32px); }
  .hero { min-height: 1060px; padding-top: 132px; }
  .hero h1 { font-size: clamp(49px, 15vw, 70px); }
  .light-theme .hero h1 { font-size: clamp(44px, 12.5vw, 61px); }
  .hero-lede { font-size: 13px; }
  .hero-actions { flex-direction: column; align-items: stretch; }
  .theme-label { display: none; }
  .hero-stage { margin-top: 24px; transform: translateX(-50%) scale(.62); }
  .hero-proof { margin-top: -120px; }
  h2 { font-size: clamp(43px, 13vw, 62px); }
  .expertise-card { min-height: 380px; padding: 26px; }
  .card-tall { min-height: 580px; }
  .product-window { height: 220px; margin: 35px 0; }
  .method-card { grid-template-columns: 30px 1fr; min-height: 250px; padding: 28px 22px; }
  .step-mark { display: none; }
  .outcome-panel { padding: 32px 24px; }
  .outcome-list > div { grid-template-columns: 25px 1fr 18px; }
  .founder-portrait { min-height: 430px; }
  .portrait-orbit { width: 310px; height: 310px; left: calc(50% - 155px); top: calc(50% - 155px); }
  .founder-lede { font-size: 15px; }
  .founder-contact { align-items: stretch; flex-direction: column; }
  .form-row { grid-template-columns: 1fr; gap: 0; }
  .form-footer { flex-direction: column-reverse; align-items: stretch; }
  .button-light { width: 100%; }
  .contact-form { min-height: 790px; padding: 108px 24px 128px; border-radius: 46% 54% 42% 58% / 16% 21% 79% 84%; }
  .contact-form::before { inset: 12px; border-radius: 44% 56% 40% 60% / 14% 23% 77% 86%; }
  .contact-form > .form-row, .contact-form > label, .contact-form > .form-footer { width: 86%; }
  .footer > div { flex-direction: column; gap: 8px; }
}

@media (hover: none) {
  .tilt-card { transform: none !important; }
}

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