/* schedule.site — marketing site
   Restrained, editorial, monochrome. No gradients, no glow, no emoji. */

:root {
    --bg: #ffffff;
    --bg-subtle: #fafafa;
    --text: #18181b;
    --text-2: #52525b;
    --muted: #8a8a95;
    --border: #e7e7ea;
    --border-strong: #d4d4d8;
    --accent: #18181b;
    /* One restrained accent, reserved for the AI manager. */
    --ai: #5b53d6;
    --ai-soft: #eeedfb;
    --live: #16a34a;
    --radius: 10px;
    --maxw: 1080px;
    --font: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto,
        "Helvetica Neue", Arial, sans-serif;
}

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

/* Preserve HTML hidden when later rules set display:flex/block on anchors. */
[hidden] {
    display: none !important;
}

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

body {
    font-family: var(--font);
    font-size: 17px;
    line-height: 1.6;
    color: var(--text);
    background: var(--bg);
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
}

h1,
h2,
h3 {
    font-weight: 600;
    letter-spacing: -0.02em;
    line-height: 1.1;
    color: var(--text);
}

p {
    color: var(--text-2);
}

a {
    color: var(--text);
    text-decoration: none;
}

.container {
    max-width: var(--maxw);
    margin: 0 auto;
    padding: 0 24px;
}

/* ---- Buttons ---- */
.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    font: inherit;
    font-size: 14px;
    font-weight: 500;
    line-height: 1.2;
    padding: 10px 16px;
    border-radius: 8px;
    border: 1px solid transparent;
    cursor: pointer;
    transition: background-color 0.15s ease, border-color 0.15s ease,
        color 0.15s ease;
    white-space: nowrap;
}

.btn-text-short {
    display: none;
}

.btn-primary {
    background: var(--accent);
    color: #fff;
}
.btn-primary:hover {
    background: #000;
}

.btn-outline {
    background: transparent;
    color: var(--text);
    border-color: var(--border-strong);
}
.btn-outline:hover {
    background: var(--bg-subtle);
    border-color: #b8b8bf;
}

.btn-block {
    width: 100%;
}

.link-quiet {
    color: var(--text-2);
    font-size: 15px;
    font-weight: 500;
}
.link-quiet:hover {
    color: var(--text);
}

/* ---- Header ---- */
.site-header {
    position: sticky;
    top: 0;
    z-index: 50;
    background: rgba(255, 255, 255, 0.85);
    backdrop-filter: saturate(180%) blur(12px);
    -webkit-backdrop-filter: saturate(180%) blur(12px);
    border-bottom: 1px solid var(--border);
}

.site-header .container {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 12px;
    height: 56px;
}

.brand {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    min-width: 0;
    font-size: 16px;
    font-weight: 600;
    letter-spacing: -0.02em;
    color: var(--text);
}

.brand-mark {
    width: 22px;
    height: 22px;
    flex: 0 0 auto;
    display: block;
}

.nav {
    display: flex;
    align-items: center;
    gap: 32px;
}
.nav a {
    color: var(--text-2);
    font-size: 15px;
    font-weight: 500;
}
.nav a.is-current {
    color: var(--text);
}
.nav a:hover {
    color: var(--text);
}

.header-actions {
    display: flex;
    align-items: center;
    flex-shrink: 0;
    gap: 12px;
}

.header-actions .link-quiet {
    white-space: nowrap;
    flex-shrink: 0;
    font-size: 14px;
}

.header-actions .btn {
    font-size: 13px;
    padding: 7px 12px;
}

.nav-toggle {
    display: none;
    width: 42px;
    height: 42px;
    align-items: center;
    justify-content: center;
    flex-direction: column;
    gap: 5px;
    border: 1px solid var(--border);
    border-radius: 9px;
    background: #fff;
    color: var(--text);
    cursor: pointer;
}
.nav-toggle span {
    width: 18px;
    height: 2px;
    border-radius: 999px;
    background: currentColor;
}
.nav-drawer {
    border-top: 1px solid var(--border);
    background: rgba(255, 255, 255, 0.98);
}
.nav-drawer-links {
    display: grid;
    gap: 6px;
    max-width: var(--maxw);
    margin: 0 auto;
    padding: 16px 24px 22px;
}
.nav-drawer-links a {
    display: flex;
    align-items: center;
    min-height: 42px;
    color: var(--text-2);
    font-size: 15px;
    font-weight: 500;
}
.nav-drawer-links a:hover,
.nav-drawer-links a:focus {
    color: var(--text);
}
.nav-drawer-links .btn {
    color: #fff;
    justify-content: center;
    margin-top: 4px;
}

