/* ── TOKENS ───────────────────────────────────────────────── */
:root {
    --bg: #040D12;
    --bg-raised: #071519;
    --surface: #0d2424;
    --surface-2: #132e2e;
    --border: rgba(147, 177, 166, 0.12);
    --border-hover: rgba(147, 177, 166, 0.28);
    --accent: #93B1A6;
    --accent-dim: rgba(147, 177, 166, 0.18);
    --accent-glow: rgba(147, 177, 166, 0.08);
    --green: #56c896;
    --green-dim: rgba(86, 200, 150, 0.15);
    --text-1: #edf2f0;
    --text-2: #8faaa0;
    --text-3: #5a7a70;
    --radius-sm: 10px;
    --radius-md: 16px;
    --radius-lg: 24px;
    --radius-xl: 32px;
    --transition: 0.25s cubic-bezier(0.4, 0, 0.2, 1);
    --font-head: 'Outfit', sans-serif;
    --font-body: 'DM Sans', sans-serif;
}

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

html {
    scroll-behavior: smooth;
    font-size: 16px;
    overflow-x: hidden;
}

body {
    font-family: var(--font-body);
    background-color: var(--bg);
    color: var(--text-1);
    line-height: 1.6;
    overflow-x: hidden;
    -webkit-font-smoothing: antialiased;
}

::selection {
    background: var(--surface-2);
    color: var(--accent);
}

/* grid texture */
body::before {
    content: '';
    position: fixed;
    inset: 0;
    background-image: linear-gradient(to right, rgba(79, 79, 79, 0.13) 1px, transparent 1px),
    linear-gradient(to bottom, rgba(79, 79, 79, 0.13) 1px, transparent 1px);
    background-size: 54px 54px;
    pointer-events: none;
    z-index: 0;
}

/* scrollbar */
::-webkit-scrollbar {
    width: 6px;
}

::-webkit-scrollbar-track {
    background: var(--bg-raised);
}

::-webkit-scrollbar-thumb {
    background: var(--surface-2);
    border-radius: 99px;
}

::-webkit-scrollbar-thumb:hover {
    background: var(--accent);
}

/* ── LAYOUT HELPERS ──────────────────────────────────────── */
.container {
    max-width: 1160px;
    margin: 0 auto;
    padding: 0 2rem;
}

.section-label {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    font-family: var(--font-body);
    font-size: 0.75rem;
    font-weight: 500;
    letter-spacing: 0.1em;
    text-transform: uppercase;
    color: var(--accent);
    background: var(--accent-dim);
    border: 1px solid var(--border);
    padding: 0.35rem 0.85rem;
    border-radius: 99px;
    margin-bottom: 1.5rem;
}

.section-label::before {
    content: '';
    width: 5px;
    height: 5px;
    border-radius: 50%;
    background: var(--accent);
}

/* ── NAV ─────────────────────────────────────────────────── */
.navbar {
    position: fixed;
    top: 1rem;
    left: 50%;
    transform: translateX(-50%);
    z-index: 1000;
    width: calc(100% - 3rem);
    max-width: 1060px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 0.75rem 1.25rem;
    background: rgba(4, 13, 18, 0.72);
    backdrop-filter: blur(18px);
    -webkit-backdrop-filter: blur(18px);
    border: 1px solid var(--border);
    border-radius: var(--radius-xl);
    transition: background var(--transition), border-color var(--transition);
}

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

.nav-logo {
    font-family: var(--font-head);
    font-weight: 800;
    font-size: 1.3rem;
    color: var(--accent);
    text-decoration: none;
    letter-spacing: -0.02em;
}

.nav-logo span {
    color: var(--text-2);
    font-weight: 400;
}

.nav-links {
    display: flex;
    align-items: center;
    gap: 0.25rem;
    list-style: none;
}

.nav-links a {
    font-family: var(--font-body);
    font-size: 0.9rem;
    font-weight: 400;
    color: var(--text-2);
    text-decoration: none;
    padding: 0.45rem 0.9rem;
    border-radius: var(--radius-sm);
    transition: color var(--transition), background var(--transition);
}

