:root {
  --bg: #100b2a;
  --bg-soft: #17103a;
  --panel: #1a1440;
  --panel-2: #211852;
  --text: #f4f2ff;
  --muted: #b9afcf;
  --line: rgba(255, 255, 255, 0.1);
  --violet: #7c5cff;
  --violet-bright: #a88cff;
  --orange: #ff7a2f;
  --orange-soft: #ffad70;
  --cyan: #46d7ff;
  --green: #43e39b;
  --radius: clamp(20px, 2.2vw, 34px);
  --gutter: clamp(18px, 4vw, 64px);
  --max: 1480px;
  color-scheme: dark;
}

* { box-sizing: border-box; }
html { width: 100%; max-width: 100%; overflow-x: clip; overscroll-behavior-x: none; scroll-behavior: smooth; scroll-padding-top: 92px; -webkit-text-size-adjust: 100%; text-size-adjust: 100%; }
body {
  margin: 0;
  min-width: 320px;
  width: 100%;
  max-width: 100%;
  position: relative;
  background:
    radial-gradient(circle at 85% 10%, rgba(112, 84, 255, 0.28), transparent 28rem),
    radial-gradient(circle at 15% 38%, rgba(65, 111, 255, 0.15), transparent 32rem),
    var(--bg);
  color: var(--text);
  font-family: "Montserrat", Inter, "Segoe UI", Arial, sans-serif;
  font-size: 16px;
  line-height: 1.5;
  overflow-x: clip;
  overscroll-behavior-x: none;
}
body.is-loading { overflow: hidden; }

