:root {
  --ink: #001327;
  --ink-soft: #4f5e6d;
  --night: #001327;
  --night-2: #07172d;
  --surface: #0a1c33;
  --orange: #005dff;
  --orange-hi: #8eb8ff;
  --gold: #7ca9ff;
  --ivory: #ffffff;
  --paper: #eaf1f8;
  --line: rgba(255, 255, 255, 0.13);
  --shell: 1320px;
  --font-body: 'Noto Sans KR', 'Pretendard', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
  --font-display: 'Noto Sans KR', 'Pretendard', sans-serif;
}

*, *::before, *::after { box-sizing: border-box; }
html { scroll-behavior: smooth; scroll-padding-top: 100px; }
body {
  margin: 0;
  color: var(--ink);
  background: var(--night);
  font-family: var(--font-body);
  -webkit-font-smoothing: antialiased;
  overflow-x: hidden;
}
body, button, a { font-family: var(--font-body); }
img { display: block; max-width: 100%; }
a { color: inherit; text-decoration: none; }
button { border: 0; }
p, h1, h2, h3, figure { margin: 0; }
em { color: inherit; font-style: normal; }
.shell { width: min(calc(100% - 64px), var(--shell)); margin-inline: auto; }
.section { padding: 148px 0; position: relative; }
.skip-link {
  position: fixed; left: 20px; top: -80px; z-index: 999;
  padding: 14px 20px; border-radius: 10px; background: #fff; color: #000;
  font-weight: 800; transition: top .2s;
}
.skip-link:focus { top: 20px; }

