:root {
    --ink: #ffffff;
    --navy: #f4f7fb;
    --deep: #eaf4fb;
    --panel: #ffffff;
    --surface: #f0f5fa;
    --border: rgba(0, 0, 70, 0.08);
    --border-light: rgba(0, 0, 70, 0.14);
    --cream: #000046;
    --cream2: #0a0060;
    --white: #FFFFFF;
    --indigo: #1CB5E0;
    --indigo-light: #0090b8;
    --indigo-dim: rgba(28, 181, 224, 0.12);
    --amber: #F5A623;
    --teal: #1CB5E0;
    --rose: #FB7185;
    --text-primary: #000046;
    --text-secondary: rgba(0, 0, 70, 0.62);
    --text-muted: rgba(0, 0, 70, 0.38);
    --radius: 16px;
    --radius-sm: 10px;
    --radius-lg: 24px;
    --shadow: 0 4px 32px rgba(0, 0, 70, 0.10);
    --shadow-sm: 0 2px 12px rgba(0, 0, 70, 0.07);
}

*,
*::before,
*::after {
    box-sizing: border-box;
    margin: 0;
    padding: 0;
}

html {
    scroll-behavior: smooth;
    font-size: 16px;
}

body {
    font-family: 'DM Sans', sans-serif;
    background: var(--ink);
    color: var(--text-primary);
    line-height: 1.6;
    overflow-x: hidden;
}

/* Noise texture overlay */
body::before {
    content: '';
    position: fixed;
    inset: 0;
    background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 256 256' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='noise'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.9' numOctaves='4' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23noise)' opacity='0.04'/%3E%3C/svg%3E");
    pointer-events: none;
    z-index: 0;
    opacity: 0.2;
}

/* ── TYPOGRAPHY ── */
.display {
    font-family: 'Fraunces', serif;
    font-weight: 600;
    line-height: 1.1;
    letter-spacing: -0.02em;
}

.display-italic {
    font-family: 'Fraunces', serif;
    font-style: italic;
    font-weight: 400;
}

h1,
h2,
h3,
h4 {
    font-family: 'Fraunces', serif;
}

.mono {
    font-family: 'DM Mono', monospace;
}

/* ── NAV ── */
nav {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 100;
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 0 40px;
    height: 68px;
    backdrop-filter: blur(20px) saturate(1.8);
    -webkit-backdrop-filter: blur(20px) saturate(1.8);
    background: rgba(255, 255, 255, 0.88);
    border-bottom: 1px solid var(--border);
    transition: background 0.3s;
}

nav.scrolled {
    background: rgba(255, 255, 255, 0.98);
}

.nav-logo {
    /* font-family: 'Fraunces', serif; */
    font-family: 'Outfit', serif;
    font-weight: 700;
    font-size: 2.5rem;
    /* letter-spacing: -0.03em; */
    color: var(--cream);
    text-decoration: none;
    display: flex;
    align-items: center;
    /* gap: 8px; */
}

.logo-first {
    font-family: 'Outfit', serif;
    color: #2196F3;
    /* This is your #FF2196F3 */
}

.logo-second {
    font-family: 'Outfit', serif;
    color: #1CB5E0;
    /* This is your #ff1CB5E0 */
}

.nav-logo-dot {
    width: 8px;
    height: 8px;
    background: var(--indigo);
    border-radius: 50%;
    display: inline-block;
}

.nav-links {
    display: flex;
    gap: 32px;
    list-style: none;
}

.nav-links a {
    color: var(--text-secondary);
    text-decoration: none;
    font-size: 0.9rem;
    font-weight: 500;
    transition: color 0.2s;
}

.nav-links a:hover {
    color: var(--cream);
}

.nav-cta {
    display: flex;
    gap: 12px;
    align-items: center;
}

.btn-ghost {
    color: var(--text-secondary);
    background: none;
    border: 1px solid var(--border-light);
    padding: 9px 20px;
    border-radius: 8px;
    font-family: 'DM Sans', sans-serif;
    font-size: 0.875rem;
    font-weight: 500;
    cursor: pointer;
    transition: all 0.2s;
    text-decoration: none;
}

.btn-ghost:hover {
    background: var(--border);
    color: var(--cream);
}

.btn-primary {
    background: var(--indigo);
    color: #fff;
    border: none;
    padding: 10px 22px;
    border-radius: 8px;
    font-family: 'DM Sans', sans-serif;
    font-size: 0.875rem;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.22s;
    text-decoration: none;
    display: inline-flex;
    align-items: center;
    gap: 6px;
}

.btn-primary:hover {
    background: var(--indigo-light);
    transform: translateY(-1px);
    box-shadow: 0 6px 20px rgba(28, 181, 224, 0.4);
}

.nav-hamburger {
    display: none;
    flex-direction: column;
    gap: 5px;
    cursor: pointer;
    padding: 4px;
}

.nav-hamburger span {
    width: 22px;
    height: 2px;
    background: var(--cream);
    border-radius: 2px;
    transition: all 0.3s;
}

/* ── HERO ── */
.hero {
    min-height: 100vh;
    display: flex;
    flex-direction: column;
    justify-content: center;
    padding: 120px 40px 80px;
    position: relative;
    overflow: hidden;
}

