/* Dreamforge — dual-theme design system. See DESIGN.md v2. */

:root {
    /* shared, theme-independent */
    --radius-sm: 0.625rem;
    --radius: 1rem;
    --radius-lg: 1.5rem;
    --pill: 999px;
    --ease: cubic-bezier(0.2, 0.8, 0.2, 1);
    --container: 1200px;
    --font-display: 'Cabinet Grotesk', 'Satoshi', sans-serif;
    --font-body: 'Satoshi', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
    --font-mono: 'JetBrains Mono', ui-monospace, monospace;
}

/* ===== Dark theme (default) ===== */
[data-theme="dark"] {
    --bg: #0C0F0E;
    --bg-2: #0A0C0B;
    --surface: #141917;
    --surface-2: #1B221F;
    --ink: #F2F5F3;
    --ink-soft: #A7B0AC;
    --muted: #6E7873;
    --border: rgba(255, 255, 255, 0.10);
    --border-strong: rgba(255, 255, 255, 0.18);

    --accent: #1FE0C0;
    --accent-deep: #14B8A1;
    --accent-ink: #06201C;
    --accent-wash: rgba(31, 224, 192, 0.12);
    --accent-line: rgba(31, 224, 192, 0.30);

    --shadow-sm: 0 1px 2px rgba(0, 0, 0, 0.4);
    --shadow: 0 24px 48px -24px rgba(0, 0, 0, 0.7);
    --shadow-lg: 0 50px 90px -36px rgba(0, 0, 0, 0.8);
    --glow: 0 10px 40px -8px rgba(31, 224, 192, 0.35);

    --check: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 16 16' fill='none'%3E%3Cpath d='M3 8.5 6.5 12 13 4.5' stroke='%231FE0C0' stroke-width='2' stroke-linecap='round' stroke-linejoin='round'/%3E%3C/svg%3E");
    color-scheme: dark;
}

/* ===== Light theme ===== */
[data-theme="light"] {
    --bg: #F4F3EE;
    --bg-2: #EFEEE7;
    --surface: #FFFFFF;
    --surface-2: #FBFAF7;
    --ink: #16201E;
    --ink-soft: #454F4C;
    --muted: #7C857F;
    --border: rgba(22, 32, 30, 0.10);
    --border-strong: rgba(22, 32, 30, 0.18);

    --accent: #0E8C7A;
    --accent-deep: #0A6E60;
    --accent-ink: #FFFFFF;
    --accent-wash: rgba(14, 140, 122, 0.10);
    --accent-line: rgba(14, 140, 122, 0.28);

    --shadow-sm: 0 1px 2px rgba(22, 32, 30, 0.05);
    --shadow: 0 16px 36px -18px rgba(22, 32, 30, 0.16);
    --shadow-lg: 0 40px 80px -32px rgba(22, 32, 30, 0.22);
    --glow: 0 10px 36px -10px rgba(14, 140, 122, 0.30);

    --check: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 16 16' fill='none'%3E%3Cpath d='M3 8.5 6.5 12 13 4.5' stroke='%230E8C7A' stroke-width='2' stroke-linecap='round' stroke-linejoin='round'/%3E%3C/svg%3E");
    color-scheme: light;
}

* { margin: 0; padding: 0; box-sizing: border-box; }
html { scroll-behavior: smooth; }

body {
    font-family: var(--font-body);
    font-size: 17px;
    line-height: 1.6;
    color: var(--ink-soft);
    background: var(--bg);
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
    transition: background 0.4s var(--ease), color 0.4s var(--ease);
}

h1, h2, h3, h4, h5, h6 {
    font-family: var(--font-display);
    font-weight: 800;
    line-height: 1.05;
    letter-spacing: -0.02em;
    color: var(--ink);
}

.section-title { font-size: clamp(2rem, 4.4vw, 3.25rem); margin-bottom: 1.1rem; }
.section-title .muted2 { color: var(--ink-soft); }
.section-subtitle { font-size: clamp(1.05rem, 1.6vw, 1.22rem); color: var(--ink-soft); max-width: 60ch; line-height: 1.6; }

.eyebrow {
    font-family: var(--font-mono);
    font-size: 0.74rem; font-weight: 500; letter-spacing: 0.16em; text-transform: uppercase;
    color: var(--accent-deep); display: inline-block; margin-bottom: 1.25rem;
}
[data-theme="dark"] .eyebrow { color: var(--accent); }
/* Generic link colour — scoped away from .btn so primary buttons keep their own
   text colour (otherwise teal text lands on the teal .btn-primary fill). */
a:not(.btn) { color: var(--accent-deep); }
[data-theme="dark"] a:not(.btn) { color: var(--accent); }

/* ===== Buttons ===== */
.btn {
    display: inline-flex; align-items: center; justify-content: center; gap: 0.5rem;
    padding: 0.85rem 1.5rem; border-radius: var(--pill);
    font-family: var(--font-body); font-size: 1rem; font-weight: 700;
    text-decoration: none; cursor: pointer; border: 1px solid transparent;
    transition: transform 0.18s var(--ease), background 0.18s var(--ease), border-color 0.18s var(--ease), box-shadow 0.18s var(--ease);
    white-space: nowrap;
}
.btn svg { transition: transform 0.18s var(--ease); }
.btn-primary { background: var(--accent); color: var(--accent-ink); }
.btn-primary:hover { background: var(--accent-deep); box-shadow: var(--glow); }
.btn-primary:hover svg { transform: translateX(3px); }
.btn-primary:active { transform: translateY(1px); }
.btn-secondary, .btn-outline { background: transparent; color: var(--ink); border-color: var(--border-strong); }
.btn-secondary:hover, .btn-outline:hover { border-color: var(--ink); }
.btn-secondary:active, .btn-outline:active { transform: translateY(1px); }
.btn-large { padding: 1rem 1.85rem; font-size: 1.0625rem; }
.btn-block { width: 100%; }

/* ===== Theme toggle ===== */
.theme-toggle {
    width: 2.3rem; height: 2.3rem; border-radius: 50%;
    border: 1px solid var(--border-strong); background: transparent; color: var(--ink-soft);
    display: inline-flex; align-items: center; justify-content: center; cursor: pointer;
    transition: color 0.18s var(--ease), border-color 0.18s var(--ease), transform 0.18s var(--ease);
}
.theme-toggle:hover { color: var(--ink); border-color: var(--ink); }
.theme-toggle:active { transform: scale(0.94); }
.theme-toggle .sun { display: none; }
.theme-toggle .moon { display: block; }
[data-theme="dark"] .theme-toggle .sun { display: block; }
[data-theme="dark"] .theme-toggle .moon { display: none; }

