/* ═══════════════════════════════════════════════════════════════
   omegaAPI — Pure Black & White Design System
   No grey. No color. Maximum contrast. Maximum energy.
   ═══════════════════════════════════════════════════════════════ */

/* ─── Reset & Base ─────────────────────────────────────────── */
*,
*::before,
*::after {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
}

body {
    font-family: 'JetBrains Mono', monospace;
    line-height: 1.6;
    overflow-x: hidden;
}

/* ─── Custom Cursor ────────────────────────────────────────── */
body.has-custom-cursor * {
    cursor: none !important;
}

.custom-cursor {
    position: fixed;
    top: 0;
    left: 0;
    width: 18px;
    height: 18px;
    background-color: #ffffff;
    mix-blend-mode: difference;
    border-radius: 50%;
    pointer-events: none;
    z-index: 99999;
    will-change: transform;
    /* Fixed size; rotate to movement direction then scaleX = directional ellipse */
    transform: translate(var(--x, -100px), var(--y, -100px)) translate(-50%, -50%) rotate(var(--angle, 0deg)) scaleX(var(--stretch, 1));
    transition: width 0.2s cubic-bezier(0.16, 1, 0.3, 1),
        height 0.2s cubic-bezier(0.16, 1, 0.3, 1),
        background-color 0.5s ease;
}

@keyframes heartbeat {
    0% {
        transform: translate(var(--x, -100px), var(--y, -100px)) translate(-50%, -50%) rotate(var(--angle, 0deg)) scaleX(var(--stretch, 1)) scale(1);
    }

    15% {
        transform: translate(var(--x, -100px), var(--y, -100px)) translate(-50%, -50%) rotate(var(--angle, 0deg)) scaleX(var(--stretch, 1)) scale(1.3);
    }

    30% {
        transform: translate(var(--x, -100px), var(--y, -100px)) translate(-50%, -50%) rotate(var(--angle, 0deg)) scaleX(var(--stretch, 1)) scale(1);
    }

    45% {
        transform: translate(var(--x, -100px), var(--y, -100px)) translate(-50%, -50%) rotate(var(--angle, 0deg)) scaleX(var(--stretch, 1)) scale(1.3);
    }

    100% {
        transform: translate(var(--x, -100px), var(--y, -100px)) translate(-50%, -50%) rotate(var(--angle, 0deg)) scaleX(var(--stretch, 1)) scale(1);
    }
}

.custom-cursor.hover {
    width: 18px;
    height: 18px;
    opacity: 1;
    animation: heartbeat 1.5s ease-in-out infinite;
}

/* ─── Theme Variables ──────────────────────────────────────── */
/* Dark mode (default) */
:root,
[data-theme="dark"] {
    --bg: #000000;
    --fg: #ffffff;
    --fg-muted: #999999;
    --border: #ffffff;
    --surface: #000000;
    --invert: 0;
}

[data-theme="light"] {
    --bg: #ffffff;
    --fg: #000000;
    --fg-muted: #666666;
    --border: #000000;
    --surface: #ffffff;
    --invert: 1;
}

body {
    background: var(--bg);
    color: var(--fg);
    transition: background 0.5s ease, color 0.5s ease;
}

/* ─── Theme-aware images ──────────────────────────────────── */
[data-theme="dark"] .logo-light-mode,
[data-theme="dark"] .for-light-mode {
    display: none !important;
}

[data-theme="dark"] .logo-dark-mode,
[data-theme="dark"] .for-dark-mode {
    display: block !important;
}

[data-theme="light"] .logo-dark-mode,
[data-theme="light"] .for-dark-mode {
    display: none !important;
}

[data-theme="light"] .logo-light-mode,
[data-theme="light"] .for-light-mode {
    display: block !important;
}

/* ─── Container ────────────────────────────────────────────── */
.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 48px;
}

