/* === Landing Page — full-bleed layout, transparent navbar overlay === */
.navbar {
    position: absolute;
    top: 0; left: 0; right: 0;
    z-index: 100;
    background: transparent;
    border-bottom: none;
    height: 72px;
}
.navbar .navbar-brand {
    font-size: var(--text-xl);
    gap: 0.75rem;
}
.navbar .navbar-brand .logo {
    width: 36px;
    height: 36px;
}
.navbar .btn-sm {
    font-size: var(--text-base);
    padding: 0.5rem 1rem;
}
.container { max-width: 100%; padding: 0; }

/* === Screen reader only utility === */
.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;
}

/* === Ambient background === */
.landing-bg {
    position: fixed;
    inset: 0;
    z-index: 0;
    overflow: hidden;
    pointer-events: none;
}
.landing-bg .orb {
    position: absolute;
    border-radius: 50%;
    filter: blur(120px);
    opacity: 0.35;
    animation: orbFloat 20s ease-in-out infinite alternate;
}
.landing-bg .orb-1 {
    width: 600px; height: 600px;
    background: radial-gradient(circle, rgba(108,140,255,0.25), transparent 70%);
    top: -200px; right: -100px;
}
.landing-bg .orb-2 {
    width: 500px; height: 500px;
    background: radial-gradient(circle, rgba(74,222,128,0.15), transparent 70%);
    bottom: -150px; left: -100px;
    animation-delay: -10s;
}
.landing-bg .orb-3 {
    width: 350px; height: 350px;
    background: radial-gradient(circle, rgba(156,108,255,0.18), transparent 70%);
    top: 50%; left: 50%;
    transform: translate(-50%, -50%);
    animation-delay: -5s;
}
@keyframes orbFloat {
    0% { transform: translate(0, 0) scale(1); }
    50% { transform: translate(30px, -20px) scale(1.08); }
    100% { transform: translate(-20px, 15px) scale(0.95); }
}

/* === Grid noise overlay === */
.landing-bg::after {
    content: '';
    position: absolute;
    inset: 0;
    background-image: radial-gradient(rgba(255,255,255,0.015) 1px, transparent 1px);
    background-size: 32px 32px;
}

/* === Sections === */
.landing-section {
    position: relative;
    z-index: 1;
    padding: 0 2rem;
}
.landing-inner {
    max-width: 1080px;
    margin: 0 auto;
}
@media (max-width: 768px) {
    .landing-section { padding: 0 1.25rem; }
}

