:root {
    /* Medora brand — sampled from logo (#18c0f0) */
    --medora-accent: #18c0f0;
    --medora-accent-hover: #0da6d2;
    --medora-accent-ring: rgba(24, 192, 240, 0.18);

    /* Light Clinical Theme */
    --background: #ffffff;
    --background-card: #ffffff;
    --background-secondary: #f8fafc;
    --background-tertiary: #f1f5f9;
    --background-glass: rgba(255, 255, 255, 0.95);

    /* Grayscale Typography */
    --text-primary: #111827;
    --text-secondary: #4b5563;
    --text-muted: #6b7280;

    /* No effects */
    --medical-glow: none;
    --clinical-shadow: none;
    --border-medical: 1px solid #e5e7eb;
    --card-shadow: none;
}

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

html {
    scroll-behavior: smooth;
}

body {
    font-family: 'Inter', sans-serif;
    background: var(--background);
    color: var(--text-primary);
    line-height: 1.6;
    overflow-x: hidden;
    font-weight: 400;
}

.container {
    max-width: 1200px;
    width: 100%;
    margin: 0 auto;
    padding: 0 2rem;
}

@media (min-width: 1280px) {
    .container {
        max-width: 1320px;
    }
}

@media (min-width: 1536px) {
    .container {
        max-width: 1440px;
    }
}

/* Header */
header {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    width: 100%;
    z-index: 1000;
    background: rgba(255, 255, 255, 0.95);
    backdrop-filter: blur(20px);
    border-bottom: 1px solid #e5e7eb;
    transition: all 0.3s ease;
}

.header-container {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 0;
    height: 64px;
    width: 100%;
}

.logo-container {
    display: flex;
    align-items: center;
    gap: 0.75rem;
}

.logo-icon {
    width: 36px;
    height: 36px;
    border-radius: 6px;
    object-fit: contain;
}

.logo-text {
    font-size: 1.4rem;
    font-weight: 600;
    color: var(--text-primary);
    letter-spacing: 0.04em;
}

.nav-links {
    display: flex;
    gap: 2rem;
    list-style: none;
    align-items: center;
}

.nav-links a {
    color: #374151;
    text-decoration: none;
    font-weight: 500;
    font-size: 14px;
    transition: color 0.2s ease;
}

.nav-links a:hover,
.nav-links a:focus {
    color: var(--text-primary);
}

.login-link {
    color: #374151;
    text-decoration: none;
    font-weight: 500;
    font-size: 14px;
    transition: color 0.2s ease;
    margin-right: 1.5rem;
}

.login-link:hover,
.login-link:focus {
    color: var(--text-primary);
}

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

/* Buttons */
.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 0.6rem 1.2rem;
    border-radius: 6px;
    font-weight: 500;
    text-decoration: none;
    transition: all 0.2s ease;
    font-size: 0.9rem;
    cursor: pointer;
    border: none;
}

.btn-primary {
    /* Placeholder — canonical rule at end of file */
}

.btn-primary:hover {
    /* Placeholder — canonical rule at end of file */
}

.btn-secondary {
    background: transparent;
    color: var(--text-secondary);
    border: 1px solid #d1d5db;
}

.btn-secondary:hover {
    color: var(--text-primary);
    border-color: #9ca3af;
}

/* Hero Section */
.marketing-site .hero-flex {
    display: grid;
    grid-template-columns: 1.05fr 1.25fr;
    align-items: center;
    gap: clamp(24px, 4vw, 56px);
    min-height: 420px;
}

