/* Resto Answer — static build (from React design system) */

:root {
    --background: 0 0% 100%;
    --foreground: 215 28% 17%;
    --surface-alt: 45 100% 96%;
    --primary: 215 28% 17%;
    --primary-foreground: 0 0% 100%;
    --primary-hover: 215 28% 24%;
    --secondary: 45 100% 51%;
    --secondary-foreground: 215 28% 17%;
    --accent: 45 100% 51%;
    --accent-foreground: 215 28% 17%;
    --accent-hover: 45 100% 58%;
    --success: 215 28% 17%;
    --muted: 45 100% 96%;
    --muted-foreground: 215 16% 40%;
    --muted-on-dark: 45 30% 88%;
    --card: 0 0% 100%;
    --card-foreground: 215 28% 17%;
    --border: 215 20% 90%;
    --border-dark: 215 28% 30%;
    --ring: 45 100% 51%;
    --radius: 1rem;
    --shadow-sm: 0 1px 2px hsl(215 28% 17% / 0.06), 0 2px 8px hsl(215 28% 17% / 0.04);
    --shadow-md: 0 4px 12px hsl(215 28% 17% / 0.08), 0 8px 24px hsl(215 28% 17% / 0.06);
    --shadow-lift: 0 12px 32px hsl(215 28% 17% / 0.12), 0 24px 48px hsl(215 28% 17% / 0.08);
    --shadow-yellow: 0 20px 60px -15px hsl(45 100% 51% / 0.6);
    --shadow-glow-accent: 0 0 0 4px hsl(45 100% 51% / 0.35), 0 12px 32px hsl(45 100% 51% / 0.45);
    --gradient-hero: radial-gradient(ellipse 80% 60% at 80% 20%, hsl(45 100% 51% / 0.55) 0%, transparent 60%),
        radial-gradient(ellipse 60% 50% at 10% 80%, hsl(45 100% 60% / 0.35) 0%, transparent 65%),
        linear-gradient(180deg, hsl(0 0% 100%) 0%, hsl(45 100% 97%) 100%);
    --gradient-dark: linear-gradient(135deg, hsl(215 28% 14%) 0%, hsl(215 28% 20%) 100%);
    --ease-snap: cubic-bezier(0.16, 1, 0.3, 1);
}

*,
*::before,
*::after {
    box-sizing: border-box;
    border-color: hsl(var(--border));
}

html {
    scroll-behavior: smooth;
}

@media (prefers-reduced-motion: reduce) {
    html {
        scroll-behavior: auto;
    }

    *,
    *::before,
    *::after {
        animation-duration: 0.01ms !important;
        animation-iteration-count: 1 !important;
        transition-duration: 0.01ms !important;
    }
}

body {
    margin: 0;
    min-height: 100vh;
    background: hsl(var(--background));
    color: hsl(var(--foreground));
    font-family: "Inter", system-ui, -apple-system, sans-serif;
    font-feature-settings: "cv11", "ss01";
    -webkit-font-smoothing: antialiased;
    overflow-x: hidden;
}

h1,
h2,
h3,
h4 {
    font-family: "Inter", system-ui, sans-serif;
    text-wrap: balance;
}

a {
    color: inherit;
    text-decoration: none;
}

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

.label-caps {
    font-size: 12px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.08em;
}

.h1 {
    font-weight: 800;
    font-size: clamp(2.5rem, 6vw, 4.5rem);
    line-height: 1.04;
    letter-spacing: -0.03em;
    margin: 0;
}

.h2 {
    font-weight: 800;
    font-size: clamp(1.875rem, 4vw, 3rem);
    line-height: 1.1;
    letter-spacing: -0.02em;
    margin: 0;
}

.h3 {
    font-weight: 700;
    font-size: 1.5rem;
    line-height: 1.3;
    letter-spacing: -0.01em;
    margin: 0;
}

.container-x {
    margin-left: auto;
    margin-right: auto;
    width: 100%;
    max-width: min(100%, 1260px);
    padding-left: 1rem;
    padding-right: 1rem;
}

@media (min-width: 768px) {
    .container-x {
        padding-left: 2rem;
        padding-right: 2rem;
    }
}

.section-y {
    padding-top: 5rem;
    padding-bottom: 5rem;
}

@media (min-width: 768px) {
    .section-y {
        padding-top: 7rem;
        padding-bottom: 7rem;
    }
}

.text-primary {
    color: hsl(var(--primary));
}

.text-white {
    color: #fff;
}

.text-muted-foreground {
    color: hsl(var(--muted-foreground));
}

.text-accent {
    color: hsl(var(--accent));
}

.text-success {
    color: hsl(var(--success));
}

.text-yellow-400 {
    color: #facc15;
}

.text-yellow-500 {
    color: #eab308;
}

.text-yellow-600 {
    color: #ca8a04;
}

.text-slate-300 {
    color: #cbd5e1;
}

.text-slate-400 {
    color: #94a3b8;
}

.text-slate-500 {
    color: #64748b;
}

.text-slate-900 {
    color: #0f172a;
}

.bg-background {
    background: hsl(var(--background));
}

.bg-surface-alt {
    background: hsl(var(--surface-alt));
}

.bg-primary {
    background: hsl(var(--primary));
}

.bg-card {
    background: hsl(var(--card));
}

.bg-accent {
    background: hsl(var(--accent));
}

.num-tabular {
    font-variant-numeric: tabular-nums;
}

/* Header — white bar, gold accent underline */
.site-header {
    position: sticky;
    top: 0;
    z-index: 50;
    background: #fff;
    border-bottom: 2px solid #ffc107;
    box-shadow: none;
}

.site-header__inner {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    justify-content: space-between;
    gap: 1rem 1.25rem;
    min-height: 5rem;
    padding-top: 0.5rem;
    padding-bottom: 0.5rem;
}

@media (min-width: 768px) {
    .site-header__inner {
        display: grid;
        grid-template-columns: auto 1fr auto;
        gap: 1rem 1.5rem;
    }
}

.header-logo {
    display: inline-flex;
    align-items: center;
    text-decoration: none;
    color: inherit;
    justify-self: start;
}

.header-logo img {
    display: block;
    height: auto;
    max-height: 3.25rem;
    width: auto;
    max-width: min(200px, 52vw);
}

@media (min-width: 768px) {
    .header-logo img {
        max-height: 3.75rem;
        max-width: 220px;
    }
}

.nav-desktop {
    display: none;
    flex-wrap: wrap;
    align-items: center;
    justify-content: center;
    gap: 0.35rem 1.75rem;
    justify-self: center;
}

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

.nav-link {
    font-size: 0.9375rem;
    font-weight: 500;
    color: hsl(var(--primary));
    text-decoration: none;
    white-space: nowrap;
    transition: color 0.2s;
}