/* Mesh gradient background */
.hero-bg {
    position: absolute;
    inset: 0;
    background:
        radial-gradient(ellipse 80% 60% at 20% 50%, rgba(28, 181, 224, 0.10) 0%, transparent 60%),
        radial-gradient(ellipse 60% 50% at 80% 20%, rgba(0, 0, 70, 0.04) 0%, transparent 55%),
        radial-gradient(ellipse 50% 60% at 70% 80%, rgba(28, 181, 224, 0.06) 0%, transparent 55%),
        var(--ink);
}

.hero-grid {
    position: absolute;
    inset: 0;
    background-image:
        linear-gradient(var(--border) 1px, transparent 1px),
        linear-gradient(90deg, var(--border) 1px, transparent 1px);
    background-size: 60px 60px;
    mask-image: radial-gradient(ellipse 60% 60% at 50% 50%, black 0%, transparent 80%);
}

.hero-inner {
    max-width: 1200px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 80px;
    align-items: center;
    position: relative;
    z-index: 1;
}

.hero-badge {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background: rgba(28, 181, 224, 0.12);
    border: 1px solid rgba(28, 181, 224, 0.3);
    padding: 6px 14px 6px 8px;
    border-radius: 100px;
    font-size: 0.8rem;
    font-weight: 500;
    color: var(--indigo-light);
    margin-bottom: 28px;
    width: fit-content;
}

.badge-dot {
    width: 6px;
    height: 6px;
    background: var(--indigo-light);
    border-radius: 50%;
    animation: pulse 2s infinite;
}

@keyframes pulse {

    0%,
    100% {
        opacity: 1;
        transform: scale(1)
    }

    50% {
        opacity: 0.5;
        transform: scale(0.8)
    }
}

.hero h1 {
    font-size: clamp(2.4rem, 4.5vw, 3.8rem);
    font-weight: 600;
    line-height: 1.1;
    letter-spacing: -0.025em;
    color: var(--cream);
    margin-bottom: 24px;
}

.hero h1 em {
    font-style: italic;
    font-weight: 400;
    color: var(--indigo-light);
}

.hero-sub {
    font-size: 1.05rem;
    color: var(--text-secondary);
    line-height: 1.7;
    margin-bottom: 40px;
    max-width: 480px;
}

.hero-actions {
    display: flex;
    gap: 14px;
    flex-wrap: wrap;
    margin-bottom: 56px;
}

.btn-xl {
    padding: 14px 32px;
    font-size: 1rem;
    border-radius: 10px;
    font-weight: 600;
}

.btn-xl-ghost {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    color: var(--text-secondary);
    background: none;
    border: 1px solid var(--border-light);
    padding: 14px 28px;
    border-radius: 10px;
    font-family: 'DM Sans', sans-serif;
    font-size: 1rem;
    font-weight: 500;
    cursor: pointer;
    transition: all 0.2s;
    text-decoration: none;
}

.btn-xl-ghost:hover {
    background: var(--border);
    color: var(--cream);
}

.play-icon {
    width: 28px;
    height: 28px;
    background: var(--indigo);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 0.65rem;
}

.hero-stats {
    display: flex;
    gap: 32px;
}

.stat-num {
    font-family: 'Fraunces', serif;
    font-size: 1.8rem;
    font-weight: 700;
    color: var(--cream);
    line-height: 1;
}

.stat-label {
    font-size: 0.75rem;
    color: var(--text-muted);
    margin-top: 4px;
}

/* Hero visual */
.hero-visual {
    position: relative;
}

.form-builder-mockup {
    background: var(--panel);
    border: 1px solid var(--border-light);
    border-radius: var(--radius-lg);
    padding: 0;
    overflow: hidden;
    box-shadow: var(--shadow), 0 0 60px rgba(28, 181, 224, 0.12);
    animation: floatY 6s ease-in-out infinite;
}

@keyframes floatY {

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

    50% {
        transform: translateY(-10px)
    }
}

.mockup-header {
    padding: 14px 20px;
    background: var(--surface);
    border-bottom: 1px solid var(--border);
    display: flex;
    align-items: center;
    gap: 10px;
}

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

.mockup-dots span {
    width: 10px;
    height: 10px;
    border-radius: 50%;
}

.mockup-dots span:nth-child(1) {
    background: #FF5F57;
}

.mockup-dots span:nth-child(2) {
    background: #FFBD2E;
}

.mockup-dots span:nth-child(3) {
    background: #28CA41;
}

.mockup-title {
    font-size: 0.8rem;
    color: var(--text-muted);
    font-weight: 500;
    margin-left: 8px;
}

