/* =========================================================
   Clayton Creates — design system
   Deep navy + electric blue. Resend-inspired restraint.
   ========================================================= */

:root {
    /* Surfaces */
    --bg:        #050b1f;
    --bg-1:      #07102a;
    --bg-2:      #0b1736;
    --bg-card:   rgba(120, 160, 255, 0.025);
    --bg-card-2: rgba(120, 160, 255, 0.05);

    /* Borders */
    --border:    rgba(148, 178, 255, 0.08);
    --border-2:  rgba(148, 178, 255, 0.14);
    --border-3:  rgba(148, 178, 255, 0.22);

    /* Text */
    --text:      #f1f4ff;
    --text-mid:  #a8b3d1;
    --text-low:  #6b7591;

    /* Accent */
    --accent:        #4f8aff;
    --accent-bright: #6ea0ff;
    --accent-deep:   #2c63d8;
    --accent-glow:   rgba(79, 138, 255, 0.45);

    /* Tokens */
    --radius-sm: 8px;
    --radius:    14px;
    --radius-lg: 22px;

    --ease: cubic-bezier(0.22, 0.61, 0.36, 1);

    --maxw: 1180px;
    --pad:  24px;
}

* { box-sizing: border-box; }

html {
    scroll-behavior: smooth;
    -webkit-text-size-adjust: 100%;
}

body {
    margin: 0;
    background: var(--bg);
    color: var(--text);
    font-family: 'Inter', system-ui, -apple-system, 'Segoe UI', sans-serif;
    font-size: 16px;
    line-height: 1.6;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
    overflow-x: hidden;
    padding-bottom: 76px; /* clearance for mobile sticky CTA */
}

