@font-face {
    font-family: "Alexandria";
    src: url("/assets/fonts/alexandria.ttf") format("truetype");
    font-weight: 100 900;
    font-display: swap;
}

@font-face {
    font-family: "Gabarito";
    src: url("/assets/fonts/gabarito.ttf") format("truetype");
    font-weight: 400 900;
    font-display: swap;
}

:root {
    --ink: #0b0e12;
    --ink-soft: #11151b;
    --panel: #161b22;
    --line: rgba(255, 255, 255, 0.12);
    --paper: #f1f2ec;
    --white: #ffffff;
    --muted: #9aa1ab;
    --acid: #f3ff86;
    --cyan: #7ce7ff;
    --pink: #ff8ce8;
    --radius: 26px;
    --section: min(1240px, calc(100% - 64px));
    --shadow: 0 35px 100px rgba(0, 0, 0, 0.45);
}

* {
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
    scroll-padding-top: 90px;
    overflow-x: hidden;
}

body {
    margin: 0;
    color: var(--white);
    background: var(--ink);
    font-family: "Alexandria", sans-serif;
    line-height: 1.5;
    overflow-x: hidden;
}

body::before {
    position: fixed;
    z-index: 100;
    inset: 0;
    pointer-events: none;
    content: "";
    opacity: 0.035;
    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='.9' numOctaves='4' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23n)' opacity='.7'/%3E%3C/svg%3E");
}

a {
    color: inherit;
    text-decoration: none;
}

img,
video,
svg {
    display: block;
}

button,
a {
    -webkit-tap-highlight-color: transparent;
}

button {
    font: inherit;
}

.skip-link {
    position: fixed;
    z-index: 1000;
    top: 12px;
    left: 12px;
    padding: 10px 16px;
    color: var(--ink);
    background: var(--acid);
    border-radius: 999px;
    transform: translateY(-150%);
    transition: transform 180ms ease;
}

.skip-link:focus {
    transform: translateY(0);
}

.site-header {
    position: fixed;
    z-index: 50;
    top: 18px;
    left: 50%;
    width: min(1180px, calc(100% - 36px));
    height: 64px;
    padding: 0 10px 0 18px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 22px;
    background: rgba(11, 14, 18, 0.7);
    backdrop-filter: blur(18px);
    -webkit-backdrop-filter: blur(18px);
    transform: translateX(-50%);
    transition: border-color 220ms ease, background 220ms ease, box-shadow 220ms ease;
}

.site-header.is-scrolled {
    border-color: rgba(255, 255, 255, 0.18);
    background: rgba(11, 14, 18, 0.9);
    box-shadow: 0 18px 50px rgba(0, 0, 0, 0.35);
}

.brand {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    font-family: "Gabarito", sans-serif;
    font-size: 21px;
    font-weight: 700;
    letter-spacing: -0.03em;
}

.brand img {
    border-radius: 9px;
}

.desktop-nav {
    display: flex;
    align-items: center;
    gap: 30px;
}

.desktop-nav a {
    position: relative;
    color: #bec3cb;
    font-size: 13px;
    font-weight: 500;
    transition: color 180ms ease;
}

.desktop-nav a::after {
    position: absolute;
    left: 0;
    right: 100%;
    bottom: -5px;
    height: 1px;
    content: "";
    background: var(--acid);
    transition: right 180ms ease;
}

.desktop-nav a:hover {
    color: var(--white);
}

.desktop-nav a:hover::after {
    right: 0;
}

.header-cta {
    height: 44px;
    padding: 0 18px;
    display: inline-flex;
    align-items: center;
    gap: 9px;
    color: var(--ink);
    background: var(--acid);
    border-radius: 14px;
    font-size: 13px;
    font-weight: 700;
    transition: transform 180ms ease, background 180ms ease;
}

.header-cta:hover {
    background: var(--white);
    transform: translateY(-2px);
}

.hero {
    position: relative;
    min-height: 900px;
    padding: 176px max(32px, calc((100vw - 1240px) / 2)) 100px;
    display: grid;
    grid-template-columns: minmax(0, 0.9fr) minmax(500px, 1.1fr);
    align-items: center;
    gap: 70px;
    overflow: hidden;
    background:
        linear-gradient(rgba(255,255,255,.03) 1px, transparent 1px),
        linear-gradient(90deg, rgba(255,255,255,.03) 1px, transparent 1px);
    background-size: 54px 54px;
}