/* ---- Sections ---- */
.section {
    padding: 104px 0;
}
.section-subtle {
    background: var(--bg-subtle);
    border-top: 1px solid var(--border);
    border-bottom: 1px solid var(--border);
}

.section-head {
    max-width: 640px;
    margin: 0 auto 64px;
    text-align: center;
}
.section-head.left {
    margin-left: 0;
    text-align: left;
}
.section-head h2 {
    font-size: clamp(1.75rem, 3.4vw, 2.4rem);
    margin-bottom: 16px;
}
.section-head p {
    font-size: 1.0625rem;
}

.eyebrow {
    display: block;
    font-size: 13px;
    font-weight: 600;
    letter-spacing: 0.02em;
    color: var(--muted);
    margin-bottom: 20px;
}

/* ---- Hero ---- */
.hero {
    padding: 96px 0 88px;
}
.hero .container {
    display: grid;
    grid-template-columns: 1.05fr 0.95fr;
    gap: 72px;
    align-items: center;
}
.hero h1 {
    font-size: clamp(2.4rem, 5.4vw, 3.6rem);
    letter-spacing: -0.035em;
    margin-bottom: 24px;
}
.hero p.lede {
    font-size: 1.1875rem;
    max-width: 36ch;
    margin-bottom: 36px;
}
.hero-actions {
    display: flex;
    align-items: center;
    gap: 20px;
    flex-wrap: wrap;
}
.hero-note {
    margin-top: 22px;
    font-size: 14px;
    color: var(--muted);
}

/* Eyebrow with live status, reserved for the AI manager */
.hero-eyebrow {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    margin-bottom: 22px;
    padding: 6px 12px 6px 10px;
    border: 1px solid var(--border);
    border-radius: 999px;
    background: var(--bg-subtle);
    font-size: 13px;
    font-weight: 600;
    letter-spacing: -0.01em;
    color: var(--text-2);
}

.live-dot {
    position: relative;
    width: 7px;
    height: 7px;
    border-radius: 50%;
    background: var(--live);
    flex-shrink: 0;
}
.live-dot::after {
    content: "";
    position: absolute;
    inset: -4px;
    border-radius: 50%;
    border: 1px solid var(--live);
    opacity: 0.35;
    animation: live-pulse 2.4s ease-out infinite;
}
@keyframes live-pulse {
    0% {
        transform: scale(0.6);
        opacity: 0.5;
    }
    100% {
        transform: scale(1.4);
        opacity: 0;
    }
}
@media (prefers-reduced-motion: reduce) {
    .live-dot::after {
        animation: none;
    }
    .compare-signal,
    .compare-card,
    .compare-card-arrow,
    .switch-callout {
        transition: none;
    }
}

/* Product mock — monochrome schedule */
.mock {
    background: #fff;
    border: 1px solid var(--border);
    border-radius: 14px;
    padding: 20px;
    box-shadow:
        0 1px 2px rgba(24, 24, 27, 0.04),
        0 12px 32px rgba(24, 24, 27, 0.05);
}
.mock-top {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding-bottom: 16px;
    margin-bottom: 16px;
    border-bottom: 1px solid var(--border);
}
.mock-title {
    font-size: 14px;
    font-weight: 600;
    color: var(--text);
}
.mock-status {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    font-size: 12px;
    font-weight: 500;
    color: var(--text-2);
}
.mock-week {
    display: grid;
    grid-template-columns: repeat(7, 1fr);
    gap: 6px;
}
.mock-day {
    min-height: 104px;
    border: 1px solid var(--border);
    border-radius: 7px;
    padding: 8px 6px;
    display: flex;
    flex-direction: column;
    gap: 5px;
}
.mock-dow {
    font-size: 10px;
    font-weight: 600;
    letter-spacing: 0.04em;
    text-transform: uppercase;
    color: var(--muted);
    text-align: center;
    margin-bottom: 2px;
}
.who {
    font-size: 11px;
    font-weight: 500;
    color: var(--text-2);
    background: #f4f4f5;
    border-radius: 4px;
    padding: 3px 6px;
    text-align: center;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
}
.mock-foot {
    display: flex;
    gap: 18px;
    margin-top: 16px;
    padding-top: 14px;
    border-top: 1px solid var(--border);
    font-size: 12px;
    color: var(--text-2);
}

