/* ===== 1krok.link/hub - Partner Hub ===== */

:root {
    /* 1krok brand palette - mathematical ladder from primary #0055FF */
    --blue: #0055FF;         /* primary */
    --blue-dark: #0044CC;    /* hover / pressed */
    --blue-deep: #1E293B;    /* slate-800 - dark backgrounds (NOT brand blue) */
    --blue-light: #3385FF;   /* primary-400 - accents */
    --blue-pale: #CCE0FF;    /* primary-200 - tints */
    --blue-soft: #F0F7FF;    /* primary-50 - softest backgrounds */

    --accent: #F59E0B;
    --accent-dark: #D97706;
    --accent-light: #FCD34D;

    --bg: #FFFFFF;
    --bg-soft: #F8FAFC;
    --text: #0F172A;
    --text-muted: #475569;
    --text-light: #94A3B8;
    --border: #E2E8F0;
    --border-soft: #F1F5F9;
    --error: #DC2626;

    --r-sm: 8px;
    --r: 12px;
    --r-lg: 18px;
    --r-xl: 24px;

    --shadow-sm: 0 2px 8px rgba(15, 23, 42, 0.06);
    --shadow: 0 4px 16px rgba(15, 23, 42, 0.08);
    --shadow-lg: 0 12px 40px rgba(15, 23, 42, 0.12);

    --maxw: 1200px;
    --nav-h: 72px;
}

/* ===== Reset ===== */
*, *::before, *::after { box-sizing: border-box; }
html { scroll-behavior: smooth; -webkit-text-size-adjust: 100%; }
body {
    margin: 0;
    font-family: 'Inter', system-ui, -apple-system, sans-serif;
    font-size: 16px;
    line-height: 1.55;
    color: var(--text);
    background: var(--bg);
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
}
img, svg { max-width: 100%; display: block; }
a { color: var(--blue); text-decoration: none; }
a:hover { color: var(--blue-dark); }
button { font-family: inherit; cursor: pointer; }

/* ===== Container ===== */
.container {
    max-width: var(--maxw);
    margin: 0 auto;
    padding: 0 24px;
}

/* ===== Typography ===== */
h1, h2, h3, h4 {
    font-family: 'Unbounded', sans-serif;
    font-weight: 800;
    line-height: 1.15;
    color: var(--blue-deep);
    letter-spacing: -0.02em;
    margin: 0;
}
h1 { font-size: clamp(34px, 5vw, 56px); }
h2 { font-size: clamp(28px, 3.6vw, 42px); }
h3 { font-size: 22px; }
h4 { font-size: 18px; }
p { margin: 0 0 12px; }

.eyebrow {
    display: inline-block;
    font-size: 13px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.12em;
    color: var(--blue);
    margin-bottom: 16px;
}

.section-head {
    text-align: center;
    max-width: 760px;
    margin: 0 auto 56px;
}
.section-head h2 { margin-bottom: 16px; }
.section-head .sub {
    font-size: 17px;
    color: var(--text-muted);
    line-height: 1.6;
    margin: 0;
}