/* ===== Nav ===== */
.nav {
    position: fixed; top: 0; left: 0; right: 0; z-index: 1000;
    background: color-mix(in srgb, var(--bg) 72%, transparent);
    backdrop-filter: saturate(140%) blur(14px);
    border-bottom: 1px solid transparent;
    transition: border-color 0.3s var(--ease), background 0.3s var(--ease);
}
.nav.scrolled { border-bottom-color: var(--border); background: color-mix(in srgb, var(--bg) 90%, transparent); }
.nav-container { max-width: var(--container); margin: 0 auto; padding: 1.05rem 2rem; display: flex; justify-content: space-between; align-items: center; }
.nav-logo { display: flex; align-items: center; gap: 0.6rem; }
.nav-brand { font-family: var(--font-display); font-size: 1.4rem; font-weight: 800; letter-spacing: -0.02em; color: var(--ink); }
.nav-right { display: flex; align-items: center; gap: 1.75rem; }
.nav-links { display: flex; align-items: center; gap: 1.75rem; }
.nav-links a { text-decoration: none; color: var(--ink-soft); font-weight: 500; font-size: 0.95rem; transition: color 0.18s var(--ease); }
.nav-links a:hover { color: var(--ink); }
.nav-cta { background: var(--accent); color: var(--accent-ink) !important; padding: 0.6rem 1.25rem; border-radius: var(--pill); font-weight: 700 !important; font-size: 0.95rem; white-space: nowrap; text-decoration: none; transition: background 0.18s var(--ease), box-shadow 0.18s var(--ease); }
.nav-cta:hover { background: var(--accent-deep); box-shadow: var(--glow); }
.nav-right a.nav-signin { color: var(--ink-soft); font-weight: 600; font-size: 0.95rem; white-space: nowrap; text-decoration: none; transition: color 0.18s var(--ease); }
.nav-right a.nav-signin:hover { color: var(--ink); }
@media (max-width: 900px) { .nav-links { display: none; } }
@media (max-width: 480px) {
    .nav-container { padding: 0.85rem 1.1rem; }
    .nav-right { gap: 0.7rem; }
    .nav-cta { padding: 0.5rem 0.95rem; font-size: 0.85rem; }
    .nav-right a.nav-signin { font-size: 0.85rem; }
    /* Drop the wordmark on phones (the logo mark stays) so the added Sign in +
       CTA pair never overflows the bar. */
    .nav-brand { display: none; }
}
@media (max-width: 340px) {
    .nav-right { gap: 0.5rem; }
    .nav-cta { padding: 0.45rem 0.8rem; }
}

/* ===== Hero ===== */
.hero { position: relative; padding: 10rem 2rem 5rem; overflow: hidden; text-align: center; }
.hero-ambient { position: absolute; inset: 0; pointer-events: none; overflow: hidden; }
.hero-ambient::before, .hero-ambient::after {
    content: ''; position: absolute; border-radius: 50%; filter: blur(80px);
    animation: drift 18s var(--ease) infinite alternate;
}
.hero-ambient::before { width: 50vw; height: 50vw; top: -18vw; left: 50%; transform: translateX(-50%);
    background: radial-gradient(circle, var(--accent-wash) 0%, transparent 70%); opacity: 0.9; }
.hero-ambient::after { width: 36vw; height: 36vw; top: 8vw; right: -8vw;
    background: radial-gradient(circle, var(--accent-wash) 0%, transparent 70%); opacity: 0.6; animation-delay: -9s; }
@keyframes drift { from { transform: translate(-50%, 0); } to { transform: translate(-46%, 5%); } }

/* Real animated aurora (flowing teal light) — replaces the static hero image */
.hero-aurora { position: absolute; inset: 0; overflow: hidden; pointer-events: none; z-index: 0; }
.hero-aurora span { position: absolute; border-radius: 50%; filter: blur(80px); opacity: 0.3; will-change: transform, opacity; }
.hero-aurora span:nth-child(1) { width: 46vw; height: 46vw; top: -12vw; right: 3vw; background: radial-gradient(circle, var(--accent) 0%, transparent 62%); animation: aurora1 16s var(--ease) infinite; }
.hero-aurora span:nth-child(2) { width: 40vw; height: 40vw; top: 5vw; right: -9vw; background: radial-gradient(circle, var(--accent-deep) 0%, transparent 60%); animation: aurora2 22s var(--ease) infinite; animation-delay: -7s; }
.hero-aurora span:nth-child(3) { width: 30vw; height: 30vw; top: 22vw; right: 16vw; background: radial-gradient(circle, var(--accent) 0%, transparent 58%); animation: aurora3 19s var(--ease) infinite; animation-delay: -3s; }
@keyframes aurora1 { 0%, 100% { transform: translate3d(0,0,0) scale(1); opacity: 0.30; } 50% { transform: translate3d(-6%, 8%, 0) scale(1.15); opacity: 0.55; } }
@keyframes aurora2 { 0%, 100% { transform: translate3d(0,0,0) scale(1.05); opacity: 0.20; } 50% { transform: translate3d(9%, -7%, 0) scale(0.9); opacity: 0.44; } }
@keyframes aurora3 { 0%, 100% { transform: translate3d(0,0,0) scale(0.95); opacity: 0.14; } 50% { transform: translate3d(-9%, -10%, 0) scale(1.2); opacity: 0.36; } }
[data-theme="light"] .hero-aurora { opacity: 0.5; }
[data-theme="dark"] .hero-ambient { background: radial-gradient(ellipse 72% 62% at 50% 42%, rgba(12,15,14,0.72) 0%, rgba(12,15,14,0.32) 55%, transparent 80%); }

/* Demo video (auto-swaps in over the animated mock when present) */
.showcase-video { display: none; width: 100%; max-width: 880px; margin: 0 auto; border-radius: var(--radius-lg); box-shadow: var(--shadow-lg); border: 1px solid var(--border); }
.showcase-video.is-ready { display: block; }
.showcase.has-video .showcase-window { display: none; }