/* === Hero === */
.hero {
    text-align: center;
    padding-top: clamp(5rem, 15vh, 10rem);
    padding-bottom: 5rem;
}
.hero-eyebrow {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    font-size: var(--text-base);
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.1em;
    color: var(--green);
    background: var(--green-bg);
    border: 1px solid var(--green-border);
    border-radius: 100px;
    padding: 0.4375rem 1.25rem;
    margin-bottom: 2rem;
    animation: heroFadeUp 0.8s ease both;
}
.hero-eyebrow::before {
    content: '';
    width: 6px; height: 6px;
    border-radius: 50%;
    background: var(--green);
    box-shadow: 0 0 10px var(--green);
    animation: pulse 2s ease-in-out infinite;
}
.hero h1 {
    font-size: clamp(2.25rem, 5.5vw, 4rem);
    font-weight: 800;
    letter-spacing: -0.035em;
    line-height: 1.1;
    margin-bottom: 1.5rem;
    animation: heroFadeUp 0.8s ease 0.1s both;
}
.hero h1 .gradient-text {
    background: linear-gradient(135deg, var(--accent) 0%, var(--purple) 50%, var(--green-soft) 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}
.hero-sub {
    font-size: clamp(1rem, 2vw, 1.25rem);
    color: var(--text-secondary);
    max-width: 560px;
    margin: 0 auto 2.5rem;
    line-height: 1.6;
    animation: heroFadeUp 0.8s ease 0.2s both;
}
.hero-cta {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 1rem;
    animation: heroFadeUp 0.8s ease 0.3s both;
}
.hero-cta .btn-primary {
    padding: 0.75rem 2rem;
    font-size: var(--text-base);
    font-weight: 600;
    border-radius: var(--radius-sm);
}
.hero-cta .btn-outline {
    padding: 0.75rem 1.5rem;
    font-size: var(--text-base);
    border-radius: var(--radius-sm);
}
@keyframes heroFadeUp {
    from { opacity: 0; transform: translateY(24px); }
    to { opacity: 1; transform: translateY(0); }
}

/* === How It Works === */
.how-section {
    padding: 5rem 0;
}
.section-label {
    font-size: var(--text-xs);
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.12em;
    color: var(--accent);
    text-align: center;
    margin-bottom: 0.75rem;
}
.section-title {
    font-size: clamp(1.5rem, 3vw, 2rem);
    font-weight: 700;
    letter-spacing: -0.03em;
    text-align: center;
    margin-bottom: 3.5rem;
}
.steps-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 1.5rem;
}
@media (max-width: 768px) {
    .steps-grid { grid-template-columns: 1fr; gap: 1.25rem; }
}
.step-card {
    background: var(--bg-card);
    border: 1px solid var(--border);
    border-radius: var(--radius);
    padding: 2rem 1.75rem;
    text-align: center;
    position: relative;
    overflow: hidden;
    transition: all var(--duration-fast) var(--ease-in-out);
}
.step-card::before {
    content: '';
    position: absolute;
    top: 0; left: 0; right: 0;
    height: 1px;
    background: linear-gradient(90deg, transparent, rgba(108,140,255,0.12), transparent);
}
.step-card:hover {
    border-color: rgba(108,140,255,0.15);
    box-shadow: var(--shadow-glow);
    transform: translateY(-2px);
}
.step-number {
    width: 44px; height: 44px;
    border-radius: 12px;
    background: var(--accent-glow);
    border: 1px solid rgba(108,140,255,0.15);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: var(--text-lg);
    font-weight: 700;
    color: var(--accent);
    margin: 0 auto 1.25rem;
}
.step-icon {
    font-size: var(--text-2xl);
    margin-bottom: 0.5rem;
}
.step-card h3 {
    font-size: var(--text-md);
    font-weight: 700;
    letter-spacing: -0.01em;
    margin-bottom: 0.625rem;
    color: var(--text-primary);
}
.step-card p {
    font-size: var(--text-base);
    color: var(--text-secondary);
    line-height: 1.6;
}

/* === Connector lines between steps (desktop) === */
.steps-connector {
    display: none;
}
@media (min-width: 769px) {
    .steps-grid { position: relative; }
    .steps-connector {
        display: block;
        position: absolute;
        top: 3.375rem;
        height: 1px;
        background: linear-gradient(90deg, var(--border), rgba(108,140,255,0.2), var(--border));
    }
    .steps-connector-1 {
        left: calc(33.33% - 0.75rem);
        width: calc(1.5rem);
    }
    .steps-connector-2 {
        left: calc(66.66% - 0.75rem);
        width: calc(1.5rem);
    }
}