.hero-left {
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.hero-video {
    display: flex;
    align-items: center;
    justify-content: center;
    background: #f8fafc;
    border: 1px solid #e5e7eb;
    border-radius: 14px;
    padding: 8px;
    max-width: 720px;
}

.hero-video video {
    border-radius: 10px;
    filter: saturate(0.9) contrast(0.92) brightness(1.02);
}

@media (min-width: 1536px) {
    .hero-video {
        max-width: 820px;
    }
}

@media (max-width: 960px) {
    .marketing-site .hero-flex {
        grid-template-columns: 1fr;
        gap: 24px;
    }
    .marketing-site .hero-content {
        text-align: center;
    }
    .marketing-site .hero .hero-cta {
        justify-content: center;
    }
    .hero-video {
        width: 100%;
        max-width: 100%;
        margin-top: 16px;
    }
}

.hero {
    min-height: 72vh;
    display: flex;
    align-items: center;
    position: relative;
    background: transparent;
    padding-top: 48px;
}

.hero-content {
    max-width: 860px;
    text-align: left;
    position: relative;
    z-index: 2;
}

.hero-badge {
    display: block;
    color: var(--text-muted);
    font-size: 0.75rem;
    font-weight: 500;
    letter-spacing: 0.08em;
    text-transform: uppercase;
    margin-bottom: 1.5rem;
}

.hero-title {
    font-size: clamp(2.6rem, 5vw, 3.8rem);
    font-weight: 600;
    line-height: 1.08;
    margin-bottom: 1.25rem;
    letter-spacing: -0.03em;
    color: var(--text-primary);
}

.hero-title .gradient-text {
    color: var(--text-primary);
}

.hero-subtitle {
    font-size: 1.15rem;
    color: var(--text-secondary);
    margin-bottom: 2.5rem;
    line-height: 1.55;
    font-weight: 400;
    max-width: 58ch;
}

.marketing-site .hero .hero-cta {
    justify-content: flex-start;
}

.hero-cta {
    display: flex;
    gap: 1rem;
    justify-content: center;
    margin-bottom: 3rem;
    flex-wrap: wrap;
}

/* Shared Section Styles */
.section-header {
    text-align: center;
    margin-bottom: 3rem;
}

.section-title {
    font-size: clamp(1.6rem, 2.5vw, 2rem);
    font-weight: 600;
    margin-bottom: 0.75rem;
    letter-spacing: -0.01em;
    color: var(--text-primary);
}

.section-subtitle {
    font-size: 1rem;
    color: var(--text-muted);
    max-width: 600px;
    margin: 0 auto;
    line-height: 1.6;
}

/* Credibility Section */
.credibility-section {
    padding: 5rem 0;
    background: var(--background-secondary);
}

.credibility-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
    gap: 2rem;
    margin-top: 3rem;
}

@media (min-width: 1200px) {
    .credibility-grid {
        grid-template-columns: repeat(3, 1fr);
        gap: 2.5rem;
    }
}

.credibility-card {
    background: transparent;
    border: none;
    border-radius: 0;
    padding: 2rem 0;
    border-bottom: 1px solid #e5e7eb;
}

.credibility-card:last-child {
    border-bottom: none;
}

@media (min-width: 1200px) {
    .credibility-card {
        border-bottom: none;
        border-right: 1px solid #e5e7eb;
        padding: 0 2rem;
    }
    .credibility-card:last-child {
        border-right: none;
    }
}

.credibility-card::before {
    display: none;
}

.credibility-card:hover::before {
    display: none;
}

.credibility-card:hover {
    opacity: 1;
}

/* Hide template-style Font Awesome icons in bordered squares */
.credibility-icon,
.solution-icon,
.security-icon {
    display: none;
}

.credibility-title {
    font-size: 1.1rem;
    font-weight: 600;
    margin-bottom: 0.75rem;
    color: var(--text-primary);
}

.credibility-description {
    color: var(--text-secondary);
    line-height: 1.6;
    margin-bottom: 1rem;
    font-size: 0.95rem;
}

.credibility-highlight {
    padding: 0.75rem 1rem;
    background: var(--background-tertiary);
    border-left: 2px solid #d1d5db;
    border-radius: 0;
    color: var(--text-secondary);
    font-size: 0.9rem;
    line-height: 1.5;
}

.credibility-highlight strong {
    color: var(--text-primary);
}

/* Challenge Stats Section */
.challenge-section {
    padding: 5rem 0;
}

.challenge-stats {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
    gap: 2rem;
    margin-top: 3rem;
}