.hero-inner { position: relative; max-width: 940px; margin: 0 auto; }
.hero-badge {
    display: inline-flex; align-items: center; gap: 0.5rem; padding: 0.4rem 0.9rem;
    background: var(--surface); border: 1px solid var(--border); border-radius: var(--pill);
    font-family: var(--font-mono); font-size: 0.74rem; letter-spacing: 0.04em; color: var(--ink-soft);
    margin-bottom: 1.75rem; box-shadow: var(--shadow-sm);
}
.dot { width: 7px; height: 7px; border-radius: 50%; background: var(--accent); }
.dot.pulse { animation: livePulse 2.4s var(--ease) infinite; }
@keyframes livePulse {
    0% { box-shadow: 0 0 0 0 var(--accent-line); }
    70% { box-shadow: 0 0 0 7px transparent; }
    100% { box-shadow: 0 0 0 0 transparent; }
}
.hero-title { font-size: clamp(2.6rem, 6.4vw, 4.6rem); line-height: 1.0; margin-bottom: 1.5rem; }
.hero-title .line2 { color: var(--ink-soft); }
.hero-subtitle { font-size: clamp(1.0625rem, 1.7vw, 1.25rem); color: var(--ink-soft); margin: 0 auto 2.25rem; max-width: 46ch; }

/* Prompt box (try-it-in-the-hero) */
.hero-prompt {
    max-width: 660px; margin: 0 auto 1rem; background: var(--surface);
    border: 1px solid var(--border-strong); border-radius: var(--radius-lg);
    box-shadow: var(--shadow); padding: 1.1rem 1.1rem 0.9rem; text-align: left;
    transition: border-color 0.2s var(--ease), box-shadow 0.2s var(--ease);
}
.hero-prompt:focus-within { border-color: var(--accent); box-shadow: var(--glow); }
.hero-prompt-input {
    width: 100%; border: none; background: transparent; resize: none;
    font-family: var(--font-body); font-size: 1.08rem; line-height: 1.5; color: var(--ink);
    min-height: 3.2rem; outline: none;
}
.hero-prompt-input::placeholder { color: var(--muted); }
.hero-prompt-row { display: flex; align-items: center; justify-content: space-between; margin-top: 0.4rem; }
.hero-prompt-hint { font-family: var(--font-mono); font-size: 0.72rem; color: var(--muted); }
.hero-prompt-submit {
    display: inline-flex; align-items: center; gap: 0.45rem; border: none; cursor: pointer;
    background: var(--accent); color: var(--accent-ink); font-family: var(--font-body);
    font-weight: 700; font-size: 0.95rem; white-space: nowrap; padding: 0.6rem 1.1rem; border-radius: var(--pill);
    transition: background 0.18s var(--ease), box-shadow 0.18s var(--ease), transform 0.18s var(--ease);
}
.hero-prompt-submit:hover { background: var(--accent-deep); box-shadow: var(--glow); }
.hero-prompt-submit:active { transform: translateY(1px); }
.hero-prompt-submit svg { transition: transform 0.18s var(--ease); }
.hero-prompt-submit:hover svg { transform: translateX(3px); }
.hero-sub-actions { font-size: 0.95rem; color: var(--muted); margin-bottom: 3rem; }
.hero-sub-actions a { font-weight: 600; }

/* Credibility strip */
.cred-strip { max-width: var(--container); margin: 0 auto; padding-top: 2rem; border-top: 1px solid var(--border); display: flex; flex-wrap: wrap; align-items: center; justify-content: center; gap: 0.85rem 2.25rem; }
.cred-label { font-family: var(--font-mono); font-size: 0.72rem; letter-spacing: 0.08em; text-transform: uppercase; color: var(--muted); }
.cred-logos { display: flex; flex-wrap: wrap; gap: 1.6rem; }
.cred-logos span { font-size: 0.95rem; font-weight: 700; color: var(--ink-soft); }

/* ===== Build showcase (animated mock) ===== */
.showcase { padding: 2rem 2rem 5rem; }
.showcase-window {
    max-width: 880px; margin: 0 auto; background: var(--surface); border: 1px solid var(--border);
    border-radius: var(--radius-lg); box-shadow: var(--shadow-lg); overflow: hidden;
}
.win-header { background: var(--surface-2); padding: 0.85rem 1.1rem; display: flex; align-items: center; gap: 0.9rem; border-bottom: 1px solid var(--border); }
.win-dots { display: flex; gap: 0.4rem; }
.win-dots span { width: 0.7rem; height: 0.7rem; border-radius: 50%; background: var(--border-strong); }
.win-title { font-family: var(--font-mono); font-size: 0.8rem; color: var(--muted); }
.win-body { padding: 1.6rem; font-family: var(--font-mono); font-size: 0.85rem; line-height: 1.6; min-height: 220px; }
.win-prompt { color: var(--ink); margin-bottom: 1.1rem; }
.win-prompt b { color: var(--accent); }
.build-log { display: flex; flex-direction: column; gap: 0.6rem; }
.build-log .ln { display: flex; align-items: center; gap: 0.55rem; color: var(--ink-soft); opacity: 0; animation: lineIn 9s var(--ease) infinite; }
.build-log .ln svg { color: var(--accent); flex-shrink: 0; }
.build-log .ln:nth-child(1) { animation-delay: 0.3s; }
.build-log .ln:nth-child(2) { animation-delay: 1.6s; }
.build-log .ln:nth-child(3) { animation-delay: 2.9s; }
.build-log .ln:nth-child(4) { animation-delay: 4.2s; }
.build-log .done { margin-top: 0.4rem; align-self: flex-start; display: inline-flex; align-items: center; gap: 0.5rem; padding: 0.45rem 0.8rem; background: var(--accent-wash); color: var(--accent-deep); border-radius: var(--radius-sm); font-weight: 500; opacity: 0; animation: lineIn 9s var(--ease) infinite; animation-delay: 5.6s; }
[data-theme="dark"] .build-log .done { color: var(--accent); }
@keyframes lineIn { 0% { opacity: 0; transform: translateY(6px); } 6% { opacity: 1; transform: none; } 88% { opacity: 1; } 96%, 100% { opacity: 0; } }

/* ===== Section system ===== */
.section { padding: clamp(5rem, 10vw, 8.5rem) 2rem; }
.section-bg { background: var(--bg); }
.section-surface { background: var(--bg-2); }
.wrap { max-width: var(--container); margin: 0 auto; }
.head-center { text-align: center; max-width: 62ch; margin: 0 auto 4rem; display: flex; flex-direction: column; align-items: center; }