/* ═══════════════════════════════════════════════════════════════
   NAVBAR
   ═══════════════════════════════════════════════════════════════ */
.navbar {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 1000;
    padding: 20px 0;
    background: transparent;
    transition: background 0.4s ease, backdrop-filter 0.4s ease, border-bottom 0.4s ease;
}

.navbar.scrolled {
    background: var(--bg);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
}

.navbar-inner {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 48px;
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.navbar-logo {
    text-decoration: none;
    display: flex;
    align-items: center;
}

.logo-img {
    height: 64px;
    width: auto;
}

.navbar-actions {
    display: flex;
    align-items: center;
    gap: 16px;
}

.theme-toggle {
    width: 44px;
    height: 44px;
    border-radius: 50%;
    border: 2px solid var(--fg);
    background: transparent;
    color: var(--fg);
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: transform 0.3s ease, background 0.3s ease;
}

.theme-toggle:hover {
    background: var(--fg);
    color: var(--bg);
    transform: rotate(180deg);
}

[data-theme="dark"] .icon-sun {
    display: none;
}

[data-theme="dark"] .icon-moon {
    display: block;
}

[data-theme="light"] .icon-sun {
    display: block;
}

[data-theme="light"] .icon-moon {
    display: none;
}

.btn-cta {
    display: inline-block;
    padding: 12px 28px;
    background: var(--fg);
    color: var(--bg);
    text-decoration: none;
    font-family: 'JetBrains Mono', monospace;
    font-size: 0.85rem;
    font-weight: 600;
    letter-spacing: 0.02em;
    border: 2px solid var(--fg);
    border-radius: 9999px;
    transition: all 0.3s ease;
}

.btn-cta:hover {
    background: transparent;
    color: var(--fg);
    transform: translateY(-2px);
}

/* ═══════════════════════════════════════════════════════════════
   HERO
   ═══════════════════════════════════════════════════════════════ */
.hero {
    min-height: 100vh;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    position: relative;
    overflow: hidden;
}

.hero-bg-glow {
    position: absolute;
    width: 600px;
    height: 600px;
    border-radius: 50%;
    background: radial-gradient(circle, rgba(255, 255, 255, 0.04) 0%, transparent 70%);
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    pointer-events: none;
}

[data-theme="light"] .hero-bg-glow {
    background: radial-gradient(circle, rgba(0, 0, 0, 0.03) 0%, transparent 70%);
}

.hero-content {
    text-align: center;
    position: relative;
    z-index: 1;
}

.hero-title {
    font-size: clamp(3rem, 8vw, 7rem);
    font-weight: 800;
    line-height: 1.05;
    letter-spacing: -0.03em;
    margin-bottom: 32px;
    position: relative;
}

.hero-title-line {
    display: block;
    position: relative;
}

.hero-title-line:nth-child(3) {
    padding-left: 0.5em;
}

/* Individual character spans created by JS */
.hero-char {
    display: inline-block;
    opacity: 0;
    transition: none;
}

.hero-char.revealed {
    opacity: 1;
}

/* Whitespace character */
.hero-char.space-char {
    width: 0.3em;
}

/* The period at the end */
.hero-char.period-char {
    opacity: 0;
}

.hero-char.period-char.revealed {
    opacity: 1;
}

/* ─── Reveal Dot ──────────────────────────────────────────── */
.reveal-dot {
    display: block;
    position: fixed; /* fixed = root stacking context → mix-blend-mode works across the whole page */
    width: 80px;
    height: 80px;
    border-radius: 50%;
    background-color: #ffffff;
    mix-blend-mode: difference; /* white on dark bg = white; white on light bg = black */
    pointer-events: none;
    z-index: 10;
    opacity: 0;
    transform: translate(-50%, -50%);
    transition: none;
}

.reveal-dot.active {
    opacity: 1;
}

.reveal-dot.finishing {
    transition: width 0.3s cubic-bezier(0.16, 1, 0.3, 1),
        height 0.3s cubic-bezier(0.16, 1, 0.3, 1),
        opacity 0.3s ease;
}

/* Title entrance animations — only for subtitle and CTA now */
.animate-fade-in-delay {
    animation: fadeInUp 0.8s ease both;
    animation-play-state: paused;
}

.animate-fade-in-delay-2 {
    animation: fadeInUp 0.8s ease 0.2s both;
    animation-play-state: paused;
}

.animate-fade-in-delay.play,
.animate-fade-in-delay-2.play {
    animation-play-state: running;
}

@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(24px);
    }

    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.hero-subtitle {
    font-size: clamp(0.95rem, 1.5vw, 1.15rem);
    color: var(--fg-muted);
    max-width: 540px;
    margin: 0 auto 40px;
    line-height: 1.7;
    font-weight: 400;
}