/* ===== Buttons ===== */
.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    padding: 12px 22px;
    border-radius: var(--r);
    font-weight: 600;
    font-size: 15px;
    border: 1px solid transparent;
    transition: transform 0.15s ease, box-shadow 0.2s ease, background 0.2s ease, color 0.2s ease, border-color 0.2s ease;
    text-decoration: none;
    white-space: nowrap;
    cursor: pointer;
    line-height: 1;
}
.btn-primary {
    background: var(--blue);
    color: #FFFFFF;
    box-shadow: 0 6px 18px rgba(0, 85, 255, 0.28);
}
.btn-primary:hover {
    background: var(--blue-dark);
    color: #FFFFFF;
    transform: translateY(-1px);
    box-shadow: 0 10px 24px rgba(0, 85, 255, 0.36);
}
.btn-ghost {
    background: transparent;
    color: var(--blue-deep);
    border-color: var(--border);
}
.btn-ghost:hover {
    background: var(--blue-soft);
    border-color: var(--blue-pale);
    color: var(--blue-dark);
}
.btn-accent {
    background: var(--accent);
    color: #FFFFFF;
}
.btn-accent:hover { background: var(--accent-dark); color: #FFFFFF; }
.btn-lg {
    padding: 16px 28px;
    font-size: 16px;
    border-radius: var(--r-lg);
}
.btn-full { width: 100%; }

/* ===== NAV ===== */
.nav {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    height: var(--nav-h);
    background: rgba(255, 255, 255, 0.92);
    backdrop-filter: saturate(180%) blur(12px);
    -webkit-backdrop-filter: saturate(180%) blur(12px);
    border-bottom: 1px solid var(--border-soft);
    z-index: 1000;
}
.nav-inner {
    height: 100%;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 24px;
}
.nav-brand {
    display: flex;
    align-items: center;
    gap: 12px;
    text-decoration: none;
    color: var(--blue-deep);
    font-weight: 700;
}
.nav-logo {
    width: 36px;
    height: 36px;
    border-radius: 8px;
    background: var(--blue);
    color: #FFFFFF;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    font-weight: 800;
    font-size: 15px;
    letter-spacing: -0.02em;
    box-shadow: 0 4px 12px rgba(0, 85, 255, 0.30);
}
/* IMG variant override (Day 11): when nav-logo is <img> not <span> */
img.nav-logo {
    width: auto;
    height: 32px;
    background: none;
    box-shadow: none;
    border-radius: 0;
    padding: 0;
}

.nav-brand-text { font-size: 15px; }
.nav-brand-text .nav-brand-sub {
    display: block;
    font-size: 12px;
    color: var(--text-muted);
    font-weight: 500;
    letter-spacing: 0.02em;
}
.nav-menu {
    display: flex;
    align-items: center;
    gap: 28px;
}
.nav-menu a {
    color: var(--blue-deep);
    font-weight: 500;
    font-size: 14.5px;
    transition: color 0.15s ease;
}
.nav-menu a:hover { color: var(--blue); }
.nav-actions {
    display: flex;
    align-items: center;
    gap: 14px;
}
.nav-actions .nav-link {
    color: var(--text-muted);
    font-size: 14px;
    font-weight: 500;
}
.nav-actions .nav-link:hover { color: var(--blue); }
.nav-cta {
    padding: 10px 18px;
    font-size: 14px;
}
.burger {
    display: none;
    width: 40px;
    height: 40px;
    background: transparent;
    border: 1px solid var(--border);
    border-radius: 8px;
    color: var(--blue-deep);
    align-items: center;
    justify-content: center;
    padding: 0;
}
.burger svg { width: 20px; height: 20px; }

/* ===== MOBILE MENU ===== */
.mobile-menu {
    position: fixed;
    inset: 0;
    background: #FFFFFF;
    z-index: 1001;
    transform: translateX(100%);
    transition: transform 0.3s ease;
    display: flex;
    flex-direction: column;
    padding: 24px;
    overflow-y: auto;
}
.mobile-menu.open { transform: translateX(0); }
.mobile-head {
    display: flex;
    align-items: center;
    justify-content: space-between;
    margin-bottom: 32px;
}
.mobile-close {
    width: 40px;
    height: 40px;
    border-radius: 8px;
    background: var(--bg-soft);
    border: 1px solid var(--border);
    display: inline-flex;
    align-items: center;
    justify-content: center;
    font-size: 20px;
    color: var(--blue-deep);
}
.mobile-list {
    list-style: none;
    padding: 0;
    margin: 0 0 24px;
    display: flex;
    flex-direction: column;
    gap: 4px;
}
.mobile-list a {
    display: block;
    padding: 14px 12px;
    font-size: 17px;
    font-weight: 600;
    color: var(--blue-deep);
    border-radius: var(--r);
    transition: background 0.15s ease;
}
.mobile-list a:hover { background: var(--blue-soft); color: var(--blue); }
.mobile-sep {
    height: 1px;
    background: var(--border-soft);
    margin: 12px 0;
}
.mobile-cta { margin-top: auto; padding-top: 24px; }

/* ===== HERO ===== */
.hero {
    padding: calc(var(--nav-h) + 60px) 0 80px;
    background:
        radial-gradient(ellipse at 80% 20%, rgba(0, 85, 255, 0.08) 0%, transparent 50%),
        radial-gradient(ellipse at 0% 100%, rgba(51, 133, 255, 0.06) 0%, transparent 60%),
        linear-gradient(180deg, var(--blue-soft) 0%, #FFFFFF 100%);
    overflow: hidden;
}
.hero-grid {
    display: grid;
    grid-template-columns: 1.1fr 1fr;
    gap: 60px;
    align-items: center;
}
.hero-badge {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 8px 14px;
    background: #FFFFFF;
    border: 1px solid var(--blue-pale);
    color: var(--blue);
    border-radius: 999px;
    font-size: 13px;
    font-weight: 600;
    margin-bottom: 24px;
    box-shadow: var(--shadow-sm);
}
.hero h1 {
    margin-bottom: 20px;
    color: var(--blue-deep);
}
.hero h1 .hl {
    background: linear-gradient(120deg, var(--blue) 0%, var(--blue-light) 100%);
    -webkit-background-clip: text;
    background-clip: text;
    -webkit-text-fill-color: transparent;
}
.hero-sub {
    font-size: 18px;
    line-height: 1.6;
    color: var(--text-muted);
    margin: 0 0 32px;
    max-width: 560px;
}
.hero-cta {
    display: flex;
    gap: 14px;
    flex-wrap: wrap;
    margin-bottom: 48px;
}
.hero-stats {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 20px;
    max-width: 600px;
}
.stat .stat-num {
    font-size: clamp(22px, 2.6vw, 30px);
    font-weight: 800;
    color: var(--blue);
    line-height: 1;
    margin-bottom: 6px;
    letter-spacing: -0.02em;
}
.stat .stat-label {
    font-size: 13px;
    color: var(--text-muted);
    line-height: 1.35;
}

/* ===== Hero Orbit ===== */
.orbit-wrap {
    position: relative;
    width: 100%;
    aspect-ratio: 1 / 1;
    max-width: 480px;
    margin: 0 auto;
}
.orbit {
    position: absolute;
    inset: 0;
}
.orbit::before, .orbit::after {
    content: '';
    position: absolute;
    inset: 0;
    border: 2px dashed var(--blue-pale);
    border-radius: 50%;
    animation: orbitRotate 60s linear infinite;
}
.orbit::after {
    inset: 60px;
    border-color: var(--blue-light);
    border-style: dotted;
    opacity: 0.5;
    animation-duration: 40s;
    animation-direction: reverse;
}
@keyframes orbitRotate {
    from { transform: rotate(0deg); }
    to   { transform: rotate(360deg); }
}
@media (prefers-reduced-motion: reduce) {
    .orbit::before, .orbit::after { animation: none; }
}

.orbit-center {
    position: absolute;
    top: 50%;
    left: 50%;
    width: 88px;
    height: 88px;
    transform: translate(-50%, -50%);
    background: #FFFFFF;
    border-radius: 20px;
    box-shadow: 0 12px 36px rgba(0, 85, 255, 0.25);
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 2;
    border: 1px solid var(--border-soft);
}
.orbit-center-logo {
    width: 56px;
    height: 56px;
    border-radius: 12px;
    background: var(--blue);
    color: #FFFFFF;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 800;
    font-size: 22px;
    letter-spacing: -0.04em;
}

.orbit-node {
    position: absolute;
    background: #FFFFFF;
    border-radius: 14px;
    padding: 10px 14px;
    box-shadow: var(--shadow);
    display: flex;
    align-items: center;
    gap: 8px;
    font-size: 13.5px;
    font-weight: 600;
    color: var(--blue-deep);
    border: 1px solid var(--border-soft);
    white-space: nowrap;
    z-index: 1;
}
.orbit-node .em { font-size: 18px; line-height: 1; }
.orbit-n1 { top: -6%;  left: 50%; transform: translateX(-50%); }
.orbit-n2 { top: 18%;  right: -8%; }
.orbit-n3 { bottom: 18%; right: -8%; }
.orbit-n4 { bottom: -6%; left: 50%; transform: translateX(-50%); }
.orbit-n5 { bottom: 18%; left: -8%; }
.orbit-n6 { top: 18%;  left: -8%; }

/* ===== SECTION ===== */
.section {
    padding: 100px 0;
}
.section-tight { padding: 70px 0; }
.section-soft { background: var(--bg-soft); }
.section-blue {
    background:
        radial-gradient(ellipse at 30% 0%, rgba(0, 85, 255, 0.05) 0%, transparent 50%),
        var(--blue-soft);
}

/* ===== WHY (4 cards) ===== */
.why-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 24px;
}
.why-card {
    background: #FFFFFF;
    border: 1px solid var(--border-soft);
    border-radius: var(--r-lg);
    padding: 28px 24px;
    transition: transform 0.2s ease, box-shadow 0.2s ease, border-color 0.2s ease;
}
.why-card:hover {
    transform: translateY(-4px);
    box-shadow: var(--shadow-lg);
    border-color: var(--blue-pale);
}
.why-card .icon {
    width: 52px;
    height: 52px;
    border-radius: var(--r);
    background: var(--blue-soft);
    display: inline-flex;
    align-items: center;
    justify-content: center;
    font-size: 26px;
    margin-bottom: 20px;
}
.why-card h3 {
    font-size: 18px;
    margin-bottom: 10px;
}
.why-card p {
    font-size: 14.5px;
    color: var(--text-muted);
    line-height: 1.55;
    margin: 0;
}

/* ===== HOW IT WORKS (4 formats) ===== */
.formats {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 24px;
}
.format {
    background: #FFFFFF;
    border-radius: var(--r-xl);
    padding: 36px 32px;
    border: 1px solid var(--border-soft);
    position: relative;
    transition: transform 0.2s ease, box-shadow 0.2s ease;
    overflow: hidden;
}
.format::after {
    content: '';
    position: absolute;
    top: 0; left: 0; right: 0;
    height: 4px;
    background: linear-gradient(90deg, var(--blue) 0%, var(--blue-light) 100%);
    opacity: 0;
    transition: opacity 0.25s ease;
}
.format:hover {
    transform: translateY(-4px);
    box-shadow: var(--shadow-lg);
}
.format:hover::after { opacity: 1; }
.format-num {
    font-size: 3rem;
    font-weight: 800;
    color: var(--blue);
    line-height: 1;
    letter-spacing: -0.04em;
    margin-bottom: 16px;
    opacity: 0.85;
}
.format h3 {
    font-size: 22px;
    margin-bottom: 14px;
}
.format p {
    color: var(--text-muted);
    line-height: 1.6;
    margin: 0 0 20px;
    font-size: 15.5px;
}
.tags {
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
}
.tag {
    display: inline-flex;
    align-items: center;
    padding: 6px 12px;
    background: var(--blue-soft);
    color: var(--blue);
    font-size: 12.5px;
    font-weight: 600;
    border-radius: 999px;
}

/* ===== NICHES (6 cards) ===== */
.niches {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 22px;
}
.niche {
    background: #FFFFFF;
    border-radius: var(--r-lg);
    padding: 28px 24px;
    border: 1px solid var(--border-soft);
    transition: transform 0.2s ease, box-shadow 0.2s ease, border-color 0.2s ease;
}
.niche:hover {
    transform: translateY(-3px);
    border-color: var(--blue-pale);
    box-shadow: var(--shadow);
}
.niche-em {
    font-size: 32px;
    line-height: 1;
    margin-bottom: 14px;
}
.niche h3 {
    font-size: 17px;
    margin-bottom: 10px;
}
.niche p {
    color: var(--text-muted);
    font-size: 14px;
    line-height: 1.55;
    margin: 0 0 16px;
}
.niche-badge {
    display: inline-block;
    padding: 5px 10px;
    background: var(--blue-soft);
    color: var(--blue-dark);
    border-radius: 8px;
    font-size: 12px;
    font-weight: 600;
}

/* ===== MARKET TEASER (coming soon) ===== */
.market-preview {
    position: relative;
    margin-top: 8px;
}
.market-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 22px;
    filter: blur(3px);
    opacity: 0.5;
    user-select: none;
    pointer-events: none;
}
.market-card {
    background: #FFFFFF;
    border: 1px solid var(--border-soft);
    border-radius: var(--r-lg);
    padding: 26px 20px;
    text-align: center;
}
.market-card .avatar {
    width: 64px;
    height: 64px;
    border-radius: 50%;
    background: var(--blue-soft);
    display: inline-flex;
    align-items: center;
    justify-content: center;
    font-size: 30px;
    margin: 0 auto 16px;
}
.market-card .ph-line {
    height: 11px;
    border-radius: 6px;
    background: var(--border);
    margin: 9px auto;
}
.market-card .ph-line.w70 { width: 72%; }
.market-card .ph-line.w50 { width: 48%; }
.market-card .ph-tag {
    display: inline-block;
    margin-top: 14px;
    padding: 5px 12px;
    background: var(--blue-soft);
    color: var(--blue-dark);
    border-radius: 8px;
    font-size: 12px;
    font-weight: 600;
}
.market-overlay {
    position: absolute;
    inset: 0;
    display: flex;
    align-items: center;
    justify-content: center;
}
.market-overlay .lock-badge {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 13px 24px;
    background: rgba(255, 255, 255, 0.94);
    border: 1px solid var(--blue-pale);
    border-radius: 999px;
    font-weight: 700;
    font-size: 15px;
    color: var(--blue-deep);
    box-shadow: var(--shadow-lg);
}
.market-hook {
    text-align: center;
    margin-top: 44px;
}
.market-hook p {
    font-size: 17px;
    color: var(--text);
    font-weight: 600;
    margin: 0 0 20px;
}
@media (max-width: 900px) {
    .market-grid { grid-template-columns: repeat(2, 1fr); }
}
@media (max-width: 560px) {
    .market-grid { gap: 14px; }
    .market-card { padding: 20px 14px; }
}

