:root {
  --white: #f5f3ee;
  --black: #050608;
  --acid: #eaff58;
  --ease: cubic-bezier(.16,1,.3,1);
}

* { box-sizing: border-box; }
html { width: 100%; min-height: 100%; margin: 0; overflow-x: hidden; background: var(--black); scroll-behavior: smooth; }
body { width: 100%; min-height: 100%; margin: 0; overflow-x: hidden; color: var(--white); background: var(--black); font-family: Arial, Helvetica, sans-serif; cursor: default; }
button, a { color: inherit; font: inherit; -webkit-tap-highlight-color: transparent; }
button { cursor: pointer; }
a { text-decoration: none; }
::selection { color: #08090b; background: var(--acid); }

.skip-link { position: fixed; z-index: 1000; top: -80px; left: 16px; padding: 11px 15px; color: #08090b; background: var(--acid); font-size: 12px; }
.skip-link:focus { top: 16px; }

.showreel { position: relative; width: 100%; height: 100svh; overflow: hidden; isolation: isolate; }
.scenes, .scene, .scene-image, .vignette, .grain, .color-wash { position: absolute; inset: 0; }
.scenes { z-index: -1; background: #07101d; }
.scene { opacity: 0; visibility: hidden; transition: opacity 1.1s ease, visibility 1.1s; }
.scene.is-active { opacity: 1; visibility: visible; }
.scene-image { inset: -4%; background-position: center; background-repeat: no-repeat; background-size: cover; transform: scale(1.08); animation: drift 8s ease-in-out both; }
.scene-cosmic .scene-image { background-image: url('assets/seedance-hero.png'); background-position: 50% 52%; }
.scene-desert .scene-image { background-image: url('assets/showreel-desert.png'); background-position: 52% 50%; }
.scene-water .scene-image { background-image: url('assets/showreel-underwater.png'); background-position: 48% 52%; }
.scene.is-active .scene-image { animation-name: drift; }
@keyframes drift { from { transform: scale(1.12) translate3d(-.6%, .4%, 0); } to { transform: scale(1.04) translate3d(.7%, -.4%, 0); } }
.vignette { background: linear-gradient(180deg, rgba(0,0,0,.58), transparent 28%, transparent 68%, rgba(0,0,0,.66)), linear-gradient(90deg, rgba(0,0,0,.38), transparent 52%, rgba(0,0,0,.12)); }
.color-wash { z-index: 1; opacity: .23; background: radial-gradient(circle at 54% 48%, transparent 25%, rgba(2,4,8,.62) 100%); mix-blend-mode: multiply; }
.grain { z-index: 2; opacity: .1; pointer-events: none; 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='4' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23n)'/%3E%3C/svg%3E"); animation: grain .18s steps(2) infinite; }
@keyframes grain { 0% { transform: translate(0); } 25% { transform: translate(-1%, 1%); } 50% { transform: translate(1%, -1%); } 75% { transform: translate(.5%, 1.4%); } }

.showreel-nav { position: absolute; z-index: 12; top: 0; left: 0; width: 100%; display: grid; grid-template-columns: 1fr 1fr 1fr; align-items: center; padding: 5.8vh 6.2vw 0; }
.nav-word { position: relative; width: max-content; padding: 7px 0; border: 0; background: none; font-size: clamp(13px, 1.25vw, 20px); line-height: 1; font-weight: 900; letter-spacing: -.045em; text-transform: uppercase; text-shadow: 0 2px 18px rgba(0,0,0,.35); }
.nav-word:nth-child(2) { justify-self: center; }.nav-word:nth-child(3) { justify-self: end; }
.nav-word::after { content: ''; position: absolute; left: 0; right: 0; bottom: 0; height: 2px; background: currentColor; transform: scaleX(0); transform-origin: right; transition: transform .4s var(--ease); }
.nav-word:hover::after, .nav-word:focus-visible::after { transform: scaleX(1); transform-origin: left; }

.scene-copy { position: absolute; z-index: 6; opacity: 0; visibility: hidden; pointer-events: none; transition: opacity .65s ease, visibility .65s, transform .8s var(--ease); transform: translateY(28px); }
.scene-copy.is-active { opacity: 1; visibility: visible; pointer-events: auto; transform: translateY(0); }
.scene-copy-0 { top: 50%; left: 50%; width: min(1040px, 82vw); transform: translate(-50%, calc(-50% + 28px)); }
.scene-copy-0.is-active { transform: translate(-50%, -50%); }
.demo-shell { position: relative; height: min(540px, 68vh); min-height: 460px; overflow: hidden; color: #f7f8fa; background: rgba(7,9,14,.84); border: 1px solid rgba(255,255,255,.18); border-radius: 18px; box-shadow: 0 34px 90px rgba(0,0,0,.55), inset 0 1px 0 rgba(255,255,255,.08); backdrop-filter: blur(22px); }
.demo-shell::before { content: ''; position: absolute; z-index: 0; inset: 0; pointer-events: none; background: radial-gradient(circle at 78% 15%, rgba(134,117,255,.17), transparent 33%), radial-gradient(circle at 15% 90%, rgba(95,218,255,.11), transparent 34%); }
.demo-topbar { position: relative; z-index: 4; height: 65px; display: grid; grid-template-columns: 1fr auto 1fr; align-items: center; gap: 25px; padding: 0 24px; border-bottom: 1px solid rgba(255,255,255,.1); background: rgba(7,9,13,.62); }
.demo-brand { display: flex; align-items: center; gap: 9px; min-width: 0; }
.demo-brand > span { display: grid; place-items: center; width: 24px; height: 24px; color: #080a0e; background: var(--acid); border-radius: 7px; font-size: 11px; font-weight: 900; }
.demo-brand strong { font-size: 11px; letter-spacing: .06em; }
.demo-brand small { color: #727782; font-size: 8px; text-transform: uppercase; letter-spacing: .1em; }
.demo-steps { display: flex; align-items: center; gap: 10px; }
.demo-steps > span { color: #656b77; font-size: 9px; font-weight: 800; letter-spacing: .08em; text-transform: uppercase; transition: color .45s ease; }
.demo-steps > span b { margin-right: 5px; color: #3e434d; font-size: 7px; transition: color .45s ease; }
.demo-steps > i { width: 28px; height: 1px; overflow: hidden; background: rgba(255,255,255,.12); }
.demo-shell[data-demo-step="brief"] [data-demo-marker="brief"], .demo-shell[data-demo-step="prompt"] [data-demo-marker="prompt"], .demo-shell[data-demo-step="generate"] [data-demo-marker="generate"] { color: white; }
.demo-shell[data-demo-step="brief"] [data-demo-marker="brief"] b, .demo-shell[data-demo-step="prompt"] [data-demo-marker="prompt"] b, .demo-shell[data-demo-step="generate"] [data-demo-marker="generate"] b { color: var(--acid); }
.demo-live { justify-self: end; display: flex; align-items: center; gap: 7px; color: #8b909a; font-size: 8px; font-weight: 800; letter-spacing: .1em; text-transform: uppercase; }
.demo-live i { width: 6px; height: 6px; background: #60e87b; border-radius: 50%; box-shadow: 0 0 0 5px rgba(96,232,123,.08), 0 0 12px rgba(96,232,123,.65); animation: demo-live 1.8s ease-in-out infinite; }
@keyframes demo-live { 50% { opacity: .45; transform: scale(.75); } }
.demo-viewport { position: relative; z-index: 2; height: calc(100% - 103px); overflow: hidden; }
.demo-panel { position: absolute; inset: 0; display: grid; grid-template-columns: minmax(220px, .72fr) minmax(430px, 1.55fr); align-items: center; gap: clamp(30px, 5vw, 72px); padding: 32px clamp(35px, 5vw, 72px) 28px; opacity: 0; visibility: hidden; transform: translateX(46px) scale(.985); filter: blur(7px); transition: opacity .7s ease, visibility .7s, transform .85s var(--ease), filter .75s ease; }
.demo-shell[data-demo-step="brief"] .demo-brief, .demo-shell[data-demo-step="prompt"] .demo-prompt, .demo-shell[data-demo-step="generate"] .demo-generate { opacity: 1; visibility: visible; transform: translateX(0) scale(1); filter: blur(0); }
.demo-panel-heading > span { display: block; margin-bottom: 14px; color: var(--acid); font-size: 8px; font-weight: 900; letter-spacing: .15em; text-transform: uppercase; }
.demo-panel-heading > strong { display: block; max-width: 280px; font-size: clamp(24px, 2.15vw, 35px); line-height: 1.02; letter-spacing: -.045em; }
.demo-chat { position: relative; min-height: 225px; display: flex; flex-direction: column; align-items: flex-start; gap: 9px; padding: 28px 30px; background: rgba(18,21,27,.9); border: 1px solid rgba(255,255,255,.1); border-radius: 14px; box-shadow: 0 22px 50px rgba(0,0,0,.28); }
.demo-avatar { position: absolute; top: 28px; left: 30px; display: grid; place-items: center; width: 25px; height: 25px; color: #08090c; background: var(--acid); border-radius: 7px; font-size: 10px; font-weight: 900; }
.demo-message { max-width: 86%; padding: 11px 13px; border-radius: 10px; font-size: 10px; line-height: 1.45; }
.agent-message { margin-left: 35px; color: #c8cbd1; background: #252932; border-top-left-radius: 3px; }
.user-message { min-height: 50px; align-self: flex-end; color: white; background: #413ef0; border-bottom-right-radius: 3px; }
.typing-caret { display: inline-block; width: 1px; height: 12px; margin-left: 2px; vertical-align: -2px; background: white; animation: demo-caret .7s steps(1) infinite; }
@keyframes demo-caret { 50% { opacity: 0; } }
.demo-thinking { display: flex; gap: 4px; margin: 2px 0 0 37px; opacity: 0; transition: opacity .3s ease; }
.demo-thinking.is-visible { opacity: 1; }
.demo-thinking span { width: 5px; height: 5px; background: #7d828d; border-radius: 50%; animation: demo-thinking .8s ease-in-out infinite alternate; }
.demo-thinking span:nth-child(2) { animation-delay: .15s; }.demo-thinking span:nth-child(3) { animation-delay: .3s; }
@keyframes demo-thinking { to { opacity: .25; transform: translateY(-3px); } }
.demo-composer { position: absolute; left: 30px; right: 30px; bottom: 20px; display: flex; justify-content: space-between; align-items: center; padding: 9px 9px 9px 13px; color: #5e636d; background: #11141a; border: 1px solid rgba(255,255,255,.08); border-radius: 8px; font-size: 8px; }
.demo-composer b { padding: 7px 10px; color: #0a0b0e; background: var(--acid); border-radius: 5px; font-size: 7px; letter-spacing: .08em; }
.prompt-card { position: relative; padding: 20px 22px 18px; background: rgba(18,21,27,.94); border: 1px solid rgba(255,255,255,.11); border-radius: 14px; box-shadow: 0 22px 50px rgba(0,0,0,.28); }
.prompt-card::after { content: ''; position: absolute; top: -1px; left: 24px; right: 24px; height: 1px; background: linear-gradient(90deg, transparent, rgba(234,255,88,.65), transparent); }
.prompt-card-head { display: flex; align-items: center; justify-content: space-between; margin-bottom: 15px; }
.prompt-card-head > span { display: flex; align-items: center; gap: 7px; color: #979da8; font-size: 8px; font-weight: 900; letter-spacing: .12em; }
.prompt-card-head > span i { width: 6px; height: 6px; background: var(--acid); border-radius: 50%; box-shadow: 0 0 10px rgba(234,255,88,.6); }
.prompt-card-head button { padding: 7px 10px; color: #aeb2ba; background: #242832; border: 1px solid rgba(255,255,255,.08); border-radius: 6px; font-size: 7px; }
.prompt-line { margin: 0; padding: 8px 0; color: #afb3bd; border-top: 1px solid rgba(255,255,255,.075); font-size: 8.5px; line-height: 1.42; opacity: 0; transform: translateY(7px); transition: opacity .42s ease, transform .5s var(--ease); }
.prompt-line b { margin-right: 7px; color: white; font-size: 7px; letter-spacing: .1em; }
.demo-shell[data-demo-step="prompt"] .prompt-line { opacity: 1; transform: translateY(0); }
.demo-shell[data-demo-step="prompt"] .line-2 { transition-delay: .2s; }.demo-shell[data-demo-step="prompt"] .line-3 { transition-delay: .4s; }.demo-shell[data-demo-step="prompt"] .line-4 { transition-delay: .6s; }
.prompt-ready { grid-column: 2; justify-self: start; display: flex; align-items: center; gap: 7px; margin-top: -50px; color: #777d87; font-size: 8px; }
.prompt-ready span { display: grid; place-items: center; width: 17px; height: 17px; color: #0a0c0d; background: #69ed83; border-radius: 50%; font-size: 9px; }
.generator-window { min-height: 272px; display: flex; overflow: hidden; background: #0e1015; border: 1px solid rgba(255,255,255,.12); border-radius: 14px; box-shadow: 0 24px 55px rgba(0,0,0,.34); }
.generator-rail { width: 40px; flex: 0 0 40px; display: flex; flex-direction: column; align-items: center; gap: 14px; padding-top: 14px; background: #090b0f; border-right: 1px solid rgba(255,255,255,.07); }
.generator-rail b { display: grid; place-items: center; width: 22px; height: 22px; color: white; background: linear-gradient(145deg,#654dff,#e454ff); border-radius: 7px; font-size: 9px; }
.generator-rail span { width: 14px; height: 14px; border: 1px solid #414650; border-radius: 4px; }
.generator-workspace { position: relative; flex: 1; min-width: 0; padding: 14px 14px 12px; }
.generator-title { display: flex; align-items: baseline; gap: 9px; margin-bottom: 11px; }
.generator-title > span { font-size: 12px; font-weight: 900; }.generator-title small { color: #6f747e; font-size: 7px; }.generator-title em { margin-left: auto; padding: 4px 6px; color: #b5a9ff; background: rgba(130,101,255,.12); border: 1px solid rgba(148,125,255,.24); border-radius: 5px; font-size: 6px; font-style: normal; }
.generator-body { width: 55%; }
.generator-prompt { height: 82px; padding: 10px; color: #adb1b9; background: #171a21; border: 1px solid rgba(255,255,255,.08); border-radius: 8px; font-size: 7px; line-height: 1.45; }
.generator-prompt small { display: block; margin-top: 9px; color: #8172ef; font-size: 6px; font-weight: 800; text-transform: uppercase; letter-spacing: .08em; }
.generator-options { display: flex; gap: 5px; margin-top: 7px; }
.generator-options span, .generator-options b { display: grid; place-items: center; min-width: 34px; height: 24px; color: #878c96; background: #191c23; border: 1px solid rgba(255,255,255,.07); border-radius: 5px; font-size: 6.5px; }
.generator-options b { min-width: 50px; margin-left: auto; color: white; background: #6045ef; border-color: #765cff; letter-spacing: .07em; }
.generator-progress { position: relative; height: 42px; margin-top: 8px; overflow: hidden; background: #14171d; border-radius: 6px; }
.generator-progress::before { content: ''; position: absolute; left: 8px; right: 8px; bottom: 9px; height: 3px; overflow: hidden; background: #252932; border-radius: 3px; }
.generator-progress i { position: absolute; z-index: 1; left: 8px; bottom: 9px; width: var(--demo-progress, 0%); height: 3px; background: linear-gradient(90deg,#6748ff,#cb5dff); border-radius: 3px; box-shadow: 0 0 10px rgba(127,78,255,.5); transition: width .12s linear; }
.generator-progress > span { position: absolute; top: 8px; left: 8px; color: #727782; font-size: 6.5px; }
.generator-result { position: absolute; top: 40px; right: 14px; bottom: 12px; width: 40%; margin: 0; overflow: hidden; background: #171a21; border: 1px solid rgba(255,255,255,.08); border-radius: 8px; }
.generator-result img { width: 100%; height: 100%; object-fit: cover; opacity: .15; filter: saturate(.8) blur(3px); transform: scale(1.07); transition: opacity .7s ease, filter .8s ease, transform 1s var(--ease); }
.generator-result::after { content: ''; position: absolute; inset: 0; background: linear-gradient(180deg, transparent 55%, rgba(5,7,10,.88)); }
.generator-result figcaption { position: absolute; z-index: 2; left: 9px; right: 9px; bottom: 8px; display: flex; align-items: center; justify-content: space-between; opacity: 0; transform: translateY(5px); transition: opacity .5s ease, transform .6s var(--ease); }
.generator-result figcaption span { color: #76ef8d; font-size: 7px; font-weight: 800; }.generator-result figcaption small { color: #afb3bb; font-size: 5.5px; }
.demo-shell.is-generated .generator-result img { opacity: 1; filter: saturate(1.04) blur(0); transform: scale(1); }
.demo-shell.is-generated .generator-result figcaption { opacity: 1; transform: translateY(0); }
.demo-shell.is-generated .generator-progress > span { color: #75ec89; }
.demo-caption { position: absolute; z-index: 5; left: 0; right: 0; bottom: 0; height: 38px; display: flex; align-items: center; justify-content: center; gap: 10px; margin: 0; color: #858a94; background: rgba(5,7,11,.75); border-top: 1px solid rgba(255,255,255,.07); font-size: 8px; font-weight: 700; letter-spacing: .05em; }
.demo-caption i { width: 34px; height: 1px; overflow: hidden; background: rgba(255,255,255,.14); }
.demo-caption i::after { content: ''; display: block; width: 100%; height: 100%; background: var(--acid); transform: translateX(-100%); animation: demo-caption-line 3s ease-in-out infinite; }
@keyframes demo-caption-line { 55%,100% { transform: translateX(100%); } }

.examples-section { position: relative; z-index: 4; min-height: 100svh; overflow: hidden; padding: clamp(80px, 11vh, 140px) 0 68px; color: #101116; background: #f0efe9; }
.examples-section::before { content: ''; position: absolute; top: 0; left: 6.2vw; right: 6.2vw; height: 1px; background: rgba(12,13,17,.18); }
.examples-heading { display: grid; grid-template-columns: 1.45fr .55fr; align-items: end; gap: 60px; padding: 0 6.2vw 62px; }
.examples-heading small { display: block; margin-bottom: 20px; color: #777970; font-size: 9px; font-weight: 800; letter-spacing: .15em; }
.examples-heading h2 { margin: 0; font-size: clamp(58px, 7.4vw, 116px); line-height: .79; letter-spacing: -.075em; }
.examples-heading h2 em { color: transparent; font-family: Georgia, 'Times New Roman', serif; font-weight: 400; font-style: italic; -webkit-text-stroke: 1.5px #101116; }
.examples-heading > p { max-width: 360px; margin: 0 0 4px; color: #686961; font-size: 12px; line-height: 1.65; }
.examples-window { width: 100%; overflow: hidden; }
.examples-track { display: flex; width: max-content; gap: 20px; padding: 0 6.2vw; animation: examples-travel 24s cubic-bezier(.65,0,.35,1) infinite alternate; }
@keyframes examples-travel { 0%,15% { transform: translateX(0); } 85%,100% { transform: translateX(calc(-100% + 100vw - 6.2vw)); } }
.example-card { width: clamp(390px, 37vw, 520px); flex: 0 0 auto; color: #111217; }
.example-preview { position: relative; height: clamp(260px, 27vw, 370px); overflow: hidden; color: #f4f5f7; background: #0d0f14; border: 1px solid #babbb7; border-radius: 18px; box-shadow: 0 24px 60px rgba(24,25,27,.12); }
.example-preview::after { content: ''; position: absolute; inset: 0; pointer-events: none; border-radius: inherit; box-shadow: inset 0 1px 0 rgba(255,255,255,.13); }
.example-card footer { padding: 18px 2px 0; }
.example-card footer small { color: #898a83; font-size: 8px; font-weight: 800; letter-spacing: .12em; }
.example-card footer h3 { margin: 6px 0 7px; font-size: clamp(20px, 1.9vw, 28px); letter-spacing: -.045em; }
.example-card footer p { max-width: 420px; margin: 0; color: #6d6e68; font-size: 11px; line-height: 1.45; }
.example-appbar { height: 52px; display: flex; align-items: center; justify-content: space-between; padding: 0 17px; background: #090b0f; border-bottom: 1px solid rgba(255,255,255,.08); font-size: 8px; font-weight: 900; letter-spacing: .08em; }
.example-appbar span { display: flex; align-items: center; gap: 8px; }.example-appbar span b { display: grid; place-items: center; width: 22px; height: 22px; color: #0b0c0e; background: var(--acid); border-radius: 6px; font-size: 9px; }.example-appbar i { color: #6fe887; font-size: 6px; font-style: normal; }
.example-chat-flow { position: absolute; inset: 52px 0 50px; display: flex; flex-direction: column; justify-content: center; align-items: flex-start; gap: 12px; padding: 20px 9%; background: radial-gradient(circle at 72% 34%, rgba(84,72,255,.17), transparent 34%); }
.example-chat-flow p { max-width: 78%; margin: 0; padding: 12px 14px; border-radius: 11px; font-size: 9px; line-height: 1.45; }
.example-agent-bubble { color: #c8cbd2; background: #252931; border-top-left-radius: 3px !important; animation: bubble-agent 7s var(--ease) infinite; }
.example-user-bubble { align-self: flex-end; color: white; background: #4e3bea; border-bottom-right-radius: 3px !important; animation: bubble-user 7s var(--ease) infinite; }
@keyframes bubble-agent { 0%,7% { opacity: 0; transform: translateY(12px); } 15%,92% { opacity: 1; transform: none; } 100% { opacity: 0; } }
@keyframes bubble-user { 0%,28% { opacity: 0; transform: translateY(12px); } 39%,92% { opacity: 1; transform: none; } 100% { opacity: 0; } }
.example-dots { display: flex; gap: 4px; margin-left: 12px; animation: dots-cycle 7s ease infinite; }
.example-dots i { width: 5px; height: 5px; background: #7d828d; border-radius: 50%; animation: demo-thinking .75s ease-in-out infinite alternate; }.example-dots i:nth-child(2) { animation-delay: .13s; }.example-dots i:nth-child(3) { animation-delay: .26s; }
@keyframes dots-cycle { 0%,50%,100% { opacity: 0; } 58%,85% { opacity: 1; } }
.example-input { position: absolute; left: 12px; right: 12px; bottom: 11px; display: flex; align-items: center; justify-content: space-between; height: 35px; padding-left: 12px; color: #5f646d; background: #15181e; border: 1px solid rgba(255,255,255,.07); border-radius: 7px; font-size: 7px; }
.example-input b { align-self: stretch; display: grid; place-items: center; padding: 0 12px; color: #0b0c0f; background: var(--acid); border-radius: 6px; font-size: 6px; letter-spacing: .08em; }
.example-prompt-preview { padding: 25px 28px; background: radial-gradient(circle at 85% 10%, rgba(234,255,88,.1), transparent 30%), #101319; }
.example-prompt-head { display: flex; align-items: center; justify-content: space-between; padding-bottom: 17px; border-bottom: 1px solid rgba(255,255,255,.1); }
.example-prompt-head span { display: flex; align-items: center; gap: 8px; color: #a1a5ae; font-size: 8px; font-weight: 900; letter-spacing: .12em; }.example-prompt-head span i { width: 6px; height: 6px; background: var(--acid); border-radius: 50%; box-shadow: 0 0 11px rgba(234,255,88,.65); }.example-prompt-head > b { padding: 6px 8px; color: #0b0d0f; background: #75ef89; border-radius: 5px; font-size: 6px; letter-spacing: .08em; animation: ready-pulse 7s ease infinite; }
@keyframes ready-pulse { 0%,68% { opacity: 0; transform: scale(.86); } 78%,96% { opacity: 1; transform: scale(1); } 100% { opacity: 0; } }
.example-prompt-lines { padding-top: 10px; }
.example-prompt-lines p { display: grid; grid-template-columns: 75px 1fr; gap: 9px; margin: 0; padding: 11px 0; border-bottom: 1px solid rgba(255,255,255,.07); font-size: 8px; line-height: 1.35; animation: prompt-line-cycle 7s var(--ease) infinite; }
.example-prompt-lines p:nth-child(2) { animation-delay: .25s; }.example-prompt-lines p:nth-child(3) { animation-delay: .5s; }.example-prompt-lines p:nth-child(4) { animation-delay: .75s; }
@keyframes prompt-line-cycle { 0%,12% { opacity: 0; transform: translateX(-9px); } 25%,92% { opacity: 1; transform: none; } 100% { opacity: 0; } }
.example-prompt-lines b { color: white; font-size: 7px; letter-spacing: .09em; }.example-prompt-lines span { color: #9da2ac; }
.example-ready { position: absolute; left: 28px; bottom: 19px; display: flex; align-items: center; gap: 8px; color: #7f848d; font-size: 7px; }.example-ready span { display: grid; place-items: center; width: 17px; height: 17px; color: #0a0c0e; background: #6fec86; border-radius: 50%; font-weight: 900; }
.example-generate-preview { padding: 20px; background: #0d0f14; }
.example-dreamina-head { display: flex; align-items: center; gap: 9px; height: 34px; }
.example-dreamina-head > b { display: grid; place-items: center; width: 25px; height: 25px; background: linear-gradient(145deg,#6348f5,#de4df2); border-radius: 7px; font-size: 9px; }.example-dreamina-head > span { font-size: 11px; font-weight: 900; }.example-dreamina-head small { margin-left: 4px; color: #676b75; font-size: 6px; font-weight: 400; }.example-dreamina-head em { margin-left: auto; padding: 5px 7px; color: #b8adff; background: rgba(118,90,255,.12); border: 1px solid rgba(140,115,255,.25); border-radius: 5px; font-size: 6px; font-style: normal; }
.example-dreamina-body { position: absolute; left: 20px; right: 20px; top: 61px; bottom: 20px; display: grid; grid-template-columns: 1fr .82fr; gap: 10px; }
.example-generation-form { padding: 11px; background: #171a21; border: 1px solid rgba(255,255,255,.08); border-radius: 8px; }.example-generation-form > p { height: 75px; margin: 0; color: #a6aab2; font-size: 7px; line-height: 1.45; }.example-generation-form > div { display: flex; gap: 5px; }.example-generation-form > div span, .example-generation-form > div b { display: grid; place-items: center; min-width: 31px; height: 23px; color: #858a94; background: #21242c; border-radius: 4px; font-size: 6px; }.example-generation-form > div b { min-width: 44px; margin-left: auto; color: white; background: #6547ef; letter-spacing: .07em; }
.example-generation-form aside { position: relative; height: 38px; margin-top: 9px; overflow: hidden; background: #11141a; border-radius: 5px; }.example-generation-form aside::before { content: ''; position: absolute; left: 7px; right: 7px; bottom: 8px; height: 3px; background: #292c34; border-radius: 3px; }.example-generation-form aside i { position: absolute; z-index: 1; left: 7px; bottom: 8px; width: calc(100% - 14px); height: 3px; background: linear-gradient(90deg,#6548ff,#d359f5); border-radius: 3px; transform-origin: left; animation: generation-progress 7s ease-in-out infinite; }.example-generation-form aside small { position: absolute; top: 8px; left: 7px; color: #737883; font-size: 6px; }
@keyframes generation-progress { 0%,12% { transform: scaleX(0); } 72%,92% { transform: scaleX(1); } 100% { transform: scaleX(0); } }
.example-dreamina-body figure { position: relative; margin: 0; overflow: hidden; border-radius: 8px; }.example-dreamina-body img { width: 100%; height: 100%; object-fit: cover; animation: result-cycle 7s var(--ease) infinite; }.example-dreamina-body figcaption { position: absolute; left: 8px; bottom: 8px; padding: 5px 7px; color: #071009; background: #73ee89; border-radius: 4px; font-size: 6px; font-weight: 900; animation: result-label-cycle 7s var(--ease) infinite; }
@keyframes result-cycle { 0%,52% { opacity: .15; filter: blur(5px) saturate(.6); transform: scale(1.08); } 72%,92% { opacity: 1; filter: none; transform: scale(1); } 100% { opacity: .15; } }
@keyframes result-label-cycle { 0%,64% { opacity: 0; transform: translateY(6px); } 76%,92% { opacity: 1; transform: none; } 100% { opacity: 0; } }
.examples-action { display: flex; align-items: center; justify-content: space-between; margin: 72px 6.2vw 0; padding-top: 22px; border-top: 1px solid rgba(16,17,22,.18); color: #696a64; font-size: 10px; }
.examples-action a { padding: 13px 18px; color: white; background: #111318; border-radius: 8px; font-size: 8px; font-weight: 900; letter-spacing: .1em; transition: transform .35s var(--ease), background .35s; }.examples-action a:hover, .examples-action a:focus-visible { background: #3731c7; transform: translateY(-2px); }

.workflow-list { padding: 12px 6.2vw 0; }
.workflow-chapter { max-width: 1180px; margin: 0 auto clamp(110px, 15vh, 170px); }
.workflow-heading { display: grid; grid-template-columns: minmax(260px,.72fr) 1fr; align-items: end; gap: 50px; margin-bottom: 27px; }
.workflow-heading small { grid-column: 1/-1; color: #7d7f78; font-size: 8px; font-weight: 900; letter-spacing: .15em; }
.workflow-heading h3 { margin: 0; font-size: clamp(34px, 4vw, 58px); line-height: .95; letter-spacing: -.06em; }
.workflow-heading p { max-width: 450px; margin: 0 0 4px; color: #70716b; font-size: 11px; line-height: 1.6; }
.product-demo { position: relative; width: 100%; overflow: hidden; border: 1px solid rgba(0,0,0,.28); border-radius: 20px; box-shadow: 0 32px 80px rgba(14,15,18,.16); }
.kino-product-demo { height: clamp(570px, 57vw, 670px); color: #ececec; background: #212121; }
.kino-demo-topbar { position: relative; z-index: 8; height: 58px; display: flex; align-items: center; padding: 0 28px; background: linear-gradient(#212121 58%,rgba(33,33,33,.88)); font-size: 13px; font-weight: 700; }
.kino-demo-topbar span small { margin-left: 7px; color: #999; font-size: 10px; font-weight: 400; }
.kino-demo-topbar > i { display: flex; align-items: center; gap: 7px; margin-left: auto; color: #888; font-size: 9px; font-style: normal; font-weight: 400; }.kino-demo-topbar > i b { width: 6px; height: 6px; background: #ffb348; border-radius: 50%; box-shadow: 0 0 7px #ffb348; }.kino-demo-topbar > em { margin-left: 22px; color: #aaa; font-size: 14px; font-style: normal; }
.kino-demo-stage { position: absolute; inset: 58px 0 116px; overflow: hidden; }
.kino-start-state, .kino-chat-state { position: absolute; inset: 0; }
.kino-start-state { display: flex; flex-direction: column; align-items: center; justify-content: center; padding-bottom: 38px; text-align: center; opacity: 1; animation: kino-start-flow 14s ease-in-out infinite paused; }
.kino-orb-demo { position: relative; display: grid; place-items: center; width: 54px; height: 54px; color: #111; background: var(--acid); border-radius: 17px; box-shadow: 0 14px 50px rgba(234,255,88,.13); font-size: 20px; font-weight: 900; transform: rotate(-6deg); }.kino-orb-demo > i { position: absolute; right: -4px; bottom: -4px; width: 13px; height: 13px; background: #63df79; border: 3px solid #212121; border-radius: 50%; }
.kino-start-state h4 { margin: 23px 0 8px; font-size: clamp(28px,3.4vw,40px); letter-spacing: -.045em; }.kino-start-state > p { margin: 0; color: #a5a5a5; font-size: 13px; }
.kino-suggestion-grid { display: grid; grid-template-columns: repeat(2,minmax(0,1fr)); gap: 9px; width: min(650px,75%); margin-top: 31px; }.kino-suggestion-grid span { display: flex; align-items: center; justify-content: space-between; min-height: 50px; padding: 0 15px; color: #bcbcbc; border: 1px solid rgba(255,255,255,.11); border-radius: 13px; font-size: 10px; text-align: left; }
.kino-chat-state { width: min(780px, calc(100% - 60px)); margin: auto; padding: 35px 0 18px; opacity: 0; transform: translateY(18px); animation: kino-chat-flow 14s var(--ease) infinite paused; }
@keyframes kino-start-flow { 0%,24% { opacity: 1; transform: none; } 31%,92% { opacity: 0; transform: translateY(-18px); visibility: hidden; } 100% { opacity: 1; } }
@keyframes kino-chat-flow { 0%,25% { opacity: 0; transform: translateY(18px); visibility: hidden; } 34%,92% { opacity: 1; transform: none; visibility: visible; } 100% { opacity: 0; } }
.kino-user-message { max-width: 73%; margin-left: auto; padding: 11px 16px; color: #f0f0f0; background: #303030; border-radius: 20px; font-size: 12px; line-height: 1.5; }
.kino-agent-message { display: grid; grid-template-columns: 30px 1fr; gap: 14px; margin-top: 25px; }.kino-agent-message > span { display: grid; place-items: center; width: 28px; height: 28px; color: #111; background: var(--acid); border-radius: 8px; font-size: 10px; font-weight: 900; }.kino-agent-message > div > strong { display: block; margin: 5px 0 8px; font-size: 11px; }.kino-agent-message > div > p { margin: 0; color: #e5e5e5; font-size: 12px; line-height: 1.55; }
.kino-result-card { margin-top: 13px; padding: 16px; background: #171717; border: 1px solid rgba(255,255,255,.11); border-radius: 14px; }.kino-result-card header, .kino-result-card footer { display: flex; align-items: center; justify-content: space-between; }.kino-result-card header small { color: #aaa; font-size: 8px; font-weight: 700; letter-spacing: .08em; }.kino-result-card header b, .kino-result-card footer span, .kino-result-card footer b { padding: 6px 9px; color: #d8d8d8; border: 1px solid rgba(255,255,255,.11); border-radius: 7px; font-size: 8px; font-weight: 400; }.kino-result-card pre { max-height: 112px; overflow: hidden; margin: 15px 0; color: #ededed; white-space: pre-wrap; font: 10px/1.55 'Courier New',monospace; }.kino-result-card footer { justify-content: flex-start; gap: 6px; padding-top: 11px; border-top: 1px solid rgba(255,255,255,.07); }
.kino-demo-composer { position: absolute; z-index: 6; left: 50%; bottom: 30px; width: min(780px,calc(100% - 40px)); min-height: 78px; padding: 15px 13px 9px 16px; background: #2f2f2f; border: 1px solid rgba(255,255,255,.12); border-radius: 25px; box-shadow: 0 8px 30px rgba(0,0,0,.18); transform: translateX(-50%); }.kino-demo-composer > span { color: #aaa; font-size: 12px; }.kino-demo-composer > div { display: flex; align-items: center; gap: 7px; margin-top: 13px; }.kino-demo-composer > div i { display: grid; place-items: center; width: 29px; height: 29px; color: #bbb; border: 1px solid rgba(255,255,255,.18); border-radius: 50%; font-size: 16px; font-style: normal; }.kino-demo-composer > div b { padding: 7px 10px; color: #bbb; border: 1px solid rgba(255,255,255,.13); border-radius: 999px; font-size: 8px; font-weight: 400; }.kino-demo-composer > div em { display: grid; place-items: center; width: 31px; height: 31px; margin-left: auto; color: #111; background: white; border-radius: 50%; font-size: 15px; font-style: normal; }
.kino-demo-note { position: absolute; left: 0; right: 0; bottom: 8px; margin: 0; color: #777; font-size: 7px; text-align: center; }
.workflow-chapter.is-visible .kino-start-state, .workflow-chapter.is-visible .kino-chat-state { animation-play-state: running; }
.image-chat-stage { width: min(830px,calc(100% - 50px)); margin: auto; padding: 23px 0 10px; overflow-y: hidden; }.image-chat-stage .kino-agent-message { margin-top: 18px; animation: image-agent-in 12s var(--ease) infinite paused; }.workflow-chapter.is-visible .image-chat-stage .kino-agent-message { animation-play-state: running; }
@keyframes image-agent-in { 0%,10% { opacity: 0; transform: translateY(14px); } 18%,96% { opacity: 1; transform: none; } 100% { opacity: 0; } }
.kino-user-with-image { display: grid; grid-template-columns: 132px 1fr; gap: 13px; max-width: 80%; padding: 9px; border-radius: 17px; }.kino-user-with-image figure { margin: 0; overflow: hidden; background: #1c1c1c; border-radius: 10px; }.kino-user-with-image img { display: block; width: 100%; height: 82px; object-fit: cover; }.kino-user-with-image figcaption { display: flex; justify-content: space-between; gap: 5px; padding: 7px 8px; color: #aaa; font-size: 6px; }.kino-user-with-image figcaption span { color: var(--acid); }.kino-user-with-image > p { align-self: center; margin: 0; font-size: 10px; line-height: 1.45; }
.composer-with-attachment { min-height: 98px; padding-left: 82px; }.composer-with-attachment > figure { position: absolute; top: 11px; left: 14px; width: 54px; height: 48px; margin: 0; }.composer-with-attachment > figure img { width: 100%; height: 100%; object-fit: cover; border-radius: 7px; }.composer-with-attachment > figure span { position: absolute; top: -5px; right: -5px; display: grid; place-items: center; width: 15px; height: 15px; color: white; background: #141414; border: 1px solid #555; border-radius: 50%; font-size: 8px; }
.dreamina-real-demo { height: clamp(570px,57vw,670px); color: white; background: #0d0e10; }
.dreamina-nav { position: absolute; inset: 0 auto 0 0; width: 76px; display: flex; flex-direction: column; align-items: center; gap: 25px; padding-top: 24px; background: #0a0b0d; border-right: 1px solid rgba(255,255,255,.05); }.dreamina-nav > b { margin-bottom: 20px; color: #55e7ff; font-size: 23px; transform: rotate(-18deg); }.dreamina-nav > span { display: flex; flex-direction: column; align-items: center; gap: 5px; color: #e8e8e8; font-size: 17px; }.dreamina-nav small { font-size: 7px; font-weight: 400; }
.dreamina-main-demo { position: absolute; inset: 0 0 0 76px; padding: 70px clamp(30px,7vw,95px) 30px; }.dreamina-main-demo > h4 { margin: 0 0 34px; font-size: clamp(22px,2.6vw,34px); text-align: center; }.dreamina-main-demo > h4 em { color: #59e4f3; font-style: normal; }
.dreamina-composer-demo { position: relative; min-height: 178px; padding: 24px 20px 56px 112px; background: #1c1e23; border: 1px solid rgba(255,255,255,.05); border-radius: 22px; box-shadow: 0 18px 50px rgba(0,0,0,.18); }
.dreamina-reference { position: absolute; top: 19px; left: 21px; width: 72px; height: 82px; overflow: hidden; border: 1px solid rgba(255,255,255,.13); border-radius: 9px; transform: rotate(-4deg); animation: dream-reference 15s var(--ease) infinite paused; }.dreamina-reference img { width: 100%; height: 100%; object-fit: cover; }.dreamina-reference span { position: absolute; left: 5px; bottom: 5px; padding: 3px 5px; color: white; background: rgba(0,0,0,.68); border-radius: 4px; font-size: 6px; }
@keyframes dream-reference { 0%,8% { opacity: 0; transform: translateY(10px) rotate(-4deg); } 16%,92% { opacity: 1; transform: rotate(-4deg); } 100% { opacity: 0; } }
.dreamina-pasted-prompt { max-width: 850px; margin: 0; color: #bfc2c8; font-size: 10px; line-height: 1.55; animation: dream-prompt 15s var(--ease) infinite paused; }
@keyframes dream-prompt { 0%,15% { opacity: 0; clip-path: inset(0 100% 0 0); } 29%,92% { opacity: 1; clip-path: inset(0); } 100% { opacity: 0; } }
.dreamina-controls { position: absolute; left: 20px; right: 18px; bottom: 16px; display: flex; align-items: center; gap: 7px; }.dreamina-controls span { padding: 9px 11px; color: #e0e1e4; background: #181a1f; border: 1px solid rgba(255,255,255,.08); border-radius: 8px; font-size: 8px; white-space: nowrap; }.dreamina-controls .dream-control-type { color: #59e4f3; }.dreamina-controls > b { display: grid; place-items: center; width: 36px; height: 36px; margin-left: auto; color: #15171a; background: #e6e7ea; border-radius: 50%; font-size: 16px; animation: dream-submit 15s ease infinite paused; }
@keyframes dream-submit { 0%,58% { transform: scale(1); background: #555960; color: #888; } 63%,70% { transform: scale(.87); background: white; color: #111; } 76%,100% { transform: scale(1); } }
.dreamina-format-popover, .dreamina-duration-popover { position: absolute; z-index: 6; bottom: 54px; width: 236px; padding: 13px; background: #292b31; border: 1px solid rgba(255,255,255,.12); border-radius: 12px; box-shadow: 0 18px 40px rgba(0,0,0,.35); opacity: 0; transform: translateY(8px); pointer-events: none; }.dreamina-format-popover { left: 337px; animation: dream-format-menu 15s var(--ease) infinite paused; }.dreamina-duration-popover { left: 490px; animation: dream-duration-menu 15s var(--ease) infinite paused; }.dreamina-format-popover small, .dreamina-duration-popover small { display: block; margin: 4px 0 7px; color: #8a8e96; font-size: 7px; }.dreamina-format-popover div, .dreamina-duration-popover div { display: flex; gap: 6px; margin-bottom: 9px; }.dreamina-format-popover span, .dreamina-duration-popover span { flex: 1; padding: 7px 5px; color: #afb2b9; background: #202228; border: 1px solid transparent; border-radius: 6px; font-size: 7px; text-align: center; }.dreamina-format-popover span.is-selected, .dreamina-duration-popover span.is-selected { color: white; border-color: #56dbe9; background: rgba(54,199,219,.12); }
@keyframes dream-format-menu { 0%,30%,100% { opacity: 0; transform: translateY(8px); } 35%,47% { opacity: 1; transform: none; } 52% { opacity: 0; } }
@keyframes dream-duration-menu { 0%,46%,100% { opacity: 0; transform: translateY(8px); } 51%,60% { opacity: 1; transform: none; } 65% { opacity: 0; } }
.dreamina-feature-row { display: grid; grid-template-columns: repeat(3,1fr); gap: 12px; margin-top: 30px; transition: opacity .6s; }.dreamina-feature-row > span { display: grid; grid-template-columns: 42px 1fr; align-items: center; min-height: 72px; padding: 12px; color: #eee; background: #17191d; border: 1px solid rgba(255,255,255,.05); border-radius: 15px; font-size: 10px; font-weight: 800; }.dreamina-feature-row b { grid-row: 1/3; display: grid; place-items: center; width: 34px; height: 34px; color: white; background: linear-gradient(145deg,#4d7fff,#35c8ed); border-radius: 9px; }.dreamina-feature-row small { color: #787c84; font-size: 7px; font-weight: 400; }
.dreamina-generation-result { position: absolute; z-index: 8; left: clamp(30px,7vw,95px); right: clamp(30px,7vw,95px); bottom: 28px; display: grid; grid-template-columns: 190px 1fr; gap: 18px; min-height: 142px; padding: 12px; background: #17191e; border: 1px solid rgba(255,255,255,.1); border-radius: 15px; box-shadow: 0 22px 60px rgba(0,0,0,.4); opacity: 0; transform: translateY(24px); animation: dream-result-panel 15s var(--ease) infinite paused; }.dreamina-generation-result figure { position: relative; margin: 0; overflow: hidden; border-radius: 9px; }.dreamina-generation-result img { width: 100%; height: 100%; object-fit: cover; }.dreamina-generation-result figcaption { position: absolute; left: 7px; bottom: 7px; padding: 4px 6px; color: #dfe1e5; background: rgba(0,0,0,.65); border-radius: 4px; font-size: 6px; }.dreamina-generation-result > div { align-self: center; }.dreamina-generation-result strong { font-size: 12px; }.dreamina-generation-result p { margin: 6px 0 18px; color: #80848d; font-size: 8px; }.dreamina-generation-result > div > i { display: block; height: 4px; overflow: hidden; background: #2c2f36; border-radius: 4px; }.dreamina-generation-result > div > i span { display: block; width: 100%; height: 100%; background: linear-gradient(90deg,#3cd4e8,#7b5cff); transform-origin: left; animation: dream-progress 15s linear infinite paused; }.dreamina-generation-result > div > small { display: block; margin-top: 7px; color: #6e727b; font-size: 7px; }
@keyframes dream-result-panel { 0%,67% { opacity: 0; transform: translateY(24px); visibility: hidden; } 74%,94% { opacity: 1; transform: none; visibility: visible; } 100% { opacity: 0; } }
@keyframes dream-progress { 0%,70% { transform: scaleX(0); } 91%,100% { transform: scaleX(1); } }
.workflow-chapter.is-visible .dreamina-reference, .workflow-chapter.is-visible .dreamina-pasted-prompt, .workflow-chapter.is-visible .dreamina-controls > b, .workflow-chapter.is-visible .dreamina-format-popover, .workflow-chapter.is-visible .dreamina-duration-popover, .workflow-chapter.is-visible .dreamina-generation-result, .workflow-chapter.is-visible .dreamina-generation-result > div > i span { animation-play-state: running; }

.scene-copy-1 { top: 40%; left: 6.2vw; max-width: 640px; }
.scene-label { margin: 0 0 15px; font-size: 9px; font-weight: 800; letter-spacing: .16em; text-transform: uppercase; }
.scene-copy h1, .scene-copy h2 { margin: 0; font-size: clamp(58px, 7.4vw, 118px); line-height: .78; letter-spacing: -.072em; font-weight: 900; text-transform: uppercase; }
.scene-copy em { color: transparent; font-family: Georgia, 'Times New Roman', serif; font-weight: 400; font-style: italic; letter-spacing: -.08em; -webkit-text-stroke: 1.3px rgba(255,255,255,.9); }
.scene-caption { margin: 25px 0 0; font-size: 10px; line-height: 1.45; }

.scene-copy-2 { left: 50%; bottom: 17vh; width: min(940px, 82vw); text-align: center; transform: translate(-50%, 28px); }
.scene-copy-2.is-active { transform: translate(-50%, 0); }
.scene-copy-2 h2 { font-size: clamp(54px, 7vw, 108px); }
.btn-wrapper { position: relative; display: inline-block; isolation: isolate; margin-top: 33px; }
.scene-cta.btn {
  --border-radius: 10px;
  --padding: 4px;
  --transition: .4s;
  --button-color: #101318;
  --highlight-color-hue: 202deg;
  position: relative;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-width: 216px;
  min-height: 50px;
  padding: 9px 18px 9px 14px;
  color: white;
  background-color: var(--button-color);
  border: 1px solid rgba(255,255,255,.16);
  border-radius: var(--border-radius);
  box-shadow: inset 0 1px 1px rgba(255,255,255,.2), inset 0 3px 5px rgba(255,255,255,.08), inset 0 10px 18px rgba(255,255,255,.035), 0 12px 28px rgba(0,0,0,.28);
  font-size: 10px;
  font-weight: 700;
  letter-spacing: .08em;
  text-transform: uppercase;
  user-select: none;
  transition: box-shadow var(--transition), border-color var(--transition), background-color var(--transition), transform var(--transition);
}
.scene-cta.btn::before { content: ''; position: absolute; z-index: -1; inset: calc(0px - var(--padding)); border-radius: calc(var(--border-radius) + var(--padding)); pointer-events: none; background: linear-gradient(0deg,#0006,#000b); box-shadow: 0 -8px 8px -6px transparent inset, 1px 1px 1px rgba(255,255,255,.13), -2px -2px 2px rgba(0,0,0,.15); transition: box-shadow var(--transition), filter var(--transition); }
.scene-cta.btn::after { content: ''; position: absolute; inset: 0; border-radius: inherit; pointer-events: none; opacity: 0; background: linear-gradient(0deg,#fff,hsl(var(--highlight-color-hue),100%,70%),hsla(var(--highlight-color-hue),100%,70%,.5) 8%,transparent); transition: opacity var(--transition), filter var(--transition); }
.btn-svg { position: relative; z-index: 1; flex: 0 0 auto; width: 22px; height: 22px; margin-right: 12px; fill: #e8e8e8; filter: drop-shadow(0 0 2px rgba(255,255,255,.55)); animation: btn-flicker 2s linear infinite .5s; transition: fill var(--transition), filter var(--transition), opacity var(--transition); }
@keyframes btn-flicker { 50% { opacity: .34; } }
.txt-wrapper { position: relative; z-index: 1; display: flex; align-items: center; width: 128px; height: 16px; }
.txt-1, .txt-2 { position: absolute; left: 0; display: flex; white-space: nowrap; }
.txt-2 { opacity: 0; }
.btn-letter { position: relative; display: inline-block; color: rgba(255,255,255,.45); animation: btn-letter 2s ease-in-out infinite; transition: color var(--transition), text-shadow var(--transition), opacity var(--transition); }
@keyframes btn-letter { 50% { color: white; text-shadow: 0 0 3px rgba(255,255,255,.55); } }
.btn-letter:nth-child(2) { animation-delay: .08s; }.btn-letter:nth-child(3) { animation-delay: .16s; }.btn-letter:nth-child(4) { animation-delay: .24s; }.btn-letter:nth-child(5) { animation-delay: .32s; }.btn-letter:nth-child(6) { animation-delay: .4s; }.btn-letter:nth-child(7) { animation-delay: .48s; }.btn-letter:nth-child(8) { animation-delay: .56s; }.btn-letter:nth-child(9) { animation-delay: .64s; }.btn-letter:nth-child(10) { animation-delay: .72s; }.btn-letter:nth-child(11) { animation-delay: .8s; }.btn-letter:nth-child(12) { animation-delay: .88s; }.btn-letter:nth-child(13) { animation-delay: .96s; }.btn-letter:nth-child(14) { animation-delay: 1.04s; }.btn-letter:nth-child(15) { animation-delay: 1.12s; }.btn-letter:nth-child(16) { animation-delay: 1.2s; }
.scene-cta.btn:hover, .scene-cta.btn:focus-visible { border-color: hsla(var(--highlight-color-hue),100%,80%,.55); background-color: #0b1821; transform: translateY(-2px); outline: none; }
.scene-cta.btn:hover::before, .scene-cta.btn:focus-visible::before { box-shadow: 0 -8px 9px -6px rgba(255,255,255,.65) inset, 0 -16px 18px -8px hsla(var(--highlight-color-hue),100%,70%,.32) inset, 1px 1px 1px rgba(255,255,255,.18), -2px -2px 2px rgba(0,0,0,.15); }
.scene-cta.btn:hover::after, .scene-cta.btn:focus-visible::after { opacity: .75; mask-image: linear-gradient(0deg,#fff,transparent); }
.scene-cta.btn:hover .btn-svg, .scene-cta.btn:focus-visible .btn-svg { fill: white; filter: drop-shadow(0 0 4px hsl(var(--highlight-color-hue),100%,70%)) drop-shadow(0 -4px 6px rgba(0,0,0,.5)); animation: none; }
.scene-cta.btn:active { border-color: hsla(var(--highlight-color-hue),100%,80%,.75); background-color: hsla(var(--highlight-color-hue),50%,20%,.6); transform: translateY(0); }

.brand-stamp { position: absolute; z-index: 8; right: 6.2vw; bottom: 6.2vh; font-size: 17px; font-weight: 900; letter-spacing: -.06em; }
.brand-stamp sup { margin-left: 2px; font-size: 6px; vertical-align: super; }

.screen-overlay { position: fixed; z-index: 30; inset: 0; display: flex; padding: 5.8vh 6.2vw 6vh; visibility: hidden; clip-path: inset(0 0 100% 0); transition: clip-path .8s var(--ease), visibility .8s; }
.screen-overlay.is-open { visibility: visible; clip-path: inset(0); }
.menu-overlay { align-items: flex-end; justify-content: space-between; color: #090a0c; background: var(--acid); }
.about-overlay { align-items: center; color: white; background: #0a0b0e; }
.overlay-close { position: absolute; top: 5.8vh; right: 6.2vw; padding: 7px 0; color: inherit; background: none; border: 0; border-bottom: 1px solid currentColor; font-size: 10px; font-weight: 800; letter-spacing: .1em; text-transform: uppercase; }
.menu-overlay nav { display: flex; flex-direction: column; }
.menu-overlay nav a, .menu-overlay nav button { display: flex; align-items: baseline; gap: 30px; padding: 0; color: inherit; background: none; border: 0; font-size: clamp(58px, 9.5vw, 145px); line-height: .78; font-weight: 900; letter-spacing: -.075em; text-transform: uppercase; transition: transform .4s var(--ease); }
.menu-overlay nav a:hover, .menu-overlay nav button:hover { transform: translateX(15px); }
.menu-overlay nav span { width: 30px; font-size: 8px; letter-spacing: .1em; }
.menu-overlay > p { margin: 0; font-size: 9px; font-weight: 700; line-height: 1.5; text-transform: uppercase; letter-spacing: .08em; }
.about-copy { width: min(1120px, 100%); margin: auto; }
.about-copy small { color: #777a81; font-size: 9px; letter-spacing: .15em; text-transform: uppercase; }
.about-copy h2 { margin: 6vh 0 4vh; font-size: clamp(52px, 7.2vw, 110px); line-height: .82; letter-spacing: -.07em; }
.about-copy h2 em { color: var(--acid); font-family: Georgia, serif; font-weight: 400; }
.about-copy p { max-width: 500px; margin-left: 44%; color: #96999f; font-size: 13px; line-height: 1.65; }
.about-copy a { display: flex; justify-content: space-between; width: min(500px, 56%); margin: 4vh 0 0 44%; padding: 16px 0; border-bottom: 1px solid rgba(255,255,255,.35); font-size: 11px; font-weight: 800; text-transform: uppercase; }

.cursor-dot, .cursor-ring { position: fixed; z-index: 100; top: 0; left: 0; pointer-events: none; border-radius: 50%; opacity: 0; }
.cursor-dot { width: 5px; height: 5px; background: white; }.cursor-ring { width: 34px; height: 34px; border: 1px solid rgba(255,255,255,.72); mix-blend-mode: difference; transition: width .2s, height .2s; }
body.has-cursor .cursor-dot, body.has-cursor .cursor-ring { opacity: 1; }

@media (max-width: 900px) {
  .scene-copy-0 { width: calc(100% - 44px); }
  .demo-topbar { grid-template-columns: 1fr auto; padding: 0 18px; }.demo-steps { display: none; }
  .demo-panel { grid-template-columns: minmax(170px,.62fr) minmax(360px,1.4fr); gap: 24px; padding-inline: 28px; }
  .demo-brand small { display: none; }
  .examples-heading { grid-template-columns: 1fr; gap: 28px; }.examples-heading > p { max-width: 500px; }
  .workflow-heading { grid-template-columns: 1fr; gap: 12px; }.workflow-heading small { grid-column: 1; }.workflow-heading p { max-width: 520px; }
  .dreamina-main-demo { padding-inline: 35px; }.dreamina-duration-popover { right: 15px; left: auto; }.dreamina-generation-result { left: 35px; right: 35px; }
}

@media (max-width: 720px) {
  .showreel-nav { padding: 28px 22px 0; }.nav-word { font-size: 11px; }
  .scene-copy-0 { top: 53%; width: calc(100% - 28px); }
  .demo-shell { height: min(650px, 78vh); min-height: 540px; border-radius: 14px; }
  .demo-topbar { height: 54px; padding: 0 14px; }.demo-live { font-size: 6.5px; }.demo-live i { width: 5px; height: 5px; }.demo-brand strong { font-size: 10px; }
  .demo-viewport { height: calc(100% - 88px); }
  .demo-panel { grid-template-columns: 1fr; grid-template-rows: auto 1fr; align-items: stretch; gap: 12px; padding: 18px 16px 14px; }
  .demo-panel-heading > span { margin-bottom: 7px; font-size: 6.5px; }.demo-panel-heading > strong { max-width: none; font-size: 20px; }
  .demo-chat { min-height: 0; padding: 22px 18px; }.demo-avatar { top: 22px; left: 18px; }.demo-message { font-size: 9px; }.demo-composer { left: 18px; right: 18px; bottom: 14px; }
  .prompt-card { padding: 14px 16px 12px; }.prompt-line { padding: 7px 0; font-size: 7.5px; }.prompt-ready { grid-column: 1; margin-top: -3px; }
  .generator-window { min-height: 0; }.generator-rail { width: 34px; flex-basis: 34px; }.generator-workspace { padding: 11px; }.generator-title { margin-bottom: 8px; }
  .generator-body { width: 100%; padding-right: 0; }.generator-prompt { height: 69px; padding-right: 44%; }.generator-options span { min-width: 29px; }.generator-options b { min-width: 42px; }
  .generator-result { top: 39px; right: 11px; bottom: 91px; width: 39%; }.generator-result figcaption { display: block; }.generator-result figcaption small { display: block; margin-top: 2px; }
  .demo-caption { height: 34px; font-size: 7px; }
  .scene-copy-1 { top: 42%; left: 22px; max-width: calc(100% - 44px); }.scene-copy h1, .scene-copy h2 { font-size: 16vw; }
  .scene-copy-2 { width: calc(100% - 36px); bottom: 23vh; }.scene-copy-2 h2 { font-size: 13vw; }
  .brand-stamp { display: none; }
  .examples-section { padding-top: 74px; }.examples-heading { padding: 0 20px 42px; }.examples-heading h2 { font-size: 17vw; }.examples-heading small { margin-bottom: 15px; font-size: 7px; }.examples-heading > p { font-size: 11px; }
  .examples-track { gap: 12px; padding: 0 18px; }.example-card { width: calc(100vw - 36px); }.example-preview { height: 280px; border-radius: 14px; }.example-card footer h3 { font-size: 22px; }
  .example-prompt-preview { padding: 20px; }.example-prompt-lines p { grid-template-columns: 64px 1fr; padding: 9px 0; }.example-ready { left: 20px; bottom: 15px; }
  .example-generate-preview { padding: 14px; }.example-dreamina-body { left: 14px; right: 14px; top: 54px; bottom: 14px; }.example-generation-form > p { height: 68px; }
  .examples-action { margin: 54px 20px 0; }.examples-action span { max-width: 135px; line-height: 1.4; }
  .workflow-list { padding: 0 14px; }.workflow-chapter { margin-bottom: 92px; }.workflow-heading { padding: 0 6px; }.workflow-heading h3 { font-size: 34px; }.workflow-heading p { font-size: 10px; }
  .product-demo { border-radius: 14px; }.kino-product-demo { height: 670px; }.kino-demo-topbar { padding: 0 15px; }.kino-demo-topbar > i { font-size: 7px; }.kino-demo-topbar > em { margin-left: 10px; }
  .kino-demo-stage { bottom: 122px; }.kino-start-state { justify-content: flex-start; padding-top: 70px; }.kino-start-state h4 { font-size: 28px; }.kino-start-state > p { max-width: 260px; font-size: 11px; }.kino-suggestion-grid { grid-template-columns: 1fr; width: calc(100% - 36px); margin-top: 24px; }.kino-suggestion-grid span:nth-child(n+3) { display: none; }
  .kino-chat-state { width: calc(100% - 26px); padding-top: 24px; }.kino-user-message { max-width: 88%; font-size: 10px; }.kino-agent-message { grid-template-columns: 27px 1fr; gap: 9px; }.kino-agent-message > div > p { font-size: 10px; }.kino-result-card { padding: 12px; }.kino-result-card pre { max-height: 168px; font-size: 8px; }.kino-demo-composer { width: calc(100% - 20px); min-height: 82px; bottom: 27px; border-radius: 21px; }.kino-demo-note { font-size: 6px; }
  .image-chat-stage { width: calc(100% - 20px); padding-top: 16px; }.kino-user-with-image { grid-template-columns: 98px 1fr; max-width: 96%; }.kino-user-with-image img { height: 70px; }.image-chat-stage .kino-result-card pre { max-height: 134px; }.composer-with-attachment { min-height: 100px; }
  .dreamina-real-demo { height: 720px; }.dreamina-nav { width: 48px; gap: 22px; }.dreamina-nav > span { font-size: 14px; }.dreamina-nav small { display: none; }.dreamina-main-demo { left: 48px; padding: 46px 13px 18px; }.dreamina-main-demo > h4 { margin-bottom: 24px; font-size: 20px; }
  .dreamina-composer-demo { min-height: 292px; padding: 111px 13px 104px; border-radius: 16px; }.dreamina-reference { top: 17px; left: 17px; width: 72px; }.dreamina-pasted-prompt { font-size: 8px; }.dreamina-controls { left: 12px; right: 12px; bottom: 12px; flex-wrap: wrap; }.dreamina-controls span { padding: 7px 8px; font-size: 6px; }.dreamina-controls > b { width: 31px; height: 31px; }.dreamina-format-popover, .dreamina-duration-popover { bottom: 86px; width: 205px; }.dreamina-format-popover { left: 10px; }.dreamina-duration-popover { right: 10px; }
  .dreamina-feature-row { grid-template-columns: 1fr; gap: 7px; margin-top: 17px; }.dreamina-feature-row > span { min-height: 54px; }.dreamina-feature-row > span:nth-child(n+2) { display: none; }
  .dreamina-generation-result { left: 13px; right: 13px; bottom: 18px; grid-template-columns: 120px 1fr; min-height: 122px; }.dreamina-generation-result p { margin-bottom: 12px; }
  .screen-overlay { padding: 28px 22px 36px; }.overlay-close { top: 28px; right: 22px; }
  .menu-overlay { align-items: center; }.menu-overlay > p { display: none; }.menu-overlay nav a, .menu-overlay nav button { font-size: 15vw; }
  .about-copy h2 { font-size: 14vw; }.about-copy p, .about-copy a { width: 100%; max-width: none; margin-left: 0; }
}

@media (pointer: coarse) { .cursor-dot, .cursor-ring { display: none; } }
@media (prefers-reduced-motion: reduce) {
  *, *::before, *::after { animation-duration: .01ms !important; animation-iteration-count: 1 !important; transition-duration: .01ms !important; }
  .demo-shell { --demo-progress: 100%; }
  .examples-window { overflow-x: auto; }.examples-track { transform: none !important; }
  .kino-start-state { display: none; }.kino-chat-state { opacity: 1; visibility: visible; transform: none; }.dreamina-reference, .dreamina-pasted-prompt { opacity: 1; clip-path: none; }.dreamina-generation-result { opacity: 1; visibility: visible; transform: none; }
}