/* === Pricing === */
.pricing-section {
    padding: 5rem 0;
}
.pricing-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 1.5rem;
    max-width: 720px;
    margin: 0 auto;
}
@media (max-width: 640px) {
    .pricing-grid { grid-template-columns: 1fr; }
}
.pricing-card {
    background: var(--bg-card);
    border: 1px solid var(--border);
    border-radius: var(--radius);
    padding: 2rem;
    position: relative;
    overflow: hidden;
    transition: all var(--duration-fast) var(--ease-in-out);
}
.pricing-card::before {
    content: '';
    position: absolute;
    top: 0; left: 0; right: 0;
    height: 1px;
    background: linear-gradient(90deg, transparent, rgba(108,140,255,0.1), transparent);
}
.pricing-card:hover {
    border-color: rgba(108,140,255,0.15);
    box-shadow: var(--shadow-glow);
}
.pricing-card.featured {
    border-color: rgba(108,140,255,0.25);
    box-shadow: 0 0 60px rgba(108,140,255,0.08);
}
.pricing-card.featured::before {
    height: 2px;
    background: linear-gradient(90deg, var(--accent), var(--purple), var(--accent));
}
.pricing-tier {
    font-size: var(--text-xs);
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.1em;
    color: var(--text-muted);
    margin-bottom: 0.375rem;
}
.pricing-name {
    font-size: var(--text-xl);
    font-weight: 700;
    letter-spacing: -0.02em;
    margin-bottom: 0.75rem;
}
.pricing-price {
    font-size: var(--text-3xl);
    font-weight: 800;
    letter-spacing: -0.03em;
    margin-bottom: 0.25rem;
}
.pricing-price .unit {
    font-size: var(--text-base);
    font-weight: 500;
    color: var(--text-secondary);
}
.pricing-desc {
    font-size: var(--text-sm);
    color: var(--text-secondary);
    margin-bottom: 1.5rem;
    line-height: 1.6;
}
.pricing-features {
    list-style: none;
    margin-bottom: 1.75rem;
}
.pricing-features li {
    font-size: var(--text-sm);
    color: var(--text-secondary);
    padding: 0.375rem 0;
    display: flex;
    align-items: center;
    gap: 0.625rem;
}
.pricing-features li::before {
    content: '';
    width: 16px; height: 16px;
    border-radius: 50%;
    background: var(--green-bg);
    border: 1px solid var(--green-border);
    flex-shrink: 0;
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='10' height='10' viewBox='0 0 24 24' fill='none' stroke='%234ade80' stroke-width='3'%3E%3Cpolyline points='20 6 9 17 4 12'%3E%3C/polyline%3E%3C/svg%3E");
    background-repeat: no-repeat;
    background-position: center;
}
.beta-badge {
    display: inline-flex;
    align-items: center;
    font-size: var(--text-xs);
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.08em;
    background: var(--accent-glow);
    color: var(--accent);
    border: 1px solid rgba(108,140,255,0.2);
    border-radius: 100px;
    padding: 0.1875rem 0.625rem;
    margin-left: 0.5rem;
}
.price-strike {
    text-decoration: line-through;
    color: var(--text-muted);
    font-weight: 500;
    font-size: var(--text-md);
    margin-right: 0.5rem;
}

/* === Quick Start Form === */
.form-section {
    padding: 5rem 0 6rem;
}
.form-wrapper {
    background: var(--bg-card);
    border: 1px solid var(--border);
    border-radius: var(--radius);
    padding: clamp(2rem, 4vw, 3rem);
    max-width: 560px;
    margin: 0 auto;
    position: relative;
    overflow: hidden;
    box-shadow: var(--shadow);
}
.form-wrapper::before {
    content: '';
    position: absolute;
    top: 0; left: 0; right: 0;
    height: 2px;
    background: linear-gradient(90deg, var(--green-soft), var(--accent), var(--purple));
}

/* === Form field sections === */
.form-field {
    margin-bottom: 1.5rem;
}
.form-field:last-of-type {
    margin-bottom: 2rem;
}
.form-label {
    display: block;
    font-size: var(--text-sm);
    font-weight: 600;
    color: var(--text-primary);
    margin-bottom: 0.375rem;
}
.form-label .required-dot {
    color: var(--accent);
    margin-left: 0.125rem;
}
.form-helper {
    font-size: var(--text-xs);
    color: var(--text-muted);
    margin-bottom: 0.5rem;
    line-height: 1.4;
}
.form-note {
    font-size: var(--text-xs);
    color: var(--text-secondary);
    margin-top: 0.375rem;
    line-height: 1.4;
}
.form-note--accent {
    color: var(--accent);
}

/* === Pill toggles === */
.pill-group {
    display: flex;
    gap: 0.375rem;
    flex-wrap: wrap;
}
/* Accessible hidden: visually hidden but screen-reader accessible */
.pill-group input[type="radio"],
.pill-group input[type="checkbox"] {
    position: absolute;
    width: 1px;
    height: 1px;
    padding: 0;
    margin: -1px;
    overflow: hidden;
    clip: rect(0, 0, 0, 0);
    white-space: nowrap;
    border: 0;
}
.pill-label {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 0.5rem 1.125rem;
    min-height: 44px;
    border-radius: 100px;
    font-size: var(--text-base);
    font-weight: 500;
    color: var(--text-secondary);
    background: var(--bg-input);
    border: 1px solid var(--border);
    cursor: pointer;
    transition: all var(--duration-fast) var(--ease-in-out);
    user-select: none;
    text-transform: none;
    letter-spacing: 0;
    margin: 0;
}
.pill-label:hover {
    border-color: rgba(108,140,255,0.3);
    color: var(--text-primary);
}
/* Focus indicator for keyboard users — visible on dark background */
.pill-group input:focus-visible + .pill-label {
    outline: 2px solid var(--accent);
    outline-offset: 2px;
}
.pill-group input:checked + .pill-label {
    background: var(--accent);
    border-color: var(--accent);
    color: #fff;
    box-shadow: 0 2px 8px rgba(108,140,255,0.35);
    font-weight: 600;
}

