/* META ADS AUTOMATION — CLEAN STYLESHEET */
/* Inherits from ../css/style.css */


/* =================================================
   VARIABLES
================================================= */
:root {
    --bg-white: #ffffff;
    --bg-light: #fafafa;
    --bg-gray: #f5f5f5;
    --blue: #1877f2;
    --blue-light: #e3f2fd;
    --blue-dark: #1d4ed8;
    --spike-hue: 178deg;
    --text-dark: #1a1a1a;
    --text-mid: #525252;
    --text-light: #737373;
    --border-light: #e5e5e5;
    --border-mid: #d1d1d1;
    --shadow-light: rgba(0, 0, 0, 0.08);
    --shadow-mid: rgba(0, 0, 0, 0.12);
}


html {
    overflow-x: clip;
    overscroll-behavior-y: contain;
}

.no-break {
    white-space: nowrap;
}


body {
    background: var(--bg-white);
    color: var(--text-dark);
    overflow-x: clip;
    overscroll-behavior-y: contain;
}


.text-gradient {
    background: linear-gradient(135deg, #000 0%, #525252 50%, #a3a3a3 100%);
    -webkit-background-clip: text;
    background-clip: text;
    color: transparent;
}


.label-red {
    color: #ef4444 !important;
}

.section-dark {
    background: var(--bg-light);
    border-bottom-color: var(--border-light);
}

.section-black {
    background: var(--bg-white);
}

.section-light {
    background: var(--bg-gray);
    border-top: 1px solid var(--border-light);
    border-bottom: 1px solid var(--border-light);
    padding: var(--spacing-4xl) 0;
}

#getting-started {
    border-top: none;
}

section {
    scroll-margin-top: 5rem;
}
.section-header[id] {
    scroll-margin-top: 5rem;
}


.mobile-break { display: none; }


/* =================================================
   SITE HEADER
================================================= */
.site-header {
    background: rgba(255, 255, 255, 0.4);
    border-bottom-color: var(--border-light);
    transition: box-shadow 0.3s ease;
}

@media (max-width: 767px) {
    .site-header {
        border-top: 1px solid rgba(0, 0, 0, 0.07);
        position: sticky;
        top: 0;
        z-index: 1000;
    }
}

.menu-toggle {
    color: var(--text-dark);
}

.header-inner {
    max-width: 1480px;
    padding: max(0.75rem, 1vw) max(1.5rem, 2vw);
    transition: padding 0.3s ease;
    display: grid;
    grid-template-columns: 1fr auto 1fr;
    align-items: center;
    column-gap: var(--spacing-md);
}

.header-cta {
    font-size: max(0.8rem, 1.2vw) !important;
    padding: max(0.5rem, 0.6vw) max(1.2rem, 2.1vw) !important;
    white-space: nowrap;
}

.header-left {
    display: flex;
    align-items: center;
    gap: var(--spacing-md);
}

.header-nav {
    display: flex;
    align-items: center;
    gap: var(--spacing-lg);
}

.header-right {
    display: flex;
    align-items: center;
    justify-content: flex-end;
    gap: var(--spacing-md);
}

.menu-toggle {
    display: none;
    cursor: pointer;
    padding: 0.5rem 0.75rem;
    color: var(--text-dark);
    background: linear-gradient(160deg, rgba(255,255,255,0.97) 0%, rgba(235,235,235,0.85) 50%, rgba(255,255,255,0.97) 100%);
    border: 1px solid rgba(255,255,255,0.75);
    border-radius: 0.6rem;
    box-shadow: 0 4px 20px rgba(0,0,0,0.08), inset 0 1px 0 rgba(255,255,255,1), inset 0 -1px 0 rgba(0,0,0,0.04);
    backdrop-filter: blur(8px);
}

.menu-toggle i {
    width: 1.1rem;
    height: 1.1rem;
    display: block;
}

.mobile-menu {
    display: flex;
    flex-direction: column;
    justify-content: flex-end;
    gap: var(--spacing-md);
    padding: 2rem max(1.5rem, 2vw) 25vh;
    border-top: none;
    position: fixed;
    top: 3.5rem;
    left: 0;
    right: 0;
    bottom: 0;
    overflow: hidden;
    background: #fff;
    z-index: 999;
    transform: translateX(100%);
    visibility: hidden;
    transition: transform 0.35s cubic-bezier(0.4, 0, 0.2, 1), visibility 0.35s;
}

.mobile-menu.active {
    transform: translateX(0);
    visibility: visible;
}

.mobile-nav-link {
    font-size: 1rem;
    font-weight: 600;
    color: var(--text-dark);
    text-decoration: none;
    padding: var(--spacing-xs) 0;
    border-bottom: 1px solid var(--border-light);
}

.mobile-nav-link:hover {
    color: var(--blue);
}

.mobile-menu-cta {
    margin-top: var(--spacing-xs);
    text-align: center;
}


.logo-title {
    font-size: max(1.25rem, 1.1vw);
    transition: font-size 0.3s ease;
}

.nav-link {
    color: var(--text-mid);
    font-size: max(0.875rem, 0.8vw);
    transition: font-size 0.3s ease;
}

/* Compact header — mobile only, active when hero is out of view */
@media (max-width: 767px) {
    .site-header.header--compact {
        box-shadow: 0 1px 12px rgba(0,0,0,0.06);
    }

    .site-header.header--compact .header-inner {
        padding: 0.25rem max(1.5rem, 2vw);
    }

    .site-header.header--compact .logo-title {
        font-size: max(0.85rem, 0.75vw);
    }

    .site-header.header--compact .nav-link {
        font-size: max(0.7rem, 0.62vw);
    }

    .site-header.header--compact .header-patch {
        font-size: max(0.45rem, 0.4vw);
        padding: 0.25rem 0.6rem;
    }

    .site-header.header--compact .chrome-btn.small {
        font-size: 0.65rem;
        padding: 0.3rem 0.7rem;
    }
}

.nav-link:hover {
    color: var(--text-dark);
}


/* =================================================
   HEADER METALLIC PLATE
================================================= */
.header-patch {
    display: inline-flex;
    flex-direction: column;
    align-items: center;
    gap: 0.2em;
    font-family: var(--font-primary);
    font-size: max(1.3rem, 1.3vw);
    font-weight: 900;
    text-transform: uppercase;
    letter-spacing: -0.05em;
    color: #000;
    text-shadow: none;
    text-decoration: none;
    padding: 0.35rem 0.65rem;
    border-radius: 6px;
    background: linear-gradient(160deg, rgba(255,255,255,0.97) 0%, rgba(235,235,235,0.85) 50%, rgba(255,255,255,0.97) 100%);
    border: 1px solid rgba(255,255,255,0.35);
    box-shadow: inset 0 1px 0 rgba(255,255,255,0.5), 0 4px 16px rgba(0,0,0,0.08);
    backdrop-filter: blur(8px);
    transform: none;
    transition: none;
}


.header-patch:hover,
.header-patch:active,
.header-patch:focus {
    transform: none;
}

.patch-line1 {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 0.1rem;
    white-space: nowrap;
    font-size: 0.9rem;
}

.patch-product {
    font-size: 0.75em;
    font-weight: 900;
    letter-spacing: 0.02em;
    line-height: 1;
    text-transform: none;
}

.patch-line2 {
    line-height: 1;
    display: flex;
    align-items: center;
    justify-content: center;
}

.patch-accelerator {
    height: 1em;
    width: auto;
    filter: contrast(1) drop-shadow(0 1px 1px rgba(0,0,0,0.5));
}

.patch-break {
    display: none;
}

.patch-logo {
    height: 1.8em;
    width: auto;
    flex-shrink: 0;
    filter: drop-shadow(0 1px 1px rgba(0,0,0,0.5));
}


/* =================================================
   GLASS BUTTONS
================================================= */
.chrome-btn {
    background: linear-gradient(160deg, rgba(255,255,255,0.97) 0%, rgba(235,235,235,0.85) 50%, rgba(255,255,255,0.97) 100%);
    border: 1px solid rgba(255, 255, 255, 0.75);
    border-radius: 9999px !important;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.08), 0 0 18px rgba(24, 119, 242, 0.25), inset 0 1px 0 rgba(255, 255, 255, 1), inset 0 -1px 0 rgba(0, 0, 0, 0.04);
    color: #525252;
    backdrop-filter: blur(8px);
    transition: transform 0.2s ease, box-shadow 0.3s ease, background 0.3s ease;
}


.chrome-btn.large {
    padding-top: 0.75rem;
    padding-bottom: 0.75rem;
}