/* ===== PROCESS (3 steps) ===== */
.process {
    display: grid;
    grid-template-columns: 1fr auto 1fr auto 1fr;
    gap: 20px;
    align-items: stretch;
    max-width: 1080px;
    margin: 0 auto;
}
.step {
    background: #FFFFFF;
    border-radius: var(--r-lg);
    padding: 32px 28px;
    text-align: center;
    border: 1px solid var(--border-soft);
    box-shadow: var(--shadow-sm);
}
.step-num {
    width: 44px;
    height: 44px;
    border-radius: 50%;
    background: var(--blue);
    color: #FFFFFF;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    font-weight: 800;
    font-size: 17px;
    margin: 0 auto 18px;
    box-shadow: 0 6px 18px rgba(0, 85, 255, 0.32);
}
.step h3 {
    font-size: 19px;
    margin-bottom: 10px;
}
.step p {
    color: var(--text-muted);
    font-size: 14.5px;
    line-height: 1.55;
    margin: 0;
}
.process-arrow {
    align-self: center;
    color: var(--blue-light);
    font-size: 28px;
    font-weight: 600;
    user-select: none;
}
.process-cta {
    margin: 40px auto 0;
    max-width: 800px;
    background: linear-gradient(135deg, var(--blue) 0%, var(--blue-dark) 100%);
    color: #FFFFFF;
    border-radius: var(--r-xl);
    padding: 28px 32px;
    text-align: center;
    box-shadow: 0 16px 40px rgba(0, 85, 255, 0.22);
}
.process-cta p {
    margin: 0;
    font-size: 17px;
    line-height: 1.55;
}