.nav-link:hover {
    color: #ca8a04;
}

.nav-link--active,
.nav-link.nav-link--active {
    color: #ffc107;
    font-weight: 600;
}

.header-actions {
    display: flex;
    align-items: center;
    gap: 0.65rem;
    justify-self: end;
}

@media (max-width: 767px) {
    .header-actions .header-btn {
        display: none;
    }
}

.header-btn {
    display: inline-flex;
    justify-content: center;
    align-items: center;
    padding: 0.5rem 1rem;
    border-radius: 0.375rem;
    font-size: 0.8125rem;
    font-weight: 700;
    text-decoration: none;
    transition: background 0.2s, color 0.2s, filter 0.2s, transform 0.15s var(--ease-snap);
    white-space: nowrap;
}

.header-btn--outline {
    border: 2px solid #ffc107;
    color: #ffc107;
    background: transparent;
}

.header-btn--outline:hover {
    background: rgba(255, 193, 7, 0.1);
}

.header-btn--solid {
    border: 2px solid #ffc107;
    background: #ffc107;
    color: #fff;
}

.header-btn--solid:hover {
    filter: brightness(1.05);
}

.header-btn--block {
    width: 100%;
}

.nav-toggle {
    display: flex;
    padding: 0.375rem;
    background: none;
    border: 0;
    color: hsl(var(--primary));
    cursor: pointer;
}

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

.nav-toggle svg {
    width: 1.5rem;
    height: 1.5rem;
}

.nav-mobile {
    display: none;
    position: fixed;
    inset: 0;
    top: 5.25rem;
    z-index: 40;
    background: #fff;
    animation: fade-up 0.35s var(--ease-snap) both;
    border-top: 1px solid rgba(255, 193, 7, 0.35);
}

.nav-mobile.is-open {
    display: block;
}

@media (min-width: 768px) {
    .nav-mobile {
        display: none !important;
    }
}

.nav-mobile__links {
    display: flex;
    flex-direction: column;
    gap: 0.35rem;
    padding: 1.5rem 1.5rem 2rem;
}

.nav-mobile__links>a {
    border-radius: 0.75rem;
    padding: 0.85rem 1rem;
    font-size: 1rem;
    font-weight: 600;
    color: hsl(var(--primary));
    text-decoration: none;
    transition: background 0.2s;
}

.nav-mobile__links>a:hover {
    background: hsl(var(--surface-alt));
}

.nav-mobile__actions {
    display: flex;
    flex-direction: column;
    gap: 0.65rem;
    margin-top: 1rem;
    padding-top: 1rem;
    border-top: 1px solid hsl(var(--border));
}

/* Hero */
.hero {
    position: relative;
    overflow: hidden;
    isolation: isolate;
    background-image: var(--gradient-hero);
}

.hero::before {
    content: "";
    position: absolute;
    inset: 0;
    z-index: 0;
    pointer-events: none;
    background-image: url("data:image/svg+xml;utf8,<svg xmlns='http://www.w3.org/2000/svg' width='40' height='40'><circle cx='1' cy='1' r='1' fill='%231e293b' opacity='0.08'/></svg>");
    background-size: 28px 28px;
    mask-image: radial-gradient(ellipse 70% 60% at 50% 50%, black 30%, transparent 80%);
}

.hero .yellow-blob {
    z-index: 0;
}

.hero__grid {
    position: relative;
    z-index: 1;
}

.yellow-blob {
    position: absolute;
    border-radius: 50%;
    background: hsl(45 100% 51%);
    filter: blur(80px);
    opacity: 0.6;
    animation: blob-float 14s ease-in-out infinite;
    pointer-events: none;
}

@keyframes blob-float {

    0%,
    100% {
        transform: translate(0, 0) scale(1);
    }

    33% {
        transform: translate(30px, -40px) scale(1.1);
    }

    66% {
        transform: translate(-20px, 30px) scale(0.95);
    }
}

.hero__grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 4rem;
    padding-top: 6rem;
    padding-bottom: 6rem;
    align-items: center;
}

@media (min-width: 768px) {
    .hero__grid {
        padding-top: 8rem;
        padding-bottom: 8rem;
    }
}

@media (min-width: 1024px) {
    .hero__grid {
        grid-template-columns: repeat(12, 1fr);
        gap: 3rem;
    }

    .hero__col-text {
        grid-column: span 7;
    }

    .hero__col-mock {
        grid-column: span 5;
    }
}

.badge-hero {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    border-radius: 999px;
    background: hsl(var(--primary));
    color: #fff;
    padding: 0.5rem 1rem;
    margin-bottom: 1.5rem;
    box-shadow: var(--shadow-md);
}

.badge-hero svg {
    width: 0.875rem;
    height: 0.875rem;
    color: hsl(var(--accent));
}

.hero__lead {
    font-size: 1.125rem;
    max-width: 560px;
    margin: 0 0 2rem;
    line-height: 1.625;
    color: hsl(var(--muted-foreground));
}

.mark-underline {
    position: relative;
    display: inline-block;
}

.mark-underline>span:first-child {
    position: relative;
    z-index: 1;
}

.mark-underline::after {
    content: "";
    position: absolute;
    left: 0;
    right: 0;
    bottom: 0.25rem;
    height: 1rem;
    background: hsl(var(--accent) / 0.7);
    z-index: 0;
    transform: rotate(-1deg);
}

.hero__ctas {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    gap: 0.75rem;
    margin-bottom: 2rem;
}

.btn-accent-lg {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    border-radius: 999px;
    background: hsl(var(--accent));
    padding: 1rem 1.75rem;
    font-size: 1rem;
    font-weight: 700;
    color: hsl(var(--accent-foreground));
    box-shadow: var(--shadow-yellow);
    transition: transform 0.2s var(--ease-snap);
}

.btn-accent-lg:hover {
    transform: scale(1.03);
}

.btn-accent-lg:active {
    transform: scale(0.97);
}

.btn-accent-lg svg {
    width: 1rem;
    height: 1rem;
    transition: transform 0.2s;
}

.btn-accent-lg:hover svg {
    transform: translateX(4px);
}

.btn-outline-lg {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    border-radius: 999px;
    border: 2px solid hsl(var(--primary));
    padding: 1rem 1.75rem;
    font-size: 1rem;
    font-weight: 700;
    color: hsl(var(--primary));
    transition: background 0.2s, color 0.2s, transform 0.2s var(--ease-snap);
}

.btn-outline-lg:active {
    transform: scale(0.97);
}

.hero__checks {
    display: flex;
    flex-wrap: wrap;
    gap: 0.5rem 1.5rem;
    font-size: 0.875rem;
    color: hsl(var(--muted-foreground));
}