@media (min-width: 1200px) {
    .challenge-stats {
        grid-template-columns: repeat(4, 1fr);
        gap: 2rem;
    }
}

.challenge-stat {
    background: transparent;
    border: none;
    border-radius: 0;
    padding: 2rem 1rem;
    text-align: center;
    border-bottom: 1px solid #e5e7eb;
}

.challenge-stat::before {
    display: none;
}

.challenge-stat:hover::before {
    display: none;
}

.challenge-stat:hover {
    opacity: 1;
}

.stat-number {
    font-size: 2.2rem;
    font-weight: 600;
    color: var(--text-primary);
    display: block;
    margin-bottom: 0.5rem;
}

.stat-label {
    color: var(--text-primary);
    font-size: 1rem;
    font-weight: 600;
    margin-bottom: 0.75rem;
    line-height: 1.3;
}

.stat-impact {
    color: var(--text-muted);
    font-size: 0.9rem;
    line-height: 1.5;
}

/* Solution Section */
.solution-section {
    padding: 5rem 0;
    background: var(--background-secondary);
}

.solution-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(340px, 1fr));
    gap: 2rem;
    margin-top: 3rem;
}

@media (min-width: 1200px) {
    .solution-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 2.5rem;
    }
}

.solution-card {
    background: transparent;
    border: none;
    border-radius: 0;
    padding: 2rem 0;
    transition: none;
    position: relative;
    border-bottom: 1px solid #e5e7eb;
    margin-top: 0;
}

.solution-card::before,
.solution-card::after {
    display: none;
}

.solution-card:hover::before,
.solution-card:hover::after {
    display: none;
}

.solution-card:hover {
    opacity: 1;
}

.solution-title {
    font-size: 1.2rem;
    font-weight: 600;
    margin-bottom: 0.75rem;
    color: var(--text-primary);
    line-height: 1.3;
}

.solution-description {
    color: var(--text-secondary);
    line-height: 1.7;
    margin-bottom: 1.5rem;
    font-size: 0.95rem;
}

.solution-features {
    list-style: none;
    margin: 0;
    padding: 0;
}

.solution-features li {
    display: flex;
    align-items: flex-start;
    gap: 0.6rem;
    margin-bottom: 0.5rem;
    color: var(--text-secondary);
    font-size: 0.9rem;
    line-height: 1.5;
}

.solution-features li::before {
    content: '\2013';
    color: var(--text-muted);
    font-weight: 400;
    flex-shrink: 0;
}

/* Workflow Section */
.workflow-section {
    padding: 5rem 0;
}

.workflow-steps {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
    gap: 2rem;
    margin-top: 3rem;
    position: relative;
}

@media (min-width: 1200px) {
    .workflow-steps {
        grid-template-columns: repeat(4, 1fr);
        gap: 2rem;
    }

    .workflow-step::after {
        display: none;
    }
}

.workflow-step {
    text-align: left;
    position: relative;
    background: transparent;
    border: none;
    border-radius: 0;
    padding: 1.5rem 0;
    border-bottom: 1px solid #e5e7eb;
    border-left: none;
}

.workflow-step::before {
    display: none;
}

.workflow-step:hover::before {
    display: none;
}

.workflow-step:hover {
    opacity: 1;
}

.step-number {
    position: static;
    width: auto;
    height: auto;
    background: transparent;
    border: none;
    border-radius: 0;
    display: block;
    font-size: 0.8rem;
    font-weight: 600;
    color: var(--text-muted);
    margin-bottom: 0.75rem;
    letter-spacing: 0.05em;
}

.step-number:hover {
    opacity: 1;
}

.step-title {
    font-size: 1.1rem;
    font-weight: 600;
    margin-bottom: 0.75rem;
    color: var(--text-primary);
    line-height: 1.3;
}

.step-description {
    color: var(--text-secondary);
    line-height: 1.6;
    font-size: 0.9rem;
}

/* Security Section */
.security-section {
    padding: 5rem 0;
    background: var(--background-secondary);
}