/* ---- Steps ---- */
.steps {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 48px;
}
.step {
    border-top: 1px solid var(--border-strong);
    padding-top: 20px;
}
.step-num {
    font-size: 14px;
    font-weight: 600;
    color: var(--muted);
    font-variant-numeric: tabular-nums;
}
.step h3 {
    font-size: 1.1875rem;
    margin: 12px 0 8px;
}
.step p {
    font-size: 0.9375rem;
}

/* ---- Problem ---- */
.pain-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 40px 48px;
}
.pain {
    border-top: 1px solid var(--border-strong);
    padding-top: 20px;
}
.pain h3 {
    font-size: 1.0625rem;
    margin-bottom: 8px;
}
.pain p {
    font-size: 0.9375rem;
}

/* ---- AI showcase ---- */
.ai-showcase {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 64px;
    align-items: center;
    margin-bottom: 88px;
}
.ai-lead {
    font-size: 1.1875rem;
    line-height: 1.5;
    color: var(--text);
    letter-spacing: -0.01em;
    margin-bottom: 28px;
}
.ai-points {
    list-style: none;
    display: grid;
    gap: 14px;
}
.ai-points li {
    position: relative;
    padding-left: 30px;
    font-size: 0.9375rem;
    color: var(--text-2);
}
.ai-points li::before {
    content: "";
    position: absolute;
    left: 0;
    top: 1px;
    width: 20px;
    height: 20px;
    border-radius: 50%;
    background: var(--ai-soft);
    /* small check, drawn with a mask-free inline approach */
}
.ai-points li::after {
    content: "";
    position: absolute;
    left: 6px;
    top: 8px;
    width: 8px;
    height: 4px;
    border-left: 1.75px solid var(--ai);
    border-bottom: 1.75px solid var(--ai);
    transform: rotate(-45deg);
}

/* Chat mock — the AI manager, framed as a real phone */
.phone {
    width: 100%;
    max-width: 328px;
    margin: 0 auto;
}
.phone-frame {
    position: relative;
    background: #101013;
    border-radius: 46px;
    padding: 11px;
    box-shadow:
        0 1px 2px rgba(24, 24, 27, 0.12),
        0 34px 60px -22px rgba(24, 24, 27, 0.4),
        inset 0 0 0 2px rgba(255, 255, 255, 0.06);
}
.phone-screen {
    position: relative;
    display: flex;
    flex-direction: column;
    background: #fff;
    border-radius: 36px;
    overflow: hidden;
}
.phone-island {
    position: absolute;
    top: 10px;
    left: 50%;
    transform: translateX(-50%);
    width: 82px;
    height: 23px;
    background: #101013;
    border-radius: 999px;
    z-index: 3;
}
.phone-statusbar {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 15px 22px 9px;
    font-size: 13px;
    font-weight: 600;
    color: var(--text);
}
.sb-icons {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    color: var(--text);
}
.sb-icons svg {
    display: block;
    width: auto;
}
.sb-signal {
    height: 10px;
}
.sb-wifi {
    height: 12px;
}
.sb-battery {
    height: 12px;
}
.chat-head {
    display: flex;
    align-items: center;
    gap: 12px;
    padding: 10px 16px 12px;
    border-bottom: 1px solid var(--border);
}
.chat-avatar {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 38px;
    height: 38px;
    border-radius: 50%;
    background: var(--ai);
    color: #fff;
    font-size: 13px;
    font-weight: 600;
    letter-spacing: 0.02em;
    flex-shrink: 0;
}
.chat-id {
    display: flex;
    flex-direction: column;
    gap: 2px;
}
.chat-name {
    font-size: 14px;
    font-weight: 600;
    color: var(--text);
}
.chat-sub {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    font-size: 12px;
    color: var(--muted);
}
.chat-body {
    display: flex;
    flex-direction: column;
    gap: 11px;
    padding: 18px 14px;
    background: var(--bg-subtle);
}
.bubble {
    max-width: 82%;
    font-size: 14px;
    line-height: 1.45;
    padding: 11px 14px;
    border-radius: 16px;
}
.bubble.in {
    align-self: flex-start;
    background: #fff;
    border: 1px solid var(--border);
    color: var(--text);
    border-bottom-left-radius: 5px;
}
.bubble.out {
    align-self: flex-end;
    background: var(--ai);
    color: #fff;
    border-bottom-right-radius: 5px;
}
.tick {
    display: inline-flex;
    vertical-align: -2px;
    margin-left: 2px;
}
.tick svg {
    width: 15px;
    height: 15px;
}