.nav-links a:hover {
    color: var(--text-1);
    background: var(--accent-glow);
}

.nav-actions {
    display: flex;
    align-items: center;
    gap: 0.75rem;
}

.nav-login {
    font-family: var(--font-body);
    font-size: 0.9rem;
    font-weight: 500;
    color: var(--text-2);
    text-decoration: none;
    padding: 0.45rem 0.9rem;
    border-radius: var(--radius-sm);
    transition: color var(--transition);
}

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

.btn-primary {
    display: inline-flex;
    align-items: center;
    gap: 0.4rem;
    font-family: var(--font-body);
    font-size: 0.9rem;
    font-weight: 600;
    color: var(--bg);
    background: var(--accent);
    text-decoration: none;
    padding: 0.5rem 1.1rem;
    border-radius: var(--radius-md);
    border: none;
    cursor: pointer;
    transition: background var(--transition), transform var(--transition), box-shadow var(--transition);
}

.btn-primary:hover {
    background: #b0ccc3;
    transform: translateY(-1px);
    box-shadow: 0 6px 20px rgba(147, 177, 166, 0.25);
}

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

/* hamburger */
.menu-btn {
    width: 44px;
    height: 44px;
    display: none;
    flex-direction: column;
    justify-content: center;
    gap: 6px;
    background: transparent;
    border: none;
    cursor: pointer;
    padding: 0;
}

.menu-btn span {
    width: 24px;
    height: 2px;
    background: #fff;
    border-radius: 999px;
    transition: transform 0.3s ease,
    opacity 0.3s ease,
    width 0.3s ease;
}

/* Open state */
.menu-btn.open span:nth-child(1) {
    transform: translateY(8px) rotate(45deg);
}

.menu-btn.open span:nth-child(2) {
    opacity: 0;
}

.menu-btn.open span:nth-child(3) {
    transform: translateY(-8px) rotate(-45deg);
}

/* Hover effect */
.menu-btn:hover span {
    width: 28px;
}

.hamburger-menu {
    position: fixed;
    top: 6rem;
    left: 1rem;
    right: 1rem;
    background: rgba(7, 21, 25, 0.96);
    backdrop-filter: blur(20px);
    border: 1px solid var(--border);
    border-radius: var(--radius-lg);
    padding: 1rem;
    z-index: 999;
    display: flex;
    flex-direction: column;
    gap: 0.25rem;
    list-style: none;
    opacity: 0;
    visibility: hidden;
    transform: translateY(-30px);
    transition: opacity 0.3s ease-in-out,
    transform 0.3s ease-in-out,
    visibility 0.3s ease-in-out;
}

.hamburger-menu.open {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
}

.hamburger-menu li a {
    display: block;
    padding: 0.75rem 1rem;
    color: var(--text-2);
    text-decoration: none;
    font-family: var(--font-body);
    border-radius: var(--radius-sm);
    transition: color var(--transition), background var(--transition);
}

.hamburger-menu li a:hover {
    color: var(--text-1);
    background: var(--accent-glow);
}

/* ── HERO ────────────────────────────────────────────────── */
.hero {
    position: relative;
    min-height: 100dvh;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    overflow: hidden;
    padding: 8rem 2rem 6rem;
}

.hero-glow {
    position: absolute;
    width: 600px;
    height: 600px;
    border-radius: 50%;
    background: radial-gradient(circle, rgba(24, 61, 61, 0.55) 0%, transparent 70%);
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    pointer-events: none;
}

.hero-glow-2 {
    position: absolute;
    width: 300px;
    height: 300px;
    border-radius: 50%;
    background: radial-gradient(circle, rgba(147, 177, 166, 0.07) 0%, transparent 70%);
    top: 30%;
    right: 15%;
    pointer-events: none;
}

.hero-content {
    position: relative;
    z-index: 1;
    max-width: 760px;
}