.mockup-body {
    padding: 20px;
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.ai-prompt {
    background: rgba(91, 110, 245, 0.1);
    border: 1px solid rgba(91, 110, 245, 0.25);
    border-radius: 10px;
    padding: 12px 14px;
    display: flex;
    align-items: center;
    gap: 10px;
    font-size: 0.82rem;
}

.ai-icon {
    font-size: 1rem;
}

.ai-text {
    color: var(--indigo-light);
}

.ai-cursor {
    width: 2px;
    height: 14px;
    background: var(--indigo-light);
    display: inline-block;
    margin-left: 2px;
    animation: blink 1s infinite;
}

@keyframes blink {

    0%,
    100% {
        opacity: 1
    }

    50% {
        opacity: 0
    }
}

.form-field {
    background: var(--surface);
    border: 1px solid var(--border);
    border-radius: 8px;
    padding: 10px 14px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    font-size: 0.8rem;
    cursor: grab;
    transition: border-color 0.2s;
}

.form-field:hover {
    border-color: var(--border-light);
}

.field-left {
    display: flex;
    align-items: center;
    gap: 8px;
}

.field-icon {
    font-size: 0.9rem;
}

.field-label {
    color: var(--text-secondary);
}

.field-type {
    font-size: 0.7rem;
    color: var(--text-muted);
    background: var(--panel);
    padding: 2px 7px;
    border-radius: 4px;
}

.drag-handle {
    color: var(--text-muted);
    font-size: 0.7rem;
}

.mockup-stats {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 10px;
    margin-top: 4px;
}

.mstat {
    background: var(--surface);
    border: 1px solid var(--border);
    border-radius: 8px;
    padding: 10px 12px;
    text-align: center;
}

.mstat-val {
    font-family: 'Fraunces', serif;
    font-size: 1.2rem;
    font-weight: 600;
    color: var(--cream);
}

.mstat-lbl {
    font-size: 0.68rem;
    color: var(--text-muted);
}

/* Floating cards */
.float-card {
    position: absolute;
    background: var(--panel);
    border: 1px solid var(--border-light);
    border-radius: 12px;
    padding: 12px 16px;
    backdrop-filter: blur(10px);
    box-shadow: var(--shadow-sm);
    font-size: 0.8rem;
    display: flex;
    align-items: center;
    gap: 8px;
    white-space: nowrap;
}

.float-card-1 {
    top: -20px;
    right: -30px;
    animation: floatY 4s ease-in-out infinite 1s;
}

.float-card-2 {
    bottom: 40px;
    left: -30px;
    animation: floatY 5s ease-in-out infinite 0.5s;
}

.float-icon {
    font-size: 1.1rem;
}

.float-text strong {
    display: block;
    color: var(--cream);
    font-size: 0.82rem;
}

.float-text span {
    color: var(--text-muted);
    font-size: 0.72rem;
}

/* ── SECTION BASE ── */
section {
    position: relative;
    z-index: 1;
}

.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 40px;
}

.section-label {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    font-size: 0.75rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.12em;
    color: var(--indigo-light);
    margin-bottom: 16px;
}

.section-label::before {
    content: '';
    width: 16px;
    height: 1px;
    background: var(--indigo);
}

.section-title {
    font-size: clamp(2rem, 3.5vw, 2.9rem);
    font-weight: 600;
    line-height: 1.15;
    letter-spacing: -0.02em;
    color: var(--cream);
    margin-bottom: 20px;
}

.section-title em {
    font-style: italic;
    font-weight: 400;
    color: var(--indigo-light);
}

.section-sub {
    font-size: 1.05rem;
    color: var(--text-secondary);
    line-height: 1.7;
    max-width: 600px;
}

/* ── TRUSTED BY ── */
.trusted {
    padding: 60px 40px;
    border-bottom: 1px solid var(--border);
    text-align: center;
    background: var(--navy);
}

.trusted-text {
    font-size: 0.8rem;
    font-weight: 500;
    text-transform: uppercase;
    letter-spacing: 0.12em;
    color: var(--text-muted);
    margin-bottom: 36px;
}

.logos-row {
    display: flex;
    gap: 48px;
    justify-content: center;
    align-items: center;
    flex-wrap: wrap;
}

.logo-item {
    font-family: 'Fraunces', serif;
    font-size: 1.05rem;
    font-weight: 600;
    color: var(--text-muted);
    letter-spacing: -0.01em;
    transition: color 0.2s;
    cursor: default;
    display: flex;
    align-items: center;
    gap: 8px;
}

.logo-item:hover {
    color: var(--text-secondary);
}

.logo-item .li-icon {
    font-size: 1rem;
}

/* ── FEATURES ── */
.features {
    padding: 100px 40px;
}

.features-header {
    text-align: center;
    margin-bottom: 64px;
}

.features-header .section-label {
    justify-content: center;
}

.features-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 20px;
    max-width: 1200px;
    margin: 0 auto;
}

.feat-card {
    background: var(--panel);
    border: 1px solid var(--border);
    border-radius: var(--radius);
    padding: 28px;
    transition: all 0.25s;
    position: relative;
    overflow: hidden;
}

.feat-card::before {
    content: '';
    position: absolute;
    inset: 0;
    background: linear-gradient(135deg, rgba(28, 181, 224, 0.06) 0%, transparent 60%);
    opacity: 0;
    transition: opacity 0.3s;
}

.feat-card:hover {
    border-color: var(--border-light);
    transform: translateY(-3px);
    box-shadow: 0 12px 40px rgba(0, 0, 70, 0.10);
}

.feat-card:hover::before {
    opacity: 1;
}

.feat-icon-wrap {
    width: 48px;
    height: 48px;
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.3rem;
    margin-bottom: 18px;
    background: var(--indigo-dim);
    border: 1px solid rgba(28, 181, 224, 0.2);
}

.feat-icon-wrap.amber {
    background: rgba(245, 166, 35, 0.1);
    border-color: rgba(245, 166, 35, 0.2);
}