/* Phone chrome below the conversation */
.phone-inputbar {
    display: flex;
    align-items: center;
    gap: 10px;
    padding: 10px 14px 4px;
    border-top: 1px solid var(--border);
    background: #fff;
}
.phone-input {
    flex: 1;
    font-size: 13px;
    color: var(--muted);
    background: var(--bg-subtle);
    border: 1px solid var(--border);
    border-radius: 999px;
    padding: 9px 14px;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
}
.phone-send {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 32px;
    height: 32px;
    flex-shrink: 0;
    border-radius: 50%;
    background: var(--ai);
    color: #fff;
}
.phone-send svg {
    width: 16px;
    height: 16px;
}
.phone-home {
    width: 122px;
    height: 5px;
    margin: 7px auto 9px;
    border-radius: 999px;
    background: var(--text);
    opacity: 0.26;
}

/* Three jobs */
.jobs {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 48px;
}
.job {
    border-top: 1px solid var(--border-strong);
    padding-top: 24px;
}
.job h3 {
    font-size: 1.1875rem;
    margin: 4px 0 8px;
}
.job p {
    font-size: 0.9375rem;
}

/* ---- Features ---- */
.features {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 56px 48px;
}
.feature-icon {
    color: var(--text-2);
    margin-bottom: 16px;
}
.feature-icon svg {
    display: block;
    width: 22px;
    height: 22px;
}
.feature h3 {
    font-size: 1.0625rem;
    margin-bottom: 8px;
}
.feature p {
    font-size: 0.9375rem;
}

/* ---- Metrics ---- */
.metrics {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 40px;
    max-width: 800px;
    margin: 0 auto;
    text-align: center;
}
.metric-value {
    font-size: 2.25rem;
    font-weight: 600;
    letter-spacing: -0.03em;
    color: var(--text);
}
.metric-label {
    font-size: 0.9375rem;
    color: var(--muted);
    margin-top: 6px;
}

/* ---- CTA ---- */
.cta {
    text-align: center;
}
.cta h2 {
    font-size: clamp(1.75rem, 3.4vw, 2.4rem);
    margin-bottom: 16px;
}
.cta p {
    font-size: 1.0625rem;
    max-width: 44ch;
    margin: 0 auto 32px;
}
.cta-note {
    font-size: 14px;
    color: var(--muted);
    margin-top: 20px;
}

/* ---- Footer ---- */
.site-footer {
    border-top: 1px solid var(--border);
    padding: 56px 0 calc(56px + env(safe-area-inset-bottom, 0px));
}
.site-footer .container {
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    gap: 40px;
    flex-wrap: wrap;
}
.foot-brand {
    flex: 1 1 220px;
    min-width: 0;
}
.foot-brand .brand {
    display: inline-flex;
    margin-bottom: 8px;
}
.foot-brand p {
    font-size: 14px;
    color: var(--muted);
    max-width: 34ch;
}
.foot-cols {
    display: grid;
    grid-template-columns: repeat(4, minmax(0, max-content));
    gap: 24px 64px;
    flex: 1 1 480px;
    min-width: 0;
    max-width: 100%;
}
.foot-col {
    min-width: 0;
}
.foot-col h4 {
    font-size: 13px;
    font-weight: 600;
    color: var(--text);
    margin-bottom: 12px;
}
.foot-col a {
    display: block;
    font-size: 14px;
    color: var(--text-2);
    margin-bottom: 8px;
    overflow-wrap: anywhere;
}
.foot-col a:hover {
    color: var(--text);
}
.foot-copy {
    width: 100%;
    margin-top: 8px;
    padding-top: 28px;
    border-top: 1px solid var(--border);
    font-size: 13px;
    color: var(--muted);
}

