/* ================================================
   STAYBOX Landing — "Midnight Concierge" v2
   Dark indigo + warm amber, Sora + Outfit fonts
   ================================================ */

/* ── Design Tokens ─────────────────────────────── */

:root {
    /* Surfaces */
    --bg-void: #060919;
    --bg-base: #0a0e27;
    --bg-raised: #0f1335;
    --bg-card: #131842;
    --bg-card-hover: #191f52;

    /* Text */
    --text-1: #f2f3fa;
    --text-2: #8e93b4;
    --text-3: #585e82;

    /* Accent */
    --amber: #e2a039;
    --amber-light: #f0c060;
    --amber-dim: rgba(226, 160, 57, 0.12);
    --amber-glow: rgba(226, 160, 57, 0.25);

    /* Secondary */
    --indigo: #5560e0;
    --indigo-soft: rgba(85, 96, 224, 0.12);

    /* Borders */
    --border-1: rgba(255, 255, 255, 0.05);
    --border-2: rgba(255, 255, 255, 0.10);
    --border-3: rgba(255, 255, 255, 0.18);

    /* Radii */
    --r-xs: 6px;
    --r-sm: 10px;
    --r-md: 14px;
    --r-lg: 22px;
    --r-xl: 32px;
    --r-full: 100px;

    /* Typography */
    --f-head: 'Sora', system-ui, sans-serif;
    --f-body: 'Outfit', system-ui, sans-serif;

    /* Motion */
    --ease: cubic-bezier(0.16, 1, 0.3, 1);
    --spring: cubic-bezier(0.34, 1.56, 0.64, 1);
}

/* ── Reset ─────────────────────────────────────── */

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

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

body {
    font-family: var(--f-body);
    font-weight: 400;
    background: var(--bg-void);
    color: var(--text-1);
    line-height: 1.65;
    overflow-x: hidden;
}

a { color: inherit; text-decoration: none; }
img { max-width: 100%; display: block; }
button { cursor: pointer; border: none; background: none; font: inherit; color: inherit; }
input { font: inherit; }
ul, ol { list-style: none; }

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

.accent { color: var(--amber); }

/* ── Background Mesh ───────────────────────────── */

.bg-mesh {
    position: fixed;
    inset: 0;
    z-index: 0;
    pointer-events: none;
    overflow: hidden;
}

.bg-mesh__orb {
    position: absolute;
    border-radius: 50%;
    filter: blur(120px);
    will-change: transform;
}

.bg-mesh__orb--1 {
    width: 800px;
    height: 600px;
    top: -15%;
    left: -10%;
    background: rgba(85, 96, 224, 0.07);
    animation: orbFloat1 25s ease-in-out infinite alternate;
}

.bg-mesh__orb--2 {
    width: 600px;
    height: 500px;
    bottom: -10%;
    right: -5%;
    background: rgba(226, 160, 57, 0.045);
    animation: orbFloat2 20s ease-in-out infinite alternate;
}

.bg-mesh__orb--3 {
    width: 500px;
    height: 400px;
    top: 40%;
    left: 50%;
    background: rgba(85, 96, 224, 0.035);
    animation: orbFloat3 30s ease-in-out infinite alternate;
}

@keyframes orbFloat1 {
    0% { transform: translate(0, 0) scale(1); }
    100% { transform: translate(60px, 40px) scale(1.1); }
}
@keyframes orbFloat2 {
    0% { transform: translate(0, 0) scale(1); }
    100% { transform: translate(-50px, -30px) scale(1.15); }
}
@keyframes orbFloat3 {
    0% { transform: translate(0, 0) scale(1); }
    100% { transform: translate(40px, -50px) scale(0.9); }
}

/* ── Grain ─────────────────────────────────────── */

.grain {
    position: fixed;
    inset: 0;
    z-index: 1;
    pointer-events: none;
    opacity: 0.025;
    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)'/%3E%3C/svg%3E");
    background-repeat: repeat;
    background-size: 256px;
}

/* ── Navigation ────────────────────────────────── */

.nav {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 1000;
    padding: 18px 0;
    transition: all 0.45s var(--ease);
}

.nav--solid {
    padding: 12px 0;
    background: rgba(6, 9, 25, 0.88);
    backdrop-filter: blur(24px) saturate(1.4);
    -webkit-backdrop-filter: blur(24px) saturate(1.4);
    border-bottom: 1px solid var(--border-1);
}