/* ===== Stakes (editorial) ===== */
.stakes-layout { display: grid; grid-template-columns: 1fr 0.85fr; gap: 4.5rem; align-items: start; }
@media (max-width: 900px) { .stakes-layout { grid-template-columns: 1fr; gap: 3rem; } }
.stakes-lead .section-title { margin-bottom: 1.25rem; }
.stakes-lead .section-subtitle { margin-bottom: 2.25rem; }
.beforeafter { display: grid; gap: 1.75rem; }
.ba-col h3 { font-family: var(--font-mono); font-size: 0.74rem; font-weight: 500; letter-spacing: 0.12em; text-transform: uppercase; margin-bottom: 1rem; }
.ba-before h3 { color: var(--muted); }
.ba-after h3 { color: var(--accent-deep); }
[data-theme="dark"] .ba-after h3 { color: var(--accent); }
.ba-list { list-style: none; display: grid; gap: 0.7rem; }
.ba-list li { position: relative; padding-left: 1.7rem; font-size: 0.98rem; }
.ba-before .ba-list li { color: var(--muted); }
.ba-before .ba-list li::before { content: ''; position: absolute; left: 0; top: 0.72em; width: 0.7rem; height: 1px; background: var(--muted); }
.ba-after .ba-list li { color: var(--ink-soft); }
.ba-after .ba-list li::before { content: ''; position: absolute; left: 0; top: 0.18rem; width: 1.1rem; height: 1.1rem; background: var(--accent-wash) var(--check) center / 0.78rem no-repeat; border-radius: 50%; }
.stat-lines { display: grid; border-top: 1px solid var(--border); }
.stat-line { display: grid; grid-template-columns: auto 1fr; gap: 1.1rem; align-items: baseline; padding: 1.5rem 0; border-bottom: 1px solid var(--border); }
.stat-figure { font-family: var(--font-display); font-weight: 800; font-size: clamp(2rem, 4vw, 2.7rem); color: var(--accent-deep); line-height: 1; letter-spacing: -0.02em; }
[data-theme="dark"] .stat-figure { color: var(--accent); }
.stat-text { color: var(--ink-soft); font-size: 0.98rem; line-height: 1.45; }
.stat-source { display: block; margin-top: 0.3rem; font-family: var(--font-mono); font-size: 0.7rem; color: var(--muted); }

/* ===== Bento ===== */
.bento { display: grid; grid-template-columns: repeat(6, 1fr); gap: 1.25rem; }
.bento-card { background: var(--surface); border: 1px solid var(--border); border-radius: var(--radius-lg); padding: 2.2rem; transition: transform 0.25s var(--ease), box-shadow 0.25s var(--ease), border-color 0.25s var(--ease); }
.bento-card:hover { transform: translateY(-4px); box-shadow: var(--shadow); border-color: var(--border-strong); }
.bento-card.span-2 { grid-column: span 2; }
.bento-card.span-3 { grid-column: span 3; }
.bento-card.span-4 { grid-column: span 4; }
.bento-icon { color: var(--accent); margin-bottom: 1.3rem; }
.bento-card h3 { font-size: 1.34rem; margin-bottom: 0.7rem; letter-spacing: -0.01em; }
.bento-card p { color: var(--ink-soft); line-height: 1.6; font-size: 1rem; }
.bento-note { margin-top: 1rem; font-family: var(--font-mono); font-size: 0.72rem; letter-spacing: 0.02em; color: var(--muted); }
@media (max-width: 900px) { .bento { grid-template-columns: 1fr 1fr; } .bento-card.span-2, .bento-card.span-3, .bento-card.span-4 { grid-column: span 1; } }
@media (max-width: 600px) { .bento { grid-template-columns: 1fr; } .bento-card.span-2, .bento-card.span-3, .bento-card.span-4 { grid-column: span 1; } }

/* ===== Guide ===== */
.guide-layout { display: grid; grid-template-columns: 1.05fr 0.95fr; gap: 4.5rem; align-items: start; }
@media (max-width: 900px) { .guide-layout { grid-template-columns: 1fr; gap: 3rem; } }
.guide-text { font-size: 1.0625rem; line-height: 1.75; color: var(--ink-soft); margin-bottom: 1.25rem; }
.guide-text strong { color: var(--ink); }
.guide-card { background: var(--surface); border: 1px solid var(--border); border-radius: var(--radius-lg); padding: 2.3rem; box-shadow: var(--shadow-sm); }
.guide-card .eyebrow { margin-bottom: 1.5rem; }
.credential { display: flex; gap: 1.1rem; padding: 1.1rem 0; border-top: 1px solid var(--border); }
.credential:first-of-type { border-top: none; padding-top: 0; }
.credential-icon { flex-shrink: 0; width: 2.5rem; height: 2.5rem; display: flex; align-items: center; justify-content: center; background: var(--accent-wash); border-radius: var(--radius-sm); color: var(--accent); }
[data-theme="dark"] .credential-icon { color: var(--accent); }
.credential-text strong { display: block; color: var(--ink); font-size: 1.02rem; margin-bottom: 0.15rem; }
.credential-text span { font-size: 0.9rem; color: var(--muted); }

/* ===== Plan (zig-zag) ===== */
.plan-steps { display: grid; gap: 3rem; max-width: 1040px; margin: 0 auto; }
.plan-step { display: grid; grid-template-columns: 0.9fr 1.1fr; gap: 3rem; align-items: center; }
.plan-step:nth-child(even) .step-text { order: 2; }
.plan-step:nth-child(even) .step-visual { order: 1; }
.step-index { font-family: var(--font-mono); font-size: 0.78rem; letter-spacing: 0.1em; color: var(--accent-deep); margin-bottom: 0.9rem; }
[data-theme="dark"] .step-index { color: var(--accent); }
.step-title { font-size: clamp(1.5rem, 3vw, 2rem); margin-bottom: 0.85rem; }
.step-description { font-size: 1.05rem; color: var(--ink-soft); line-height: 1.65; }
.step-visual { background: var(--surface); border: 1px solid var(--border); border-radius: var(--radius-lg); padding: 1.75rem; box-shadow: var(--shadow-sm); }
@media (max-width: 820px) { .plan-step { grid-template-columns: 1fr; gap: 1.5rem; } .plan-step:nth-child(even) .step-text, .plan-step:nth-child(even) .step-visual { order: 0; } }
.chat-bubble { border-radius: var(--radius); overflow: hidden; border: 1px solid var(--border); }
.bubble-header { background: var(--surface-2); color: var(--muted); padding: 0.6rem 1rem; font-family: var(--font-mono); font-size: 0.72rem; letter-spacing: 0.08em; text-transform: uppercase; border-bottom: 1px solid var(--border); }
.bubble-text { padding: 1.2rem; color: var(--ink); line-height: 1.6; }
.progress-steps { display: flex; flex-direction: column; gap: 0.6rem; font-family: var(--font-mono); font-size: 0.82rem; }
.progress-step { display: flex; align-items: center; gap: 0.6rem; padding: 0.7rem 0.9rem; border-radius: var(--radius-sm); background: var(--surface-2); color: var(--muted); }
.progress-step svg { color: var(--accent); flex-shrink: 0; }
.progress-step.complete { color: var(--ink); }
.progress-step.active { background: var(--accent-wash); color: var(--accent-deep); font-weight: 500; }
[data-theme="dark"] .progress-step.active { color: var(--accent); }
.launch-card { text-align: center; padding: 1.5rem; }
.launch-status { display: inline-flex; align-items: center; gap: 0.45rem; font-weight: 600; color: var(--accent-deep); margin: 0.4rem 0 1rem; }
[data-theme="dark"] .launch-status { color: var(--accent); }
.launch-url { font-family: var(--font-mono); font-size: 1.05rem; font-weight: 500; color: var(--ink); overflow-wrap: anywhere; }
/* The single-column plan grid otherwise stretches to the demo URL's unbroken
   width, forcing horizontal scroll on phones — let the tracks shrink. */