/* ---- Compare pages ---- */
.compare-hero .container {
    grid-template-columns: 1.02fr 0.98fr;
    gap: 64px;
}
.compare-hero p.lede {
    max-width: 40ch;
}
.compare-signal {
    display: flex;
    flex-direction: column;
    gap: 20px;
    padding: 30px;
    border: 1px solid var(--border);
    border-radius: 14px;
    background: #fff;
    box-shadow:
        0 1px 2px rgba(24, 24, 27, 0.04),
        0 18px 40px rgba(24, 24, 27, 0.05);
    transition: transform 0.18s ease, box-shadow 0.18s ease,
        border-color 0.18s ease;
}
.compare-signal:hover {
    transform: translateY(-2px);
    border-color: var(--border-strong);
    box-shadow:
        0 1px 2px rgba(24, 24, 27, 0.04),
        0 22px 46px rgba(24, 24, 27, 0.08);
}
.signal-brand {
    font-size: clamp(2rem, 4vw, 2.8rem);
    font-weight: 600;
    letter-spacing: -0.04em;
    color: var(--text);
}
.signal-copy {
    font-size: 1rem;
    color: var(--text-2);
}
.signal-points {
    list-style: none;
    display: grid;
    gap: 12px;
}
.signal-points li {
    position: relative;
    padding-left: 26px;
    font-size: 0.95rem;
    color: var(--text-2);
}
.signal-points li::before {
    content: "";
    position: absolute;
    left: 0;
    top: 9px;
    width: 10px;
    height: 10px;
    border-radius: 50%;
    background: var(--ai);
    box-shadow: 0 0 0 5px var(--ai-soft);
}
.compare-proof {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 14px;
}
.compare-proof > div {
    padding-top: 18px;
    border-top: 1px solid var(--border);
}
.compare-proof span {
    display: block;
    font-size: 13px;
    color: var(--muted);
    margin-bottom: 5px;
}
.compare-proof strong {
    font-size: 1rem;
    font-weight: 600;
    color: var(--text);
}
.compare-grid {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 24px;
}
.compare-grid-compact .compare-card {
    min-height: 220px;
}
.compare-card {
    display: flex;
    flex-direction: column;
    gap: 16px;
    min-height: 248px;
    padding: 28px 24px;
    border: 1px solid var(--border);
    border-radius: var(--radius);
    background: #fff;
    transition: transform 0.18s ease, border-color 0.18s ease,
        box-shadow 0.18s ease;
}
.compare-card:hover {
    transform: translateY(-3px);
    border-color: var(--border-strong);
    box-shadow:
        0 1px 2px rgba(24, 24, 27, 0.04),
        0 16px 30px rgba(24, 24, 27, 0.05);
}
.compare-card-top {
    display: flex;
    align-items: flex-start;
    justify-content: space-between;
    gap: 16px;
}
.compare-card h3 {
    font-size: 1.25rem;
}
.compare-card p {
    font-size: 0.95rem;
}
.compare-tag {
    display: inline-flex;
    align-items: center;
    padding: 5px 10px;
    border-radius: 999px;
    border: 1px solid var(--border);
    background: var(--bg-subtle);
    font-size: 12px;
    font-weight: 600;
    color: var(--text-2);
    white-space: nowrap;
}
.compare-meta {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 16px;
    margin-top: auto;
    padding-top: 16px;
    border-top: 1px solid var(--border);
    font-size: 13px;
    color: var(--muted);
}
.compare-card-arrow {
    font-size: 16px;
    color: var(--text-2);
    transition: transform 0.18s ease, color 0.18s ease;
}
.compare-card:hover .compare-card-arrow {
    transform: translateX(4px);
    color: var(--ai);
}
.compare-inline-cta {
    margin-top: 32px;
}
.switch-grid {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 40px 48px;
}
.switch-step {
    border-top: 1px solid var(--border-strong);
    padding-top: 20px;
}
.switch-step h3 {
    font-size: 1.125rem;
    margin: 12px 0 8px;
}
.switch-step p {
    font-size: 0.9375rem;
}
.trap-grid {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 24px;
}
.trap-card {
    padding: 24px;
    border: 1px solid var(--border);
    border-radius: var(--radius);
    background: #fff;
}
.trap-index {
    display: inline-block;
    margin-bottom: 14px;
    font-size: 12px;
    font-weight: 600;
    letter-spacing: 0.04em;
    color: var(--muted);
}
.trap-card h3 {
    font-size: 1.0625rem;
    margin-bottom: 8px;
}
.trap-card p {
    font-size: 0.9375rem;
}
.contrast {
    display: grid;
    gap: 14px;
}
.contrast-row {
    display: grid;
    grid-template-columns: 180px minmax(0, 1fr) minmax(0, 1fr);
    gap: 18px;
    align-items: start;
    padding: 22px;
    border: 1px solid var(--border);
    border-radius: 14px;
    background: #fff;
}
.contrast-label {
    font-size: 12px;
    font-weight: 600;
    letter-spacing: 0.06em;
    text-transform: uppercase;
    color: var(--muted);
    padding-top: 2px;
}
.contrast-cell {
    display: grid;
    gap: 8px;
}
.contrast-cell strong {
    font-size: 14px;
    font-weight: 600;
    color: var(--text);
}
.contrast-cell p {
    font-size: 0.9375rem;
}
.contrast-us {
    padding: 16px;
    border: 1px solid var(--border);
    border-radius: 10px;
    background: var(--bg-subtle);
}
.contrast-us strong {
    color: var(--ai);
}
.switch-path {
    display: grid;
    grid-template-columns: 0.96fr 1.04fr;
    gap: 64px;
    align-items: start;
}
.switch-callout {
    padding: 30px;
    border: 1px solid var(--border);
    border-radius: 14px;
    background: #fff;
    box-shadow:
        0 1px 2px rgba(24, 24, 27, 0.04),
        0 16px 34px rgba(24, 24, 27, 0.05);
    transition: transform 0.18s ease, box-shadow 0.18s ease;
}
.switch-callout:hover {
    transform: translateY(-2px);
    box-shadow:
        0 1px 2px rgba(24, 24, 27, 0.04),
        0 20px 40px rgba(24, 24, 27, 0.08);
}
.switch-method {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    margin-bottom: 16px;
    padding: 6px 11px;
    border-radius: 999px;
    background: var(--ai-soft);
    color: var(--ai);
    font-size: 12px;
    font-weight: 600;
    letter-spacing: 0.02em;
}
.switch-callout h3 {
    font-size: 1.25rem;
    margin-bottom: 10px;
}
.switch-callout p {
    font-size: 0.95rem;
}
.switch-list {
    list-style: none;
    display: grid;
}
.switch-list li {
    display: grid;
    grid-template-columns: auto 1fr;
    gap: 14px;
    align-items: start;
    padding: 18px 0;
    border-top: 1px solid var(--border);
}
.switch-list li:first-child {
    padding-top: 0;
    border-top: 0;
}
.switch-count {
    font-size: 14px;
    font-weight: 600;
    color: var(--muted);
    font-variant-numeric: tabular-nums;
}
.switch-list strong {
    display: block;
    font-size: 15px;
    font-weight: 600;
    color: var(--text);
    margin-bottom: 5px;
}
.switch-list p {
    font-size: 0.9375rem;
}
.switch-note {
    margin-top: 18px;
    font-size: 14px;
    color: var(--muted);
}
.page-cta {
    text-align: left;
}