.nav__inner {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 24px;
    display: flex;
    align-items: center;
    gap: 40px;
}

.nav__logo {
    display: flex;
    align-items: center;
    gap: 10px;
    flex-shrink: 0;
}

.nav__logo-mark { display: flex; }

.nav__logo-text {
    font-family: var(--f-head);
    font-weight: 800;
    font-size: 1.3rem;
    letter-spacing: -0.03em;
}

.nav__links {
    display: flex;
    gap: 32px;
    margin-left: auto;
}

.nav__links a {
    font-size: 0.875rem;
    font-weight: 500;
    color: var(--text-2);
    transition: color 0.25s;
    position: relative;
}

.nav__links a::after {
    content: '';
    position: absolute;
    bottom: -5px;
    left: 0;
    width: 0;
    height: 2px;
    background: var(--amber);
    border-radius: 2px;
    transition: width 0.35s var(--ease);
}

.nav__links a:hover { color: var(--text-1); }
.nav__links a:hover::after { width: 100%; }

.nav__login {
    font-size: 0.9rem;
    font-weight: 500;
    color: var(--text-2);
    transition: color 0.25s;
    white-space: nowrap;
    flex-shrink: 0;
}

.nav__login:hover {
    color: var(--text-1);
}

.nav__cta {
    font-size: 0.8125rem;
    font-weight: 600;
    padding: 10px 22px;
    border-radius: var(--r-full);
    background: var(--amber);
    color: var(--bg-void);
    transition: all 0.3s var(--ease);
    white-space: nowrap;
    flex-shrink: 0;
}

.nav__cta:hover {
    background: var(--amber-light);
    transform: translateY(-1px);
    box-shadow: 0 6px 24px var(--amber-glow);
}

/* Burger */
.nav__burger {
    display: none;
    flex-direction: column;
    gap: 5px;
    padding: 6px;
    z-index: 1001;
}

.nav__burger span {
    display: block;
    width: 22px;
    height: 2px;
    background: var(--text-1);
    border-radius: 2px;
    transition: all 0.35s var(--ease);
    transform-origin: center;
}

.nav__burger--open span:nth-child(1) {
    transform: rotate(45deg) translate(5px, 5px);
}
.nav__burger--open span:nth-child(2) {
    opacity: 0;
    transform: scaleX(0);
}
.nav__burger--open span:nth-child(3) {
    transform: rotate(-45deg) translate(5px, -5px);
}

/* Mobile menu */
.mobile-menu {
    position: fixed;
    inset: 0;
    z-index: 999;
    background: rgba(6, 9, 25, 0.96);
    backdrop-filter: blur(30px);
    -webkit-backdrop-filter: blur(30px);
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    visibility: hidden;
    transition: opacity 0.4s var(--ease), visibility 0.4s;
}

.mobile-menu--open {
    opacity: 1;
    visibility: visible;
}

.mobile-menu__inner {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 28px;
}

.mobile-menu__inner a {
    font-family: var(--f-head);
    font-size: 1.5rem;
    font-weight: 600;
    color: var(--text-2);
    transition: color 0.2s;
}

.mobile-menu__inner a:hover { color: var(--text-1); }

.mobile-menu__login {
    color: var(--text-2) !important;
    font-size: 1rem !important;
    font-weight: 500 !important;
    margin-top: 12px;
    padding: 12px 36px !important;
    border-radius: var(--r-full) !important;
    border: 1.5px solid var(--border-2) !important;
    transition: all 0.25s !important;
}

.mobile-menu__login:hover {
    color: var(--text-1) !important;
    border-color: var(--border-3) !important;
}

.mobile-menu__cta {
    margin-top: 12px;
    padding: 16px 44px !important;
    border-radius: var(--r-full) !important;
    background: var(--amber) !important;
    color: var(--bg-void) !important;
    font-size: 1rem !important;
    font-weight: 700 !important;
}

/* ── Buttons ───────────────────────────────────── */

.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    font-family: var(--f-body);
    font-weight: 600;
    font-size: 0.9375rem;
    padding: 13px 30px;
    border-radius: var(--r-full);
    transition: all 0.3s var(--ease);
    white-space: nowrap;
    position: relative;
    overflow: hidden;
}

.btn--lg {
    padding: 16px 38px;
    font-size: 1rem;
}