.chrome-btn:hover {
    background: linear-gradient(160deg, rgba(255,255,255,1) 0%, rgba(235,235,235,0.95) 50%, rgba(255,255,255,1) 100%);
    transform: scale(1.03);
    box-shadow: 0 8px 32px rgba(0, 0, 0, 0.1), 0 0 24px rgba(24, 119, 242, 0.35), inset 0 1px 0 rgba(255, 255, 255, 1), inset 0 -1px 0 rgba(0, 0, 0, 0.04);
}

.chrome-btn .shine {
    position: absolute;
    inset: 0;
    background: linear-gradient(105deg, transparent 40%, rgba(255,255,255,0.7) 50%, transparent 60%);
    transform: translateX(-100%);
    animation: shine-sweep 2s ease-in-out infinite;
    border-radius: 9999px;
    pointer-events: none;
}


@keyframes shine-sweep {
    0%   { transform: translateX(-100%); }
    40%  { transform: translateX(100%); }
    100% { transform: translateX(100%); }
}

@keyframes dark-glow-pulse {
    0%, 100% { box-shadow: 0 0 6px rgba(0,0,0,0.2), inset 0 1px 0 rgba(255,255,255,0.25), inset 0 -1px 0 rgba(0,0,0,0.4); }
    50%       { box-shadow: 0 0 16px 3px rgba(0,0,0,0.35), inset 0 1px 0 rgba(255,255,255,0.35), inset 0 -1px 0 rgba(0,0,0,0.4); }
}


@keyframes blue-glow-pulse {
    0%, 100% { box-shadow: 0 0 4px rgba(24, 119, 242, 0.08), inset 0 1px 0 rgba(255, 255, 255, 0.9), inset 0 -1px 0 rgba(24, 119, 242, 0.08); }
    50%       { box-shadow: 0 0 12px 2px rgba(24, 119, 242, 0.35), inset 0 1px 0 rgba(255, 255, 255, 0.9), inset 0 -1px 0 rgba(24, 119, 242, 0.08); }
}


.chrome-btn:active {
    transform: scale(0.98);
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.08), inset 0 1px 0 rgba(255, 255, 255, 1);
}




/* =================================================
   HERO TAG
================================================= */
.hero-tag {
    display: inline-flex;
    align-items: center;
    flex-wrap: wrap;
    justify-content: center;
    gap: 0.3rem;
    padding: 1em 2em;
    border-radius: 6px;
    font-family: var(--font-mono);
    text-transform: uppercase;
    letter-spacing: 0.1em;
    border: 1px solid rgba(24, 119, 242, 0.35);
    box-shadow: 0 4px 20px rgba(24, 119, 242, 0.12), inset 0 1px 0 rgba(255, 255, 255, 0.9), inset 0 -1px 0 rgba(24, 119, 242, 0.1);
    background: linear-gradient(160deg, rgba(24,119,242,0.12) 0%, rgba(24,119,242,0.2) 50%, rgba(24,119,242,0.12) 100%);
    color: #1877f2;
    font-weight: 700;
    font-size: inherit;
    line-height: 13px;
    margin: 0;
    backdrop-filter: blur(8px);
    animation: blue-glow-pulse 1.5s ease-in-out infinite;
}

.hero-tag-container {
    margin-bottom: 0;
}

.hero-section .hero-tag {
    font-size: 0.88em;
}


/* =================================================
   HERO
================================================= */
.hero-section {
    background: #fff;
    max-height: none;
    overflow: hidden;
    display: flex;
    flex-direction: column;
    justify-content: flex-start;
    align-items: center;
    padding: max(104px, 8vw) var(--spacing-md) calc(var(--spacing-xl) + 36px);
    position: relative;
    overflow: hidden;
    border-bottom: none;
}

.hero-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 100%;
    background: radial-gradient(ellipse 70% 40% at 50% 0%, rgba(0, 0, 0, 0.07) 0%, transparent 100%);
    pointer-events: none;
    z-index: 0;
}

.hero-section::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    height: 100%;
    background: radial-gradient(ellipse 70% 35% at 50% 100%, rgba(0, 0, 0, 0.07) 0%, transparent 100%);
    pointer-events: none;
    z-index: 0;
}

.hero-section .bg-gradient-overlay {
    display: none;
}

#hero-spike-target {
    position: absolute;
    inset: 0;
    pointer-events: none;
    z-index: 0;
}

.hero-content {
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    gap: 1em;
    font-size: max(0.75rem, min(1.36vw, 1.87svh));
    padding: 0 var(--spacing-md);
    max-width: 1600px;
    width: 100%;
    margin: 0 auto;
    position: relative;
    z-index: 2;
}

.hero-display {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 1rem;
    font-size: 7.35em;
    font-weight: 900;
    text-transform: uppercase;
}

.hero-intro,
.hero-big,
.hero-small-text {
    background: linear-gradient(160deg, #666 0%, #1a1a1a 30%, #000 50%, #1a1a1a 70%, #555 100%);
    -webkit-background-clip: text;
    background-clip: text;
    color: transparent;
    -webkit-text-fill-color: transparent;
}

.hero-intro {
    font-size: 0.38em;
    max-width: 100%;
    filter: drop-shadow(0 2px 6px rgba(0, 0, 0, 0.4));
}

.hero-img-stack {
    position: relative;
    width: 100%;
    max-width: 4.5em;
}

.hero-manager-img {
    width: 100%;
    height: auto;
    display: block;
    border-radius: 14px;
    box-shadow: 0 12px 60px rgba(0, 0, 0, 0.22);
}

.hero-headline {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%) rotate(-3deg);
    white-space: nowrap;
    z-index: 2;
    display: flex;
    flex-direction: column;
    align-items: center;
    filter: drop-shadow(0 4px 16px rgba(0, 0, 0, 0.4));
}

.hero-big {
    font-size: 1em;
    line-height: 0.8em;
    filter: drop-shadow(0 0 1px rgba(255,255,255,0.8));
}

.hero-big--italic {
    font-style: italic;
    letter-spacing: -0.03em;
    padding: 0 0.2em;
}

.hero-small {
    font-size: 0.2em;
    text-transform: none;
}

.hero-small-text {
    filter: drop-shadow(0 0 6px rgba(255, 255, 255, 1)) drop-shadow(0 0 10px rgba(255, 255, 255, 0.9));

}

.hero-sub {
    font-size: 1.47em;
    line-height: 1.55;
    letter-spacing: -0.01em;
    color: var(--text-mid);
    display: block;
    max-width: none;
}

.hero-under-cta {
    font-family: var(--font-mono);
    font-size: 0.81em;
    color: var(--blue);
    opacity: 0.7;
    line-height: 1.6;
    letter-spacing: 0.03em;
    font-style: italic;
}

.hero-meta-logo {
    height: 1.5em;
    width: auto;
    display: inline-block;
    vertical-align: middle;
    position: relative;
    background: #ffffff;
    border-radius: 0.3em;
    padding: 0.25em;
    box-shadow: 0 1px 1px rgba(0, 0, 0, 0.4);
    margin-top: -0.4em;
}

.hero-notion-logo {
    height: 1.5em;
    position: relative;
    top: 0.4em;
    background: #ffffff;
    border-radius: 0.3em;
    padding: 0.25em;
    box-shadow: 0 1px 1px rgba(0, 0, 0, 0.4);
    margin-top: -0.4em;
}


/* =================================================
   STAT BAR
================================================= */
.statbar {
    background: var(--bg-white);
    display: flex;
    justify-content: center;
    gap: var(--spacing-lg);
    flex-wrap: wrap;
    padding: var(--spacing-xl) var(--spacing-md);
    border-bottom: 1px solid var(--border-light);
}

.stat {
    text-align: center;
    flex: 1;
    min-width: 180px;
    background: linear-gradient(160deg, rgba(24,119,242,0.12) 0%, rgba(24,119,242,0.2) 50%, rgba(24,119,242,0.12) 100%);
    border: 1px solid rgba(24, 119, 242, 0.35);
    border-radius: 14px;
    box-shadow: 0 4px 20px rgba(24, 119, 242, 0.12), inset 0 1px 0 rgba(255, 255, 255, 0.9), inset 0 -1px 0 rgba(24, 119, 242, 0.1);
    backdrop-filter: blur(8px);
    padding: var(--spacing-md) var(--spacing-lg);
    animation: blue-glow-pulse 1.5s ease-in-out infinite;
}

.stat .number {
    font-size: max(2rem, 5vw);
    font-weight: 900;
    line-height: 1;
    margin-bottom: var(--spacing-xs);
    color: var(--blue);
}

.stat .number span {
    color: var(--blue);
}

.stat .number s {
    font-size: 0.55em;
    text-decoration-color: var(--blue);
    opacity: 0.4;
    margin-right: 0.1em;
    vertical-align: middle;
}

.stat .number-inline {
    font-size: 0.95rem;
    font-weight: 700;
    color: var(--blue);
    opacity: 0.9;
    text-transform: uppercase;
    letter-spacing: 0.06em;
    margin-bottom: 0.2rem;
}