/* ---- Calculator, evidence, and legal content ---- */
.calculator-card {
    display: grid;
    grid-template-columns: 1.05fr 0.95fr;
    gap: 40px;
    align-items: stretch;
    padding: 30px;
    border: 1px solid var(--border);
    border-radius: 14px;
    background: #fff;
    box-shadow:
        0 1px 2px rgba(24, 24, 27, 0.04),
        0 18px 40px rgba(24, 24, 27, 0.05);
}
.calculator-form {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 18px;
}
.calculator-field {
    display: grid;
    gap: 8px;
}
.calculator-field label {
    font-size: 13px;
    font-weight: 600;
    color: var(--text);
}
.calculator-field input {
    width: 100%;
    border: 1px solid var(--border-strong);
    border-radius: 9px;
    padding: 12px 13px;
    font: inherit;
    color: var(--text);
    background: var(--bg);
}
.calculator-result {
    display: flex;
    flex-direction: column;
    justify-content: center;
    gap: 14px;
    padding: 26px;
    border-radius: 12px;
    background: #111113;
    color: #fff;
}
.calculator-result span {
    font-size: 13px;
    font-weight: 600;
    letter-spacing: 0.06em;
    text-transform: uppercase;
    color: #a1a1aa;
}
.calculator-result strong {
    font-size: clamp(2.2rem, 5vw, 3.4rem);
    line-height: 1;
    letter-spacing: -0.05em;
    color: #fff;
}
.calculator-result p {
    color: #d4d4d8;
    font-size: 0.95rem;
}
.evidence-table-wrap {
    overflow-x: auto;
    border: 1px solid var(--border);
    border-radius: 14px;
    background: #fff;
}
.evidence-table {
    width: 100%;
    border-collapse: collapse;
    min-width: 760px;
}
.evidence-table th,
.evidence-table td {
    padding: 16px 18px;
    border-bottom: 1px solid var(--border);
    text-align: left;
    vertical-align: top;
    font-size: 0.9375rem;
}
.evidence-table th {
    font-size: 12px;
    font-weight: 600;
    letter-spacing: 0.06em;
    text-transform: uppercase;
    color: var(--muted);
    background: var(--bg-subtle);
}
.evidence-table tr:last-child td {
    border-bottom: 0;
}
.source-note {
    margin-top: 18px;
    color: var(--text-2);
    font-size: 0.95rem;
}
.source-note h3 {
    margin-bottom: 8px;
    font-size: 1rem;
}
.source-list {
    display: grid;
    gap: 8px;
    margin-top: 16px;
    padding-left: 20px;
}
.source-list li {
    color: var(--text-2);
    font-size: 0.95rem;
}
.source-list a {
    text-decoration: underline;
    text-decoration-thickness: 1px;
    text-underline-offset: 3px;
}
.proof-grid {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 18px;
}
.proof-card {
    padding: 24px;
    border: 1px solid var(--border);
    border-radius: var(--radius);
    background: #fff;
}
.proof-card h3 {
    font-size: 1rem;
    margin-bottom: 10px;
}
.proof-card p {
    font-size: 0.95rem;
}
.legal-content {
    max-width: 820px;
}
.legal-content h2 {
    margin: 42px 0 14px;
    font-size: 1.5rem;
}
.legal-content h3 {
    margin: 26px 0 10px;
    font-size: 1.1rem;
}
.legal-content p,
.legal-content li {
    color: var(--text-2);
    font-size: 1rem;
}
.legal-content ul,
.legal-content ol {
    margin: 14px 0 0 22px;
}
.legal-content li + li {
    margin-top: 8px;
}
.legal-note {
    padding: 18px 20px;
    border: 1px solid var(--border);
    border-radius: var(--radius);
    background: var(--bg-subtle);
}
.legal-note strong {
    color: var(--text);
}