.btn--primary {
    background: var(--amber);
    color: var(--bg-void);
}

.btn--primary:hover {
    background: var(--amber-light);
    transform: translateY(-2px);
    box-shadow: 0 8px 32px var(--amber-glow);
}

.btn--primary:active {
    transform: translateY(0);
}

.btn--glass {
    background: rgba(255, 255, 255, 0.06);
    color: var(--text-1);
    border: 1px solid var(--border-2);
    backdrop-filter: blur(8px);
}

.btn--glass:hover {
    background: rgba(255, 255, 255, 0.1);
    border-color: var(--border-3);
    transform: translateY(-1px);
}

.btn--outline {
    background: transparent;
    color: var(--text-1);
    border: 1.5px solid var(--border-2);
    width: 100%;
}

.btn--outline:hover {
    border-color: var(--amber);
    color: var(--amber);
    background: var(--amber-dim);
    transform: translateY(-2px);
}

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

.hero {
    position: relative;
    z-index: 2;
    min-height: 100vh;
    min-height: 100dvh;
    display: flex;
    align-items: center;
    padding: 120px 24px 80px;
    max-width: 1200px;
    margin: 0 auto;
    gap: 64px;
}

.hero__content {
    flex: 1 1 55%;
    max-width: 600px;
}

.hero__badge {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 6px 16px 6px 10px;
    border-radius: var(--r-full);
    background: var(--amber-dim);
    border: 1px solid rgba(226, 160, 57, 0.18);
    font-size: 0.8125rem;
    font-weight: 600;
    color: var(--amber-light);
    margin-bottom: 28px;
    letter-spacing: 0.04em;
    text-transform: uppercase;
}

.hero__badge-pulse {
    width: 8px;
    height: 8px;
    border-radius: 50%;
    background: var(--amber);
    animation: badgePulse 2s ease-in-out infinite;
}

@keyframes badgePulse {
    0%, 100% { opacity: 1; box-shadow: 0 0 0 0 var(--amber-glow); }
    50% { opacity: 0.6; box-shadow: 0 0 0 6px transparent; }
}

.hero__title {
    font-family: var(--f-head);
    font-size: clamp(2.6rem, 5.2vw, 4rem);
    font-weight: 800;
    line-height: 1.08;
    letter-spacing: -0.035em;
    margin-bottom: 24px;
}