.btn-hero {
    display: inline-block;
    padding: 18px 48px;
    background: var(--fg);
    color: var(--bg);
    text-decoration: none;
    font-family: 'JetBrains Mono', monospace;
    font-size: 1rem;
    font-weight: 600;
    letter-spacing: 0.02em;
    border: 2px solid var(--fg);
    border-radius: 9999px;
    transition: all 0.35s cubic-bezier(0.16, 1, 0.3, 1);
    position: relative;
    overflow: hidden;
}

.btn-hero::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.15), transparent);
    transition: left 0.5s ease;
}

[data-theme="light"] .btn-hero::before {
    background: linear-gradient(90deg, transparent, rgba(0, 0, 0, 0.08), transparent);
}

.btn-hero:hover::before {
    left: 100%;
}

.btn-hero:hover {
    background: transparent;
    color: var(--fg);
    transform: translateY(-3px);
    box-shadow: 0 10px 30px rgba(255, 255, 255, 0.1);
}

[data-theme="light"] .btn-hero:hover {
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
}

/* Scroll hint */
.hero-scroll-hint {
    position: absolute;
    bottom: 40px;
    left: 50%;
    transform: translateX(-50%);
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 8px;
    color: var(--fg-muted);
    font-size: 0.7rem;
    letter-spacing: 0.2em;
    text-transform: uppercase;
    animation: fadeInUp 1s ease 1.2s both;
}

.scroll-arrow {
    animation: bounceDown 2s ease-in-out infinite;
}

@keyframes bounceDown {

    0%,
    100% {
        transform: translateY(0);
    }

    50% {
        transform: translateY(8px);
    }
}

/* ═══════════════════════════════════════════════════════════════
   SPLIT SECTIONS (image beside text)
   ═══════════════════════════════════════════════════════════════ */
.split-section {
    padding: 120px 0;
}

.split-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 80px;
    align-items: center;
}

.split-row.reverse {
    direction: rtl;
}

.split-row.reverse>* {
    direction: ltr;
}

.split-image {
    position: relative;
}

.split-img {
    width: 100%;
    max-width: 480px;
    height: auto;
    border-radius: 12px;
    transition: transform 0.4s cubic-bezier(0.16, 1, 0.3, 1);
}

.split-img:hover {
    transform: scale(1.02);
}

.split-label {
    font-size: 0.75rem;
    text-transform: uppercase;
    letter-spacing: 0.2em;
    color: var(--fg-muted);
    margin-bottom: 12px;
    font-weight: 600;
}

.split-heading {
    font-size: clamp(1.5rem, 3vw, 2.2rem);
    font-weight: 700;
    margin-bottom: 16px;
    line-height: 1.2;
    letter-spacing: -0.02em;
}

.split-desc {
    font-size: 0.95rem;
    color: var(--fg-muted);
    line-height: 1.7;
    max-width: 420px;
}

/* ═══════════════════════════════════════════════════════════════
   BIG TEXT SECTION (How it works / Is it free?)
   ═══════════════════════════════════════════════════════════════ */