.hero::after {
    position: absolute;
    right: -8%;
    bottom: -35%;
    width: 72vw;
    height: 72vw;
    content: "";
    border: 1px solid rgba(255, 255, 255, 0.05);
    border-radius: 50%;
}

.hero-glow {
    position: absolute;
    pointer-events: none;
    border-radius: 50%;
    filter: blur(18px);
}

.hero-glow-one {
    top: 10%;
    right: 8%;
    width: 480px;
    height: 480px;
    background: radial-gradient(circle, rgba(71, 142, 255, 0.22), rgba(132, 43, 255, 0.08) 45%, transparent 72%);
}

.hero-glow-two {
    bottom: 4%;
    left: 12%;
    width: 360px;
    height: 360px;
    background: radial-gradient(circle, rgba(243, 255, 134, 0.11), transparent 70%);
}

.hero-copy {
    position: relative;
    z-index: 2;
    max-width: 650px;
}

.eyebrow,
.section-index {
    margin: 0 0 26px;
    color: #c7cbd1;
    font-size: 11px;
    font-weight: 700;
    letter-spacing: 0.17em;
    text-transform: uppercase;
}

.eyebrow {
    display: flex;
    align-items: center;
    gap: 10px;
}

.eyebrow span {
    width: 7px;
    height: 7px;
    background: var(--acid);
    border-radius: 50%;
    box-shadow: 0 0 18px rgba(243, 255, 134, 0.75);
}

.hero h1,
.section h2,
.gallery-heading h2,
.privacy-copy h2,
.final-cta h2 {
    margin: 0;
    font-family: "Gabarito", sans-serif;
    font-weight: 500;
    line-height: 0.94;
    letter-spacing: -0.07em;
}

.hero h1 {
    font-size: clamp(66px, 7.1vw, 112px);
}

h1 em,
h2 em {
    color: var(--acid);
    font-family: Georgia, serif;
    font-weight: 400;
    letter-spacing: -0.06em;
}

.hero-intro {
    max-width: 610px;
    margin: 30px 0 0;
    color: #aeb4bd;
    font-size: 17px;
    line-height: 1.75;
}

.hero-actions {
    margin-top: 38px;
    display: flex;
    align-items: center;
    gap: 26px;
}

.button {
    min-height: 56px;
    padding: 0 24px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 11px;
    border-radius: 17px;
    font-size: 14px;
    font-weight: 750;
    transition: transform 200ms ease, box-shadow 200ms ease, background 200ms ease;
}

.button svg {
    width: 21px;
    height: 21px;
    fill: currentColor;
}

.button-primary {
    color: var(--ink);
    background: var(--acid);
    box-shadow: 0 14px 38px rgba(224, 255, 92, 0.16);
}

.button-primary:hover {
    background: var(--white);
    box-shadow: 0 18px 46px rgba(224, 255, 92, 0.25);
    transform: translateY(-3px);
}

.text-link {
    display: inline-flex;
    align-items: center;
    gap: 12px;
    font-size: 13px;
    font-weight: 650;
}

.text-link span {
    color: var(--acid);
    transition: transform 180ms ease;
}

.text-link:hover span {
    transform: translate(3px, 3px);
}

.hero-meta {
    margin-top: 44px;
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
}

.hero-meta span {
    padding: 8px 11px;
    color: #858d98;
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 999px;
    font-size: 10px;
    font-weight: 700;
    letter-spacing: 0.04em;
    text-transform: uppercase;
}

.hero-studio {
    position: relative;
    z-index: 2;
    min-height: 650px;
    display: grid;
    place-items: center;
}

.studio-window {
    position: relative;
    z-index: 2;
    width: min(500px, 100%);
    overflow: hidden;
    border: 1px solid rgba(255, 255, 255, 0.17);
    border-radius: 34px;
    background: rgba(19, 23, 30, 0.88);
    box-shadow: var(--shadow), inset 0 1px rgba(255, 255, 255, 0.05);
    backdrop-filter: blur(20px);
    transform: rotate(2deg);
    transition: transform 500ms cubic-bezier(.2,.8,.2,1);
}

.hero-studio:hover .studio-window {
    transform: rotate(0deg) translateY(-8px);
}

.studio-bar {
    height: 58px;
    padding: 0 20px;
    display: grid;
    grid-template-columns: 1fr auto 1fr;
    align-items: center;
    color: #8e96a2;
    border-bottom: 1px solid rgba(255, 255, 255, 0.08);
    font-size: 9px;
    font-weight: 700;
    letter-spacing: 0.14em;
}