.hero__checks span {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
}

.hero__checks .check-icon {
    display: flex;
    height: 1.25rem;
    width: 1.25rem;
    align-items: center;
    justify-content: center;
    border-radius: 999px;
    background: hsl(var(--accent));
    color: hsl(var(--primary));
    font-size: 0.625rem;
    font-weight: 900;
}

.hero-mock-wrap {
    position: relative;
    padding-bottom: 2.5rem;
}

@media (min-width: 640px) {
    .hero-mock-wrap {
        padding-bottom: 0.5rem;
    }
}

.hero-mock-tilt {
    position: absolute;
    inset: 0;
    background: hsl(var(--accent));
    border-radius: 1.5rem;
    rotate: 3deg;
    z-index: 0;
}

.hero-mock-inner {
    position: relative;
    z-index: 1;
}

.animate-fade-up {
    animation: fade-up 0.7s var(--ease-snap) both;
}

.animate-fade-up-delay {
    animation: fade-up 0.7s var(--ease-snap) 0.2s both;
}

.animate-scale-in {
    animation: scale-in 0.5s var(--ease-snap) both;
}

@keyframes fade-up {
    from {
        opacity: 0;
        transform: translateY(20px);
    }

    to {
        opacity: 1;
        transform: translateY(0);
    }
}

@keyframes scale-in {
    from {
        opacity: 0;
        transform: scale(0.96);
    }

    to {
        opacity: 1;
        transform: scale(1);
    }
}

/* Hero mockup — matches React HeroMockup (yellow card + slate bubbles) */
.mock-call-card {
    position: relative;
    width: 100%;
    max-width: 440px;
    margin: 0 auto;
}

.mock-call-card__glow {
    position: absolute;
    inset: -2rem;
    background: hsl(var(--accent) / 0.2);
    filter: blur(48px);
    border-radius: 999px;
    pointer-events: none;
}

.mock-call-card__main {
    position: relative;
    border-radius: 1rem;
    background: hsl(var(--secondary));
    border: 1px solid hsl(var(--border-dark));
    padding: 1.5rem;
    box-shadow: 0 25px 50px -12px rgba(0, 0, 0, 0.25);
}

.mock-call-card__main {
    color: hsl(var(--primary) / 0.55);
    font-weight: 700;
}

.mock-incoming-title {
    color: hsl(var(--primary));
    font-weight: 600;
}

.mock-incoming-sub {
    font-size: 0.875rem;
    color: hsl(var(--primary) / 0.65);
}

.mock-row {
    display: flex;
    align-items: center;
    justify-content: space-between;
    margin-bottom: 1.25rem;
}

.pulse-dot {
    position: relative;
    width: 12px;
    height: 12px;
    border-radius: 999px;
    background: hsl(var(--success));
}

.pulse-dot::after {
    content: "";
    position: absolute;
    inset: 0;
    border-radius: 999px;
    background: hsl(var(--success));
    animation: pulse-ring 2s var(--ease-snap) infinite;
}

@keyframes pulse-ring {
    0% {
        transform: scale(1);
        opacity: 0.6;
    }

    100% {
        transform: scale(2.5);
        opacity: 0;
    }
}

.mock-call-meta {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    margin-bottom: 1.25rem;
}

.mock-icon-circle {
    display: flex;
    height: 3rem;
    width: 3rem;
    align-items: center;
    justify-content: center;
    border-radius: 999px;
    background: hsl(var(--primary) / 0.12);
    color: hsl(var(--primary));
}

.mock-icon-circle svg {
    width: 1.25rem;
    height: 1.25rem;
}

.mock-bubbles {
    display: flex;
    flex-direction: column;
    gap: 0.5rem;
    margin-bottom: 1.25rem;
}

.bubble-customer {
    border-radius: 0.75rem;
    background: hsl(var(--primary));
    padding: 0.75rem 1rem;
    font-size: 0.875rem;
    color: hsl(var(--muted-on-dark));
}

.bubble-ai {
    border-radius: 0.75rem;
    background: hsl(var(--accent) / 0.1);
    border: 1px solid hsl(var(--accent) / 0.3);
    padding: 0.75rem 1rem;
    font-size: 0.875rem;
    color: hsl(var(--primary));
    font-weight: 500;
}

.mock-order-strip {
    border-radius: 0.75rem;
    background: hsl(var(--primary));
    border: 1px solid hsl(var(--border-dark));
    padding: 1rem;
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.mock-order-strip .mock-strip-check {
    display: flex;
    height: 2.25rem;
    width: 2.25rem;
    align-items: center;
    justify-content: center;
    border-radius: 999px;
    background: hsl(var(--primary-foreground) / 0.12);
    color: hsl(var(--primary-foreground));
}

.mock-float-card {
    display: none;
    position: absolute;
    bottom: -2.5rem;
    left: -1.5rem;
    width: 260px;
    border-radius: 1rem;
    background: #fff;
    padding: 1rem;
    box-shadow: 0 25px 50px -12px rgba(0, 0, 0, 0.25);
    animation: fade-up 0.7s var(--ease-snap) 0.8s both;
}

@media (min-width: 640px) {
    .mock-float-card {
        display: block;
    }
}

.mock-float-confirm {
    display: flex;
    align-items: center;
    gap: 0.375rem;
    font-size: 0.75rem;
    color: hsl(var(--primary));
    font-weight: 600;
}

.order-strip-receipt {
    flex-shrink: 0;
    color: hsl(var(--muted-on-dark));
}

/* Cards & grids */
.card-lift {
    transition: transform 250ms var(--ease-snap), box-shadow 250ms var(--ease-snap);
    box-shadow: var(--shadow-sm);
}

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

.problem-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 1.5rem;
    margin-top: 3rem;
}

@media (min-width: 768px) {
    .problem-grid {
        grid-template-columns: repeat(3, 1fr);
    }
}

.problem-card {
    border-radius: 1rem;
    background: hsl(var(--card));
    padding: 2rem;
}

.problem-card__icon {
    display: flex;
    height: 3rem;
    width: 3rem;
    align-items: center;
    justify-content: center;
    border-radius: 0.75rem;
    background: hsl(var(--accent) / 0.1);
    color: hsl(var(--accent));
    margin-bottom: 1.25rem;
}

.problem-card__icon svg {
    width: 1.5rem;
    height: 1.5rem;
}

.problem-card__stat {
    font-size: 1.875rem;
    font-weight: 800;
    letter-spacing: -0.02em;
    color: hsl(var(--primary));
    margin-bottom: 0.5rem;
}

.steps-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 1.5rem;
    margin-top: 3.5rem;
}

@media (min-width: 768px) {
    .steps-grid {
        grid-template-columns: repeat(3, 1fr);
    }
}