.plan-step, .step-text, .step-visual { min-width: 0; }
.launch-metrics { display: flex; justify-content: center; flex-wrap: wrap; gap: 0.5rem; }
.launch-metrics span { font-size: 0.78rem; font-weight: 600; color: var(--ink-soft); background: var(--surface-2); border: 1px solid var(--border); padding: 0.35rem 0.7rem; border-radius: var(--pill); }

/* ===== Comparison ===== */
.comparison-table { background: var(--surface); border: 1px solid var(--border); border-radius: var(--radius-lg); overflow: hidden; }
.comparison-header, .comparison-row { display: grid; grid-template-columns: 2fr 1fr 1fr 1fr 1.1fr; border-bottom: 1px solid var(--border); }
.comparison-row:last-child { border-bottom: none; }
.comparison-header { font-family: var(--font-mono); font-size: 0.72rem; letter-spacing: 0.06em; text-transform: uppercase; color: var(--muted); background: var(--surface-2); }
.comparison-header > div, .comparison-row > div { padding: 1.1rem 1.2rem; display: flex; align-items: center; justify-content: center; text-align: center; font-size: 0.92rem; gap: 0.4rem; }
.comparison-feature { justify-content: flex-start !important; text-align: left !important; color: var(--ink); font-weight: 600; }
.comparison-competitor { color: var(--muted); }
.comparison-dreamforge { background: var(--accent-wash); color: var(--accent-deep); font-weight: 700; }
[data-theme="dark"] .comparison-dreamforge { color: var(--accent); }
.cell-yes { display: inline-flex; align-items: center; gap: 0.4rem; color: var(--accent-deep); }
[data-theme="dark"] .cell-yes { color: var(--accent); }
.cell-yes svg { color: inherit; }
.cell-muted svg { color: var(--muted); }
.comparison-note { text-align: center; font-family: var(--font-mono); font-size: 0.72rem; color: var(--muted); max-width: 70ch; margin: 1.4rem auto 0; line-height: 1.6; }
@media (max-width: 860px) { .comparison-header, .comparison-row { grid-template-columns: 1.4fr 1fr; } .comparison-competitor { display: none; } }

/* ===== Explainer ===== */
.explainer-grid { display: grid; grid-template-columns: 1.5fr 1fr; gap: 3rem; align-items: start; }
@media (max-width: 900px) { .explainer-grid { grid-template-columns: 1fr; gap: 2rem; } }
.explainer-text p { font-size: 1.05rem; line-height: 1.8; color: var(--ink-soft); margin-bottom: 1.25rem; }
.explainer-aside { background: var(--surface); border: 1px solid var(--border); border-radius: var(--radius-lg); padding: 2rem; box-shadow: var(--shadow-sm); }
.explainer-aside h4 { font-family: var(--font-mono); font-size: 0.72rem; letter-spacing: 0.1em; text-transform: uppercase; color: var(--muted); font-weight: 500; margin-bottom: 1.25rem; }
.explainer-aside ul { list-style: none; display: grid; gap: 0.9rem; }
.explainer-aside li { font-size: 0.93rem; color: var(--muted); line-height: 1.5; padding-left: 1.4rem; position: relative; }
.explainer-aside li::before { content: ''; position: absolute; left: 0; top: 0.45rem; width: 0.45rem; height: 0.45rem; border-radius: 50%; background: var(--accent); }
.explainer-aside li strong { color: var(--ink); }

/* ===== Pricing ===== */
.pricing-toggle { display: flex; justify-content: center; gap: 0.4rem; margin: 0 auto 2.5rem; background: var(--surface); border: 1px solid var(--border); border-radius: var(--pill); padding: 0.3rem; width: fit-content; }
.toggle-btn { padding: 0.55rem 1.4rem; background: transparent; border: none; border-radius: var(--pill); font-family: var(--font-body); font-weight: 600; font-size: 0.92rem; color: var(--ink-soft); cursor: pointer; transition: all 0.18s var(--ease); }
.toggle-btn.active { background: var(--accent); color: var(--accent-ink); }
.save-badge { font-family: var(--font-mono); font-size: 0.66rem; }
.pricing-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 1.5rem; align-items: start; }
@media (max-width: 900px) { .pricing-grid { grid-template-columns: 1fr; max-width: 460px; margin: 0 auto; } }
.pricing-card { background: var(--surface); border: 1px solid var(--border); border-radius: var(--radius-lg); padding: 2.3rem; position: relative; transition: transform 0.22s var(--ease), box-shadow 0.22s var(--ease); }
.pricing-card:hover { transform: translateY(-4px); box-shadow: var(--shadow); }
.pricing-card-featured { border-color: var(--accent); box-shadow: var(--glow); }
.pricing-badge { display: inline-block; font-family: var(--font-mono); font-size: 0.66rem; letter-spacing: 0.08em; text-transform: uppercase; color: var(--muted); margin-bottom: 1rem; }
.pricing-badge-popular { color: var(--accent-deep); }
[data-theme="dark"] .pricing-badge-popular { color: var(--accent); }
.pricing-title { font-size: 1.4rem; margin-bottom: 0.75rem; }
.pricing-price { display: flex; align-items: baseline; margin-bottom: 0.75rem; }
.price-currency { font-size: 1.4rem; font-weight: 700; color: var(--muted); font-family: var(--font-display); }
.price-amount { font-family: var(--font-display); font-size: 3.4rem; font-weight: 800; color: var(--ink); line-height: 1; letter-spacing: -0.02em; }
.price-period { font-size: 0.95rem; color: var(--muted); margin-left: 0.4rem; }
.pricing-description { color: var(--ink-soft); margin-bottom: 1.75rem; min-height: 2.6rem; font-size: 0.97rem; }
.pricing-features { list-style: none; margin-bottom: 2rem; display: grid; gap: 0.7rem; }
.pricing-features li { position: relative; padding-left: 1.85rem; font-size: 1rem; color: var(--ink-soft); }
.pricing-features li::before { content: ''; position: absolute; left: 0; top: 0.15rem; width: 1.15rem; height: 1.15rem; background: var(--accent-wash) var(--check) center / 0.8rem no-repeat; border-radius: 50%; }
.pricing-guarantee { display: flex; align-items: center; justify-content: center; gap: 1rem; margin: 2.5rem auto 0; padding: 1.5rem 2rem; background: var(--surface); border: 1px solid var(--border); border-radius: var(--radius-lg); max-width: 760px; }
.pricing-guarantee .g-icon { flex-shrink: 0; color: var(--accent); }
.pricing-guarantee .g-text { font-size: 0.97rem; color: var(--ink-soft); }
.pricing-guarantee .g-text strong { color: var(--ink); }