.big-text-section {
    padding: 160px 0 80px;
}

.big-text {
    font-size: clamp(3rem, 7vw, 5.5rem);
    font-weight: 800;
    line-height: 1.1;
    letter-spacing: -0.03em;
}

/* ═══════════════════════════════════════════════════════════════
   STEPS (How it works)
   ═══════════════════════════════════════════════════════════════ */
.steps-section {
    padding: 40px 0 120px;
}

.step {
    display: flex;
    align-items: flex-start;
    gap: 32px;
    padding: 48px 0;
}

.step-number {
    font-size: 3rem;
    font-weight: 800;
    color: var(--fg);
    line-height: 1;
    flex-shrink: 0;
    min-width: 80px;
    opacity: 0.3;
    transition: opacity 0.4s ease;
}

.step:hover .step-number {
    opacity: 1;
}

.step-content {
    flex: 1;
}

.step-title {
    font-size: clamp(1.2rem, 2.5vw, 1.6rem);
    font-weight: 700;
    margin-bottom: 12px;
    letter-spacing: -0.01em;
}

.step-desc {
    font-size: 0.95rem;
    color: var(--fg-muted);
    line-height: 1.7;
    max-width: 520px;
}

/* ═══════════════════════════════════════════════════════════════
   PRICING ANSWER
   ═══════════════════════════════════════════════════════════════ */
.pricing-answer-section {
    padding: 0 0 120px;
}

.pricing-lead {
    font-size: clamp(2rem, 5vw, 3.5rem);
    font-weight: 800;
    margin-bottom: 32px;
    line-height: 1.1;
}

.pricing-detail {
    font-size: clamp(1rem, 1.5vw, 1.15rem);
    color: var(--fg-muted);
    line-height: 1.8;
    margin-bottom: 16px;
    max-width: 600px;
}

.pricing-detail strong {
    color: var(--fg);
    font-weight: 700;
}

/* ═══════════════════════════════════════════════════════════════
   WORKS WITH (Tool logos)
   ═══════════════════════════════════════════════════════════════ */
.works-with-section {
    padding: 120px 0;
}

.section-title {
    font-size: clamp(2rem, 5vw, 3.5rem);
    font-weight: 800;
    letter-spacing: -0.03em;
    margin-bottom: 64px;
    text-align: center;
}

.tools-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 40px;
    align-items: center;
}

.tool-card {
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 40px 24px;
    transition: transform 0.4s cubic-bezier(0.16, 1, 0.3, 1), opacity 0.4s ease;
    animation-delay: var(--delay, 0s);
}

.tool-card:hover {
    transform: scale(1.08);
}

.tool-logo {
    max-height: 60px;
    max-width: 220px;
    width: auto;
    object-fit: contain;
    filter: brightness(var(--invert));
}

.logo-claude {
    transform: scale(1.6);
}

.logo-codex {
    transform: scale(1.3);
}

/* Dark mode: logos are dark-on-white, so in dark mode we need to invert */
[data-theme="dark"] .tool-logo {
    filter: invert(1);
}

[data-theme="dark"] .logo-claude {
    filter: invert(1) hue-rotate(180deg);
}

[data-theme="light"] .tool-logo {
    filter: none;
}

/* ═══════════════════════════════════════════════════════════════
   WAITLIST
   ═══════════════════════════════════════════════════════════════ */
.waitlist-section {
    padding: 120px 0;
}

.waitlist-subtitle {
    text-align: center;
    color: var(--fg-muted);
    font-size: 1rem;
    margin-bottom: 48px;
    margin-top: -40px;
}

.waitlist-form {
    max-width: 520px;
    margin: 0 auto;
}

.form-row {
    display: flex;
    gap: 0;
    border: 2px solid var(--fg);
    border-radius: 9999px;
    overflow: hidden;
}