/* ---- Pricing ---- */
.pricing-hero {
    padding: 88px 0 40px;
    text-align: center;
}
.pricing-hero h1 {
    font-size: clamp(2.1rem, 4.4vw, 3rem);
    letter-spacing: -0.03em;
    margin-bottom: 18px;
}
.pricing-hero p {
    font-size: 1.0625rem;
    max-width: 48ch;
    margin: 0 auto;
}

.plans {
    display: grid;
    grid-template-columns: minmax(0, 560px);
    gap: 24px;
    align-items: stretch;
    justify-content: center;
}
.plan {
    display: flex;
    flex-direction: column;
    border: 1px solid var(--border);
    border-radius: var(--radius);
    padding: 32px 28px;
    background: #fff;
}
.plan.featured {
    border-color: var(--text);
}
.plan-name {
    display: flex;
    align-items: center;
    gap: 10px;
    font-size: 15px;
    font-weight: 600;
    color: var(--text);
    margin-bottom: 18px;
}
.plan-tag {
    font-size: 12px;
    font-weight: 500;
    color: var(--text-2);
    border: 1px solid var(--border-strong);
    border-radius: 999px;
    padding: 2px 9px;
}
.plan-price {
    display: flex;
    align-items: baseline;
    gap: 6px;
}
.plan-price .amount {
    font-size: 2.5rem;
    font-weight: 600;
    letter-spacing: -0.03em;
    color: var(--text);
}
.plan-price .unit {
    font-size: 14px;
    color: var(--muted);
}
.plan .billing {
    font-size: 13px;
    color: var(--muted);
    margin: 8px 0 20px;
}
.plan-desc {
    font-size: 14px;
    color: var(--text-2);
    margin-bottom: 24px;
}
.plan-features {
    list-style: none;
    margin-bottom: 28px;
    flex: 1;
}
.plan-features li {
    display: flex;
    align-items: flex-start;
    gap: 10px;
    font-size: 14px;
    color: var(--text);
    padding: 7px 0;
}
.plan-features li svg {
    width: 16px;
    height: 16px;
    flex-shrink: 0;
    margin-top: 3px;
    color: var(--text-2);
}

/* ---- FAQ ---- */
.faq {
    max-width: 720px;
    margin: 0 auto;
}
.faq details {
    border-top: 1px solid var(--border);
    padding: 22px 0;
}
.faq details:last-child {
    border-bottom: 1px solid var(--border);
}
.faq summary {
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 24px;
    list-style: none;
    cursor: pointer;
    font-size: 1.0625rem;
    font-weight: 500;
    color: var(--text);
}
.faq summary::-webkit-details-marker {
    display: none;
}
.faq summary::after {
    content: "+";
    font-size: 22px;
    font-weight: 400;
    color: var(--muted);
    line-height: 1;
}
.faq details[open] summary::after {
    content: "\2212";
}
.faq details p {
    font-size: 0.9375rem;
    color: var(--text-2);
    margin-top: 14px;
    max-width: 60ch;
}