/* ===== Lead gen ===== */
.lead-gen-content { display: grid; grid-template-columns: 0.8fr 1.2fr; gap: 4rem; align-items: center; }
@media (max-width: 900px) { .lead-gen-content { grid-template-columns: 1fr; gap: 2.5rem; } }
.ebook-img { display: block; width: 100%; max-width: 340px; border-radius: var(--radius-lg); box-shadow: var(--shadow-lg); border: 1px solid var(--border); transform: rotate(-3deg); }
.ebook-cover { background: linear-gradient(150deg, var(--accent-deep), var(--accent)); border-radius: var(--radius-lg); padding: 2.75rem 2rem; box-shadow: var(--shadow-lg); color: var(--accent-ink); transform: rotate(-3deg); max-width: 320px; }
.ebook-tag { font-family: var(--font-mono); font-size: 0.7rem; letter-spacing: 0.12em; text-transform: uppercase; opacity: 0.85; margin-bottom: 1.25rem; }
.ebook-title { font-family: var(--font-display); font-size: 2rem; font-weight: 800; line-height: 1.05; margin-bottom: 1rem; }
.ebook-subtitle { font-size: 1rem; line-height: 1.5; opacity: 0.92; }
.lead-gen-text .lead-gen-includes { list-style: none; display: grid; gap: 0.7rem; margin-bottom: 2rem; }
.lead-gen-includes li { position: relative; padding-left: 1.85rem; font-size: 1rem; color: var(--ink-soft); }
.lead-gen-includes li::before { content: ''; position: absolute; left: 0; top: 0.15rem; width: 1.15rem; height: 1.15rem; background: var(--accent-wash) var(--check) center / 0.8rem no-repeat; border-radius: 50%; }
.lead-gen-description { font-size: 1.0625rem; color: var(--ink-soft); margin-bottom: 1.75rem; line-height: 1.65; max-width: 52ch; }
.lead-form { display: flex; gap: 0.75rem; margin-bottom: 0.9rem; max-width: 480px; }
@media (max-width: 520px) { .lead-form { flex-direction: column; } }
.lead-input { flex: 1; padding: 0.85rem 1.1rem; border: 1px solid var(--border-strong); border-radius: var(--pill); font-family: var(--font-body); font-size: 0.97rem; background: var(--surface); color: var(--ink); }
.lead-input:focus { outline: none; border-color: var(--accent); box-shadow: 0 0 0 3px var(--accent-wash); }
.lead-privacy { font-size: 0.84rem; color: var(--muted); }

/* ===== Proof ===== */
.proof-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 1.5rem; }
@media (max-width: 900px) { .proof-grid { grid-template-columns: 1fr; } }
.proof-card { background: var(--surface); border: 1px dashed var(--border-strong); border-radius: var(--radius-lg); padding: 2.2rem; }
.proof-quote { font-size: 1.02rem; line-height: 1.65; color: var(--muted); margin-bottom: 1.75rem; }
.proof-author { display: flex; align-items: center; gap: 0.9rem; }
.proof-avatar { width: 44px; height: 44px; border-radius: 50%; background: var(--surface-2); border: 1px solid var(--border); flex-shrink: 0; }
.proof-name { font-weight: 700; color: var(--ink-soft); font-size: 0.95rem; }
.proof-detail { font-size: 0.85rem; color: var(--muted); }

/* ===== FAQ ===== */
.faq-grid { display: grid; gap: 1rem; max-width: 880px; margin: 0 auto; }
.faq-item { background: var(--surface); border: 1px solid var(--border); border-radius: var(--radius); padding: 1.75rem 2rem; }
.faq-question { font-size: 1.12rem; margin-bottom: 0.6rem; color: var(--ink); }
.faq-answer { color: var(--ink-soft); line-height: 1.65; font-size: 1rem; }

/* ===== Final CTA ===== */
.final-cta { padding: clamp(5rem, 10vw, 8rem) 2rem; text-align: center; position: relative; overflow: hidden; }
.final-cta-inner { position: relative; max-width: 820px; margin: 0 auto; }
.final-cta-title { font-size: clamp(2.2rem, 5vw, 3.4rem); margin-bottom: 1.25rem; }
.final-cta-text { font-size: 1.18rem; margin: 0 auto 2.5rem; color: var(--ink-soft); max-width: 56ch; }
.final-cta-pillars { display: flex; justify-content: center; gap: 0.9rem; margin-bottom: 2.5rem; flex-wrap: wrap; }
.cta-pillar { display: flex; align-items: center; gap: 0.55rem; padding: 0.55rem 1.1rem; background: var(--surface); border: 1px solid var(--border); border-radius: var(--pill); font-size: 0.92rem; font-weight: 600; color: var(--ink); }
.cta-pillar svg { color: var(--accent); flex-shrink: 0; }
.cta-note { font-family: var(--font-mono); font-size: 0.78rem; color: var(--muted); margin-top: 1rem; }

/* ===== Footer ===== */
.footer { background: var(--bg-2); border-top: 1px solid var(--border); color: var(--muted); padding: 4.5rem 2rem 2.5rem; }
.footer-container { max-width: var(--container); margin: 0 auto; }
.footer-grid { display: grid; grid-template-columns: 2fr 1fr 1fr 1fr; gap: 3rem; margin-bottom: 3rem; }
@media (max-width: 760px) { .footer-grid { grid-template-columns: 1fr 1fr; gap: 2rem; } }
@media (max-width: 480px) { .footer-grid { grid-template-columns: 1fr; } }
.footer-brand { display: flex; align-items: center; gap: 0.6rem; margin-bottom: 1rem; }
.footer-brand span { font-family: var(--font-display); font-size: 1.3rem; font-weight: 800; color: var(--ink); }
.footer-description { color: var(--ink-soft); line-height: 1.65; max-width: 32ch; font-size: 0.95rem; }
.footer-title { color: var(--ink); font-family: var(--font-body); font-size: 0.8rem; font-weight: 700; letter-spacing: 0.06em; text-transform: uppercase; margin-bottom: 1.1rem; }
.footer-links { list-style: none; display: grid; gap: 0.65rem; }
.footer-links a { color: var(--ink-soft); text-decoration: none; font-size: 0.95rem; transition: color 0.18s var(--ease); }
.footer-links a:hover { color: var(--ink); }
.footer-bottom { padding-top: 2rem; border-top: 1px solid var(--border); }
.footer-bottom p { font-family: var(--font-mono); font-size: 0.78rem; color: var(--muted); }