.step-card {
    position: relative;
    border-radius: 1rem;
    border: 1px solid hsl(var(--border));
    background: hsl(var(--card));
    padding: 2rem;
}

.step-card__head {
    display: flex;
    align-items: center;
    justify-content: space-between;
    margin-bottom: 1.5rem;
}

.step-icon {
    display: flex;
    height: 2.5rem;
    width: 2.5rem;
    align-items: center;
    justify-content: center;
    border-radius: 999px;
    background: hsl(var(--primary));
    color: #fff;
}

.step-icon svg {
    width: 1.25rem;
    height: 1.25rem;
}

.features-wrap {
    margin-top: 5rem;
}

.features-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 1rem;
}

@media (min-width: 640px) {
    .features-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (min-width: 1024px) {
    .features-grid {
        grid-template-columns: repeat(3, 1fr);
    }
}

.feature-cell {
    display: flex;
    align-items: flex-start;
    gap: 1rem;
    border-radius: 1rem;
    background: hsl(var(--surface-alt));
    padding: 1.5rem;
    transition: background 0.25s var(--ease-snap), box-shadow 0.25s;
}

.feature-cell:hover {
    background: #fff;
    box-shadow: var(--shadow-sm);
}

.feature-cell__icon {
    flex-shrink: 0;
    display: flex;
    height: 2.5rem;
    width: 2.5rem;
    align-items: center;
    justify-content: center;
    border-radius: 0.75rem;
    background: hsl(var(--accent) / 0.1);
    color: hsl(var(--accent));
}

.feature-cell__icon svg {
    width: 1.25rem;
    height: 1.25rem;
}

.feature-cell__title {
    font-weight: 700;
    color: hsl(var(--primary));
}

.feature-cell__desc {
    font-size: 0.875rem;
    color: hsl(var(--muted-foreground));
    margin-top: 0.25rem;
}

/* Staff scheduling */
.sched-deco {
    position: absolute;
    pointer-events: none;
}

.sched-deco--1 {
    top: -8rem;
    right: -8rem;
    width: 500px;
    height: 500px;
    border-radius: 50%;
    background: rgba(250, 204, 21, 0.1);
    filter: blur(120px);
}

.sched-deco--2 {
    bottom: 0;
    left: -5rem;
    width: 400px;
    height: 400px;
    border-radius: 50%;
    background: rgba(250, 204, 21, 0.05);
    filter: blur(100px);
}

.sched-section {
    position: relative;
    overflow: hidden;
}

.sched-inner {
    position: relative;
}

.sched-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 2rem;
    margin-top: 3.5rem;
    align-items: flex-start;
}

@media (min-width: 1024px) {
    .sched-grid {
        grid-template-columns: repeat(12, 1fr);
    }

    .sched-cards {
        grid-column: span 7;
    }

    .sched-chat {
        grid-column: span 5;
        position: sticky;
        top: 6rem;
    }
}

.cap-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 1rem;
}