/* === Player count pills (wider) === */
.pill-group--players .pill-label {
    min-width: 3rem;
    min-height: 44px;
    text-align: center;
}

/* Date field old styles removed — see .date-picker-display below */

/* === Time range — always visible side by side === */
.time-range-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 0.75rem;
}
.time-range-grid label {
    display: block;
    font-size: var(--text-xs);
    font-weight: 600;
    color: var(--text-muted);
    text-transform: uppercase;
    letter-spacing: 0.04em;
    margin-bottom: 0.375rem;
}
.time-range-grid select {
    width: 100%;
    padding: 0.5rem 0.75rem;
    font-size: var(--text-base);
}

/* === Submit button === */
.btn-monitor {
    width: 100%;
    padding: 0.875rem 1.5rem;
    font-size: var(--text-md);
    font-weight: 600;
    border-radius: var(--radius-sm);
    background: linear-gradient(135deg, var(--accent), var(--accent-hover));
    border: none;
    color: #fff;
    cursor: pointer;
    transition: all var(--duration-fast) var(--ease-in-out);
    position: relative;
    overflow: hidden;
    margin-top: 0.5rem;
}
.btn-monitor:hover {
    box-shadow: 0 6px 24px rgba(108,140,255,0.35);
    transform: translateY(-1px);
}
.btn-monitor:active {
    transform: scale(0.98) translateY(0);
}
.btn-monitor::after {
    content: '';
    position: absolute;
    inset: 0;
    background: linear-gradient(135deg, transparent, rgba(255,255,255,0.08), transparent);
    opacity: 0;
    transition: opacity var(--duration-fast) var(--ease-in-out);
}
.btn-monitor:hover::after { opacity: 1; }
.btn-monitor:focus-visible {
    outline: 2px solid #fff;
    outline-offset: 2px;
    box-shadow: 0 6px 24px rgba(108,140,255,0.35);
}

/* === Global focus styles for form elements on dark background === */
#monitorForm input[type="email"]:focus-visible,
#monitorForm select:focus-visible {
    outline: 2px solid var(--accent);
    outline-offset: 2px;
    border-color: rgba(108,140,255,0.4);
}

/* === SMS Opt-in === */
.sms-optin-wrapper {
    background: var(--bg-elevated);
    border: 1px solid var(--border);
    border-radius: var(--radius-xs);
    padding: 0.875rem 1rem;
    margin-bottom: 0.25rem;
}
.sms-toggle-label {
    display: flex;
    align-items: center;
    gap: 0.625rem;
    cursor: pointer;
    font-size: var(--text-base);
    color: var(--text-secondary);
    user-select: none;
}
.sms-toggle-label input[type="checkbox"] {
    width: 18px;
    height: 18px;
    accent-color: var(--accent);
    cursor: pointer;
    flex-shrink: 0;
}
.sms-phone-row {
    margin-top: 0.75rem;
    animation: fieldIn 0.3s ease;
}
.sms-phone-row .phone-input-wrapper {
    display: flex;
    align-items: stretch;
}
.sms-phone-prefix {
    display: flex;
    align-items: center;
    padding: 0 0.75rem;
    background: var(--bg-card);
    border: 1px solid var(--border);
    border-right: none;
    border-radius: var(--radius-xs) 0 0 var(--radius-xs);
    color: var(--text-muted);
    font-size: var(--text-base);
    font-weight: 500;
}
.sms-phone-row input {
    border-radius: 0 var(--radius-xs) var(--radius-xs) 0 !important;
    font-size: var(--text-base);
    padding: 0.625rem 0.75rem;
}
.sms-consent-text {
    margin-top: 0.625rem;
    font-size: var(--text-xs);
    color: var(--text-muted);
    line-height: 1.6;
}
.sms-consent-text a {
    color: var(--accent);
}