.hero-badge {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    font-size: 0.8rem;
    font-weight: 500;
    letter-spacing: 0.05em;
    color: var(--green);
    background: var(--green-dim);
    border: 1px solid rgba(86, 200, 150, 0.2);
    padding: 0.35rem 1rem;
    border-radius: 99px;
    margin-bottom: 2rem;
}

.hero-badge-dot {
    width: 6px;
    height: 6px;
    border-radius: 50%;
    background: var(--green);
    animation: pulse 2s infinite;
}

@keyframes pulse {
    0%, 100% {
        opacity: 0.75;
        transform: scale(0.8);
    }
    50% {
        opacity: 0.5;
        transform: scale(1.6);
    }
}

.hero-title {
    font-family: var(--font-head);
    font-size: clamp(2.6rem, 6vw, 5rem);
    font-weight: 800;
    line-height: 1.1;
    letter-spacing: -0.03em;
    color: var(--text-1);
    text-wrap: balance;
    margin-bottom: 1.5rem;
}

.hero-title .accent-word {
    color: var(--accent);
    position: relative;
}

.hero-subtitle {
    font-family: var(--font-body);
    font-size: clamp(1rem, 2vw, 1.2rem);
    font-weight: 400;
    color: var(--text-2);
    max-width: 540px;
    margin: 0 auto 2.5rem;
    line-height: 1.65;
    text-wrap: pretty;
}

.hero-cta-row {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 1rem;
    flex-wrap: wrap;
}

.btn-ghost {
    display: inline-flex;
    align-items: center;
    gap: 0.4rem;
    font-family: var(--font-body);
    font-size: 0.9rem;
    font-weight: 500;
    color: var(--text-2);
    text-decoration: none;
    padding: 0.5rem 1.1rem;
    border: 1px solid var(--border);
    border-radius: var(--radius-md);
    transition: color var(--transition), border-color var(--transition), background var(--transition);
    cursor: pointer;
    background: none;
}

.btn-ghost:hover {
    color: var(--text-1);
    border-color: var(--border-hover);
    background: var(--accent-glow);
}

.hero-sub-note {
    margin-top: 1.5rem;
    font-size: 0.8rem;
    color: var(--text-3);
}

/* ── SOCIAL PROOF BAR ────────────────────────────────────── */
.proof-bar {
    padding: 1.5rem 2rem;
    border-top: 1px solid var(--border);
    border-bottom: 1px solid var(--border);
    background: rgba(7, 21, 25, 0.4);
}

.proof-bar-inner {
    max-width: 1160px;
    margin: 0 auto;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 3rem;
    flex-wrap: wrap;
}

.proof-item {
    display: flex;
    align-items: center;
    gap: 0.6rem;
    font-size: 0.85rem;
    color: var(--text-2);
}

.proof-item svg {
    color: var(--accent);
}

/* ── FEATURES ────────────────────────────────────────────── */
.features-section {
    padding: 8rem 2rem;
    position: relative;
}

.features-header {
    text-align: center;
    max-width: 600px;
    margin: 0 auto 5rem;
}

.section-title {
    font-family: var(--font-head);
    font-size: clamp(1.8rem, 3.5vw, 2.8rem);
    font-weight: 700;
    letter-spacing: -0.03em;
    color: var(--text-1);
    line-height: 1.2;
    text-wrap: balance;
    margin-bottom: 1rem;
}

.section-desc {
    font-size: 1rem;
    color: var(--text-2);
    line-height: 1.65;
}

.features-bento {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    grid-template-rows: auto auto;
    gap: 1rem;
    max-width: 1060px;
    margin: 0 auto;
}

.feature-card {
    background: linear-gradient(135deg, rgba(24, 61, 61, 0.3) 0%, rgba(4, 13, 18, 0.4) 100%);
    border: 1px solid var(--border);
    border-radius: var(--radius-lg);
    padding: 2rem;
    transition: border-color var(--transition), background var(--transition), transform var(--transition);
    position: relative;
    overflow: hidden;
}