.stat-sub {
    font-size: 0.78rem;
    color: var(--blue);
    opacity: 0.55;
    font-family: var(--font-mono);
    letter-spacing: 0.04em;
    margin-top: 0.4rem;
}


/* =================================================
   LOGO STRIP
================================================= */
.logo-strip {
    background: #fff;
    text-align: center;
    padding: var(--spacing-xs) var(--spacing-md);
    position: relative;
}

.logo-strip::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 1px;
    background: linear-gradient(to right, transparent, rgba(0,0,0,0.08), transparent);
}

.logo-strip::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    height: 1px;
    background: linear-gradient(to right, transparent, rgba(0,0,0,0.08), transparent);
}

.logo-strip p {
    font-family: var(--font-mono);
    font-size: 0.75rem;
    text-transform: uppercase;
    letter-spacing: 0.12em;
    color: var(--text-light);
    opacity: 0.5;
    margin-bottom: var(--spacing-xs);
    position: relative;
    z-index: 1;
}

.tool-list {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 1.75rem;
    flex-wrap: wrap;
    position: relative;
    z-index: 1;
}

.tool-list .sep {
    display: none;
}

.logo-pair {
    display: flex;
    align-items: center;
    gap: 1.75rem;
}

.tool-logo {
    height: 26px;
    width: auto;
    opacity: 1;
    filter: grayscale(0);
    transition: transform 0.2s ease;
}

.tool-logo:hover {
    transform: scale(1.18);
}



/* =================================================
   SECTION UTILITIES
================================================= */
.section-header {
    margin-bottom: var(--spacing-2xl);
}

#closer-look .section-header {
    margin-bottom: var(--spacing-xs);
}

.section-title {
    font-size: max(1.8rem, 4vw);
    font-weight: 900;
    text-transform: uppercase;
    letter-spacing: -0.04em;
    line-height: 1.05;
    margin-bottom: var(--spacing-2xs);
    color: var(--text-dark);
}

.section-desc {
    font-family: var(--font-mono);
    font-size: 0.875rem;
    color: var(--text-mid);
    max-width: 40rem;
    line-height: 1.7;
}

.body-text {
    font-size: 1rem;
    color: var(--text-mid);
    line-height: 1.75;
    margin-bottom: var(--spacing-md);
}

.text-center {
    text-align: center;
}

.text-center .section-desc {
    margin: 0 auto;
}


/* =================================================
   MEDIA PLACEHOLDERS
================================================= */
.media-placeholder {
    background: var(--bg-gray);
    border: 2px dashed var(--border-mid);
    border-radius: 0.75rem;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    text-align: center;
    gap: 0.75rem;
    padding: var(--spacing-2xl);
    color: var(--text-light);
    font-size: 0.825rem;
    font-family: var(--font-mono);
    line-height: 1.65;
    aspect-ratio: 5 / 4;
    width: 100%;
}

.media-placeholder--sm {
    aspect-ratio: 5 / 4;
}

.media-placeholder--lg {
    aspect-ratio: 5 / 4;
}

.ph-icon {
    font-size: 2rem;
    display: block;
}

.demo-img {
    width: 100%;
    height: auto;
    display: block;
    border-radius: 0.75rem;
    grid-area: media;
    align-self: start;
}


/* =================================================
   THE SHIFT
================================================= */
.shift-container {
    display: grid;
    grid-template-columns: 1fr auto 1fr;
    gap: var(--spacing-lg);
    align-items: start;
    margin-top: var(--spacing-2xl);
}

.shift-panel {
    border-radius: 1rem;
    overflow: hidden;
    border: 1px solid var(--border-light);
}

.shift-panel--old {
    background: #fff8f8;
    border-color: #fecaca;
}

.shift-panel--new {
    background: #f0f9ff;
    border-color: #bfdbfe;
}

.shift-panel-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: var(--spacing-lg) var(--spacing-xl);
    border-bottom: 1px solid;
}

.shift-panel--old .shift-panel-header {
    border-color: #fecaca;
    background: #fff1f2;
}

.shift-panel--new .shift-panel-header {
    border-color: #bfdbfe;
    background: #eff6ff;
}

.shift-badge {
    font-family: var(--font-mono);
    font-size: 0.75rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.08em;
    padding: 0.3rem 0.85rem;
    border-radius: 9999px;
}

.shift-badge--bad {
    background: #fee2e2;
    color: #dc2626;
}

.shift-badge--good {
    background: #dbeafe;
    color: var(--blue-dark);
}

.shift-time {
    font-family: var(--font-mono);
    font-size: 0.8rem;
    font-weight: 800;
}

.shift-time--bad {
    color: #dc2626;
}

.shift-time--good {
    color: var(--blue-dark);
}

.shift-steps {
    padding: var(--spacing-lg) var(--spacing-xl);
    display: grid;
    gap: var(--spacing-xs);
}

.shift-step-item {
    display: flex;
    gap: var(--spacing-md);
    align-items: flex-start;
    padding: var(--spacing-md);
    border-radius: 0.5rem;
}

.shift-step-item--bad {
    background: rgba(220, 38, 38, 0.04);
}

.shift-step-item--good {
    background: rgba(24, 119, 242, 0.04);
}

.shift-step-item strong {
    font-size: 0.875rem;
    font-weight: 700;
    display: block;
    margin-bottom: 0.25rem;
    color: var(--text-dark);
}

.shift-step-item p {
    font-size: 0.8rem;
    color: var(--text-light);
    line-height: 1.55;
    margin: 0;
}

.step-num {
    font-family: var(--font-mono);
    font-size: 0.6rem;
    font-weight: 700;
    color: #dc2626;
    background: #fee2e2;
    width: 24px;
    height: 24px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
    margin-top: 2px;
}

.step-num--good {
    color: var(--blue-dark);
    background: #dbeafe;
}

.shift-panel-footer {
    padding: var(--spacing-md) var(--spacing-xl);
    font-family: var(--font-mono);
    font-size: 0.7rem;
    font-weight: 600;
    letter-spacing: 0.04em;
    border-top: 1px solid;
    line-height: 1.5;
}

.shift-panel-footer--bad {
    border-color: #fecaca;
    color: #dc2626;
    background: #fff1f2;
}

.shift-panel-footer--good {
    border-color: #bfdbfe;
    color: var(--blue-dark);
    background: #eff6ff;
}

.shift-vs {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: var(--spacing-sm);
    padding-top: 4rem;
    width: 36px;
}

.shift-vs-line {
    width: 1px;
    flex: 1;
    min-height: 60px;
    background: var(--border-mid);
}

.shift-vs-text {
    font-size: 0.7rem;
    font-weight: 900;
    color: var(--text-light);
    font-family: var(--font-mono);
    writing-mode: vertical-rl;
    letter-spacing: 0.2em;
}


/* =================================================
   RACE SECTION
================================================= */
.race-section {
    padding: var(--spacing-4xl) 0;
}

.race-header {
    margin-bottom: var(--spacing-2xl);
    max-width: 640px;
}


.race-section .label-mono {
    color: #ef4444;
}

.race-section .section-desc {
    color: var(--text-mid);
}

.race-timeline {
    display: grid;
    gap: 1px;
    background: var(--border-light);
    border: 1px solid var(--border-light);
    border-radius: 0.75rem;
    overflow: hidden;
    margin-bottom: var(--spacing-2xl);
}

.race-event {
    display: grid;
    grid-template-columns: 110px 1fr;
    gap: var(--spacing-xl);
    padding: var(--spacing-xl);
    background: #fff;
    border-left: 3px solid #d1d5db;
    align-items: start;
    transition: border-color 0.2s;
}

.race-event:hover {
    border-left-color: #9ca3af;
}

.race-event--you {
    border-left-color: #f59e0b !important;
    background: #fffbeb;
}

.race-date {
    font-family: var(--font-mono);
    font-size: 0.7rem;
    text-transform: uppercase;
    letter-spacing: 0.1em;
    color: #6b7280;
    padding-top: 0.2rem;
}

.race-date--q {
    color: #f59e0b;
    font-size: 1.75rem;
    font-weight: 900;
    letter-spacing: 0;
    padding-top: 0;
    font-family: var(--font-primary);
    display: flex;
    align-items: center;
}

.race-event-content strong {
    display: block;
    font-size: 0.95rem;
    font-weight: 700;
    color: var(--text-dark);
    margin-bottom: 0.4rem;
}

.race-event--you .race-event-content strong {
    color: #d97706;
}

.race-event-content p {
    font-size: 0.85rem;
    color: #6b7280;
    line-height: 1.65;
    margin: 0;
}

.race-cta-block {
    text-align: center;
    padding: var(--spacing-2xl) 0 var(--spacing-sm);
}