.form-row input {
    flex: 1;
    padding: 16px 20px;
    background: transparent;
    border: none;
    color: var(--fg);
    font-family: 'JetBrains Mono', monospace;
    font-size: 0.9rem;
    outline: none;
}

.form-row input::placeholder {
    color: var(--fg-muted);
}

.btn-submit {
    padding: 16px 32px;
    background: var(--fg);
    color: var(--bg);
    border: none;
    border-left: 2px solid var(--fg);
    font-family: 'JetBrains Mono', monospace;
    font-size: 0.85rem;
    font-weight: 700;
    cursor: pointer;
    transition: all 0.3s ease;
    position: relative;
    white-space: nowrap;
}

.btn-submit:hover {
    opacity: 0.85;
}

.btn-submit .btn-loading {
    display: none;
}

.btn-submit.loading .btn-text {
    display: none;
}

.btn-submit.loading .btn-loading {
    display: flex;
    align-items: center;
    justify-content: center;
}

.spinner {
    animation: spin 1s linear infinite;
}

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

.form-message {
    text-align: center;
    font-size: 0.85rem;
    margin-top: 16px;
    min-height: 24px;
}

.form-message.success {
    color: var(--fg);
}

.form-message.error {
    color: var(--fg);
    opacity: 0.6;
}

/* ═══════════════════════════════════════════════════════════════
   LOGO REVEAL (scroll-driven, fixed position)
   ═══════════════════════════════════════════════════════════════ */
.logo-reveal-section {
    position: relative;
}

.logo-reveal-track {
    /* Empty scroll runway — just provides scroll distance for the animation */
    height: 250vh;
}

/* Always-visible percentage symbol — fixed to viewport center */
.logo-percent-fixed {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 49;
    pointer-events: none;
    opacity: 0;
    transform: translateX(var(--shift-x, 0px));
    transition: opacity 0.4s ease, transform 0.35s cubic-bezier(0.16, 1, 0.3, 1);
}

.logo-percent-fixed.active {
    opacity: 1;
}

/* Fixed overlay for letters — stays locked to viewport center, never moves on scroll */
.logo-reveal-fixed {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 50;
    pointer-events: none;
    opacity: 0;
    transition: opacity 0.4s ease;
}

.logo-reveal-fixed.active {
    opacity: 1;
}

/* Ghost placeholder — same dimensions as % but invisible, keeps the wrapper layout correct */
.logo-percent-ghost {
    visibility: hidden;
}

.logo-reveal-wrapper {
    position: relative;
    /* Shifts left as letters appear to keep centered — controlled by JS */
    transform: translateX(var(--shift-x, 0px));
    transition: transform 0.35s cubic-bezier(0.16, 1, 0.3, 1);
    will-change: transform;
}

.logo-percent {
    display: flex;
    align-items: flex-end;
    line-height: 0;
}

.percent-img {
    height: clamp(150px, 33vh, 340px);
    width: auto;
    display: block;
    user-select: none;
    -webkit-user-drag: none;
}

/* Absolutely positioned so hidden letters don't push the % off-center */
.logo-letters {
    position: absolute;
    right: 0;
    bottom: 6%;
    transform: translateX(calc(100% - 22px));
    display: flex;
    align-items: flex-end;
}

.logo-letter {
    font-family: 'Nunito', sans-serif;
    font-weight: 800;
    font-size: clamp(75px, 22vh, 220px);
    color: var(--fg);
    display: inline-block;
    opacity: 0;
    transform: translateY(20px) scale(0.85);
    transition: opacity 0.45s cubic-bezier(0.16, 1, 0.3, 1),
                transform 0.45s cubic-bezier(0.16, 1, 0.3, 1);
    will-change: opacity, transform;
    line-height: 1;
    user-select: none;
}

.logo-letter.visible {
    opacity: 1;
    transform: translateY(0) scale(1);
}

/* ═══════════════════════════════════════════════════════════════
   FOOTER
   ═══════════════════════════════════════════════════════════════ */