.feature-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 1px;
    background: linear-gradient(90deg, transparent, rgba(147, 177, 166, 0.3), transparent);
}

.feature-card:hover {
    border-color: var(--border-hover);
    background: linear-gradient(135deg, rgba(24, 61, 61, 0.45) 0%, rgba(4, 13, 18, 0.5) 100%);
    transform: translateY(-3px);
}

.feature-card.wide {
    grid-column: span 2;
}

.feature-card.tall {
    grid-row: span 2;
}

.feature-card.full-wide {
    grid-column: span 3 / span 3;
}

.feature-icon {
    width: 44px;
    height: 44px;
    border-radius: var(--radius-sm);
    background: var(--accent-dim);
    border: 1px solid var(--border);
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 1.25rem;
    color: var(--accent);
}

.feature-title {
    font-family: var(--font-head);
    font-size: 1.15rem;
    font-weight: 600;
    color: var(--text-1);
    margin-bottom: 0.5rem;
    letter-spacing: -0.02em;
}

.feature-desc {
    font-size: 0.9rem;
    color: var(--text-2);
    line-height: 1.55;
}

.feature-bullets {
    margin-top: 1.25rem;
    display: flex;
    flex-direction: column;
    gap: 0.5rem;
}

.feature-bullet {
    display: flex;
    align-items: center;
    gap: 0.6rem;
    font-size: 0.85rem;
    color: var(--text-2);
}

.feature-bullet::before {
    content: '';
    width: 5px;
    height: 5px;
    border-radius: 50%;
    background: var(--accent);
    flex-shrink: 0;
}

/* vs strip */
.vs-section {
    padding: 6rem 2rem;
    text-align: center;
}

.vs-table {
    display: grid;
    grid-template-columns: 1fr 1fr 1fr;
    gap: 0;
    max-width: 860px;
    margin: 3rem auto 0;
    border: 1px solid var(--border);
    border-radius: var(--radius-lg);
    overflow: hidden;
}

.vs-row {
    display: contents; /* Let cells be direct grid children */
}

.vs-header {
    font-family: var(--font-head);
    font-size: 0.8rem;
    font-weight: 600;
    letter-spacing: 0.06em;
    text-transform: uppercase;
    color: var(--text-3);
    padding: 1.25rem 1.5rem;
    background: var(--surface);
    border-bottom: 1px solid var(--border);
}

.vs-header.highlight {
    background: var(--surface-2);
    color: var(--accent);
}

.vs-row {
    display: contents;
}

.vs-cell {
    padding: 1rem 1.5rem;
    font-size: 0.9rem;
    color: var(--text-2);
    border-bottom: 1px solid var(--border);
    background: rgba(7, 21, 25, 0.4);
}

.vs-cell.highlight {
    background: rgba(13, 36, 36, 0.6);
    color: var(--text-1);
}

.vs-cell:last-child, .vs-header:last-child {
    border-right: none;
}

.check {
    color: var(--green);
}

.cross {
    color: var(--text-3);
}

/* ── PRICING ─────────────────────────────────────────────── */
.pricing-section {
    padding: 8rem 2rem;
    position: relative;
}

.pricing-header {
    text-align: center;
    max-width: 560px;
    margin: 0 auto 4rem;
}

.pricing-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 1.25rem;
    max-width: 840px;
    margin: 0 auto;
}

.pricing-card {
    border-radius: var(--radius-xl);
    padding: 2.25rem;
    border: 1px solid var(--border);
    background: linear-gradient(145deg, rgba(13, 36, 36, 0.5) 0%, rgba(4, 13, 18, 0.6) 100%);
    position: relative;
    overflow: hidden;
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
    transition: border-color var(--transition), transform var(--transition);
}

.pricing-card:hover {
    border-color: var(--border-hover);
    transform: translateY(-2px);
}

.pricing-card.featured {
    border-color: rgba(147, 177, 166, 0.3);
    background: linear-gradient(145deg, rgba(24, 61, 61, 0.5) 0%, rgba(4, 13, 18, 0.65) 100%);
}