/* ===== Motion ===== */
.reveal { opacity: 0; transform: translateY(18px); transition: opacity 0.6s var(--ease), transform 0.6s var(--ease); }
.reveal.in { opacity: 1; transform: none; }
@media (prefers-reduced-motion: reduce) {
    *, *::before, *::after { animation: none !important; transition: none !important; }
    .reveal { opacity: 1; transform: none; }
}

/* ===== PR H: journey pricing (homepage teaser + /pricing page) ===== */

/* Homepage additions */
.dot-sep { margin: 0 0.6rem; color: var(--muted); }
.hero-sub-actions a strong { color: var(--accent); font-weight: 600; }
.plan-transition { text-align: center; margin-top: 3rem; font-size: 1.05rem; color: var(--ink-soft); }
.plan-transition a { color: var(--accent); text-decoration: none; font-weight: 600; }
.plan-transition a:hover { text-decoration: underline; }
.lead-produce-cta { margin-top: 0.9rem; font-size: 0.95rem; }
.lead-produce-cta a { color: var(--accent); text-decoration: none; font-weight: 500; }
.lead-produce-cta a:hover { text-decoration: underline; }
.cta-secondary { margin: 1.1rem 0 0; }
.cta-secondary a { color: var(--ink-soft); text-decoration: none; font-weight: 500; border-bottom: 1px solid var(--border-strong); padding-bottom: 2px; }
.cta-secondary a:hover { color: var(--accent); border-color: var(--accent-line); }

.journey-cards { display: grid; grid-template-columns: 1fr 1fr; gap: 1.5rem; max-width: 900px; margin: 0 auto 2.5rem; }
.journey-card { background: var(--surface); border: 1px solid var(--border); border-radius: var(--radius-lg); padding: 2.2rem 2rem; display: flex; flex-direction: column; gap: 0.9rem; box-shadow: var(--shadow-sm); }
.journey-card h3 { font-family: var(--font-display); font-size: 1.7rem; font-weight: 800; }
.journey-card .btn { margin-top: auto; }
.journey-lede { color: var(--ink-soft); line-height: 1.55; }
.journey-lede strong { color: var(--ink); }
.journey-card-produce { background: var(--surface-2); border-color: var(--accent-line); box-shadow: var(--shadow); }
@media (max-width: 760px) { .journey-cards { grid-template-columns: 1fr; } }

/* /pricing — journey header + lane selector */
.pricing-hero { position: relative; overflow: hidden; padding-top: clamp(8rem, 14vw, 11rem); padding-bottom: clamp(3rem, 6vw, 5rem); }
.pricing-hero-title { font-size: clamp(2.5rem, 6vw, 4rem); }
.lane-question { margin: 1.4rem auto 0; color: var(--ink-soft); max-width: 60ch; }
.lane-question strong { color: var(--ink); }
.lane-selector { display: flex; gap: 0.9rem; justify-content: center; margin-top: 2rem; flex-wrap: wrap; }
.lane-btn { display: inline-flex; align-items: center; padding: 0.8rem 1.6rem; border-radius: var(--pill); border: 1px solid var(--border-strong); color: var(--ink); text-decoration: none; font-weight: 600; transition: all 0.2s var(--ease); background: var(--surface); }
.lane-btn:hover { border-color: var(--accent-line); color: var(--accent); transform: translateY(-1px); }
.lane-btn-produce { background: var(--accent); border-color: var(--accent); color: var(--accent-ink); }
.lane-btn-produce:hover { background: var(--accent-deep); color: var(--accent-ink); }
/* The global a:not(.btn) accent rule out-specifies single classes — pin the
   lane buttons (accent-on-accent would be invisible otherwise). */
.lane-selector a.lane-btn { color: var(--ink); }
.lane-selector a.lane-btn:hover { color: var(--accent); }
.lane-selector a.lane-btn-produce, .lane-selector a.lane-btn-produce:hover { color: var(--accent-ink); }

/* Spark price table */
.spark-table { max-width: 640px; margin: 3rem auto 0; background: var(--surface); border: 1px solid var(--border); border-radius: var(--radius-lg); padding: 1.8rem 2rem; }
.spark-table-title { font-family: var(--font-mono); font-size: 0.78rem; letter-spacing: 0.14em; text-transform: uppercase; color: var(--muted); margin-bottom: 1.1rem; }
.spark-rows { display: grid; gap: 0.35rem; }
.spark-row { display: flex; justify-content: space-between; align-items: baseline; padding: 0.55rem 0; border-bottom: 1px dashed var(--border); color: var(--ink-soft); }
.spark-row b { font-family: var(--font-mono); color: var(--accent); font-size: 1.05rem; }
.spark-row b::after { content: " Sparks"; font-size: 0.72rem; color: var(--muted); font-weight: 400; }
.spark-example { margin-top: 1.1rem; color: var(--ink-soft); font-size: 0.95rem; line-height: 1.55; }
.spark-trust { margin-top: 0.6rem; font-weight: 600; color: var(--ink); font-size: 0.95rem; }

/* Journey bridge band */
.bridge-band { padding: clamp(3.5rem, 7vw, 5.5rem) 2rem; text-align: center; background: linear-gradient(180deg, transparent, var(--accent-wash), transparent); }
.bridge-line { font-family: var(--font-display); font-weight: 800; font-size: clamp(1.5rem, 3.4vw, 2.2rem); color: var(--ink); }
.bridge-line span { color: var(--accent); }
.bridge-sub { margin-top: 0.9rem; color: var(--ink-soft); font-size: 1.08rem; max-width: 58ch; margin-left: auto; margin-right: auto; }