/* ===== FAQ ===== */
.faq-wrap {
    max-width: 820px;
    margin: 0 auto;
}
.faq-item {
    background: #FFFFFF;
    border-radius: var(--r);
    border: 1px solid var(--border);
    margin-bottom: 12px;
    overflow: hidden;
    transition: border-color 0.2s ease, box-shadow 0.2s ease;
}
.faq-item[open] {
    border-color: var(--blue);
    box-shadow: var(--shadow-sm);
}
.faq-item summary {
    cursor: pointer;
    padding: 20px 24px;
    list-style: none;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 16px;
    font-weight: 600;
    font-size: 16px;
    color: var(--blue-deep);
}
.faq-item summary::-webkit-details-marker { display: none; }
.faq-item summary::after {
    content: '+';
    font-size: 26px;
    font-weight: 400;
    color: var(--blue);
    line-height: 1;
    transition: transform 0.2s ease;
    flex-shrink: 0;
}
.faq-item[open] summary::after {
    content: '−';
    color: var(--blue);
}
.faq-body {
    padding: 0 24px 22px;
    color: var(--text-muted);
    line-height: 1.6;
    font-size: 15px;
}

/* ===== CTA + FORM ===== */
.cta-section {
    background: linear-gradient(135deg, var(--blue-deep) 0%, #0F172A 100%);
    color: #FFFFFF;
    padding: 90px 0;
    position: relative;
    overflow: hidden;
}
.cta-section::before {
    content: '';
    position: absolute;
    top: -200px; right: -200px;
    width: 600px; height: 600px;
    background: radial-gradient(circle, rgba(0, 85, 255, 0.20) 0%, transparent 70%);
    pointer-events: none;
}
.cta-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 56px;
    align-items: start;
    position: relative;
}
.cta-left .eyebrow { color: var(--accent-light); }
.cta-left h2 {
    color: #FFFFFF;
    margin-bottom: 18px;
}
.cta-left p {
    color: rgba(255, 255, 255, 0.78);
    font-size: 16.5px;
    line-height: 1.6;
    margin-bottom: 24px;
}
.cta-list {
    list-style: none;
    padding: 0;
    margin: 0 0 32px;
    display: flex;
    flex-direction: column;
    gap: 10px;
}
.cta-list li {
    display: flex;
    align-items: flex-start;
    gap: 12px;
    color: rgba(255, 255, 255, 0.88);
    font-size: 15px;
    line-height: 1.5;
}
.cta-list li::before {
    content: '✓';
    color: var(--accent-light);
    font-weight: 700;
    flex-shrink: 0;
    margin-top: 1px;
}
.cta-direct {
    border-top: 1px solid rgba(255, 255, 255, 0.10);
    padding-top: 24px;
}
.cta-direct-label {
    color: rgba(255, 255, 255, 0.6);
    font-size: 13px;
    margin: 0 0 12px;
    text-transform: uppercase;
    letter-spacing: 0.08em;
    font-weight: 600;
}
.cta-direct-btns {
    display: flex;
    gap: 10px;
    flex-wrap: wrap;
}
.cta-direct-btn {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 10px 16px;
    background: rgba(255, 255, 255, 0.08);
    color: #FFFFFF;
    border-radius: var(--r);
    font-size: 14px;
    font-weight: 500;
    border: 1px solid rgba(255, 255, 255, 0.12);
    transition: background 0.2s ease, border-color 0.2s ease;
}
.cta-direct-btn:hover {
    background: rgba(255, 255, 255, 0.14);
    border-color: rgba(255, 255, 255, 0.20);
    color: #FFFFFF;
}