::selection { background: var(--accent); color: #fff; }

img { max-width: 100%; display: block; }

a { color: inherit; text-decoration: none; }

button { font: inherit; color: inherit; cursor: pointer; }

/* =========================================================
   Background atmosphere
   ========================================================= */

.bg-grid {
    position: fixed;
    inset: 0;
    pointer-events: none;
    background-image:
        linear-gradient(rgba(148, 178, 255, 0.025) 1px, transparent 1px),
        linear-gradient(90deg, rgba(148, 178, 255, 0.025) 1px, transparent 1px);
    background-size: 56px 56px;
    background-position: -1px -1px;
    -webkit-mask-image: radial-gradient(ellipse at 50% 0%, #000 30%, transparent 75%);
            mask-image: radial-gradient(ellipse at 50% 0%, #000 30%, transparent 75%);
    z-index: 0;
}

.bg-glow {
    position: fixed;
    top: -380px;
    left: 50%;
    transform: translateX(-50%);
    width: 1100px;
    height: 800px;
    background:
        radial-gradient(circle at 50% 50%, rgba(79, 138, 255, 0.35), transparent 60%);
    filter: blur(60px);
    pointer-events: none;
    z-index: 0;
    opacity: 0.85;
}

main, .nav, .footer { position: relative; z-index: 1; }

/* =========================================================
   Layout
   ========================================================= */

.container {
    width: 100%;
    max-width: var(--maxw);
    margin: 0 auto;
    padding: 0 var(--pad);
}

.section {
    padding: 80px 0;
    position: relative;
}

.section-alt {
    background: linear-gradient(180deg, transparent, rgba(148, 178, 255, 0.025) 30%, rgba(148, 178, 255, 0.025) 70%, transparent);
    border-top: 1px solid var(--border);
    border-bottom: 1px solid var(--border);
}

.section-head {
    max-width: 720px;
    margin: 0 auto 56px;
    text-align: center;
}

.section-tag {
    display: inline-block;
    font-size: 12px;
    font-weight: 500;
    letter-spacing: 0.08em;
    text-transform: uppercase;
    color: var(--accent-bright);
    background: rgba(79, 138, 255, 0.08);
    border: 1px solid rgba(79, 138, 255, 0.18);
    padding: 6px 12px;
    border-radius: 999px;
    margin-bottom: 20px;
}

.section h2 {
    font-family: 'Geist', 'Inter', sans-serif;
    font-size: clamp(30px, 4.5vw, 46px);
    line-height: 1.05;
    letter-spacing: -0.025em;
    font-weight: 600;
    margin: 0 0 16px;
}

.section-lede {
    font-size: 17px;
    color: var(--text-mid);
    margin: 0;
}

/* =========================================================
   Buttons
   ========================================================= */

.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    padding: 14px 22px;
    border-radius: 10px;
    font-family: 'Geist', 'Inter', sans-serif;
    font-size: 15px;
    font-weight: 500;
    letter-spacing: -0.005em;
    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), color 0.18s var(--ease);
    white-space: nowrap;
    cursor: pointer;
    line-height: 1;
}

.btn .arrow {
    width: 14px;
    height: 14px;
    transition: transform 0.18s var(--ease);
}

.btn:hover .arrow { transform: translateX(3px); }

.btn-sm {
    padding: 10px 16px;
    font-size: 14px;
    border-radius: 8px;
}

.btn-block {
    display: flex;
    width: 100%;
}

.btn-primary {
    background: linear-gradient(180deg, var(--accent-bright), var(--accent));
    color: #fff;
    box-shadow:
        0 1px 0 0 rgba(255, 255, 255, 0.15) inset,
        0 0 0 1px rgba(79, 138, 255, 0.45),
        0 8px 24px -8px var(--accent-glow);
}

.btn-primary:hover {
    transform: translateY(-1px);
    box-shadow:
        0 1px 0 0 rgba(255, 255, 255, 0.2) inset,
        0 0 0 1px rgba(79, 138, 255, 0.6),
        0 12px 32px -8px var(--accent-glow);
}

.btn-ghost {
    background: rgba(148, 178, 255, 0.04);
    color: var(--text);
    border-color: var(--border-2);
}

.btn-ghost:hover {
    background: rgba(148, 178, 255, 0.08);
    border-color: var(--border-3);
    transform: translateY(-1px);
}

/* =========================================================
   Navigation
   ========================================================= */

.nav {
    position: sticky;
    top: 0;
    z-index: 50;
    backdrop-filter: blur(14px);
    -webkit-backdrop-filter: blur(14px);
    background: rgba(5, 11, 31, 0.7);
    border-bottom: 1px solid transparent;
    transition: border-color 0.2s var(--ease), background 0.2s var(--ease);
}

.nav.is-scrolled {
    border-bottom-color: var(--border);
    background: rgba(5, 11, 31, 0.85);
}

.nav-inner {
    display: flex;
    align-items: center;
    justify-content: space-between;
    height: 64px;
    gap: 24px;
}

.brand {
    display: flex;
    align-items: center;
    gap: 10px;
    font-family: 'Geist', 'Inter', sans-serif;
    font-weight: 600;
    font-size: 15px;
    letter-spacing: -0.01em;
    color: var(--text);
}

.brand-mark {
    width: 28px;
    height: 28px;
    border-radius: 7px;
    flex-shrink: 0;
}

.nav-links {
    display: none;
    gap: 28px;
    margin-left: auto;
}

.nav-links a {
    color: var(--text-mid);
    font-size: 14px;
    font-weight: 500;
    transition: color 0.15s var(--ease);
}

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

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

.menu-btn {
    display: flex;
    flex-direction: column;
    gap: 4px;
    background: transparent;
    border: 1px solid var(--border-2);
    width: 40px;
    height: 40px;
    border-radius: 8px;
    align-items: center;
    justify-content: center;
    padding: 0;
}

.menu-btn span {
    display: block;
    width: 16px;
    height: 1.5px;
    background: var(--text);
    transition: transform 0.2s var(--ease), opacity 0.2s var(--ease);
}

.menu-btn[aria-expanded="true"] span:nth-child(1) { transform: translateY(5.5px) rotate(45deg); }
.menu-btn[aria-expanded="true"] span:nth-child(2) { opacity: 0; }
.menu-btn[aria-expanded="true"] span:nth-child(3) { transform: translateY(-5.5px) rotate(-45deg); }

.mobile-menu {
    position: fixed;
    top: 64px;
    left: 0;
    right: 0;
    background: rgba(5, 11, 31, 0.97);
    backdrop-filter: blur(14px);
    -webkit-backdrop-filter: blur(14px);
    border-bottom: 1px solid var(--border);
    transform: translateY(-12px);
    opacity: 0;
    pointer-events: none;
    transition: transform 0.25s var(--ease), opacity 0.2s var(--ease);
    z-index: 49;
}

.mobile-menu.is-open {
    transform: translateY(0);
    opacity: 1;
    pointer-events: auto;
}

.mobile-menu nav {
    display: flex;
    flex-direction: column;
    padding: 16px var(--pad) 24px;
    max-width: var(--maxw);
    margin: 0 auto;
}

.mobile-menu nav a {
    padding: 14px 0;
    color: var(--text-mid);
    font-size: 16px;
    border-bottom: 1px solid var(--border);
    font-weight: 500;
}

.mobile-menu nav a:last-child {
    margin-top: 16px;
    border: none;
    padding: 14px 22px;
}

/* =========================================================
   Hero
   ========================================================= */

.hero {
    padding: 64px 0 80px;
    position: relative;
}

.hero-grid {
    display: flex;
    flex-direction: column;
    gap: 56px;
    align-items: center;
}

.hero-copy {
    max-width: 640px;
    text-align: center;
}


.hero-h1 {
    font-family: 'Geist', 'Inter', sans-serif;
    font-size: clamp(42px, 8vw, 76px);
    line-height: 0.98;
    letter-spacing: -0.035em;
    font-weight: 600;
    margin: 0 0 24px;
}

.hero-h1 .grad {
    background: linear-gradient(120deg, var(--accent-bright) 0%, #a4c2ff 50%, var(--accent-bright) 100%);
    background-size: 200% auto;
    -webkit-background-clip: text;
            background-clip: text;
    -webkit-text-fill-color: transparent;
    animation: shine 6s linear infinite;
}

@keyframes shine {
    to { background-position: 200% center; }
}

.hero-sub {
    font-size: 18px;
    line-height: 1.55;
    color: var(--text-mid);
    margin: 0 auto 32px;
    max-width: 560px;
}

.hero-sub strong {
    color: var(--text);
    font-weight: 600;
}

.hero-actions {
    display: flex;
    flex-direction: column;
    gap: 12px;
    margin-bottom: 28px;
    width: 100%;
    max-width: 360px;
    margin-left: auto;
    margin-right: auto;
}

.hero-actions .btn { width: 100%; }

.hero-trust {
    font-size: 13px;
    color: var(--text-low);
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
    align-items: center;
    justify-content: center;
}

.hero-trust .sep { opacity: 0.5; }

/* Hero visual: browser + phone mockups */

.hero-visual {
    width: 100%;
    max-width: 560px;
    position: relative;
    perspective: 1600px;
}

.browser-stack {
    position: relative;
    transform-style: preserve-3d;
    transform: rotateX(8deg) rotateY(-6deg) rotateZ(0.5deg);
    transition: transform 0.6s var(--ease);
}

.hero-visual:hover .browser-stack {
    transform: rotateX(4deg) rotateY(-3deg);
}

.browser {
    background: linear-gradient(180deg, #0e1a3a, #08112b);
    border: 1px solid var(--border-2);
    border-radius: 14px;
    box-shadow:
        0 0 0 1px rgba(255, 255, 255, 0.03) inset,
        0 30px 80px -20px rgba(0, 0, 0, 0.6),
        0 0 100px -10px var(--accent-glow);
    overflow: hidden;
    position: relative;
}

.browser-bar {
    display: flex;
    align-items: center;
    gap: 6px;
    padding: 12px 14px;
    background: rgba(148, 178, 255, 0.03);
    border-bottom: 1px solid var(--border);
}

.browser-bar > span {
    width: 9px;
    height: 9px;
    border-radius: 50%;
}

.dot-r { background: #ff6058; }
.dot-y { background: #ffbe2f; }
.dot-g { background: #29c947; }

.browser-url {
    margin-left: 14px;
    font-family: 'JetBrains Mono', monospace;
    font-size: 11px;
    color: var(--text-low);
    background: rgba(148, 178, 255, 0.04);
    padding: 5px 12px;
    border-radius: 6px;
    flex: 1;
    text-align: center;
    border: 1px solid var(--border);
}

.browser-body {
    padding: 32px 28px;
    min-height: 320px;
    display: flex;
    flex-direction: column;
    gap: 24px;
}

/* Mini hero inside browser */

.mini-hero { display: flex; flex-direction: column; gap: 8px; }

.mini-eyebrow {
    width: 70px;
    height: 12px;
    background: rgba(79, 138, 255, 0.18);
    border-radius: 999px;
    margin-bottom: 6px;
}

.mini-h1 {
    height: 18px;
    background: linear-gradient(90deg, var(--text), rgba(241, 244, 255, 0.4));
    -webkit-mask-image: linear-gradient(90deg, #000 60%, transparent);
            mask-image: linear-gradient(90deg, #000 60%, transparent);
    border-radius: 4px;
    width: 90%;
}

.mini-h1.short { width: 60%; }

.mini-sub {
    height: 8px;
    background: rgba(168, 179, 209, 0.25);
    border-radius: 4px;
    width: 100%;
    margin-top: 4px;
}

.mini-sub.short { width: 70%; }

.mini-buttons {
    display: flex;
    gap: 10px;
    margin-top: 14px;
}

.mini-btn-pri {
    width: 90px;
    height: 26px;
    background: linear-gradient(180deg, var(--accent-bright), var(--accent));
    border-radius: 6px;
    box-shadow: 0 6px 16px -4px var(--accent-glow);
}

.mini-btn-sec {
    width: 70px;
    height: 26px;
    background: transparent;
    border: 1px solid var(--border-2);
    border-radius: 6px;
}

.mini-card-row {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 10px;
    margin-top: auto;
}

.mini-card {
    aspect-ratio: 1.4 / 1;
    background: rgba(148, 178, 255, 0.04);
    border: 1px solid var(--border);
    border-radius: 8px;
    position: relative;
    overflow: hidden;
}

.mini-card::before,
.mini-card::after {
    content: '';
    position: absolute;
    left: 12px;
    right: 12px;
    height: 6px;
    border-radius: 3px;
    background: rgba(148, 178, 255, 0.18);
}

.mini-card::before { top: 14px; width: 50%; }
.mini-card::after { bottom: 14px; height: 4px; opacity: 0.6; }

/* Phone */

.phone {
    position: absolute;
    bottom: -30px;
    right: -10px;
    width: 130px;
    aspect-ratio: 9 / 19;
    background: linear-gradient(180deg, #0e1a3a, #050b1f);
    border: 1px solid var(--border-3);
    border-radius: 22px;
    padding: 8px;
    box-shadow:
        0 0 0 1px rgba(255, 255, 255, 0.04) inset,
        0 20px 50px -10px rgba(0, 0, 0, 0.7);
    transform: translateZ(40px);
}

.phone-notch {
    position: absolute;
    top: 6px;
    left: 50%;
    transform: translateX(-50%);
    width: 36px;
    height: 12px;
    background: #050b1f;
    border-radius: 999px;
    z-index: 2;
}

.phone-screen {
    background: linear-gradient(180deg, #08112b, #050b1f);
    border-radius: 14px;
    height: 100%;
    padding: 20px 12px 12px;
    display: flex;
    flex-direction: column;
    gap: 6px;
    overflow: hidden;
}

.ph-line {
    height: 8px;
    background: rgba(241, 244, 255, 0.3);
    border-radius: 3px;
    width: 80%;
    margin-top: 12px;
}

.ph-line.short { width: 50%; height: 6px; background: rgba(168, 179, 209, 0.25); }

.ph-btn {
    margin-top: 8px;
    height: 18px;
    background: linear-gradient(180deg, var(--accent-bright), var(--accent));
    border-radius: 4px;
    width: 80%;
}

.ph-card {
    margin-top: 10px;
    aspect-ratio: 4 / 3;
    background: rgba(148, 178, 255, 0.05);
    border: 1px solid var(--border);
    border-radius: 6px;
}

/* Floating tags */

.floating-tag {
    position: absolute;
    background: linear-gradient(180deg, rgba(14, 26, 58, 0.9), rgba(8, 17, 43, 0.9));
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
    border: 1px solid var(--border-2);
    border-radius: 999px;
    padding: 8px 14px;
    font-family: 'Geist', sans-serif;
    font-size: 13px;
    font-weight: 500;
    color: var(--text);
    box-shadow: 0 8px 24px -8px rgba(0, 0, 0, 0.5);
    transform: translateZ(60px);
}

.tag-1 {
    top: -14px;
    right: 32px;
    color: var(--accent-bright);
}

.tag-2 {
    bottom: 16px;
    left: -18px;
}

/* =========================================================
   Trust strip
   ========================================================= */

.trust-strip {
    border-top: 1px solid var(--border);
    border-bottom: 1px solid var(--border);
    padding: 32px 0;
    background: rgba(148, 178, 255, 0.015);
}

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

.trust-num {
    font-family: 'Geist', sans-serif;
    font-size: clamp(28px, 5vw, 38px);
    font-weight: 600;
    letter-spacing: -0.025em;
    color: var(--text);
    line-height: 1;
    display: flex;
    align-items: baseline;
    justify-content: center;
    gap: 6px;
}

.trust-unit {
    font-size: 0.45em;
    font-weight: 500;
    color: var(--text-mid);
    letter-spacing: 0.02em;
    text-transform: lowercase;
}

.trust-lbl {
    margin-top: 8px;
    font-size: 13px;
    color: var(--text-low);
    letter-spacing: 0.01em;
}

/* =========================================================
   Feature grid (What you get)
   ========================================================= */

.feature-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 1px;
    background: var(--border);
    border: 1px solid var(--border);
    border-radius: var(--radius-lg);
    overflow: hidden;
}

.feature {
    padding: 32px 28px;
    background: var(--bg);
    transition: background 0.2s var(--ease);
    position: relative;
}

.feature:hover {
    background: var(--bg-1);
}

.feature-icon {
    width: 40px;
    height: 40px;
    border-radius: 10px;
    background: rgba(79, 138, 255, 0.08);
    border: 1px solid rgba(79, 138, 255, 0.18);
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--accent-bright);
    margin-bottom: 20px;
}

.feature-icon svg {
    width: 20px;
    height: 20px;
}

.feature h3 {
    font-family: 'Geist', sans-serif;
    font-size: 18px;
    font-weight: 600;
    letter-spacing: -0.015em;
    margin: 0 0 8px;
    color: var(--text);
}

.feature p {
    font-size: 15px;
    color: var(--text-mid);
    margin: 0;
    line-height: 1.55;
}

/* =========================================================
   Why grid
   ========================================================= */

.why-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 16px;
}

.why-card {
    padding: 32px 28px;
    background: var(--bg-card);
    border: 1px solid var(--border);
    border-radius: var(--radius);
    transition: border-color 0.2s var(--ease), background 0.2s var(--ease);
    position: relative;
}

.why-card:hover {
    border-color: var(--border-3);
    background: var(--bg-card-2);
}

.why-num {
    font-family: 'JetBrains Mono', monospace;
    font-size: 12px;
    color: var(--accent-bright);
    margin-bottom: 16px;
    letter-spacing: 0.05em;
}

.why-card h3 {
    font-family: 'Geist', sans-serif;
    font-size: 22px;
    font-weight: 600;
    letter-spacing: -0.02em;
    margin: 0 0 12px;
}

.why-card p {
    color: var(--text-mid);
    margin: 0;
    font-size: 15px;
    line-height: 1.6;
}

/* =========================================================
   Pricing
   ========================================================= */

.pricing-wrap {
    display: grid;
    grid-template-columns: 1fr;
    gap: 24px;
    max-width: 920px;
    margin: 0 auto;
}

.pricing-card {
    padding: 36px 28px;
    background:
        linear-gradient(180deg, rgba(79, 138, 255, 0.06), transparent 50%),
        var(--bg-card);
    border: 1px solid var(--border-2);
    border-radius: var(--radius-lg);
    position: relative;
    overflow: hidden;
}

.pricing-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 1px;
    background: linear-gradient(90deg, transparent, rgba(79, 138, 255, 0.5), transparent);
}

.pricing-head {
    display: flex;
    flex-direction: column;
    gap: 16px;
    padding-bottom: 24px;
    border-bottom: 1px solid var(--border);
    margin-bottom: 24px;
}

.pricing-tag {
    display: inline-block;
    font-size: 11px;
    font-weight: 500;
    letter-spacing: 0.08em;
    text-transform: uppercase;
    color: var(--accent-bright);
    background: rgba(79, 138, 255, 0.08);
    border: 1px solid rgba(79, 138, 255, 0.18);
    padding: 4px 10px;
    border-radius: 999px;
    margin-bottom: 12px;
    width: fit-content;
}

.pricing-name h3 {
    font-family: 'Geist', sans-serif;
    font-size: 24px;
    font-weight: 600;
    letter-spacing: -0.02em;
    margin: 0;
}

.pricing-amount {
    display: flex;
    align-items: baseline;
    gap: 12px;
    flex-wrap: wrap;
}

.amount {
    font-family: 'Geist', sans-serif;
    font-size: clamp(48px, 9vw, 64px);
    font-weight: 600;
    letter-spacing: -0.04em;
    line-height: 1;
    background: linear-gradient(180deg, var(--text) 30%, var(--accent-bright));
    -webkit-background-clip: text;
            background-clip: text;
    -webkit-text-fill-color: transparent;
}

.amount-sub {
    font-size: 14px;
    color: var(--text-mid);
}

.pricing-list {
    list-style: none;
    padding: 0;
    margin: 0 0 32px;
    display: grid;
    gap: 12px;
}

.pricing-list li {
    display: flex;
    align-items: flex-start;
    gap: 12px;
    font-size: 15px;
    color: var(--text);
    line-height: 1.5;
}

.pricing-list svg {
    flex-shrink: 0;
    width: 16px;
    height: 16px;
    margin-top: 3px;
    color: var(--accent-bright);
    background: rgba(79, 138, 255, 0.1);
    border-radius: 50%;
    padding: 2px;
}

/* Monthly cost USP block */
.monthly-usp {
    background: rgba(79, 138, 255, 0.07);
    border: 1px solid rgba(79, 138, 255, 0.22);
    border-radius: 14px;
    padding: 20px 22px;
    margin-bottom: 24px;
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.monthly-usp-price {
    display: flex;
    align-items: baseline;
    gap: 10px;
    flex-wrap: wrap;
}

.monthly-usp-from {
    font-size: 13px;
    color: var(--text-mid);
    font-weight: 500;
}

.monthly-usp-amount {
    font-family: 'Geist', sans-serif;
    font-size: 34px;
    font-weight: 700;
    color: var(--accent-bright);
    letter-spacing: -0.02em;
    line-height: 1;
}

.monthly-usp-unit {
    font-size: 18px;
    font-weight: 600;
    color: var(--accent-bright);
    opacity: 0.75;
}

.monthly-usp-detail {
    font-size: 13px;
    color: var(--text-mid);
    margin: 0;
    line-height: 1.65;
}

.monthly-usp-detail strong {
    color: var(--text-high);
    font-weight: 600;
}

.pricing-note {
    font-size: 13px;
    color: var(--text-low);
    margin: 16px 0 0;
    text-align: center;
    line-height: 1.5;
}

.pricing-side {
    padding: 28px;
    background: var(--bg-card);
    border: 1px solid var(--border);
    border-radius: var(--radius);
    align-self: start;
}

.pricing-side h4 {
    font-family: 'Geist', sans-serif;
    font-size: 16px;
    font-weight: 600;
    letter-spacing: -0.01em;
    margin: 0 0 12px;
    color: var(--text);
}

.pricing-side p {
    font-size: 14px;
    color: var(--text-mid);
    margin: 0 0 16px;
    line-height: 1.55;
}

.pricing-side ul {
    margin: 0;
    padding-left: 18px;
    list-style: none;
}

.pricing-side li {
    font-size: 14px;
    color: var(--text-mid);
    margin-bottom: 8px;
    position: relative;
}

.pricing-side li::before {
    content: '—';
    position: absolute;
    left: -18px;
    color: var(--text-low);
}

/* =========================================================
   Process steps
   ========================================================= */

.steps {
    list-style: none;
    margin: 0;
    padding: 0;
    display: grid;
    grid-template-columns: 1fr;
    gap: 16px;
    counter-reset: step;
}

.step {
    padding: 28px;
    background: var(--bg-card);
    border: 1px solid var(--border);
    border-radius: var(--radius);
    position: relative;
    transition: border-color 0.2s var(--ease);
}

.step:hover { border-color: var(--border-3); }

.step-num {
    width: 36px;
    height: 36px;
    border-radius: 10px;
    background: linear-gradient(180deg, rgba(79, 138, 255, 0.18), rgba(79, 138, 255, 0.08));
    border: 1px solid rgba(79, 138, 255, 0.25);
    display: flex;
    align-items: center;
    justify-content: center;
    font-family: 'Geist', sans-serif;
    font-weight: 600;
    color: var(--accent-bright);
    margin-bottom: 16px;
    font-size: 15px;
}

.step h3 {
    font-family: 'Geist', sans-serif;
    font-size: 19px;
    font-weight: 600;
    letter-spacing: -0.015em;
    margin: 0 0 8px;
}

.step p {
    color: var(--text-mid);
    font-size: 15px;
    margin: 0 0 16px;
    line-height: 1.55;
}

.step-time {
    font-family: 'JetBrains Mono', monospace;
    font-size: 11px;
    color: var(--accent-bright);
    background: rgba(79, 138, 255, 0.08);
    border: 1px solid rgba(79, 138, 255, 0.18);
    padding: 4px 10px;
    border-radius: 999px;
    letter-spacing: 0.04em;
    display: inline-block;
}

/* =========================================================
   FAQ
   ========================================================= */

.faq-wrap {
    display: grid;
    grid-template-columns: 1fr;
    gap: 48px;
    max-width: 920px;
    margin: 0 auto;
}

.faq-head { text-align: left; max-width: 100%; margin-bottom: 0; }
.faq-head .section-lede { margin-top: 16px; }

.faq-list {
    border-top: 1px solid var(--border);
}

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

.faq-item summary {
    list-style: none;
    cursor: pointer;
    padding: 22px 4px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 16px;
    font-family: 'Geist', sans-serif;
    font-size: 16px;
    font-weight: 500;
    letter-spacing: -0.01em;
    color: var(--text);
    transition: color 0.15s var(--ease);
}

.faq-item summary::-webkit-details-marker { display: none; }

.faq-item summary:hover { color: var(--accent-bright); }

.faq-icon {
    width: 20px;
    height: 20px;
    flex-shrink: 0;
    position: relative;
    border-radius: 50%;
    background: rgba(148, 178, 255, 0.05);
    border: 1px solid var(--border-2);
    transition: background 0.2s var(--ease), border-color 0.2s var(--ease);
}

.faq-icon::before,
.faq-icon::after {
    content: '';
    position: absolute;
    background: var(--text-mid);
    border-radius: 1px;
    transition: transform 0.25s var(--ease);
}

.faq-icon::before {
    top: 9px;
    left: 5px;
    right: 5px;
    height: 1.5px;
}

.faq-icon::after {
    left: 9px;
    top: 5px;
    bottom: 5px;
    width: 1.5px;
}

.faq-item[open] .faq-icon {
    background: rgba(79, 138, 255, 0.15);
    border-color: rgba(79, 138, 255, 0.35);
}

.faq-item[open] .faq-icon::before { background: var(--accent-bright); }
.faq-item[open] .faq-icon::after { transform: rotate(90deg); opacity: 0; }

.faq-body {
    padding: 0 4px 22px;
    color: var(--text-mid);
    font-size: 15px;
    line-height: 1.65;
    max-width: 720px;
}

.faq-body p { margin: 0; }
.faq-body strong { color: var(--text); font-weight: 600; }

/* =========================================================
   CTA / Form
   ========================================================= */

.section-cta {
    background:
        radial-gradient(ellipse at 50% 0%, rgba(79, 138, 255, 0.18), transparent 60%),
        linear-gradient(180deg, transparent, rgba(148, 178, 255, 0.025));
    border-top: 1px solid var(--border);
    padding: 96px 0 80px;
}

.cta-wrap {
    max-width: 640px;
    margin: 0 auto;
}

.cta-head { text-align: center; margin-bottom: 48px; }

.form {
    background: linear-gradient(180deg, rgba(14, 26, 58, 0.5), rgba(8, 17, 43, 0.5));
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
    border: 1px solid var(--border-2);
    border-radius: var(--radius-lg);
    padding: 32px 24px;
    box-shadow: 0 30px 80px -20px rgba(0, 0, 0, 0.5);
}

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

.field {
    display: flex;
    flex-direction: column;
    gap: 8px;
    margin-bottom: 18px;
}

.field label {
    font-size: 13px;
    font-weight: 500;
    color: var(--text-mid);
    letter-spacing: 0.005em;
}

.field input,
.field textarea {
    background: rgba(5, 11, 31, 0.6);
    border: 1px solid var(--border-2);
    border-radius: 10px;
    padding: 14px 16px;
    color: var(--text);
    font: inherit;
    font-size: 16px; /* prevents iOS zoom */
    transition: border-color 0.15s var(--ease), background 0.15s var(--ease), box-shadow 0.15s var(--ease);
    width: 100%;
    font-family: inherit;
}

.field textarea {
    resize: vertical;
    min-height: 110px;
    line-height: 1.55;
}

.field input::placeholder,
.field textarea::placeholder {
    color: var(--text-low);
}

.field input:focus,
.field textarea:focus {
    outline: none;
    border-color: var(--accent);
    background: rgba(5, 11, 31, 0.85);
    box-shadow: 0 0 0 3px rgba(79, 138, 255, 0.15);
}

.field input.invalid,
.field textarea.invalid {
    border-color: #f87171;
    box-shadow: 0 0 0 3px rgba(248, 113, 113, 0.12);
}

.form .btn {
    margin-top: 8px;
}

.form-microcopy {
    text-align: center;
    font-size: 12px;
    color: var(--text-low);
    margin: 16px 0 0;
    letter-spacing: 0.01em;
}

.form-success {
    margin-top: 24px;
    padding: 16px;
    border-radius: 10px;
    background: rgba(74, 222, 128, 0.08);
    border: 1px solid rgba(74, 222, 128, 0.25);
    color: #bbf7d0;
    font-size: 14px;
    line-height: 1.5;
}

.form-success strong { color: #86efac; }

/* =========================================================
   Footer
   ========================================================= */

.footer {
    border-top: 1px solid var(--border);
    padding: 56px 0 32px;
    margin-top: 32px;
}

.footer-inner {
    display: flex;
    flex-direction: column;
    gap: 40px;
    margin-bottom: 40px;
}

.footer-brand .brand-name {
    font-size: 16px;
}

.footer-tag {
    color: var(--text-low);
    font-size: 13px;
    margin: 12px 0 0;
}

.footer-cols {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 32px 24px;
}

.footer-col {
    display: flex;
    flex-direction: column;
    gap: 8px;
}

.footer-col h5 {
    font-family: 'Geist', sans-serif;
    font-size: 12px;
    font-weight: 500;
    letter-spacing: 0.08em;
    text-transform: uppercase;
    color: var(--text-low);
    margin: 0 0 8px;
}

.footer-col a,
.footer-col span {
    font-size: 14px;
    color: var(--text-mid);
    transition: color 0.15s var(--ease);
}

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

.footer-col .muted { color: var(--text-low); font-size: 13px; }

.footer-base {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding-top: 24px;
    border-top: 1px solid var(--border);
    font-size: 13px;
    color: var(--text-low);
    flex-wrap: wrap;
    gap: 12px;
}

.footer-base .muted { font-family: 'JetBrains Mono', monospace; font-size: 12px; }

/* =========================================================
   Mobile sticky CTA
   ========================================================= */

.mobile-cta {
    position: fixed;
    bottom: 16px;
    left: 16px;
    right: 16px;
    z-index: 40;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    padding: 16px 22px;
    background: linear-gradient(180deg, var(--accent-bright), var(--accent));
    color: #fff;
    font-family: 'Geist', sans-serif;
    font-weight: 500;
    font-size: 15px;
    border-radius: 12px;
    box-shadow:
        0 1px 0 0 rgba(255, 255, 255, 0.15) inset,
        0 0 0 1px rgba(79, 138, 255, 0.5),
        0 12px 32px -6px var(--accent-glow),
        0 4px 12px rgba(0, 0, 0, 0.3);
}

.mobile-cta svg { width: 14px; height: 14px; }

/* =========================================================
   Reveal animation (IntersectionObserver-driven)
   ========================================================= */

.reveal {
    opacity: 0;
    transform: translateY(24px);
    transition: opacity 0.7s var(--ease), transform 0.7s var(--ease);
}

.reveal.is-visible {
    opacity: 1;
    transform: none;
}

@media (prefers-reduced-motion: reduce) {
    .reveal { opacity: 1; transform: none; transition: none; }
    .hero-h1 .grad { animation: none; }
    html { scroll-behavior: auto; }
}

/* =========================================================
   Tablet (≥640)
   ========================================================= */

@media (min-width: 640px) {
    :root { --pad: 32px; }

    .section { padding: 96px 0; }

    .hero-actions {
        flex-direction: row;
        justify-content: center;
        max-width: none;
        gap: 14px;
    }
    .hero-actions .btn { width: auto; }

    .trust-grid { grid-template-columns: repeat(4, 1fr); gap: 24px; }

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

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

    .form-row { grid-template-columns: 1fr 1fr; }

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

    .form { padding: 40px 36px; }
}

/* =========================================================
   Desktop (≥1024)
   ========================================================= */

@media (min-width: 1024px) {
    :root { --pad: 40px; }

    body { padding-bottom: 0; }

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

    .nav-inner { height: 72px; }

    .nav-links { display: flex; }

    .menu-btn { display: none; }

    .mobile-cta { display: none; }

    .hero {
        padding: 96px 0 120px;
    }

    .hero-grid {
        display: grid;
        grid-template-columns: 1.05fr 1fr;
        gap: 64px;
        align-items: center;
        text-align: left;
    }

    .hero-copy { text-align: left; max-width: none; }

    .hero-actions {
        justify-content: flex-start;
    }

    .hero-trust {
        justify-content: flex-start;
    }

    .hero-sub { margin-left: 0; margin-right: 0; }

    .hero-visual { max-width: none; justify-self: end; width: 100%; }

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

    .feature { padding: 36px 32px; }

    .pricing-wrap {
        grid-template-columns: 1.6fr 1fr;
        gap: 32px;
    }

    .pricing-card { padding: 48px 44px; }

    .pricing-head {
        flex-direction: row;
        justify-content: space-between;
        align-items: flex-end;
        gap: 24px;
        padding-bottom: 32px;
        margin-bottom: 32px;
    }

    .pricing-list {
        grid-template-columns: 1fr 1fr;
        gap: 14px 32px;
    }

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

    .faq-wrap {
        grid-template-columns: 1fr 1.4fr;
        gap: 80px;
    }

    .faq-head { position: sticky; top: 96px; }

    .faq-item summary { padding: 26px 4px; font-size: 17px; }
}

/* =========================================================
   Large desktop polish (≥1280)
   ========================================================= */

@media (min-width: 1280px) {
    .hero-h1 { font-size: 80px; }
    .section h2 { font-size: 50px; }
}