.window-dots {
    display: flex;
    gap: 6px;
}

.window-dots i {
    width: 7px;
    height: 7px;
    border-radius: 50%;
    background: #38404b;
}

.window-dots i:first-child {
    background: var(--pink);
}

.window-dots i:nth-child(2) {
    background: var(--acid);
}

.live-pill {
    justify-self: end;
    display: flex;
    align-items: center;
    gap: 6px;
    letter-spacing: 0;
}

.live-pill i {
    width: 6px;
    height: 6px;
    background: #7fff9c;
    border-radius: 50%;
    box-shadow: 0 0 12px rgba(127, 255, 156, 0.7);
}

.studio-media {
    position: relative;
    height: 420px;
    margin: 10px;
    overflow: hidden;
    border-radius: 25px;
    background: #090b0e;
}

.studio-media video {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.studio-media::after {
    position: absolute;
    inset: 0;
    content: "";
    background: linear-gradient(to top, rgba(7, 9, 12, 0.35), transparent 36%);
    pointer-events: none;
}

.scan-line {
    position: absolute;
    z-index: 2;
    top: 0;
    left: 0;
    right: 0;
    height: 1px;
    background: rgba(124, 231, 255, 0.65);
    box-shadow: 0 0 20px rgba(124, 231, 255, 0.5);
    animation: scan 5s linear infinite;
}

@keyframes scan {
    0% { transform: translateY(0); opacity: 0; }
    8% { opacity: 1; }
    85% { opacity: 1; }
    100% { transform: translateY(420px); opacity: 0; }
}

.sound-toggle {
    position: absolute;
    z-index: 4;
    right: 18px;
    bottom: 18px;
    width: 43px;
    height: 43px;
    display: grid;
    place-items: center;
    color: var(--white);
    border: 1px solid rgba(255, 255, 255, 0.18);
    border-radius: 50%;
    background: rgba(7, 9, 12, 0.58);
    backdrop-filter: blur(10px);
    cursor: pointer;
}

.sound-toggle svg {
    width: 18px;
    height: 18px;
    fill: currentColor;
}

.sound-toggle .sound-on {
    display: none;
}

.sound-toggle.is-on .sound-on {
    display: block;
}

.sound-toggle.is-on .sound-off {
    display: none;
}

.prompt-panel {
    padding: 12px 20px 20px;
}

.prompt-heading,
.prompt-settings {
    display: flex;
    align-items: center;
}

.prompt-heading {
    justify-content: space-between;
    color: #787f89;
    font-size: 9px;
    font-weight: 700;
    letter-spacing: 0.08em;
    text-transform: uppercase;
}

.prompt-panel p {
    margin: 10px 0 16px;
    color: #c9cdd3;
    font-size: 11px;
    line-height: 1.55;
}

.prompt-settings {
    gap: 7px;
}

.prompt-settings > span {
    padding: 6px 8px;
    color: #9299a4;
    border: 1px solid rgba(255, 255, 255, 0.08);
    border-radius: 7px;
    font-size: 8px;
    font-weight: 700;
}

.prompt-settings .generate-chip {
    margin-left: auto;
    color: var(--acid);
    border-color: rgba(243, 255, 134, 0.25);
    background: rgba(243, 255, 134, 0.06);
}

.generate-chip i {
    margin-left: 4px;
    font-style: normal;
}

.floating-note {
    position: absolute;
    z-index: 4;
    padding: 12px 15px;
    display: flex;
    align-items: center;
    gap: 11px;
    border: 1px solid rgba(255, 255, 255, 0.15);
    border-radius: 17px;
    background: rgba(24, 29, 37, 0.86);
    box-shadow: 0 20px 48px rgba(0, 0, 0, 0.32);
    backdrop-filter: blur(16px);
    animation: float 5s ease-in-out infinite;
}

.floating-note strong,
.floating-note small {
    display: block;
}

.floating-note strong {
    margin-bottom: 2px;
    font-size: 10px;
}

.floating-note small {
    color: #858d98;
    font-size: 8px;
}

.floating-note-top {
    top: 52px;
    left: -15px;
}

.floating-note-bottom {
    right: -22px;
    bottom: 54px;
    animation-delay: -2s;
}

.note-icon {
    width: 31px;
    height: 31px;
    display: grid;
    place-items: center;
    color: var(--ink);
    background: var(--acid);
    border-radius: 10px;
}

.avatar-stack {
    display: flex;
    padding-left: 9px;
}

.avatar-stack img {
    width: 30px;
    height: 30px;
    margin-left: -9px;
    object-fit: cover;
    border: 2px solid #1b2027;
    border-radius: 50%;
}

@keyframes float {
    0%, 100% { transform: translateY(0) rotate(-1deg); }
    50% { transform: translateY(-10px) rotate(1deg); }
}

.orbit {
    position: absolute;
    border: 1px solid rgba(255, 255, 255, 0.07);
    border-radius: 50%;
}

.orbit::before {
    position: absolute;
    top: 50%;
    left: -4px;
    width: 8px;
    height: 8px;
    content: "";
    background: var(--acid);
    border-radius: 50%;
    box-shadow: 0 0 16px rgba(243, 255, 134, 0.5);
}

.orbit-one {
    width: 620px;
    height: 620px;
    animation: spin 24s linear infinite;
}

.orbit-two {
    width: 760px;
    height: 760px;
    animation: spin 34s linear infinite reverse;
}

@keyframes spin {
    to { transform: rotate(360deg); }
}

.motion-strip {
    position: relative;
    z-index: 3;
    padding: 15px 0;
    overflow: hidden;
    color: var(--ink);
    background: var(--acid);
    transform: rotate(-1.2deg) scale(1.02);
}

.motion-track {
    width: max-content;
    display: flex;
    align-items: center;
    gap: 34px;
    font-family: "Gabarito", sans-serif;
    font-size: clamp(24px, 3vw, 42px);
    font-weight: 800;
    letter-spacing: -0.03em;
    animation: marquee 23s linear infinite;
}

.motion-track i {
    font-size: 21px;
    font-style: normal;
}

@keyframes marquee {
    to { transform: translateX(-50%); }
}

.section {
    width: var(--section);
    margin: 0 auto;
}

.create-section {
    padding: 190px 0 180px;
    display: grid;
    grid-template-columns: minmax(270px, 0.72fr) minmax(600px, 1.28fr);
    gap: 100px;
}

.section-intro {
    position: sticky;
    top: 130px;
    align-self: start;
}

.section-intro h2,
.gallery-heading h2,
.privacy-copy h2,
.workflow-heading h2 {
    font-size: clamp(54px, 6vw, 84px);
}

.section-intro > p:last-child,
.gallery-heading > p,
.workflow-heading > p {
    max-width: 430px;
    margin: 28px 0 0;
    color: var(--muted);
    font-size: 15px;
    line-height: 1.75;
}

.feature-stack {
    display: flex;
    flex-direction: column;
    gap: 22px;
}

.feature-card {
    min-height: 580px;
    padding: 46px;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    overflow: hidden;
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: var(--radius);
    background:
        radial-gradient(circle at 85% 10%, rgba(109, 110, 255, 0.12), transparent 32%),
        var(--ink-soft);
}

.feature-card:nth-child(2) {
    background:
        radial-gradient(circle at 12% 90%, rgba(243, 255, 134, 0.08), transparent 35%),
        var(--ink-soft);
}

.feature-card:nth-child(3) {
    background:
        radial-gradient(circle at 100% 0, rgba(255, 84, 215, 0.1), transparent 34%),
        var(--ink-soft);
}

.feature-copy {
    position: relative;
}

.feature-number {
    position: absolute;
    top: -10px;
    right: 0;
    color: #333944;
    font-family: "Gabarito", sans-serif;
    font-size: 62px;
    font-weight: 800;
    line-height: 1;
}

.feature-kicker {
    margin: 0 0 16px;
    color: var(--acid);
    font-size: 10px;
    font-weight: 700;
    letter-spacing: 0.15em;
    text-transform: uppercase;
}

.feature-copy h3 {
    max-width: 480px;
    margin: 0;
    font-family: "Gabarito", sans-serif;
    font-size: clamp(35px, 4vw, 54px);
    font-weight: 500;
    line-height: 1;
    letter-spacing: -0.055em;
}

.feature-copy > p:last-child {
    max-width: 510px;
    margin: 20px 0 0;
    color: var(--muted);
    font-size: 13px;
    line-height: 1.72;
}

.feature-demo {
    min-height: 220px;
    margin-top: 45px;
    padding: 25px;
    border: 1px solid rgba(255, 255, 255, 0.11);
    border-radius: 21px;
    background: rgba(6, 8, 11, 0.55);
    box-shadow: inset 0 1px rgba(255, 255, 255, 0.035);
}

.demo-label,
.demo-footer {
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.demo-label {
    color: #66707e;
    font-size: 8px;
    font-weight: 750;
    letter-spacing: 0.12em;
}

.prompt-demo > p {
    min-height: 80px;
    margin: 22px 0 8px;
    color: #d4d8de;
    font-size: 13px;
    line-height: 1.6;
}

.typing-caret {
    width: 1px;
    height: 15px;
    margin-top: -26px;
    margin-left: 46%;
    background: var(--acid);
    animation: blink 900ms steps(1) infinite;
}

@keyframes blink {
    50% { opacity: 0; }
}

.demo-footer {
    margin-top: 28px;
    justify-content: flex-start;
    gap: 6px;
}

.demo-footer > span {
    padding: 7px 10px;
    color: #848c98;
    border: 1px solid rgba(255, 255, 255, 0.08);
    border-radius: 8px;
    font-size: 8px;
}

.demo-footer button {
    margin-left: auto;
    padding: 9px 14px;
    color: var(--ink);
    border: 0;
    border-radius: 10px;
    background: var(--acid);
    font-size: 9px;
    font-weight: 800;
}

.reference-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 10px;
}

.reference-grid figure {
    position: relative;
    height: 118px;
    margin: 0;
    overflow: hidden;
    border: 1px solid rgba(255, 255, 255, 0.12);
    border-radius: 14px;
}

.reference-grid img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.reference-grid figure > span {
    position: absolute;
    left: 7px;
    bottom: 7px;
    padding: 4px 6px;
    color: var(--white);
    border-radius: 5px;
    background: rgba(10, 12, 15, 0.68);
    font-size: 7px;
}

.reference-grid .reference-add {
    display: grid;
    place-content: center;
    text-align: center;
    color: #777f8b;
    border-style: dashed;
}

.reference-add > span {
    position: static !important;
    padding: 0 !important;
    color: var(--acid) !important;
    background: none !important;
    font-size: 24px !important;
}

.reference-add small {
    margin-top: 4px;
    font-size: 7px;
}

.reference-prompt {
    margin-top: 12px;
    padding: 13px;
    color: #9aa1ab;
    border: 1px solid rgba(255, 255, 255, 0.08);
    border-radius: 11px;
    font-size: 9px;
}

.reference-prompt span {
    margin-right: 6px;
    color: var(--acid);
}

.controls-demo {
    padding-top: 14px;
    padding-bottom: 14px;
}

.control-row {
    min-height: 50px;
    padding: 10px 0;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 14px;
    border-bottom: 1px solid rgba(255, 255, 255, 0.07);
}

.control-row:last-child {
    border-bottom: 0;
}

.control-row > span {
    color: #69717c;
    font-size: 8px;
    font-weight: 700;
    text-transform: uppercase;
}

.control-row strong {
    color: #d4d8de;
    font-size: 10px;
    font-weight: 600;
}

.control-row strong i {
    padding: 3px 4px;
    color: var(--ink);
    background: var(--acid);
    border-radius: 4px;
    font-size: 6px;
    font-style: normal;
}

.style-pills,
.ratio-pills {
    display: flex;
    gap: 5px;
}

.style-pills b,
.ratio-pills b {
    padding: 6px 8px;
    color: #959ca6;
    border: 1px solid rgba(255, 255, 255, 0.08);
    border-radius: 7px;
    font-size: 7px;
    font-weight: 600;
}

.ratio-pills b.active {
    color: var(--ink);
    background: var(--acid);
}

.gallery-section {
    padding: 150px 0 170px;
    color: var(--ink);
    background: var(--paper);
}

.gallery-heading {
    display: flex;
    align-items: end;
    justify-content: space-between;
    gap: 60px;
}

.gallery-heading h2 em {
    color: #6d47f8;
}

.gallery-heading .section-index {
    color: #62666b;
}

.gallery-heading > p {
    margin-bottom: 5px;
    color: #676d73;
}

.video-gallery {
    width: min(1380px, calc(100% - 34px));
    margin: 90px auto 0;
    display: grid;
    grid-template-columns: 1.15fr 0.85fr 0.9fr;
    grid-auto-rows: 350px;
    gap: 14px;
}

.video-card {
    position: relative;
    overflow: hidden;
    border-radius: 24px;
    background: #161a20;
}

.video-card-tall {
    grid-row: span 2;
}

.video-card-wide {
    grid-column: span 2;
}

.video-card video {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 700ms cubic-bezier(.2,.8,.2,1), filter 300ms ease;
}

.video-card::after {
    position: absolute;
    inset: 0;
    content: "";
    pointer-events: none;
    background: linear-gradient(to top, rgba(6, 8, 10, 0.9) 0, rgba(6, 8, 10, 0.06) 55%, transparent);
}

.video-card:hover video {
    transform: scale(1.035);
}

.video-caption {
    position: absolute;
    z-index: 3;
    right: 28px;
    bottom: 25px;
    left: 28px;
    color: var(--white);
}

.video-caption span {
    color: var(--acid);
    font-size: 8px;
    font-weight: 750;
    letter-spacing: 0.12em;
    text-transform: uppercase;
}

.video-caption h3 {
    margin: 7px 0 3px;
    font-family: "Gabarito", sans-serif;
    font-size: clamp(25px, 2.4vw, 38px);
    font-weight: 500;
    line-height: 1;
    letter-spacing: -0.045em;
}

.video-caption p {
    margin: 0;
    color: rgba(255, 255, 255, 0.58);
    font-size: 10px;
}

.card-play {
    position: absolute;
    z-index: 4;
    top: 20px;
    right: 20px;
    width: 46px;
    height: 46px;
    display: grid;
    place-items: center;
    color: var(--ink);
    border: 0;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.92);
    box-shadow: 0 10px 24px rgba(0, 0, 0, 0.18);
    cursor: pointer;
    transition: transform 180ms ease, background 180ms ease;
}

