/* Garson Marketing — light soft theme */

:root {
    --bg: #faf8f5;
    --bg-soft: #ffffff;
    --bg-section: #f5f0ea;
    --bg-section-blue: #f0f7fc;
    --bg-card: #ffffff;
    --bg-card-hover: #fdfcfb;
    --text: #1c1917;
    --text-muted: #57534e;
    --primary: #9f1239;
    --primary-light: #be123c;
    --primary-soft: rgba(159, 18, 57, 0.08);
    --gold: #a16207;
    --gold-soft: rgba(161, 98, 7, 0.1);
    --child: #0284c7;
    --child-soft: rgba(2, 132, 199, 0.1);
    --staff: #0369a1;
    --staff-soft: rgba(3, 105, 161, 0.08);
    --success: #15803d;
    --border: rgba(28, 25, 23, 0.08);
    --radius: 1rem;
    --radius-lg: 1.35rem;
    --shadow: 0 12px 40px rgba(28, 25, 23, 0.08);
    --shadow-sm: 0 4px 16px rgba(28, 25, 23, 0.06);
    --font: 'Plus Jakarta Sans', system-ui, sans-serif;
    --font-child: 'Nunito', system-ui, sans-serif;
    --header-h: 72px;
    --transition: 0.25s ease;
}

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

html {
    scroll-behavior: smooth;
    scroll-padding-top: var(--header-h);
}

body {
    margin: 0;
    font-family: var(--font);
    color: var(--text);
    background: var(--bg);
    line-height: 1.65;
    -webkit-font-smoothing: antialiased;
}

img { max-width: 100%; height: auto; display: block; }
a { color: inherit; }

.container {
    max-width: 1140px;
    margin: 0 auto;
    padding: 0 1.25rem;
}

.sr-only {
    position: absolute;
    width: 1px;
    height: 1px;
    padding: 0;
    margin: -1px;
    overflow: hidden;
    clip: rect(0, 0, 0, 0);
    white-space: nowrap;
    border: 0;
}

.skip-link {
    position: absolute;
    top: -100px;
    left: 1rem;
    z-index: 9999;
    padding: 0.5rem 1rem;
    background: var(--primary);
    color: #fff;
    border-radius: 0.5rem;
    font-weight: 700;
    text-decoration: none;
}
.skip-link:focus { top: 1rem; }

/* Header */
.site-header {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 200;
    height: var(--header-h);
    background: rgba(255, 255, 255, 0.88);
    backdrop-filter: blur(14px);
    border-bottom: 1px solid var(--border);
    transition: box-shadow var(--transition);
}

.site-header.scrolled {
    box-shadow: var(--shadow-sm);
}

.header-inner {
    display: flex;
    align-items: center;
    justify-content: space-between;
    height: 100%;
}

.logo {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    font-weight: 800;
    font-size: 1.15rem;
    text-decoration: none;
    color: var(--text);
}

.logo-mark {
    width: 36px;
    height: 36px;
    display: grid;
    place-items: center;
    background: linear-gradient(135deg, var(--primary-light), var(--primary));
    border-radius: 10px;
    font-size: 1rem;
    font-weight: 900;
    color: #fff;
}

.logo-tld { color: var(--primary); font-weight: 700; }

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

.nav a:not(.btn) {
    color: var(--text-muted);
    text-decoration: none;
    font-weight: 600;
    font-size: 0.88rem;
    transition: color var(--transition);
}

.nav a:not(.btn):hover { color: var(--primary); }

.nav-toggle {
    display: none;
    flex-direction: column;
    gap: 5px;
    background: none;
    border: none;
    cursor: pointer;
    padding: 0.5rem;
}

.nav-toggle span {
    display: block;
    width: 22px;
    height: 2px;
    background: var(--text);
    border-radius: 2px;
    transition: var(--transition);
}

/* Buttons */
.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 0.65rem 1.35rem;
    border-radius: 999px;
    font-weight: 700;
    font-size: 0.92rem;
    text-decoration: none;
    border: 2px solid transparent;
    cursor: pointer;
    font-family: inherit;
    transition: transform 0.15s ease, background var(--transition), border-color var(--transition), box-shadow var(--transition);
}