.security-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 2rem;
    margin-top: 3rem;
}

@media (min-width: 1200px) {
    .security-grid {
        grid-template-columns: repeat(3, 1fr);
        gap: 2rem;
    }
}

.security-card {
    background: transparent;
    border: none;
    border-radius: 0;
    padding: 1.5rem 0;
    border-bottom: 1px solid #e5e7eb;
    border-left: none;
}

.security-card::before,
.security-card::after {
    display: none;
}

.security-card:hover::before,
.security-card:hover::after {
    display: none;
}

.security-card:hover {
    opacity: 1;
}

.security-title {
    font-size: 1.1rem;
    font-weight: 600;
    margin-bottom: 0.75rem;
    color: var(--text-primary);
    line-height: 1.3;
}

.security-description {
    color: var(--text-secondary);
    line-height: 1.6;
    font-size: 0.9rem;
}

/* Pricing Teaser Section */
.pricing-teaser-section {
    padding: 4rem 0;
    text-align: center;
}

.pricing-preview {
    max-width: 560px;
    margin: 2rem auto;
    background: var(--background-secondary);
    border: 1px solid #e5e7eb;
    border-radius: 8px;
    padding: 2.5rem 2rem;
}

.pricing-highlight {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
    align-items: center;
}

.price-range {
    display: flex;
    flex-direction: column;
    gap: 0.3rem;
    align-items: center;
}

.from-price {
    font-size: 1.6rem;
    font-weight: 600;
    color: var(--text-primary);
}

.enterprise-note {
    color: var(--text-muted);
    font-size: 0.9rem;
}

.key-benefits {
    display: flex;
    flex-wrap: wrap;
    gap: 1.5rem;
    list-style: none;
    margin: 0;
    padding: 0;
    justify-content: center;
}

.key-benefits li {
    color: var(--text-secondary);
    font-size: 0.85rem;
}

.pricing-cta {
    display: flex;
    gap: 1rem;
    justify-content: center;
    margin-top: 2rem;
    flex-wrap: wrap;
}

/* Testimonial Section */
.validation-section {
    padding: 5rem 0;
    background: var(--background-secondary);
}

.testimonial-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
    gap: 2rem;
    margin-top: 3rem;
}

@media (min-width: 1200px) {
    .testimonial-grid {
        grid-template-columns: repeat(3, 1fr);
        gap: 2rem;
    }
}

.testimonial-card {
    background: transparent;
    border: none;
    border-radius: 0;
    padding: 2rem 0;
    border-bottom: 1px solid #e5e7eb;
}

.testimonial-card::before {
    display: none;
}

.testimonial-card:hover::before {
    display: none;
}

.testimonial-card:hover {
    opacity: 1;
}

.testimonial-text {
    color: var(--text-secondary);
    line-height: 1.7;
    margin-bottom: 1.5rem;
    font-style: italic;
    font-size: 0.95rem;
    padding-left: 1.5rem;
    border-left: 2px solid #e5e7eb;
}

.testimonial-author {
    display: flex;
    align-items: center;
    gap: 1rem;
    padding-top: 1rem;
    margin-left: 1.5rem;
}

.author-info h4 {
    color: var(--text-primary);
    font-weight: 600;
    margin-bottom: 0.2rem;
    font-size: 0.9rem;
}

.author-info p {
    color: var(--text-muted);
    font-size: 0.85rem;
    line-height: 1.4;
}

/* CTA Section */
.cta-section {
    padding: 5rem 0;
    text-align: center;
    background: transparent;
}

.cta-content {
    max-width: 560px;
    margin: 0 auto;
}

.cta-title {
    font-size: clamp(1.6rem, 2.5vw, 2rem);
    font-weight: 600;
    margin-bottom: 1rem;
    color: var(--text-primary);
}

.cta-description {
    font-size: 1rem;
    color: var(--text-secondary);
    margin-bottom: 2rem;
    line-height: 1.6;
}

/* Footer */
footer {
    background: var(--background);
    border-top: 1px solid #e5e7eb;
    padding: 3rem 0 2rem;
}