.card-play:hover {
    background: var(--acid);
    transform: scale(1.06);
}

.card-play span {
    margin-left: 2px;
    font-size: 12px;
}

.video-card.is-playing .card-play {
    opacity: 0;
}

.workflow-section {
    padding: 170px 0;
}

.workflow-heading {
    display: grid;
    grid-template-columns: 1.2fr 0.8fr;
    align-items: end;
    gap: 80px;
}

.workflow-heading > p {
    margin-bottom: 7px;
}

.workflow-grid {
    margin-top: 85px;
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 18px;
}

.workflow-step {
    min-height: 390px;
    padding: 24px;
    display: flex;
    flex-direction: column;
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 24px;
    background: var(--ink-soft);
}

.step-visual {
    min-height: 220px;
    display: grid;
    place-items: center;
    position: relative;
    overflow: hidden;
    border-radius: 17px;
    background:
        linear-gradient(rgba(255,255,255,.035) 1px, transparent 1px),
        linear-gradient(90deg, rgba(255,255,255,.035) 1px, transparent 1px),
        #0c0f13;
    background-size: 26px 26px;
}

.step-visual::after {
    position: absolute;
    width: 160px;
    height: 160px;
    content: "";
    border: 1px solid rgba(243, 255, 134, 0.16);
    border-radius: 50%;
    box-shadow: 0 0 70px rgba(243, 255, 134, 0.06);
}