.race-verdict {
    font-size: 1.05rem;
    color: var(--text-mid);
    margin-bottom: var(--spacing-xl);
    max-width: 460px;
    margin-left: auto;
    margin-right: auto;
    line-height: 1.65;
}


/* =================================================
   OBJECTION SECTION
================================================= */
.objection-section .section-header {
    max-width: 720px;
}

.objection-section .section-header .label-mono {
    font-style: italic;
    text-transform: none;
    letter-spacing: 0;
    font-size: 0.9rem;
    color: var(--text-mid);
    font-family: var(--font-mono);
    margin-bottom: var(--spacing-md);
}

.objection-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: var(--spacing-md);
    margin-bottom: var(--spacing-xl);
    align-items: start;
}

.objection-tool {
    border: 1px solid var(--border-light);
    border-radius: 1rem;
    padding: var(--spacing-xl);
    background: var(--bg-white);
}

.objection-tool--ours {
    border: 2px solid var(--blue);
    background: #f0f9ff;
}

.objection-tool-header {
    margin-bottom: var(--spacing-lg);
    padding-bottom: var(--spacing-lg);
    border-bottom: 1px solid var(--border-light);
}

.objection-tool--ours .objection-tool-header {
    border-color: #bfdbfe;
}

.objection-tool-name {
    display: block;
    font-size: 0.95rem;
    font-weight: 900;
    margin-bottom: 0.35rem;
    color: var(--text-dark);
}

.objection-tool-tag {
    font-family: var(--font-mono);
    font-size: 0.65rem;
    text-transform: uppercase;
    letter-spacing: 0.08em;
    color: var(--text-light);
}

.objection-tool-intro {
    font-size: 0.875rem;
    color: var(--text-mid);
    margin-bottom: var(--spacing-lg);
    line-height: 1.6;
}

.objection-divider-label {
    font-family: var(--font-mono);
    font-size: 0.65rem;
    text-transform: uppercase;
    letter-spacing: 0.1em;
    color: #16a34a;
    margin-bottom: var(--spacing-sm);
    margin-top: var(--spacing-lg);
}

.objection-divider-label--cant {
    color: #dc2626;
}

.objection-divider-label--ours {
    color: var(--blue);
}

.objection-can,
.objection-cant {
    list-style: none;
    display: grid;
    gap: 0.35rem;
    padding: 0;
    margin: 0;
}

.objection-can li,
.objection-cant li {
    font-size: 0.8rem;
    line-height: 1.5;
    display: flex;
    gap: 0.5rem;
    align-items: flex-start;
    padding: 0.2rem 0;
}

.objection-can li::before {
    content: "✓";
    color: #16a34a;
    font-weight: 900;
    flex-shrink: 0;
}

.objection-cant--questions li {
    color: var(--text-mid);
}

.objection-cant--questions li::before {
    content: "→";
    color: #dc2626;
    font-weight: 900;
    flex-shrink: 0;
}

.objection-can--ours li {
    color: var(--blue-dark);
    font-weight: 600;
}

.objection-can--ours li::before {
    content: "→";
    color: var(--blue);
    font-weight: 900;
    flex-shrink: 0;
}

.objection-verdict {
    font-size: 0.8rem;
    color: var(--text-mid);
    border-top: 1px solid var(--border-light);
    padding-top: var(--spacing-lg);
    margin-top: var(--spacing-lg);
    line-height: 1.65;
}

.objection-bottom {
    text-align: center;
    max-width: 620px;
    margin: 0 auto;
    padding: var(--spacing-xl);
    background: var(--bg-white);
    border: 1px solid var(--border-light);
    border-radius: 0.75rem;
    font-size: 0.925rem;
    line-height: 1.75;
    color: var(--text-mid);
}


/* =================================================
   HOW IT WORKS — STEPS GRID
================================================= */
.steps-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
    gap: 1px;
    background: var(--border-light);
    border: 1px solid var(--border-light);
    border-radius: 0.75rem;
    overflow: hidden;
    counter-reset: steps;
}

.step {
    background: var(--bg-white);
    position: relative;
    padding: calc(var(--spacing-xl) + 1.5rem) var(--spacing-lg) var(--spacing-xl);
}

.step::before {
    counter-increment: steps;
    content: "0" counter(steps);
    position: absolute;
    top: var(--spacing-md);
    left: var(--spacing-lg);
    font-family: var(--font-mono);
    font-size: 0.7rem;
    color: var(--blue);
    letter-spacing: 0.1em;
}

.step h3 {
    font-size: 0.95rem;
    font-weight: 700;
    margin-bottom: var(--spacing-md);
    color: var(--text-dark);
}

.step p {
    font-size: 0.875rem;
    color: var(--text-light);
    line-height: 1.7;
}


/* =================================================
   DEMO BLOCKS
================================================= */
.demo-block {
    display: grid;
    grid-template-columns: 1fr 1fr;
    grid-template-rows: auto 1fr;
    grid-template-areas:
        "tag   media"
        "text  media";
    column-gap: var(--spacing-2xl);
    row-gap: var(--spacing-sm);
    padding: var(--spacing-3xl) 0;
    border-bottom: 1px solid var(--border-light);
}

.demo-block:last-child {
    border-bottom: none;
}

.demo-block--bonus {
    display: none !important;
}

.demo-block--revealed {}

.demo-block--pre-btn {
    border-bottom: none;
}

.demo-bonus-btn {
    display: flex;
    align-items: center;
    gap: 1rem;
    width: 100%;
    background: none;
    border: none;
    cursor: pointer;
    padding: 1.5rem 0;
    margin: 0;
    transition: opacity 0.2s;
}

.demo-bonus-btn:hover {
    opacity: 0.65;
}

.demo-bonus-line {
    flex: 1;
    border-top: 1px dotted rgba(24, 119, 242, 0.4);
}

.demo-bonus-label {
    white-space: nowrap;
    font-family: var(--font-mono);
    font-size: 0.72rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.1em;
    color: var(--blue);
    padding: 0.35rem 0.9rem;
    border-radius: 9999px;
    border: 1px dotted rgba(24, 119, 242, 0.6);
}

.notion-embed-frame {
    border-radius: 12px;
    overflow: hidden;
    border: 1px solid var(--border-light);
    box-shadow: 0 8px 32px rgba(0, 0, 0, 0.18);
}

.demo-block.reverse {
    grid-template-areas:
        "media tag"
        "media text";
}

.demo-block > .demo-tag {
    grid-area: tag;
    align-self: end;
    justify-self: start;
}

.demo-block > .demo-text {
    grid-area: text;
}

.demo-block > .media-placeholder {
    grid-area: media;
    align-self: start;
}

.demo-tag {
    display: inline-block;
    width: fit-content;
    font-family: var(--font-mono);
    font-size: 0.7rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.08em;
    color: #1877f2;
    padding: 0.35rem 0.9rem;
    border-radius: 6px;
    border: 1px solid rgba(24, 119, 242, 0.35);
    box-shadow: 0 4px 20px rgba(24, 119, 242, 0.12), inset 0 1px 0 rgba(255, 255, 255, 0.9), inset 0 -1px 0 rgba(24, 119, 242, 0.1);
    background: linear-gradient(160deg, rgba(24,119,242,0.12) 0%, rgba(24,119,242,0.2) 50%, rgba(24,119,242,0.12) 100%);
    backdrop-filter: blur(8px);
    animation: blue-glow-pulse 1.5s ease-in-out infinite;
}

.demo-text h3 {
    font-size: 1.75rem;
    font-weight: 900;
    line-height: 1.1;
    margin-bottom: var(--spacing-md);
    color: var(--text-dark);
    text-transform: uppercase;
    letter-spacing: -0.03em;
}

.demo-text p {
    font-size: 0.925rem;
    line-height: 1.7;
    margin-bottom: var(--spacing-md);
    color: var(--text-mid);
}

.demo-text ul {
    display: grid;
    gap: var(--spacing-sm);
    list-style: none;
    padding: 0;
}

.demo-text ul li {
    font-size: 0.875rem;
    display: flex;
    gap: var(--spacing-sm);
    align-items: flex-start;
    color: var(--text-mid);
}

.demo-text ul li::before {
    content: "→";
    color: var(--blue);
    font-weight: 700;
    flex-shrink: 0;
}


/* =================================================
   FEATURES GRID
================================================= */
.features-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 1px;
    background: var(--border-light);
    border: 1px solid var(--border-light);
    border-radius: 0.75rem;
    overflow: hidden;
}

.feature-card {
    background: var(--bg-white);
    padding: var(--spacing-xl);
}

.feature-card .icon {
    font-size: 1.5rem;
    margin-bottom: var(--spacing-lg);
    display: block;
}