/* === Inline error messages === */
.form-error {
    color: var(--red);
    font-size: var(--text-sm);
    margin-top: 0.375rem;
    line-height: 1.4;
    display: none;
}
.form-error[aria-live] { /* only show when populated */ }
.form-field--error input,
.form-field--error select,
.form-field--error .date-native-input,
.form-field--error .date-picker-display {
    border-color: var(--red) !important;
}

/* === Field divider === */
.form-divider {
    border: none;
    border-top: 1px solid var(--border);
    margin: 0 0 1.5rem;
}

/* === Footer === */
.landing-footer {
    border-top: 1px solid var(--border);
    padding: 2rem;
    text-align: center;
}
.landing-footer p {
    font-size: var(--text-xs);
    color: var(--text-muted);
}
.footer-inner {
    max-width: 1080px;
    margin: 0 auto;
    display: flex;
    align-items: center;
    justify-content: space-between;
}
.footer-brand {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    font-size: var(--text-sm);
    font-weight: 600;
    color: var(--text-secondary);
    text-decoration: none;
}
.footer-brand .logo-sm {
    width: 22px; height: 22px;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}
.footer-brand .logo-sm svg {
    width: 100%;
    height: 100%;
}
@media (max-width: 520px) {
    .footer-inner {
        flex-direction: column;
        gap: 0.75rem;
    }
}

/* === Trust Signals === */
.trust-section {
    padding: 5rem 0 3rem;
}
.trust-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 1.25rem;
    max-width: 860px;
    margin: 0 auto;
}
@media (max-width: 768px) {
    .trust-grid { grid-template-columns: repeat(2, 1fr); gap: 1rem; }
}
@media (max-width: 480px) {
    .trust-grid { grid-template-columns: repeat(2, 1fr); gap: 0.75rem; }
}
.trust-item {
    text-align: center;
    padding: 1.5rem 1rem;
    background: var(--bg-card);
    border: 1px solid var(--border);
    border-radius: var(--radius);
    transition: all var(--duration-fast) var(--ease-in-out);
}
.trust-item:hover {
    border-color: rgba(108,140,255,0.15);
    box-shadow: var(--shadow-glow);
}
.trust-stat {
    font-size: var(--text-2xl);
    font-weight: 800;
    letter-spacing: -0.03em;
    color: var(--accent);
    line-height: 1.2;
    margin-bottom: 0.375rem;
}
.trust-stat--green {
    color: var(--green);
}
.trust-label {
    font-size: var(--text-xs);
    font-weight: 600;
    color: var(--text-muted);
    text-transform: uppercase;
    letter-spacing: 0.06em;
    line-height: 1.4;
}

/* === Testimonials === */
.testimonials-section {
    padding: 3rem 0 2rem;
}
.testimonial-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 1.25rem;
    max-width: 960px;
    margin: 0 auto;
}
@media (max-width: 768px) {
    .testimonial-grid { grid-template-columns: 1fr; gap: 1rem; }
}
.testimonial {
    background: var(--bg-card);
    border: 1px solid var(--border);
    border-radius: var(--radius);
    padding: 1.5rem;
    margin: 0;
    display: flex;
    flex-direction: column;
    gap: 1rem;
}
.testimonial blockquote {
    margin: 0;
    font-size: var(--text-base);
    line-height: var(--leading-relaxed, 1.6);
    color: var(--text-secondary);
}
.testimonial figcaption {
    font-size: var(--text-xs);
    font-weight: 600;
    color: var(--text-muted);
    text-transform: uppercase;
    letter-spacing: 0.06em;
}
/* Placeholder styling — reviewers must see these are unreleased copy. */
.testimonial--placeholder {
    background: rgba(255, 255, 255, 0.02);
    border: 1px dashed var(--border);
}
.testimonial--placeholder blockquote {
    color: var(--text-muted);
    font-style: italic;
}

/* === Inline explainer (e.g., Resident card disclosure) === */
.explainer {
    margin-top: 0.5rem;
    font-size: var(--text-sm);
    color: var(--text-muted);
    line-height: var(--leading-relaxed, 1.6);
}
.explainer > summary {
    cursor: pointer;
    color: var(--text-secondary);
    font-weight: 500;
    padding: 0.25rem 0;
    user-select: none;
}
.explainer > summary:hover {
    color: var(--text-primary);
}
.explainer[open] > summary {
    color: var(--text-primary);
    margin-bottom: 0.375rem;
}
.explainer p {
    margin: 0;
    color: var(--text-muted);
}

