:root {
    --cream: #faf7f2;
    --warm-white: #ffffff;
    --felt: #1a3a2a;
    --felt-mid: #234d38;
    --felt-light: #2d6147;
    --ink: #0f1a14;
    --charcoal: #2a2a2a;
    --gold: #c9952a;
    --gold-light: #e8b84b;
    --gold-pale: #f5e6c8;
    --green-accent: #2ecc71;
    --red-card: #c0392b;
    --text-body: #3d3d3d;
    --text-muted: #7a7a7a;
    --border: rgba(0,0,0,0.08);
    --shadow-sm: 0 2px 8px rgba(0,0,0,0.06);
    --shadow-md: 0 8px 32px rgba(0,0,0,0.10);
    --shadow-lg: 0 24px 64px rgba(0,0,0,0.13);
    --shadow-xl: 0 40px 100px rgba(0,0,0,0.16);
}

*, *::before, *::after {
    margin: 0; padding: 0; box-sizing: border-box;
}

html { scroll-behavior: smooth; }

body {
    background: var(--cream);
    color: var(--charcoal);
    font-family: 'DM Sans', sans-serif;
    font-weight: 400;
    line-height: 1.65;
    overflow-x: hidden;
}

/* ── Typography ── */
h1, h2, h3, h4 {
    font-family: 'DM Serif Display', serif;
    line-height: 1.15;
    color: var(--ink);
}

.eyebrow {
    font-family: 'DM Sans', sans-serif;
    font-size: 0.72rem;
    font-weight: 600;
    letter-spacing: 0.18em;
    text-transform: uppercase;
    color: var(--gold);
}

/* ── Layout ── */
.container {
    max-width: 1140px;
    margin: 0 auto;
    padding: 0 2rem;
}

/* ── Nav ── */
nav {
    position: fixed;
    top: 0; left: 0; right: 0;
    z-index: 200;
    padding: 1.1rem 0;
    background: rgba(250,247,242,0.9);
    backdrop-filter: blur(14px);
    border-bottom: 1px solid var(--border);
    transition: box-shadow 0.3s;
}

nav.scrolled { box-shadow: var(--shadow-sm); }