.btn:hover { transform: translateY(-1px); }
.btn-sm { padding: 0.45rem 1rem; font-size: 0.85rem; }
.btn-lg { padding: 0.9rem 1.75rem; font-size: 1rem; }
.btn-primary {
    background: linear-gradient(135deg, var(--primary-light), var(--primary));
    color: #fff;
    box-shadow: 0 4px 16px rgba(159, 18, 57, 0.22);
}
.btn-primary:hover { box-shadow: 0 6px 22px rgba(159, 18, 57, 0.3); }
.btn-outline {
    border-color: var(--border);
    color: var(--text);
    background: var(--bg-soft);
}
.btn-outline:hover { border-color: var(--primary); color: var(--primary); }
.btn-ghost {
    border-color: var(--border);
    color: var(--text);
    background: var(--bg-soft);
}
.btn-ghost:hover { background: var(--bg-section); }
.btn-light { background: #fff; color: var(--primary); }
.btn-ghost-light {
    border: 2px solid rgba(255, 255, 255, 0.55);
    color: #fff;
    background: rgba(255, 255, 255, 0.1);
}
.btn-staff {
    background: linear-gradient(135deg, #0ea5e9, var(--staff));
    color: #fff;
    box-shadow: 0 4px 16px rgba(3, 105, 161, 0.22);
}
.btn-child {
    background: linear-gradient(135deg, #38bdf8, var(--child));
    color: #fff;
    font-family: var(--font-child);
    font-weight: 800;
}
.w-100 { width: 100%; }

/* Hero */
.hero {
    position: relative;
    padding: calc(var(--header-h) + 3.5rem) 0 4rem;
    overflow: hidden;
}

.hero-bg {
    position: absolute;
    inset: 0;
    background:
        radial-gradient(ellipse 70% 55% at 15% 30%, rgba(254, 205, 211, 0.45), transparent),
        radial-gradient(ellipse 55% 45% at 85% 15%, rgba(186, 230, 253, 0.5), transparent),
        radial-gradient(ellipse 50% 40% at 70% 85%, rgba(254, 243, 199, 0.35), transparent),
        var(--bg);
}

.hero-grid {
    position: relative;
    display: grid;
    grid-template-columns: 1.05fr 0.95fr;
    gap: 3rem;
    align-items: center;
}

.hero-pills {
    display: flex;
    flex-wrap: wrap;
    gap: 0.5rem;
    margin-bottom: 1.25rem;
}

.pill {
    display: inline-block;
    padding: 0.35rem 0.85rem;
    border-radius: 999px;
    font-size: 0.72rem;
    font-weight: 700;
    letter-spacing: 0.04em;
    text-transform: uppercase;
    background: var(--bg-soft);
    border: 1px solid var(--border);
    color: var(--text-muted);
}

.pill-gold {
    background: var(--gold-soft);
    border-color: rgba(161, 98, 7, 0.2);
    color: var(--gold);
}

.pill-staff {
    background: var(--staff-soft);
    border-color: rgba(3, 105, 161, 0.15);
    color: var(--staff);
}

.hero h1 {
    font-size: clamp(2.1rem, 4.2vw, 3.1rem);
    line-height: 1.14;
    font-weight: 800;
    margin: 0 0 1.25rem;
    letter-spacing: -0.02em;
    color: var(--text);
}

.hero h1 em {
    font-style: normal;
    color: var(--primary);
}

.lead {
    font-size: 1.08rem;
    color: var(--text-muted);
    max-width: 34rem;
    margin: 0;
}

.hero-cta {
    display: flex;
    flex-wrap: wrap;
    gap: 0.85rem;
    margin: 2rem 0 2rem;
}

.hero-stats {
    display: flex;
    flex-wrap: wrap;
    gap: 1.75rem;
    margin: 0;
}

.hero-stats dt {
    font-size: 1.85rem;
    font-weight: 800;
    color: var(--primary);
    line-height: 1;
}

.hero-stats dd {
    margin: 0.35rem 0 0;
    font-size: 0.85rem;
    color: var(--text-muted);
}

/* Device stack */
.hero-visual {
    position: relative;
    min-height: 400px;
}

.orbit {
    position: absolute;
    border-radius: 50%;
    border: 1px dashed rgba(159, 18, 57, 0.12);
    animation: spin 45s linear infinite;
}

.orbit-1 { width: 320px; height: 320px; top: 50%; left: 50%; transform: translate(-50%, -50%); }
.orbit-2 { width: 240px; height: 240px; top: 50%; left: 50%; transform: translate(-50%, -50%); animation-direction: reverse; animation-duration: 35s; }

@keyframes spin { to { transform: translate(-50%, -50%) rotate(360deg); } }

.device-stack { position: relative; width: 100%; height: 380px; }

.device {
    position: absolute;
    width: 165px;
    background: #1c1917;
    border-radius: 28px;
    padding: 8px;
    box-shadow: var(--shadow);
}

.device-bar {
    width: 48px;
    height: 5px;
    background: #444;
    border-radius: 99px;
    margin: 4px auto 10px;
}

.device-screen {
    border-radius: 20px;
    height: 250px;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    text-align: center;
    padding: 1rem;
    gap: 0.4rem;
}

.device-label {
    font-size: 0.62rem;
    text-transform: uppercase;
    letter-spacing: 0.08em;
    opacity: 0.75;
}

.device-screen strong { font-size: 0.92rem; }
.device-screen small { font-size: 0.7rem; opacity: 0.9; }

.device-adult { top: 20px; left: 0; transform: rotate(-8deg); z-index: 1; }
.device-child { top: 55px; right: 0; transform: rotate(6deg); z-index: 3; }
.device-staff { bottom: 0; left: 50%; transform: translateX(-50%); z-index: 2; width: 150px; }

.adult-screen { background: linear-gradient(160deg, #fecdd3, #fda4af); color: #881337; }
.child-screen { background: linear-gradient(160deg, #bae6fd, #7dd3fc); color: #0c4a6e; font-family: var(--font-child); font-weight: 800; }
.staff-screen { background: linear-gradient(160deg, #e0f2fe, #bae6fd); color: #0c4a6e; }

/* Trust strip */
.trust-strip {
    border-top: 1px solid var(--border);
    border-bottom: 1px solid var(--border);
    background: var(--bg-soft);
    padding: 1.15rem 0;
}

.trust-inner {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    gap: 1rem 2rem;
}

.trust-inner p {
    margin: 0;
    font-weight: 700;
    color: var(--primary);
    font-size: 0.88rem;
    white-space: nowrap;
}

.trust-inner ul {
    list-style: none;
    margin: 0;
    padding: 0;
    display: flex;
    flex-wrap: wrap;
    gap: 0.5rem 1.25rem;
}

.trust-inner li {
    font-size: 0.86rem;
    color: var(--text-muted);
}

.trust-inner li::before {
    content: '•';
    color: var(--primary-light);
    margin-right: 0.45rem;
}

/* Three layers */
.section-layers { padding: 4rem 0; background: var(--bg-soft); }

.layer-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 1.25rem;
}

.layer-card {
    background: var(--bg);
    border: 1px solid var(--border);
    border-radius: var(--radius-lg);
    padding: 1.75rem;
    box-shadow: var(--shadow-sm);
    transition: transform var(--transition), box-shadow var(--transition);
}

.layer-card:hover {
    transform: translateY(-4px);
    box-shadow: var(--shadow);
}

.layer-num {
    display: inline-flex;
    width: 32px;
    height: 32px;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    font-size: 0.85rem;
    font-weight: 800;
    margin-bottom: 1rem;
}

.layer-card.guest .layer-num { background: #fce7f3; color: var(--primary); }
.layer-card.staff .layer-num { background: var(--staff-soft); color: var(--staff); }
.layer-card.back .layer-num { background: var(--gold-soft); color: var(--gold); }

.layer-icon { font-size: 2rem; margin-bottom: 0.5rem; }

.layer-card h3 {
    margin: 0 0 0.5rem;
    font-size: 1.1rem;
    font-weight: 800;
}

.layer-card > p {
    margin: 0 0 1rem;
    color: var(--text-muted);
    font-size: 0.92rem;
}

.layer-card ul {
    margin: 0;
    padding-left: 1.1rem;
    font-size: 0.88rem;
    color: var(--text-muted);
}

.layer-card li { margin-bottom: 0.3rem; }

.layer-card.guest { border-top: 3px solid #fda4af; }
.layer-card.staff { border-top: 3px solid #7dd3fc; }
.layer-card.back { border-top: 3px solid #fcd34d; }

/* Sections */
.section { padding: 4.5rem 0; }

.section-head { margin-bottom: 2.75rem; max-width: 640px; }
.section-head.center { text-align: center; margin-left: auto; margin-right: auto; }

.eyebrow {
    display: inline-block;
    font-size: 0.72rem;
    font-weight: 700;
    letter-spacing: 0.1em;
    text-transform: uppercase;
    color: var(--primary);
    margin-bottom: 0.65rem;
}

.eyebrow-child { color: var(--child); }
.eyebrow-staff { color: var(--staff); }

.section-head h2 {
    font-size: clamp(1.7rem, 3vw, 2.25rem);
    font-weight: 800;
    margin: 0 0 0.85rem;
    letter-spacing: -0.02em;
}

.section-head h2 strong { color: var(--primary); }

.section-lead {
    color: var(--text-muted);
    margin: 0;
    font-size: 1.02rem;
}

/* Unique grid */
.section-first { background: var(--bg-section); }

.unique-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 1.15rem;
}

.unique-card {
    position: relative;
    background: var(--bg-soft);
    border: 1px solid var(--border);
    border-radius: var(--radius-lg);
    padding: 1.65rem;
    box-shadow: var(--shadow-sm);
    transition: border-color var(--transition), transform var(--transition), box-shadow var(--transition);
}

.unique-card:hover {
    border-color: rgba(159, 18, 57, 0.2);
    transform: translateY(-3px);
    box-shadow: var(--shadow);
}

.unique-badge {
    position: absolute;
    top: 1rem;
    right: 1rem;
    font-size: 0.62rem;
    font-weight: 800;
    letter-spacing: 0.06em;
    text-transform: uppercase;
    padding: 0.25rem 0.55rem;
    border-radius: 999px;
    background: var(--gold-soft);
    color: var(--gold);
    border: 1px solid rgba(161, 98, 7, 0.15);
}

.unique-icon { font-size: 2.1rem; margin-bottom: 0.65rem; }

.unique-card h3 {
    margin: 0 0 0.5rem;
    font-size: 1.05rem;
    font-weight: 700;
}

.unique-card p {
    margin: 0;
    color: var(--text-muted);
    font-size: 0.9rem;
}

/* Staff & Ops split sections */
.section-staff { background: var(--bg-section-blue); }
.section-ops { background: var(--bg-soft); }

.split-section {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 3rem;
    align-items: center;
}

.split-copy h2 {
    font-size: clamp(1.65rem, 3vw, 2.1rem);
    font-weight: 800;
    margin: 0 0 1rem;
}

.split-copy > p {
    color: var(--text-muted);
    margin: 0 0 1.35rem;
}

.split-visual { position: relative; }

/* App mock */
.app-mock {
    background: var(--bg-soft);
    border: 1px solid var(--border);
    border-radius: var(--radius-lg);
    padding: 1.5rem;
    box-shadow: var(--shadow);
    max-width: 340px;
    margin: 0 auto;
}

.app-mock-header {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    padding-bottom: 1rem;
    border-bottom: 1px solid var(--border);
    margin-bottom: 1rem;
}

.app-mock-avatar {
    width: 40px;
    height: 40px;
    border-radius: 10px;
    background: linear-gradient(135deg, #0ea5e9, var(--staff));
    display: grid;
    place-items: center;
    font-size: 1.1rem;
}

.app-mock-header strong { display: block; font-size: 0.95rem; }
.app-mock-header small { color: var(--text-muted); font-size: 0.8rem; }

.app-notif {
    display: flex;
    gap: 0.75rem;
    padding: 0.85rem;
    background: #fef2f2;
    border: 1px solid #fecaca;
    border-radius: var(--radius);
    margin-bottom: 0.65rem;
    font-size: 0.85rem;
}

.app-notif.child-notif {
    background: #eff6ff;
    border-color: #bfdbfe;
}

.app-notif strong { display: block; margin-bottom: 0.15rem; }
.app-notif span { color: var(--text-muted); font-size: 0.78rem; }

.app-tabs {
    display: flex;
    gap: 0.35rem;
    margin-top: 1rem;
    padding-top: 1rem;
    border-top: 1px solid var(--border);
}

.app-tab {
    flex: 1;
    text-align: center;
    padding: 0.45rem 0.25rem;
    border-radius: 0.5rem;
    font-size: 0.72rem;
    font-weight: 700;
    color: var(--text-muted);
    background: var(--bg);
}

.app-tab.active {
    background: var(--staff-soft);
    color: var(--staff);
}

/* Ops dashboard mock */
.ops-mock {
    background: var(--bg);
    border: 1px solid var(--border);
    border-radius: var(--radius-lg);
    padding: 1.25rem;
    box-shadow: var(--shadow);
}

.ops-mock-bar {
    display: flex;
    gap: 0.5rem;
    margin-bottom: 1rem;
}

.ops-dot { width: 10px; height: 10px; border-radius: 50%; }
.ops-dot:nth-child(1) { background: #fca5a5; }
.ops-dot:nth-child(2) { background: #fcd34d; }
.ops-dot:nth-child(3) { background: #86efac; }

.ops-row {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 0.65rem;
    margin-bottom: 0.65rem;
}

.ops-stat {
    background: var(--bg-soft);
    border: 1px solid var(--border);
    border-radius: 0.65rem;
    padding: 0.75rem;
    text-align: center;
}

.ops-stat dt {
    font-size: 1.25rem;
    font-weight: 800;
    color: var(--primary);
    line-height: 1;
}

.ops-stat dd {
    margin: 0.25rem 0 0;
    font-size: 0.72rem;
    color: var(--text-muted);
}

.ops-table {
    background: var(--bg-soft);
    border: 1px solid var(--border);
    border-radius: 0.65rem;
    overflow: hidden;
    font-size: 0.78rem;
}

.ops-table-row {
    display: grid;
    grid-template-columns: 1fr auto auto;
    gap: 0.5rem;
    padding: 0.55rem 0.75rem;
    border-bottom: 1px solid var(--border);
    align-items: center;
}

.ops-table-row:last-child { border-bottom: none; }

.ops-badge {
    font-size: 0.65rem;
    font-weight: 700;
    padding: 0.2rem 0.45rem;
    border-radius: 999px;
    background: #dcfce7;
    color: var(--success);
}

.ops-badge.pending { background: #fef3c7; color: var(--gold); }

/* Module tabs */
.module-tabs {
    display: flex;
    flex-wrap: wrap;
    gap: 0.5rem;
    justify-content: center;
    margin-bottom: 1.75rem;
}

.module-tab {
    padding: 0.55rem 1.15rem;
    border-radius: 999px;
    border: 1px solid var(--border);
    background: var(--bg-soft);
    color: var(--text-muted);
    font-family: inherit;
    font-weight: 600;
    font-size: 0.88rem;
    cursor: pointer;
    transition: var(--transition);
}

.module-tab:hover { color: var(--text); border-color: rgba(159, 18, 57, 0.25); }

.module-tab.active {
    background: linear-gradient(135deg, var(--primary-light), var(--primary));
    border-color: transparent;
    color: #fff;
}

.module-panel { animation: fadeIn 0.35s ease; }

@keyframes fadeIn {
    from { opacity: 0; transform: translateY(8px); }
    to { opacity: 1; transform: translateY(0); }
}

.module-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
    gap: 1rem;
}

.module-card {
    background: var(--bg-soft);
    border: 1px solid var(--border);
    border-radius: var(--radius);
    padding: 1.25rem;
    box-shadow: var(--shadow-sm);
    transition: background var(--transition), box-shadow var(--transition);
}

.module-card:hover {
    background: var(--bg-card-hover);
    box-shadow: var(--shadow-sm);
}

.module-card span { font-size: 1.65rem; display: block; margin-bottom: 0.45rem; }
.module-card h4 { margin: 0 0 0.3rem; font-size: 0.98rem; font-weight: 700; }
.module-card p { margin: 0; font-size: 0.86rem; color: var(--text-muted); }

/* Child section */
.section-child {
    background:
        radial-gradient(ellipse 60% 50% at 90% 50%, rgba(186, 230, 253, 0.35), transparent),
        var(--bg);
}

.child-split {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 3rem;
    align-items: center;
}

.child-copy h2 {
    font-size: clamp(1.65rem, 3vw, 2.1rem);
    font-weight: 800;
    margin: 0 0 1rem;
}

.child-copy > p { color: var(--text-muted); margin: 0 0 1.35rem; }

.feature-list {
    list-style: none;
    padding: 0;
    margin: 0 0 1.5rem;
}

.feature-list li {
    padding: 0.5rem 0 0.5rem 1.45rem;
    position: relative;
    border-bottom: 1px solid var(--border);
    font-size: 0.93rem;
    color: var(--text-muted);
}

.feature-list li strong { color: var(--text); }

.feature-list li::before {
    content: '✓';
    position: absolute;
    left: 0;
    color: var(--primary);
    font-weight: 800;
    font-size: 0.85rem;
}

.child-showcase {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 0.65rem;
}

.showcase-tile {
    border-radius: var(--radius);
    padding: 1.15rem 0.65rem;
    text-align: center;
    font-family: var(--font-child);
    font-weight: 800;
    font-size: 0.88rem;
    box-shadow: var(--shadow-sm);
    transition: transform 0.2s ease;
}

.showcase-tile:hover { transform: scale(1.03); }

.t1 { background: linear-gradient(135deg, #fecdd3, #fda4af); color: #881337; }
.t2 { background: linear-gradient(135deg, #fef08a, #fde047); color: #713f12; }
.t3 { background: linear-gradient(135deg, #bbf7d0, #86efac); color: #14532d; }
.t4 { background: linear-gradient(135deg, #ddd6fe, #c4b5fd); color: #4c1d95; }
.t5 { background: linear-gradient(135deg, #fbcfe8, #f9a8d4); color: #831843; grid-column: span 2; }
.t6 { background: linear-gradient(135deg, #bae6fd, #7dd3fc); color: #0c4a6e; }

/* RSVP */
.section-rsvp { background: var(--bg-section); }

.rsvp-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 3rem;
    align-items: center;
}

.rsvp-visual { display: flex; flex-direction: column; gap: 1rem; }

.rsvp-card {
    background: var(--bg-soft);
    border: 1px solid var(--border);
    border-radius: var(--radius-lg);
    padding: 1.35rem;
    box-shadow: var(--shadow-sm);
}

.mock-badge {
    display: inline-block;
    font-size: 0.68rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.06em;
    padding: 0.25rem 0.55rem;
    border-radius: 999px;
    background: var(--primary-soft);
    color: var(--primary);
    margin-bottom: 0.65rem;
}

.mock-badge.host {
    background: var(--child-soft);
    color: var(--child);
}

.mock-invite h3 { margin: 0 0 0.45rem; font-size: 1.1rem; }
.mock-invite p { margin: 0 0 0.85rem; color: var(--text-muted); font-size: 0.88rem; }

.mock-actions { display: flex; gap: 0.5rem; }

.mock-btn {
    flex: 1;
    text-align: center;
    padding: 0.45rem;
    border-radius: 0.5rem;
    font-size: 0.78rem;
    font-weight: 700;
}

.mock-btn.yes { background: #dcfce7; color: var(--success); }
.mock-btn.no { background: var(--bg); color: var(--text-muted); border: 1px solid var(--border); }

.mock-host ul {
    margin: 0;
    padding-left: 1.1rem;
    color: var(--text-muted);
    font-size: 0.9rem;
}

.rsvp-copy h2 {
    font-size: clamp(1.65rem, 3vw, 2.05rem);
    font-weight: 800;
    margin: 0 0 0.85rem;
}

.rsvp-copy > p { color: var(--text-muted); margin: 0 0 1.15rem; }

/* Tech */
.tech-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
    gap: 1rem;
    margin-bottom: 2.25rem;
}

.tech-card {
    background: var(--bg-soft);
    border: 1px solid var(--border);
    border-radius: var(--radius);
    padding: 1.35rem;
    box-shadow: var(--shadow-sm);
}

.tech-card h3 { margin: 0 0 0.5rem; font-size: 1.02rem; }
.tech-card p { margin: 0; color: var(--text-muted); font-size: 0.9rem; }
.tech-card code {
    background: var(--bg-section);
    padding: 0.12rem 0.35rem;
    border-radius: 4px;
    font-size: 0.85em;
}

.compare-box {
    background: var(--bg-soft);
    border: 1px solid var(--border);
    border-radius: var(--radius-lg);
    padding: 1.75rem;
    box-shadow: var(--shadow-sm);
}

.compare-box h3 {
    margin: 0 0 1.15rem;
    text-align: center;
    font-size: 1.1rem;
}

.compare-table { display: flex; flex-direction: column; }

.compare-row {
    display: grid;
    grid-template-columns: 2fr 1fr 1fr;
    gap: 1rem;
    padding: 0.7rem 0;
    border-bottom: 1px solid var(--border);
    font-size: 0.9rem;
    align-items: center;
}

.compare-row span:nth-child(2),
.compare-row span:nth-child(3) { text-align: center; }

.compare-head {
    font-weight: 700;
    color: var(--text-muted);
    font-size: 0.78rem;
    text-transform: uppercase;
    letter-spacing: 0.06em;
}

.compare-row .highlight {
    color: var(--primary);
    font-weight: 700;
}

/* Pricing */
.section-pricing { background: var(--bg-section); }

.pricing-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
    gap: 1.15rem;
    align-items: stretch;
}

.price-card {
    position: relative;
    background: var(--bg-soft);
    border: 1px solid var(--border);
    border-radius: var(--radius-lg);
    padding: 1.85rem 1.65rem;
    display: flex;
    flex-direction: column;
    box-shadow: var(--shadow-sm);
}

.price-card.featured {
    border-color: rgba(159, 18, 57, 0.25);
    box-shadow: var(--shadow);
}

.price-tag {
    position: absolute;
    top: -12px;
    left: 50%;
    transform: translateX(-50%);
    background: var(--primary);
    color: #fff;
    font-size: 0.7rem;
    font-weight: 800;
    padding: 0.28rem 0.8rem;
    border-radius: 999px;
    white-space: nowrap;
}

.price-card h3 { margin: 0 0 0.2rem; font-size: 1.2rem; }

.price-label {
    font-size: 1.35rem;
    font-weight: 800;
    color: var(--primary);
    margin: 0 0 1.15rem;
}

.price-card ul {
    flex: 1;
    margin: 0 0 1.35rem;
    padding-left: 1.1rem;
    color: var(--text-muted);
    font-size: 0.9rem;
}

.price-card li { margin-bottom: 0.35rem; }

/* FAQ */
.faq-wrap { max-width: 720px; }

.faq-list { display: flex; flex-direction: column; gap: 0.65rem; }

.faq-item {
    background: var(--bg-soft);
    border: 1px solid var(--border);
    border-radius: var(--radius);
    overflow: hidden;
    box-shadow: var(--shadow-sm);
}

.faq-item summary {
    padding: 1rem 1.15rem;
    font-weight: 700;
    cursor: pointer;
    list-style: none;
}

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

.faq-item summary::after {
    content: '+';
    float: right;
    font-size: 1.2rem;
    color: var(--primary);
    transition: transform var(--transition);
}

.faq-item[open] summary::after { transform: rotate(45deg); }

.faq-item p {
    margin: 0;
    padding: 0 1.15rem 1rem;
    color: var(--text-muted);
    font-size: 0.9rem;
}

.faq-item code {
    background: var(--bg-section);
    padding: 0.1rem 0.35rem;
    border-radius: 4px;
}

/* CTA */
.cta-band {
    background: linear-gradient(135deg, #fda4af 0%, var(--primary-light) 45%, var(--primary) 100%);
    text-align: center;
    padding: 4rem 0;
    color: #fff;
}

.cta-inner h2 {
    margin: 0 0 0.65rem;
    font-size: clamp(1.65rem, 3vw, 2.1rem);
    font-weight: 800;
}

.cta-inner > p {
    margin: 0 0 1.5rem;
    opacity: 0.95;
    font-size: 1.02rem;
}

.cta-buttons {
    display: flex;
    flex-wrap: wrap;
    gap: 0.75rem;
    justify-content: center;
    margin-bottom: 1.15rem;
}

.cta-meta { margin: 0; font-size: 0.86rem; opacity: 0.9; }
.cta-link { color: #fff; }

/* Footer */
.site-footer {
    padding: 2.75rem 0 1.35rem;
    background: var(--bg-soft);
    border-top: 1px solid var(--border);
}

.footer-grid {
    display: grid;
    grid-template-columns: 2fr 1fr 1fr;
    gap: 2rem;
    margin-bottom: 1.75rem;
}

.footer-brand p {
    margin: 0.65rem 0 0;
    color: var(--text-muted);
    font-size: 0.9rem;
    max-width: 280px;
}

.footer-links {
    display: flex;
    flex-direction: column;
    gap: 0.45rem;
}

.footer-links strong {
    font-size: 0.78rem;
    text-transform: uppercase;
    letter-spacing: 0.06em;
    color: var(--text-muted);
    margin-bottom: 0.3rem;
}

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

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

.footer-bottom {
    padding-top: 1.35rem;
    border-top: 1px solid var(--border);
    text-align: center;
}

.footer-bottom p {
    margin: 0;
    font-size: 0.84rem;
    color: var(--text-muted);
}

/* WhatsApp */
.whatsapp-float {
    position: fixed;
    bottom: 1.5rem;
    right: 1.5rem;
    z-index: 150;
    width: 54px;
    height: 54px;
    border-radius: 50%;
    background: #25d366;
    color: #fff;
    display: grid;
    place-items: center;
    box-shadow: 0 4px 18px rgba(37, 211, 102, 0.35);
    transition: transform 0.2s ease;
}

.whatsapp-float:hover { transform: scale(1.06); }

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

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

/* Responsive */
@media (max-width: 960px) {
    .hero-grid,
    .child-split,
    .rsvp-grid,
    .footer-grid,
    .split-section,
    .layer-grid {
        grid-template-columns: 1fr;
    }

    .hero-visual { min-height: 340px; margin-top: 1rem; }
    .device-adult { left: 5%; }
    .device-child { right: 5%; }

    .rsvp-visual { order: 2; }
    .rsvp-copy { order: 1; }

    .split-visual { order: 2; }
    .split-copy { order: 1; }

    .t5 { grid-column: span 1; }
    .child-showcase { grid-template-columns: repeat(2, 1fr); }
}

@media (max-width: 768px) {
    .nav-toggle { display: flex; }

    .nav {
        position: fixed;
        top: var(--header-h);
        left: 0;
        right: 0;
        background: var(--bg-soft);
        border-bottom: 1px solid var(--border);
        flex-direction: column;
        align-items: stretch;
        padding: 1rem 1.25rem 1.5rem;
        gap: 0;
        transform: translateY(-110%);
        opacity: 0;
        pointer-events: none;
        transition: transform var(--transition), opacity var(--transition);
        box-shadow: var(--shadow);
    }

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

    .nav a:not(.btn) {
        padding: 0.8rem 0;
        border-bottom: 1px solid var(--border);
    }

    .nav .btn { margin-top: 1rem; text-align: center; }

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

    .hero-stats { gap: 1.15rem; }

    .compare-row {
        grid-template-columns: 1.5fr 0.75fr 0.75fr;
        font-size: 0.82rem;
    }

    .trust-inner { flex-direction: column; align-items: flex-start; }
}

@media (max-width: 480px) {
    .hero-cta .btn-lg { width: 100%; }
    .child-showcase { grid-template-columns: 1fr; }
    .module-tabs { justify-content: stretch; }
    .module-tab { flex: 1; text-align: center; min-width: calc(50% - 0.25rem); }
}