/* === FAQ Accordion === */
.faq-section {
    padding: 5rem 0;
}
.faq-list {
    max-width: 720px;
    margin: 0 auto;
}
.faq-item {
    border: 1px solid var(--border);
    border-radius: var(--radius-sm);
    margin-bottom: 0.625rem;
    background: var(--bg-card);
    overflow: hidden;
    transition: border-color var(--duration-fast) var(--ease-in-out);
}
.faq-item:hover {
    border-color: rgba(108,140,255,0.15);
}
.faq-question {
    width: 100%;
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 1rem 1.25rem;
    background: none;
    border: none;
    color: var(--text-primary);
    font-family: inherit;
    font-size: var(--text-base);
    font-weight: 600;
    text-align: left;
    cursor: pointer;
    transition: color var(--duration-fast) var(--ease-in-out);
    letter-spacing: -0.01em;
}
.faq-question:hover {
    color: var(--accent);
}
.faq-question:focus-visible {
    outline: 2px solid var(--accent);
    outline-offset: -2px;
}
.faq-chevron {
    flex-shrink: 0;
    width: 18px;
    height: 18px;
    margin-left: 1rem;
    color: var(--text-muted);
    transition: transform 0.25s ease;
}
.faq-item.open .faq-chevron {
    transform: rotate(180deg);
}
.faq-answer {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.3s ease, padding 0.3s ease;
}
.faq-item.open .faq-answer {
    max-height: 300px;
}
.faq-answer-inner {
    padding: 0 1.25rem 1.125rem;
    font-size: var(--text-base);
    color: var(--text-secondary);
    line-height: 1.7;
}

/* === Footer links === */
.footer-links {
    display: flex;
    align-items: center;
    gap: 0.375rem;
    flex-wrap: wrap;
}
.footer-links a {
    font-size: var(--text-xs);
    color: var(--text-muted);
    text-decoration: none;
    transition: color 0.2s;
}
.footer-links a:hover {
    color: var(--accent);
}
.footer-links .sep {
    color: var(--border);
    font-size: var(--text-xs);
}

/* === Fade-in on scroll === */
.reveal {
    opacity: 0;
    transform: translateY(30px);
    transition: opacity 0.7s ease, transform 0.7s ease;
}
.reveal.visible {
    opacity: 1;
    transform: translateY(0);
}

/* === Mobile: 768px === */
@media (max-width: 768px) {
    .hero { padding-top: clamp(3rem, 10vh, 5rem); padding-bottom: 3rem; }
    .hero-cta { flex-direction: column; gap: 0.75rem; width: 100%; }
    .hero-cta .btn-primary,
    .hero-cta .btn-outline {
        width: 100%;
        padding: 0.875rem 1.5rem;
        min-height: 48px;
    }
    .how-section { padding: 3rem 0; }
    .pricing-section { padding: 3rem 0; }
    .trust-section { padding: 3rem 0 2rem; }
    .form-section { padding: 3rem 0 4rem; }
    .faq-section { padding: 3rem 0; }
    .section-title { margin-bottom: 2rem; }
    .form-wrapper { padding: 1.5rem 1.25rem; }
}