.feat-icon-wrap.teal {
    background: rgba(28, 181, 224, 0.1);
    border-color: rgba(28, 181, 224, 0.25);
}

.feat-icon-wrap.rose {
    background: rgba(251, 113, 133, 0.1);
    border-color: rgba(251, 113, 133, 0.2);
}

.feat-card h3 {
    font-size: 1.05rem;
    font-weight: 600;
    color: var(--cream);
    margin-bottom: 8px;
    font-family: 'DM Sans', sans-serif;
}

.feat-card p {
    font-size: 0.875rem;
    color: var(--text-secondary);
    line-height: 1.65;
}

.feat-tags {
    display: flex;
    flex-wrap: wrap;
    gap: 6px;
    margin-top: 14px;
}

.feat-tag {
    font-size: 0.7rem;
    padding: 3px 9px;
    background: var(--surface);
    border-radius: 4px;
    color: var(--text-muted);
    font-family: 'DM Mono', monospace;
}

/* Large feature card */
.feat-card-lg {
    grid-column: span 2;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 32px;
    align-items: center;
    padding: 36px;
}

.feat-card-lg .feat-visual {
    background: var(--surface);
    border: 1px solid var(--border);
    border-radius: 12px;
    padding: 20px;
    display: flex;
    flex-direction: column;
    gap: 10px;
}

.media-row {
    display: flex;
    gap: 8px;
}

.media-btn {
    flex: 1;
    background: var(--panel);
    border: 1px solid var(--border);
    border-radius: 8px;
    padding: 12px 8px;
    text-align: center;
    font-size: 0.8rem;
    color: var(--text-secondary);
    display: flex;
    flex-direction: column;
    gap: 4px;
    align-items: center;
}

.media-btn .mi {
    font-size: 1.2rem;
}

/* ── AI SECTION ── */
.ai-section {
    padding: 100px 40px;
    background: linear-gradient(135deg, var(--deep) 0%, var(--navy) 100%);
    border-top: 1px solid var(--border);
    border-bottom: 1px solid var(--border);
    overflow: hidden;
}

.ai-inner {
    max-width: 1200px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 80px;
    align-items: center;
}

.ai-chat {
    background: var(--panel);
    border: 1px solid var(--border-light);
    border-radius: var(--radius-lg);
    overflow: hidden;
    box-shadow: var(--shadow);
}

.ai-chat-header {
    padding: 16px 20px;
    background: var(--surface);
    border-bottom: 1px solid var(--border);
    display: flex;
    align-items: center;
    gap: 10px;
}

.ai-avatar {
    width: 28px;
    height: 28px;
    background: linear-gradient(135deg, var(--indigo), var(--teal));
    border-radius: 8px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 0.75rem;
    font-weight: 700;
}

.ai-chat-title {
    font-size: 0.85rem;
    font-weight: 600;
    color: var(--cream);
}

.ai-chat-status {
    font-size: 0.72rem;
    color: var(--teal);
}

.ai-chat-msgs {
    padding: 20px;
    display: flex;
    flex-direction: column;
    gap: 14px;
}

.msg-user {
    align-self: flex-end;
    background: whitesmoke;
    color: black;
    border-radius: 12px 12px 3px 12px;
    padding: 10px 14px;
    font-size: 0.82rem;
    max-width: 85%;
}

.msg-ai {
    align-self: flex-start;
    background: var(--indigo);
    border: 1px solid var(--border);
    border-radius: 12px 12px 12px 3px;
    padding: 10px 14px;
    font-size: 0.82rem;
    color: white;
    max-width: 90%;
}

.msg-ai strong {
    color: whitesmoke;
    display: block;
    margin-bottom: 4px;
}

.generated-fields {
    display: flex;
    flex-direction: column;
    gap: 6px;
    margin-top: 8px;
}

.gen-field {
    background: var(--cream2);
    color: white;
    border: 1px solid var(--border);
    border-radius: 6px;
    padding: 7px 12px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    font-size: 0.78rem;
}

.gen-field span:last-child {
    color: var(--indigo-light);
    font-size: 0.7rem;
}

.ai-examples {
    display: flex;
    flex-direction: column;
    gap: 24px;
}

.ai-example-item {
    display: flex;
    align-items: center;
    gap: 16px;
}

.ae-num {
    width: 32px;
    height: 32px;
    flex-shrink: 0;
    background: var(--indigo-dim);
    border: 1px solid rgba(28, 181, 224, 0.25);
    border-radius: 8px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-family: 'DM Mono', monospace;
    font-size: 0.75rem;
    color: var(--indigo-light);
}

.ae-text h4 {
    font-size: 0.9rem;
    color: var(--cream);
    font-family: 'DM Sans', sans-serif;
    font-weight: 600;
}

.ae-text p {
    font-size: 0.8rem;
    color: var(--text-muted);
    margin-top: 2px;
}

/* ── CONTROLS ── */
.controls-section {
    padding: 100px 40px;
}

.controls-inner {
    max-width: 1200px;
    margin: 0 auto;
}

.controls-header {
    margin-bottom: 56px;
}

.controls-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 20px;
}

.ctrl-card {
    background: var(--panel);
    border: 1px solid var(--border);
    border-radius: var(--radius);
    padding: 28px 24px;
    transition: all 0.25s;
}