/* ===== FORM CARD ===== */
.form-card {
    background: #FFFFFF;
    border-radius: var(--r-xl);
    padding: 36px 32px;
    color: var(--text);
    box-shadow: 0 24px 60px rgba(0, 0, 0, 0.30);
}
.form-card h3 {
    font-size: 22px;
    margin-bottom: 24px;
    color: var(--blue-deep);
}
.form-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 14px;
}
.field {
    margin-bottom: 14px;
}
.field label {
    display: block;
    font-size: 13px;
    font-weight: 600;
    color: var(--blue-deep);
    margin-bottom: 6px;
}
.field input,
.field select,
.field textarea {
    width: 100%;
    padding: 12px 14px;
    border: 1px solid var(--border);
    border-radius: var(--r);
    font-family: inherit;
    font-size: 15px;
    color: var(--text);
    background: #FFFFFF;
    transition: border-color 0.15s ease, box-shadow 0.15s ease;
    -webkit-appearance: none;
       -moz-appearance: none;
            appearance: none;
}
.field select {
    background-image: url("data:image/svg+xml;charset=UTF-8,<svg xmlns='http://www.w3.org/2000/svg' width='12' height='8' viewBox='0 0 12 8'><path fill='%23475569' d='M6 8L0 0h12L6 8z'/></svg>");
    background-repeat: no-repeat;
    background-position: right 14px center;
    padding-right: 36px;
}
.field input:focus,
.field select:focus,
.field textarea:focus {
    outline: none;
    border-color: var(--blue);
    box-shadow: 0 0 0 4px rgba(0, 85, 255, 0.12);
}
.field textarea {
    resize: vertical;
    min-height: 90px;
    line-height: 1.5;
}
.field-note,
.form-note {
    font-size: 12.5px;
    color: var(--text-light);
    line-height: 1.5;
    margin: 12px 0 0;
}
.hp {
    position: absolute !important;
    left: -9999px !important;
    width: 1px !important;
    height: 1px !important;
    overflow: hidden !important;
}
.form-error {
    background: #FEF2F2;
    color: var(--error);
    border: 1px solid #FECACA;
    border-radius: var(--r);
    padding: 10px 14px;
    font-size: 14px;
    margin-bottom: 14px;
    display: none;
}
.form-error.active { display: block; }