.feature-card h3 {
    font-size: 0.95rem;
    font-weight: 700;
    margin-bottom: var(--spacing-sm);
    color: var(--text-dark);
}

.feature-card p {
    font-size: 0.875rem;
    color: var(--text-light);
    line-height: 1.7;
}


/* =================================================
   PARAMETER DB — NAMING
================================================= */
.naming-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: var(--spacing-lg);
    align-items: start;
}

.naming-block {
    border: 1px solid var(--border-light);
    border-radius: 1rem;
    padding: var(--spacing-xl);
    background: var(--bg-white);
}

.naming-block--upgrade {
    border-color: #bfdbfe;
    background: #f0f9ff;
}

.naming-label {
    display: inline-block;
    font-family: var(--font-mono);
    font-size: 0.65rem;
    text-transform: uppercase;
    letter-spacing: 0.1em;
    color: var(--text-light);
    background: var(--bg-gray);
    border: 1px solid var(--border-light);
    padding: 0.25rem 0.7rem;
    border-radius: 9999px;
    margin-bottom: var(--spacing-lg);
}

.naming-label--blue {
    color: var(--blue-dark);
    background: #dbeafe;
    border-color: #bfdbfe;
}

.naming-block h3 {
    font-size: 1.25rem;
    font-weight: 900;
    text-transform: uppercase;
    letter-spacing: -0.03em;
    line-height: 1.1;
    margin-bottom: var(--spacing-md);
    color: var(--text-dark);
}

.naming-block p {
    font-size: 0.875rem;
    color: var(--text-mid);
    line-height: 1.7;
    margin-bottom: var(--spacing-lg);
}

.naming-example {
    background: var(--bg-gray);
    border: 1px solid var(--border-light);
    border-radius: 0.5rem;
    padding: var(--spacing-md) var(--spacing-lg);
    margin-bottom: var(--spacing-lg);
}

.naming-example--blue {
    background: #dbeafe;
    border-color: #bfdbfe;
}

.naming-example-label {
    display: block;
    font-family: var(--font-mono);
    font-size: 0.6rem;
    text-transform: uppercase;
    letter-spacing: 0.1em;
    color: var(--text-light);
    margin-bottom: 0.35rem;
}

.naming-example--blue .naming-example-label {
    color: var(--blue-dark);
}

.naming-example code {
    font-family: var(--font-mono);
    font-size: 0.875rem;
    font-weight: 700;
    color: var(--text-dark);
    letter-spacing: 0.02em;
}

.naming-example--blue code {
    color: var(--blue-dark);
}

.naming-list {
    list-style: none;
    padding: 0;
    display: grid;
    gap: 0.4rem;
    margin-bottom: var(--spacing-lg);
}

.naming-list li {
    font-size: 0.825rem;
    color: var(--text-mid);
    display: flex;
    gap: 0.5rem;
    align-items: flex-start;
    line-height: 1.5;
}

.naming-list li::before {
    content: "→";
    color: var(--blue);
    font-weight: 700;
    flex-shrink: 0;
}

.naming-note {
    font-size: 0.8rem;
    color: var(--text-light);
    line-height: 1.6;
    font-style: italic;
    margin-bottom: 0;
}


/* =================================================
   FOR WHO
================================================= */
.forwho-split {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: var(--spacing-2xl);
    align-items: stretch;
}

.forwho-col {
    display: flex;
    flex-direction: column;
}

.forwho-col:first-child {
    grid-row: 1 / span 2;
}

.forwho-savings-link {
    grid-column: 2;
    grid-row: 2;
    justify-self: end;
    align-self: end;
    padding-top: var(--spacing-md);
    padding-bottom: 0;
    font-size: 0.9rem;
}

.forwho-col-label {
    font-family: var(--font-mono);
    font-size: 0.7rem;
    text-transform: uppercase;
    letter-spacing: 0.1em;
    font-weight: 700;
    align-self: flex-start;
    margin-bottom: var(--spacing-lg);
    padding: 0.3rem 0.8rem;
    border-radius: 9999px;
    display: inline-block;
}

.forwho-col-label--yes {
    color: #16a34a;
    background: #dcfce7;
    border: 1px solid #bbf7d0;
}

.forwho-col-label--no {
    color: var(--text-light);
    background: var(--bg-gray);
    border: 1px solid var(--border-light);
}

.forwho-list {
    display: grid;
    gap: var(--spacing-sm);
    list-style: none;
    padding: 0;
}

.forwho-list li {
    display: flex;
    align-items: flex-start;
    gap: var(--spacing-md);
    font-size: 0.925rem;
    padding: var(--spacing-md) var(--spacing-lg);
    background: var(--bg-light);
    border: 1px solid var(--border-light);
    border-radius: 0.5rem;
    line-height: 1.55;
    color: var(--text-dark);
}

.forwho-list li::before {
    content: "✓";
    color: #16a34a;
    font-weight: 900;
    flex-shrink: 0;
    margin-top: 0.1rem;
}

.forwho-list--no li {
    background: var(--bg-white);
    color: var(--text-light);
}

.forwho-list--no li::before {
    content: "✕";
    color: var(--border-mid);
}

.forwho-note {
    font-size: 0.8rem;
    color: var(--text-light);
    font-style: italic;
    margin-top: var(--spacing-md);
    padding-left: var(--spacing-sm);
    line-height: 1.6;
}


/* =================================================
   SCALE SECTION
================================================= */
.scale-inner {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: var(--spacing-2xl);
    align-items: center;
}

.scale-list {
    display: grid;
    gap: var(--spacing-sm);
    margin-top: var(--spacing-lg);
    list-style: none;
    padding: 0;
}

.scale-list li {
    font-size: 0.9rem;
    color: var(--text-mid);
    display: flex;
    gap: var(--spacing-sm);
    align-items: flex-start;
    line-height: 1.55;
}

.scale-list li::before {
    content: "→";
    color: var(--blue);
    font-weight: 700;
    flex-shrink: 0;
}


/* =================================================
   GETTING STARTED
================================================= */
.steps-grid--getting-started {
    grid-template-columns: repeat(3, 1fr);
    gap: var(--spacing-md);
    background: none;
    border: none;
    overflow: visible;
    counter-reset: steps;
}

#getting-started .section-header {
    margin-bottom: var(--spacing-lg);
}

.steps-grid--getting-started .step {
    background: var(--bg-white);
    padding-top: calc(var(--spacing-lg) + 1.5rem);
    padding-bottom: var(--spacing-lg);
    border-radius: 1rem;
    box-shadow: 0 2px 8px var(--shadow-light);
}

.steps-grid--getting-started .step:last-child {
    border-right: none;
}

.steps-dots {
    display: none;
}

.getting-started-cta {
    display: flex;
    justify-content: center;
    margin-top: var(--spacing-xl);
}

.swipe-hint {
    display: none;
}

.steps-grid--getting-started .step::before {
    border-radius: 6px;
    border: 1px solid rgba(24, 119, 242, 0.35);
    background: linear-gradient(160deg, rgba(24,119,242,0.12) 0%, rgba(24,119,242,0.2) 50%, rgba(24,119,242,0.12) 100%);
    padding: 0.2rem 0.5rem;
    color: #1877f2;
    animation: blue-glow-pulse 1.5s ease-in-out infinite;
}


/* =================================================
   PRICING
================================================= */
#pricing .section-header {
    margin-bottom: var(--spacing-lg);
}



#pricing .section-desc {
    max-width: none;
}

.pricing-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: var(--spacing-lg);
    align-items: stretch;
}

.pricing-between {
    grid-column: 1 / -1;
    text-align: center;
    font-style: italic;
    color: var(--text-light);
    font-size: 0.9rem;
    padding: var(--spacing-xs) 0;
    margin: 0;
}

.pricing-card--full {
    grid-column: 1 / -1;
    justify-self: center;
}

/* =================================================
   SAVINGS CALCULATOR
================================================= */
.calc-microcopy {
    font-size: 0.78rem;
    color: var(--text-light);
    margin-top: 0.3rem;
    font-style: italic;
}

.calc-fields {
    display: flex;
    flex-direction: column;
    gap: 0.5rem;
    margin-top: var(--spacing-md);
}

.calc-field {
    display: flex;
    flex-direction: row;
    align-items: center;
    justify-content: space-between;
    gap: 1rem;
}

.calc-label {
    font-size: 0.78rem;
    font-weight: 600;
    color: var(--text-mid);
    text-transform: uppercase;
    letter-spacing: 0.05em;
}

.calc-label-note {
    font-weight: 400;
    font-style: italic;
    text-transform: none;
    letter-spacing: 0;
    color: var(--text-light);
}

.calc-input-group {
    display: grid;
    grid-template-columns: 1rem 5rem 2.5rem;
    align-items: center;
    gap: 0.4rem;
    flex-shrink: 0;
}