.step-visual i {
    position: absolute;
    top: 13px;
    right: 15px;
    color: #505965;
    font-size: 8px;
    font-style: normal;
    font-weight: 700;
}

.step-glyph {
    position: relative;
    z-index: 2;
    color: var(--acid);
    font-family: "Gabarito", sans-serif;
    font-size: 70px;
    font-weight: 600;
    text-shadow: 0 0 30px rgba(243, 255, 134, 0.18);
}

.workflow-step h3 {
    margin: 26px 0 8px;
    font-family: "Gabarito", sans-serif;
    font-size: 26px;
    font-weight: 500;
    letter-spacing: -0.04em;
}

.workflow-step p {
    margin: 0;
    color: var(--muted);
    font-size: 12px;
    line-height: 1.65;
}

.privacy-band {
    min-height: 620px;
    padding: 110px max(32px, calc((100vw - 1120px) / 2));
    display: grid;
    grid-template-columns: 0.95fr 1.05fr;
    align-items: center;
    gap: 100px;
    overflow: hidden;
    color: var(--ink);
    background: var(--cyan);
}

.privacy-orb {
    position: relative;
    width: min(390px, 80vw);
    aspect-ratio: 1;
    display: grid;
    place-items: center;
    border: 1px solid rgba(11, 14, 18, 0.3);
    border-radius: 50%;
}