@media (min-width: 640px) {
    .cap-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

.cap-card {
    border-radius: 1rem;
    background: #fff;
    border: 2px solid #f1f5f9;
    padding: 1.5rem;
    transition: border-color 0.25s, box-shadow 0.25s;
}

.cap-card:hover {
    border-color: #facc15;
    box-shadow: 0 20px 40px -20px rgba(255, 193, 7, 0.4);
}

.cap-card__icon {
    display: flex;
    height: 3rem;
    width: 3rem;
    align-items: center;
    justify-content: center;
    border-radius: 0.75rem;
    background: rgba(250, 204, 21, 0.15);
    color: #ca8a04;
    transition: background 0.25s, color 0.25s;
}

.cap-card:hover .cap-card__icon {
    background: #facc15;
    color: #0f172a;
}

.cap-card__icon svg {
    width: 1.5rem;
    height: 1.5rem;
}

.cap-card h3 {
    margin-top: 1.25rem;
    font-size: 1.125rem;
    font-weight: 700;
    color: hsl(var(--primary));
}

.cap-card p {
    margin: 0.5rem 0 0;
    font-size: 0.875rem;
    color: hsl(var(--muted-foreground));
    line-height: 1.625;
}

.chat-frame {
    border-radius: 1.5rem;
    background: #0f172a;
    border: 3px solid #facc15;
    padding: 0.5rem;
    box-shadow: 0 30px 80px -20px rgba(30, 41, 59, 0.4);
}

.chat-inner {
    border-radius: 1.25rem;
    background: #0f172a;
    padding: 1.25rem;
}

.chat-head {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding-bottom: 1rem;
    border-bottom: 1px solid #334155;
}

.chat-avatar {
    width: 2.25rem;
    height: 2.25rem;
    border-radius: 999px;
    background: #facc15;
    display: flex;
    align-items: center;
    justify-content: center;
}

.chat-avatar svg {
    width: 1.125rem;
    height: 1.125rem;
    color: #0f172a;
}

.chat-title-block .t1 {
    color: #fff;
    font-weight: 700;
    font-size: 0.875rem;
}

.chat-title-block .t2 {
    font-size: 0.75rem;
    color: #facc15;
    display: flex;
    align-items: center;
    gap: 0.375rem;
    margin-top: 0.125rem;
}

.pulse-ty {
    width: 6px;
    height: 6px;
    border-radius: 999px;
    background: #facc15;
    animation: pulse-min 1.5s ease-in-out infinite;
}

@keyframes pulse-min {

    0%,
    100% {
        opacity: 1;
    }

    50% {
        opacity: 0.4;
    }
}

.chat-messages {
    margin-top: 1rem;
    display: flex;
    flex-direction: column;
    gap: 0.75rem;
    max-height: 360px;
    overflow: hidden;
}

.msg-row {
    display: flex;
}

.msg-row--right {
    justify-content: flex-end;
}

.msg-wrap {
    max-width: 85%;
}

.msg-meta {
    font-size: 10px;
    text-transform: uppercase;
    letter-spacing: 0.05em;
    color: #64748b;
    margin-bottom: 0.25rem;
    padding: 0 0.25rem;
}

.msg-row--right .msg-meta {
    text-align: right;
}

.bubble-ai-chat {
    border-radius: 1rem;
    padding: 0.625rem 1rem;
    font-size: 0.875rem;
    line-height: 1.375;
    background: #facc15;
    color: #0f172a;
    font-weight: 500;
    border-top-left-radius: 0.25rem;
}

.bubble-user-chat {
    border-radius: 1rem;
    padding: 0.625rem 1rem;
    font-size: 0.875rem;
    line-height: 1.375;
    background: #334155;
    color: #fff;
    border-top-right-radius: 0.25rem;
}

.chat-footer-strip {
    margin-top: 1.25rem;
    border-radius: 0.75rem;
    background: #1e293b;
    border: 1px solid #334155;
    padding: 0.75rem;
    display: flex;
    align-items: center;
    justify-content: space-between;
    font-size: 0.75rem;
    color: #94a3b8;
}

.sched-cta-strip {
    margin-top: 3.5rem;
    border-radius: 1.5rem;
    background: linear-gradient(to bottom right, #0f172a, #1e293b);
    border: 2px solid rgba(250, 204, 21, 0.3);
    padding: 2rem;
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
    align-items: flex-start;
}

@media (min-width: 768px) {
    .sched-cta-strip {
        flex-direction: row;
        align-items: center;
        justify-content: space-between;
        padding: 2.5rem;
    }
}

.btn-yellow {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    flex-shrink: 0;
    border-radius: 999px;
    background: #facc15;
    padding: 0.875rem 1.5rem;
    font-size: 1rem;
    font-weight: 600;
    color: #0f172a;
    box-shadow: 0 10px 30px -10px rgba(255, 193, 7, 0.6);
    transition: transform 0.2s, background 0.2s;
}

.btn-yellow:hover {
    background: #fde047;
    transform: scale(1.02);
}

.btn-yellow svg {
    width: 1rem;
    height: 1rem;
}

/* Try it live */
.section-border-t {
    border-top: 1px solid hsl(var(--border));
}

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

.phone-cta {
    display: inline-flex;
    align-items: center;
    gap: 1rem;
    border-radius: 999px;
    background: hsl(var(--primary));
    padding: 1.25rem 1.5rem;
    box-shadow: var(--shadow-lift);
    transition: box-shadow 0.3s var(--ease-snap), transform 0.3s;
}

@media (min-width: 640px) {
    .phone-cta {
        gap: 1.5rem;
        padding: 1.5rem 2.5rem;
    }
}

.phone-cta:hover {
    box-shadow: var(--shadow-glow-accent);
}

.phone-cta__icon {
    display: flex;
    height: 3rem;
    width: 3rem;
    align-items: center;
    justify-content: center;
    border-radius: 999px;
    background: hsl(var(--accent));
    color: #fff;
    flex-shrink: 0;
}

@media (min-width: 640px) {
    .phone-cta__icon {
        width: 3.5rem;
        height: 3.5rem;
    }
}

.phone-cta__icon svg {
    width: 1.5rem;
    height: 1.5rem;
}

@media (min-width: 640px) {
    .phone-cta__icon svg {
        width: 1.75rem;
        height: 1.75rem;
    }
}

.phone-cta__num {
    color: #fff;
    font-weight: 800;
    letter-spacing: -0.02em;
    font-size: clamp(1.5rem, 4vw, 3rem);
}

.pill-row {
    margin-top: 1.5rem;
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    justify-content: center;
    gap: 0.5rem;
}

.pill {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    border-radius: 999px;
    padding: 0.375rem 0.75rem;
    font-size: 12px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.08em;
}

.pill--live {
    background: hsl(var(--success) / 0.1);
    color: hsl(var(--success));
}

.pill--muted {
    background: hsl(var(--surface-alt));
    color: hsl(var(--primary));
}

/* Calculator */
.calc-glow {
    position: absolute;
    right: -10%;
    top: 33%;
    width: 700px;
    height: 500px;
    border-radius: 50%;
    background: hsl(var(--accent) / 0.15);
    filter: blur(120px);
    pointer-events: none;
}

.calc-section {
    position: relative;
    overflow: hidden;
}

.calc-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 2rem;
    margin-top: 3.5rem;
    align-items: flex-start;
}

@media (min-width: 1024px) {
    .calc-grid {
        grid-template-columns: repeat(12, 1fr);
    }

    .calc-inputs {
        grid-column: span 6;
    }

    .calc-output {
        grid-column: span 6;
        position: sticky;
        top: 6rem;
    }
}

.calc-panel {
    border-radius: 1.5rem;
    background: #fff;
    border: 3px solid #facc15;
    padding: 1.5rem;
    box-shadow: 0 20px 60px -15px rgba(255, 193, 7, 0.35);
}

@media (min-width: 640px) {
    .calc-panel {
        padding: 2rem;
    }
}

.calc-panel--inputs>*+* {
    margin-top: 1.75rem;
}

.slider-block label.row {
    display: flex;
    align-items: baseline;
    justify-content: space-between;
    gap: 0.75rem;
    margin-bottom: 0.5rem;
}

.slider-block .lbl {
    font-size: 0.875rem;
    font-weight: 700;
    color: #1e293b;
}

.slider-block .val {
    font-size: 1.125rem;
    font-weight: 800;
    color: #0f172a;
}

.slider-block .badge {
    font-size: 12px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.08em;
    border-radius: 999px;
    background: rgba(250, 204, 21, 0.2);
    color: #ca8a04;
    padding: 0.125rem 0.5rem;
}

.slider-block .helper {
    margin-top: 0.5rem;
    font-size: 0.75rem;
    color: #64748b;
}

.ra-slider {
    -webkit-appearance: none;
    appearance: none;
    width: 100%;
    height: 6px;
    border-radius: 999px;
    outline: none;
    cursor: pointer;
}

.ta-slider-wrap {
    --fill: 50%;
}

.ra-slider-accent {
    background: linear-gradient(to right,
            hsl(var(--accent)) 0%,
            hsl(var(--accent)) var(--fill),
            hsl(var(--border-dark)) var(--fill),
            hsl(var(--border-dark)) 100%);
}

.ra-slider-accent::-webkit-slider-thumb {
    -webkit-appearance: none;
    width: 24px;
    height: 24px;
    background: #fff;
    border-radius: 999px;
    box-shadow: 0 0 0 3px hsl(45 100% 51% / 0.5), 0 0 12px hsl(45 100% 51% / 0.6);
    cursor: grab;
}

.ra-slider-default {
    background: linear-gradient(to right,
            hsl(var(--muted-on-dark)) 0%,
            hsl(var(--muted-on-dark)) var(--fill),
            hsl(var(--border-dark)) var(--fill),
            hsl(var(--border-dark)) 100%);
}

.ra-slider-default::-webkit-slider-thumb {
    -webkit-appearance: none;
    width: 24px;
    height: 24px;
    background: #fff;
    border-radius: 999px;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.3);
    cursor: grab;
}

.ra-slider::-moz-range-thumb {
    width: 24px;
    height: 24px;
    background: #fff;
    border: 0;
    border-radius: 999px;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.3);
    cursor: grab;
}

.calc-out-stack>*+* {
    margin-top: 2rem;
}

.calc-divider {
    height: 1px;
    background: #e2e8f0;
}

.out-label {
    font-size: 12px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.08em;
    color: #64748b;
    margin-bottom: 0.5rem;
}