.pricing-card.featured::before {
    content: '';
    position: absolute;
    inset: 0;
    border-radius: inherit;
    background: linear-gradient(145deg, rgba(147, 177, 166, 0.06), transparent);
    pointer-events: none;
}

.pricing-badge {
    position: absolute;
    top: 1.25rem;
    right: 1.25rem;
    font-size: 0.72rem;
    font-weight: 600;
    letter-spacing: 0.05em;
    text-transform: uppercase;
    padding: 0.3rem 0.75rem;
    border-radius: 99px;
    background: var(--accent-dim);
    color: var(--accent);
    border: 1px solid var(--border);
}

.pricing-badge.green {
    background: var(--green-dim);
    color: var(--green);
    border-color: rgba(86, 200, 150, 0.2);
}

.pricing-plan-name {
    font-family: var(--font-head);
    font-size: 1.1rem;
    font-weight: 600;
    color: var(--text-1);
    letter-spacing: -0.02em;
}

.pricing-plan-desc {
    font-size: 0.85rem;
    color: var(--text-2);
    margin-top: 0.25rem;
}

.pricing-price {
    font-family: var(--font-head);
    font-size: 2.5rem;
    font-weight: 800;
    color: var(--text-1);
    letter-spacing: -0.04em;
    line-height: 1;
}

.pricing-price sup {
    font-size: 1.2rem;
    font-weight: 600;
    vertical-align: top;
    margin-top: 0.4rem;
    display: inline-block;
}

.pricing-price .period {
    font-size: 1rem;
    font-weight: 400;
    color: var(--text-3);
}

.pricing-note {
    font-size: 0.8rem;
    color: var(--text-3);
    margin-top: 0.3rem;
}

.pricing-divider {
    height: 1px;
    background: var(--border);
}

.pricing-features {
    display: flex;
    flex-direction: column;
    gap: 0.75rem;
    flex: 1;
}

.pricing-feature-item {
    display: flex;
    align-items: flex-start;
    gap: 0.65rem;
    font-size: 0.88rem;
    color: var(--text-2);
}

.pricing-feature-item.active {
    color: var(--text-1);
}

.pricing-feature-item .check-icon {
    width: 18px;
    height: 18px;
    border-radius: 50%;
    background: var(--green-dim);
    border: 1px solid rgba(86, 200, 150, 0.25);
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
    color: var(--green);
    margin-top: 1px;
}

.pricing-feature-item .lock-icon {
    width: 18px;
    height: 18px;
    border-radius: 50%;
    background: rgba(90, 122, 112, 0.1);
    border: 1px solid rgba(90, 122, 112, 0.2);
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
    color: var(--text-3);
    margin-top: 1px;
}

.btn-pricing {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0.4rem;
    font-family: var(--font-body);
    font-size: 0.95rem;
    font-weight: 600;
    text-decoration: none;
    padding: 0.85rem 1.5rem;
    border-radius: var(--radius-md);
    border: none;
    cursor: pointer;
    transition: all var(--transition);
}

.btn-pricing-free {
    color: var(--text-1);
    background: var(--surface-2);
    border: 1px solid var(--border);
}

.btn-pricing-free:hover {
    border-color: var(--border-hover);
    background: var(--surface);
}

.btn-pricing-premium {
    color: var(--bg);
    background: var(--accent);
}

.btn-pricing-premium:hover {
    background: #b0ccc3;
    transform: translateY(-1px);
    box-shadow: 0 6px 20px rgba(147, 177, 166, 0.2);
}

/* ── WAITLIST SECTION ────────────────────────────────────── */
.waitlist-section {
    padding: 7rem 2rem;
    text-align: center;
    position: relative;
}

.waitlist-glow {
    position: absolute;
    width: 500px;
    height: 250px;
    border-radius: 50%;
    background: radial-gradient(ellipse, rgba(24, 61, 61, 0.5) 0%, transparent 70%);
    bottom: 0;
    left: 50%;
    transform: translateX(-50%);
    pointer-events: none;
}