/* === Auto-Book CTA Card — High emphasis === */
.autobook-cta {
    text-align: center;
    margin-top: 1.75rem;
    padding: 1.5rem 1.5rem 1.25rem;
    border-radius: var(--radius);
    background: linear-gradient(135deg, rgba(108,140,255,0.12), rgba(74,222,128,0.10));
    border: 1.5px solid rgba(108,140,255,0.35);
    position: relative;
    overflow: hidden;
    animation: autobook-float 4s ease-in-out infinite, autobook-border-glow 3s ease-in-out infinite;
}
@keyframes autobook-float {
    0%, 100% { transform: translateY(0); }
    50% { transform: translateY(-4px); }
}
@keyframes autobook-border-glow {
    0%, 100% { border-color: rgba(108,140,255,0.35); box-shadow: 0 0 20px rgba(108,140,255,0.08), 0 0 40px rgba(108,140,255,0.04); }
    50% { border-color: rgba(108,140,255,0.6); box-shadow: 0 0 25px rgba(108,140,255,0.15), 0 0 50px rgba(108,140,255,0.08); }
}
.autobook-cta::before {
    content: '';
    position: absolute;
    top: 0; left: 0; right: 0;
    height: 2px;
    background: linear-gradient(90deg, var(--green-soft), var(--accent), var(--purple), var(--accent), var(--green-soft));
    background-size: 200% 100%;
    animation: autobook-top-sweep 3s linear infinite;
}
@keyframes autobook-top-sweep {
    0% { background-position: 100% 0; }
    100% { background-position: -100% 0; }
}
.autobook-cta-title {
    font-size: var(--text-lg);
    font-weight: 800;
    color: var(--text-primary);
    margin-bottom: 0.375rem;
    letter-spacing: -0.01em;
}
.autobook-cta-sub {
    font-size: var(--text-base);
    color: var(--text-secondary);
    margin-bottom: 1rem;
    line-height: 1.5;
}
.autobook-cta-btn {
    display: inline-block;
    padding: 0.75rem 2rem;
    background: linear-gradient(135deg, var(--green-soft), var(--green));
    color: #fff;
    border-radius: var(--radius-sm);
    font-weight: 700;
    font-size: var(--text-md);
    text-decoration: none;
    transition: all 0.2s;
    box-shadow: 0 4px 16px rgba(34,197,94,0.4);
    position: relative;
    overflow: hidden;
}
.autobook-cta-btn::after {
    content: '';
    position: absolute;
    top: 0; left: -100%; right: 0; bottom: 0;
    width: 200%;
    background: linear-gradient(90deg, transparent 0%, rgba(255,255,255,0) 40%, rgba(255,255,255,0.25) 50%, rgba(255,255,255,0) 60%, transparent 100%);
    animation: autobook-shimmer 2.5s ease-in-out infinite;
}
@keyframes autobook-shimmer {
    0% { transform: translateX(-50%); }
    100% { transform: translateX(50%); }
}
.autobook-cta-btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 6px 24px rgba(34,197,94,0.5);
    color: #fff;
}
.autobook-cta-free {
    font-size: var(--text-base);
    font-weight: 700;
    color: var(--green);
    margin-top: 0.75rem;
    letter-spacing: 0.01em;
}
/* === Social login section (top of form) === */
.social-section {
    margin-bottom: 0.25rem;
}
.social-divider {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    margin: 1.25rem 0;
    color: rgba(255, 255, 255, 0.35);
    font-size: var(--text-xs);
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.08em;
}
.social-divider::before,
.social-divider::after {
    content: '';
    flex: 1;
    height: 1px;
    background: rgba(255, 255, 255, 0.08);
}
.social-btn {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0.75rem;
    width: 100%;
    padding: 0.75rem 1rem;
    font-family: inherit;
    font-size: var(--text-base);
    font-weight: 500;
    border-radius: 8px;
    cursor: pointer;
    transition: all 150ms ease;
    text-decoration: none;
    border: 1px solid;
}
.social-btn + .social-btn {
    margin-top: 0.5rem;
}
.social-btn:active {
    transform: scale(0.985);
}
.social-btn svg {
    width: 20px;
    height: 20px;
    flex-shrink: 0;
}
/* Google: white button per brand guidelines */
.social-btn-google {
    background: #ffffff;
    color: #3c4043;
    border-color: #dadce0;
}
.social-btn-google:hover {
    background: #f7f8f8;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.3);
}
/* Facebook: brand blue */
.social-btn-facebook {
    background: #1877f2;
    color: #ffffff;
    border-color: #1877f2;
}
.social-btn-facebook:hover {
    background: #166fe5;
    box-shadow: 0 2px 8px rgba(24, 119, 242, 0.35);
}
@media (max-width: 480px) {
    .social-btn {
        min-height: 48px;
        font-size: var(--text-base);
    }
}

/* === Email verified badge (OAuth) === */
.email-verified-badge {
    position: absolute;
    right: 0.75rem;
    top: 50%;
    transform: translateY(-50%);
    line-height: 0;
}
#email.oauth-verified {
    border-color: var(--green) !important;
    padding-right: 2.5rem;
}