.footer {
    padding: 40px 0;
}

/* Dark mode: white footer */
[data-theme="dark"] .footer {
    background: #ffffff;
    color: #000000;
}

/* Light mode: black footer */
[data-theme="light"] .footer {
    background: #000000;
    color: #ffffff;
}

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

.footer-copy {
    font-size: 0.8rem;
}

[data-theme="dark"] .footer-copy {
    color: #666666;
}

[data-theme="light"] .footer-copy {
    color: #999999;
}

.footer-links {
    display: flex;
    align-items: center;
    gap: 12px;
}

.footer-link {
    font-size: 0.8rem;
    text-decoration: none;
    transition: opacity 0.3s ease;
}

[data-theme="dark"] .footer-link {
    color: #000000;
}

[data-theme="light"] .footer-link {
    color: #ffffff;
}

.footer-link:hover {
    opacity: 0.6;
}

.footer-divider {
    font-size: 0.8rem;
    opacity: 0.4;
}

[data-theme="dark"] .footer-divider {
    color: #000000;
}

[data-theme="light"] .footer-divider {
    color: #ffffff;
}

/* ═══════════════════════════════════════════════════════════════
   LEGAL PAGES (Privacy Policy, License Agreement)
   ═══════════════════════════════════════════════════════════════ */
.legal-section {
    padding: 160px 0 80px;
    min-height: 100vh;
}

.legal-title {
    font-size: clamp(2.5rem, 6vw, 4rem);
    font-weight: 800;
    letter-spacing: -0.03em;
    margin-bottom: 8px;
    line-height: 1.1;
}

.legal-updated {
    font-size: 0.85rem;
    color: var(--fg-muted);
    margin-bottom: 48px;
}

.legal-content {
    max-width: 720px;
}

.legal-content h2 {
    font-size: 1.3rem;
    font-weight: 700;
    margin-top: 40px;
    margin-bottom: 12px;
    letter-spacing: -0.01em;
}

.legal-content h3 {
    font-size: 1.05rem;
    font-weight: 600;
    margin-top: 24px;
    margin-bottom: 8px;
}

.legal-content p {
    font-size: 0.92rem;
    color: var(--fg-muted);
    line-height: 1.8;
    margin-bottom: 12px;
}

.legal-content ul {
    list-style: none;
    padding-left: 0;
    margin-bottom: 16px;
}

.legal-content ul li {
    font-size: 0.92rem;
    color: var(--fg-muted);
    line-height: 1.8;
    padding-left: 20px;
    position: relative;
}

.legal-content ul li::before {
    content: '—';
    position: absolute;
    left: 0;
    color: var(--fg-muted);
    opacity: 0.5;
}

.legal-content a {
    color: var(--fg);
    text-decoration: underline;
    text-underline-offset: 3px;
    transition: opacity 0.3s ease;
}

.legal-content a:hover {
    opacity: 0.6;
}

/* ═══════════════════════════════════════════════════════════════
   CONTACT PAGE
   ═══════════════════════════════════════════════════════════════ */
.contact-intro {
    font-size: 1.05rem !important;
    color: var(--fg-muted);
    margin-bottom: 48px !important;
    max-width: 520px;
}

.contact-card {
    padding: 48px;
    border: 2px solid var(--fg);
    border-radius: 16px;
    max-width: 400px;
    text-align: center;
    transition: transform 0.4s cubic-bezier(0.16, 1, 0.3, 1);
}

.contact-card:hover {
    transform: translateY(-4px);
}

.contact-icon {
    color: var(--fg);
    margin-bottom: 20px;
}

.contact-label {
    font-size: 1rem;
    font-weight: 700;
    margin-bottom: 12px;
    letter-spacing: 0.05em;
    text-transform: uppercase;
}