.privacy-orb::before,
.privacy-orb::after {
    position: absolute;
    content: "";
    border: 1px solid rgba(11, 14, 18, 0.16);
    border-radius: 50%;
}

.privacy-orb::before {
    inset: 12%;
}

.privacy-orb::after {
    inset: 27%;
    background: rgba(255, 255, 255, 0.16);
}

.privacy-orb span {
    position: relative;
    z-index: 2;
    font-family: "Gabarito", sans-serif;
    font-size: 38px;
    font-weight: 800;
    letter-spacing: -0.06em;
}

.privacy-orb i {
    position: absolute;
    top: 49%;
    left: -5px;
    width: 10px;
    height: 10px;
    background: var(--ink);
    border-radius: 50%;
    animation: orbit-dot 8s linear infinite;
    transform-origin: calc(195px + 5px) 5px;
}

@keyframes orbit-dot {
    to { transform: rotate(360deg); }
}

.privacy-copy .section-index {
    color: rgba(11, 14, 18, 0.62);
}

.privacy-copy h2 em {
    color: #5130cf;
}

.privacy-copy > p {
    max-width: 560px;
    margin: 28px 0;
    color: rgba(11, 14, 18, 0.72);
    font-size: 14px;
    line-height: 1.75;
}

.text-link.light span {
    color: #5130cf;
}