.hero__title-gradient {
    background: linear-gradient(135deg, var(--amber) 0%, var(--amber-light) 60%, #fff 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.hero__sub {
    font-size: 1.1rem;
    color: var(--text-2);
    line-height: 1.75;
    margin-bottom: 36px;
    max-width: 480px;
}

.hero__actions {
    display: flex;
    gap: 14px;
    flex-wrap: wrap;
    margin-bottom: 52px;
}

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

.hero__proof-item {
    display: flex;
    flex-direction: column;
}

.hero__proof-item strong {
    font-family: var(--f-head);
    font-size: 1.6rem;
    font-weight: 800;
    letter-spacing: -0.02em;
}

.hero__proof-item span {
    font-size: 0.8125rem;
    color: var(--text-3);
    font-weight: 500;
}

.hero__proof-sep {
    width: 1px;
    height: 44px;
    background: var(--border-1);
}

/* ── Hero Device (Phone mockup) ────────────────── */

.hero__visual {
    flex: 0 0 360px;
    position: relative;
    z-index: 2;
}

.hero__device {
    width: 310px;
    height: 560px;
    background: linear-gradient(180deg, #171b34 0%, #12162c 100%);
    border-radius: 38px;
    border: 2px solid rgba(255, 255, 255, 0.07);
    overflow: hidden;
    position: relative;
    box-shadow:
        0 0 0 1px rgba(255, 255, 255, 0.03),
        0 24px 70px rgba(0, 0, 0, 0.55),
        inset 0 1px 0 rgba(255, 255, 255, 0.06),
        0 0 100px var(--amber-dim);
}

.hero__device-notch {
    width: 110px;
    height: 26px;
    background: #0d1024;
    border-radius: 0 0 18px 18px;
    margin: 0 auto;
    position: relative;
    z-index: 3;
}

.hero__device-screen {
    padding: 6px 12px 12px;
    height: calc(100% - 26px);
    overflow: hidden;
}

.hero__glow {
    position: absolute;
    width: 420px;
    height: 420px;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    background: radial-gradient(circle, var(--amber-dim) 0%, transparent 70%);
    z-index: -1;
    animation: heroGlow 5s ease-in-out infinite;
}

@keyframes heroGlow {
    0%, 100% { opacity: 0.45; transform: translate(-50%, -50%) scale(1); }
    50% { opacity: 0.75; transform: translate(-50%, -50%) scale(1.12); }
}

/* Chat simulation */
.chat-sim__bar {
    display: flex;
    align-items: center;
    gap: 10px;
    padding: 10px;
    border-bottom: 1px solid var(--border-1);
    margin-bottom: 10px;
}

.chat-sim__avatar {
    width: 34px;
    height: 34px;
    border-radius: 50%;
    background: linear-gradient(135deg, var(--indigo), #8b94ff);
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 700;
    font-size: 0.8rem;
    color: #fff;
}

.chat-sim__meta { display: flex; flex-direction: column; }
.chat-sim__name { font-weight: 600; font-size: 0.8rem; }
.chat-sim__src { font-size: 0.65rem; color: var(--text-3); }

.chat-sim__ai {
    margin-left: auto;
    padding: 2px 8px;
    border-radius: var(--r-full);
    background: var(--amber-dim);
    color: var(--amber);
    font-size: 0.65rem;
    font-weight: 800;
    letter-spacing: 0.04em;
}

.chat-sim__body {
    display: flex;
    flex-direction: column;
    gap: 7px;
}

.chat-sim__bubble {
    padding: 9px 13px;
    border-radius: 14px;
    font-size: 0.78rem;
    line-height: 1.5;
    max-width: 86%;
    opacity: 0;
    transform: translateY(12px);
    animation: msgIn 0.45s var(--ease) forwards;
}

.chat-sim__bubble--in {
    background: rgba(255, 255, 255, 0.06);
    align-self: flex-start;
    border-bottom-left-radius: 4px;
}

.chat-sim__bubble--out {
    background: linear-gradient(135deg, rgba(85, 96, 224, 0.28), rgba(85, 96, 224, 0.12));
    align-self: flex-end;
    border-bottom-right-radius: 4px;
}

.chat-sim__bubble--card {
    background: rgba(85, 96, 224, 0.12);
    border: 1px solid rgba(85, 96, 224, 0.18);
    font-size: 0.72rem;
    line-height: 1.9;
}

.chat-sim__bubble[data-msg="1"] { animation-delay: 0.6s; }
.chat-sim__bubble[data-msg="2"] { animation-delay: 1.6s; }
.chat-sim__bubble[data-msg="3"] { animation-delay: 2.4s; }
.chat-sim__bubble[data-msg="4"] { animation-delay: 3.4s; }

.chat-sim__dots {
    display: flex;
    gap: 4px;
    padding: 11px 15px;
    background: linear-gradient(135deg, rgba(85, 96, 224, 0.28), rgba(85, 96, 224, 0.12));
    border-radius: 14px;
    border-bottom-right-radius: 4px;
    align-self: flex-end;
    width: 56px;
    opacity: 0;
    animation: msgIn 0.4s var(--ease) 4s forwards;
}

.chat-sim__dots i {
    width: 5px;
    height: 5px;
    border-radius: 50%;
    background: var(--text-2);
    display: block;
    animation: dotBounce 1.4s ease-in-out infinite;
}

.chat-sim__dots i:nth-child(2) { animation-delay: 0.15s; }
.chat-sim__dots i:nth-child(3) { animation-delay: 0.3s; }

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

@keyframes dotBounce {
    0%, 60%, 100% { opacity: 0.25; transform: scale(0.75); }
    30% { opacity: 1; transform: scale(1); }
}

/* ── Ticker ────────────────────────────────────── */

.ticker {
    position: relative;
    z-index: 2;
    padding: 28px 0;
    border-top: 1px solid var(--border-1);
    border-bottom: 1px solid var(--border-1);
    overflow: hidden;
}

.ticker__rail { overflow: hidden; }

.ticker__strip {
    display: flex;
    align-items: center;
    gap: 28px;
    white-space: nowrap;
    animation: tickerSlide 28s linear infinite;
}

.ticker__chip {
    font-family: var(--f-head);
    font-size: 0.875rem;
    font-weight: 600;
    color: var(--text-3);
    letter-spacing: 0.06em;
    text-transform: uppercase;
}

.ticker__sep {
    width: 5px;
    height: 5px;
    border-radius: 50%;
    background: var(--amber);
    opacity: 0.5;
    flex-shrink: 0;
}

@keyframes tickerSlide {
    0% { transform: translateX(0); }
    100% { transform: translateX(-50%); }
}

/* ── Section Commons ───────────────────────────── */

.section {
    position: relative;
    z-index: 2;
    padding: 120px 0;
}

.section--alt {
    background: rgba(15, 19, 53, 0.35);
}

.section__head {
    text-align: center;
    margin-bottom: 68px;
}

.section__tag {
    display: inline-block;
    font-family: var(--f-head);
    font-size: 0.75rem;
    font-weight: 700;
    letter-spacing: 0.14em;
    text-transform: uppercase;
    color: var(--amber);
    margin-bottom: 14px;
}

.section__title {
    font-family: var(--f-head);
    font-size: clamp(2rem, 4vw, 3.1rem);
    font-weight: 800;
    line-height: 1.12;
    letter-spacing: -0.03em;
}

.section__sub {
    margin-top: 16px;
    font-size: 1.05rem;
    color: var(--text-2);
    max-width: 520px;
    margin-left: auto;
    margin-right: auto;
}

/* ── Problems ──────────────────────────────────── */

.pain-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 18px;
}

.pain {
    padding: 36px;
    border-radius: var(--r-lg);
    background: var(--bg-card);
    border: 1px solid var(--border-1);
    transition: all 0.4s var(--ease);
}

.pain:hover {
    background: var(--bg-card-hover);
    border-color: var(--border-2);
    transform: translateY(-5px);
    box-shadow: 0 16px 48px rgba(0, 0, 0, 0.25);
}

.pain__icon {
    width: 52px;
    height: 52px;
    border-radius: var(--r-sm);
    background: var(--amber-dim);
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--amber);
    margin-bottom: 20px;
    transition: transform 0.35s var(--spring);
}

.pain:hover .pain__icon {
    transform: scale(1.08);
}

.pain h3 {
    font-family: var(--f-head);
    font-size: 1.2rem;
    font-weight: 700;
    margin-bottom: 10px;
    letter-spacing: -0.01em;
}

.pain p {
    color: var(--text-2);
    font-size: 0.9375rem;
    line-height: 1.7;
}

/* ── Features ──────────────────────────────────── */

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

.feat {
    padding: 32px;
    border-radius: var(--r-lg);
    background: var(--bg-card);
    border: 1px solid var(--border-1);
    transition: all 0.4s var(--ease);
    position: relative;
    overflow: hidden;
}

.feat:hover {
    border-color: var(--border-2);
    transform: translateY(-4px);
    box-shadow: 0 14px 44px rgba(0, 0, 0, 0.2);
}

/* Hero feature card */
.feat--main {
    grid-column: 1 / -1;
    display: flex;
    gap: 36px;
    align-items: center;
    padding: 48px;
    background: linear-gradient(135deg, var(--bg-card) 0%, rgba(85, 96, 224, 0.07) 100%);
    border-color: rgba(85, 96, 224, 0.12);
}

.feat--main:hover {
    border-color: rgba(85, 96, 224, 0.28);
}

.feat__glow {
    position: absolute;
    top: -60px;
    right: -60px;
    width: 180px;
    height: 180px;
    background: radial-gradient(circle, var(--amber-dim) 0%, transparent 70%);
    pointer-events: none;
}

.feat__badge {
    font-size: 0.6875rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.12em;
    color: var(--amber);
    margin-bottom: 10px;
}

.feat__icon {
    width: 48px;
    height: 48px;
    border-radius: var(--r-xs);
    background: rgba(255, 255, 255, 0.04);
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--text-2);
    margin-bottom: 18px;
    transition: transform 0.35s var(--spring);
}