.footer-content {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 2.5rem;
    margin-bottom: 2.5rem;
}

.footer-section h4 {
    color: var(--text-primary);
    font-weight: 600;
    margin-bottom: 0.75rem;
    font-size: 0.9rem;
}

.footer-section p,
.footer-section a {
    color: var(--text-muted);
    text-decoration: none;
    line-height: 1.8;
    transition: color 0.2s ease;
    font-size: 0.85rem;
}

.footer-section a:hover,
.footer-section a:focus {
    color: var(--text-primary);
}

.footer-bottom {
    text-align: center;
    padding-top: 1.5rem;
    border-top: 1px solid #e5e7eb;
    color: var(--text-muted);
    font-size: 0.8rem;
}

.social-links {
    display: flex;
    gap: 0.75rem;
    margin: 1.5rem 0;
}

.social-link {
    width: 32px;
    height: 32px;
    background: transparent;
    border: 1px solid #e5e7eb;
    border-radius: 6px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--text-muted);
    text-decoration: none;
    transition: color 0.2s ease;
    font-size: 0.85rem;
}

.social-link:hover {
    color: var(--text-primary);
    border-color: #d1d5db;
}

/* Mobile */
.mobile-menu-btn {
    display: none;
    background: none;
    border: none;
    color: var(--text-primary);
    font-size: 1.3rem;
    cursor: pointer;
}

@media (max-width: 768px) {
    .container {
        padding: 0 1rem;
    }

    .nav-container {
        display: none;
    }

    .nav-container.active {
        display: flex;
        position: absolute;
        top: 100%;
        left: 0;
        width: 100%;
        background: rgba(255, 255, 255, 0.98);
        backdrop-filter: blur(20px);
        padding: 1.5rem;
        flex-direction: column;
        gap: 1.5rem;
        border-top: 1px solid #e5e7eb;
    }

    .mobile-menu-btn {
        display: block;
    }

    .hero-cta,
    .pricing-cta {
        flex-direction: column;
        align-items: center;
    }

    .btn {
        width: 100%;
        max-width: 300px;
    }

    .credibility-grid,
    .challenge-stats,
    .solution-grid,
    .workflow-steps,
    .security-grid,
    .testimonial-grid {
        grid-template-columns: 1fr;
        gap: 0;
    }

    .key-benefits {
        flex-direction: column;
        align-items: center;
    }

    .workflow-step::after {
        display: none !important;
    }

    .workflow-step {
        text-align: left;
        padding: 1.5rem 0;
        border-left: none;
        border-bottom: 1px solid #e5e7eb;
    }

    .step-number {
        position: static;
        margin: 0 0 0.75rem 0;
    }

    .solution-card,
    .credibility-card,
    .security-card {
        padding: 1.5rem 0;
        border-left: none;
        border-right: none;
        border-bottom: 1px solid #e5e7eb;
    }

    .testimonial-text {
        padding-left: 1rem;
    }

    .testimonial-author {
        margin-left: 1rem;
    }
}

@media (max-width: 900px) {
    .nav-container {
        display: none;
        position: absolute;
        top: 60px;
        right: 0;
        background: #ffffff;
        width: 100%;
        z-index: 1000;
    }
    .nav-container.nav-open {
        display: block;
        background: var(--background);
        text-align: center;
    }
    .mobile-menu-btn {
        display: block;
    }
    .nav-links {
        flex-direction: column;
        padding: 1rem 0;
    }
    .nav-links a {
        color: var(--text-secondary);
    }
    .nav-links .btn {
        color: #ffffff;
    }
}

@media (min-width: 901px) {
    .nav-container {
        display: flex !important;
        position: static;
        background: none;
        width: auto;
    }
    .mobile-menu-btn {
        display: none;
    }
}

/* Animations — subtle */
.animate-on-scroll {
    opacity: 0;
    transform: translateY(8px);
    transition: opacity 0.4s ease, transform 0.4s ease;
}

.animate-on-scroll.in-view {
    opacity: 1;
    transform: translateY(0);
}