.final-cta {
    position: relative;
    min-height: 690px;
    padding: 130px 32px;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    text-align: center;
    overflow: hidden;
    color: var(--ink);
    background: var(--acid);
}

.final-cta::before,
.final-cta::after {
    position: absolute;
    width: 480px;
    height: 480px;
    content: "";
    border: 1px solid rgba(11, 14, 18, 0.16);
    border-radius: 50%;
}

.final-cta::before {
    top: -260px;
    left: -160px;
}

.final-cta::after {
    right: -190px;
    bottom: -270px;
}

.final-cta .eyebrow {
    color: rgba(11, 14, 18, 0.66);
}

.final-cta .eyebrow span {
    background: var(--ink);
    box-shadow: none;
}

.final-cta h2 {
    position: relative;
    z-index: 2;
    font-size: clamp(70px, 9vw, 130px);
}

.final-cta h2 em {
    color: #5130cf;
}

.final-cta > p:not(.eyebrow) {
    max-width: 550px;
    margin: 28px 0 34px;
    color: rgba(11, 14, 18, 0.68);
    font-size: 14px;
}

.button-dark {
    position: relative;
    z-index: 2;
    color: var(--white);
    background: var(--ink);
    box-shadow: 0 16px 30px rgba(11, 14, 18, 0.18);
}

.button-dark:hover {
    color: var(--ink);
    background: var(--white);
    transform: translateY(-3px);
}

.site-footer {
    width: min(1240px, calc(100% - 64px));
    margin: 0 auto;
    padding: 80px 0 30px;
    display: grid;
    grid-template-columns: 0.8fr 1.2fr;
    gap: 60px;
}

.footer-brand > p {
    margin: 16px 0 0;
    color: #6f7782;
    font-size: 12px;
}

.footer-links {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
}

.footer-links div {
    display: flex;
    flex-direction: column;
    gap: 11px;
}

.footer-links span {
    margin-bottom: 6px;
    color: #575f6b;
    font-size: 8px;
    font-weight: 750;
    letter-spacing: 0.13em;
}

.footer-links a {
    color: #a6adb6;
    font-size: 11px;
    transition: color 180ms ease;
}

.footer-links a:hover {
    color: var(--acid);
}

.footer-bottom {
    grid-column: 1 / -1;
    padding-top: 28px;
    display: flex;
    justify-content: space-between;
    color: #555d68;
    border-top: 1px solid rgba(255, 255, 255, 0.08);
    font-size: 9px;
}

.reveal {
    opacity: 0;
    transform: translateY(30px);
    transition: opacity 800ms cubic-bezier(.2,.8,.2,1), transform 800ms cubic-bezier(.2,.8,.2,1);
}

.reveal.is-visible {
    opacity: 1;
    transform: translateY(0);
}

.reveal-delay {
    transition-delay: 150ms;
}