/* ===== FOOTER ===== */
.footer {
    background: #0F172A;
    color: rgba(255, 255, 255, 0.65);
    padding: 64px 0 28px;
    font-size: 14px;
}
.footer-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 40px;
    margin-bottom: 48px;
}
.footer-col h4 {
    color: #FFFFFF;
    font-size: 14px;
    font-weight: 700;
    margin: 0 0 16px;
    text-transform: uppercase;
    letter-spacing: 0.08em;
}
.footer-col ul {
    list-style: none;
    padding: 0;
    margin: 0;
    display: flex;
    flex-direction: column;
    gap: 10px;
}
.footer-col a {
    color: rgba(255, 255, 255, 0.65);
    transition: color 0.15s ease;
}
.footer-col a:hover { color: #FFFFFF; }
.footer-brand {
    color: #FFFFFF;
    font-weight: 700;
    display: inline-flex;
    align-items: center;
    gap: 10px;
    margin-bottom: 14px;
    text-decoration: none;
}
.footer-brand .nav-logo {
    width: 32px;
    height: 32px;
    font-size: 13px;
    border-radius: 7px;
}
.footer-desc {
    line-height: 1.55;
    margin: 0;
    color: rgba(255, 255, 255, 0.6);
}
.footer-bottom {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding-top: 24px;
    border-top: 1px solid rgba(255, 255, 255, 0.08);
    font-size: 13px;
    color: rgba(255, 255, 255, 0.5);
    flex-wrap: wrap;
    gap: 12px;
}
.footer-bottom a {
    color: rgba(255, 255, 255, 0.7);
    text-decoration: none;
}
.footer-bottom a:hover { color: #FFFFFF; }

/* ===== REVEAL ===== */
.reveal {
    opacity: 0;
    transform: translateY(30px);
    transition: opacity 0.6s ease, transform 0.6s ease;
}
.reveal.visible {
    opacity: 1;
    transform: translateY(0);
}
@media (prefers-reduced-motion: reduce) {
    .reveal { opacity: 1; transform: none; transition: none; }
}

/* ===== RESPONSIVE ===== */
@media (max-width: 1024px) {
    .nav-menu, .nav-actions .nav-link { display: none; }
    .burger { display: inline-flex; }
    .nav-cta { display: none; }

    .hero-grid {
        grid-template-columns: 1fr;
        gap: 48px;
    }
    .orbit-wrap { max-width: 380px; }
    .hero-stats {
        grid-template-columns: repeat(2, 1fr);
        gap: 18px;
    }

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

    .process {
        grid-template-columns: 1fr;
        max-width: 480px;
    }
    .process-arrow { display: none; }   /* mobile: numbered 1/2/3 badges convey sequence; arrows overlapped titles */

    .cta-grid {
        grid-template-columns: 1fr;
        gap: 36px;
    }

    .footer-grid {
        grid-template-columns: 1fr 1fr;
        gap: 32px;
    }
    .footer-col:first-child {
        grid-column: 1 / -1;
        margin-bottom: 8px;
    }
}

@media (max-width: 768px) {
    .container { padding: 0 18px; }
    .section { padding: 70px 0; }
    .section-tight { padding: 56px 0; }
    .hero { padding: calc(var(--nav-h) + 40px) 0 60px; }

    .why-grid { grid-template-columns: 1fr; gap: 18px; }
    .niches { grid-template-columns: 1fr; }
    .form-row { grid-template-columns: 1fr; }

    .footer-grid { grid-template-columns: 1fr; }
    .footer-bottom {
        flex-direction: column;
        text-align: center;
    }

    .form-card { padding: 28px 22px; }

    .hero-cta { gap: 10px; }
    .hero-cta .btn { flex: 1; min-width: 0; }
}

@media (max-width: 480px) {
    .hero h1 { font-size: clamp(28px, 7vw, 36px); }
    .hero-sub { font-size: 16px; }
    .orbit-wrap { max-width: 320px; }
    .orbit-node {
        font-size: 12px;
        padding: 8px 11px;
    }
    .orbit-node .em { font-size: 16px; }
    .orbit-center { width: 72px; height: 72px; border-radius: 16px; }
    .orbit-center-logo { width: 48px; height: 48px; font-size: 18px; }

    .hero-stats { gap: 14px; }
    .format { padding: 28px 22px; }
    .format-num { font-size: 2.2rem; }
    .niche { padding: 22px 18px; }
    .step { padding: 24px 20px; }
    .process-cta { padding: 22px 20px; }
    .process-cta p { font-size: 15px; }
    .cta-section { padding: 64px 0; }
}