/* Leadership page shared */
.leadership-text {
    order: 1;
}

.leadership-image {
    order: 2;
}

.family-photo {
    width: 100%;
    max-width: 500px;
    border-radius: 12px;
    border: 1px solid #e5e7eb;
}

/* Newsletter section */
section.beehivenewsletter-section {
    padding-top: 4rem;
    background: var(--background-secondary);
}

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

/* Trust signals */
.trust-signals {
    display: flex;
    gap: 2rem;
    justify-content: center;
    flex-wrap: wrap;
    margin-top: 1.5rem;
}

.trust-signal {
    font-size: 0.85rem;
    color: var(--text-muted);
    font-weight: 500;
}

/* Highlight text */
.highlight {
    color: var(--text-primary);
    font-weight: 600;
}

/* Quote block */
.quote {
    padding: 1.5rem;
    border-left: 2px solid #d1d5db;
    color: var(--text-secondary);
    font-style: italic;
    line-height: 1.7;
    margin: 1.5rem 0;
}

/* ═══════════════════════════════════════════════════
   Status Badges
   ═══════════════════════════════════════════════════ */
.live-badge {
    display: inline-block;
    font-size: 0.65rem;
    font-weight: 600;
    letter-spacing: 0.1em;
    text-transform: uppercase;
    color: #059669;
    border: 1px solid #059669;
    border-radius: 9999px;
    padding: 0.15rem 0.65rem;
    vertical-align: middle;
    position: relative;
    top: -0.15em;
}

/* ═══════════════════════════════════════════════════
   Roadmap Note
   ═══════════════════════════════════════════════════ */
.roadmap-note {
    padding: 2.5rem 0;
    text-align: center;
    background: var(--background-secondary);
}

.roadmap-note h3 {
    font-size: 0.85rem;
    font-weight: 600;
    color: var(--text-muted);
    letter-spacing: 0.08em;
    text-transform: uppercase;
    margin-bottom: 0.75rem;
}

.roadmap-items {
    font-size: 0.9rem;
    color: var(--text-secondary);
    line-height: 1.7;
    max-width: 520px;
    margin: 0 auto;
}

/* ═══════════════════════════════════════════════════
   Bridge Text
   ═══════════════════════════════════════════════════ */
.section-bridge {
    text-align: center;
    max-width: 560px;
    margin: 0 auto 1.5rem;
    font-size: 0.95rem;
    color: var(--text-muted);
    line-height: 1.6;
}

/* ═══════════════════════════════════════════════════
   Skin Testing Section
   ═══════════════════════════════════════════════════ */
.spt-section {
    padding: 5rem 0;
}

.spt-badge {
    display: inline-block;
    font-size: 0.65rem;
    font-weight: 600;
    letter-spacing: 0.1em;
    text-transform: uppercase;
    color: var(--medora-accent);
    border: 1px solid var(--medora-accent);
    border-radius: 9999px;
    padding: 0.15rem 0.65rem;
    vertical-align: middle;
    position: relative;
    top: -0.15em;
}

/* Stepper */
.spt-stepper {
    display: flex;
    justify-content: center;
    align-items: center;
    margin: 2.5rem auto 3rem;
    max-width: 720px;
}

.spt-step {
    display: flex;
    flex-direction: column;
    align-items: center;
    flex: 1;
    text-align: center;
}

.spt-step-number {
    font-size: 0.75rem;
    font-weight: 600;
    color: var(--medora-accent);
    letter-spacing: 0.05em;
    margin-bottom: 0.35rem;
}

.spt-step-title {
    font-size: 0.95rem;
    font-weight: 600;
    color: var(--text-primary);
}

.spt-step-arrow {
    flex-shrink: 0;
    color: #d1d5db;
    font-size: 1.1rem;
    margin: 0 0.25rem;
    padding-top: 0.75rem;
}

/* Capability cards */
.spt-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 2rem;
    margin-top: 2rem;
}