/* PRODUCE lane — premium treatment */
.section-produce { background: var(--bg-2); padding: clamp(5rem, 10vw, 9rem) 2rem; }
[data-theme="light"] .section-produce { background: #EAE9E2; }
.produce-steps { display: grid; grid-template-columns: repeat(4, 1fr); gap: 1rem; max-width: 1000px; margin: 0 auto 3rem; }
.p-step { background: var(--surface); border: 1px solid var(--border); border-radius: var(--radius); padding: 1.3rem 1.2rem; display: flex; flex-direction: column; gap: 0.3rem; }
.p-step-num { font-family: var(--font-mono); font-size: 0.72rem; color: var(--accent); letter-spacing: 0.14em; }
.p-step b { font-family: var(--font-display); font-size: 1.12rem; }
.p-step span:last-child { color: var(--muted); font-size: 0.88rem; line-height: 1.45; }
@media (max-width: 900px) { .produce-steps { grid-template-columns: repeat(2, 1fr); } }

.sprint-banner { display: flex; gap: 2rem; align-items: center; justify-content: space-between; background: var(--surface-2); border: 1px solid var(--accent-line); border-radius: var(--radius-lg); padding: 2rem 2.2rem; max-width: 1000px; margin: 0 auto 3rem; box-shadow: var(--shadow); flex-wrap: wrap; }
.sprint-step { font-family: var(--font-mono); font-size: 0.74rem; letter-spacing: 0.14em; text-transform: uppercase; color: var(--accent); }
.sprint-left h3 { font-family: var(--font-display); font-size: 1.6rem; font-weight: 800; margin: 0.4rem 0 0.6rem; }
.sprint-left p { color: var(--ink-soft); max-width: 56ch; line-height: 1.55; }
.sprint-right { display: flex; flex-direction: column; gap: 0.7rem; align-items: flex-start; min-width: 240px; }
.sprint-note { color: var(--muted); font-size: 0.85rem; line-height: 1.5; max-width: 30ch; }

.produce-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 1.2rem; max-width: 1200px; margin: 0 auto; }
.produce-card { background: var(--surface); border: 1px solid var(--border); border-radius: var(--radius-lg); padding: 1.8rem 1.6rem; display: flex; flex-direction: column; gap: 0.7rem; }
.produce-card h3 { font-family: var(--font-display); font-size: 1.4rem; font-weight: 800; }
.produce-card-featured { border-color: var(--accent); box-shadow: var(--glow); }
.produce-who { color: var(--muted); font-size: 0.9rem; min-height: 2.6em; }
.produce-price { display: flex; align-items: baseline; gap: 0.6rem; }
.pp-once { font-family: var(--font-display); font-size: 2rem; font-weight: 800; }
.pp-label { font-family: var(--font-mono); font-size: 0.72rem; text-transform: uppercase; letter-spacing: 0.1em; color: var(--muted); }
.produce-run { color: var(--accent); font-weight: 700; }
.produce-run span { color: var(--muted); font-weight: 400; font-size: 0.88rem; }
.produce-card .pricing-features { margin: 0.4rem 0 1rem; }
.produce-card .btn { margin-top: auto; }
.produce-microcopy { text-align: center; color: var(--muted); font-size: 0.93rem; max-width: 68ch; margin: 2.2rem auto 0; line-height: 1.6; }
@media (max-width: 1080px) { .produce-grid { grid-template-columns: repeat(2, 1fr); } }
@media (max-width: 640px) { .produce-grid { grid-template-columns: 1fr; } .sprint-banner { flex-direction: column; align-items: flex-start; } }

/* Guarantee band */
.guarantee-band { padding: clamp(3.5rem, 7vw, 5rem) 2rem; background: var(--surface); border-top: 1px solid var(--border); border-bottom: 1px solid var(--border); }
.guarantee-inner { display: flex; gap: 1.6rem; align-items: flex-start; max-width: 820px; margin: 0 auto; }
.guarantee-inner .g-icon { color: var(--accent); flex-shrink: 0; margin-top: 0.2rem; }
.guarantee-inner h3 { font-family: var(--font-display); font-size: 1.45rem; font-weight: 800; margin-bottom: 0.6rem; }
.guarantee-inner p { color: var(--ink-soft); line-height: 1.6; }
.guarantee-inner p strong { color: var(--ink); }
.g-sub { margin-top: 0.7rem; font-size: 0.95rem; }

/* Dual final CTA */
.cta-duo { display: flex; gap: 1rem; justify-content: center; flex-wrap: wrap; margin-bottom: 0.6rem; }

/* ===== PR G: /apply — PRODUCE application form ===== */
.apply-hero { padding-bottom: clamp(2rem, 4vw, 3rem); }
.apply-card { position: relative; max-width: 720px; margin: 0 auto; background: var(--surface); border: 1px solid var(--border); border-radius: var(--radius-lg); padding: clamp(1.8rem, 4vw, 2.8rem); box-shadow: var(--shadow-sm); }
.apply-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 1.1rem 1.2rem; margin-bottom: 1.1rem; }
@media (max-width: 640px) { .apply-grid { grid-template-columns: 1fr; } }
.apply-field { display: flex; flex-direction: column; gap: 0.4rem; }
.apply-field label { font-weight: 600; font-size: 0.92rem; color: var(--ink); }
.apply-field label span { color: var(--muted); font-weight: 400; }
.apply-field input, .apply-field select, .apply-field textarea { padding: 0.8rem 1rem; border: 1px solid var(--border-strong); border-radius: var(--radius); font-family: var(--font-body); font-size: 0.97rem; background: var(--surface); color: var(--ink); width: 100%; }
.apply-field input:focus, .apply-field select:focus, .apply-field textarea:focus { outline: none; border-color: var(--accent); box-shadow: 0 0 0 3px var(--accent-wash); }
.apply-field textarea { resize: vertical; min-height: 140px; line-height: 1.55; }
.apply-hp { position: absolute; left: -9999px; top: auto; width: 1px; height: 1px; overflow: hidden; }
.apply-error { color: #d92d20; font-size: 0.93rem; margin: 0.9rem 0 0; }
#produceApplyForm .btn { margin-top: 1.3rem; width: 100%; }
.apply-note { margin-top: 0.9rem; color: var(--muted); font-size: 0.9rem; line-height: 1.55; text-align: center; }
.apply-note a { color: var(--accent); font-weight: 600; text-decoration: none; }
.apply-note a:hover { text-decoration: underline; }
.apply-success { text-align: center; padding: 1rem 0; }
.apply-success .g-icon { color: var(--accent); }
.apply-success h2 { font-family: var(--font-display); font-size: 1.7rem; font-weight: 800; margin: 0.9rem 0 0.7rem; }
.apply-success p { color: var(--ink-soft); line-height: 1.6; max-width: 46ch; margin: 0 auto; }
.apply-steps { margin-top: 3rem; margin-bottom: 0; }