/* ---- Responsive ---- */
@media (max-width: 900px) {
    .hero .container {
        grid-template-columns: 1fr;
        gap: 48px;
    }
    .hero p.lede {
        max-width: none;
    }
    .steps,
    .features,
    .metrics,
    .plans,
    .pain-grid,
    .jobs,
    .compare-grid,
    .switch-grid,
    .trap-grid,
    .compare-proof,
    .switch-path {
        grid-template-columns: 1fr;
    }
    .features {
        gap: 40px;
    }
    .ai-showcase {
        grid-template-columns: 1fr;
        gap: 40px;
    }
    .compare-hero .container,
    .contrast-row {
        grid-template-columns: 1fr;
    }
    .ai-showcase .mock {
        order: -1;
    }
    .contrast-row {
        gap: 14px;
    }
    .nav {
        display: none;
    }
    .header-actions {
        display: none;
    }
    .nav-toggle {
        display: inline-flex;
    }
    .calculator-card,
    .calculator-form,
    .proof-grid {
        grid-template-columns: 1fr;
    }
    .site-footer .container {
        flex-direction: column;
        gap: 32px;
    }
    .foot-cols {
        width: 100%;
        grid-template-columns: repeat(2, minmax(0, 1fr));
        gap: 28px 32px;
    }
}

/* ---- Competitor roast / conversion blocks ---- */
.roast-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 16px;
    margin-top: 28px;
}
.roast-card {
    padding: 24px;
    border: 1px solid var(--border);
    border-radius: var(--radius);
    background: var(--bg);
}
.roast-card h3 {
    font-size: 17px;
    margin-bottom: 10px;
}
.roast-card p {
    font-size: 15px;
    line-height: 1.5;
}
.cost-strip {
    margin-top: 28px;
    padding: 22px 24px;
    border-radius: var(--radius);
    border: 1px solid var(--border);
    background: #111113;
    color: #fff;
}
.cost-strip-label {
    font-size: 12px;
    font-weight: 600;
    letter-spacing: 0.06em;
    text-transform: uppercase;
    color: #a1a1aa;
    margin-bottom: 16px;
}
.cost-strip-items {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 18px;
}
.cost-item {
    display: grid;
    gap: 6px;
}
.cost-item strong {
    font-size: 15px;
    font-weight: 600;
    color: #fff;
}
.cost-item span {
    font-size: 14px;
    color: #d4d4d8;
    line-height: 1.45;
}
.verdict {
    margin: 28px 0 0;
    padding: 24px 28px;
    border-left: 3px solid var(--ai);
    background: var(--ai-soft);
    border-radius: 0 var(--radius) var(--radius) 0;
}
.verdict p {
    color: var(--text);
    font-size: 18px;
    font-weight: 500;
    letter-spacing: -0.015em;
    line-height: 1.35;
}
.verdict footer {
    margin-top: 12px;
    color: var(--muted);
    font-size: 13px;
    font-weight: 600;
}

@media (max-width: 900px) {
    .roast-grid,
    .cost-strip-items {
        grid-template-columns: 1fr;
    }
}

@media (max-width: 560px) {
    body {
        font-size: 16px;
    }
    .container {
        padding: 0 16px;
    }
    .site-header .container {
        height: 52px;
        gap: 8px;
    }
    .brand {
        font-size: 15px;
        gap: 6px;
    }
    .brand-mark {
        width: 20px;
        height: 20px;
    }
    .header-actions {
        gap: 8px;
    }
    .header-actions .link-quiet {
        font-size: 13px;
    }
    .header-actions .btn {
        font-size: 12px;
        padding: 6px 10px;
    }
    .btn {
        font-size: 14px;
        padding: 10px 14px;
    }
    .hero {
        padding: 56px 0 64px;
    }
    .section {
        padding: 72px 0;
    }
    .mock-week {
        grid-template-columns: repeat(4, 1fr);
    }
    .compare-card,
    .trap-card,
    .switch-callout,
    .contrast-row,
    .roast-card {
        padding: 22px 20px;
    }
    .site-footer {
        padding: 48px 0 calc(48px + env(safe-area-inset-bottom, 0px));
    }
    .foot-cols {
        gap: 28px 20px;
    }
}