/* === Date Picker — Clean single-display approach === */
.date-picker-display {
    position: relative;
    display: flex;
    align-items: center;
    gap: 0.75rem;
    padding: 0.875rem 1rem;
    background: var(--bg-input);
    border: 1px solid var(--border);
    border-radius: var(--radius-xs);
    cursor: pointer;
    transition: all var(--duration-fast) var(--ease-in-out);
    min-height: 52px;
    user-select: none;
    -webkit-user-select: none;
}
.date-picker-display:hover {
    border-color: rgba(108,140,255,0.3);
}
.date-picker-display:focus-within {
    border-color: rgba(108,140,255,0.4);
    box-shadow: 0 0 0 3px var(--accent-glow);
}
.date-picker-display .date-icon {
    flex-shrink: 0;
    width: 20px;
    height: 20px;
    color: var(--accent);
}
.date-picker-display .date-text {
    flex: 1;
    display: flex;
    align-items: baseline;
    gap: 0.5rem;
    flex-wrap: wrap;
}
.date-picker-display .date-day-name {
    font-size: var(--text-lg);
    font-weight: 800;
    color: var(--accent);
    line-height: 1.2;
}
.date-picker-display .date-full {
    font-size: var(--text-lg);
    font-weight: 600;
    color: var(--text-primary);
    line-height: 1.2;
}
.date-picker-display .date-change {
    font-size: var(--text-xs);
    font-weight: 600;
    color: var(--accent);
    opacity: 0.7;
    margin-left: auto;
    flex-shrink: 0;
    text-transform: uppercase;
    letter-spacing: 0.06em;
    transition: opacity var(--duration-fast) var(--ease-in-out);
}
.date-picker-display:hover .date-change {
    opacity: 1;
}
/* Hidden native date input overlaid for tap-anywhere functionality */
.date-picker-display .date-native-input {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    opacity: 0;
    cursor: pointer;
    border: none;
    padding: 0;
    margin: 0;
    min-height: 0;
    /* iOS Safari: ensure input is tappable */
    -webkit-appearance: none;
    appearance: none;
    z-index: 2;
}
.date-picker-display .date-native-input::-webkit-calendar-picker-indicator {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    margin: 0;
    padding: 0;
    cursor: pointer;
    opacity: 0;
}

/* === Reduced motion === */
@media (prefers-reduced-motion: reduce) {
    .landing-bg .orb,
    .hero-eyebrow,
    .hero h1,
    .hero-sub,
    .hero-cta,
    .reveal {
        animation: none !important;
        transition: none !important;
        opacity: 1 !important;
        transform: none !important;
    }
    .reveal { opacity: 1 !important; transform: none !important; }
    .step-card:hover { transform: none; }
    .btn-monitor:hover { transform: none; }
    .autobook-cta {
        animation: none !important;
    }
    .autobook-cta::before {
        animation: none !important;
    }
    .autobook-cta-btn::after {
        animation: none !important;
    }
}

/* === Mobile: 480px === */
@media (max-width: 480px) {
    .landing-section { padding: 0 1rem; }
    .hero { padding-top: 2.5rem; padding-bottom: 2rem; }
    .hero-eyebrow { font-size: var(--text-sm); padding: 0.3125rem 1rem; }
    .hero h1 { font-size: var(--text-2xl); }
    .hero-sub { font-size: var(--text-base); margin-bottom: 1.5rem; }

    /* Pills: ensure good touch targets */
    .pill-label {
        padding: 0.5rem 1rem;
        font-size: var(--text-sm);
        min-height: 44px;
    }
    .pill-group--players .pill-label { min-width: 3.5rem; }

    /* Date display compact on small screens */
    .date-picker-display .date-day-name { font-size: var(--text-base); }
    .date-picker-display .date-full { font-size: var(--text-base); }
    .date-picker-display { padding: 0.75rem 0.875rem; min-height: 48px; }

    /* Time range side by side is fine, just ensure touch targets */
    .time-range-grid select {
        min-height: 44px;
        font-size: var(--text-base);
    }

    /* Submit button touch target */
    .btn-monitor { min-height: 48px; font-size: var(--text-base); }

    /* Pricing cards */
    .pricing-card { padding: 1.5rem; }
    .pricing-price { font-size: var(--text-2xl); }

    /* FAQ touch targets */
    .faq-question { padding: 1rem; min-height: 48px; font-size: var(--text-base); }

    /* Form fields full width */
    .form-wrapper input,
    .form-wrapper select {
        min-height: 44px;
    }

    /* Footer stacking */
    .landing-footer { padding: 1.5rem 1rem; }
}