button, a { font: inherit; }
button { color: inherit; }
a { color: inherit; text-decoration: none; }
img { display: block; max-width: 100%; }
.site-loader { position: fixed; inset: 0; z-index: 2000; display: grid; place-items: center; overflow: hidden; background: radial-gradient(circle at center, #22165c 0%, #100b2a 42%, #090618 100%); opacity: 1; visibility: visible; transition: opacity .52s ease, visibility .52s step-end; }
.site-loader.is-leaving { opacity: 0; visibility: hidden; pointer-events: none; }
.site-loader::before { content: ""; position: absolute; inset: 0; background: radial-gradient(circle at center, rgba(124,92,255,.2), transparent 34%); transform: scale(.7); animation: loader-pulse 1.15s ease-in-out infinite alternate; }
.site-loader-lines { position: absolute; inset: 0; pointer-events: none; }
.site-loader-lines i { position: absolute; left: 50%; top: 50%; width: clamp(70px, var(--w), 250px); height: 2px; border-radius: 999px; background: linear-gradient(90deg, rgba(168,140,255,0), rgba(168,140,255,.75) 42%, rgba(255,255,255,.98)); opacity: 0; transform-origin: left center; animation: loader-speed-line .82s linear infinite; animation-delay: var(--d); will-change: transform, opacity; }
.site-loader-brand { position: relative; z-index: 2; padding: 14px 22px; color: #f7f4ff; font-family: "Unbounded", "Montserrat", sans-serif; font-size: clamp(1.4rem, 4vw, 2.8rem); font-weight: 700; letter-spacing: -.055em; text-shadow: 0 0 28px rgba(124,92,255,.7), 0 8px 30px rgba(0,0,0,.45); animation: loader-brand-in .65s cubic-bezier(.2,.75,.2,1) both; }
.site-loader-brand span { color: var(--orange); }
@keyframes loader-speed-line {
  0% { opacity: 0; transform: rotate(var(--a)) translate3d(18px,0,0) scaleX(.04); }
  16% { opacity: .92; }
  100% { opacity: 0; transform: rotate(var(--a)) translate3d(70vmax,0,0) scaleX(1.9); }
}
@keyframes loader-brand-in { from { opacity: 0; transform: scale(.86); filter: blur(8px); } to { opacity: 1; transform: scale(1); filter: blur(0); } }
@keyframes loader-pulse { to { transform: scale(1.08); opacity: .66; } }
.noise { position: fixed; inset: 0; z-index: 1; opacity: .035; pointer-events: none; background: url("./noise.webp") repeat; background-size: 128px 128px; contain: strict; transform: translateZ(0); backface-visibility: hidden; }
.ambient-glow { position: fixed; z-index: 0; width: 64vw; aspect-ratio: 1; border-radius: 50%; pointer-events: none; opacity: .5; will-change: transform; transform: translateZ(0); }
.glow-one { top: -8%; right: -28%; background: radial-gradient(circle, rgba(118,84,255,.46) 0%, rgba(118,84,255,.2) 32%, transparent 70%); animation: glow-drift-one 18s ease-in-out infinite alternate; }
.glow-two { top: 32%; left: -34%; background: radial-gradient(circle, rgba(60,85,232,.34) 0%, rgba(60,85,232,.14) 34%, transparent 71%); animation: glow-drift-two 22s ease-in-out infinite alternate; }
.glow-three { bottom: -30%; right: 0; background: radial-gradient(circle, rgba(163,45,242,.3) 0%, rgba(163,45,242,.1) 36%, transparent 72%); opacity: .44; animation: glow-drift-three 25s ease-in-out infinite alternate; }
main, #sections, .site-footer { position: relative; width: 100%; max-width: 100%; overflow-x: clip; }
.site-footer { z-index: 2; }
@keyframes glow-drift-one { to { transform: translate(-12vw, 14vh) scale(.82); } }
@keyframes glow-drift-two { to { transform: translate(20vw, -8vh) scale(1.15); } }
@keyframes glow-drift-three { to { transform: translate(-15vw, -12vh) scale(.9); } }

.site-header {
  position: sticky;
  top: 14px;
  z-index: 40;
  width: min(calc(100% - var(--gutter) * 2), var(--max));
  margin: 14px auto 0;
  min-height: 64px;
  padding: 10px 28px 10px 16px;
  border: 1px solid var(--line);
  border-radius: 999px;
  background: radial-gradient(circle at 18% 0%, rgba(124,92,255,.15), transparent 38%), linear-gradient(135deg, rgba(22,17,53,.96), rgba(9,7,25,.94));
  -webkit-backdrop-filter: blur(22px) saturate(140%);
  backdrop-filter: blur(22px) saturate(140%);
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  box-shadow: 0 18px 48px rgba(0, 0, 0, .24);
  transition: opacity .3s ease, filter .3s ease;
}
.modal-open .site-header { z-index: 901; opacity: .58; filter: brightness(.72); pointer-events: none; }
.brand { display: inline-flex; align-items: center; gap: 10px; font-weight: 800; letter-spacing: -.03em; white-space: nowrap; }
.brand-avatar { width: 38px; height: 38px; aspect-ratio: 1; border-radius: 50%; object-fit: cover; border: 2px solid rgba(173,146,255,.65); box-shadow: 0 0 0 4px rgba(124,92,255,.1); }
.brand-mark { display: grid; place-items: center; width: 34px; aspect-ratio: 1; border-radius: 11px; background: linear-gradient(135deg, var(--violet), #4930c8); box-shadow: inset 0 1px 0 rgba(255,255,255,.35), 0 8px 22px rgba(124,92,255,.35); }
.brand-dot { color: var(--orange); }
.nav { margin-left: auto; display: flex; align-items: center; justify-content: flex-end; gap: clamp(22px, 3.4vw, 48px); color: #ded6ec; font-size: .9rem; }
.nav a { display: inline-flex; align-items: center; gap: 7px; }
.nav-emoji { display: inline-block; font-family: "Apple Color Emoji", "Segoe UI Emoji", "Noto Color Emoji", sans-serif; font-size: 1.08rem; line-height: 1; transform: rotate(-7deg); transition: transform .25s ease; }
.nav a:nth-child(2) .nav-emoji { transform: rotate(6deg); }
.nav a:nth-child(3) .nav-emoji { transform: rotate(-4deg); }
.nav a:hover .nav-emoji { transform: rotate(0) translateY(-2px) scale(1.08); }
.nav a { transition: color .2s ease; }
.nav a:hover { color: white; }

.section, .site-footer {
  width: min(calc(100% - var(--gutter) * 2), var(--max));
  margin-inline: auto;
}
.section { position: relative; padding-block: clamp(80px, 10vw, 150px); }
.section > *:not(.section-shape) { position: relative; z-index: 1; }
.eyebrow { display: inline-flex; align-items: center; gap: 10px; margin-bottom: 20px; color: var(--orange-soft); font-size: .78rem; font-weight: 800; letter-spacing: .15em; text-transform: uppercase; }
.eyebrow::before { content: ""; width: 26px; height: 1px; background: currentColor; }
h1, h2, h3, p { margin-top: 0; }
h1, h2, h3 { font-family: "Unbounded", "Montserrat", sans-serif; text-wrap: balance; }
h1 { max-width: 820px; margin-bottom: 24px; font-size: clamp(2.7rem, 5.4vw, 5.7rem); line-height: 1.02; letter-spacing: -.055em; }
h2 { margin-bottom: 22px; font-size: clamp(2.25rem, 4.35vw, 4.8rem); line-height: 1.06; letter-spacing: -.045em; }
h3 { letter-spacing: -.025em; }
.hero-copy h1, .section-heading h2, .method-main h2, .format-copy h2 { position: relative; }
.heading-emoji { --emoji-rotate: 0deg; position: absolute; z-index: 2; display: block; font-family: "Apple Color Emoji", "Segoe UI Emoji", "Noto Color Emoji", sans-serif; font-size: clamp(2.5rem, 5vw, 4.9rem); font-weight: 400; line-height: 1; letter-spacing: 0; pointer-events: none; filter: drop-shadow(0 14px 22px rgba(0,0,0,.28)); animation: heading-emoji-drift 6.5s ease-in-out infinite; }
.emoji-wave { --emoji-rotate: 12deg; top: -.52em; right: -.42em; }
.emoji-rocket { --emoji-rotate: 13deg; top: -.62em; right: -.72em; }
.emoji-clapper { --emoji-rotate: -12deg; top: -.48em; right: -.58em; animation-delay: -1.2s; }
.emoji-bulb { --emoji-rotate: 9deg; top: -.62em; right: -.48em; animation-delay: -2.4s; }
.emoji-headphones { --emoji-rotate: -10deg; top: -.52em; right: -.35em; animation-delay: -3.1s; }
.emoji-chat { --emoji-rotate: 8deg; top: -.58em; right: -.62em; animation-delay: -4s; }
.emoji-target { --emoji-rotate: -9deg; top: -.66em; right: -.45em; animation-delay: -4.8s; }
@keyframes heading-emoji-drift {
  0%, 100% { transform: translate3d(0,0,0) rotate(var(--emoji-rotate)); }
  50% { transform: translate3d(0,-8px,0) rotate(calc(var(--emoji-rotate) + 4deg)); }
}
.emoji-wave { transform-origin: 72% 82%; animation: wave-hello 6.4s ease-in-out infinite; }
@keyframes wave-hello {
  0%, 100% { transform: translate3d(0,0,0) rotate(12deg); }
  10% { transform: translate3d(-2px,-5px,0) rotate(13deg); }
  14% { transform: translate3d(-1px,-7px,0) rotate(31deg); }
  18% { transform: translate3d(1px,-5px,0) rotate(-2deg); }
  22% { transform: translate3d(-1px,-8px,0) rotate(32deg); }
  26% { transform: translate3d(1px,-6px,0) rotate(1deg); }
  31% { transform: translate3d(0,-7px,0) rotate(24deg); }
  36% { transform: translate3d(2px,-4px,0) rotate(12deg); }
  58% { transform: translate3d(4px,4px,0) rotate(10deg); }
  80% { transform: translate3d(-3px,-5px,0) rotate(14deg); }
}

.learning-ticker { position: relative; z-index: 2; width: 100%; margin-block: clamp(6px, 2.5vw, 34px); padding-block: clamp(7px, .8vw, 10px); overflow: hidden; border-block: 1px solid rgba(255,173,112,.32); background: linear-gradient(90deg, rgba(255,122,47,.13), rgba(124,92,255,.2) 48%, rgba(255,122,47,.13)); box-shadow: 0 18px 50px rgba(4,2,18,.18); }
.learning-ticker-track { display: flex; width: max-content; will-change: transform; animation: learning-ticker-move 24s linear infinite; }
.learning-ticker-track span { flex: none; display: inline-block; padding: 0; color: #f6f2ff; font-family: "Unbounded", "Montserrat", sans-serif; font-size: clamp(.92rem, 1.65vw, 1.65rem); font-weight: 650; letter-spacing: .025em; line-height: 1.05; white-space: nowrap; }
@keyframes learning-ticker-move { to { transform: translate3d(-50%,0,0); } }
p { color: var(--muted); }
.section-heading { max-width: 910px; margin-bottom: clamp(38px, 5vw, 72px); }
.section-heading p { max-width: 700px; margin: 0; font-size: clamp(1.05rem, 1.5vw, 1.25rem); line-height: 1.65; }
.wide-heading { max-width: 1150px; }
.wide-heading p { max-width: 820px; }
.centered { margin-inline: auto; text-align: center; }
.centered .eyebrow::before { display: none; }
.centered p { margin-inline: auto; }
.reveal { opacity: 0; transform: translateY(18px); transition: opacity .7s ease, transform .7s cubic-bezier(.2,.75,.25,1); }
.reveal.is-visible { opacity: 1; transform: none; }

.hero { min-height: min(860px, calc(100svh - 84px)); padding-top: clamp(52px, 6vw, 88px); display: grid; grid-template-columns: minmax(0, 1.05fr) minmax(390px, .95fr); align-items: center; gap: clamp(36px, 6vw, 90px); }
.button { min-height: 54px; padding: 0 23px; border: 1px solid var(--line); border-radius: 999px; display: inline-flex; justify-content: center; align-items: center; gap: 16px; font-weight: 750; transition: transform .2s ease, border-color .2s ease, background .2s ease; }
.button:hover { transform: translateY(-2px); }
.button-primary { border-color: transparent; background: linear-gradient(135deg, var(--orange-soft), var(--orange)); color: #211025; box-shadow: 0 18px 46px rgba(255, 122, 47, .26); }
.button-primary:hover { box-shadow: 0 22px 55px rgba(255, 122, 47, .38); }
.button-ghost { background: rgba(255,255,255,.035); }
.button-ghost:hover { border-color: rgba(255,255,255,.28); background: rgba(255,255,255,.07); }
.button-light { background: white; color: #18102b; }
.hero-stats { margin-top: clamp(42px, 6vw, 72px); display: flex; flex-wrap: wrap; gap: 1px; }
.hero-stats div { min-width: 150px; padding: 0 clamp(20px, 2.6vw, 38px); border-left: 1px solid var(--line); display: flex; flex-direction: column; }
.hero-stats div:first-child { padding-left: 0; border-left: 0; }
.hero-stats strong { font-size: clamp(1.7rem, 2.6vw, 2.4rem); letter-spacing: -.05em; }
.hero-stats span { max-width: 125px; color: var(--muted); font-size: .78rem; line-height: 1.35; }
.hero-visual { position: relative; min-height: clamp(520px, 53vw, 700px); overflow: visible; isolation: isolate; }
.hero-mask { position: absolute; inset: 0; overflow: hidden; border: 1px solid rgba(255,255,255,.13); border-radius: 48% 48% var(--radius) var(--radius); background: linear-gradient(145deg, rgba(75,52,174,.38), rgba(18,13,50,.72)); box-shadow: 0 40px 100px rgba(14,5,46,.38), inset 0 1px 0 rgba(255,255,255,.12); isolation: isolate; contain: paint; transform: translateZ(0); backface-visibility: hidden; }
.hero-mask::before { content: ""; position: absolute; inset: 18% 8% -20%; border-radius: 50% 50% 0 0; background: linear-gradient(180deg, rgba(145,105,255,.26), rgba(70,40,172,.06)); border: 1px solid rgba(255,255,255,.1); }
.hero-halo { position: absolute; z-index: 0; width: 82%; aspect-ratio: 1; left: 9%; top: 8%; border-radius: 50%; background: radial-gradient(circle, rgba(149,102,255,.5) 0%, rgba(90,47,203,.18) 43%, rgba(90,47,203,.06) 58%, transparent 74%); animation: hero-breathe 7s ease-in-out infinite; }
.hero-person-picture { display: contents; }
.hero-person { position: absolute; z-index: 1; top: 0; left: 52%; width: auto; max-width: none; height: 102%; transform: translate3d(-50%,0,0); filter: drop-shadow(0 28px 34px rgba(0,0,0,.28)); backface-visibility: hidden; }
@keyframes hero-breathe { 50% { transform: scale(1.09); opacity: .78; } }
.portrait-frame { position: absolute; inset: 12% 9% 15%; border-radius: 150px 150px 30px 30px; overflow: hidden; border: 1px solid rgba(255,255,255,.22); box-shadow: 0 22px 70px rgba(0,0,0,.4); }
.portrait-frame img { width: 100%; height: 100%; object-fit: cover; }
.profile-chip { position: absolute; left: 7%; right: 7%; bottom: 4%; display: grid; grid-template-columns: 44px 1fr auto; align-items: center; gap: 12px; padding: 10px 12px; border: 1px solid rgba(255,255,255,.16); border-radius: 18px; background: rgba(8,6,23,.78); backdrop-filter: blur(18px); }
.profile-chip img { width: 44px; aspect-ratio: 1; border-radius: 50%; object-fit: cover; }
.profile-chip span { display: flex; flex-direction: column; }
.profile-chip b { font-size: .84rem; }
.profile-chip small { color: var(--muted); font-size: .72rem; }
.profile-chip a { display: grid; place-items: center; width: 38px; aspect-ratio: 1; border-radius: 50%; background: white; color: #171128; }
.motion-orbit { position: absolute; border: 1px solid rgba(255,255,255,.28); border-radius: 50%; mix-blend-mode: overlay; }
.orbit-one { width: 190px; aspect-ratio: 1; top: 4%; left: -9%; animation: float 7s ease-in-out infinite; }
.orbit-two { width: 96px; aspect-ratio: 1; top: 15%; right: -2%; border-width: 18px; border-color: rgba(124,92,255,.62); animation: float 5s ease-in-out infinite reverse; }
@keyframes float { 50% { transform: translateY(18px) rotate(8deg); } }
.ae-badge { position: absolute; z-index: 4; left: -8%; top: 15%; display: flex; flex-direction: column; align-items: flex-start; gap: 7px; transform: rotate(-8deg); filter: drop-shadow(0 18px 30px rgba(0,0,0,.32)); animation: badge-float 5s ease-in-out infinite; }
.ae-badge span { display: grid; place-items: center; width: 82px; aspect-ratio: 1; border: 1px solid rgba(255,173,112,.6); border-radius: 20px; background: linear-gradient(145deg, #251457, #150e38); color: var(--orange-soft); font-size: 2rem; font-weight: 800; box-shadow: inset 0 1px 0 rgba(255,255,255,.14), 0 0 36px rgba(255,122,47,.18); }
.ae-badge small { padding: 7px 10px; border: 1px solid rgba(255,255,255,.14); border-radius: 9px; background: rgba(18,12,46,.9); color: #eee8f8; font-size: .68rem; font-weight: 700; backdrop-filter: blur(14px); }
@keyframes badge-float { 50% { transform: translateY(-10px) rotate(-5deg); } }
.motion-cube { position: absolute; z-index: 2; right: 9%; bottom: 15%; width: 66px; aspect-ratio: 1; transform: rotate(14deg); animation: cube-float 7s ease-in-out infinite; }
.motion-cube i { position: absolute; inset: 0; border: 1px solid rgba(255,255,255,.36); border-radius: 17px; }
.motion-cube i:nth-child(2) { transform: translate(9px,-9px); border-color: rgba(142,109,255,.65); }
.motion-cube i:nth-child(3) { transform: translate(18px,-18px); border-color: rgba(90,211,255,.42); }
@keyframes cube-float { 50% { transform: translateY(-18px) rotate(30deg); } }
.scroll-hint { margin-top: 34px; display: flex; align-items: center; gap: 12px; color: #a9a0c7; font-size: .78rem; }
.scroll-hint-mobile { display: none; }
.scroll-hint span { position: relative; width: 34px; height: 50px; border: 1px solid rgba(255,255,255,.23); border-radius: 999px; }
.scroll-hint span::after { content: ""; position: absolute; width: 4px; height: 9px; left: 50%; top: 9px; transform: translateX(-50%); border-radius: 99px; background: var(--orange); animation: scroll-dot 1.8s ease-in-out infinite; }
@keyframes scroll-dot { 70%,100% { transform: translate(-50%,20px); opacity: 0; } }

.opportunity { border-top: 1px solid var(--line); }
.section-shape { position: absolute; z-index: 0; pointer-events: none; }
.shape-ring { width: 190px; aspect-ratio: 1; right: 4%; top: 8%; border: 28px solid rgba(136,102,255,.12); border-radius: 50%; filter: drop-shadow(0 0 35px rgba(126,87,255,.18)); animation: shape-orbit 14s ease-in-out infinite; }
.shape-pill { width: 55px; height: 170px; right: 20%; bottom: 6%; border: 1px solid rgba(111,209,255,.23); border-radius: 999px; background: linear-gradient(180deg, rgba(74,193,255,.16), rgba(105,73,240,.05)); transform: rotate(32deg); animation: pill-drift 9s ease-in-out infinite alternate; }
@keyframes shape-orbit { 50% { transform: translate(-22px, 36px) rotate(35deg) scale(.88); } }
@keyframes pill-drift { to { transform: translateY(-38px) rotate(8deg); } }
.opportunity-cards { display: flex; flex-direction: column; gap: clamp(20px, 3vw, 38px); }
.benefit-card { position: relative; width: min(76%, 860px); min-height: 280px; padding: clamp(30px, 4vw, 54px); border: 1px solid rgba(255,255,255,.12); border-radius: clamp(24px, 3vw, 38px); background: radial-gradient(circle at 88% 12%, rgba(124,92,255,.24), transparent 16rem), linear-gradient(145deg, rgba(255,255,255,.055), rgba(255,255,255,.012)); display: flex; flex-direction: column; overflow: hidden; box-shadow: 0 28px 80px rgba(7,4,25,.2); }
.benefit-card:nth-child(even) { align-self: flex-end; background: radial-gradient(circle at 12% 12%, rgba(255,122,47,.16), transparent 16rem), linear-gradient(215deg, rgba(255,255,255,.055), rgba(255,255,255,.012)); }
.benefit-card::after { content: ""; position: absolute; right: -60px; bottom: -85px; width: 220px; aspect-ratio: 1; border: 1px solid color-mix(in srgb, var(--violet-bright) 24%, transparent); border-radius: 50%; pointer-events: none; }
.benefit-card:nth-child(even)::after { right: auto; left: -75px; }
.benefit-top { display: flex; align-items: flex-start; justify-content: space-between; gap: 18px; }
.benefit-num { color: rgba(174,158,239,.62); font-family: "Unbounded", sans-serif; font-size: clamp(3.6rem, 7vw, 7.2rem); font-weight: 700; line-height: .82; letter-spacing: -.08em; }
.benefit-emoji { display: block; font-family: "Apple Color Emoji", "Segoe UI Emoji", "Noto Color Emoji", sans-serif; font-size: clamp(3.4rem, 5vw, 5.5rem); line-height: 1; filter: drop-shadow(0 14px 24px rgba(0,0,0,.24)); transform: rotate(-8deg); }
.benefit-card:nth-child(even) .benefit-emoji { transform: rotate(7deg); }
.benefit-card h3 { max-width: 650px; margin: auto 0 14px; font-size: clamp(1.65rem, 3vw, 3.1rem); line-height: 1.1; }
.benefit-card p { max-width: 610px; margin: 0; font-size: clamp(.96rem, 1.25vw, 1.08rem); line-height: 1.7; }
.ai-note { width: min(92%, 1040px); margin: clamp(34px, 5vw, 64px) auto 0; padding: clamp(24px, 3vw, 38px); border: 1px solid rgba(124,92,255,.28); border-radius: 24px; background: radial-gradient(circle at 100% 0%, rgba(255,122,47,.12), transparent 18rem), rgba(80,53,196,.11); display: grid; grid-template-columns: minmax(0,1fr) auto; gap: clamp(16px, 2vw, 26px); align-items: center; overflow: hidden; }
.ai-note h3 { width: fit-content; max-width: 100%; margin: 0 0 7px; color: var(--orange-soft); font-size: clamp(1.1rem, 1.8vw, 1.45rem); display: flex; align-items: center; gap: 16px; }
.ai-note p { margin: 0; max-width: 1040px; color: #d4cee9; }
.pulse-dot { flex: 0 0 auto; width: 11px; aspect-ratio: 1; border-radius: 50%; background: var(--orange); box-shadow: 0 0 0 7px rgba(255,122,47,.12); }
.ai-note-images { display: flex; align-items: center; padding: 7px 8px 7px 16px; }
.ai-note-image { width: clamp(86px, 9vw, 118px); aspect-ratio: 1; margin: 0; border: 1px solid rgba(255,255,255,.2); border-radius: 22px; overflow: hidden; background: #171225; box-shadow: 0 16px 40px rgba(7,4,25,.35); }
.ai-note-image + .ai-note-image { margin-left: -18px; }
.ai-note-image-1 { transform: rotate(-5deg); }
.ai-note-image-2 { transform: rotate(5deg) translateY(6px); }
.ai-note-image img { display: block; width: 100%; height: 100%; object-fit: cover; }
.ai-note-image-1 img { object-position: 49% 50%; }
.ai-note-image-2 img { object-position: 57% 50%; }

.skills-intro { position: relative; width: 100%; margin-top: clamp(120px, 15vw, 220px); display: grid; grid-template-columns: minmax(0, 1fr) minmax(240px, 320px); gap: clamp(40px, 7vw, 110px); align-items: center; }
.skills-heading-copy { min-width: 0; }
.skills-intro h2 { max-width: 990px; margin-bottom: 24px; font-size: clamp(2.5rem, 4.35vw, 4.85rem); line-height: 1.08; }
.skills-heading-copy > p { max-width: 720px; margin: 0; font-size: clamp(1rem, 1.4vw, 1.18rem); line-height: 1.7; }
.skills-unlock { position: relative; width: min(100%, 290px); aspect-ratio: 1; justify-self: center; font-family: "Apple Color Emoji", "Segoe UI Emoji", "Noto Color Emoji", sans-serif; }
.skills-unlock b, .skills-unlock i { position: absolute; display: block; font-style: normal; line-height: 1; filter: drop-shadow(0 14px 22px rgba(0,0,0,.28)); }
.skills-unlock b { z-index: 2; left: 50%; top: 50%; font-size: clamp(5rem, 7vw, 7.4rem); transform: translate(-50%,-50%) rotate(-13deg); animation: key-hover 4.8s ease-in-out infinite; }
.lock-orbit { position: absolute; inset: 6%; animation: locks-orbit 15s linear infinite; }
.lock-orbit i { font-size: clamp(1.75rem, 2.8vw, 2.8rem); transform: translate(-50%,-50%); }
.lock-orbit i:nth-child(1) { left: 50%; top: 2%; }
.lock-orbit i:nth-child(2) { left: 91%; top: 33%; }
.lock-orbit i:nth-child(3) { left: 78%; top: 83%; }
.lock-orbit i:nth-child(4) { left: 23%; top: 88%; }
.lock-orbit i:nth-child(5) { left: 5%; top: 38%; }
@keyframes key-hover { 0%,100% { transform: translate(-50%,-50%) rotate(-13deg); } 50% { transform: translate(-50%,calc(-50% - 8px)) rotate(-9deg); } }
@keyframes locks-orbit { to { transform: rotate(360deg); } }
.skill-map { position: relative; min-height: 580px; margin-top: clamp(28px, 4vw, 52px); background: radial-gradient(circle at 50% 50%, rgba(124,92,255,.2), transparent 24%); overflow: hidden; isolation: isolate; }
.skill-map::before { content: ""; position: absolute; inset: 7% 3%; z-index: -2; opacity: .18; background-image: radial-gradient(circle, rgba(255,255,255,.34) 1px, transparent 1px); background-size: 30px 30px; mask-image: radial-gradient(circle at center, black, transparent 74%); }
.skill-threads { position: absolute; inset: 0; width: 100%; height: 100%; overflow: visible; }
.skill-threads line { stroke: color-mix(in srgb, var(--tone) 46%, transparent); stroke-width: 1.15; stroke-dasharray: 5 8; vector-effect: non-scaling-stroke; }
.skill-center { --drag-x: 0px; --drag-y: 0px; position: absolute; z-index: 3; left: 50%; top: 50%; width: clamp(220px, 22vw, 320px); transform: translate(-50%,-50%) translate3d(var(--drag-x),var(--drag-y),0) rotate(-2deg); text-align: center; pointer-events: none; user-select: none; will-change: transform; }
.skill-center strong { font-family: "Unbounded", sans-serif; font-size: clamp(1.9rem, 3.4vw, 3.8rem); line-height: 1.02; letter-spacing: -.06em; text-shadow: 0 0 42px rgba(124,92,255,.65); transition: text-shadow .24s ease, color .24s ease; }
.skill-center.is-magnetic strong { color: white; text-shadow: 0 0 30px rgba(255,173,112,.38), 0 0 58px rgba(124,92,255,.78); }
.skill-node { position: absolute; z-index: 2; left: var(--x); top: var(--y); width: clamp(145px, 15vw, 210px); transform: translate(-50%,-50%); text-align: center; will-change: transform; }
.skill-node span { color: color-mix(in srgb, var(--tone) 58%, white); font-size: clamp(.9rem, 1.2vw, 1.08rem); font-weight: 600; line-height: 1.25; text-shadow: 0 5px 18px rgba(5,3,20,.9); }
@keyframes skill-float {
  0%,100% { transform: translate(-50%,-50%) translate3d(0,0,0); }
  24% { transform: translate(-50%,-50%) translate3d(var(--dx),var(--ndy),0); }
  53% { transform: translate(-50%,-50%) translate3d(var(--ndx),var(--dy),0); }
  78% { transform: translate(-50%,-50%) translate3d(var(--dx),var(--dy),0); }
}

.principle-card { margin-top: clamp(28px, 4vw, 52px); padding: clamp(28px, 4vw, 50px); border: 1px solid rgba(255,173,112,.26); border-radius: 28px; background: linear-gradient(135deg, rgba(255,122,47,.08), rgba(124,92,255,.1)); }
.principle-card > div:first-child { display: block; }
.principle-icon { display: grid; place-items: center; width: 52px; aspect-ratio: 1; border: 1px solid rgba(255,173,112,.45); border-radius: 16px; color: var(--orange-soft); background: rgba(255,122,47,.08); transform: rotate(9deg); }
.principle-card h3 { margin: 0 0 10px; font-size: clamp(1.35rem, 2.5vw, 2.4rem); display: flex; align-items: flex-start; justify-content: space-between; gap: 20px; }
.principle-card p { max-width: 950px; margin: 0; line-height: 1.7; }
.principle-tools { margin-top: 30px; display: grid; grid-template-columns: repeat(5, minmax(0,1fr)); gap: 10px; }
.principle-tools span { min-height: 82px; padding: 13px 10px; border: 1px solid rgba(255,255,255,.1); border-radius: 18px; color: #c7bfdc; background: rgba(255,255,255,.035); display: flex; align-items: center; justify-content: center; gap: 10px; text-align: center; transition: border-color .22s ease, background .22s ease, color .22s ease, transform .22s ease, box-shadow .22s ease; }
.principle-tools span img { width: 29px; height: 29px; flex: 0 0 auto; object-fit: contain; transition: transform .22s ease; }
.principle-tools span b { font-size: .74rem; line-height: 1.2; }
.principle-tools span.is-primary { border-color: rgba(255,173,112,.42); color: white; background: rgba(255,122,47,.12); }

.companies-showcase { margin-top: clamp(70px, 9vw, 130px); padding-top: clamp(42px, 6vw, 76px); border-top: 1px solid var(--line); display: grid; grid-template-columns: minmax(280px,.72fr) minmax(0,1.28fr); gap: clamp(42px, 7vw, 100px); align-items: center; }
.companies-showcase h3 { margin: 0 0 16px; font-size: clamp(1.8rem, 3.2vw, 3.5rem); line-height: 1.08; }
.companies-showcase p { margin: 0; font-size: 1rem; line-height: 1.72; }
.company-logos { display: grid; grid-template-columns: repeat(4, minmax(0,1fr)); gap: 12px; }
.company-logo { min-height: 112px; padding: 18px 12px; border: 1px solid rgba(255,255,255,.09); border-radius: 20px; background: rgba(255,255,255,.025); display: flex; flex-direction: column; align-items: center; justify-content: center; gap: 10px; transition: border-color .22s ease, transform .22s ease, background .22s ease; }
.company-logo:hover { border-color: rgba(255,173,112,.3); background: rgba(255,255,255,.045); transform: translateY(-4px); }
.company-logo img { width: 30px; height: 30px; object-fit: contain; }
.company-logo span { color: #dcd6ea; font-size: .72rem; font-weight: 700; }
.company-videos { grid-column: 1 / -1; display: grid; grid-template-columns: repeat(3, minmax(0,1fr)); gap: clamp(12px, 1.6vw, 22px); margin-top: clamp(18px, 3vw, 36px); }
.company-video { min-width: 0; margin: 0; cursor: pointer; -webkit-tap-highlight-color: transparent; }
.company-video-frame { position: relative; aspect-ratio: 16 / 9; border: 1px solid rgba(255,255,255,.1); border-radius: clamp(16px, 2vw, 24px); overflow: hidden; background: #090613; box-shadow: 0 24px 65px rgba(5,3,20,.32); transition: border-color .24s ease, box-shadow .34s ease, transform .24s ease; }
.company-video:active .company-video-frame,
.company-video.is-tapped .company-video-frame { border-color: rgba(255,142,72,.72); box-shadow: 0 24px 65px rgba(5,3,20,.32), 0 0 0 1px rgba(255,122,47,.22), 0 0 34px rgba(255,122,47,.3); transform: scale(.992); }
.company-video iframe { position: absolute; inset: -2%; width: 104%; height: 104%; border: 0; pointer-events: none; }
.company-video-frame > span { position: absolute; inset: 0; background: linear-gradient(180deg, rgba(8,5,24,.04), transparent 20%, transparent 78%, rgba(8,5,24,.2)); pointer-events: none; }
.company-video figcaption { padding: 13px 4px 0; color: #dcd6ea; font-family: "Unbounded", sans-serif; font-size: clamp(.72rem, .9vw, .86rem); font-weight: 650; letter-spacing: .01em; }

.portfolio { width: 100%; max-width: none; padding-inline: var(--gutter); background: linear-gradient(180deg, transparent, rgba(24,15,60,.88) 12%, rgba(24,15,60,.88) 88%, transparent); }
.portfolio > * { width: min(100%, var(--max)); margin-inline: auto; }
.shape-spark { width: min(30vw, 390px); aspect-ratio: 1; right: 2%; top: 1%; animation: spark-spin 28s linear infinite; }
.shape-spark i { position: absolute; left: 50%; top: 50%; width: 100%; height: 1px; background: linear-gradient(90deg, transparent, rgba(168,140,255,.18), transparent); }
.shape-spark i:nth-child(2) { transform: rotate(60deg); }
.shape-spark i:nth-child(3) { transform: rotate(120deg); }
@keyframes spark-spin { to { transform: rotate(360deg); } }
.portfolio-grid { display: grid; grid-template-columns: repeat(3, minmax(0, 1fr)); gap: clamp(14px, 1.6vw, 24px); }
.portfolio.has-expanded .portfolio-grid { z-index: auto; }
.portfolio.has-expanded .work-card.is-active { isolation: auto; }
.work-card { --glow: #8b63ff; position: relative; isolation: isolate; cursor: pointer; outline: none; }
.work-card::before { content: ""; position: absolute; z-index: -1; left: 2%; right: 2%; top: -2%; height: 72%; border-radius: 34%; background: radial-gradient(ellipse at center, color-mix(in srgb, var(--glow) 48%, transparent) 0%, color-mix(in srgb, var(--glow) 18%, transparent) 42%, transparent 72%); opacity: .52; transform: scale(.9); transition: opacity .3s ease, transform .3s ease; }
.tone-violet { --glow: #8a63ff; }
.tone-purple { --glow: #c15cff; }
.tone-blue { --glow: #4e7dff; }
.tone-cyan { --glow: #35d5ff; }
.tone-indigo { --glow: #635aff; }
.tone-pink { --glow: #ff55bd; }
.tone-green { --glow: #47e6a0; }
.tone-lime { --glow: #c8f45a; }
.tone-orange { --glow: #ff7a2f; }
.tone-red { --glow: #ff5757; }
.work-card:focus-visible .work-media { box-shadow: 0 0 0 3px var(--violet-bright); }
.work-media { position: relative; aspect-ratio: 16 / 10; border-radius: 20px; overflow: hidden; background: var(--panel); contain: layout paint; }
.work-media iframe { position: absolute; left: 50%; top: 50%; width: 900px; height: var(--player-height, 506.25px); transform: translate3d(-50%,-50%,0) scale(var(--player-scale, 1)); transform-origin: center; border: 0; pointer-events: none; will-change: transform; backface-visibility: hidden; }
.work-media.is-expanded { position: fixed; z-index: 1001; aspect-ratio: auto; background: #090613; transform: translateZ(0); will-change: left, top, width, height; }
.work-media.is-expanded.is-transitioning { box-shadow: none; }
.work-media.is-expanded.is-settled { box-shadow: 0 38px 110px rgba(0,0,0,.58), 0 0 80px color-mix(in srgb, var(--glow) 28%, transparent); transition: box-shadow .24s ease; }
.work-media-placeholder { width: 100%; border-radius: 20px; }
.work-index { position: absolute; top: 14px; left: 14px; padding: 7px 10px; border-radius: 999px; background: rgba(5,5,14,.55); backdrop-filter: blur(10px); color: rgba(255,255,255,.78); font-size: .68rem; font-weight: 800; }
.video-progress { --progress: 0; position: absolute; z-index: 6; left: 14px; right: 14px; bottom: 3px; height: 18px; border-radius: 999px; opacity: 0; pointer-events: none; touch-action: none; cursor: ew-resize; transition: opacity .22s ease; }
.video-progress::before { content: ""; position: absolute; left: 0; right: 0; top: 50%; height: 3px; border-radius: 999px; background: rgba(255,255,255,.2); transform: translateY(-50%); }
.video-progress i { position: absolute; left: 0; top: 50%; width: 100%; height: 3px; border-radius: 999px; background: linear-gradient(90deg, var(--orange), var(--orange-soft)); transform: translateY(-50%) scaleX(0); transform-origin: left center; will-change: transform; transition: transform .22s linear; }
.video-progress.is-scrubbing i { transition: none; }
.video-progress b { position: absolute; left: calc(var(--progress) * 100%); top: 50%; width: 9px; height: 9px; border-radius: 50%; background: white; box-shadow: 0 0 0 3px rgba(255,122,47,.22), 0 2px 10px rgba(0,0,0,.35); opacity: 0; transform: translate(-50%,-50%) scale(.7); transition: opacity .18s ease, transform .18s ease; }
.work-card.is-previewing .video-progress,
.video-progress.is-scrubbing { opacity: .58; pointer-events: auto; }
.video-progress:hover,
.video-progress:focus-visible,
.video-progress.is-scrubbing { opacity: 1; outline: none; }
.video-progress:hover b,
.video-progress:focus-visible b,
.video-progress.is-scrubbing b { opacity: 1; transform: translate(-50%,-50%) scale(1); }
.video-progress:focus-visible::before { box-shadow: 0 0 0 3px rgba(124,92,255,.28); }
@media (hover: none) {
  .work-media.is-expanded .video-progress { opacity: .65; pointer-events: auto; }
}
.work-meta { padding: 16px 4px 12px; display: flex; justify-content: space-between; gap: 16px; }
.work-meta span { color: #a99dbd; font-size: .72rem; text-transform: uppercase; letter-spacing: .1em; }
.work-meta h3 { margin: 3px 0 0; font-size: clamp(1.1rem, 1.4vw, 1.42rem); }
.work-meta b { font-size: 1.15rem; transition: transform .2s ease; }
@media (hover: hover) and (pointer: fine) {
  .work-card:hover::before { opacity: .42; transform: scale(1); }
  .work-card:hover .video-progress,
  .work-card:focus-within .video-progress { opacity: .58; pointer-events: auto; }
  .work-card:hover .work-meta b { transform: translate(3px, -3px); }
}
.text-link { width: fit-content; margin-top: 36px; padding-bottom: 4px; border-bottom: 1px solid #6b608a; display: flex; align-items: center; gap: 10px; color: #e1dcf1; font-weight: 700; }

.method { display: grid; grid-template-columns: minmax(0, 1fr) minmax(440px, .8fr); gap: clamp(50px, 8vw, 130px); align-items: start; }
.shape-keyframe { left: 43%; top: 7%; width: 120px; height: 210px; opacity: .48; animation: keyframe-float 12s ease-in-out infinite; }
.shape-keyframe i { position: absolute; width: 18px; aspect-ratio: 1; border: 1px solid #9e85ff; transform: rotate(45deg); box-shadow: 0 0 22px rgba(158,133,255,.25); }
.shape-keyframe i:nth-child(1) { left: 5%; top: 8%; }
.shape-keyframe i:nth-child(2) { right: 0; top: 28%; width: 11px; }
.shape-keyframe i:nth-child(3) { left: 26%; bottom: 23%; width: 13px; }
.shape-keyframe i:nth-child(4) { right: 18%; bottom: 0; width: 21px; }
@keyframes keyframe-float { 50% { transform: translateY(30px) rotate(10deg); } }
.method-main { position: sticky; top: 120px; }
.method-main > p { max-width: 680px; font-size: 1.08rem; line-height: 1.7; }
blockquote { margin: 42px 0 0; padding: 28px; border-left: 2px solid var(--violet); border-radius: 0 18px 18px 0; background: rgba(124,92,255,.08); color: #ddd8f1; font-size: clamp(1.08rem, 1.4vw, 1.25rem); line-height: 1.6; }
.method-steps { display: grid; gap: 12px; }
.step-card { min-height: 175px; padding: clamp(24px, 3vw, 38px); border: 1px solid var(--line); border-radius: 22px; background: linear-gradient(150deg, rgba(255,255,255,.045), rgba(255,255,255,.012)); display: grid; grid-template-columns: 76px 1fr; gap: 22px; align-items: start; }
.step-number { color: #8d80c6; font-family: "Unbounded", sans-serif; font-size: clamp(2.7rem, 4vw, 4.4rem); font-weight: 650; line-height: .88; letter-spacing: -.08em; }
.step-card > div { position: relative; }
.step-emoji { position: absolute; right: 0; top: -10px; font-family: "Apple Color Emoji", "Segoe UI Emoji", "Noto Color Emoji", sans-serif; font-size: clamp(2rem, 3vw, 3rem); line-height: 1; filter: drop-shadow(0 12px 20px rgba(0,0,0,.25)); transform: rotate(7deg); }
.step-card:nth-child(even) .step-emoji { transform: rotate(-8deg); }
.step-card h3 { margin: 0 0 8px; padding-right: 58px; font-size: 1.5rem; }
.step-card p { margin: 0; }

.format { padding-inline: clamp(22px, 5vw, 78px); border: 1px solid var(--line); border-radius: calc(var(--radius) + 10px); background: linear-gradient(135deg, #11102b, #0d0b21 55%, #17103b); display: grid; grid-template-columns: 1fr .82fr; gap: clamp(50px, 7vw, 110px); align-items: center; overflow: hidden; }
.format-visual { position: relative; min-width: 0; }
.format-drink { position: absolute; z-index: 3; left: -54px; font-family: "Apple Color Emoji", "Segoe UI Emoji", "Noto Color Emoji", sans-serif; font-size: clamp(3.3rem, 5vw, 5.4rem); line-height: 1; filter: drop-shadow(0 18px 25px rgba(0,0,0,.3)); pointer-events: none; animation: drink-float 5.8s ease-in-out infinite; }
.drink-coffee { top: -58px; transform: rotate(-12deg); }
.drink-tea { bottom: -58px; left: 20px; transform: rotate(9deg); animation-delay: -2.7s; }
@keyframes drink-float { 0%,100% { translate: 0 0; } 50% { translate: 0 -9px; } }
.call-window { position: relative; width: 100%; border: 1px solid rgba(255,255,255,.14); border-radius: 24px; background: #0b0a19; box-shadow: 0 40px 90px rgba(0,0,0,.45); transform: rotate(-2deg); }
.window-bar { height: 48px; padding: 0 16px; border-bottom: 1px solid var(--line); display: flex; align-items: center; gap: 7px; color: #77718d; font-size: .7rem; }
.window-bar i { width: 9px; aspect-ratio: 1; border-radius: 50%; background: #423c56; }
.window-bar span { margin-left: auto; }
.timeline-demo { padding: 14px; }
.demo-canvas { position: relative; aspect-ratio: 16 / 9; border-radius: 12px; overflow: hidden; background: radial-gradient(circle at 66% 33%, #714ed4, #2a1e67 30%, #101022 70%); display: grid; place-items: center; }
.demo-shape { width: 34%; aspect-ratio: 1; border: 2px solid rgba(255,255,255,.85); border-radius: 28%; transform: rotate(22deg); animation: demo-spin 5s ease-in-out infinite; }
.demo-shape span { display: block; width: 45%; aspect-ratio: 1; margin: 27%; border-radius: 50%; background: white; box-shadow: 0 0 50px rgba(255,255,255,.45); }
.demo-canvas small { position: absolute; right: 10px; bottom: 9px; font-size: .55rem; letter-spacing: .1em; }
@keyframes demo-spin { 50% { transform: rotate(68deg) scale(.84); } }
.demo-controls { display: flex; gap: 8px; padding: 12px 4px 8px; }
.demo-controls i { width: 18px; height: 6px; border-radius: 2px; background: #373147; }
.demo-timeline { position: relative; display: grid; gap: 5px; padding: 8px; border-radius: 8px; background: #12101f; }
.demo-timeline b { display: block; height: 7px; width: 76%; border-radius: 3px; background: linear-gradient(90deg, #7559e7, #41307d); }
.demo-timeline b:nth-child(2) { width: 58%; margin-left: 18%; background: linear-gradient(90deg, #32a9cc, #28506f); }
.demo-timeline b:nth-child(3) { width: 45%; background: linear-gradient(90deg, #d8619f, #6e3254); }
.demo-timeline span { position: absolute; top: 4px; bottom: 4px; left: 52%; width: 1px; background: #ff5e75; }
.voice-card { position: absolute; right: -6%; bottom: -8%; padding: 12px 14px; border: 1px solid rgba(255,255,255,.18); border-radius: 16px; background: rgba(21,17,45,.9); backdrop-filter: blur(18px); display: flex; align-items: center; gap: 10px; box-shadow: 0 18px 50px rgba(0,0,0,.45); }
.voice-avatar { display: grid; place-items: center; width: 36px; aspect-ratio: 1; border-radius: 50%; background: var(--violet); font-weight: 850; }
.voice-card div { display: flex; flex-direction: column; }
.voice-card b { font-size: .78rem; }
.voice-card small { color: #9992af; font-size: .62rem; }
.voice-card .wave { flex-direction: row; color: var(--green); font-size: .6rem; letter-spacing: 1px; animation: wave 1s ease-in-out infinite alternate; }
@keyframes wave { to { transform: scaleY(.55); opacity: .7; } }
.format-copy h2 { font-size: clamp(2.5rem, 4.5vw, 5rem); }
.format-copy > p { font-size: 1.08rem; line-height: 1.7; }
.feature-list { margin-top: 30px; display: grid; gap: 15px; }
.feature-list > div { display: grid; grid-template-columns: 32px 1fr; gap: 12px; align-items: start; }
.feature-list > div > span { display: grid; place-items: center; width: 26px; aspect-ratio: 1; border-radius: 50%; background: rgba(67,227,155,.12); color: var(--green); font-weight: 900; }
.feature-list p { margin: 0; font-size: .9rem; }
.feature-list b { display: block; margin-bottom: 2px; color: white; font-size: 1rem; }

.reviews-top { display: flex; justify-content: space-between; align-items: end; gap: 30px; }
.shape-review-orbit { width: 210px; aspect-ratio: 1; left: -6%; top: 2%; border: 1px solid rgba(80,212,255,.18); border-radius: 50%; box-shadow: inset 0 0 60px rgba(94,75,238,.08); animation: review-orbit 10s ease-in-out infinite alternate; }
.shape-review-orbit::before { content: ""; position: absolute; width: 20px; aspect-ratio: 1; right: 19px; top: 22px; border-radius: 50%; background: #8a6cff; box-shadow: 0 0 24px rgba(138,108,255,.55); }
@keyframes review-orbit { to { transform: translate(30px, 24px) rotate(48deg); } }
.reviews-top .section-heading { margin-bottom: 0; }
.rating-card { min-width: 190px; padding: 18px 22px; border: 1px solid var(--line); border-radius: 20px; background: rgba(255,255,255,.035); display: grid; grid-template-columns: auto 1fr; align-items: center; gap: 0 12px; }
.rating-card strong { grid-row: span 2; font-size: 2.6rem; letter-spacing: -.06em; }
.rating-card span { color: #d8d1f2; letter-spacing: 0; font-size: .78rem; font-weight: 750; }
.rating-card small { color: var(--muted); font-size: .68rem; }
.review-grid { margin-top: clamp(40px, 6vw, 76px); display: grid; grid-template-columns: repeat(3, 1fr); gap: 14px; }
.review-card { min-height: 290px; padding: clamp(22px, 2.5vw, 34px); border: 1px solid var(--line); border-radius: 22px; background: linear-gradient(145deg, rgba(255,255,255,.04), rgba(255,255,255,.012)); display: flex; flex-direction: column; transition: border-color .24s ease, background .24s ease, transform .24s ease, box-shadow .24s ease; }
.review-author { display: grid; grid-template-columns: 42px 1fr auto; gap: 11px; align-items: center; }
.review-avatar-wrap { position: relative; display: block; width: 42px; height: 42px; }
.review-avatar { position: absolute; inset: 0; display: grid; place-items: center; width: 42px; height: 42px; border-radius: 50%; background: linear-gradient(135deg, #3d2b83, #6f57d5); object-fit: cover; font-size: .75rem; font-weight: 850; }
.review-author div { display: flex; flex-direction: column; }
.review-author b { font-size: .88rem; }
.review-author small { color: #827b98; font-size: .67rem; }
.like { display: grid; place-items: center; width: 27px; aspect-ratio: 1; border-radius: 50%; background: rgba(67,227,155,.12); color: var(--green); font-weight: 900; }
.review-card > p { margin: 28px 0; color: #ded9ee; font-size: .97rem; line-height: 1.66; }
.review-source { margin-top: auto; color: #766f8e; font-size: .67rem; text-transform: uppercase; letter-spacing: .08em; }

.pricing { border-top: 1px solid var(--line); }
.pricing-grid { max-width: 980px; margin-inline: auto; display: grid; grid-template-columns: repeat(2, 1fr); gap: 18px; align-items: stretch; }
.price-card { padding: clamp(26px, 3.2vw, 44px); border: 1px solid var(--line); border-radius: var(--radius); background: rgba(255,255,255,.025); display: flex; flex-direction: column; transition: border-color .24s ease, background .24s ease, transform .24s ease, box-shadow .24s ease; }
.price-card.featured { border-color: rgba(148,119,255,.5); background: radial-gradient(circle at 90% 0%, rgba(124,92,255,.3), transparent 16rem), #171131; box-shadow: 0 30px 80px rgba(42,22,108,.34); }
.price-head > span { display: inline-flex; padding: 7px 10px; border-radius: 999px; background: rgba(255,255,255,.06); color: #bcb4d6; font-size: .67rem; font-weight: 800; letter-spacing: .08em; text-transform: uppercase; }
.featured .price-head > span { background: var(--orange); color: #211025; }
.price-head h3 { margin: 20px 0 28px; font-size: 1.45rem; }
.price { display: grid; grid-template-columns: auto 1fr; align-items: center; gap: 0 14px; }
.price strong { font-size: clamp(2.5rem, 4vw, 4.1rem); line-height: 1; letter-spacing: -.06em; }
.price del { color: #777087; }
.price small { grid-column: 1 / -1; margin-top: 8px; color: var(--muted); }
.price-card ul { margin: 34px 0; padding: 26px 0; border-top: 1px solid var(--line); list-style: none; display: grid; gap: 13px; }
.price-card li { display: flex; gap: 11px; color: #c6c0d7; font-size: .9rem; }
.price-card li span { color: var(--green); }
.price-card .button { width: 100%; margin-top: auto; }
.price-card button.button, .result-action button.button { cursor: pointer; }
@media (hover: hover) and (pointer: fine) {
  .principle-tools span:hover {
    border-color: rgba(255,173,112,.42);
    background: rgba(255,255,255,.065);
    color: white;
    transform: translateY(-4px);
    box-shadow: 0 18px 38px rgba(8,5,28,.28);
  }
  .principle-tools span:hover img { transform: translateY(-2px) scale(1.08); }
  .review-card:hover {
    border-color: rgba(168,140,255,.45);
    background: linear-gradient(145deg, rgba(124,92,255,.1), rgba(255,255,255,.025));
    transform: translateY(-6px);
    box-shadow: 0 24px 54px rgba(8,5,28,.3);
  }
  .price-card:hover {
    border-color: rgba(255,173,112,.38);
    background-color: rgba(255,255,255,.045);
    transform: translateY(-6px);
    box-shadow: 0 28px 64px rgba(8,5,28,.32);
  }
  .price-card.featured:hover {
    border-color: rgba(180,153,255,.72);
    box-shadow: 0 36px 88px rgba(42,22,108,.46);
  }
}
.result-card { margin-top: 20px; padding: clamp(28px, 4vw, 55px); border-radius: var(--radius); background: linear-gradient(135deg, #7d55ef, #4d2bc6 66%, #ff7a2f 150%); display: grid; grid-template-columns: 1.3fr .7fr; gap: 40px; align-items: center; overflow: hidden; position: relative; }
.result-card::after { content: ""; position: absolute; width: 420px; aspect-ratio: 1; right: -180px; top: -200px; border: 70px solid rgba(255,255,255,.07); border-radius: 50%; }
.result-tag { color: #d9ceff; font-size: .7rem; font-weight: 800; text-transform: uppercase; letter-spacing: .14em; }
.result-card h3 { max-width: 850px; margin: 16px 0 13px; font-size: clamp(2rem, 4vw, 4.2rem); line-height: 1; }
.result-card p { max-width: 780px; margin: 0; color: #dfd7ff; }
.result-action { position: relative; z-index: 1; display: flex; flex-direction: column; align-items: center; gap: 12px; }
.result-action small { color: #ddd3ff; text-align: center; }

.site-footer { padding: clamp(58px, 8vw, 100px) 0 30px; border-top: 1px solid var(--line); display: flex; flex-direction: column; align-items: center; text-align: center; }
.footer-brand { display: inline-flex; flex-direction: column; align-items: center; gap: 18px; font-family: "Unbounded", sans-serif; font-size: clamp(1.35rem, 2.4vw, 2.1rem); font-weight: 700; letter-spacing: -.055em; }
.footer-avatar { width: clamp(92px, 9vw, 132px); height: clamp(92px, 9vw, 132px); aspect-ratio: 1; border: 3px solid rgba(173,146,255,.7); border-radius: 50%; object-fit: cover; box-shadow: 0 0 0 9px rgba(124,92,255,.1), 0 24px 65px rgba(5,3,20,.38); }
.footer-tagline { max-width: 560px; margin: 18px 0 0; color: #b9afcf; font-size: .9rem; }
.footer-legal { width: min(100%, 980px); margin-top: clamp(38px, 5vw, 62px); padding-top: 28px; border-top: 1px solid var(--line); display: flex; flex-direction: column; align-items: center; gap: 9px; }
.footer-legal p { max-width: 900px; margin: 0; color: #827991; font-size: .72rem; line-height: 1.65; }
.footer-legal-link { margin: 0 0 8px; padding: 0; border: 0; background: none; color: #c9bbff; font-size: .78rem; text-decoration: underline; text-underline-offset: 4px; cursor: pointer; transition: color .2s ease; }
.footer-legal-link:hover { color: white; }

.video-backdrop { position: fixed; inset: 0; z-index: 900; background: rgba(8,5,24,.5); opacity: 0; transition: opacity .4s ease-in-out; }
.video-backdrop.is-open { opacity: 1; }
.video-dialog { position: fixed; inset: 0; z-index: 1002; pointer-events: none; color: white; }
.dialog-caption { position: fixed; left: var(--video-left); top: var(--caption-top); width: var(--video-width); max-height: 190px; overflow: auto; padding: 20px 24px 24px; border: 1px solid rgba(255,255,255,.13); border-radius: 18px; background: rgba(18,13,42,.94); box-shadow: 0 24px 70px rgba(0,0,0,.35); backdrop-filter: blur(18px); opacity: 0; transform: translateY(-18px); pointer-events: auto; transition: opacity .38s ease, transform .38s ease-in-out; transition-delay: 0s; }
.video-dialog.is-open .dialog-caption { opacity: 1; transform: translateY(0); transition-delay: .5s; }
.video-dialog.is-closing .dialog-caption { opacity: 0; transform: translateY(-12px); transition-delay: 0s; }
.dialog-caption .eyebrow { margin-bottom: 8px; }
.dialog-caption h2 { margin: 0; font-size: clamp(1.65rem, 2.7vw, 2.8rem); }
.dialog-caption p { max-width: 800px; margin: 12px 0 0; color: var(--muted); font-size: .9rem; line-height: 1.6; }
.dialog-close { position: fixed; left: calc(var(--video-left) + var(--video-width) - 54px); top: calc(var(--video-top) + 12px); width: 42px; aspect-ratio: 1; padding: 0; border: 1px solid rgba(255,255,255,.24); border-radius: 50%; background: rgba(8,6,20,.72); cursor: pointer; pointer-events: auto; backdrop-filter: blur(12px); opacity: 0; transform: scale(.78); transition: opacity .25s ease .26s, transform .25s ease .26s; }
.video-dialog.is-open .dialog-close { opacity: 1; transform: scale(1); }
.dialog-close::before, .dialog-close::after { content: ""; position: absolute; left: 50%; top: 50%; width: 17px; height: 2px; border-radius: 99px; background: white; transform-origin: center; }
.dialog-close::before { transform: translate(-50%,-50%) rotate(45deg); }
.dialog-close::after { transform: translate(-50%,-50%) rotate(-45deg); }
.modal-open body * { animation-play-state: paused !important; }
.section:not(.is-in-view) .heading-emoji,
.section:not(.is-in-view) .section-shape,
.section:not(.is-in-view) .hero-halo,
.section:not(.is-in-view) .motion-orbit,
.section:not(.is-in-view) .ae-badge,
.section:not(.is-in-view) .motion-cube,
.section:not(.is-in-view) .skills-unlock b,
.section:not(.is-in-view) .lock-orbit,
.section:not(.is-in-view) .skill-node,
.section:not(.is-in-view) .format-drink,
.section:not(.is-in-view) .demo-shape,
.section:not(.is-in-view) .voice-card .wave { animation-play-state: paused; }

.lead-backdrop { position: fixed; inset: 0; z-index: 1100; background: rgba(7,5,20,.58); opacity: 0; transition: opacity .26s ease; }
.lead-backdrop.is-open { opacity: 1; }
.lead-dialog { position: fixed; inset: 0; z-index: 1101; padding: 22px; display: grid; place-items: center; pointer-events: none; }
.lead-panel { position: relative; width: min(100%, 570px); max-height: calc(100svh - 44px); overflow: auto; padding: clamp(28px, 5vw, 48px); border: 1px solid rgba(255,255,255,.14); border-radius: 30px; background: radial-gradient(circle at 90% 0%, rgba(124,92,255,.28), transparent 17rem), #15102f; box-shadow: 0 38px 110px rgba(0,0,0,.5); opacity: 0; transform: translateY(18px) scale(.975); transition: opacity .26s ease, transform .26s cubic-bezier(.2,.75,.25,1); pointer-events: none; }
.lead-dialog.is-open .lead-panel { opacity: 1; transform: none; pointer-events: auto; }
.lead-panel .eyebrow { margin-bottom: 13px; }
.lead-panel h2 { max-width: 470px; margin-bottom: 14px; font-size: clamp(2rem, 5vw, 3.4rem); }
.lead-panel > p { max-width: 470px; margin-bottom: 28px; }
.lead-close { position: absolute; right: 18px; top: 18px; width: 40px; aspect-ratio: 1; padding: 0; border: 1px solid rgba(255,255,255,.16); border-radius: 50%; background: rgba(7,5,20,.45); cursor: pointer; }
.lead-close::before, .lead-close::after { content: ""; position: absolute; left: 50%; top: 50%; width: 16px; height: 2px; border-radius: 99px; background: white; }
.lead-close::before { transform: translate(-50%,-50%) rotate(45deg); }
.lead-close::after { transform: translate(-50%,-50%) rotate(-45deg); }
#lead-form { display: grid; gap: 20px; }
.lead-field { display: grid; gap: 8px; }
.lead-field > span, .channel-picker legend { color: #d8d1e9; font-size: .78rem; font-weight: 750; }
.lead-field input { width: 100%; min-height: 56px; padding: 0 17px; border: 1px solid rgba(255,255,255,.14); border-radius: 15px; outline: none; background: rgba(255,255,255,.045); color: white; font: inherit; transition: border-color .2s ease, box-shadow .2s ease; }
.lead-field input:focus { border-color: var(--violet-bright); box-shadow: 0 0 0 4px rgba(124,92,255,.13); }
.lead-field input::placeholder { color: #817894; }
.channel-picker { margin: 0; padding: 0; border: 0; display: flex; flex-wrap: wrap; gap: 9px; }
.channel-picker legend { width: 100%; margin-bottom: 9px; }
.channel-picker legend small { display: block; margin-top: 3px; color: #857c9b; font-size: .67rem; font-weight: 500; }
.channel-picker label { cursor: pointer; }
.channel-picker input { position: absolute; opacity: 0; pointer-events: none; }
.channel-picker span { min-height: 44px; padding: 0 15px 0 11px; border: 1px solid rgba(255,255,255,.13); border-radius: 999px; background: rgba(255,255,255,.035); display: inline-flex; align-items: center; gap: 8px; color: #c6bdd8; font-size: .84rem; font-weight: 700; transition: border-color .2s ease, background .2s ease, color .2s ease, transform .2s ease; }
.channel-picker span::before { content: ""; width: 18px; height: 18px; border: 1px solid rgba(255,255,255,.28); border-radius: 6px; display: grid; place-items: center; color: #241127; font-size: .72rem; font-weight: 900; line-height: 1; transition: border-color .2s ease, background .2s ease; }
.channel-picker input:checked + span { border-color: rgba(255,173,112,.7); background: rgba(255,122,47,.14); color: white; transform: translateY(-1px); }
.channel-picker input:checked + span::before { content: "✓"; border-color: var(--orange-soft); background: var(--orange-soft); }
.channel-picker input:focus-visible + span { box-shadow: 0 0 0 3px rgba(124,92,255,.25); }
.channel-picker .meta-note { width: 100%; margin-top: 3px; color: #9187a5; font-size: .75rem; font-weight: 500; line-height: 1.45; }
.lead-submit { width: 100%; border: 0; cursor: pointer; }
.lead-submit:disabled { opacity: .6; cursor: wait; }
.lead-status { min-height: 22px; margin: -8px 0 0; font-size: .78rem; }
.lead-status.is-error { color: #ff9b9b; }
.lead-status.is-success { color: var(--green); }
.lead-honeypot { position: absolute; left: -10000px; width: 1px; height: 1px; overflow: hidden; }
.privacy-consent { display: grid; grid-template-columns: 23px 1fr; align-items: start; gap: 10px; }
.privacy-consent label { position: relative; display: block; width: 23px; height: 23px; cursor: pointer; }
.privacy-consent input { position: absolute; opacity: 0; pointer-events: none; }
.privacy-check { display: grid; place-items: center; width: 23px; height: 23px; border: 1px solid rgba(255,255,255,.2); border-radius: 7px; background: rgba(255,255,255,.045); transition: border-color .2s ease, background .2s ease, box-shadow .2s ease; }
.privacy-check::after { content: ""; width: 9px; height: 5px; border-left: 2px solid #231126; border-bottom: 2px solid #231126; opacity: 0; transform: translateY(-1px) rotate(-45deg) scale(.65); transition: opacity .18s ease, transform .18s ease; }
.privacy-consent input:checked + .privacy-check { border-color: transparent; background: var(--orange-soft); }
.privacy-consent input:checked + .privacy-check::after { opacity: 1; transform: translateY(-1px) rotate(-45deg) scale(1); }
.privacy-consent input:focus-visible + .privacy-check { box-shadow: 0 0 0 4px rgba(124,92,255,.2); }
.privacy-consent p { margin: 1px 0 0; color: #9990ad; font-size: .74rem; line-height: 1.5; }
.privacy-link { padding: 0; border: 0; background: none; color: #c9bbff; font: inherit; text-decoration: underline; text-underline-offset: 3px; cursor: pointer; }
.privacy-link:hover { color: white; }

.privacy-backdrop { position: fixed; inset: 0; z-index: 1120; background: rgba(7,5,20,.72); opacity: 0; transition: opacity .24s ease; }
.privacy-backdrop.is-open { opacity: 1; }
.privacy-dialog { position: fixed; inset: 0; z-index: 1121; padding: 22px; display: grid; place-items: center; pointer-events: none; }
.privacy-panel { position: relative; width: min(100%, 760px); max-height: calc(100svh - 44px); overflow-x: hidden; overflow-y: auto; padding: clamp(28px, 5vw, 52px); border: 1px solid rgba(255,255,255,.14); border-radius: 30px; background: radial-gradient(circle at 92% 0%, rgba(124,92,255,.26), transparent 20rem), #15102f; box-shadow: 0 38px 110px rgba(0,0,0,.56); opacity: 0; transform: translateY(18px) scale(.98); transition: opacity .24s ease, transform .24s cubic-bezier(.2,.75,.25,1); pointer-events: none; }
.privacy-dialog.is-open .privacy-panel { opacity: 1; transform: none; pointer-events: auto; }
.privacy-panel .eyebrow { margin-bottom: 13px; }
.privacy-panel > h2 { max-width: calc(100% - 58px); margin-bottom: 8px; font-size: clamp(1.85rem, 4vw, 2.75rem); line-height: 1.08; letter-spacing: -.055em; overflow-wrap: break-word; hyphens: auto; }
.privacy-updated { margin: 0 0 28px; color: #857c9b; font-size: .75rem; }
.privacy-copy { display: grid; gap: 22px; }
.privacy-copy section { padding-top: 20px; border-top: 1px solid rgba(255,255,255,.09); }
.privacy-copy h3 { margin: 0 0 8px; font-size: 1rem; }
.privacy-copy p { margin: 0; color: #b9afcf; font-size: .88rem; line-height: 1.7; }
.privacy-copy a { color: #c9bbff; text-decoration: underline; text-underline-offset: 3px; }
.privacy-done { min-width: 170px; margin-top: 30px; border: 0; cursor: pointer; }
.cursor-dot { position: fixed; z-index: 1300; left: 0; top: 0; width: 6px; height: 6px; margin: -3px 0 0 -3px; border-radius: 50%; background: var(--orange-soft); box-shadow: 0 0 8px rgba(255,122,47,.48); opacity: 0; pointer-events: none; will-change: transform; transition: opacity .1s linear, background .1s ease; }
.cursor-dot::after { content: ""; position: absolute; left: 50%; top: 50%; width: 22px; height: 22px; border: 1px solid rgba(184,161,255,.75); border-radius: 50%; transform: translate(-50%,-50%); transition: width .1s ease, height .1s ease, border-color .1s ease, border-radius .1s ease, background .1s ease; }
.cursor-visible .cursor-dot { opacity: 1; }
.cursor-hover .cursor-dot { background: white; }
.cursor-hover .cursor-dot::after { width: 32px; height: 32px; border-color: var(--orange-soft); border-radius: 10px; background: rgba(124,92,255,.08); }
.cursor-pressed .cursor-dot::after { width: 18px; height: 18px; border-radius: 50%; background: rgba(255,122,47,.12); }
@media (hover: hover) and (pointer: fine) {
  html.has-custom-cursor,
  html.has-custom-cursor * { cursor: none !important; }
}
.video-backdrop[hidden], .video-dialog[hidden],
.lead-backdrop[hidden], .lead-dialog[hidden],
.privacy-backdrop[hidden], .privacy-dialog[hidden] { display: none !important; }
@media (max-width: 1080px) {
  .hero { grid-template-columns: 1fr .72fr; }
  .hero h1 { font-size: clamp(3.8rem, 7.8vw, 6rem); }
  .skill-map { min-height: 580px; }
  .companies-showcase { grid-template-columns: 1fr; }
  .company-logos { grid-template-columns: repeat(4, minmax(0,1fr)); }
  .portfolio-grid { grid-template-columns: repeat(2, minmax(0, 1fr)); }
  .review-grid { grid-template-columns: repeat(2, 1fr); }
  .method { grid-template-columns: 1fr; }
  .method-main { position: static; }
  .method-main h2 { max-width: 900px; }
  .method-steps { grid-template-columns: repeat(2, 1fr); }
  .format { grid-template-columns: 1fr; }
  .format-visual { max-width: 760px; }
}

@media (max-width: 760px) {
  :root { --gutter: 16px; }
  html, body { width: 100%; max-width: 100%; overflow-x: clip; }
  html { scroll-padding-top: 78px; }
  .site-header {
    top: 8px;
    margin-top: 8px;
    min-height: 52px;
    padding: 7px 10px;
    display: grid;
    grid-template-columns: max-content minmax(0, 1fr);
    gap: clamp(6px, 2vw, 12px);
  }
  .site-header .brand { gap: 7px; font-size: clamp(.72rem, 2.7vw, .88rem); }
  .site-header .brand-avatar { width: 32px; height: 32px; flex: 0 0 32px; }
  .nav {
    min-width: 0;
    width: 100%;
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: clamp(3px, 1.2vw, 8px);
    font-size: clamp(.58rem, 2.2vw, .72rem);
  }
  .nav a { min-width: 0; justify-content: center; gap: 3px; white-space: nowrap; }
  .nav-emoji { flex: 0 0 auto; font-size: clamp(.72rem, 2.7vw, .9rem); }
  .section { max-width: 100%; padding-block: 66px; }
  .section > *, .format > *, .result-card > *, .pricing-grid > * { min-width: 0; max-width: 100%; }
  .hero { min-height: 0; padding-top: 44px; grid-template-columns: 1fr; gap: 0; }
  .hero-copy { display: block; min-width: 0; }
  .hero h1 { padding-right: 0; font-size: clamp(2.35rem, 10.5vw, 3.75rem); overflow-wrap: normal; text-wrap: pretty; }
  .hero .emoji-wave { top: .04em; right: .02em; font-size: clamp(2.7rem, 12vw, 3.7rem); }
  .hero-visual { min-height: min(118vw, 560px); margin-top: 28px; }
  .hero-mask { border-radius: 46% 46% 24px 24px; }
  .hero-person { top: 0; left: 52%; width: auto; height: 102%; }
  .ae-badge { left: -1%; top: 12%; }
  .ae-badge span { width: 68px; border-radius: 17px; font-size: 1.65rem; }
  .hero-stats { margin-top: 30px; display: grid; grid-template-columns: repeat(3, minmax(0,1fr)); }
  .hero-stats div { min-width: 0; padding: 0 9px; }
  .hero-stats strong { font-size: clamp(1.2rem, 5.5vw, 1.55rem); }
  .hero-stats span { display: block; max-width: 100%; margin-top: 4px; font-size: clamp(.55rem, 2.25vw, .65rem); line-height: 1.3; }
  .scroll-hint-desktop { display: none; }
  .scroll-hint-mobile { width: 100%; margin: 22px 0 0; display: flex; justify-content: center; }
  h2 { font-size: clamp(2.2rem, 9.6vw, 3.5rem); overflow-wrap: normal; text-wrap: pretty; }
  .heading-emoji { right: .05em; top: -.68em; font-size: clamp(2.2rem, 10vw, 3.4rem); }
  .portfolio .emoji-clapper,
  .method-main .emoji-bulb,
  .format-copy .emoji-headphones { position: relative; inset: auto; display: inline-block; margin-left: .2em; vertical-align: .02em; font-size: clamp(2rem, 8.8vw, 2.85rem); }
  .portfolio .emoji-clapper { margin-left: .14em; }
  .method-main .emoji-bulb { margin-left: .16em; }
  .format-copy .emoji-headphones { margin-left: .15em; vertical-align: -.08em; }
  .pricing-grid, .method-steps { grid-template-columns: 1fr; }
  .benefit-card { width: 100%; min-height: 240px; padding: 28px 24px; }
  .skills-intro { margin-top: 100px; grid-template-columns: 1fr; gap: 16px; }
  .skills-intro h2 { font-size: clamp(2.05rem, 8.9vw, 3.25rem); }
  .skills-unlock { width: 210px; margin: 6px auto 0; }
  .skills-unlock b { font-size: 4rem; }
  .lock-orbit i { font-size: 1.65rem; }
  .skill-map { min-height: 680px; margin-top: 22px; padding: 0; display: block; overflow: hidden; }
  .skill-map::before { inset: 1% -12%; opacity: .13; background-size: 24px 24px; }
  .skill-threads { display: block; z-index: 0; }
  .skill-threads line { stroke-width: .85; stroke-dasharray: 4 9; }
  .skill-center { position: absolute; left: 50%; top: 50%; width: 170px; min-height: 0; transform: translate(-50%,-50%) rotate(-2deg); cursor: default; pointer-events: none; }
  .skill-center strong { font-size: clamp(1.65rem, 7.4vw, 2.35rem); }
  .skill-node { position: absolute; left: var(--mx); top: var(--my); width: min(31vw, 128px); min-height: 0; transform: translate(-50%,-50%); }
  .skill-node span { font-size: clamp(.62rem, 2.55vw, .76rem); line-height: 1.15; }
  .principle-card { margin-top: 24px; padding: 20px 18px; border-radius: 22px; }
  .principle-card > div:first-child { display: block; }
  .principle-icon { width: 34px; border-radius: 11px; }
  .principle-card h3 { margin-bottom: 7px; font-size: clamp(1.1rem, 5.2vw, 1.45rem); line-height: 1.18; display: flex; align-items: flex-start; justify-content: space-between; gap: 12px; }
  .principle-card h3 .principle-icon { flex: 0 0 34px; }
  .principle-card p { font-size: .84rem; line-height: 1.55; }
  .principle-tools { margin-top: 18px; grid-template-columns: repeat(3, minmax(0,1fr)); gap: 7px; }
  .principle-tools span { min-height: 56px; padding: 7px 5px; border-radius: 12px; flex-direction: column; gap: 5px; }
  .principle-tools span img { width: 21px; height: 21px; }
  .principle-tools span b { font-size: .58rem; }
  .companies-showcase { grid-template-columns: 1fr; }
  .companies-showcase h3 { font-size: clamp(1.75rem, 8vw, 2.6rem); }
  .companies-showcase p { font-size: .88rem; line-height: 1.58; }
  .company-logos { grid-template-columns: repeat(3, minmax(0,1fr)); gap: 7px; }
  .company-logo { min-height: 64px; padding: 8px 5px; border-radius: 13px; gap: 5px; }
  .company-logo img { width: 22px; height: 22px; }
  .company-logo span { font-size: .6rem; }
  .ai-note { width: 100%; grid-template-columns: minmax(0,1fr); align-items: start; }
  .ai-note h3 { width: 100%; justify-content: space-between; gap: 14px; }
  .ai-note-images { grid-column: 1 / -1; justify-content: flex-end; padding: 4px 2px 2px; }
  .ai-note-image { width: min(34vw, 116px); }
  .company-videos { grid-template-columns: 1fr; gap: 22px; }
  .portfolio { padding-inline: var(--gutter); }
  .portfolio-grid { grid-template-columns: repeat(2, minmax(0,1fr)); gap: 11px; }
  .work-card { -webkit-touch-callout: none; user-select: none; }
  .work-card::before { display: none; }
  .work-media { border-radius: 13px; }
  .work-media.is-expanded { will-change: opacity, transform; }
  .work-media.is-expanded.is-settled { box-shadow: 0 24px 70px rgba(0,0,0,.48); }
  .work-index { top: 8px; left: 8px; padding: 5px 7px; font-size: .56rem; }
  .work-meta { padding: 10px 2px 8px; gap: 6px; }
  .work-meta span { font-size: .52rem; letter-spacing: .06em; }
  .work-meta h3 { font-size: .82rem; line-height: 1.18; }
  .work-meta > b { display: none; }
  .method { display: flex; flex-direction: column; gap: 28px; }
  .method-main { position: static !important; }
  .method-main > p { font-size: .94rem; line-height: 1.58; }
  blockquote { margin-top: 24px; padding: 18px; font-size: .95rem; line-height: 1.5; }
  .method-steps { position: relative; z-index: 2; gap: 10px; }
  .step-card { min-height: 0; padding: 20px 18px; grid-template-columns: 46px 1fr; gap: 12px; }
  .step-number { font-size: 2.15rem; }
  .step-emoji { right: -2px; top: -12px; font-size: 2.45rem; }
  .step-card h3 { padding-right: 54px; font-size: 1.18rem; }
  .step-card p { font-size: .86rem; line-height: 1.5; }
  .format { width: 100%; padding: 54px 18px 56px; border-radius: 24px; gap: 48px; }
  .format-copy h2 { font-size: clamp(1.85rem, 7.7vw, 2.55rem); line-height: 1.12; overflow-wrap: normal; text-wrap: balance; }
  .format-copy > p { font-size: .94rem; line-height: 1.58; }
  .format-drink { left: 6px; top: -50px; font-size: 3.3rem; }
  .drink-tea { left: 70px; top: -43px; bottom: auto; }
  .voice-card { right: -2%; bottom: -12%; }
  .reviews-top { align-items: start; flex-direction: column; }
  .rating-card { width: 100%; }
  .review-grid { width: calc(100% + (var(--gutter) * 2)); max-width: none; margin-top: 28px; margin-inline: calc(var(--gutter) * -1); padding-inline: var(--gutter) 42px; display: flex; gap: 10px; overflow-x: auto; overflow-y: hidden; overscroll-behavior-x: contain; overscroll-behavior-y: none; touch-action: pan-x; scroll-snap-type: x mandatory; scrollbar-width: none; -webkit-mask-image: linear-gradient(90deg, #000 0, #000 calc(100% - 44px), transparent 100%); mask-image: linear-gradient(90deg, #000 0, #000 calc(100% - 44px), transparent 100%); }
  .review-grid::-webkit-scrollbar { display: none; }
  .review-card { flex: 0 0 min(78vw, 300px); min-height: 230px; padding: 18px; border-radius: 18px; scroll-snap-align: start; }
  .review-card > p { margin: 18px 0; font-size: .84rem; line-height: 1.52; }
  .review-source { font-size: .58rem; }
  .pricing .section-heading { margin-bottom: 28px; }
  .pricing .section-heading h2 { margin-bottom: 14px; font-size: clamp(2rem, 8.7vw, 2.8rem); line-height: 1.08; }
  .pricing .section-heading p { font-size: .9rem; line-height: 1.5; }
  .pricing-grid { gap: 10px; }
  .price-card { padding: 20px 18px; border-radius: 20px; }
  .price-head h3 { margin: 12px 0 16px; font-size: 1.18rem; }
  .price { gap: 0 10px; }
  .price strong { font-size: clamp(2rem, 9vw, 2.7rem); }
  .price small { margin-top: 5px; font-size: .75rem; }
  .price-card ul { margin: 18px 0; padding: 15px 0; gap: 8px; }
  .price-card li { gap: 8px; font-size: .8rem; line-height: 1.35; }
  .price-card .button { min-height: 48px; font-size: .84rem; }
  .result-card { width: 100%; margin-top: 12px; padding: 20px 18px; grid-template-columns: 1fr; gap: 18px; border-radius: 20px; text-align: left; }
  .result-card h3 { margin: 10px 0 9px; font-size: clamp(1.45rem, 6.5vw, 1.9rem); line-height: 1.08; overflow-wrap: anywhere; text-wrap: pretty; }
  .result-card p { font-size: .82rem; line-height: 1.48; }
  .result-action { align-items: stretch; gap: 8px; }
  .result-action img { align-self: flex-start; }
  .result-action small { text-align: left; }
  .result-action small { font-size: .69rem; line-height: 1.4; }
  .result-action .button { min-width: 0; min-height: 50px; padding-inline: 14px; font-size: .8rem; line-height: 1.2; white-space: normal; }
  .site-footer { padding-top: 58px; }
  .dialog-caption { max-height: 174px; padding: 16px 18px 19px; border-radius: 15px; }
  .dialog-caption .eyebrow { font-size: .65rem; }
  .dialog-caption h2 { font-size: clamp(1.35rem, 6vw, 2rem); }
  .dialog-caption p { margin-top: 8px; font-size: .78rem; line-height: 1.5; }
  .dialog-close { left: calc(var(--video-left) + var(--video-width) - 48px); top: calc(var(--video-top) + 8px); width: 38px; }
  .privacy-dialog { padding: 10px; }
  .privacy-panel { max-height: calc(100svh - 20px); padding: 30px 24px 28px; border-radius: 24px; }
  .privacy-panel > h2 { max-width: calc(100% - 42px); font-size: clamp(1.55rem, 7vw, 2.2rem); }
  .privacy-panel .lead-close { right: 14px; top: 14px; width: 38px; }
  .privacy-copy { gap: 18px; }
  .privacy-copy section { padding-top: 17px; }
  .privacy-copy h3 { font-size: .94rem; line-height: 1.35; }
  .privacy-copy p { font-size: .84rem; line-height: 1.65; }
}

@media (max-width: 430px) {
  .site-header .brand { font-size: clamp(.68rem, 2.7vw, .78rem); gap: 6px; }
  .site-header .brand-avatar { width: 30px; height: 30px; flex-basis: 30px; }
  .hero-stats strong { text-align: left; }
  .hero-stats span { display: block; }
  .hero .emoji-wave { right: .02em; }
  .skill-map { min-height: 640px; }
  .skill-node { width: 32vw; }
  .principle-tools { grid-template-columns: repeat(3, minmax(0,1fr)); }
  .company-logos { grid-template-columns: repeat(3, minmax(0,1fr)); }
  .profile-chip { left: 4%; right: 4%; }
  .profile-chip b { font-size: .74rem; }
  .profile-chip small { font-size: .64rem; }
  .call-window { transform: none; }
  .voice-card { position: static; margin: 10px 10px -24px; }
}

@media (max-width: 355px) {
  .site-header { padding-inline: 8px; gap: 5px; }
  .site-header .brand { font-size: .66rem; gap: 5px; }
  .site-header .brand-avatar { width: 28px; height: 28px; flex-basis: 28px; }
  .nav { gap: 2px; font-size: .57rem; }
  .nav-emoji { display: none; }
}

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