.calc-unit-icon {
    width: 0.95rem;
    height: 0.95rem;
    color: var(--text-light);
    stroke-width: 2;
}

.calc-pulse {
    animation: calc-pulse 0.6s ease;
}

@keyframes calc-pulse {
    0%   { transform: scale(1); }
    40%  { transform: scale(1.12); }
    100% { transform: scale(1); }
}

.calc-unit-pre {
    font-size: 0.75rem;
    color: var(--text-light);
    font-weight: 500;
    text-align: right;
}

.calc-input-wrap {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    border: 1.5px solid var(--border-mid);
    border-radius: 0.5rem;
    padding: 0.35rem 0.65rem;
    background: var(--bg-light);
    transition: border-color 0.15s;
    flex-shrink: 0;
    width: 5rem;
}

.calc-input-wrap:focus-within {
    border-color: var(--blue);
}

.calc-input {
    flex: 1;
    border: none;
    background: none;
    font-family: var(--font-primary);
    font-size: 0.85rem;
    font-weight: 700;
    color: var(--text-dark);
    outline: none;
    min-width: 0;
}

.calc-input::placeholder {
    color: var(--border-mid);
    font-weight: 400;
}

.calc-unit {
    font-size: 0.75rem;
    color: var(--text-light);
    font-weight: 500;
    white-space: nowrap;
}

.calc-result {
    display: none;
    flex-direction: column;
    margin-top: var(--spacing-md);
    border-top: 1px solid var(--border-light);
    padding-top: var(--spacing-md);
    gap: 0.6rem;
}

.calc-result.visible {
    display: flex;
}

.calc-result-row {
    display: flex;
    justify-content: space-between;
    align-items: center;
    font-size: 0.9rem;
    color: var(--text-mid);
}

.calc-result-row span:last-child {
    font-weight: 700;
    color: var(--text-dark);
}

.calc-result-danger,
.calc-result-danger span:last-child {
    color: #dc2626 !important;
    font-weight: 700;
}

.calc-result-danger span:last-child {
    text-shadow: 0 0 8px rgba(220, 38, 38, 0.4);
}

.calc-result-licence span:last-child {
    color: var(--blue);
    font-weight: 700;
    text-shadow: 0 0 8px rgba(24, 119, 242, 0.4);
}

.calc-result-savings {
    margin-top: 0.4rem;
    padding-top: 0.6rem;
    border-top: 1px solid var(--border-light);
    font-weight: 700;
    color: var(--text-dark);
}

.calc-result-savings span:last-child {
    color: #16a34a;
    font-size: 1.1rem;
    text-shadow: 0 0 8px rgba(22, 163, 74, 0.5);
}

.calc-result-negative,
.calc-result-negative span:last-child {
    color: #ea580c !important;
}

.calc-tooltip-wrap {
    position: relative;
    display: inline-flex;
    align-items: center;
    vertical-align: middle;
    margin-left: 0.3em;
}

.calc-tooltip-icon {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 1.1em;
    height: 1.1em;
    border-radius: 50%;
    border: 1.5px solid var(--text-light);
    color: var(--text-light);
    font-size: 0.7rem;
    font-weight: 700;
    cursor: default;
    line-height: 1;
    font-style: normal;
}

.calc-tooltip-box {
    display: none;
    position: absolute;
    bottom: calc(100% + 0.5rem);
    left: 50%;
    transform: translateX(-50%);
    background: #fff;
    color: var(--text-dark);
    border: 1px solid var(--border-light);
    box-shadow: 0 4px 12px rgba(0,0,0,0.08);
    font-size: 0.75rem;
    font-weight: 400;
    font-style: normal;
    line-height: 1.4;
    padding: 0.5rem 0.75rem;
    border-radius: 0.5rem;
    width: max-content;
    text-align: left;
    pointer-events: none;
    z-index: 10;
}

.calc-tooltip-wrap:hover .calc-tooltip-box {
    display: block;
}

.tooltip-mobile-break {
    display: none;
}

.calc-tooltip-formula {
    display: block;
    margin-top: 0.4rem;
    font-family: var(--font-mono);
    font-size: 0.7rem;
    line-height: 1.6;
}

.ctt-red  { color: #dc2626; }
.ctt-blue { color: var(--blue); }
.ctt-green { color: #16a34a; }

.calc-result-time span:last-child {
    color: var(--text-dark);
    font-weight: 700;
    text-shadow: 0 0 8px rgba(0, 0, 0, 0.4);
}

.calc-note {
    font-family: 'Roboto', sans-serif;
    font-size: 0.78rem;
    color: var(--text-light);
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-top: 0.3rem;
    font-style: italic;
}

.pricing-card {
    display: flex;
    flex-direction: column;
    background: var(--bg-white);
    border: 1px solid var(--border-light);
    border-radius: 1.5rem;
    padding: var(--spacing-lg) var(--spacing-xl);
    box-shadow: 0 8px 40px rgba(0, 0, 0, 0.12), 0 2px 8px rgba(0, 0, 0, 0.06);
}

.pricing-card--featured {
    background: #f0f9ff;
    border-color: rgba(24, 119, 242, 0.4);
    box-shadow: 0 8px 40px rgba(24, 119, 242, 0.18), 0 2px 12px rgba(24, 119, 242, 0.1);
}

@keyframes pricing-card-pulse {
    0%, 100% { box-shadow: 0 8px 40px rgba(0, 0, 0, 0.12), 0 2px 8px rgba(0, 0, 0, 0.06); }
    50%       { box-shadow: 0 0 32px 8px rgba(24, 119, 242, 0.3), 0 8px 40px rgba(0, 0, 0, 0.06); }
}

.pricing-card--highlighted {
    animation: pricing-card-pulse 1.1s ease-in-out infinite;
}

.pricing-between {
    text-align: center;
    font-style: italic;
    color: var(--text-light);
    font-size: 0.9rem;
    padding: var(--spacing-md) 0;
}

.pricing-badge {
    display: inline-block;
    align-self: flex-start;
    background: linear-gradient(160deg, rgba(60,60,60,0.95) 0%, rgba(0,0,0,1) 50%, rgba(40,40,40,0.95) 100%);
    border: 1px solid rgba(255,255,255,0.15);
    border-radius: 6px;
    color: #fff;
    font-family: var(--font-mono);
    font-size: 0.7rem;
    text-transform: uppercase;
    letter-spacing: 0.1em;
    padding: 0.35rem 0.9rem;
    animation: dark-glow-pulse 1.5s ease-in-out infinite;
    margin-bottom: var(--spacing-xs);
}

.pricing-badge--featured {
    background: linear-gradient(160deg, rgba(24,119,242,0.12) 0%, rgba(24,119,242,0.2) 50%, rgba(24,119,242,0.12) 100%);
    border: 1px solid rgba(24,119,242,0.35);
    border-radius: 6px;
    color: #1877f2;
    animation: blue-glow-pulse 1.5s ease-in-out infinite;
}

.pricing-price {
    font-size: 3rem;
    font-weight: 900;
    line-height: 1;
    margin-bottom: var(--spacing-2xs);
    color: var(--text-dark);
    letter-spacing: -0.04em;
}

.pricing-price-period {
    font-size: 1.2rem;
    font-weight: 600;
    letter-spacing: 0;
    color: var(--text-light);
}

.savings-calc {
    padding: var(--spacing-lg) var(--spacing-xl);
}

.savings-calc .pricing-price {
    font-size: 1.8rem;
    font-weight: 900;
    letter-spacing: -0.03em;
    text-transform: uppercase;
    line-height: 1.1;
    margin-top: var(--spacing-xs);
}

.pricing-sub {
    font-size: 0.825rem;
    color: var(--text-light);
    margin-bottom: var(--spacing-sm);
    font-family: var(--font-mono);
    line-height: 1.5;
}

.pricing-list {
    display: grid;
    gap: 0.5rem;
    flex: 1;
    margin-bottom: 0.4rem;
    list-style: none;
    padding: 0;
}

.pricing-list li {
    font-size: 0.875rem;
    display: flex;
    gap: var(--spacing-sm);
    align-items: flex-start;
    color: var(--text-mid);
    line-height: 1.5;
}

.pricing-list li::before {
    content: "✓";
    color: #22c55e;
    font-weight: 900;
    flex-shrink: 0;
}

.pricing-card .chrome-btn {
    margin-top: 1.25rem !important;
}

.pricing-note {
    font-size: 0.8rem;
    color: var(--text-light);
    line-height: 1.6;
    margin-top: 0.75rem;
}

.pricing-card--featured .pricing-note {}


/* =================================================
   TESTIMONIALS
================================================= */
.testimonials-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: var(--spacing-md);
}

.testimonial-card {
    background: var(--bg-white);
    border: 1px solid var(--border-light);
    border-radius: 1rem;
    padding: var(--spacing-xl);
}

.testimonial-author {
    display: flex;
    align-items: center;
    gap: 0.85rem;
    margin-bottom: var(--spacing-lg);
    padding-bottom: var(--spacing-lg);
    border-bottom: 1px solid var(--border-light);
}

.testimonial-avatar {
    flex-shrink: 0;
    width: 2.75rem;
    height: 2.75rem;
    border-radius: 50%;
    overflow: hidden;
    border: 1px solid var(--border-light);
    background: #fff;
}

.testimonial-avatar img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.testimonial-author strong {
    display: block;
    font-size: 0.95rem;
    font-weight: 700;
    color: var(--text-dark);
    margin-bottom: 0.2rem;
}

.testimonial-author span {
    font-family: var(--font-mono);
    font-size: 0.7rem;
    text-transform: uppercase;
    letter-spacing: 0.08em;
    color: var(--text-light);
}

.testimonial-card p {
    font-size: 0.925rem;
    color: var(--text-mid);
    line-height: 1.75;
    font-style: italic;
}


/* =================================================
   PROBLEM GRID
================================================= */
.problem-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 1px;
    background: var(--border-light);
    border: 1px solid var(--border-light);
    border-radius: 0.75rem;
    overflow: hidden;
}

