/* ───── BOOT ───── */

.boot {
    position: absolute;
    inset: 0;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 28px;
    padding: 32px;
    background: var(--bg-base);
}

.boot-mark {
    width: 56px;
    height: 56px;
    border-radius: 16px;
    background: var(--ink-strong);
    color: var(--bg-base);
    display: flex;
    align-items: center;
    justify-content: center;
    font-family: var(--font-display);
    font-weight: 600;
    font-size: 28px;
    letter-spacing: -0.03em;
    box-shadow: 0 12px 28px rgba(26, 23, 20, 0.12);
    animation: boot-breath 2.4s ease-in-out infinite;
}

.boot-brand {
    font-family: var(--font-display);
    font-weight: 400;
    font-size: clamp(24px, 4vw, 32px);
    letter-spacing: -0.015em;
    color: var(--ink-strong);
}

.boot-bar {
    width: min(220px, 56vw);
    height: 2px;
    background: var(--line);
    border-radius: 2px;
    overflow: hidden;
    position: relative;
}

.boot-bar-fill {
    position: absolute;
    inset: 0 100% 0 0;
    background: var(--ink-strong);
    transition: inset 0.35s cubic-bezier(0.2, 0.6, 0.2, 1);
}

.boot-status {
    font-family: var(--font-mono);
    font-size: 10px;
    letter-spacing: 0.28em;
    color: var(--ink-dim);
    text-transform: uppercase;
    min-height: 12px;
}

@keyframes boot-breath {
    0%, 100% { transform: scale(1); box-shadow: 0 12px 28px rgba(26, 23, 20, 0.12); }
    50%      { transform: scale(1.06); box-shadow: 0 18px 36px rgba(26, 23, 20, 0.18); }
}

/* ───── LANDING LAYOUT ───── */

.landing {
    display: flex;
    flex-direction: column;
}

.landing-section {
    padding: clamp(72px, 10vw, 140px) var(--page-pad);
    position: relative;
}

.landing-inner {
    max-width: var(--max-w);
    margin: 0 auto;
    width: 100%;
}

/* ───── NAV ───── */

.nav {
    position: sticky;
    top: 0;
    z-index: 40;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 20px;
    padding: 20px var(--page-pad);
    backdrop-filter: blur(16px);
    background: rgba(251, 248, 243, 0.72);
    border-bottom: 1px solid transparent;
    transition: border-color var(--t-med), background var(--t-med);
}

.nav.scrolled {
    border-bottom-color: var(--line);
    background: rgba(251, 248, 243, 0.92);
}

.nav-brand {
    display: flex;
    align-items: center;
    gap: 12px;
    font-family: var(--font-display);
    font-weight: 500;
    font-size: 18px;
    letter-spacing: -0.01em;
    color: var(--ink-strong);
}

.nav-brand-mark {
    width: 28px;
    height: 28px;
    border-radius: 8px;
    background: var(--ink-strong);
    color: var(--bg-base);
    display: flex;
    align-items: center;
    justify-content: center;
    font-family: var(--font-display);
    font-weight: 600;
    font-size: 15px;
    letter-spacing: -0.04em;
}

.nav-links {
    display: flex;
    gap: 28px;
    align-items: center;
}

.nav-links a {
    font-size: 14px;
    color: var(--ink-mid);
    font-weight: 450;
    transition: color var(--t-fast);
}

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

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

@media (max-width: 760px) {
    .nav-links { display: none; }
}

/* ───── HERO ───── */

.hero {
    padding-top: clamp(48px, 6vw, 80px);
    padding-bottom: clamp(72px, 10vw, 120px);
}

.hero-content {
    display: grid;
    grid-template-columns: 1.15fr 0.85fr;
    gap: clamp(24px, 5vw, 72px);
    align-items: center;
}

@media (max-width: 960px) {
    .hero-content { grid-template-columns: 1fr; }
}

.hero-eyebrow {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    padding: 7px 14px;
    border: 1px solid var(--line-strong);
    border-radius: 999px;
    font-family: var(--font-mono);
    font-size: 11px;
    font-weight: 500;
    letter-spacing: 0.22em;
    text-transform: uppercase;
    color: var(--ink-mid);
    background: var(--bg-paper);
}

.hero-eyebrow::before {
    content: '';
    width: 6px;
    height: 6px;
    border-radius: 50%;
    background: var(--accent);
    box-shadow: 0 0 0 4px rgba(255, 107, 90, 0.18);
    animation: pulse-dot 1.8s ease-in-out infinite;
}