.out-val {
    font-weight: 800;
    letter-spacing: -0.02em;
    line-height: 1;
    font-size: clamp(2.25rem, 5vw, 3.75rem);
}

.out-val--accent {
    color: #eab308;
}

.calc-roi-box {
    margin-top: 2rem;
    border-radius: 1rem;
    background: #0f172a;
    border: 2px solid #334155;
    padding: 1.25rem;
}

.calc-roi-box .roi-line {
    margin-top: 0.5rem;
    display: flex;
    align-items: center;
    gap: 0.5rem;
    color: #facc15;
    font-weight: 700;
}

.calc-roi-box svg {
    width: 1rem;
    height: 1rem;
}

.btn-block-yellow {
    margin-top: 2rem;
    width: 100%;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 0.5rem;
    border-radius: 999px;
    background: #facc15;
    padding: 1rem 1.5rem;
    font-size: 1rem;
    font-weight: 600;
    color: #0f172a;
    border: 0;
    cursor: pointer;
    box-shadow: 0 10px 30px -10px rgba(255, 193, 7, 0.5);
    transition: transform 0.2s, background 0.2s;
    text-decoration: none;
}

.btn-block-yellow:hover {
    background: #fde047;
    transform: scale(1.02);
}

/* Pricing — up to 4 columns on large screens; stacks on smaller viewports */
#pricing .container-x {
    max-width: min(100%, 1400px);
}

.pricing-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: clamp(1rem, 2.5vw, 1.5rem);
    margin-top: clamp(2rem, 4vw, 3rem);
    align-items: stretch;
}

@media (min-width: 640px) {
    .pricing-grid {
        grid-template-columns: repeat(2, minmax(0, 1fr));
    }
}

@media (min-width: 1280px) {
    .pricing-grid {
        grid-template-columns: repeat(4, minmax(0, 1fr));
    }

    .pricing-grid .pricing-card {
        padding: 1.375rem;
    }

    .pricing-grid .price-num {
        font-size: clamp(1.5rem, 1.65vw, 2.35rem);
    }

    .pricing-grid .pricing-badge {
        font-size: 11px;
        padding: 0.3rem 0.625rem;
        max-width: calc(100% - 1rem);
        white-space: normal;
        text-align: center;
        line-height: 1.2;
    }

    .pricing-grid .pricing-cta {
        padding: 0.6875rem 1rem;
        font-size: 0.8125rem;
        width: 100%;
        box-sizing: border-box;
    }

    .pricing-grid .label-caps {
        font-size: 11px;
    }

    .pricing-grid .pricing-card--popular {
        transform: translateY(-0.5rem);
    }
}

.pricing-card {
    position: relative;
    border-radius: 1rem;
    background: hsl(var(--card));
    padding: clamp(1.25rem, 2.5vw, 2rem);
    display: flex;
    flex-direction: column;
    min-width: 0;
}

.pricing-card--popular {
    box-shadow: 0 0 0 2px hsl(var(--primary));
}

@media (min-width: 768px) {
    .pricing-card--popular {
        transform: translateY(-0.75rem);
    }
}

.pricing-badge {
    position: absolute;
    top: -0.75rem;
    left: 50%;
    transform: translateX(-50%);
    display: inline-flex;
    align-items: center;
    gap: 0.25rem;
    border-radius: 999px;
    background: hsl(var(--primary));
    color: #fff;
    font-size: 12px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.08em;
    padding: 0.375rem 0.75rem;
}

.pricing-badge svg {
    width: 0.75rem;
    height: 0.75rem;
    fill: hsl(var(--accent));
    color: hsl(var(--accent));
}

.price-row {
    margin-top: 0.75rem;
    display: flex;
    flex-wrap: wrap;
    align-items: baseline;
    gap: 0.5rem;
}

.price-num {
    font-size: 3rem;
    font-weight: 800;
    letter-spacing: -0.02em;
    color: hsl(var(--primary));
}

.pricing-features {
    margin: 1.5rem 0 0;
    padding: 0 0.375rem 0 0;
    list-style: none;
    flex: 1 1 auto;
    min-height: 0;
    --pricing-features-rows: 7;
    --pricing-feature-line: 1.5;
    max-height: calc(var(--pricing-features-rows) * (max(1.25rem, 0.875rem * var(--pricing-feature-line)) + 0.75rem));
    overflow-x: hidden;
    overflow-y: auto;
    scroll-behavior: smooth;
    overscroll-behavior: contain;
    -webkit-overflow-scrolling: touch;
    scrollbar-width: thin;
    scrollbar-color: hsl(var(--primary) / 0.28) hsl(var(--muted) / 0.4);
}

.pricing-features::-webkit-scrollbar {
    width: 6px;
}

.pricing-features::-webkit-scrollbar-thumb {
    background: hsl(var(--primary) / 0.22);
    border-radius: 999px;
}

.pricing-features::-webkit-scrollbar-track {
    background: hsl(var(--muted) / 0.35);
    border-radius: 999px;
}

.pricing-features li {
    display: flex;
    align-items: flex-start;
    gap: 0.75rem;
    font-size: 0.875rem;
    color: hsl(var(--primary));
    margin-bottom: 0.75rem;
    line-height: var(--pricing-feature-line);
}

.pricing-features li:last-child {
    margin-bottom: 0;
}

.pricing-features svg {
    width: 1.25rem;
    height: 1.25rem;
    flex-shrink: 0;
    color: hsl(var(--success));
}

.pricing-cta {
    margin-top: 2rem;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    border-radius: 999px;
    padding: 0.75rem 1.25rem;
    font-size: 0.875rem;
    font-weight: 600;
    transition: transform 0.2s;
    text-align: center;
}

.pricing-cta:hover {
    transform: scale(1.03);
}

.pricing-cta--outline {
    border: 1px solid hsl(var(--primary));
    color: hsl(var(--primary));
}

.pricing-cta--outline:hover {
    background: hsl(var(--primary));
    color: #fff;
}

.pricing-cta--primary {
    background: hsl(var(--primary));
    color: #fff;
    box-shadow: var(--shadow-sm);
}

.pricing-cta--primary:hover {
    background: hsl(var(--primary-hover));
}

.pricing-cta--accent {
    background: hsl(var(--accent));
    color: hsl(var(--accent-foreground));
    box-shadow: var(--shadow-sm);
}

.pricing-cta--accent:hover {
    background: hsl(var(--accent-hover));
}

.pricing-note {
    margin-top: 2.5rem;
    border-radius: 1rem;
    border: 1px solid hsl(var(--border));
    background: hsl(var(--card));
    padding: 1.5rem;
    display: flex;
    align-items: flex-start;
    gap: 1rem;
}

@media (min-width: 640px) {
    .pricing-note {
        align-items: center;
        padding: 1.75rem;
    }
}