.feat:hover .feat__icon {
    transform: scale(1.08);
}

.feat__icon--xl {
    width: 88px;
    height: 88px;
    border-radius: var(--r-md);
    background: var(--amber-dim);
    flex-shrink: 0;
    margin-bottom: 0;
}

.feat h3 {
    font-family: var(--f-head);
    font-size: 1.1rem;
    font-weight: 700;
    margin-bottom: 8px;
    letter-spacing: -0.01em;
}

.feat--main h3 {
    font-size: 1.45rem;
}

.feat p {
    color: var(--text-2);
    font-size: 0.9375rem;
    line-height: 1.7;
}

.feat--main .feat__body {
    flex: 1;
}

.feat__chips {
    display: flex;
    gap: 8px;
    margin-top: 18px;
    flex-wrap: wrap;
}

.feat__chips span {
    padding: 4px 14px;
    border-radius: var(--r-full);
    background: rgba(255, 255, 255, 0.05);
    font-size: 0.75rem;
    font-weight: 500;
    color: var(--text-3);
    border: 1px solid var(--border-1);
}

/* ── How It Works (Steps) ──────────────────────── */

.steps {
    max-width: 680px;
    margin: 0 auto;
}

.step {
    display: flex;
    gap: 28px;
    position: relative;
}

.step + .step {
    margin-top: 0;
}