.ctrl-card:hover {
    border-color: rgba(28, 181, 224, 0.3);
    transform: translateY(-3px);
}

.ctrl-num {
    font-family: 'DM Mono', monospace;
    font-size: 0.7rem;
    color: var(--indigo-light);
    margin-bottom: 16px;
    letter-spacing: 0.08em;
}

.ctrl-icon {
    font-size: 1.5rem;
    margin-bottom: 14px;
}

.ctrl-card h3 {
    font-size: 0.95rem;
    color: var(--cream);
    font-family: 'DM Sans', sans-serif;
    font-weight: 600;
    margin-bottom: 10px;
}

.ctrl-list {
    list-style: none;
    display: flex;
    flex-direction: column;
    gap: 6px;
}

.ctrl-list li {
    font-size: 0.8rem;
    color: var(--text-secondary);
    display: flex;
    align-items: center;
    gap: 7px;
}

.ctrl-list li::before {
    content: '→';
    color: var(--indigo-light);
    font-size: 0.7rem;
}

/* ── HOW IT WORKS ── */
.how-section {
    padding: 100px 40px;
    background: var(--navy);
    border-top: 1px solid var(--border);
}

.how-inner {
    max-width: 1200px;
    margin: 0 auto;
}

.how-header {
    text-align: center;
    margin-bottom: 64px;
}

.how-header .section-label {
    justify-content: center;
}

.how-steps {
    display: grid;
    grid-template-columns: repeat(5, 1fr);
    gap: 24px;
    position: relative;
}

.how-steps::before {
    content: '';
    position: absolute;
    top: 40px;
    left: 10%;
    right: 10%;
    height: 1px;
    background: linear-gradient(90deg, transparent, var(--indigo-dim), var(--indigo-dim), transparent);
}

.how-step {
    text-align: center;
    position: relative;
}

.how-step-icon {
    width: 80px;
    height: 80px;
    background: var(--panel);
    border: 1px solid var(--border-light);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.5rem;
    margin: 0 auto 20px;
    position: relative;
    z-index: 1;
    transition: all 0.3s;
}

.how-step:hover .how-step-icon {
    background: var(--surface);
    border-color: rgba(28, 181, 224, 0.4);
    box-shadow: 0 0 24px rgba(28, 181, 224, 0.2);
}

.how-step-num {
    position: absolute;
    top: -4px;
    right: -4px;
    width: 22px;
    height: 22px;
    background: var(--indigo);
    border-radius: 50%;
    font-size: 0.65rem;
    font-weight: 700;
    display: flex;
    align-items: center;
    justify-content: center;
    font-family: 'DM Mono', monospace;
}

.how-step h4 {
    font-size: 0.9rem;
    color: var(--cream);
    font-family: 'DM Sans', sans-serif;
    font-weight: 600;
    margin-bottom: 6px;
}

.how-step p {
    font-size: 0.8rem;
    color: var(--text-muted);
    line-height: 1.6;
}

/* ── COLLABORATION ── */
.collab-section {
    padding: 100px 40px;
    overflow: hidden;
}

.collab-inner {
    max-width: 1200px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 80px;
    align-items: center;
}

.collab-features {
    display: flex;
    flex-direction: column;
    gap: 20px;
    margin-top: 36px;
}

.collab-feat {
    display: flex;
    gap: 16px;
    align-items: flex-start;
}

.collab-feat-icon {
    width: 40px;
    height: 40px;
    flex-shrink: 0;
    background: var(--indigo-dim);
    border: 1px solid rgba(28, 181, 224, 0.2);
    border-radius: 10px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1rem;
}

.collab-feat-text h4 {
    font-size: 0.9rem;
    color: var(--cream);
    font-weight: 600;
    font-family: 'DM Sans', sans-serif;
    margin-bottom: 4px;
}

.collab-feat-text p {
    font-size: 0.82rem;
    color: var(--text-secondary);
    line-height: 1.6;
}

.team-visual {
    background: var(--panel);
    border: 1px solid var(--border-light);
    border-radius: var(--radius-lg);
    padding: 28px;
    box-shadow: var(--shadow);
}

.team-row {
    display: flex;
    gap: 12px;
    margin-bottom: 16px;
    align-items: center;
}

.avatar {
    width: 36px;
    height: 36px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 0.78rem;
    font-weight: 700;
    border: 2px solid var(--panel);
    flex-shrink: 0;
}