.contact-email {
    display: inline-block;
    font-size: 1.1rem;
    font-weight: 600;
    color: var(--fg);
    text-decoration: none;
    border-bottom: 2px solid var(--fg);
    padding-bottom: 2px;
    transition: opacity 0.3s ease;
    margin-bottom: 12px;
}

.contact-email:hover {
    opacity: 0.6;
}

.contact-note {
    font-size: 0.8rem !important;
    color: var(--fg-muted) !important;
    margin-bottom: 0 !important;
}

/* ═══════════════════════════════════════════════════════════════
   SCROLL ANIMATIONS
   ═══════════════════════════════════════════════════════════════ */
.fade-in-up {
    opacity: 0;
    transform: translateY(40px);
    transition: opacity 0.8s cubic-bezier(0.16, 1, 0.3, 1) var(--delay, 0s),
        transform 0.8s cubic-bezier(0.16, 1, 0.3, 1) var(--delay, 0s);
}

.fade-in-up.visible {
    opacity: 1;
    transform: translateY(0);
}

.slide-in-left {
    opacity: 0;
    transform: translateX(-80px);
    transition: opacity 0.9s cubic-bezier(0.16, 1, 0.3, 1),
        transform 0.9s cubic-bezier(0.16, 1, 0.3, 1);
}

.slide-in-left.visible {
    opacity: 1;
    transform: translateX(0);
}

.slide-in-right {
    opacity: 0;
    transform: translateX(80px);
    transition: opacity 0.9s cubic-bezier(0.16, 1, 0.3, 1),
        transform 0.9s cubic-bezier(0.16, 1, 0.3, 1);
}

.slide-in-right.visible {
    opacity: 1;
    transform: translateX(0);
}

/* ═══════════════════════════════════════════════════════════════
   MAGNETIC HOVER EFFECT (for steps)
   ═══════════════════════════════════════════════════════════════ */
.step {
    transition: transform 0.4s cubic-bezier(0.16, 1, 0.3, 1), padding-left 0.4s ease;
    cursor: default;
}

.step:hover {
    padding-left: 24px;
}

/* ═══════════════════════════════════════════════════════════════
   RESPONSIVE
   ═══════════════════════════════════════════════════════════════ */
@media (max-width: 900px) {
    .container {
        padding: 0 28px;
    }

    .navbar-inner {
        padding: 0 28px;
    }

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

    .split-row.reverse {
        direction: ltr;
    }

    .split-img {
        max-width: 100%;
    }

    .tools-grid {
        grid-template-columns: 1fr;
        gap: 24px;
    }
}

@media (max-width: 600px) {
    .container {
        padding: 0 20px;
    }

    .navbar-inner {
        padding: 0 20px;
    }

    .btn-cta {
        display: none;
    }

    .hero {
        min-height: 90vh;
    }

    .hero-title {
        font-size: clamp(2.2rem, 10vw, 3.5rem);
    }

    .big-text {
        font-size: clamp(2rem, 10vw, 3.5rem);
    }

    .big-text-section {
        padding: 100px 0 40px;
    }

    .split-section {
        padding: 60px 0;
    }

    .step {
        flex-direction: column;
        gap: 16px;
    }

    .step-number {
        min-width: unset;
    }

    .form-row {
        flex-direction: column;
        border: none;
        gap: 16px;
        border-radius: 0;
        overflow: visible;
    }

    .form-row input {
        border: 2px solid var(--fg);
        border-radius: 9999px;
    }

    .btn-submit {
        border-left: none;
        border: 2px solid var(--fg);
        border-radius: 9999px;
        width: 100%;
    }

    .works-with-section {
        padding: 80px 0;
    }

    .section-title {
        margin-bottom: 40px;
    }

    .footer-inner {
        flex-direction: column;
        gap: 12px;
        text-align: center;
    }

    .footer-links {
        flex-wrap: wrap;
        justify-content: center;
    }

    .legal-section {
        padding: 120px 0 60px;
    }

    .contact-card {
        max-width: 100%;
    }
}