.problem-card {
    background: var(--bg-white);
    padding: var(--spacing-xl);
}

.problem-card .icon {
    font-size: 1.5rem;
    margin-bottom: var(--spacing-lg);
    display: block;
}

.problem-card h3 {
    font-size: 0.95rem;
    font-weight: 700;
    margin-bottom: var(--spacing-md);
}

.problem-card p {
    font-size: 0.875rem;
    color: var(--text-light);
    line-height: 1.7;
}


/* =================================================
   FAQ
================================================= */
.faq-list {
    max-width: 760px;
    display: grid;
    gap: 1px;
    background: var(--border-light);
    border: 1px solid var(--border-light);
    border-radius: 0.75rem;
    overflow: hidden;
}

.faq-item {
    background: var(--bg-white);
}

.faq-trigger {
    width: 100%;
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: var(--spacing-lg);
    padding: var(--spacing-xl);
    background: none;
    border: none;
    cursor: pointer;
    text-align: left;
    font-family: var(--font-primary);
    font-size: 0.95rem;
    font-weight: 700;
    color: var(--text-dark);
    transition: background 0.15s;
}

.faq-trigger:hover {
    background: var(--bg-light);
}

.faq-icon {
    flex-shrink: 0;
    width: 20px;
    height: 20px;
    border-radius: 50%;
    border: 1.5px solid var(--border-mid);
    position: relative;
    transition: border-color 0.2s, background 0.2s;
}

.faq-icon::before,
.faq-icon::after {
    content: '';
    position: absolute;
    background: var(--text-mid);
    border-radius: 2px;
    transition: transform 0.25s ease, opacity 0.25s ease;
}

.faq-icon::before {
    width: 8px;
    height: 1.5px;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
}

.faq-icon::after {
    width: 1.5px;
    height: 8px;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
}

.faq-item.active .faq-icon {
    border-color: var(--blue);
    background: var(--blue);
}

.faq-item.active .faq-icon::before,
.faq-item.active .faq-icon::after {
    background: #fff;
}

.faq-item.active .faq-icon::after {
    transform: translate(-50%, -50%) rotate(90deg);
    opacity: 0;
}

.faq-body {
    display: grid;
    grid-template-rows: 0fr;
    transition: grid-template-rows 0.3s ease;
}

.faq-item.active .faq-body {
    grid-template-rows: 1fr;
}

.faq-body-inner {
    overflow: hidden;
}

.faq-body p {
    padding: 0 var(--spacing-xl) var(--spacing-xl);
    font-size: 0.875rem;
    color: var(--text-light);
    line-height: 1.8;
    margin: 0;
}


/* =================================================
   BOTTOM HERO
================================================= */
.screen-frame {
    background: #000;
    padding: 1rem 2rem 3rem;
    border-top: 1px solid #1a1a1a;
    display: flex;
    justify-content: center;
}

.screen-frame > .bottom-hero {
    max-width: 1400px;
    width: 100%;
}

.bottom-hero {
    position: relative;
    overflow: hidden;
    background: var(--bg-light);
    border-radius: 1.25rem;
    border-top: none;
    box-shadow: 0 0 0 1px rgba(255,255,255,0.07), 0 -8px 40px rgba(0,0,0,0.4);
    padding: var(--spacing-lg) 0;
    text-align: center;
    display: flex;
    align-items: center;
    justify-content: center;
    min-height: calc(100dvh - 7.5rem - 6rem - 4rem);
}

.bottom-content {
    position: relative;
    z-index: 20;
    max-width: 600px;
    margin: 0 auto;
    padding: 0 var(--spacing-md);
}

.bottom-content .label-mono {
    margin-top: var(--spacing-md);
    margin-bottom: var(--spacing-xs);
}

.facepile {
    display: flex;
    align-items: center;
    justify-content: center;
}

.facepile-avatar {
    width: 2.75rem;
    height: 2.75rem;
    border-radius: 50%;
    border: 2.5px solid var(--bg-light);
    margin-left: -0.75rem;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 0.75rem;
    font-weight: 700;
    color: var(--text-dark);
    overflow: hidden;
    box-shadow: 0 2px 6px rgba(0,0,0,0.1);
}

.facepile-avatar:first-child {
    margin-left: 0;
}

.facepile-avatar--more {
    background: #dbeafe;
    color: var(--blue);
    font-size: 0.65rem;
    font-weight: 800;
}

.facepile-label {
    margin-left: var(--spacing-xs);
    font-family: var(--font-mono);
    font-size: 0.75rem;
    font-style: italic;
    color: var(--text-light);
}

.bottom-content .hero-title {
    font-size: max(2rem, 5vw);
    margin-bottom: var(--spacing-md);
}

.bottom-hero-headline {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 0.25rem;
    margin-bottom: var(--spacing-md);
}

.bottom-hero-push {
    font-size: max(4rem, 9vw);
    font-weight: 900;
    letter-spacing: -0.03em;
    line-height: 1;
    text-transform: uppercase;
    font-style: italic;
    padding: 0 0.2em;
    white-space: nowrap;
    background: linear-gradient(160deg, #666 0%, #1a1a1a 30%, #000 50%, #1a1a1a 70%, #555 100%);
    -webkit-background-clip: text;
    background-clip: text;
    color: transparent;
    -webkit-text-fill-color: transparent;
    filter: drop-shadow(0 2px 6px rgba(0,0,0,0.4));
}

.bottom-hero-accelerator {
    height: max(3rem, 6.5vw);
    width: auto;
    filter: contrast(1) drop-shadow(0 1px 1px rgba(0,0,0,0.5));
}

.final-cta-sub {
    font-size: 0.95rem;
    color: var(--text-mid);
    margin-bottom: var(--spacing-md);
    line-height: 1.7;
}

.final-cta-buttons {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: var(--spacing-md);
}

.bottom-cta-microcopy {
    font-family: var(--font-mono);
    font-size: 0.7rem;
    color: var(--blue);
    font-style: italic;
    margin-top: var(--spacing-md);
    opacity: 0.7;
}

.cta-secondary-link {
    font-size: 0.85rem;
    color: var(--text-light);
    font-family: var(--font-mono);
    text-decoration: underline;
    text-underline-offset: 3px;
    transition: color 0.2s;
}

.cta-secondary-link:hover {
    color: var(--text-dark);
}


/* =================================================
   BOTTOM HERO
================================================= */
.bottom-hero::before {
    display: none;
}

.bottom-hero::after {
    display: none;
    z-index: 1;
}

/* =================================================
   SPIKE — BOTTOM
================================================= */
#bottom-spike-target {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    pointer-events: none;
    z-index: 10;
}


/* =================================================
   SITE FOOTER
================================================= */
.site-footer {
    padding: var(--spacing-xl) 0;
}

.footer-flex {
    display: flex;
    justify-content: space-between;
    align-items: center;
    font-size: 0.8rem;
    color: var(--text-light);
    font-family: var(--font-mono);
}

.footer-links {
    display: flex;
    gap: var(--spacing-lg);
}

.footer-row {
    display: contents;
}

.footer-links a {
    color: var(--text-light);
    text-decoration: none;
    transition: color 0.2s;
}

.footer-links a:hover {
    color: #fff;
}

.footer-link--highlight {
    color: #3a6abf !important;
    font-weight: 700;
    transition: color 0.2s;
    order: -1;
}

.footer-link--highlight:hover {
    color: #1877f2 !important;
}


/* =================================================
   RESPONSIVE
================================================= */