.step__marker {
    display: flex;
    flex-direction: column;
    align-items: center;
    flex-shrink: 0;
}

.step__num {
    width: 60px;
    height: 60px;
    border-radius: 50%;
    border: 2px solid var(--amber);
    display: flex;
    align-items: center;
    justify-content: center;
    font-family: var(--f-head);
    font-size: 1rem;
    font-weight: 800;
    color: var(--amber);
    background: var(--bg-void);
    position: relative;
    z-index: 2;
    transition: all 0.35s var(--ease);
}

.step:hover .step__num {
    background: var(--amber-dim);
    box-shadow: 0 0 24px var(--amber-dim);
}

.step__connector {
    width: 2px;
    flex: 1;
    min-height: 48px;
    background: linear-gradient(180deg, var(--amber) 0%, rgba(226, 160, 57, 0.1) 100%);
}

.step__body {
    padding: 10px 0 56px;
}

.step:last-child .step__body {
    padding-bottom: 0;
}

.step__body h3 {
    font-family: var(--f-head);
    font-size: 1.35rem;
    font-weight: 700;
    margin-bottom: 8px;
    letter-spacing: -0.01em;
}

.step__body p {
    color: var(--text-2);
    font-size: 0.9375rem;
    line-height: 1.7;
    max-width: 440px;
}

/* ── Metrics ───────────────────────────────────── */

.section--metrics {
    padding: 100px 0;
    border-top: 1px solid var(--border-1);
    border-bottom: 1px solid var(--border-1);
    background: linear-gradient(180deg, rgba(85, 96, 224, 0.04) 0%, transparent 100%);
}

.metrics {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 32px;
    text-align: center;
}

.metric {
    padding: 40px 24px;
    border-radius: var(--r-lg);
    background: var(--bg-card);
    border: 1px solid var(--border-1);
    transition: all 0.4s var(--ease);
}

.metric:hover {
    transform: translateY(-4px);
    border-color: var(--border-2);
    box-shadow: 0 12px 40px rgba(0, 0, 0, 0.2);
}

.metric__value {
    display: block;
    font-family: var(--f-head);
    font-size: clamp(2rem, 4vw, 2.8rem);
    font-weight: 800;
    color: var(--amber);
    letter-spacing: -0.03em;
    margin-bottom: 8px;
}

.metric__label {
    display: block;
    font-family: var(--f-head);
    font-size: 1rem;
    font-weight: 600;
    margin-bottom: 6px;
}

.metric__desc {
    display: block;
    font-size: 0.85rem;
    color: var(--text-3);
}

/* ── Pricing ───────────────────────────────────── */

.price-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 18px;
    align-items: start;
}

.price-card {
    padding: 38px;
    border-radius: var(--r-lg);
    background: var(--bg-card);
    border: 1px solid var(--border-1);
    transition: all 0.4s var(--ease);
    position: relative;
}

.price-card:hover {
    transform: translateY(-5px);
    border-color: var(--border-2);
    box-shadow: 0 16px 50px rgba(0, 0, 0, 0.25);
}

.price-card--pop {
    border-color: var(--amber);
    background: linear-gradient(180deg, rgba(226, 160, 57, 0.06) 0%, var(--bg-card) 35%);
    transform: scale(1.03);
}

.price-card--pop:hover {
    transform: scale(1.03) translateY(-5px);
    border-color: var(--amber-light);
}