.hero-title {
    font-family: var(--font-display);
    font-weight: 400;
    font-size: clamp(34px, 7vw, 82px);
    line-height: 1.02;
    letter-spacing: -0.025em;
    color: var(--ink-strong);
    margin-top: 22px;
    font-variation-settings: "opsz" 144, "SOFT" 30;
    overflow-wrap: break-word;
    hyphens: auto;
}

.hero-title em {
    font-style: italic;
    color: var(--accent);
    font-variation-settings: "opsz" 144, "SOFT" 100;
}

.hero-sub {
    margin-top: 22px;
    font-size: clamp(16px, 1.4vw, 18px);
    line-height: 1.6;
    color: var(--ink-mid);
    max-width: 48ch;
}

.hero-ctas {
    display: flex;
    gap: 12px;
    flex-wrap: wrap;
    margin-top: 32px;
}

.hero-visual {
    position: relative;
    aspect-ratio: 3 / 4;
    border-radius: var(--r-xl);
    overflow: hidden;
    background: var(--bg-soft);
    box-shadow: 0 40px 80px -20px rgba(26, 23, 20, 0.2);
}

.hero-visual-frame {
    position: absolute;
    inset: 0;
    display: flex;
    align-items: flex-end;
    padding: 28px;
    background:
        linear-gradient(180deg, transparent 45%, rgba(26, 23, 20, 0.55) 100%),
        radial-gradient(circle at 30% 20%, #ffe0c8 0%, transparent 60%),
        radial-gradient(circle at 70% 90%, #ffc1b0 0%, transparent 60%),
        linear-gradient(135deg, #fff3e6 0%, #f8d9c6 100%);
}

.hero-visual-silhouette {
    position: absolute;
    inset: 0;
    display: flex;
    align-items: flex-end;
    justify-content: center;
    pointer-events: none;
}

.hero-visual-silhouette svg {
    height: 78%;
    width: auto;
    filter: drop-shadow(0 20px 40px rgba(26, 23, 20, 0.3));
}

.hero-visual-caption {
    position: absolute;
    left: 20px;
    bottom: 20px;
    right: 20px;
    z-index: 3;
    color: #fff;
    font-family: var(--font-mono);
    font-size: 10px;
    letter-spacing: 0.24em;
    text-transform: uppercase;
    opacity: 0.9;
    pointer-events: none;
}

.hero-visual-badge {
    position: absolute;
    top: 20px;
    left: 20px;
    padding: 6px 12px;
    border-radius: 999px;
    background: rgba(255, 255, 255, 0.92);
    color: var(--ink-strong);
    font-family: var(--font-mono);
    font-size: 10px;
    letter-spacing: 0.2em;
    text-transform: uppercase;
    font-weight: 500;
    z-index: 3;
    display: inline-flex;
    align-items: center;
    gap: 8px;
}

.hero-visual-badge::before {
    content: '';
    width: 6px;
    height: 6px;
    border-radius: 50%;
    background: var(--ok);
    box-shadow: 0 0 8px rgba(74, 157, 106, 0.6);
}

.hero-visual-scan {
    position: absolute;
    inset: 12% 10% auto 10%;
    height: 2px;
    background: linear-gradient(90deg, transparent, rgba(255,255,255,0.7), transparent);
    animation: scan-line 3.2s ease-in-out infinite;
    z-index: 2;
    pointer-events: none;
}

@keyframes scan-line {
    0%, 100% { transform: translateY(0); opacity: 0.2; }
    50%      { transform: translateY(240%); opacity: 0.9; }
}

@keyframes pulse-dot {
    0%, 100% { box-shadow: 0 0 0 4px rgba(255, 107, 90, 0.18); }
    50%      { box-shadow: 0 0 0 8px rgba(255, 107, 90, 0); }
}

/* ───── LOGO STRIP ───── */

.logos {
    padding-top: clamp(40px, 5vw, 56px);
    padding-bottom: clamp(40px, 5vw, 56px);
    background: var(--bg-paper);
    border-top: 1px solid var(--line);
    border-bottom: 1px solid var(--line);
}

.logos-heading {
    text-align: center;
    margin-bottom: 30px;
}

.logos-heading .kicker {
    display: inline-block;
    margin-bottom: 8px;
}

.logos-heading-title {
    font-family: var(--font-display);
    font-weight: 400;
    font-size: clamp(18px, 2vw, 22px);
    color: var(--ink-mid);
    letter-spacing: -0.01em;
}

.logos-grid {
    display: grid;
    grid-template-columns: repeat(6, 1fr);
    gap: 8px 24px;
    align-items: center;
    justify-items: center;
}

@media (max-width: 960px) { .logos-grid { grid-template-columns: repeat(4, 1fr); } }
@media (max-width: 560px) { .logos-grid { grid-template-columns: repeat(3, 1fr); } }

.logo-tile {
    width: 100%;
    min-height: 60px;
    padding: 16px 6px;
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0.62;
    color: var(--ink-strong);
    transition: opacity var(--t-med), transform var(--t-med), color var(--t-med);
    text-align: center;
    line-height: 1;
    user-select: none;
}

.logo-tile:hover {
    opacity: 1;
    transform: translateY(-2px);
}

.logo-wordmark {
    display: inline-block;
    font-size: clamp(13px, 1.2vw, 16px);
    text-transform: uppercase;
    white-space: nowrap;
    color: inherit;
}

.logo-serif-classic,
.logo-serif-italic {
    font-family: var(--font-display);
    font-size: clamp(15px, 1.4vw, 19px);
}

.logo-serif-italic { font-style: italic; }

.logo-sans-tight,
.logo-sans-wide {
    font-family: var(--font-body);
}

@media (max-width: 560px) {
    .logo-wordmark { font-size: 12px; }
    .logo-serif-classic,
    .logo-serif-italic { font-size: 14px; }
}

/* ───── SECTION HEADINGS ───── */

.section-head {
    display: flex;
    flex-direction: column;
    gap: 14px;
    max-width: 720px;
    margin-bottom: clamp(40px, 5vw, 64px);
}

.section-title {
    font-family: var(--font-display);
    font-weight: 400;
    font-size: clamp(28px, 5vw, 54px);
    line-height: 1.08;
    letter-spacing: -0.02em;
    color: var(--ink-strong);
    font-variation-settings: "opsz" 144, "SOFT" 50;
    overflow-wrap: break-word;
    hyphens: auto;
}

.section-title em {
    font-style: italic;
    color: var(--accent);
    font-variation-settings: "opsz" 144, "SOFT" 100;
}

.section-lede {
    font-size: clamp(16px, 1.3vw, 18px);
    line-height: 1.6;
    color: var(--ink-mid);
    max-width: 58ch;
}

/* ───── HOW IT WORKS ───── */

.how {
    background: var(--bg-base);
}

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

@media (max-width: 980px) { .how-steps { grid-template-columns: repeat(2, 1fr); } }
@media (max-width: 560px) { .how-steps { grid-template-columns: 1fr; } }

.how-step {
    background: var(--bg-paper);
    border-radius: var(--r-lg);
    padding: 28px 24px 32px;
    border: 1px solid var(--line);
    position: relative;
    transition: transform var(--t-med), box-shadow var(--t-med), border-color var(--t-med);
}

.how-step:hover {
    transform: translateY(-4px);
    box-shadow: 0 30px 60px -24px rgba(26, 23, 20, 0.16);
    border-color: var(--line-strong);
}

.how-step-num {
    font-family: var(--font-display);
    font-weight: 400;
    font-style: italic;
    font-size: 40px;
    line-height: 1;
    color: var(--accent);
    letter-spacing: -0.04em;
    margin-bottom: 22px;
    font-variation-settings: "opsz" 144;
}

.how-step-title {
    font-family: var(--font-display);
    font-weight: 500;
    font-size: 22px;
    letter-spacing: -0.015em;
    color: var(--ink-strong);
    margin-bottom: 8px;
}

.how-step-body {
    font-size: 14.5px;
    line-height: 1.58;
    color: var(--ink-mid);
}

/* ───── THEME SHOWCASE ───── */

.themes {
    background: var(--bg-soft);
}

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

@media (max-width: 1040px) { .themes-grid { grid-template-columns: repeat(3, 1fr); } }
@media (max-width: 780px)  { .themes-grid { grid-template-columns: repeat(2, 1fr); } }

.theme-card {
    aspect-ratio: 3 / 4;
    border-radius: var(--r-lg);
    overflow: hidden;
    position: relative;
    display: flex;
    align-items: flex-end;
    padding: 18px;
    color: #fff;
    cursor: pointer;
    transition: transform var(--t-med), box-shadow var(--t-med);
    background: var(--ink-strong);
}

.theme-card:hover {
    transform: translateY(-4px);
    box-shadow: 0 30px 60px -20px rgba(26, 23, 20, 0.35);
}

.theme-card-bg {
    position: absolute;
    inset: 0;
    z-index: 0;
    transition: transform var(--t-slow);
}

.theme-card:hover .theme-card-bg {
    transform: scale(1.05);
}

.theme-card-overlay {
    position: absolute;
    inset: 0;
    z-index: 1;
    background: linear-gradient(180deg, rgba(0,0,0,0) 40%, rgba(0,0,0,0.6) 100%);
}

.theme-card-label {
    position: relative;
    z-index: 2;
    display: flex;
    flex-direction: column;
    gap: 4px;
}

.theme-card-kicker {
    font-family: var(--font-mono);
    font-size: 10px;
    letter-spacing: 0.24em;
    text-transform: uppercase;
    opacity: 0.85;
}

.theme-card-name {
    font-family: var(--font-display);
    font-weight: 500;
    font-size: 22px;
    letter-spacing: -0.015em;
}

/* Theme-specific gradients (pure CSS — no external images) */
.bg-tropical  { background: linear-gradient(140deg, #ffdcb3 0%, #ff9b7a 50%, #66b6c7 100%); }
.bg-cyber     { background: linear-gradient(140deg, #2a0f3d 0%, #ff2bd6 45%, #6cc6ff 100%); }
.bg-runway    { background: linear-gradient(140deg, #ffffff 0%, #e8dfcf 50%, #b89968 100%); }
.bg-studio    { background: linear-gradient(140deg, #f8f5ef 0%, #d9cdb8 100%); }
.bg-christmas { background: linear-gradient(140deg, #0b1a2b 0%, #6b0f13 60%, #ffb45a 100%); }
.bg-summer    { background: linear-gradient(140deg, #ffe4a8 0%, #ff9a6c 60%, #d94b6a 100%); }
.bg-alpine    { background: linear-gradient(140deg, #f0f6ff 0%, #9cc5ec 60%, #253a5a 100%); }
.bg-gallery   { background: linear-gradient(140deg, #f5f1ea 0%, #cbbfa8 60%, #6d5f4e 100%); }

.bg-studio .theme-card-label,
.bg-runway .theme-card-label,
.bg-alpine .theme-card-label { color: var(--ink-strong); }

/* ───── NUMBERS / STATS ───── */

.stats {
    background: var(--bg-base);
}

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

@media (max-width: 860px) { .stats-grid { grid-template-columns: 1fr; } }

.stat {
    padding: 32px 28px;
    border: 1px solid var(--line);
    border-radius: var(--r-lg);
    background: var(--bg-paper);
    display: flex;
    flex-direction: column;
    gap: 6px;
}

.stat-num {
    font-family: var(--font-display);
    font-weight: 300;
    font-size: clamp(48px, 6vw, 72px);
    line-height: 1;
    letter-spacing: -0.04em;
    color: var(--ink-strong);
    font-variation-settings: "opsz" 144;
}

.stat-num em {
    font-style: italic;
    color: var(--accent);
    font-weight: 400;
}

.stat-label {
    font-family: var(--font-mono);
    font-size: 11px;
    letter-spacing: 0.22em;
    text-transform: uppercase;
    color: var(--ink-dim);
    margin-top: 4px;
}

.stat-body {
    font-size: 14.5px;
    color: var(--ink-mid);
    line-height: 1.6;
    margin-top: 10px;
}

/* ───── CTA ───── */

.cta {
    background: var(--ink-strong);
    color: var(--bg-base);
    border-radius: var(--r-xl);
    padding: clamp(40px, 7vw, 88px) clamp(24px, 6vw, 72px);
    position: relative;
    overflow: hidden;
    max-width: var(--max-w);
    margin: 0 auto clamp(56px, 8vw, 96px);
    width: calc(100% - var(--page-pad) * 2);
}

@media (max-width: 560px) {
    .cta { border-radius: var(--r-lg); }
}

.cta::before {
    content: '';
    position: absolute;
    top: -40%;
    right: -10%;
    width: 70%;
    height: 180%;
    background: radial-gradient(ellipse, rgba(255, 107, 90, 0.35), transparent 60%);
    pointer-events: none;
}

.cta-inner {
    position: relative;
    display: grid;
    grid-template-columns: 1.3fr 1fr;
    gap: 32px;
    align-items: center;
}

@media (max-width: 860px) { .cta-inner { grid-template-columns: 1fr; } }

.cta .kicker { color: rgba(251, 248, 243, 0.55); }

.cta-title {
    font-family: var(--font-display);
    font-weight: 300;
    font-size: clamp(26px, 4vw, 48px);
    line-height: 1.1;
    letter-spacing: -0.02em;
    color: var(--bg-base);
    margin-top: 12px;
    font-variation-settings: "opsz" 144, "SOFT" 50;
    overflow-wrap: break-word;
    word-wrap: break-word;
    hyphens: auto;
}

.cta-title em {
    font-style: italic;
    color: var(--accent-warm);
    font-variation-settings: "opsz" 144, "SOFT" 100;
}

.cta-sub {
    color: rgba(251, 248, 243, 0.7);
    max-width: 46ch;
    margin-top: 16px;
    font-size: 16px;
    line-height: 1.6;
}

.cta-form {
    display: flex;
    flex-direction: column;
    gap: 14px;
    background: rgba(251, 248, 243, 0.06);
    padding: 24px;
    border-radius: var(--r-lg);
    border: 1px solid rgba(251, 248, 243, 0.12);
    backdrop-filter: blur(10px);
}

.cta-label {
    font-family: var(--font-mono);
    font-size: 10px;
    letter-spacing: 0.22em;
    color: rgba(251, 248, 243, 0.55);
    text-transform: uppercase;
}

.cta-field {
    display: flex;
    gap: 10px;
}

@media (max-width: 560px) {
    .cta-field {
        flex-direction: column;
        gap: 10px;
    }
    .cta-field .btn { width: 100%; }
}

.cta-input {
    flex: 1;
    background: rgba(251, 248, 243, 0.08);
    border: 1px solid rgba(251, 248, 243, 0.14);
    color: var(--bg-base);
    padding: 14px 16px;
    border-radius: 999px;
    font-size: 14px;
    font-family: var(--font-body);
    transition: border-color var(--t-fast), background var(--t-fast);
}

.cta-input::placeholder { color: rgba(251, 248, 243, 0.45); }

.cta-input:focus {
    outline: none;
    border-color: var(--accent);
    background: rgba(251, 248, 243, 0.12);
}

.cta-hint {
    font-size: 12px;
    color: rgba(251, 248, 243, 0.5);
    line-height: 1.5;
}

.cta-hint a {
    color: var(--accent-warm);
    text-decoration: underline;
    text-underline-offset: 2px;
}

/* ───── FOOTER ───── */

.footer {
    padding: 48px var(--page-pad) 36px;
    border-top: 1px solid var(--line);
    background: var(--bg-base);
}

.footer-inner {
    max-width: var(--max-w);
    margin: 0 auto;
    display: grid;
    grid-template-columns: 1.5fr 1fr 1fr 1fr;
    gap: 32px;
}

@media (max-width: 860px) {
    .footer-inner { grid-template-columns: 1fr 1fr; }
}

@media (max-width: 560px) {
    .footer-inner { grid-template-columns: 1fr; }
}

.footer-brand {
    font-family: var(--font-display);
    font-weight: 500;
    font-size: 20px;
    letter-spacing: -0.01em;
    color: var(--ink-strong);
    margin-bottom: 10px;
}

.footer-note {
    font-size: 13px;
    color: var(--ink-mid);
    max-width: 36ch;
    line-height: 1.6;
}

.footer-col-title {
    font-family: var(--font-mono);
    font-size: 10px;
    letter-spacing: 0.24em;
    color: var(--ink-dim);
    text-transform: uppercase;
    margin-bottom: 14px;
}

.footer-col a {
    display: block;
    font-size: 14px;
    color: var(--ink-mid);
    margin-bottom: 8px;
    transition: color var(--t-fast);
}

.footer-col a:hover {
    color: var(--ink-strong);
}

.footer-bottom {
    max-width: var(--max-w);
    margin: 32px auto 0;
    padding-top: 20px;
    border-top: 1px solid var(--line);
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 16px;
    flex-wrap: wrap;
    font-family: var(--font-mono);
    font-size: 10px;
    letter-spacing: 0.2em;
    color: var(--ink-muted);
    text-transform: uppercase;
}