.waitlist-inner {
    position: relative;
    z-index: 1;
    max-width: 500px;
    margin: 0 auto;
}

.waitlist-title {
    font-family: var(--font-head);
    font-size: clamp(1.8rem, 3vw, 2.4rem);
    font-weight: 700;
    letter-spacing: -0.03em;
    margin-bottom: 0.75rem;
}

.waitlist-sub {
    font-size: 1rem;
    color: var(--text-2);
    margin-bottom: 2.5rem;
}

.waitlist-form {
    display: flex;
    gap: 0.75rem;
    flex-wrap: wrap;
    justify-content: center;
}

.waitlist-input {
    flex: 1;
    min-width: 220px;
    max-width: 300px;
    font-family: var(--font-body);
    font-size: 0.9rem;
    color: var(--text-1);
    background: rgba(13, 36, 36, 0.6);
    border: 1px solid var(--border);
    border-radius: var(--radius-md);
    padding: 0.8rem 1.1rem;
    outline: none;
    transition: border-color var(--transition), background var(--transition);
}

.waitlist-input::placeholder {
    color: var(--text-3);
}

.waitlist-input:focus {
    border-color: var(--accent);
    background: rgba(24, 61, 61, 0.3);
}

.waitlist-input.error {
    border-color: #e05c5c;
}

.waitlist-btn {
    font-family: var(--font-body);
    font-size: 0.9rem;
    font-weight: 600;
    color: var(--bg);
    background: var(--accent);
    border: none;
    border-radius: var(--radius-md);
    padding: 0.8rem 1.5rem;
    cursor: pointer;
    transition: background var(--transition), transform var(--transition);
    white-space: nowrap;
}

.waitlist-btn:hover {
    background: #b0ccc3;
    transform: translateY(-1px);
}

.waitlist-btn:active {
    transform: scale(0.98);
}

.waitlist-btn:disabled {
    opacity: 0.6;
    cursor: not-allowed;
    transform: none;
}

.waitlist-msg {
    margin-top: 1rem;
    font-size: 0.85rem;
    min-height: 1.25em;
    transition: opacity 0.3s;
}

.waitlist-msg.success {
    color: var(--green);
}

.waitlist-msg.error {
    color: #e05c5c;
}

#waitlistMobMsg {
    font-size: 0.85rem;
    min-height: 1.25em;
    transition: opacity 0.3s;
}

#waitlistMobMsg.success {
    color: var(--green);
}

#waitlistMobMsg.error {
    color: #e05c5c;
}

/* ── FOOTER ──────────────────────────────────────────────── */
.footer {
    border-top: 1px solid var(--border);
    padding: 3.5rem 2rem 2rem;
    position: relative;
    z-index: 1;
    background: var(--bg);
}

.footer-inner {
    max-width: 1160px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: 1.8fr 1fr 1fr 1fr;
    gap: 3rem;
    padding-bottom: 3rem;
    border-bottom: 1px solid var(--border);
}

.footer-logo {
    font-family: var(--font-head);
    font-size: 1.3rem;
    font-weight: 800;
    color: var(--accent);
    text-decoration: none;
    display: block;
    margin-bottom: 0.75rem;
}

.footer-desc {
    font-size: 0.85rem;
    color: var(--text-3);
    line-height: 1.65;
    max-width: 260px;
    margin-bottom: 1.5rem;
}

.footer-socials {
    display: flex;
    gap: 0.5rem;
}

.footer-social-link {
    width: 36px;
    height: 36px;
    border-radius: var(--radius-sm);
    background: var(--surface);
    border: 1px solid var(--border);
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--text-3);
    text-decoration: none;
    transition: color var(--transition), border-color var(--transition), background var(--transition);
}

.footer-social-link:hover {
    color: var(--accent);
    border-color: var(--border-hover);
    background: var(--accent-glow);
}