/* Header */
.site-header {
  position: fixed; inset: 0 0 auto; z-index: 100;
  border-bottom: 1px solid transparent;
  transition: background .3s, border-color .3s, transform .3s;
}
.site-header.scrolled {
  background: rgba(255, 255, 255, .9); border-color: rgba(0,19,39,.08);
  -webkit-backdrop-filter: blur(18px); backdrop-filter: blur(18px);
}
.header-inner {
  width: min(calc(100% - 48px), 1500px); height: 88px; margin-inline: auto;
  display: flex; align-items: center; justify-content: space-between; gap: 30px;
}
.brand { position: relative; width: 132px; height: 60px; display: inline-flex; align-items: center; flex-shrink: 0; }
.brand-logo { position: absolute; inset: 0; width: 100%; height: 100%; object-fit: contain; object-position: left center; }
.brand-logo-dark { display: none; }
.site-header.scrolled .brand-logo-light { display: none; }
.site-header.scrolled .brand-logo-dark { display: block; }
.mobile-menu-toggle { display: none; }
.desktop-nav { display: flex; align-items: center; gap: 38px; margin-left: auto; }
.desktop-nav a {
  position: relative; color: rgba(255,255,255,.73); font-size: 15px; font-weight: 600;
  transition: color .2s;
}
.desktop-nav a::after {
  content: ''; position: absolute; left: 0; right: 100%; bottom: -8px; height: 1px;
  background: var(--orange); transition: right .25s;
}
.desktop-nav a:hover { color: #fff; }
.desktop-nav a:hover::after { right: 0; }
.site-header.scrolled .desktop-nav a { color: #334155; }
.site-header.scrolled .desktop-nav a:hover { color: var(--orange); }
.header-cta {
  display: inline-flex; align-items: center; gap: 14px; padding: 13px 19px 13px 22px;
  border: 1px solid rgba(255,255,255,.22); border-radius: 999px;
  color: #fff; font-size: 14px; font-weight: 800; transition: .25s;
}
.header-cta:hover { color: #fff; border-color: var(--orange); background: var(--orange); }
.site-header.scrolled .header-cta { color: #fff; border-color: var(--orange); background: var(--orange); }

/* Hero */
.hero {
  position: relative; min-height: 920px; height: 100svh; max-height: 1080px;
  display: flex; align-items: center; overflow: hidden; color: #fff; background: var(--night);
}
.hero-video {
  position: absolute; inset: 0;
  width: 100%; height: 100%;
  object-fit: cover; object-position: center;
  transform: scale(1.02);
  z-index: 0;
}
.hero-ai-still { position: absolute; z-index: 0; inset: 0; overflow: hidden; opacity: 0; visibility: hidden; transition: opacity 1.4s ease, visibility 0s linear 1.4s; pointer-events: none; }
.hero-ai-still.is-active { opacity: 1; visibility: visible; transition: opacity 1.4s ease; }
.hero-ai-still img { width: 100%; height: 100%; object-fit: cover; object-position: center; filter: blur(8px); transform: scale(1.055); transition: filter 1.55s ease .12s, transform 1.7s ease .12s; }
.hero-ai-still.is-active img { filter: blur(.35px); transform: scale(1.012); }
.hero-backdrop {
  position: absolute; inset: 0;
  background-image:
    linear-gradient(90deg, rgba(0,19,39,.94) 0%, rgba(0,19,39,.72) 43%, rgba(0,19,39,.18) 100%),
    linear-gradient(0deg, rgba(0,19,39,.58), transparent 40%);
  background-position: center, center;
  background-size: cover;
  z-index: 1;
}
.hero-backdrop::after {
  content: ''; position: absolute; inset: auto 0 0; height: 240px;
  background: linear-gradient(0deg, #001327 0%, transparent 100%);
}
.hero-noise, .benefit-section::before, .final-cta::before {
  content: ''; position: absolute; inset: 0; pointer-events: none; opacity: .08;
  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='.86' numOctaves='3' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23n)' opacity='.46'/%3E%3C/svg%3E");
}
.hero-inner { position: relative; z-index: 2; padding-top: 5vh; }
.hero-copy { max-width: 1000px; }
.eyebrow {
  display: flex; align-items: center; gap: 12px; color: var(--gold);
  font-size: 13px; font-weight: 800; letter-spacing: .16em; text-transform: uppercase;
}
.eyebrow span { width: 34px; height: 1px; background: currentColor; }
.eyebrow.dark { color: var(--orange); }
.hero h1 {
  margin-top: 25px; font-family: var(--font-display); font-size: clamp(52px, 5.25vw, 82px);
  font-weight: 800; line-height: 1.05; letter-spacing: -.065em; word-break: keep-all;
}
.hero h1 em { font-weight: 800; color: #7ca9ff; }
.hero-lead {
  margin-top: 30px; color: rgba(255,255,255,.67); font-size: 19px;
  line-height: 1.72; letter-spacing: -.015em; word-break: keep-all;
}
.hero-actions, .final-actions { display: flex; flex-wrap: wrap; gap: 12px; margin-top: 36px; }
.button {
  min-height: 60px; display: inline-flex; align-items: center; justify-content: center; gap: 18px;
  padding: 16px 25px; border: 1px solid transparent; border-radius: 999px;
  font-size: 16px; font-weight: 800; transition: transform .25s, background .25s, border-color .25s, box-shadow .25s;
}
.button:hover { transform: translateY(-3px); }
.button-primary { color: #fff; background: var(--orange); box-shadow: 0 14px 40px rgba(0,93,255,.22); }
.button-primary:hover { background: #004ed7; box-shadow: 0 18px 52px rgba(0,93,255,.3); }
.button-ghost { color: #fff; border-color: rgba(255,255,255,.22); background: rgba(255,255,255,.05); }
.button-ghost:hover { border-color: rgba(255,255,255,.5); background: rgba(255,255,255,.1); }
.hero-note { margin-top: 22px; color: rgba(255,255,255,.48); font-size: 13px; }
.hero-note span { margin-right: 7px; color: var(--orange); font-size: 9px; }
.hero-floating-card {
  display: none;
  position: absolute; right: 1%; bottom: -170px; width: 320px;
  border: 1px solid rgba(255,194,109,.28); border-radius: 20px; overflow: hidden;
  background: rgba(14,10,8,.76); box-shadow: 0 30px 80px rgba(0,0,0,.38);
  -webkit-backdrop-filter: blur(18px); backdrop-filter: blur(18px); transform: rotate(-2deg);
}
.float-top { height: 42px; display: flex; align-items: center; gap: 6px; padding: 0 15px; border-bottom: 1px solid rgba(255,255,255,.08); }
.float-top span { margin-right: auto; color: rgba(255,255,255,.38); font-size: 8px; font-weight: 700; letter-spacing: .14em; }
.float-top i { width: 6px; height: 6px; border-radius: 50%; background: rgba(255,255,255,.2); }
.float-body { padding: 25px 27px 26px; }
.float-label { color: var(--orange); font-size: 10px; font-weight: 800; letter-spacing: .18em; }
.float-body strong { display: block; margin-top: 10px; font-family: var(--font-display); font-size: 32px; line-height: 1.2; letter-spacing: -.04em; }
.float-wave { height: 54px; margin: 19px 0 15px; display: flex; align-items: center; gap: 7px; }
.float-wave span { flex: 1; height: 30%; border-radius: 5px; background: linear-gradient(0deg, var(--orange), var(--gold)); animation: wave 1.6s ease-in-out infinite; }
.float-wave span:nth-child(2), .float-wave span:nth-child(7) { height: 76%; animation-delay: -.25s; }
.float-wave span:nth-child(3), .float-wave span:nth-child(6) { height: 45%; animation-delay: -.5s; }
.float-wave span:nth-child(4) { height: 92%; animation-delay: -.75s; }
.float-wave span:nth-child(5) { height: 64%; animation-delay: -1s; }
.float-wave span:nth-child(8) { height: 38%; animation-delay: -1.25s; }
.float-body small { color: rgba(255,255,255,.38); font-size: 8px; font-weight: 700; letter-spacing: .12em; }
@keyframes wave { 0%,100% { transform: scaleY(.6); } 50% { transform: scaleY(1.05); } }
.scroll-cue { position: absolute; z-index: 3; bottom: 34px; left: 50%; display: flex; flex-direction: column; align-items: center; gap: 10px; transform: translateX(-50%); color: rgba(255,255,255,.34); font-size: 8px; letter-spacing: .2em; }
.scroll-cue i { position: relative; width: 1px; height: 42px; overflow: hidden; background: rgba(255,255,255,.17); }
.scroll-cue i::after { content: ''; position: absolute; inset: -100% 0 auto; height: 60%; background: var(--orange); animation: scrollLine 2s ease-in-out infinite; }
@keyframes scrollLine { to { top: 120%; } }

/* Proof */
.proof-strip { position: relative; z-index: 4; background: var(--orange); border-top: 1px solid rgba(255,255,255,.16); border-bottom: 1px solid rgba(255,255,255,.16); color: #fff; }
.proof-grid { display: grid; grid-template-columns: repeat(4, 1fr); }
.proof-grid article { position: relative; min-height: 240px; padding: 52px 34px; display: flex; flex-direction: column; justify-content: center; }
.proof-grid article + article::before { content: ''; position: absolute; left: 0; top: 25%; bottom: 25%; width: 1px; background: rgba(255,255,255,.11); }
.proof-grid strong { color: #fff; font-family: 'Inter', sans-serif; font-size: 49px; line-height: 1; letter-spacing: -.04em; }
.proof-grid strong sup { margin-left: 3px; font-size: .36em; vertical-align: super; }
.proof-grid p { margin-top: 15px; font-size: 17px; font-weight: 800; }
.proof-grid small { margin-top: 5px; color: rgba(255,255,255,.42); font-size: 13px; }

/* Shared section */
.section-head h2, .studio-copy h2, .final-cta h2 {
  margin-top: 19px; font-family: var(--font-display); font-size: clamp(42px, 4.6vw, 66px);
  font-weight: 800; line-height: 1.12; letter-spacing: -.06em; word-break: keep-all;
}
.section-head h2 em, .studio-copy h2 em, .final-cta h2 em { color: var(--orange); font-weight: 800; }
.section-head.center { text-align: center; }
.section-head.center .eyebrow { justify-content: center; }
.section-head > p:not(.eyebrow) { max-width: 650px; margin: 25px auto 0; color: rgba(255,255,255,.56); font-size: 18px; line-height: 1.7; word-break: keep-all; }
.section-head.light h2 { color: var(--ivory); }

/* Intro */
.intro-section { background: var(--paper); }
.intro-grid { display: grid; grid-template-columns: 1.05fr .95fr; align-items: end; gap: 90px; }
.intro-copy > p { color: var(--ink-soft); font-size: 21px; line-height: 1.85; letter-spacing: -.02em; word-break: keep-all; }
.intro-tags { display: flex; flex-wrap: wrap; gap: 9px; margin-top: 34px; }
.intro-tags span { padding: 10px 15px; border: 1px solid rgba(22,17,14,.14); border-radius: 999px; color: #534a44; background: rgba(255,255,255,.46); font-size: 13px; font-weight: 700; }

/* Application guide */
.guide-section { overflow: hidden; background: #fff; }
.guide-heading { display: grid; grid-template-columns: 1.05fr .95fr; align-items: end; gap: 90px; }
.guide-heading > p { padding-bottom: 7px; color: var(--ink-soft); font-size: 18px; line-height: 1.8; word-break: keep-all; }
.guide-info-grid { margin-top: 68px; display: grid; grid-template-columns: repeat(3, 1fr); gap: 16px; }
.guide-info-card { min-height: 330px; padding: 36px 34px; border: 1px solid rgba(0,19,39,.09); border-radius: 26px; background: #f5f8fb; transition: transform .3s, box-shadow .3s, border-color .3s; }
.guide-info-card:hover { transform: translateY(-7px); border-color: rgba(0,93,255,.28); box-shadow: 0 20px 55px rgba(0,19,39,.09); }
.guide-info-card > span { color: var(--orange); font-size: 10px; font-weight: 900; letter-spacing: .13em; }
.guide-info-card h3 { margin-top: 45px; font-size: 27px; line-height: 1.35; letter-spacing: -.04em; word-break: keep-all; }
.guide-info-card p { margin-top: 20px; color: #617080; font-size: 15px; line-height: 1.75; word-break: keep-all; }
.guide-industries { margin-top: 18px; padding: 26px 30px; display: grid; grid-template-columns: auto 1fr; align-items: center; gap: 30px; border: 1px solid rgba(0,19,39,.08); border-radius: 22px; background: #fff; }
.guide-industries > strong { color: var(--ink); font-size: 13px; white-space: nowrap; }
.guide-industries > div { display: flex; flex-wrap: wrap; gap: 7px; }
.guide-industries span { padding: 8px 11px; border-radius: 999px; color: #42566c; background: #eef4fa; font-size: 11px; font-weight: 700; }
.funding-panel { position: relative; margin-top: 18px; padding: 46px; display: grid; grid-template-columns: .8fr 1.05fr .65fr; align-items: stretch; gap: 42px; overflow: hidden; border-radius: 30px; color: #fff; background: linear-gradient(135deg, #001327 0%, #05264a 65%, #073469 100%); box-shadow: 0 28px 70px rgba(0,19,39,.16); }
.funding-panel::after { content: '90%'; position: absolute; right: -18px; top: -48px; color: rgba(255,255,255,.035); font-family: 'Inter', sans-serif; font-size: 190px; font-weight: 800; line-height: 1; pointer-events: none; }
.funding-copy { position: relative; z-index: 1; padding-right: 16px; }
.funding-copy h3 { margin-top: 23px; font-size: clamp(31px, 3vw, 45px); line-height: 1.18; letter-spacing: -.055em; word-break: keep-all; }
.funding-copy h3 em { color: #72e4dc; }
.funding-copy > p:last-child { margin-top: 21px; color: rgba(255,255,255,.56); font-size: 14px; line-height: 1.75; word-break: keep-all; }
.funding-breakdown { position: relative; z-index: 1; border-top: 1px solid rgba(255,255,255,.13); }
.funding-breakdown > div { min-height: 68px; display: flex; align-items: center; justify-content: space-between; gap: 20px; border-bottom: 1px solid rgba(255,255,255,.11); }
.funding-breakdown span { color: rgba(255,255,255,.72); font-size: 13px; font-weight: 700; }
.funding-breakdown small { display: block; margin-top: 4px; color: rgba(255,255,255,.36); font-size: 10px; font-weight: 400; }
.funding-breakdown strong { font-family: 'Inter', sans-serif; font-size: 18px; white-space: nowrap; }
.funding-breakdown .funding-support strong { color: #72e4dc; }
.funding-total { position: relative; z-index: 1; min-height: 100%; padding: 30px 25px; display: flex; flex-direction: column; justify-content: center; border: 1px solid rgba(114,228,220,.25); border-radius: 22px; background: rgba(114,228,220,.09); }
.funding-total > span { color: #72e4dc; font-size: 12px; font-weight: 900; }
.funding-total strong { display: block; margin-top: 15px; font-family: 'Inter', sans-serif; font-size: clamp(29px, 2.5vw, 40px); letter-spacing: -.05em; white-space: nowrap; }
.funding-total p { margin-top: 13px; color: rgba(255,255,255,.49); font-size: 11px; line-height: 1.65; }

/* VISKIT AI spotlight */
.viskit-highlight { overflow: hidden; color: #fff; background: #020c17; }
.viskit-highlight::before { content: ''; position: absolute; inset: 0; opacity: .22; pointer-events: none; background-image: linear-gradient(rgba(255,255,255,.045) 1px, transparent 1px), linear-gradient(90deg, rgba(255,255,255,.045) 1px, transparent 1px); background-size: 72px 72px; -webkit-mask-image: linear-gradient(to bottom, #000, transparent 72%); mask-image: linear-gradient(to bottom, #000, transparent 72%); }
.viskit-highlight::after { content: ''; position: absolute; inset: 0; opacity: .12; pointer-events: none; background: url('assets/ai-technology.webp') right top / 62% auto no-repeat; -webkit-mask-image: linear-gradient(90deg, transparent 38%, #000 100%); mask-image: linear-gradient(90deg, transparent 38%, #000 100%); }
.viskit-glow { position: absolute; right: -180px; top: -260px; width: 720px; height: 720px; border-radius: 50%; background: rgba(0,93,255,.28); filter: blur(115px); pointer-events: none; }
.viskit-highlight .shell { position: relative; z-index: 2; }
.viskit-top { display: grid; grid-template-columns: 1.25fr .75fr; align-items: end; gap: 72px; }
.viskit-heading .eyebrow { color: #72e4dc; }
.viskit-badge { display: inline-flex; margin-top: 27px; padding: 9px 14px; border: 1px solid rgba(114,228,220,.35); border-radius: 999px; color: #72e4dc; background: rgba(114,228,220,.08); font-size: 12px; font-weight: 800; }
.viskit-heading h2 { max-width: 900px; margin-top: 20px; font-size: clamp(44px, 5.4vw, 76px); font-weight: 800; line-height: 1.08; letter-spacing: -.065em; word-break: keep-all; }
.viskit-heading h2 em { color: #7ca9ff; font-style: normal; }
.viskit-heading > p:last-child { max-width: 760px; margin-top: 27px; color: rgba(255,255,255,.62); font-size: 18px; line-height: 1.82; word-break: keep-all; }
.viskit-plan-card { position: relative; overflow: hidden; padding: 35px; border: 1px solid rgba(124,169,255,.3); border-radius: 28px; background: linear-gradient(145deg, rgba(0,93,255,.35), rgba(255,255,255,.04)); box-shadow: 0 30px 70px rgba(0,0,0,.24); }
.viskit-plan-card::after { content: 'AI'; position: absolute; right: -12px; top: 5px; color: rgba(255,255,255,.055); font-family: 'Inter', sans-serif; font-size: 150px; font-weight: 800; line-height: 1; }
.viskit-plan-card > small { position: relative; z-index: 1; color: #8eb8ff; font-size: 11px; font-weight: 800; letter-spacing: .17em; display: block; }
.credit-highlight { position: relative; z-index: 1; display: inline-flex; align-items: center; margin-top: 18px; padding: 7px 14px 7px 12px; border-radius: 999px; background: var(--orange); color: #fff; font-size: 14px; font-weight: 800; letter-spacing: -.02em; box-shadow: 0 8px 20px rgba(255, 99, 44, 0.25); animation: pulse-orange 2s infinite; }
@keyframes pulse-orange { 0% { box-shadow: 0 0 0 0 rgba(255, 99, 44, 0.4); } 70% { box-shadow: 0 0 0 10px rgba(255, 99, 44, 0); } 100% { box-shadow: 0 0 0 0 rgba(255, 99, 44, 0); } }
.viskit-plan-card > strong { position: relative; z-index: 1; display: block; margin-top: 14px; font-family: 'Inter', sans-serif; font-size: 64px; line-height: 1; letter-spacing: -.06em; }
.viskit-plan-card > p { position: relative; z-index: 1; margin-top: 9px; color: rgba(255,255,255,.62); font-size: 14px; }
.viskit-plan-card dl { position: relative; z-index: 1; margin: 29px 0 0; border-top: 1px solid rgba(255,255,255,.13); }
.viskit-plan-card dl div { display: flex; align-items: center; justify-content: space-between; gap: 20px; padding: 13px 0; border-bottom: 1px solid rgba(255,255,255,.1); }
.viskit-plan-card dt { color: rgba(255,255,255,.5); font-size: 12px; }
.viskit-plan-card dd { margin: 0; color: #fff; font-size: 14px; font-weight: 800; }
.viskit-plan-card > span { position: absolute; z-index: 2; right: 25px; top: 25px; padding: 8px 12px; border-radius: 999px; color: #041321; background: #72e4dc; font-size: 11px; font-weight: 900; }
.viskit-main { margin-top: 72px; display: grid; grid-template-columns: 1.1fr .9fr; align-items: stretch; gap: 28px; }
.viskit-workspace { min-width: 0; align-self: start; overflow: hidden; border: 1px solid rgba(255,255,255,.11); border-radius: 28px; background: #07172d; box-shadow: 0 32px 80px rgba(0,0,0,.27); }
.viskit-window-bar { height: 54px; display: flex; align-items: center; gap: 7px; padding: 0 20px; border-bottom: 1px solid rgba(255,255,255,.09); }
.viskit-window-bar b { margin-right: auto; color: #fff; font-family: 'Inter', sans-serif; font-size: 12px; letter-spacing: .08em; }
.viskit-window-bar span { width: 8px; height: 8px; border-radius: 50%; background: rgba(255,255,255,.18); }
.viskit-screen-frame { overflow: hidden; background: #151515; }
.viskit-screen { width: 100%; height: auto; display: block; }
.viskit-video-frame { position: relative; aspect-ratio: 16 / 9; overflow: hidden; background: #05080d; }
.viskit-showcase-video { width: 100%; height: 100%; display: block; object-fit: cover; }
.viskit-intermission { position: absolute; z-index: 2; inset: 0; display: grid; place-items: center; overflow: hidden; opacity: 0; visibility: hidden; transition: opacity 1.35s ease, visibility 0s linear 1.35s; pointer-events: none; }
.viskit-intermission.is-active { opacity: 1; visibility: visible; transition: opacity 1.35s ease; }
.viskit-intermission img { position: absolute; inset: -12px; width: calc(100% + 24px); height: calc(100% + 24px); object-fit: cover; filter: blur(8px); transform: scale(1.055); transition: filter 1.5s ease .12s, transform 1.65s ease .12s; }
.viskit-intermission.is-active img { filter: blur(.35px); transform: scale(1.012); }
.viskit-intermission-shade { position: absolute; inset: 0; background: linear-gradient(90deg, rgba(2,12,23,.88), rgba(2,12,23,.46) 56%, rgba(2,12,23,.7)), rgba(0,19,39,.18); }
.viskit-intermission-copy { position: relative; z-index: 1; width: min(82%, 520px); text-align: center; text-shadow: 0 3px 24px rgba(0,0,0,.55); transform: translateY(10px); opacity: 0; transition: transform .6s ease .16s, opacity .6s ease .16s; }
.viskit-intermission.is-active .viskit-intermission-copy { transform: translateY(0); opacity: 1; }
.viskit-intermission-copy small { color: #72e4dc; font-family: 'Inter', sans-serif; font-size: 10px; font-weight: 800; letter-spacing: .2em; }
.viskit-intermission-copy strong { display: block; margin-top: 12px; font-size: clamp(27px, 3.15vw, 44px); line-height: 1.18; letter-spacing: -.055em; word-break: keep-all; }
.viskit-intermission-copy strong em { color: #8eb8ff; }
.viskit-intermission-copy span { display: block; margin-top: 13px; color: rgba(255,255,255,.68); font-size: 12px; font-weight: 700; }
.viskit-video-meta { position: absolute; z-index: 3; inset: auto 18px 17px; display: flex; align-items: center; justify-content: space-between; gap: 14px; color: rgba(255,255,255,.76); font-family: 'Inter', sans-serif; font-size: 10px; font-weight: 800; letter-spacing: .09em; opacity: 1; transition: opacity .3s; pointer-events: none; }
.viskit-video-frame.is-intermission .viskit-video-meta { opacity: 0; }
.viskit-video-meta > span { padding: 8px 11px; border: 1px solid rgba(255,255,255,.13); border-radius: 999px; background: rgba(2,12,23,.72); box-shadow: 0 8px 24px rgba(0,0,0,.24); -webkit-backdrop-filter: blur(10px); backdrop-filter: blur(10px); }
.viskit-video-status { display: inline-flex; align-items: center; gap: 7px; }
.viskit-video-status i { width: 6px; height: 6px; border-radius: 50%; background: #72e4dc; box-shadow: 0 0 12px rgba(114,228,220,.9); }
.viskit-showcase figcaption { min-height: 102px; padding: 21px 24px 23px; display: flex; flex-direction: column; justify-content: center; border-top: 1px solid rgba(255,255,255,.08); background: linear-gradient(90deg, rgba(0,93,255,.11), transparent 70%); }
.viskit-showcase figcaption strong { font-size: 19px; letter-spacing: -.035em; }
.viskit-showcase figcaption span { margin-top: 7px; color: rgba(255,255,255,.48); font-size: 12px; line-height: 1.6; word-break: keep-all; }
.viskit-window-body { min-height: 540px; display: grid; grid-template-columns: 1.08fr .92fr; }
.viskit-preview { position: relative; display: grid; place-items: center; overflow: hidden; background: radial-gradient(circle at 50% 35%, rgba(0,93,255,.34), transparent 48%), #030a12; }
.viskit-preview::before { content: ''; position: absolute; inset: 0; opacity: .24; 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: 32px 32px; }
.viskit-phone { position: relative; z-index: 1; width: 170px; height: 310px; display: flex; flex-direction: column; align-items: center; justify-content: center; border: 6px solid #14253a; border-radius: 30px; background: linear-gradient(145deg, #005dff, #153b78 62%, #72e4dc); box-shadow: 0 30px 70px rgba(0,0,0,.4); transform: rotate(-3deg); }
.viskit-phone::after { content: ''; position: absolute; inset: 12px; border: 1px solid rgba(255,255,255,.2); border-radius: 20px; }
.viskit-phone i { width: 35px; height: 35px; margin-bottom: 18px; border: 1px solid rgba(255,255,255,.6); border-radius: 50%; box-shadow: 0 0 0 12px rgba(255,255,255,.08); }
.viskit-phone strong, .viskit-phone small { position: relative; z-index: 1; }
.viskit-phone strong { font-family: 'Inter', sans-serif; font-size: 20px; letter-spacing: -.02em; }
.viskit-phone small { margin-top: 8px; color: rgba(255,255,255,.68); font-size: 9px; }
.viskit-timeline { position: absolute; z-index: 2; left: 22px; right: 22px; bottom: 20px; height: 58px; padding: 10px; border: 1px solid rgba(255,255,255,.1); border-radius: 9px; background: rgba(3,10,18,.86); }
.viskit-timeline span { display: block; height: 7px; margin-bottom: 5px; border-radius: 2px; background: linear-gradient(90deg, #005dff 0 37%, rgba(255,255,255,.1) 37% 100%); }
.viskit-timeline span:nth-child(2) { background: linear-gradient(90deg, #72e4dc 0 63%, rgba(255,255,255,.1) 63% 100%); }
.viskit-timeline span:nth-child(3) { background: linear-gradient(90deg, #7ca9ff 0 48%, rgba(255,255,255,.1) 48% 100%); }
.viskit-timeline i { position: absolute; left: 53%; top: 6px; bottom: 6px; width: 1px; background: #fff; }
.viskit-panel { padding: 48px 34px; background: rgba(255,255,255,.025); }
.viskit-panel > small { color: #72e4dc; font-size: 9px; font-weight: 800; letter-spacing: .16em; }
.viskit-panel h3 { margin-top: 13px; font-size: 29px; line-height: 1.25; letter-spacing: -.045em; }
.viskit-source { margin-top: 30px; display: flex; flex-wrap: wrap; gap: 8px; }
.viskit-source span { padding: 9px 11px; border: 1px solid rgba(255,255,255,.12); border-radius: 8px; color: rgba(255,255,255,.55); background: rgba(255,255,255,.035); font-size: 10px; }
.viskit-source span.active { color: #fff; border-color: rgba(0,93,255,.7); background: rgba(0,93,255,.26); }
.viskit-generate { margin-top: 33px; display: flex; align-items: center; justify-content: space-between; padding: 15px 16px; border-radius: 10px; color: #fff; background: var(--orange); font-size: 12px; font-weight: 800; }
.viskit-feature-list { padding: 8px 0 0 32px; }
.viskit-feature-list article { display: grid; grid-template-columns: 48px 1fr; gap: 17px; padding: 22px 0; border-top: 1px solid rgba(255,255,255,.13); }
.viskit-feature-list article > span { color: #72e4dc; font-family: 'Inter', sans-serif; font-size: 11px; font-weight: 800; letter-spacing: .12em; }
.viskit-feature-list h3 { font-size: 20px; letter-spacing: -.035em; }
.viskit-feature-list p { margin-top: 8px; color: rgba(255,255,255,.5); font-size: 14px; line-height: 1.7; word-break: keep-all; }
.viskit-link { display: flex; align-items: center; justify-content: space-between; margin-top: 18px; padding: 19px 21px; border: 1px solid #005dff; border-radius: 999px; background: #005dff; font-size: 14px; font-weight: 800; transition: transform .25s, background .25s; }
.viskit-link:hover { transform: translateY(-3px); background: #004ed7; }
.viskit-link span { font-size: 18px; }

/* Benefits */
.benefit-section { overflow: hidden; color: #fff; background: var(--night-2); }
.benefit-section::after { content: ''; position: absolute; inset: 0; opacity: .18; pointer-events: none; background-image: linear-gradient(rgba(255,255,255,.04) 1px, transparent 1px), linear-gradient(90deg, rgba(255,255,255,.04) 1px, transparent 1px); background-size: 64px 64px; -webkit-mask-image: linear-gradient(to bottom, #000, transparent 65%); mask-image: linear-gradient(to bottom, #000, transparent 65%); }
.ambient { position: absolute; border-radius: 50%; filter: blur(80px); pointer-events: none; }
.ambient-one { width: 650px; height: 650px; right: -250px; top: -260px; background: rgba(0,93,255,.22); }
.benefit-section .shell { position: relative; z-index: 2; }
.benefit-bento { margin-top: 70px; display: grid; grid-template-columns: repeat(12, 1fr); gap: 17px; }
.benefit-card {
  position: relative; grid-column: span 4; min-height: 330px; overflow: hidden;
  padding: 34px; border: 1px solid rgba(255,255,255,.09); border-radius: 24px;
  background: linear-gradient(145deg, rgba(255,255,255,.055), rgba(255,255,255,.015));
  transition: transform .3s, border-color .3s, background .3s;
}
.benefit-card:hover { transform: translateY(-7px); border-color: rgba(124,169,255,.6); background: rgba(0,93,255,.18); }
.benefit-card.wide { grid-column: span 8; display: grid; grid-template-columns: auto 1fr 210px; align-items: center; gap: 25px; }
.benefit-card:nth-child(3), .benefit-card:nth-child(4) { grid-column: span 6; }
.benefit-card.accent-card { grid-column: span 7; min-height: 375px; background: radial-gradient(circle at 80% 20%, rgba(0,93,255,.3), transparent 36%), linear-gradient(145deg, rgba(0,93,255,.16), rgba(255,255,255,.02)); }
.card-no { position: absolute; right: 27px; top: 22px; color: rgba(255,255,255,.08); font-family: var(--font-display); font-size: 52px; font-weight: 800; }
.card-icon { width: 62px; height: 62px; display: grid; place-items: center; border: 1px solid rgba(124,169,255,.35); border-radius: 50%; color: #fff; background: var(--orange); font-size: 22px; }
.card-kicker { margin-top: 30px; color: var(--orange); font-size: 10px !important; font-weight: 800; letter-spacing: .16em; }
.wide .card-kicker { margin-top: 0; }
.benefit-card h3 { margin-top: 10px; color: var(--ivory); font-family: var(--font-display); font-size: 27px; line-height: 1.28; letter-spacing: -.035em; }
.benefit-card > p:last-of-type, .benefit-card > div > p:last-child { max-width: 510px; margin-top: 14px; color: rgba(255,255,255,.49); font-size: 15px; line-height: 1.72; word-break: keep-all; }
.format-visual { height: 130px; display: flex; align-items: center; justify-content: center; gap: 9px; }
.format-visual i { display: grid; place-items: center; border: 1px solid rgba(124,169,255,.35); color: rgba(255,255,255,.7); background: rgba(0,93,255,.1); font-size: 10px; font-style: normal; }
.format-visual i:nth-child(1) { width: 93px; height: 53px; }
.format-visual i:nth-child(2) { width: 40px; height: 72px; }
.format-visual i:nth-child(3) { width: 55px; height: 55px; }
.ai-orbit { position: absolute; right: 70px; top: 86px; width: 150px; height: 150px; display: grid; place-items: center; border: 1px solid rgba(114,228,220,.28); border-radius: 50%; }
.ai-orbit::before, .ai-orbit::after { content: ''; position: absolute; inset: 20px; border: 1px solid rgba(255,255,255,.1); border-radius: 50%; }
.ai-orbit::after { inset: 42px; background: rgba(0,93,255,.26); box-shadow: 0 0 50px rgba(0,93,255,.45); }
.ai-orbit span { position: relative; z-index: 2; color: #72e4dc; font-family: var(--font-display); font-size: 24px; font-weight: 800; }
.ai-orbit i { position: absolute; width: 8px; height: 8px; border-radius: 50%; background: #72e4dc; box-shadow: 0 0 14px #72e4dc; }
.ai-orbit i:nth-of-type(1) { left: 5px; top: 66px; }
.ai-orbit i:nth-of-type(2) { right: 20px; top: 18px; }
.accent-card h3, .accent-card > p { max-width: 60%; }
.accent-card a { display: inline-block; margin-top: 24px; color: #72e4dc; font-size: 14px; font-weight: 800; }
.content-journey { margin-top: 18px; display: grid; grid-template-columns: 1.35fr .825fr .825fr; gap: 17px; }
.content-journey figure { position: relative; min-height: 390px; overflow: hidden; border-radius: 24px; background: #091a2d; }
.content-journey img { width: 100%; height: 100%; object-fit: cover; transition: transform .6s cubic-bezier(.2,.7,.2,1); }
.content-journey figure:hover img { transform: scale(1.035); }
.content-journey figure::after { content: ''; position: absolute; inset: 0; background: linear-gradient(0deg, rgba(0,13,28,.9) 0%, rgba(0,13,28,.08) 67%); }
.content-journey figcaption { position: absolute; z-index: 2; left: 27px; right: 27px; bottom: 27px; }
.content-journey small { color: #8eb8ff; font-size: 9px; font-weight: 900; letter-spacing: .14em; }
.content-journey strong { display: block; margin-top: 9px; color: #fff; font-size: 22px; line-height: 1.35; letter-spacing: -.035em; word-break: keep-all; }
.content-journey-main img { object-position: 56% center; }

/* Portfolio */
.portfolio-section { background: #fff; }
.portfolio-heading { display: grid; grid-template-columns: 1.2fr .8fr; align-items: end; gap: 70px; }
.portfolio-heading > p { padding-bottom: 8px; color: var(--ink-soft); font-size: 18px; line-height: 1.75; word-break: keep-all; }
.portfolio-grid { margin-top: 72px; display: grid; grid-template-columns: repeat(4, 1fr); gap: 12px; }
.work-card { position: relative; border-radius: 14px; overflow: hidden; background: var(--night); transition: transform .35s, box-shadow .35s; cursor: pointer; }
.work-card:hover { transform: translateY(-5px); box-shadow: 0 18px 40px rgba(0,19,39,.15); }
.work-thumb { position: relative; aspect-ratio: 16 / 9; overflow: hidden; background: var(--night-2); }
.work-thumb::after { content: ''; position: absolute; inset: 0; background: linear-gradient(0deg, rgba(0,0,0,.2), transparent 50%); }
.work-thumb img { width: 100%; height: 100%; object-fit: cover; transition: transform .55s cubic-bezier(.2,.7,.2,1), filter .35s; }
.work-card:hover .work-thumb img { transform: scale(1.05); filter: brightness(.75); }
.play { position: absolute; z-index: 2; left: 50%; top: 50%; width: 48px; height: 48px; display: grid; place-items: center; border: 1px solid rgba(255,255,255,.45); border-radius: 50%; color: #fff; background: rgba(0,93,255,.94); font-size: 13px; transform: translate(-50%,-40%) scale(.8); opacity: 0; transition: .3s; box-shadow: 0 12px 30px rgba(0,0,0,.2); }
.work-card:hover .play { transform: translate(-50%,-50%) scale(1); opacity: 1; }

/* Video Modal */
.video-modal {
  display: none; position: fixed; inset: 0; z-index: 10000;
  background: rgba(0,0,0,.92); justify-content: center; align-items: center;
  -webkit-backdrop-filter: blur(8px); backdrop-filter: blur(8px);
}
.video-modal.active { display: flex; }
.video-modal-content { position: relative; width: 92%; max-width: 1100px; }
.video-modal-close {
  position: absolute; top: -50px; right: 0; background: none; border: none;
  color: #fff; font-size: 40px; font-weight: 200; cursor: pointer;
  transition: color .2s; line-height: 1;
}
.video-modal-close:hover { color: #aaa; }
.video-modal-ratio { position: relative; width: 100%; padding-bottom: 56.25%; height: 0; border-radius: 12px; overflow: hidden; background: #000; }
.video-modal-ratio iframe { position: absolute; inset: 0; width: 100%; height: 100%; border: none; }
.portfolio-more { margin-top: 38px; text-align: right; }
.text-link { display: inline-flex; align-items: center; gap: 15px; padding-bottom: 7px; border-bottom: 1px solid currentColor; font-weight: 800; }
.text-link span { color: var(--orange); }

/* Studio */
.studio-section { overflow: hidden; color: #fff; background: var(--night); }
.studio-section::before { content: ''; position: absolute; width: 620px; height: 620px; left: -270px; bottom: -270px; border-radius: 50%; background: rgba(0,93,255,.18); filter: blur(100px); }
.studio-grid { position: relative; display: grid; grid-template-columns: .8fr 1.2fr; align-items: center; gap: 86px; }
.studio-copy h2 { margin-top: 19px; }
.studio-copy > p:not(.eyebrow) { margin-top: 27px; color: rgba(255,255,255,.56); font-size: 17px; line-height: 1.8; word-break: keep-all; }
.studio-copy ul { margin: 35px 0 0; padding: 0; list-style: none; border-top: 1px solid rgba(255,255,255,.1); }
.studio-copy li { padding: 17px 0; border-bottom: 1px solid rgba(255,255,255,.1); color: rgba(255,255,255,.76); font-size: 15px; font-weight: 700; }
.studio-copy li span { display: inline-block; width: 42px; color: var(--orange); font-size: 10px; letter-spacing: .12em; }
.studio-visual { position: relative; height: 660px; overflow: hidden; border-radius: 26px; background: #ddd; box-shadow: 0 35px 80px rgba(0,0,0,.27); }
.studio-visual img { width: 100%; height: 100%; object-fit: cover; object-position: 50% 8%; filter: contrast(1.03); }
.studio-visual::after { content: ''; position: absolute; inset: 0; background: linear-gradient(0deg, rgba(16,10,7,.62), transparent 42%); pointer-events: none; }
.studio-visual figcaption { position: absolute; z-index: 2; left: 30px; right: 30px; bottom: 26px; display: flex; align-items: end; justify-content: space-between; color: #fff; }
.studio-visual figcaption strong { color: var(--gold); font-family: var(--font-display); font-size: 38px; letter-spacing: -.04em; }
.studio-visual figcaption span { color: rgba(255,255,255,.6); font-size: 11px; letter-spacing: .1em; }
.track-record { position: relative; margin-top: 90px; padding-top: 42px; display: grid; grid-template-columns: .68fr 1.32fr; gap: 70px; border-top: 1px solid rgba(255,255,255,.13); }
.track-record-heading small { color: var(--gold); font-size: 10px; font-weight: 800; letter-spacing: .16em; }
.track-record-heading h3 { margin-top: 13px; font-size: 28px; letter-spacing: -.04em; }
.track-record-heading p { margin-top: 11px; color: rgba(255,255,255,.46); font-size: 13px; line-height: 1.65; }
.track-record-list { display: grid; grid-template-columns: repeat(2, 1fr); gap: 0 34px; }
.track-record-list article { position: relative; min-height: 94px; padding: 0 0 22px 62px; border-bottom: 1px solid rgba(255,255,255,.1); }
.track-record-list article:nth-child(n+3) { padding-top: 22px; }
.track-record-list article > span { position: absolute; left: 0; top: 2px; color: var(--orange-hi); font-family: 'Inter', sans-serif; font-size: 11px; font-weight: 800; }
.track-record-list article:nth-child(n+3) > span { top: 24px; }
.track-record-list strong { display: block; color: rgba(255,255,255,.85); font-size: 13px; }
.track-record-list p { margin-top: 7px; color: rgba(255,255,255,.42); font-size: 12px; }

/* Process */
.process-section { background: var(--paper); }
.process-list { margin: 74px 0 0; padding: 0; display: flex; gap: 0; list-style: none; align-items: flex-start; }
.process-list::before { display: none; }
.process-list li {
  position: relative; flex: 1; text-align: center; padding: 0 16px;
}
.process-list li::before { display: none; }
.process-list li::after {
  content: '→'; position: absolute; right: -12px; top: 36px;
  font-size: 20px; color: #aab3be; font-weight: 300;
}
.process-list li:last-child::after { display: none; }
.process-list li > span {
  display: block; color: var(--orange); font-size: 11px; font-weight: 800; letter-spacing: .16em; margin-bottom: 12px;
}
.process-icon {
  width: 56px; height: 56px; display: grid; place-items: center; margin: 0 auto 16px;
  border: 1px solid rgba(0,19,39,.12); border-radius: 50%;
  color: var(--night); background: #fff; font-size: 20px;
  transition: background .3s, color .3s, border-color .3s;
}
.process-list li:hover .process-icon { color: #fff; background: var(--orange); border-color: var(--orange); }
.process-list h3 { font-family: var(--font-display); font-size: 18px; line-height: 1.3; letter-spacing: -.03em; margin-bottom: 8px; color: var(--ink); }
.process-list p { color: #555f6b; font-size: 14px; line-height: 1.6; word-break: keep-all; margin: 0; }

/* FAQ */
.faq-section { background: #fff; }
.faq-grid { display: grid; grid-template-columns: .72fr 1.28fr; gap: 100px; }
.faq-section .section-head > p:not(.eyebrow) { margin: 24px 0 0; color: var(--ink-soft); font-size: 16px; }
.faq-section .text-link { margin-top: 26px; font-size: 14px; }
.faq-list { border-top: 1px solid rgba(22,17,14,.16); }
.faq-item { border-bottom: 1px solid rgba(22,17,14,.16); }
.faq-item summary { position: relative; display: flex; align-items: center; gap: 22px; padding: 28px 48px 28px 0; cursor: pointer; font-size: 18px; font-weight: 800; line-height: 1.45; list-style: none; word-break: keep-all; }
.faq-item summary::-webkit-details-marker { display: none; }
.faq-item summary span { color: var(--orange); font-size: 10px; letter-spacing: .13em; }
.faq-item summary i, .faq-item summary i::after { position: absolute; right: 5px; top: 50%; width: 16px; height: 1px; background: var(--ink); content: ''; transition: transform .25s; }
.faq-item summary i::after { right: auto; top: auto; transform: rotate(90deg); }
.faq-item[open] summary i { transform: rotate(45deg); }
.faq-item > div { overflow: hidden; }
.faq-item > div p { padding: 0 48px 27px 35px; color: #67605b; font-size: 15px; line-height: 1.75; word-break: keep-all; }

/* Final CTA and footer */
.final-cta { position: relative; padding: 150px 0; overflow: hidden; text-align: center; color: #fff; background: radial-gradient(circle at 50% 10%, #0c3c86 0, #001b38 40%, #001327 100%); }
.final-cta::after { content: ''; position: absolute; left: 50%; top: -240px; width: 600px; height: 600px; border: 1px solid rgba(124,169,255,.22); border-radius: 50%; transform: translateX(-50%); box-shadow: 0 0 0 90px rgba(0,93,255,.035), 0 0 0 180px rgba(0,93,255,.022); }
.cta-orb { position: absolute; left: 50%; top: -150px; width: 300px; height: 300px; border-radius: 50%; background: rgba(0,93,255,.24); filter: blur(80px); transform: translateX(-50%); }
.final-cta-inner { position: relative; z-index: 2; }
.final-cta .eyebrow { justify-content: center; }
.final-cta h2 { font-size: clamp(48px, 6vw, 84px); }
.final-cta h2 em { color: var(--gold); }
.final-cta-inner > p:not(.eyebrow) { margin-top: 25px; color: rgba(255,255,255,.55); font-size: 17px; }
.final-actions { justify-content: center; }
.cta-route { max-width: 900px; margin: 48px auto 0; padding-top: 23px; border-top: 1px solid rgba(255,255,255,.12); color: rgba(255,255,255,.46); font-size: 13px; line-height: 1.8; }
.cta-route span { margin-right: 14px; color: var(--orange-hi); font-weight: 800; }
.cta-route i { margin: 0 9px; color: rgba(255,255,255,.22); font-style: normal; }
.site-footer { padding: 70px 0; color: rgba(255,255,255,.54); background: #000e1d; }
.footer-grid { display: grid; grid-template-columns: .8fr 1.3fr .55fr; gap: 60px; align-items: end; }
.footer-brand { width: 132px; height: 60px; margin-bottom: 18px; }
.footer-logo { width: 100%; height: 100%; object-fit: contain; object-position: left center; }
.footer-grid > div:first-child > p { font-size: 13px; }
.footer-info p { margin: 0; font-size: 12px; line-height: 1.9; }
.footer-info strong { color: rgba(255,255,255,.78); }
.footer-info a:hover { color: #fff; }
.footer-links { display: flex; justify-content: flex-end; gap: 16px; font-size: 11px; font-weight: 800; }
.footer-links a:hover { color: var(--orange-hi); }
.mobile-apply-bar { display: none; }
.to-top { position: fixed; right: 24px; bottom: 24px; z-index: 90; width: 48px; height: 48px; border: 1px solid rgba(255,255,255,.18); border-radius: 50%; color: #fff; background: rgba(0,19,39,.84); font-size: 19px; opacity: 0; visibility: hidden; transform: translateY(10px); transition: .25s; cursor: pointer; -webkit-backdrop-filter: blur(10px); backdrop-filter: blur(10px); }
.to-top.visible { opacity: 1; visibility: visible; transform: none; }
.to-top:hover { color: #fff; background: var(--orange); }

/* Motion */
/* Motion */
.js .reveal { opacity: 0; transform: translateY(34px); transition: opacity .8s cubic-bezier(.16,1,.3,1), transform .8s cubic-bezier(.16,1,.3,1); }
.js .reveal-left { opacity: 0; transform: translateX(-40px); transition: opacity .8s cubic-bezier(.16,1,.3,1), transform .8s cubic-bezier(.16,1,.3,1); }
.js .reveal-right { opacity: 0; transform: translateX(40px); transition: opacity .8s cubic-bezier(.16,1,.3,1), transform .8s cubic-bezier(.16,1,.3,1); }

.js .reveal.is-visible, .js .reveal-left.is-visible, .js .reveal-right.is-visible { opacity: 1; transform: none; }

/* Staggered Delays for Sequential Animation */
.process-list li:nth-child(1) { transition-delay: 0.1s; }
.process-list li:nth-child(2) { transition-delay: 0.2s; }
.process-list li:nth-child(3) { transition-delay: 0.3s; }
.process-list li:nth-child(4) { transition-delay: 0.4s; }
.process-list li:nth-child(5) { transition-delay: 0.5s; }

.portfolio-grid .reveal:nth-child(1) { transition-delay: 0.05s; }
.portfolio-grid .reveal:nth-child(2) { transition-delay: 0.10s; }
.portfolio-grid .reveal:nth-child(3) { transition-delay: 0.15s; }
.portfolio-grid .reveal:nth-child(4) { transition-delay: 0.20s; }
.portfolio-grid .reveal:nth-child(5) { transition-delay: 0.25s; }
.portfolio-grid .reveal:nth-child(6) { transition-delay: 0.30s; }
.portfolio-grid .reveal:nth-child(7) { transition-delay: 0.35s; }
.portfolio-grid .reveal:nth-child(8) { transition-delay: 0.40s; }
.portfolio-grid .reveal:nth-child(9) { transition-delay: 0.45s; }
.portfolio-grid .reveal:nth-child(10) { transition-delay: 0.50s; }
.portfolio-grid .reveal:nth-child(11) { transition-delay: 0.55s; }
.portfolio-grid .reveal:nth-child(12) { transition-delay: 0.60s; }

.benefit-bento .reveal:nth-child(2) { transition-delay: .08s; }
.benefit-bento .reveal:nth-child(3) { transition-delay: .16s; }
.benefit-bento .reveal:nth-child(4) { transition-delay: .24s; }
.benefit-bento .reveal:nth-child(5) { transition-delay: .32s; }

@media (max-width: 1100px) {
  .desktop-nav { gap: 26px; }
  .hero-floating-card { right: 0; width: 285px; bottom: -180px; opacity: .85; }
  .intro-grid, .studio-grid { gap: 54px; }
  .guide-heading { gap: 54px; }
  .guide-info-card { padding: 32px 27px; }
  .funding-panel { grid-template-columns: 1fr 1fr; }
  .funding-total { grid-column: span 2; min-height: 185px; }
  .track-record { gap: 45px; }
  .viskit-top { grid-template-columns: 1.1fr .9fr; gap: 40px; }
  .viskit-main { grid-template-columns: 1fr; }
  .viskit-feature-list { padding-left: 0; display: grid; grid-template-columns: repeat(2, 1fr); column-gap: 30px; }
  .viskit-link { grid-column: span 2; }
  .content-journey { grid-template-columns: 1.2fr .8fr; }
  .content-journey figure:last-child { grid-column: span 2; min-height: 330px; }
  .benefit-card.wide { grid-template-columns: auto 1fr; }
  .format-visual { display: none; }
  .ai-orbit { right: 34px; opacity: .75; }
  .faq-grid { gap: 55px; }
}

@media (max-width: 820px) {
  body { padding-bottom: 76px; }
  .shell { width: min(calc(100% - 36px), var(--shell)); }
  .section { padding: 95px 0; }
  .header-inner { width: calc(100% - 32px); height: 72px; }
  .header-cta { display: none; }
  .mobile-menu-toggle { display: flex; flex-direction: column; justify-content: center; gap: 5px; width: 44px; height: 44px; background: none; border: none; cursor: pointer; z-index: 200; padding: 10px; margin-left: auto; }
  .mobile-menu-toggle span { display: block; width: 100%; height: 2px; background: #fff; transition: transform 0.3s, opacity 0.3s, background-color 0.3s; }
  .site-header.scrolled .mobile-menu-toggle span { background: var(--night); }
  
  .desktop-nav { 
    position: fixed; inset: 0; background: rgba(0, 19, 39, 0.98); 
    flex-direction: column; justify-content: center; gap: 32px; 
    padding: 20px; z-index: 150; 
    opacity: 0; pointer-events: none; transition: opacity 0.3s;
  }
  .desktop-nav.active { opacity: 1; pointer-events: auto; }
  .desktop-nav a { font-size: 24px; color: #fff !important; text-align: center; }
  .desktop-nav a::after { display: none; }
  
  body.menu-open { overflow: hidden; }
  body.menu-open .site-header { -webkit-backdrop-filter: none !important; backdrop-filter: none !important; background: transparent !important; border-color: transparent !important; }
  body.menu-open .site-header .mobile-menu-toggle span { background: #fff !important; }
  body.menu-open .mobile-menu-toggle span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
  body.menu-open .mobile-menu-toggle span:nth-child(2) { opacity: 0; }
  body.menu-open .mobile-menu-toggle span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }
  
  .brand { width: 112px; height: 52px; z-index: 200; }
  .hero { min-height: 830px; height: 100svh; max-height: none; align-items: flex-start; padding-top: 156px; }
  .hero-backdrop { background-image: linear-gradient(90deg, rgba(0,19,39,.94), rgba(0,19,39,.54)), linear-gradient(0deg, rgba(0,19,39,.9), transparent 48%); background-position: center, center; }
  .hero-ai-still img { object-position: 52% center; }
  .hero-inner { padding-top: 0; }
  .hero h1 { margin-top: 22px; font-size: clamp(45px, 10.3vw, 68px); }
  .hero-lead { font-size: 16px; }
  .hero-floating-card { display: none; }
  .proof-grid { grid-template-columns: repeat(2, 1fr); }
  .proof-grid article { min-height: 185px; padding: 34px 22px; }
  .proof-grid article:nth-child(3)::before { display: none; }
  .proof-grid article:nth-child(n+3) { border-top: 1px solid rgba(255,255,255,.09); }
  .proof-grid strong { font-size: 40px; }
  .intro-grid, .portfolio-heading, .studio-grid, .faq-grid { grid-template-columns: 1fr; gap: 44px; }
  .guide-heading { grid-template-columns: 1fr; gap: 30px; }
  .guide-heading > p { max-width: 720px; padding-bottom: 0; }
  .guide-info-grid { grid-template-columns: 1fr; gap: 12px; }
  .guide-info-card { min-height: 0; }
  .guide-info-card h3 { margin-top: 25px; }
  .funding-panel { padding: 38px; grid-template-columns: 1fr; gap: 34px; }
  .funding-copy { padding-right: 0; }
  .funding-total { grid-column: auto; min-height: 180px; }
  .track-record { margin-top: 65px; grid-template-columns: 1fr; gap: 35px; }
  .viskit-top { grid-template-columns: 1fr; gap: 40px; }
  .viskit-heading h2 { font-size: clamp(42px, 9.2vw, 64px); }
  .viskit-plan-card { max-width: 520px; }
  .viskit-window-body { min-height: 500px; }
  .section-head h2, .studio-copy h2 { font-size: clamp(39px, 8.8vw, 57px); }
  .intro-copy > p { font-size: 18px; }
  .benefit-bento { grid-template-columns: repeat(2, 1fr); }
  .benefit-card, .benefit-card.wide, .benefit-card:nth-child(3), .benefit-card:nth-child(4), .benefit-card.accent-card { grid-column: auto; }
  .benefit-card.wide, .benefit-card.accent-card { grid-column: span 2; }
  .content-journey { grid-template-columns: 1fr 1fr; }
  .content-journey-main { grid-column: span 2; }
  .content-journey figure, .content-journey figure:last-child { min-height: 360px; }
  .content-journey figure:last-child { grid-column: auto; }
  .accent-card h3, .accent-card > p { max-width: 62%; }
  .portfolio-grid { grid-template-columns: repeat(3, 1fr); }
  .studio-grid { gap: 50px; }
  .studio-visual { height: 580px; }
  .process-list { flex-wrap: wrap; gap: 30px; justify-content: center; }
  .process-list li { flex: 0 0 calc(33.33% - 20px); }
  .process-list li::after { display: none; }
  .footer-grid { grid-template-columns: 1fr; gap: 28px; }
  .footer-links { justify-content: flex-start; }
  .mobile-apply-bar { position: fixed; z-index: 110; left: 10px; right: 10px; bottom: 10px; height: 66px; display: flex; align-items: center; justify-content: space-between; gap: 14px; padding: 9px 9px 9px 17px; border: 1px solid rgba(255,255,255,.16); border-radius: 16px; color: #fff; background: rgba(0,19,39,.94); box-shadow: 0 12px 35px rgba(0,0,0,.35); -webkit-backdrop-filter: blur(14px); backdrop-filter: blur(14px); }
  .mobile-apply-bar div { display: flex; flex-direction: column; }
  .mobile-apply-bar small { color: rgba(255,255,255,.47); font-size: 9px; }
  .mobile-apply-bar strong { margin-top: 2px; font-size: 13px; }
  .mobile-apply-bar a { padding: 14px 17px; border-radius: 11px; color: #fff; background: var(--orange); font-size: 13px; font-weight: 900; }
  .to-top { bottom: 92px; }
}

@media (max-width: 560px) {
  .shell { width: calc(100% - 30px); }
  .section { padding: 80px 0; }
  .hero { min-height: 780px; padding-top: 130px; }
  .hero .eyebrow { font-size: 10px; }
  .hero h1 { font-size: 42px; line-height: 1.16; }
  .hero-lead br { display: none; }
  .hero-actions { flex-direction: column; align-items: stretch; }
  .hero .button { width: 100%; }
  .hero-note { line-height: 1.5; }
  .scroll-cue { display: none; }
  .proof-grid article { min-height: 155px; padding: 27px 15px; }
  .proof-grid strong { font-size: 33px; }
  .proof-grid p { margin-top: 10px; font-size: 14px; }
  .proof-grid small { font-size: 11px; }
  .section-head h2, .studio-copy h2 { font-size: 37px; }
  .section-head > p:not(.eyebrow) { font-size: 15px; }
  .intro-grid { gap: 33px; }
  .intro-copy > p { font-size: 17px; line-height: 1.75; }
  .guide-info-grid { margin-top: 42px; }
  .guide-info-card { padding: 29px 25px; border-radius: 22px; }
  .guide-info-card h3 { font-size: 24px; }
  .guide-industries { padding: 22px; grid-template-columns: 1fr; gap: 15px; }
  .funding-panel { margin-top: 14px; padding: 29px 23px; border-radius: 24px; }
  .funding-breakdown > div { min-height: 72px; }
  .funding-breakdown strong { font-size: 16px; }
  .funding-total { min-height: 165px; }
  .viskit-heading h2 { font-size: 38px; }
  .viskit-heading > p:last-child { font-size: 15px; }
  .viskit-plan-card { padding: 28px 24px; }
  .viskit-plan-card > strong { font-size: 52px; }
  .viskit-main { margin-top: 46px; }
  .viskit-screen { min-height: 300px; object-fit: cover; object-position: 61% center; }
  .viskit-window-bar { height: 48px; padding-inline: 15px; }
  .viskit-window-bar b { font-size: 10px; }
  .viskit-video-meta { inset: auto 10px 10px; }
  .viskit-video-meta > span { padding: 6px 8px; font-size: 8px; }
  .viskit-video-meta > span:last-child { display: none; }
  .viskit-intermission-copy { width: 88%; }
  .viskit-intermission-copy small { font-size: 8px; }
  .viskit-intermission-copy strong { margin-top: 8px; font-size: clamp(22px, 7vw, 34px); }
  .viskit-intermission-copy span { margin-top: 9px; font-size: 10px; }
  .viskit-showcase figcaption { min-height: 0; padding: 18px 17px 20px; }
  .viskit-showcase figcaption strong { font-size: 17px; }
  .viskit-showcase figcaption span { font-size: 11px; }
  .viskit-window-body { grid-template-columns: 1fr; }
  .viskit-preview { min-height: 430px; }
  .viskit-panel { padding: 35px 24px; }
  .viskit-feature-list { grid-template-columns: 1fr; }
  .viskit-link { grid-column: auto; }
  .benefit-bento { margin-top: 45px; grid-template-columns: 1fr; }
  .benefit-card, .benefit-card.wide, .benefit-card:nth-child(3), .benefit-card:nth-child(4), .benefit-card.accent-card { grid-column: auto; min-height: 285px; display: block; padding: 28px; }
  .benefit-card h3 { font-size: 24px; }
  .content-journey { grid-template-columns: 1fr; }
  .content-journey-main, .content-journey figure:last-child { grid-column: auto; }
  .content-journey figure, .content-journey figure:last-child { min-height: 330px; }
  .content-journey strong { font-size: 20px; }
  .accent-card { min-height: 390px !important; }
  .accent-card h3, .accent-card > p { max-width: 100%; }
  .ai-orbit { right: 24px; top: auto; bottom: 28px; width: 105px; height: 105px; opacity: .55; }
  .portfolio-heading { gap: 25px; }
  .portfolio-grid { margin-top: 44px; grid-template-columns: repeat(2, 1fr); gap: 8px; }
  .studio-visual { height: 470px; }
  .studio-visual figcaption { align-items: flex-start; flex-direction: column; gap: 3px; }
  .studio-visual figcaption strong { font-size: 31px; }
  .track-record-list { grid-template-columns: 1fr; }
  .track-record-list article, .track-record-list article:nth-child(n+3) { min-height: 82px; padding: 20px 0 20px 60px; }
  .track-record-list article > span, .track-record-list article:nth-child(n+3) > span { top: 23px; }
  .process-list { margin-top: 46px; flex-direction: column; align-items: stretch; gap: 24px; }
  .process-list li { flex: none; text-align: left; display: flex; align-items: flex-start; gap: 16px; padding: 0; }
  .process-list li::after { display: none; }
  .process-icon { margin: 0; flex-shrink: 0; width: 48px; height: 48px; }
  .process-list li > span { display: none; }
  .process-list h3 { font-size: 16px; margin-bottom: 4px; }
  .process-list p { font-size: 13px; }
  .faq-item summary { padding: 24px 38px 24px 0; gap: 13px; font-size: 16px; }
  .faq-item > div p { padding-left: 24px; padding-right: 30px; }
  .final-cta { padding: 100px 0; }
  .final-cta h2 { font-size: 43px; }
  .final-actions { flex-direction: column; }
  .cta-route { text-align: left; }
  .cta-route span { display: block; margin: 0 0 5px; }
  .cta-route i { margin-inline: 4px; }
  .mobile-apply-bar div { display: none; }
  .mobile-apply-bar a { width: 100%; text-align: center; }
}

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