.av1 {
    background: linear-gradient(135deg, #000046, #1CB5E0);
}

.av2 {
    background: linear-gradient(135deg, #1CB5E0, #0090b8);
}

.av3 {
    background: linear-gradient(135deg, #0070a0, #1CB5E0);
}

.av4 {
    background: linear-gradient(135deg, #000046, #0090b8);
}

.team-info h5 {
    font-size: 0.82rem;
    color: var(--cream);
    font-weight: 600;
    font-family: 'DM Sans', sans-serif;
}

.team-info p {
    font-size: 0.75rem;
    color: var(--text-muted);
}

.team-status {
    margin-left: auto;
    font-size: 0.7rem;
    padding: 3px 10px;
    border-radius: 100px;
}

.st-approved {
    background: rgba(40, 202, 65, 0.15);
    color: #28CA41;
}

.st-review {
    background: rgba(245, 166, 35, 0.15);
    color: var(--amber);
}

.st-pending {
    background: rgba(28, 181, 224, 0.15);
    color: var(--indigo-light);
}

.team-divider {
    height: 1px;
    background: var(--border);
    margin: 12px 0;
}

.team-activity {
    background: var(--surface);
    border-radius: 8px;
    padding: 12px;
    font-size: 0.78rem;
    color: var(--text-secondary);
    display: flex;
    align-items: center;
    gap: 8px;
}

/* ── MOBILE ── */
.mobile-section {
    padding: 100px 40px;
    background: linear-gradient(180deg, var(--deep) 0%, var(--ink) 100%);
    border-top: 1px solid var(--border);
    text-align: center;
}

.mobile-inner {
    max-width: 1100px;
    margin: 0 auto;
}

.mobile-header {
    margin-bottom: 60px;
}

.mobile-header .section-label {
    justify-content: center;
}

.phones-mockup {
    display: flex;
    justify-content: center;
    gap: 24px;
    align-items: flex-end;
    margin-bottom: 56px;
}

.phone {
    background: var(--panel);
    border: 1px solid var(--border-light);
    border-radius: 28px;
    overflow: hidden;
    box-shadow: var(--shadow);
}

.phone-lg {
    width: 200px;
}

.phone-sm {
    width: 170px;
    transform: translateY(30px);
}

.phone-header {
    padding: 12px 14px 8px;
    background: var(--surface);
    text-align: center;
}

.phone-notch {
    width: 60px;
    height: 6px;
    background: #000046;
    border-radius: 3px;
    margin: 0 auto 8px;
}

.phone-app-name {
    font-size: 0.7rem;
    color: var(--text-muted);
}

.phone-body {
    padding: 14px;
    display: flex;
    flex-direction: column;
    gap: 8px;
}

.phone-field {
    background: var(--surface);
    border: 1px solid var(--border);
    border-radius: 7px;
    padding: 9px 12px;
    font-size: 0.72rem;
    color: var(--text-secondary);
}

.phone-btn-group {
    display: flex;
    gap: 6px;
}

.phone-btn {
    flex: 1;
    background: var(--indigo);
    border-radius: 6px;
    padding: 9px 4px;
    font-size: 0.68rem;
    font-weight: 600;
    text-align: center;
    color: white;
}

.phone-btn.ghost {
    background: var(--surface);
    color: var(--text-secondary);
}

.phone-img-row {
    display: flex;
    gap: 6px;
}

.phone-img-thumb {
    flex: 1;
    height: 50px;
    background: linear-gradient(135deg, var(--indigo-dim), rgba(28, 181, 224, 0.08));
    border-radius: 6px;
    border: 1px solid var(--border);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1rem;
}

.platform-badges {
    display: flex;
    justify-content: center;
    gap: 16px;
    flex-wrap: wrap;
}

.platform-badge {
    display: flex;
    align-items: center;
    gap: 10px;
    background: var(--panel);
    border: 1px solid var(--border-light);
    padding: 12px 20px;
    border-radius: 12px;
    font-size: 0.85rem;
    font-weight: 500;
    color: var(--cream);
    transition: all 0.2s;
}

.platform-badge:hover {
    border-color: rgba(28, 181, 224, 0.3);
}

.pb-icon {
    font-size: 1.1rem;
}

/* ── TESTIMONIALS ── */
.testimonials {
    padding: 100px 40px;
    background: var(--navy);
    border-top: 1px solid var(--border);
}

.test-header {
    text-align: center;
    margin-bottom: 60px;
}

.test-header .section-label {
    justify-content: center;
}

.test-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 20px;
    max-width: 1200px;
    margin: 0 auto;
}

.test-card {
    background: var(--panel);
    border: 1px solid var(--border);
    border-radius: var(--radius);
    padding: 28px;
    transition: all 0.25s;
}

.test-card:hover {
    border-color: var(--border-light);
    transform: translateY(-2px);
}

.test-stars {
    color: var(--amber);
    font-size: 0.9rem;
    margin-bottom: 14px;
    letter-spacing: 2px;
}

.test-quote {
    font-size: 0.9rem;
    color: var(--text-secondary);
    line-height: 1.7;
    margin-bottom: 20px;
    font-style: italic;
}

.test-quote::before {
    content: '"';
    font-size: 1.5rem;
    color: var(--indigo-light);
    font-family: 'Fraunces', serif;
    line-height: 1;
    display: block;
    margin-bottom: 6px;
}

.test-author {
    display: flex;
    align-items: center;
    gap: 12px;
}

.test-avatar {
    width: 40px;
    height: 40px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 700;
    font-size: 0.85rem;
    flex-shrink: 0;
}

.test-name {
    font-size: 0.85rem;
    font-weight: 600;
    color: var(--cream);
    font-family: 'DM Sans', sans-serif;
}

.test-role {
    font-size: 0.75rem;
    color: var(--text-muted);
    margin-top: 2px;
}

/* ── PRICING ── */
.pricing {
    padding: 40px 40px;
}

.pricing-inner {
    /* max-width: 1200px; */
    margin: 0 auto;
}

.pricing-header {
    text-align: center;
    margin-bottom: 60px;
}

.pricing-header .section-label {
    justify-content: center;
}

.pricing-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 20px;
}

.price-card {
    background: var(--panel);
    border: 1px solid var(--border);
    border-radius: var(--radius);
    padding: 25px 18px;
    position: relative;
    transition: all 0.25s;
}

.price-card:hover {
    transform: translateY(-3px);
}

.price-card.featured {
    background: linear-gradient(145deg, rgba(28, 181, 224, 0.12) 0%, var(--panel) 100%);
    border-color: rgba(28, 181, 224, 0.35);
}

.price-badge {
    position: absolute;
    top: -12px;
    left: 50%;
    transform: translateX(-50%);
    background: var(--indigo);
    color: white;
    font-size: 0.7rem;
    font-weight: 700;
    padding: 4px 14px;
    border-radius: 100px;
    letter-spacing: 0.05em;
    text-transform: uppercase;
    white-space: nowrap;
}

.price-plan {
    font-size: 1rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.1em;
    color: var(--text-muted);
    margin-bottom: 12px;
    text-align: center;
}

.price-amount {
    font-family: 'Fraunces', serif;
    font-size: 1.3rem;
    font-weight: 700;
    color: var(--cream);
    line-height: 1;
    margin-bottom: 6px;
}

.price-amount span {
    font-size: 1rem;
    font-weight: 400;
}

.price-period {
    font-size: 0.78rem;
    color: var(--text-muted);
}

.price-features {
    list-style: none;
    display: flex;
    flex-direction: column;
    gap: 10px;
    margin-bottom: 28px;
}

.price-features li {
    font-size: 0.83rem;
    color: var(--text-secondary);
    display: flex;
    align-items: center;
    gap: 8px;
}

.price-features li::before {
    content: '✓';
    color: var(--teal);
    font-size: 0.75rem;
    font-weight: 700;
}

.price-cta {
    width: 100%;
    padding: 11px;
    border-radius: 8px;
    font-family: 'DM Sans', sans-serif;
    font-size: 0.875rem;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.2s;
    text-align: center;
    border: 1px solid var(--border-light);
    background: none;
    color: var(--cream);
}

.price-cta:hover {
    background: var(--surface);
}

.price-cta.primary-cta {
    background: var(--indigo);
    border-color: transparent;
    color: white;
}

.price-cta.primary-cta:hover {
    background: var(--indigo-light);
}

/* ── FAQ ── */
.faq {
    padding: 100px 40px;
    background: var(--navy);
    border-top: 1px solid var(--border);
}

.faq-inner {
    max-width: 820px;
    margin: 0 auto;
}

.faq-header {
    text-align: center;
    margin-bottom: 56px;
}

.faq-header .section-label {
    justify-content: center;
}

.faq-list {
    display: flex;
    flex-direction: column;
    gap: 0;
}

.faq-item {
    border-bottom: 1px solid var(--border);
}

.faq-q {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 22px 0;
    cursor: pointer;
    color: var(--cream);
    font-size: 0.95rem;
    font-weight: 500;
    transition: color 0.2s;
    gap: 16px;
}

.faq-q:hover {
    color: var(--indigo-light);
}

.faq-arrow {
    width: 28px;
    height: 28px;
    flex-shrink: 0;
    background: var(--surface);
    border: 1px solid var(--border);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 0.7rem;
    transition: transform 0.3s, background 0.2s;
}

.faq-item.open .faq-arrow {
    transform: rotate(45deg);
    background: var(--indigo-dim);
}

.faq-a {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.35s ease, padding 0.3s;
    font-size: 0.88rem;
    color: var(--text-secondary);
    line-height: 1.7;
    padding-bottom: 0;
}

.faq-item.open .faq-a {
    max-height: 200px;
    padding-bottom: 20px;
}

/* ── FINAL CTA ── */
.final-cta {
    padding: 120px 40px;
    text-align: center;
    background: linear-gradient(135deg, #eaf4fb 0%, rgba(28, 181, 224, 0.07) 50%, #ffffff 100%);
    border-top: 1px solid var(--border);
    position: relative;
    overflow: hidden;
}

.final-cta-glow {
    position: absolute;
    width: 600px;
    height: 600px;
    border-radius: 50%;
    background: radial-gradient(circle, rgba(28, 181, 224, 0.12) 0%, transparent 70%);
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    pointer-events: none;
}

.final-cta h2 {
    font-size: clamp(2.2rem, 4vw, 3.5rem);
    color: var(--cream);
    margin-bottom: 20px;
    position: relative;
    z-index: 1;
}

.final-cta h2 em {
    color: var(--indigo-light);
}

.final-cta p {
    font-size: 1.05rem;
    color: var(--text-secondary);
    max-width: 560px;
    margin: 0 auto 44px;
    position: relative;
    z-index: 1;
    line-height: 1.7;
}

.final-cta-btns {
    display: flex;
    gap: 16px;
    justify-content: center;
    flex-wrap: wrap;
    position: relative;
    z-index: 1;
}

.final-cta-btns .btn-primary.btn-xl {
    font-size: 1rem;
}

/* ── FOOTER ── */
footer {
    background: var(--ink);
    border-top: 1px solid var(--border);
    padding: 64px 40px 32px;
}

.footer-inner {
    max-width: 1200px;
    margin: 0 auto;
}

.footer-top {
    display: grid;
    grid-template-columns: 2fr 1fr 1fr 1fr 1fr;
    gap: 40px;
    margin-bottom: 48px;
}

.footer-brand .nav-logo {
    margin-bottom: 14px;
    display: block;
}

.footer-brand p {
    font-size: 0.85rem;
    color: var(--text-muted);
    line-height: 1.7;
    max-width: 260px;
    margin-bottom: 20px;
}

.footer-socials {
    display: flex;
    gap: 10px;
}

.social-icon {
    width: 34px;
    height: 34px;
    background: var(--surface);
    border: 1px solid var(--border);
    border-radius: 8px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 0.85rem;
    color: var(--text-muted);
    text-decoration: none;
    transition: all 0.2s;
}

.social-icon:hover {
    background: var(--panel);
    color: var(--cream);
    border-color: var(--border-light);
}

.footer-col h5 {
    font-size: 0.8rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.1em;
    color: var(--text-muted);
    margin-bottom: 16px;
    font-family: 'DM Sans', sans-serif;
}

.footer-col ul {
    list-style: none;
    display: flex;
    flex-direction: column;
    gap: 10px;
}

.footer-col ul li a {
    font-size: 0.85rem;
    color: var(--text-secondary);
    text-decoration: none;
    transition: color 0.2s;
}

.footer-col ul li a:hover {
    color: var(--cream);
}

.footer-bottom {
    border-top: 1px solid var(--border);
    padding-top: 24px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    gap: 12px;
}

.footer-copy {
    font-size: 0.8rem;
    color: var(--text-muted);
}

.footer-bottom-links {
    display: flex;
    gap: 20px;
}

.footer-bottom-links a {
    font-size: 0.8rem;
    color: var(--text-muted);
    text-decoration: none;
    transition: color 0.2s;
}

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

/* ── SCROLL REVEAL ── */
.reveal {
    opacity: 0;
    transform: translateY(30px);
    transition: opacity 0.6s ease, transform 0.6s ease;
}

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

.reveal-delay-1 {
    transition-delay: 0.1s;
}

.reveal-delay-2 {
    transition-delay: 0.2s;
}

.reveal-delay-3 {
    transition-delay: 0.3s;
}

.reveal-delay-4 {
    transition-delay: 0.4s;
}

.reveal-delay-5 {
    transition-delay: 0.5s;
}

/* ── RESPONSIVE ── */
@media (max-width: 1024px) {
    .hero-inner {
        grid-template-columns: 1fr;
        gap: 48px;
    }

    .hero-visual {
        max-width: 520px;
        margin: 0 auto;
    }

    .features-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .feat-card-lg {
        grid-column: span 1;
        grid-template-columns: 1fr;
    }

    .controls-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .how-steps {
        grid-template-columns: repeat(3, 1fr);
    }

    .how-steps::before {
        display: none;
    }

    .pricing-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .footer-top {
        grid-template-columns: 1fr 1fr;
    }

    .ai-inner {
        grid-template-columns: 1fr;
    }

    .collab-inner {
        grid-template-columns: 1fr;
    }
}

@media (max-width: 768px) {
    nav {
        padding: 0 20px;
    }

    .nav-links,
    .nav-cta .btn-ghost {
        display: none;
    }

    .nav-hamburger {
        display: flex;
    }

    .hero {
        padding: 100px 20px 60px;
    }

    .hero h1 {
        font-size: 2.2rem;
    }

    .hero-stats {
        flex-wrap: wrap;
        gap: 20px;
    }

    .container,
    .features,
    .ai-section,
    .controls-section,
    .how-section,
    .collab-section,
    .mobile-section,
    .testimonials,
    .pricing,
    .faq,
    .final-cta,
    footer {
        padding-left: 20px;
        padding-right: 20px;
    }

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

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

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

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

    .how-steps {
        grid-template-columns: repeat(2, 1fr);
    }

    .footer-top {
        grid-template-columns: 1fr 1fr;
    }

    .phones-mockup {
        gap: 14px;
    }

    .phone-lg {
        width: 160px;
    }

    .phone-sm {
        width: 140px;
    }
}

/* Mobile nav open state */
.nav-mobile-menu {
    display: none;
    position: fixed;
    top: 68px;
    left: 0;
    right: 0;
    background: rgba(255, 255, 255, 0.98);
    backdrop-filter: blur(20px);
    border-bottom: 1px solid var(--border);
    padding: 20px;
    flex-direction: column;
    gap: 4px;
    z-index: 99;
}

.nav-mobile-menu.open {
    display: flex;
}

.nav-mobile-menu a {
    color: var(--text-secondary);
    text-decoration: none;
    padding: 10px 12px;
    border-radius: 8px;
    font-size: 0.9rem;
    transition: all 0.2s;
}

.nav-mobile-menu a:hover {
    background: var(--surface);
    color: var(--cream);
}

.blink-smooth {
    font-size: 0.8rem;
    color: red;
    animation: pulse 1s infinite alternate;
    margin-top: 12px;
    margin-bottom: 20px;
    text-align: center;
}

@keyframes pulse {
    0% {
        opacity: 1;
    }

    100% {
        opacity: 0;
    }
}