/* Quotes */
.quotes-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 1.5rem;
    margin-top: 3rem;
}

@media (min-width: 768px) {
    .quotes-grid {
        grid-template-columns: repeat(3, 1fr);
    }
}

.quote-card {
    border-radius: 1rem;
    background: hsl(var(--card));
    border: 1px solid hsl(var(--border));
    padding: 2rem;
}

.quote-card svg {
    width: 1.5rem;
    height: 1.5rem;
    color: hsl(var(--accent));
    margin-bottom: 1rem;
}

.quote-card blockquote {
    margin: 0;
    color: hsl(var(--primary));
    line-height: 1.625;
}

.quote-card figcaption {
    margin-top: 1.5rem;
    padding-top: 1.5rem;
    border-top: 1px solid hsl(var(--border));
    font-size: 0.875rem;
}

.stats-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 1.5rem;
    margin-top: 4rem;
    text-align: center;
}

@media (min-width: 640px) {
    .stats-grid {
        grid-template-columns: repeat(3, 1fr);
    }
}

.stat-big {
    font-size: clamp(3rem, 5vw, 3.75rem);
    font-weight: 800;
    letter-spacing: -0.02em;
    color: hsl(var(--primary));
}

/* FAQ */
.faq-wrap {
    max-width: 48rem;
    margin-left: auto;
    margin-right: auto;
}

.faq-list {
    margin-top: 2.5rem;
    display: flex;
    flex-direction: column;
    gap: 0.75rem;
}

.faq-item {
    border-radius: 1rem;
    border: 1px solid hsl(var(--border));
    background: hsl(var(--card));
    padding: 0 1.5rem;
    transition: box-shadow 0.2s;
}

.faq-item.is-open {
    box-shadow: var(--shadow-sm);
}

.faq-trigger {
    width: 100%;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 1rem;
    padding: 1.25rem 0;
    background: none;
    border: 0;
    cursor: pointer;
    font-size: 1rem;
    font-weight: 600;
    color: hsl(var(--primary));
    text-align: left;
    font-family: inherit;
}

.faq-trigger svg {
    width: 1.25rem;
    height: 1.25rem;
    flex-shrink: 0;
    transition: transform 0.2s;
}

.faq-item.is-open .faq-trigger svg {
    transform: rotate(180deg);
}

.faq-panel {
    display: none;
    padding-bottom: 1.25rem;
    color: hsl(var(--muted-foreground));
    line-height: 1.625;
}

.faq-item.is-open .faq-panel {
    display: block;
}

/* Final CTA */
.final-cta__glow {
    position: absolute;
    left: 50%;
    top: 50%;
    transform: translate(-50%, -50%);
    width: 800px;
    height: 500px;
    border-radius: 50%;
    background: hsl(var(--accent) / 0.2);
    filter: blur(120px);
    pointer-events: none;
}

.final-cta {
    position: relative;
    overflow: hidden;
    border-top: 1px solid hsl(var(--border-dark));
}

.final-cta .container-x {
    position: relative;
    text-align: center;
    max-width: 48rem;
    margin-left: auto;
    margin-right: auto;
}

.text-muted-on-dark {
    color: hsl(var(--muted-on-dark));
}

/* Footer — reference layout */
.site-footer {
    --footer-bg: #1e2732;
    background: var(--footer-bg);
    color: #fff;
}

.site-footer a {
    color: inherit;
}

.footer-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 2.5rem;
    padding-top: 3.5rem;
    padding-bottom: 3.5rem;
    align-items: start;
}

@media (min-width: 768px) {
    .footer-grid {
        grid-template-columns: 1fr 1fr 1fr;
        gap: 2rem;
        align-items: start;
    }
}

.footer-logo-link {
    text-decoration: none;
    color: inherit;
    display: inline-block;
    line-height: 0;
}

.footer-logo-link:hover .footer-logo-img {
    opacity: 0.9;
}

.footer-logo-img {
    display: block;
    height: auto;
    max-height: 3.5rem;
    width: auto;
    max-width: 220px;
}

@media (min-width: 768px) {
    .footer-logo-img {
        max-height: 4rem;
        max-width: 240px;
    }
}

.footer-desc {
    margin: 1rem 0 0;
    font-size: 0.875rem;
    color: rgba(255, 255, 255, 0.92);
    line-height: 1.5;
    max-width: 20rem;
}

.footer-mid {
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
}

.footer-nav-col {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 0.7rem;
}

.footer-nav-col a {
    font-size: 0.9375rem;
    font-weight: 500;
    color: #fff;
    text-decoration: none;
    transition: color 0.2s;
}

.footer-nav-col a:hover {
    color: #ffc107;
}

.footer-cta-btns {
    display: flex;
    flex-direction: column;
    gap: 0.75rem;
    margin-top: 1.75rem;
    width: 100%;
    max-width: 240px;
}

.footer-btn {
    display: inline-flex;
    justify-content: center;
    align-items: center;
    padding: 0.65rem 1.35rem;
    border-radius: 0.5rem;
    font-size: 0.875rem;
    font-weight: 700;
    text-decoration: none;
    transition: background 0.2s, color 0.2s, transform 0.15s var(--ease-snap);
}

.footer-btn--outline {
    border: 2px solid #ffc107;
    color: #ffc107;
    background: transparent;
}

.footer-btn--outline:hover {
    background: rgba(255, 193, 7, 0.12);
}

.footer-btn--solid {
    background: #ffc107;
    color: #1e2732;
    border: 2px solid #ffc107;
}

.footer-btn--solid:hover {
    filter: brightness(1.06);
    transform: scale(1.02);
}

.footer-aside {
    display: flex;
    justify-content: center;
}

@media (min-width: 768px) {
    .footer-aside {
        justify-content: flex-end;
        padding-top: 0.25rem;
    }
}

.footer-email {
    display: inline-flex;
    align-items: center;
    gap: 0.55rem;
    font-size: 0.9375rem;
    color: #fff;
    text-decoration: none;
    transition: color 0.2s;
}

.footer-email svg {
    flex-shrink: 0;
}

.footer-email:hover {
    color: #ffc107;
}