.price-card__ribbon {
    position: absolute;
    top: -13px;
    left: 50%;
    transform: translateX(-50%);
    padding: 5px 18px;
    border-radius: var(--r-full);
    background: var(--amber);
    color: var(--bg-void);
    font-size: 0.7rem;
    font-weight: 700;
    letter-spacing: 0.06em;
    text-transform: uppercase;
    white-space: nowrap;
}

.price-card__head {
    margin-bottom: 24px;
}

.price-card__head h3 {
    font-family: var(--f-head);
    font-size: 1.5rem;
    font-weight: 800;
    letter-spacing: -0.02em;
    margin-bottom: 4px;
}

.price-card__head p {
    color: var(--text-3);
    font-size: 0.85rem;
}

.price-card__cost {
    margin-bottom: 28px;
    padding-bottom: 28px;
    border-bottom: 1px solid var(--border-1);
    display: flex;
    align-items: baseline;
    gap: 6px;
}

.price-card__amount {
    font-family: var(--f-head);
    font-size: 2.2rem;
    font-weight: 800;
    letter-spacing: -0.03em;
}

.price-card__period {
    font-size: 0.875rem;
    color: var(--text-3);
}

.price-card__list {
    display: flex;
    flex-direction: column;
    gap: 13px;
    margin-bottom: 32px;
}

.price-card__list li {
    display: flex;
    align-items: center;
    gap: 10px;
    font-size: 0.9375rem;
    color: var(--text-2);
}

.price-card__list li::before {
    content: '';
    width: 18px;
    height: 18px;
    border-radius: 50%;
    background: var(--amber-dim);
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
    background-image: url("data:image/svg+xml,%3Csvg width='10' height='10' viewBox='0 0 10 10' fill='none' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath d='M2 5l2.5 2.5L8 3' stroke='%23e2a039' stroke-width='1.5' stroke-linecap='round' stroke-linejoin='round'/%3E%3C/svg%3E");
    background-repeat: no-repeat;
    background-position: center;
}

.price-card--pop .btn {
    width: 100%;
}

/* ── FAQ ───────────────────────────────────────── */

.faq-list {
    max-width: 720px;
    margin: 0 auto;
}

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

.faq-item__q {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 16px;
    width: 100%;
    padding: 24px 0;
    text-align: left;
    transition: color 0.25s;
}

.faq-item__q span {
    font-family: var(--f-head);
    font-size: 1.05rem;
    font-weight: 600;
}

.faq-item__q:hover { color: var(--amber); }

.faq-item__chevron {
    flex-shrink: 0;
    transition: transform 0.35s var(--ease);
}

.faq-item--open .faq-item__chevron {
    transform: rotate(180deg);
}

.faq-item__a {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.45s var(--ease), padding-bottom 0.45s;
}

.faq-item--open .faq-item__a {
    max-height: 320px;
    padding-bottom: 24px;
}

.faq-item__a p {
    color: var(--text-2);
    font-size: 0.9375rem;
    line-height: 1.75;
}

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

.section--cta {
    padding: 80px 0 120px;
}

.cta-card {
    position: relative;
    text-align: center;
    padding: 88px 44px;
    border-radius: var(--r-xl);
    background: linear-gradient(135deg, var(--bg-card) 0%, rgba(85, 96, 224, 0.08) 50%, var(--bg-card) 100%);
    border: 1px solid rgba(85, 96, 224, 0.12);
    overflow: hidden;
}

.cta-card__glow {
    position: absolute;
    top: -120px;
    left: 50%;
    transform: translateX(-50%);
    width: 600px;
    height: 350px;
    background: radial-gradient(ellipse, var(--amber-dim) 0%, transparent 65%);
    pointer-events: none;
}

.cta-card__title {
    font-family: var(--f-head);
    font-size: clamp(1.8rem, 3.2vw, 2.6rem);
    font-weight: 800;
    line-height: 1.18;
    margin-bottom: 16px;
    position: relative;
    letter-spacing: -0.03em;
}

.cta-card__sub {
    color: var(--text-2);
    font-size: 1.05rem;
    margin-bottom: 40px;
    position: relative;
}

.cta-form {
    display: flex;
    gap: 12px;
    max-width: 480px;
    margin: 0 auto;
    position: relative;
}