.nav-inner {
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.logo {
    display: flex;
    align-items: center;
    gap: 0.55rem;
    text-decoration: none;
}

.logo-suit {
    width: 34px; height: 34px;
    background: var(--felt);
    border-radius: 8px;
    display: flex; align-items: center; justify-content: center;
    font-size: 1rem;
    color: var(--gold-light);
    box-shadow: 0 2px 8px rgba(26,58,42,0.22);
}

.logo-text {
    font-family: 'DM Serif Display', serif;
    font-size: 1.2rem;
    color: var(--ink);
}

.logo-text span { color: var(--gold); }

.nav-links {
    display: flex;
    align-items: center;
    gap: 2rem;
    list-style: none;
}

.nav-links a {
    text-decoration: none;
    color: var(--text-body);
    font-size: 0.9rem;
    font-weight: 500;
    transition: color 0.2s;
}

.nav-links a:hover { color: var(--felt); }

.btn {
    display: inline-flex;
    align-items: center;
    gap: 0.4rem;
    padding: 0.65rem 1.4rem;
    border-radius: 8px;
    font-family: 'DM Sans', sans-serif;
    font-size: 0.9rem;
    font-weight: 600;
    text-decoration: none;
    cursor: pointer;
    border: none;
    transition: all 0.25s;
    white-space: nowrap;
}

.btn-felt {
    background: var(--felt);
    color: #fff;
    box-shadow: 0 2px 12px rgba(26,58,42,0.25);
}

.btn-felt:hover {
    background: var(--felt-mid);
    transform: translateY(-1px);
    box-shadow: 0 6px 20px rgba(26,58,42,0.3);
}

.btn-gold {
    background: var(--gold);
    color: #fff;
    box-shadow: 0 2px 12px rgba(201,149,42,0.35);
}

.btn-gold:hover {
    background: var(--gold-light);
    transform: translateY(-1px);
    box-shadow: 0 6px 20px rgba(201,149,42,0.4);
}

.btn-outline {
    background: transparent;
    border: 1.5px solid var(--felt);
    color: var(--felt);
}

.btn-outline:hover {
    background: var(--felt);
    color: #fff;
}

.btn-lg {
    padding: 0.85rem 2rem;
    font-size: 1rem;
    border-radius: 10px;
}

/* ── Hero ── */
.hero {
    padding-top: 130px;
    padding-bottom: 80px;
    position: relative;
    overflow: hidden;
}

.hero-bg {
    position: absolute;
    inset: 0;
    background:
        radial-gradient(ellipse 60% 50% at 70% 40%, rgba(26,58,42,0.07) 0%, transparent 70%),
        radial-gradient(ellipse 40% 40% at 20% 70%, rgba(201,149,42,0.06) 0%, transparent 70%);
    pointer-events: none;
}

/* Felt texture strip */
.hero-felt-strip {
    position: absolute;
    top: 0; left: 0; right: 0;
    height: 5px;
    background: linear-gradient(90deg, var(--felt), var(--gold), var(--felt));
}

.hero-inner {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 5rem;
    align-items: center;
    position: relative;
}

.hero-badge {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    background: var(--gold-pale);
    border: 1px solid rgba(201,149,42,0.25);
    border-radius: 50px;
    padding: 0.35rem 1rem;
    font-size: 0.8rem;
    font-weight: 500;
    color: var(--gold);
    margin-bottom: 1.5rem;
}

.hero-badge .dot {
    width: 6px; height: 6px;
    background: var(--green-accent);
    border-radius: 50%;
    animation: pulse 2s infinite;
}

@keyframes pulse {
    0%, 100% { opacity: 1; transform: scale(1); }
    50% { opacity: 0.6; transform: scale(1.3); }
}

.hero h1 {
    font-size: clamp(2.6rem, 4vw, 3.8rem);
    margin-bottom: 1.25rem;
}

.hero h1 em {
    font-style: italic;
    color: var(--felt);
}

.hero-sub {
    font-size: 1.1rem;
    color: var(--text-muted);
    margin-bottom: 2.5rem;
    max-width: 480px;
    font-weight: 300;
}

.hero-cta {
    display: flex;
    gap: 1rem;
    align-items: center;
    flex-wrap: wrap;
    margin-bottom: 2.5rem;
}

.hero-trust {
    display: flex;
    align-items: center;
    gap: 1.5rem;
    font-size: 0.82rem;
    color: var(--text-muted);
}

.hero-trust-item {
    display: flex;
    align-items: center;
    gap: 0.35rem;
}

.hero-trust-item svg {
    color: var(--green-accent);
}

/* Screenshot showcase */
.hero-visual {
    position: relative;
}

.screenshot-stack {
    position: relative;
}

.screenshot-main {
    width: 100%;
    border-radius: 14px;
    box-shadow: var(--shadow-xl);
    border: 1px solid rgba(0,0,0,0.08);
    display: block;
}

.screenshot-float {
    position: absolute;
    border-radius: 10px;
    box-shadow: var(--shadow-lg);
    border: 1px solid rgba(0,0,0,0.08);
}

.float-1 {
    width: 55%;
    bottom: -28px;
    left: -32px;
}

.float-2 {
    width: 42%;
    top: -24px;
    right: -24px;
}

/* stat pill floating */
.stat-pill {
    position: absolute;
    background: white;
    border-radius: 10px;
    padding: 0.55rem 0.9rem;
    box-shadow: var(--shadow-md);
    display: flex;
    align-items: center;
    gap: 0.5rem;
    font-size: 0.78rem;
    font-weight: 600;
    border: 1px solid var(--border);
    white-space: nowrap;
    animation: floatUp 3s ease-in-out infinite;
}

.stat-pill.p1 {
    top: 22%;
    right: -18px;
    animation-delay: 0s;
}

.stat-pill.p2 {
    bottom: 15%;
    right: -12px;
    animation-delay: 1.5s;
}

@keyframes floatUp {
    0%, 100% { transform: translateY(0); }
    50% { transform: translateY(-6px); }
}

.stat-dot {
    width: 8px; height: 8px;
    border-radius: 50%;
}

/* ── Sites Marquee ── */
.sites-bar {
    background: var(--felt);
    padding: 1rem 0;
    overflow: hidden;
}

.marquee-track {
    display: flex;
    gap: 3rem;
    animation: marquee 22s linear infinite;
    width: max-content;
}

@keyframes marquee {
    from { transform: translateX(0); }
    to { transform: translateX(-50%); }
}

.marquee-item {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    color: rgba(255,255,255,0.7);
    font-size: 0.85rem;
    font-weight: 500;
    white-space: nowrap;
}

.marquee-item span { color: var(--gold-light); }

/* ── Section Shared ── */
.section {
    padding: 7rem 0;
}

.section-alt {
    background: #fff;
}

.section-dark {
    background: var(--ink);
    color: #fff;
}

.section-header {
    text-align: center;
    max-width: 600px;
    margin: 0 auto 4.5rem;
}

.section-header h2 {
    font-size: clamp(2rem, 3vw, 2.8rem);
    margin: 0.5rem 0 1rem;
}

.section-header p {
    color: var(--text-muted);
    font-size: 1.05rem;
    font-weight: 300;
}

.section-dark .section-header h2 { color: #fff; }
.section-dark .section-header p { color: rgba(255,255,255,0.55); }

/* ── Flow Features (alternating) ── */
.flow-feature {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 5rem;
    align-items: center;
    padding: 6rem 0;
    border-bottom: 1px solid var(--border);
}

.flow-feature:last-child { border-bottom: none; }
.flow-feature.flip .feature-img { order: 2; }
.flow-feature.flip .feature-text { order: 1; }

.feature-img img {
    width: 100%;
    border-radius: 14px;
    box-shadow: var(--shadow-xl);
    border: 1px solid rgba(0,0,0,0.07);
    display: block;
    transition: transform 0.4s ease;
}

.feature-img img:hover {
    transform: scale(1.015) translateY(-4px);
}

.feature-text .eyebrow { margin-bottom: 0.75rem; display: block; }

.feature-text h2 {
    font-size: clamp(1.8rem, 2.5vw, 2.4rem);
    margin-bottom: 1.1rem;
}

.feature-text p {
    color: var(--text-muted);
    font-size: 1rem;
    margin-bottom: 1.8rem;
    font-weight: 300;
    line-height: 1.7;
}

/* Checkmark list */
.check-list {
    list-style: none;
    display: flex;
    flex-direction: column;
    gap: 0.65rem;
}

.check-list li {
    display: flex;
    align-items: flex-start;
    gap: 0.65rem;
    font-size: 0.93rem;
    color: var(--text-body);
    font-weight: 400;
}

.check-list li::before {
    content: '';
    width: 18px;
    height: 18px;
    min-width: 18px;
    background: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 20 20' fill='%231a3a2a'%3E%3Ccircle cx='10' cy='10' r='10' fill='%23e8f5ee'/%3E%3Cpath d='M6 10l3 3 5-5' stroke='%231a3a2a' stroke-width='1.8' stroke-linecap='round' stroke-linejoin='round' fill='none'/%3E%3C/svg%3E") center/contain no-repeat;
    margin-top: 2px;
}

/* ── Stats Pill Grid ── */
.stat-pills-grid {
    display: flex;
    flex-wrap: wrap;
    gap: 0.5rem;
    margin-top: 1.5rem;
}

.s-pill {
    background: var(--cream);
    border: 1px solid var(--border);
    border-radius: 6px;
    padding: 0.3rem 0.65rem;
    font-size: 0.75rem;
    font-weight: 600;
    color: var(--felt);
    font-family: 'DM Mono', monospace;
    letter-spacing: 0.04em;
}

.s-pill.highlight {
    background: var(--felt);
    color: var(--gold-light);
    border-color: var(--felt);
}

/* ── Feature Cards Grid ── */
.cards-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 1.5rem;
}

.feat-card {
    background: white;
    border-radius: 14px;
    padding: 2rem;
    border: 1px solid var(--border);
    box-shadow: var(--shadow-sm);
    transition: all 0.3s;
    position: relative;
    overflow: hidden;
}

.feat-card::before {
    content: '';
    position: absolute;
    top: 0; left: 0; right: 0;
    height: 3px;
    background: var(--felt);
    transform: scaleX(0);
    transform-origin: left;
    transition: transform 0.3s;
}

.feat-card:hover {
    transform: translateY(-4px);
    box-shadow: var(--shadow-md);
}

.feat-card:hover::before { transform: scaleX(1); }

.card-icon {
    width: 46px; height: 46px;
    background: rgba(26,58,42,0.08);
    border-radius: 10px;
    display: flex; align-items: center; justify-content: center;
    font-size: 1.3rem;
    margin-bottom: 1.25rem;
}

.feat-card h3 {
    font-family: 'DM Sans', sans-serif;
    font-size: 1rem;
    font-weight: 600;
    margin-bottom: 0.6rem;
    color: var(--ink);
}

.feat-card p {
    font-size: 0.88rem;
    color: var(--text-muted);
    line-height: 1.6;
}

/* ── Street Filter Diagram ── */
.street-demo {
    background: white;
    border-radius: 16px;
    padding: 2rem;
    border: 1px solid var(--border);
    box-shadow: var(--shadow-md);
}

/* Demo control row: street buttons + checkbox (mirrors the app popup) */
.demo-controls {
    display: flex;
    align-items: center;
    gap: 0.6rem;
    margin-bottom: 1.25rem;
    flex-wrap: wrap;
}

.street-btns {
    display: flex;
    gap: 0.4rem;
}

.street-btn {
    padding: 0.4rem 0.85rem;
    border-radius: 6px;
    font-size: 0.78rem;
    font-weight: 700;
    cursor: pointer;
    transition: all 0.2s;
    color: var(--text-muted);
    background: var(--cream);
    border: 1.5px solid var(--border);
    user-select: none;
    font-family: 'DM Mono', monospace;
    letter-spacing: 0.05em;
}

.street-btn:hover { border-color: rgba(26,58,42,0.25); }

.street-btn.active.flop  { background: #f0a030; border-color: #f0a030; color: #1a1208; }
.street-btn.active.turn  { background: #ff6644; border-color: #ff6644; color: #2a0d08; }
.street-btn.active.river { background: #aa66ff; border-color: #aa66ff; color: #1a0833; }

.filter-check {
    display: flex;
    align-items: center;
    gap: 0.4rem;
    margin-left: 0.4rem;
    font-size: 0.78rem;
    font-weight: 600;
    color: var(--text-muted);
    cursor: pointer;
    user-select: none;
}

.filter-check input {
    width: 16px;
    height: 16px;
    accent-color: var(--felt);
    cursor: pointer;
}

.filter-check.enabled { color: var(--felt); }

/* Section headers inside the demo */
.demo-section-label {
    font-size: 0.72rem;
    color: var(--text-muted);
    font-weight: 600;
    letter-spacing: 0.08em;
    text-transform: uppercase;
    margin-bottom: 0.4rem;
}

.demo-section { margin-bottom: 0.85rem; }
.demo-section:last-child { margin-bottom: 0; }

/* Stat chips that carry a value */
.v-pill {
    display: inline-flex;
    align-items: baseline;
    gap: 0.25rem;
    background: var(--cream);
    border: 1px solid var(--border);
    border-radius: 6px;
    padding: 0.3rem 0.6rem;
    font-size: 0.75rem;
    font-weight: 600;
    color: var(--felt);
    font-family: 'DM Mono', monospace;
    letter-spacing: 0.02em;
    transition: background 0.25s, border-color 0.25s, color 0.25s;
}

.v-pill .v-label { opacity: 0.7; }
.v-pill .v-num { font-weight: 700; }

/* Subtle highlight for values that recalculated to street-specific figures */
.v-pill.changed {
    background: var(--gold-pale);
    border-color: rgba(201,149,42,0.45);
    color: #8a6515;
}

.v-pill.changed .v-num { color: var(--gold); }

.pill-wrap {
    display: flex;
    flex-wrap: wrap;
    gap: 0.4rem;
}

/* ── Position Filter Demo ── */
.pos-demo {
    background: white;
    border-radius: 14px;
    padding: 1.5rem;
    border: 1px solid var(--border);
    box-shadow: var(--shadow-sm);
}

.pos-tabs {
    display: flex;
    gap: 0.35rem;
    flex-wrap: wrap;
    margin-bottom: 1.25rem;
}

.pos-tab {
    padding: 0.3rem 0.7rem;
    border-radius: 6px;
    font-size: 0.78rem;
    font-weight: 600;
    cursor: pointer;
    border: 1.5px solid var(--border);
    color: var(--text-muted);
    transition: all 0.2s;
}

.pos-tab.active {
    border-color: var(--felt);
    background: var(--felt);
    color: white;
}

/* ── Sites Section ── */
.sites-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 1rem;
}

.site-card {
    background: white;
    border-radius: 12px;
    padding: 1.25rem;
    text-align: center;
    border: 1px solid var(--border);
    box-shadow: var(--shadow-sm);
    transition: all 0.25s;
}

.site-card:hover {
    transform: translateY(-3px);
    box-shadow: var(--shadow-md);
    border-color: rgba(26,58,42,0.15);
}

.site-icon {
    font-size: 1.6rem;
    margin-bottom: 0.5rem;
}

.site-card h4 {
    font-family: 'DM Sans', sans-serif;
    font-size: 0.85rem;
    font-weight: 600;
    color: var(--ink);
    margin-bottom: 0.15rem;
}

.site-card p {
    font-size: 0.73rem;
    color: var(--text-muted);
}

/* ── Pricing ── */
.pricing-wrap {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 2rem;
    max-width: 860px;
    margin: 0 auto;
}

.price-card {
    background: white;
    border-radius: 18px;
    padding: 2.5rem;
    border: 1.5px solid var(--border);
    box-shadow: var(--shadow-md);
    position: relative;
}

.price-card.featured {
    border-color: var(--felt);
    box-shadow: 0 8px 40px rgba(26,58,42,0.15);
}

.featured-tag {
    position: absolute;
    top: -12px;
    left: 50%;
    transform: translateX(-50%);
    background: var(--felt);
    color: var(--gold-light);
    font-size: 0.72rem;
    font-weight: 700;
    letter-spacing: 0.1em;
    text-transform: uppercase;
    padding: 4px 14px;
    border-radius: 20px;
}

.price-label {
    font-size: 0.8rem;
    font-weight: 600;
    color: var(--text-muted);
    margin-bottom: 1rem;
    text-transform: uppercase;
    letter-spacing: 0.1em;
}

.price-amount {
    display: flex;
    align-items: flex-end;
    gap: 0.75rem;
    margin-bottom: 0.4rem;
}

.price-num {
    font-family: 'DM Serif Display', serif;
    font-size: 3rem;
    color: var(--ink);
    line-height: 1;
}

.price-strike {
    font-family: 'DM Serif Display', serif;
    font-size: 1.5rem;
    color: var(--text-muted);
    text-decoration: line-through;
    text-decoration-color: var(--red-card);
    line-height: 1.4;
}

.price-note {
    font-size: 0.8rem;
    color: var(--text-muted);
    margin-bottom: 2rem;
}

.price-note.beta-note {
    color: var(--gold);
    font-weight: 500;
    background: var(--gold-pale);
    border: 1px solid rgba(201,149,42,0.2);
    border-radius: 6px;
    padding: 0.4rem 0.7rem;
    display: inline-block;
    margin-bottom: 1.5rem;
}

.price-features {
    list-style: none;
    margin-bottom: 2rem;
    display: flex;
    flex-direction: column;
    gap: 0.65rem;
}

.price-features li {
    display: flex;
    align-items: flex-start;
    gap: 0.55rem;
    font-size: 0.9rem;
    color: var(--text-body);
}

.price-features li .tick {
    color: var(--green-accent);
    font-size: 0.9rem;
    margin-top: 1px;
    font-weight: 700;
}

/* Trial Form */
.trial-section {
    background: var(--felt);
    border-radius: 16px;
    padding: 3rem;
    text-align: center;
    color: white;
    box-shadow: var(--shadow-xl);
    max-width: 600px;
    margin: 4rem auto 0;
}

.trial-section h3 {
    color: white;
    font-size: 1.8rem;
    margin-bottom: 0.5rem;
}

.trial-section p {
    color: rgba(255,255,255,0.65);
    margin-bottom: 2rem;
    font-weight: 300;
}

.trial-form {
    display: flex;
    gap: 0.75rem;
}

.trial-form input {
    flex: 1;
    padding: 0.8rem 1.1rem;
    border-radius: 8px;
    border: 1.5px solid rgba(255,255,255,0.15);
    background: rgba(255,255,255,0.1);
    color: white;
    font-family: 'DM Sans', sans-serif;
    font-size: 0.9rem;
    outline: none;
    transition: border-color 0.2s;
}

.trial-form input::placeholder { color: rgba(255,255,255,0.4); }
.trial-form input:focus { border-color: var(--gold-light); }

.msg-box {
    margin-top: 1rem;
    padding: 0.6rem 1rem;
    border-radius: 6px;
    font-size: 0.88rem;
    display: none;
}

.msg-box.success {
    display: block;
    background: rgba(46, 204, 113, 0.15);
    color: #2ecc71;
    border: 1px solid rgba(46, 204, 113, 0.3);
}

.msg-box.error {
    display: block;
    background: rgba(231, 76, 60, 0.15);
    color: #e74c3c;
    border: 1px solid rgba(231, 76, 60, 0.3);
}

/* ── System Req ── */
.sysreq-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 1.5rem;
}

.sysreq-item {
    text-align: center;
    padding: 1.5rem;
    background: rgba(255,255,255,0.04);
    border-radius: 12px;
    border: 1px solid rgba(255,255,255,0.07);
}

.sysreq-item .req-icon { font-size: 1.8rem; margin-bottom: 0.75rem; }
.sysreq-item .req-label { font-size: 0.72rem; color: rgba(255,255,255,0.4); text-transform: uppercase; letter-spacing: 0.1em; margin-bottom: 0.3rem; }
.sysreq-item .req-val { font-size: 0.9rem; color: rgba(255,255,255,0.85); font-weight: 500; }

/* ── Footer ── */
footer {
    background: var(--ink);
    color: rgba(255,255,255,0.5);
    padding: 3rem 0;
    text-align: center;
    font-size: 0.85rem;
}

footer a {
    color: rgba(255,255,255,0.5);
    text-decoration: none;
    transition: color 0.2s;
}

footer a:hover { color: var(--gold-light); }

.footer-logo {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0.5rem;
    margin-bottom: 1rem;
}

.footer-logo-suit {
    width: 30px; height: 30px;
    background: rgba(255,255,255,0.07);
    border-radius: 7px;
    display: flex; align-items: center; justify-content: center;
    color: var(--gold-light);
    font-size: 0.9rem;
}

/* ── Scroll Reveal ── */
.reveal {
    opacity: 0;
    transform: translateY(28px);
    transition: opacity 0.65s ease, transform 0.65s ease;
}

.reveal.visible {
    opacity: 1;
    transform: translateY(0);
}

.reveal-left {
    opacity: 0;
    transform: translateX(-28px);
    transition: opacity 0.65s ease, transform 0.65s ease;
}

.reveal-left.visible {
    opacity: 1;
    transform: translateX(0);
}

.reveal-right {
    opacity: 0;
    transform: translateX(28px);
    transition: opacity 0.65s ease, transform 0.65s ease;
}

.reveal-right.visible {
    opacity: 1;
    transform: translateX(0);
}

/* Stagger delays */
.d1 { transition-delay: 0.05s; }
.d2 { transition-delay: 0.12s; }
.d3 { transition-delay: 0.19s; }
.d4 { transition-delay: 0.26s; }
.d5 { transition-delay: 0.33s; }
.d6 { transition-delay: 0.40s; }

/* ── Responsive ── */
@media (max-width: 900px) {
    .hero-inner { grid-template-columns: 1fr; gap: 3rem; }
    .flow-feature { grid-template-columns: 1fr; gap: 2.5rem; }
    .flow-feature.flip .feature-img,
    .flow-feature.flip .feature-text { order: unset; }
    .cards-grid { grid-template-columns: 1fr 1fr; }
    .sites-grid { grid-template-columns: repeat(2, 1fr); }
    .pricing-wrap { grid-template-columns: 1fr; }
    .sysreq-grid { grid-template-columns: repeat(2, 1fr); }
}

@media (max-width: 580px) {
    .cards-grid { grid-template-columns: 1fr; }
    .trial-form { flex-direction: column; }
    nav .nav-links { display: none; }
}