.footer-col-title {
    font-family: var(--font-head);
    font-size: 0.8rem;
    font-weight: 600;
    letter-spacing: 0.08em;
    text-transform: uppercase;
    color: var(--text-3);
    margin-bottom: 1rem;
}

.footer-links {
    list-style: none;
    display: flex;
    flex-direction: column;
    gap: 0.6rem;
}

.footer-links a {
    font-size: 0.875rem;
    color: var(--text-2);
    text-decoration: none;
    transition: color var(--transition);
}

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

.footer-bottom {
    max-width: 1160px;
    margin: 2rem auto 0;
    display: flex;
    align-items: center;
    justify-content: space-between;
    flex-wrap: wrap;
    gap: 1rem;
}

.footer-copy {
    font-size: 0.8rem;
    color: var(--text-3);
}

.footer-legal {
    display: flex;
    gap: 1.5rem;
}

.footer-legal a {
    font-size: 0.8rem;
    color: var(--text-3);
    text-decoration: none;
    transition: color var(--transition);
}

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

/* ── ANIMATIONS ──────────────────────────────────────────── */
@keyframes fadeUp {
    from {
        opacity: 0;
        transform: translateY(24px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.fade-up {
    opacity: 0;
    animation: fadeUp 0.65s cubic-bezier(0.4, 0, 0.2, 1) forwards;
}

.delay-1 {
    animation-delay: 0.1s;
}

.delay-2 {
    animation-delay: 0.22s;
}

.delay-3 {
    animation-delay: 0.34s;
}

.delay-4 {
    animation-delay: 0.46s;
}

.delay-5 {
    animation-delay: 0.58s;
}

/* intersection observer reveal */
.reveal {
    opacity: 0;
    transform: translateY(20px);
    transition: opacity 0.6s ease, transform 0.6s ease;
}

.reveal.visible {
    opacity: 1;
    transform: translateY(0);
}

/* ── RESPONSIVE ──────────────────────────────────────────── */
@media (max-width: 900px) {
    .features-bento {
        grid-template-columns: 1fr 1fr;
    }

    .feature-card.wide {
        grid-column: span 2;
    }

    .pricing-grid {
        grid-template-columns: 1fr;
        max-width: 440px;
    }

    /*.footer-inner {*/
    /*    display: grid;*/
    /*    grid-template-columns: repeat(3, 1fr);*/
    /*    grid-template-rows: repeat(2, 1fr);*/
    /*    gap: 2rem;*/
    /*}*/

    /*.footer-inner .footer-brand{*/
    /*    grid-column: span 3 / span 3;*/
    /*}*/

    .feature-card.full-wide {
        grid-column: span 2;
    }

    .vs-table {
        overflow-x: auto;
    }

    .vs-table::-webkit-scrollbar {
        width: 50%;
        height: 2px;
        padding: 0 5rem;
    }
}

@media (max-width: 640px) {
    ::-webkit-scrollbar {
        width: 0;
    }

    .navbar {
        top: 1rem;
        width: calc(100% - 1.5rem);
        border-radius: var(--radius-xl);
        padding: 0.75rem 0 0.75rem 1.25rem;
    }

    .nav-links, .nav-login {
        display: none;
    }

    .hamburger-menu li a {
        font-size: 0.8rem;
    }

    .hero-badge {
        font-size: 0.6rem;
        background: rgba(86, 200, 150, 0.1);
        color: rgba(86, 200, 150, 0.75);
    }

    .hero-badge-dot {
        width: 4px;
        height: 4px;
        border-radius: 50%;
        background: rgba(86, 200, 150, 0.75);
    }

    .hero-title {
        font-size: 2.25rem
    }

    .menu-btn {
        display: flex;
    }

    .st-pricing {
        font-size: 1.5rem;
    }

    .features-bento {
        grid-template-columns: 1fr;
    }

    .feature-card {
        padding: 2rem 1.5rem;
    }

    .feature-card.wide {
        grid-column: span 1;
    }

    .feature-card.full-wide {
        grid-column: span 1;
    }

    .container {
        padding: 0
    }

    .vs-table {
        grid-template-columns: 0.7fr 1fr 1fr;
    }

    .vs-header {
        font-family: var(--font-head);
        font-size: 0.8rem;
        font-weight: 600;
        letter-spacing: 0.06em;
        text-transform: uppercase;
        color: var(--text-3);
        padding: 0.5rem 0.4rem;
        background: var(--surface);
        border-bottom: 1px solid var(--border);
        display: flex;
        align-items: center;
        justify-content: center;
    }

    .vs-cell {
        padding: 0.5rem 0.5rem;
        display: flex;
        align-items: center;
        justify-content: center;
        font-size: 0.8rem;
    }

    .first-row {
        border-right: 1px solid var(--border);
    }

    .check {
        display: none;
    }

    .proof-bar-inner {
        gap: 1.5rem;
        flex-direction: column;
        align-items: flex-start;
        padding-left: 1rem;
    }

    .footer-inner {
        display: grid;
        grid-template-columns: repeat(3, 1fr);
        grid-template-rows: repeat(2, 1fr);
        gap: 2rem;
    }

    .footer-inner .footer-brand{
        grid-column: span 3 / span 3;
    }

    .footer-bottom {
        flex-direction: column;
        align-items: flex-start;
    }

    .footer-desc {
        max-width: 100%
    }

    .hero-cta-row {
        flex-direction: column;
        align-items: center;
    }

    .mobile-primary-btn {
        padding: 0.5rem;
        font-size: 0.8rem;
    }

    .mobile-menu-primary-btn {
        font-size: 1rem;
    }

    .waitlist-glow {
        bottom: 12.5%;
    }

    .nav-logo {
        font-size: 1.1rem
    }
}

@media (max-width: 390px) {
    .navbar {
        top: 1rem;
        width: calc(100% - 1.5rem);
        border-radius: var(--radius-xl);
        padding: 0.75rem 0 0.75rem 1.25rem;
        /*padding-right: 0;*/
    }

    .nav-links, .nav-login {
        display: none;
    }

    .nav-logo {
        font-size: 1.1rem
    }

    .mobile-primary-btn {
        padding: 0.5rem;
        font-size: 0.7rem;
    }

    .mobile-menu-primary-btn {
        font-size: 1rem;
    }

    .hero-title {
        font-size: 2.05rem
    }

    .menu-btn {
        display: flex;
    }

    .features-bento {
        grid-template-columns: 1fr;
    }

    .feature-card.wide {
        grid-column: span 1;
    }

    .feature-card.full-wide {
        grid-column: span 1;
    }

    .container {
        padding: 0
    }

    .proof-bar-inner {
        gap: 1.5rem;
        flex-direction: column;
        align-items: flex-start;
        padding-left: 1rem;
    }

    .footer-inner {
        grid-template-columns: 1fr;
        gap: 2rem;
    }

    .footer-bottom {
        flex-direction: column;
        align-items: flex-start;
    }

    .footer-desc {
        max-width: 100%
    }

    .hero-cta-row {
        flex-direction: column;
        align-items: center;
    }
}

/* ── NOTIFICATION ────────────────────────────────────────── */
.toast {
    position: fixed;
    bottom: 2rem;
    right: 2rem;
    z-index: 9999;
    padding: 0.85rem 1.5rem;
    border-radius: var(--radius-md);
    font-family: var(--font-body);
    font-size: 0.88rem;
    font-weight: 500;
    color: var(--text-1);
    background: var(--surface-2);
    border: 1px solid var(--border);
    box-shadow: 0 8px 32px rgba(0, 0, 0, 0.4);
    opacity: 0;
    transform: translateY(12px);
    transition: opacity 0.3s, transform 0.3s;
    pointer-events: none;
}

.toast.show {
    opacity: 1;
    transform: translateY(0);
    pointer-events: auto;
}

.toast.success {
    border-color: rgba(86, 200, 150, 0.3);
}

.toast.error {
    border-color: rgba(224, 92, 92, 0.3);
}