@media (max-width: 1080px) {
    .hero {
        grid-template-columns: 1fr;
        padding-top: 150px;
    }

    .hero-copy {
        max-width: 780px;
    }

    .hero-studio {
        min-height: 700px;
    }

    .create-section {
        grid-template-columns: 1fr;
        gap: 75px;
    }

    .section-intro {
        position: static;
        max-width: 760px;
    }

    .feature-stack {
        max-width: 820px;
        margin-left: auto;
    }

    .video-gallery {
        grid-template-columns: 1fr 1fr;
        grid-auto-rows: 420px;
    }

    .video-card-tall {
        grid-row: auto;
    }

    .workflow-heading {
        grid-template-columns: 1fr;
        gap: 0;
    }
}

@media (max-width: 760px) {
    :root {
        --section: calc(100% - 36px);
    }

    .site-header {
        top: 10px;
        width: calc(100% - 20px);
        height: 58px;
    }

    .desktop-nav {
        display: none;
    }

    .brand {
        font-size: 18px;
    }

    .brand img {
        width: 32px;
        height: 32px;
    }

    .header-cta {
        height: 40px;
        padding: 0 14px;
    }

    .hero {
        min-height: 0;
        padding: 130px 18px 80px;
        gap: 38px;
        background-size: 38px 38px;
    }

    .hero h1 {
        font-size: clamp(60px, 18vw, 84px);
    }

    .hero-intro {
        font-size: 14px;
    }

    .hero-actions {
        align-items: flex-start;
        flex-direction: column;
    }

    .hero-meta {
        margin-top: 32px;
    }

    .hero-studio {
        min-height: 540px;
    }

    .studio-window {
        transform: none;
        border-radius: 25px;
    }

    .studio-media {
        height: 320px;
    }

    .floating-note-top {
        top: 18px;
        left: -3px;
    }

    .floating-note-bottom {
        right: -3px;
        bottom: 7px;
    }

    .orbit-one {
        width: 500px;
        height: 500px;
    }

    .orbit-two {
        display: none;
    }

    .motion-strip {
        padding: 11px 0;
    }

    .create-section,
    .workflow-section {
        padding: 110px 0;
    }

    .section-intro h2,
    .gallery-heading h2,
    .privacy-copy h2,
    .workflow-heading h2 {
        font-size: clamp(48px, 14vw, 67px);
    }

    .feature-card {
        min-height: 560px;
        padding: 26px;
    }

    .feature-demo {
        margin-right: -8px;
        margin-left: -8px;
        padding: 18px;
    }

    .feature-copy h3 {
        font-size: 39px;
    }

    .feature-number {
        font-size: 48px;
    }

    .reference-grid {
        grid-template-columns: 1fr 1fr;
    }

    .reference-grid .reference-add {
        display: none;
    }

    .style-pills b:nth-child(3) {
        display: none;
    }

    .gallery-section {
        padding: 100px 0;
    }

    .gallery-heading {
        align-items: flex-start;
        flex-direction: column;
        gap: 0;
    }

    .video-gallery {
        width: calc(100% - 20px);
        margin-top: 50px;
        grid-template-columns: 1fr;
        grid-auto-rows: 520px;
    }

    .video-card-wide {
        grid-column: auto;
    }

    .workflow-grid {
        grid-template-columns: 1fr;
    }

    .workflow-step {
        min-height: 360px;
    }

    .privacy-band {
        padding: 90px 18px;
        grid-template-columns: 1fr;
        gap: 60px;
    }

    .privacy-orb {
        justify-self: center;
    }

    .privacy-orb i {
        display: none;
    }

    .final-cta {
        min-height: 610px;
        padding-right: 18px;
        padding-left: 18px;
    }

    .final-cta h2 {
        font-size: clamp(62px, 19vw, 91px);
    }

    .site-footer {
        width: calc(100% - 36px);
        padding-top: 60px;
        grid-template-columns: 1fr;
    }

    .footer-links {
        grid-template-columns: 1fr 1fr;
        row-gap: 40px;
    }

    .footer-bottom {
        align-items: flex-start;
        flex-direction: column;
        gap: 8px;
    }
}

@media (prefers-reduced-motion: reduce) {
    html {
        scroll-behavior: auto;
    }

    *,
    *::before,
    *::after {
        animation-duration: 0.01ms !important;
        animation-iteration-count: 1 !important;
        transition-duration: 0.01ms !important;
    }

    .reveal {
        opacity: 1;
        transform: none;
    }
}