@media (min-width: 1200px) {
    .spt-grid {
        grid-template-columns: repeat(3, 1fr);
        gap: 2.5rem;
    }
}

.spt-card {
    background: transparent;
    border: none;
    border-radius: 0;
    padding: 2rem 0;
    border-bottom: 1px solid #e5e7eb;
}

.spt-card:last-child {
    border-bottom: none;
}

@media (min-width: 1200px) {
    .spt-card {
        border-bottom: none;
        border-right: 1px solid #e5e7eb;
        padding: 0 2rem;
    }
    .spt-card:last-child {
        border-right: none;
    }
}

.spt-card-title {
    font-size: 1.1rem;
    font-weight: 600;
    margin-bottom: 0.75rem;
    color: var(--text-primary);
    line-height: 1.3;
}

.spt-card-list {
    list-style: none;
    margin: 0;
    padding: 0;
}

.spt-card-list li {
    display: flex;
    align-items: flex-start;
    gap: 0.6rem;
    margin-bottom: 0.5rem;
    color: var(--text-secondary);
    font-size: 0.9rem;
    line-height: 1.5;
}

.spt-card-list li::before {
    content: '\2013';
    color: var(--text-muted);
    font-weight: 400;
    flex-shrink: 0;
}

/* CTA */
.spt-cta {
    display: flex;
    gap: 1.5rem;
    justify-content: center;
    align-items: center;
    margin-top: 3rem;
}

/* Mobile */
@media (max-width: 768px) {
    .spt-stepper {
        flex-direction: column;
        gap: 0.75rem;
        align-items: center;
    }

    .spt-step {
        flex-direction: row;
        gap: 0.75rem;
    }

    .spt-step-number {
        margin-bottom: 0;
    }

    .spt-step-arrow {
        transform: rotate(90deg);
        padding-top: 0;
        margin: 0;
    }

    .spt-grid {
        grid-template-columns: 1fr;
        gap: 0;
    }

    .spt-card {
        padding: 1.5rem 0;
        border-right: none;
        border-bottom: 1px solid #e5e7eb;
    }

    .spt-card:last-child {
        border-bottom: none;
    }

    .spt-cta {
        flex-direction: column;
        align-items: center;
    }
}

/* ═══════════════════════════════════════════════════
   Canonical CTA — single source of truth for ALL
   .btn-primary on marketing pages. Scoped to
   body.marketing-site so the product app is untouched.
   MUST remain the LAST rule block in this file.
   ═══════════════════════════════════════════════════ */
body.marketing-site .btn-primary,
body.marketing-site .nav-links .btn-primary {
    padding: 12px 24px;
    border-radius: 9999px;
    font-size: 15px;
    font-weight: 600;
    line-height: 1;
    background: var(--medora-accent);
    color: #ffffff;
    border: none;
    box-shadow: none;
    transform: none;
    text-decoration: none;
    cursor: pointer;
    transition: background 0.15s ease;
}

body.marketing-site .btn-primary:hover,
body.marketing-site .nav-links .btn-primary:hover {
    background: var(--medora-accent-hover);
    opacity: 1;
    box-shadow: none;
    transform: none;
}

body.marketing-site .btn-primary:focus-visible,
body.marketing-site .nav-links .btn-primary:focus-visible {
    outline: none;
    box-shadow: 0 0 0 3px var(--medora-accent-ring);
}

/* Downgraded CTA — text link style for secondary actions */
body.marketing-site .cta-text-link {
    display: inline-flex;
    align-items: center;
    gap: 0.35em;
    color: var(--medora-accent-hover);
    font-size: 15px;
    font-weight: 600;
    text-decoration: none;
    padding: 0;
    background: none;
    border: none;
    border-radius: 0;
    cursor: pointer;
    transition: color 0.15s ease;
}

body.marketing-site .cta-text-link:hover {
    color: var(--text-primary);
}

body.marketing-site .cta-text-link::after {
    content: "\2192";
    font-size: 1.1em;
    transition: transform 0.15s ease;
}

body.marketing-site .cta-text-link:hover::after {
    transform: translateX(3px);
}