.footer-bottom {
    border-top: 2px solid #ffc107;
    background: var(--footer-bg, #1e2732);
}

.footer-bottom__inner {
    display: grid;
    grid-template-columns: 1fr;
    justify-items: center;
    text-align: center;
    gap: 1rem;
    padding-top: 1.25rem;
    padding-bottom: 1.25rem;
    font-size: 0.75rem;
    color: rgba(255, 255, 255, 0.8);
}

@media (min-width: 768px) {
    .footer-bottom__inner {
        grid-template-columns: 1fr auto 1fr;
        align-items: center;
        text-align: left;
        gap: 1rem 1.5rem;
    }

    .footer-copy {
        justify-self: start;
    }

    .footer-slogan {
        justify-self: center;
        text-align: center;
    }

    .footer-scroll-top {
        justify-self: end;
    }
}

.footer-scroll-top {
    width: 2.5rem;
    height: 2.5rem;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    background: #ffc107;
    color: #1e2732;
    border-radius: 0.375rem;
    text-decoration: none;
    transition: filter 0.2s, transform 0.15s;
}

.footer-scroll-top:hover {
    filter: brightness(1.08);
}

.footer-scroll-top:active {
    transform: scale(0.96);
}

/* Reveal on scroll */
.reveal {
    opacity: 0;
    transform: translateY(30px);
    transition: opacity 700ms var(--ease-snap), transform 700ms var(--ease-snap);
}

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

.max-w-2xl {
    max-width: 42rem;
}

.max-w-3xl {
    max-width: 48rem;
}

.max-w-xl {
    max-width: 36rem;
}

.mx-auto {
    margin-left: auto;
    margin-right: auto;
}

.mt-3 {
    margin-top: 0.75rem;
}

.mt-4 {
    margin-top: 1rem;
}

.mt-5 {
    margin-top: 1.25rem;
}

.mt-6 {
    margin-top: 1.5rem;
}

.mt-10 {
    margin-top: 2.5rem;
}

.mt-14 {
    margin-top: 3.5rem;
}

.mb-3 {
    margin-bottom: 0.75rem;
}

.mb-6 {
    margin-bottom: 1.5rem;
}

.mb-8 {
    margin-bottom: 2rem;
}

.text-lg {
    font-size: 1.125rem;
}

.text-sm {
    font-size: 0.875rem;
    line-height: 1.25;
}

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

.leading-relaxed {
    line-height: 1.625;
}

.font-bold {
    font-weight: 700;
}

.font-semibold {
    font-weight: 600;
}

.pricing-note__text {
    font-size: 0.875rem;
    min-width: 0;
    flex: 1;
}

@media (min-width: 640px) {
    .pricing-note__text {
        font-size: 1rem;
    }
}

.mark-underline--yellow::after {
    background: rgba(250, 204, 21, 0.6);
    height: 0.75rem;
    bottom: 0.1em;
    transform: none;
}

.pill-new {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    background: rgba(250, 204, 21, 0.1);
    padding: 0.25rem 0.75rem;
    border-radius: 999px;
}

.pill-new svg {
    width: 0.875rem;
    height: 0.875rem;
}

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

/* 404 */
.notfound {
    min-height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    background: hsl(var(--muted));
    padding: 2rem;
}

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

.notfound h1 {
    font-size: 2.25rem;
    font-weight: 700;
    margin: 0 0 1rem;
}

.notfound p {
    font-size: 1.25rem;
    color: hsl(var(--muted-foreground));
    margin: 0 0 1rem;
}

.notfound a {
    color: hsl(var(--primary));
    text-decoration: underline;
}

.notfound a:hover {
    color: hsl(var(--primary-hover));
}

.min-h-screen {
    min-height: 100vh;
}

/* Partner signup — single short form (SaaS-style) */
.partner-page__main {
    padding: 2.5rem 0 4rem;
    background: hsl(var(--surface-alt));
    min-height: calc(100vh - 5rem);
}

.partner-page__inner {
    max-width: min(100%, 840px);
    margin-left: auto;
    margin-right: auto;
}

.partner-page__signin-m {
    margin-left: auto;
}

@media (min-width: 768px) {
    .partner-page__signin-m {
        display: none;
    }
}

@media (max-width: 767px) {
    .partner-page .nav-desktop {
        display: none;
    }
}

.partner-card {
    background: hsl(var(--card));
    border: 1px solid hsl(var(--border));
    border-radius: var(--radius);
    padding: 1.75rem 1.5rem;
    box-shadow: var(--shadow-sm);
}

.partner-card--success {
    text-align: left;
}

@media (min-width: 768px) {
    .partner-card {
        padding: 2rem 2.25rem;
    }
}

.partner-short-form {
    margin-top: 0.25rem;
}

.partner-field-row {
    display: grid;
    grid-template-columns: 1fr;
    gap: 1rem;
}

@media (min-width: 480px) {
    .partner-field-row {
        grid-template-columns: 1fr 1fr;
    }
}

.partner-field {
    margin-bottom: 1rem;
}

.partner-field label {
    display: block;
    font-size: 0.8125rem;
    font-weight: 600;
    margin-bottom: 0.375rem;
    color: hsl(var(--primary));
}

.partner-input {
    width: 100%;
    box-sizing: border-box;
    border-radius: 0.6rem;
    border: 1px solid hsl(var(--border));
    padding: 0.65rem 0.85rem;
    font-size: 1rem;
    font-family: inherit;
    background: #fff;
}

.partner-input:focus {
    outline: none;
    border-color: hsl(var(--accent));
    box-shadow: 0 0 0 3px hsl(45 100% 51% / 0.3);
}

.partner-input--error {
    border-color: #dc2626;
}

.partner-error {
    display: block;
    margin-top: 0.35rem;
    font-size: 0.8125rem;
    color: #dc2626;
}

.partner-error--block {
    margin-top: 0.5rem;
}

.partner-terms {
    display: flex;
    gap: 0.6rem;
    align-items: flex-start;
    font-size: 0.875rem;
    line-height: 1.45;
    color: hsl(var(--primary));
    cursor: pointer;
    margin-top: 0.5rem;
}

.partner-terms input {
    margin-top: 0.25rem;
    flex-shrink: 0;
}

.partner-alert {
    border-radius: 0.65rem;
    padding: 0.85rem 1rem;
    margin-bottom: 1.25rem;
    font-size: 0.9375rem;
}

.partner-alert--error {
    background: #fef2f2;
    border: 1px solid #fecaca;
    color: #991b1b;
}

.partner-btn {
    border: 0;
    border-radius: 999px;
    padding: 0.8rem 1.5rem;
    font-size: 0.9375rem;
    font-weight: 700;
    cursor: pointer;
    font-family: inherit;
    text-decoration: none;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    transition: transform 0.2s var(--ease-snap);
}

.partner-btn:hover {
    transform: scale(1.02);
}

.partner-btn--accent {
    background: hsl(var(--accent));
    color: hsl(var(--accent-foreground));
    box-shadow: var(--shadow-yellow);
}

.partner-btn--outline {
    background: transparent;
    color: hsl(var(--primary));
    border: 2px solid hsl(var(--border));
}

.partner-btn--block {
    width: 100%;
}

.partner-page__cta-row {
    display: flex;
    flex-wrap: wrap;
    gap: 0.75rem;
}