@media (max-width: 1024px) {
    .objection-grid {
        grid-template-columns: 1fr;
    }

    .naming-grid {
        grid-template-columns: 1fr;
    }
}


@media (max-width: 960px) {
    .shift-container {
        grid-template-columns: 1fr;
        gap: var(--spacing-xl);
    }

    .shift-vs {
        flex-direction: row;
        width: 100%;
        padding-top: 0;
        height: 36px;
        gap: var(--spacing-md);
    }

    .shift-vs-line {
        width: auto;
        height: 1px;
        flex: 1;
        min-height: unset;
    }

    .shift-vs-text {
        writing-mode: horizontal-tb;
        letter-spacing: 0.2em;
    }

    .forwho-split {
        grid-template-columns: 1fr;
        gap: var(--spacing-xl);
    }

    .forwho-col:first-child {
        grid-row: auto;
        order: 1;
    }

    .forwho-savings-link {
        order: 2;
        grid-column: 1;
        grid-row: auto;
        justify-self: start;
        padding-top: 0;
        margin-top: calc(-1 * var(--spacing-lg));
    }

    .forwho-col:nth-child(2) {
        order: 3;
    }

    .scale-inner {
        grid-template-columns: 1fr;
    }

    .pricing-grid {
        grid-template-columns: 1fr;
        max-width: 500px;
        margin: 0 auto;
    }

    .pricing-card--full {
        grid-column: 1;
    }

    .steps-grid--getting-started {
        grid-template-columns: 1fr;
    }

    .steps-grid--getting-started .step {
        border-right: none;
        border-bottom: 1px solid var(--border-light);
    }

    .steps-grid--getting-started .step:last-child {
        border-bottom: none;
    }
}


@media (max-width: 767px) {

    .logo-title {
        font-size: 0.9rem;
    }

    .header-inner {
        display: grid;
        grid-template-columns: 1fr auto 1fr;
        align-items: center;
    }

    .header-patch {
        font-size: 0.5rem;
        padding: 0.3rem 0.5rem;
    }

    .header-nav {
        display: none;
    }

    .header-cta {
        display: none;
    }

    .menu-toggle {
        display: flex;
    }

    .patch-logo {
        height: 0.75rem;
    }

    .patch-line1 {
        font-size: 0.5rem;
    }

    .patch-accelerator {
        height: 0.7rem;
    }

    .patch-break {
        display: block;
    }

    .chrome-btn.small {
        font-size: 0.8rem;
        padding: 0.4rem 0.85rem;
    }

    .hero-content {
        gap: 1.8em;
    }

    .hero-display {
        font-size: 5em;
        gap: 0.75rem;
    }

    .hero-sub {
        font-size: 1.1em;
        padding-left: 1.5em;
        padding-right: 1.5em;
    }

    .hero-tag {
        white-space: nowrap;
        width: auto;
    }


    .demo-tag {
        margin-bottom: var(--spacing-sm);
    }

    .demo-text h3 {
        font-size: 1.25rem;
        margin-bottom: var(--spacing-sm);
    }

    .demo-text p {
        margin-bottom: var(--spacing-sm);
    }

    .demo-text ul {
        gap: var(--spacing-xs);
    }


    .statbar {
        gap: var(--spacing-lg);
        padding: var(--spacing-lg) var(--spacing-md);
    }

    .stat {
        min-width: auto;
        flex: 0 0 calc(50% - var(--spacing-lg));
    }

    .shift-panel-header {
        flex-direction: column;
        align-items: flex-start;
        gap: var(--spacing-xs);
    }

    .race-event {
        grid-template-columns: 1fr;
        gap: var(--spacing-sm);
        padding: var(--spacing-lg);
    }

    .race-date--q {
        font-size: 1.2rem;
    }

    .footer-flex {
        flex-direction: column;
        gap: var(--spacing-md);
        text-align: center;
    }

    .final-cta-buttons {
        gap: var(--spacing-lg);
    }

    .notion-embed-frame iframe {
        height: 500px;
    }

    .bottom-hero {
        min-height: auto;
        aspect-ratio: 2 / 3;
    }

    .screen-frame {
        padding: 0.5rem;
    }

    .bottom-hero-push {
        font-size: max(2.2rem, 10vw);
    }

    .bottom-hero-accelerator {
        height: max(2.2rem, 10vw);
    }

    .final-cta-sub {
        font-size: 0.85rem;
    }

    .mobile-break { display: block; }

    #getting-started .section-header {
        margin-bottom: var(--spacing-sm);
    }

    #getting-started .step {
        padding-bottom: var(--spacing-xl);
    }

    .getting-started-cta {
        margin-top: var(--spacing-sm);
    }

    .hero-title {
        font-size: max(2.8rem, 8vw);
    }

    .hero-section {
        padding-left: var(--spacing-xs);
        padding-right: var(--spacing-xs);
        padding-top: 2.5rem;
        padding-bottom: calc(var(--spacing-md) + 18px);
        min-height: calc(100svh - 9rem);
    }

    .hero-small {
        font-size: 0.24em;
    }

    .hero-content {
        padding-left: 0;
        padding-right: 0;
    }


    .naming-block {
        padding: var(--spacing-md);
    }

    .naming-example code {
        font-size: 0.75rem;
        word-break: break-all;
        white-space: normal;
    }
}

@media (max-width: 1024px) {
    .demo-block,
    .demo-block.reverse {
        display: flex;
        flex-direction: column;
        gap: var(--spacing-sm);
        padding: var(--spacing-md) 0;
        min-height: 40svh;
    }

    .demo-block > .demo-tag  { order: 1; align-self: flex-start; margin-bottom: 0; }
    .demo-block > .demo-img  { order: 2; width: 100%; flex: 1; min-height: 0; object-fit: cover; align-self: auto; margin: 0; }
    .demo-block > .demo-text { order: 3; }
}

@media (max-width: 767px) {

    .section-desc {
        font-size: 0.75rem;
    }

    #pricing .label-mono {
        display: block;
    }

    #pricing .section-header {
        margin-bottom: var(--spacing-sm);
    }

    .pricing-grid {
        display: flex;
        flex-direction: column;
        gap: var(--spacing-md);
        max-width: 500px;
        margin: 0 auto;
    }

    .pricing-card {
        width: 100%;
        padding: var(--spacing-md);
    }

    .savings-calc {
        padding-top: var(--spacing-md);
    }

    .pricing-note {
        font-size: 0.7rem;
    }

    .steps-scroll-outer {
        overflow-x: auto;
        scroll-snap-type: x mandatory;
        scroll-padding-left: 1.25rem;
        scrollbar-width: none;
        padding: 0.75rem 1.25rem;
        margin-left: -1.5rem;
        margin-right: -1.5rem;
    }

    .steps-scroll-outer::-webkit-scrollbar {
        display: none;
    }

    .steps-grid--getting-started {
        display: flex;
        flex-direction: row;
        gap: 1.25rem;
        counter-reset: steps;
    }

    .steps-grid--getting-started::after {
        content: '';
        flex: 0 0 2.75rem;
    }

    .steps-grid--getting-started .step {
        flex: 0 0 calc(100vw - 4rem);
        height: auto;
        scroll-snap-align: start;
        scroll-snap-stop: always;
    }

    .steps-dots {
        display: flex;
        justify-content: center;
        gap: 0.4rem;
        align-items: center;
        margin-top: 0.75rem;
    }

    .steps-dot {
        width: 5px;
        height: 5px;
        border-radius: 50%;
        background: rgba(24, 119, 242, 0.25);
        transition: background 0.2s;
    }

    .steps-dot.active {
        background: #1877f2;
    }

    .swipe-hint {
        display: block;
        position: absolute;
        bottom: var(--spacing-lg);
        right: var(--spacing-lg);
        font-family: var(--font-mono);
        font-size: 0.65rem;
        font-weight: 300;
        color: #1877f2;
        letter-spacing: 0.08em;
    }

    .demo-block,
    .demo-block.reverse {
        min-height: 100svh;
    }

    .section-dark,
    .section-black {
        padding: var(--spacing-xl) 0;
    }

    .section-header {
        margin-bottom: var(--spacing-lg);
    }

    .calc-tooltip-box {
        left: 0;
        transform: none;
    }

    .tooltip-mobile-break {
        display: block;
    }

    .calc-input {
        font-size: 16px;
    }

    .footer-flex {
        flex-direction: column;
        gap: var(--spacing-md);
        text-align: center;
    }

    .footer-links {
        display: flex;
        flex-direction: column;
        align-items: stretch;
        gap: var(--spacing-sm);
    }

    .footer-link--highlight {
        order: 0;
    }

    .footer-row {
        display: flex;
        justify-content: center;
        align-items: center;
    }

    .footer-row a {
        flex: 1;
        text-align: center;
    }

    #try-it {
        display: none;
    }

}