.cta-form__input {
    flex: 1;
    padding: 16px 24px;
    border-radius: var(--r-full);
    border: 1.5px solid var(--border-2);
    background: rgba(255, 255, 255, 0.04);
    color: var(--text-1);
    font-size: 1rem;
    outline: none;
    transition: all 0.3s;
}

.cta-form__input:focus {
    border-color: var(--amber);
    background: rgba(226, 160, 57, 0.04);
    box-shadow: 0 0 0 3px var(--amber-dim);
}

.cta-form__input::placeholder {
    color: var(--text-3);
}

.cta-card__note {
    margin-top: 16px;
    font-size: 0.8rem;
    color: var(--text-3);
    position: relative;
}

/* ── Footer ────────────────────────────────────── */

.footer {
    position: relative;
    z-index: 2;
    padding: 64px 0 28px;
    border-top: 1px solid var(--border-1);
}

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

.footer__desc {
    margin-top: 12px;
    color: var(--text-3);
    font-size: 0.875rem;
    line-height: 1.6;
}

.footer__col h4 {
    font-family: var(--f-head);
    font-size: 0.8rem;
    font-weight: 700;
    margin-bottom: 14px;
    letter-spacing: 0.06em;
    text-transform: uppercase;
    color: var(--text-1);
}

.footer__col a {
    display: block;
    font-size: 0.875rem;
    color: var(--text-3);
    padding: 5px 0;
    transition: color 0.2s;
}

.footer__col a:hover { color: var(--text-1); }

.footer__bottom {
    padding-top: 24px;
    border-top: 1px solid var(--border-1);
    text-align: center;
    font-size: 0.8rem;
    color: var(--text-3);
}

/* ── Scroll Animations ─────────────────────────── */

[data-animate] {
    opacity: 0;
    transform: translateY(36px);
    transition: opacity 0.75s var(--ease), transform 0.75s var(--ease);
}

[data-animate="fade-left"] {
    transform: translateX(50px);
}

[data-animate].in-view {
    opacity: 1;
    transform: translate(0, 0);
}

/* ── Responsive ────────────────────────────────── */

@media (max-width: 1024px) {
    .hero {
        flex-direction: column;
        text-align: center;
        padding-top: 110px;
        gap: 48px;
    }

    .hero__content { max-width: 100%; }
    .hero__sub { margin-left: auto; margin-right: auto; }
    .hero__actions { justify-content: center; }
    .hero__proof { justify-content: center; }
    .hero__visual { flex: none; }

    .feat-grid { grid-template-columns: repeat(2, 1fr); }
    .feat--main { grid-column: 1 / -1; flex-direction: column; text-align: center; }
    .feat--main .feat__body { text-align: left; }

    .metrics { grid-template-columns: repeat(3, 1fr); gap: 16px; }

    .price-grid { grid-template-columns: 1fr; max-width: 420px; margin: 0 auto; }
    .price-card--pop { transform: none; }
    .price-card--pop:hover { transform: translateY(-5px); }

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

@media (max-width: 768px) {
    .nav__links, .nav__login, .nav__cta { display: none; }
    .nav__burger { display: flex; }

    .section { padding: 80px 0; }

    .pain-grid { grid-template-columns: 1fr; }
    .feat-grid { grid-template-columns: 1fr; }
    .feat--main { padding: 32px; gap: 24px; }

    .metrics { grid-template-columns: 1fr; gap: 14px; }
    .metric { padding: 28px 20px; }

    .step { gap: 18px; }
    .step__num { width: 48px; height: 48px; font-size: 0.875rem; }

    .hero__device {
        width: 270px;
        height: 490px;
    }

    .cta-form { flex-direction: column; }
    .cta-card { padding: 56px 24px; }

    .footer__grid { grid-template-columns: 1fr; gap: 28px; }
}

@media (max-width: 480px) {
    .hero__proof {
        flex-direction: column;
        gap: 16px;
        align-items: center;
    }

    .hero__proof-sep {
        width: 40px;
        height: 1px;
    }

    .hero__device { width: 250px; height: 450px; }

    .pain, .feat { padding: 24px; }
    .price-card { padding: 28px; }
    .section--metrics { padding: 64px 0; }
}

/* ── Selection ─────────────────────────────────── */

::selection {
    background: var(--amber);
    color: var(--bg-void);
}

/* ── Focus ─────────────────────────────────────── */

:focus-visible {
    outline: 2px solid var(--amber);
    outline-offset: 3px;
}
