/* ============================================
   DateRounds Homepage Styles (home.css)
   Light theme, section-by-section
   ============================================ */

.home-page {
    min-height: 100vh;
    min-height: 100dvh;
    display: flex;
    flex-direction: column;
}

/* ============================================
   MOBILE TOP (collapsed Enter Code button)
   ============================================ */
.mobile-top {
    display: none;
    flex-direction: column;
    align-items: center;
    padding: var(--spacing-md) var(--spacing-md) var(--spacing-sm);
    background: var(--bg-primary);
}

@media (max-width: 768px) {
    .mobile-top { display: flex; }
}

.mobile-code-wrapper {
    width: 100%;
    max-width: 400px;
    padding: 6px;
}

/* Collapsed state: button only */
.mobile-code-collapsed {
    width: 100%;
    padding: 16px 24px;
    background: var(--gradient-primary);
    color: #ffffff;
    border: none;
    border-radius: var(--radius-md);
    font-size: 1rem;
    font-weight: 700;
    cursor: pointer;
    font-family: var(--font-family);
    box-shadow: var(--shadow-md);
    position: relative;
}

.mobile-code-collapsed::before {
    content: '';
    position: absolute;
    inset: -6px;
    border-radius: calc(var(--radius-md) + 6px);
    border: 2px solid var(--teal);
    opacity: 0.6;
    animation: ringPulse 2s ease-out infinite;
    pointer-events: none;
}

@keyframes ringPulse {
    0% {
        transform: scale(1);
        opacity: 0.6;
    }
    100% {
        transform: scale(1.08);
        opacity: 0;
    }
}

.mobile-code-wrapper.expanded .mobile-code-collapsed {
    display: none;
}

.mobile-code-expanded {
    display: none;
}

.mobile-code-wrapper.expanded .mobile-code-expanded {
    display: block;
}

/* ============================================
   HERO SECTION (partial-bleed background)
   ============================================ */
.hero-section {
    position: relative;
    width: 100%;
    min-height: 520px;
    display: flex;
    align-items: center;
    overflow: hidden;
    background-color: var(--bg-secondary);
}

.hero-bg {
    position: absolute;
    inset: 0;
    background-image: url('/assets/daterounds-speed-dating-event.jpg');
    background-size: cover;
    background-position: center 35%;
    z-index: 0;
}

.hero-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(to right, rgba(255, 255, 255, 0.96) 0%, rgba(255, 255, 255, 0.85) 50%, rgba(255, 255, 255, 0.25) 100%);
    z-index: 1;
}

.hero-content {
    position: relative;
    z-index: 2;
    max-width: 1200px;
    margin: 0 auto;
    padding: var(--spacing-xxl) var(--spacing-lg);
    width: 100%;
}

.hero-inner {
    max-width: 760px;
}

.hero-eyebrow {
    display: inline-block;
    background: rgba(0, 180, 216, 0.1);
    border: 1px solid rgba(0, 180, 216, 0.35);
    color: var(--teal-dark);
    font-size: 0.8rem;
    font-weight: 700;
    letter-spacing: 0.08em;
    text-transform: uppercase;
    padding: 5px 14px;
    border-radius: var(--radius-full);
    margin-bottom: var(--spacing-md);
}

.hero-h1 {
    font-size: 2rem;
    font-weight: 800;
    line-height: 1.15;
    color: var(--text-primary);
    margin-bottom: var(--spacing-md);
}

.hero-h1 span {
    background: var(--gradient-primary);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.hero-subhead {
    font-size: 1.1rem;
    color: var(--text-secondary);
    line-height: 1.6;
    margin-bottom: var(--spacing-md);
    max-width: 580px;
}

.hero-outcome {
    font-size: 1rem;
    color: var(--text-primary);
    font-weight: 600;
    margin-bottom: var(--spacing-lg);
    padding-left: var(--spacing-md);
    border-left: 3px solid var(--teal);
}

.hero-checks {
    display: flex;
    flex-wrap: wrap;
    gap: var(--spacing-sm) var(--spacing-lg);
    margin-bottom: var(--spacing-xl);
}

.hero-check {
    display: flex;
    align-items: center;
    gap: 6px;
    color: var(--text-secondary);
    font-size: 0.9rem;
    font-weight: 500;
}

.hero-check-icon {
    color: var(--teal);
    font-weight: 700;
}

.hero-buttons {
    display: flex;
    flex-wrap: wrap;
    gap: var(--spacing-md);
    margin-bottom: var(--spacing-lg);
    align-items: flex-start;
}

.hero-btn-primary {
    background: var(--gradient-primary);
    color: #ffffff;
    padding: 14px 28px;
    border-radius: var(--radius-md);
    font-weight: 700;
    font-size: 1rem;
    text-decoration: none;
    transition: all var(--transition-normal);
    display: inline-flex;
    align-items: center;
    gap: 8px;
    box-shadow: var(--shadow-md);
    border: none;
    cursor: pointer;
    font-family: var(--font-family);
}

.hero-btn-primary:hover {
    transform: translateY(-2px);
    box-shadow: var(--shadow-glow-teal);
    color: #ffffff;
}

.hero-btn-secondary {
    background: transparent;
    color: var(--teal);
    padding: 14px 28px;
    border-radius: var(--radius-md);
    font-weight: 700;
    font-size: 1rem;
    text-decoration: none;
    border: 2px solid var(--teal);
    transition: all var(--transition-normal);
    display: inline-flex;
    align-items: center;
    gap: 8px;
    cursor: pointer;
    font-family: var(--font-family);
}

.hero-btn-secondary:hover {
    background: rgba(0, 180, 216, 0.08);
    color: var(--teal-dark);
}

.cta-group {
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
}

.cta-subtext {
    font-size: 12px;
    color: var(--teal-dark);
    margin-top: 8px;
    font-weight: 600;
}

@media (min-width: 769px) {
    .hero-h1 { font-size: 3rem; }
    .hero-section { min-height: 580px; }
    .hero-bg { background-position: right center; }
}

@media (max-width: 768px) {
    .hero-overlay {
        background: linear-gradient(to bottom, rgba(255, 255, 255, 0.85) 0%, rgba(255, 255, 255, 0.78) 40%, rgba(255, 255, 255, 0.65) 70%, rgba(255, 255, 255, 0.5) 100%);
    }
    .hero-bg {
        background-position: center 40%;
    }
    .hero-h1 {
        font-size: 1.65rem;
        line-height: 1.2;
    }
    .hero-subhead {
        font-size: 1rem;
    }
    .hero-content {
        padding: var(--spacing-lg) var(--spacing-md);
    }
    .hero-buttons {
        flex-direction: column;
        align-items: center;
        gap: var(--spacing-sm);
    }
    .hero-buttons .cta-group {
        width: auto;
    }
    .hero-btn-primary,
    .hero-btn-secondary {
        width: 220px;
        justify-content: center;
    }
}

/* ============================================
   STAT BAR
   ============================================ */
.stat-bar {
    width: 100%;
    background: var(--bg-primary);
    border-top: 1px solid var(--border-color);
    border-bottom: 1px solid var(--border-color);
}

.stat-bar-heading {
    text-align: center;
    font-size: 0.7rem;
    text-transform: uppercase;
    letter-spacing: 0.12em;
    color: var(--text-muted);
    font-weight: 700;
    padding-top: var(--spacing-md);
}

.stat-bar-inner {
    max-width: 1200px;
    margin: 0 auto;
    padding: var(--spacing-md) var(--spacing-lg) var(--spacing-lg);
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: var(--spacing-lg) var(--spacing-xxl);
}

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

.stat-number {
    font-size: 1.8rem;
    font-weight: 800;
    color: var(--teal);
    line-height: 1;
    margin-bottom: 4px;
}

.stat-label {
    font-size: 0.78rem;
    color: var(--text-muted);
    text-transform: uppercase;
    letter-spacing: 0.06em;
    font-weight: 500;
}

.stat-divider {
    width: 1px;
    background: var(--border-color);
    align-self: stretch;
    display: none;
}

@media (min-width: 640px) {
    .stat-divider { display: block; }
}

@media (max-width: 639px) {
    .stat-bar-inner {
        display: grid;
        grid-template-columns: 1fr 1fr;
        gap: var(--spacing-lg);
        padding: var(--spacing-md);
    }
    .stat-item:last-child { grid-column: 1 / -1; }
    .stat-divider { display: none !important; }
}

/* ============================================
   PROOF BLOCK (Built by a Practitioner)
   ============================================ */
.proof-section {
    width: 100%;
    padding: var(--spacing-xl) var(--spacing-lg);
    background: var(--bg-secondary);
    border-bottom: 1px solid var(--border-color);
}

.proof-inner {
    max-width: 900px;
    margin: 0 auto;
    background: rgba(0, 180, 216, 0.04);
    border: 1px solid rgba(0, 180, 216, 0.2);
    border-radius: var(--radius-lg);
    padding: var(--spacing-xl);
}

.proof-label {
    display: flex;
    align-items: center;
    gap: 8px;
    font-size: 0.7rem;
    text-transform: uppercase;
    letter-spacing: 0.12em;
    color: var(--teal-dark);
    font-weight: 700;
    margin-bottom: 6px;
}

.proof-title {
    font-size: 1.15rem;
    font-weight: 700;
    color: var(--text-primary);
    margin-bottom: var(--spacing-sm);
}

.proof-subtitle {
    font-size: 0.95rem;
    color: var(--text-secondary);
    margin-bottom: var(--spacing-md);
}

.proof-body-text {
    font-size: 0.95rem;
    color: var(--text-secondary);
    line-height: 1.7;
    margin-bottom: var(--spacing-lg);
}

.proof-body-text strong {
    color: var(--teal-dark);
    font-weight: 700;
}

.proof-listed-label {
    font-size: 0.7rem;
    color: var(--text-muted);
    text-transform: uppercase;
    letter-spacing: 0.08em;
    display: block;
    margin-bottom: var(--spacing-sm);
}

.proof-listed-badges {
    display: flex;
    gap: var(--spacing-sm);
    flex-wrap: wrap;
}

.proof-listed-badge {
    background: var(--bg-primary);
    border: 1px solid var(--border-light);
    border-radius: var(--radius-sm);
    padding: 4px 10px;
    font-size: 0.75rem;
    color: var(--text-primary);
    font-weight: 500;
}

/* Hidden placeholder for future Field Report block */
.field-report-placeholder {
    display: none;
}

/* ============================================
   COMPARE TEASER
   ============================================ */
.cmp-teaser {
    width: 100%;
    padding: var(--spacing-xxl) var(--spacing-lg);
    background: var(--bg-primary);
    border-bottom: 1px solid var(--border-color);
}

.cmp-teaser-inner {
    max-width: 960px;
    margin: 0 auto;
    text-align: center;
}

.cmp-teaser-eyebrow {
    display: inline-block;
    background: rgba(0, 180, 216, 0.08);
    border: 1px solid rgba(0, 180, 216, 0.25);
    color: var(--teal-dark);
    font-size: 0.75rem;
    font-weight: 700;
    letter-spacing: 0.1em;
    text-transform: uppercase;
    padding: 4px 12px;
    border-radius: var(--radius-full);
    margin-bottom: var(--spacing-md);
}

.cmp-teaser h2 {
    font-size: 1.5rem;
    font-weight: 700;
    color: var(--text-primary);
    margin-bottom: var(--spacing-sm);
}

.cmp-teaser h2 span {
    color: var(--teal);
}

.cmp-teaser-sub {
    color: var(--text-secondary);
    font-size: 0.95rem;
    margin-bottom: var(--spacing-xl);
}

.cmp-punch-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: var(--spacing-md);
    margin-bottom: var(--spacing-xl);
}

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

.cmp-punch-card {
    background: var(--bg-card);
    border: 1px solid var(--border-color);
    border-radius: var(--radius-lg);
    padding: var(--spacing-xl) var(--spacing-lg);
    transition: border-color var(--transition-normal), box-shadow var(--transition-normal);
}

.cmp-punch-card:hover {
    border-color: var(--teal);
    box-shadow: var(--shadow-glow-teal);
}

.cmp-punch-icon {
    font-size: 2rem;
    margin-bottom: var(--spacing-sm);
}

.cmp-punch-label {
    font-size: 0.7rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.1em;
    color: var(--text-muted);
    margin-bottom: var(--spacing-xs);
}

.cmp-punch-win {
    font-size: 1rem;
    font-weight: 800;
    color: var(--teal-dark);
    margin-bottom: 4px;
}

.cmp-punch-lose {
    font-size: 0.82rem;
    color: var(--text-muted);
}

/* ============================================
   FEATURES GRID
   ============================================ */
.features-section {
    width: 100%;
    padding: var(--spacing-xxl) var(--spacing-lg);
    background: var(--bg-secondary);
}

.features-inner {
    max-width: 1200px;
    margin: 0 auto;
}

.features-heading {
    text-align: center;
    font-size: 1.5rem;
    font-weight: 700;
    color: var(--text-primary);
    margin-bottom: var(--spacing-xxl);
    max-width: 800px;
    margin-left: auto;
    margin-right: auto;
}

.features-heading span {
    color: var(--teal);
}

.features-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: var(--spacing-lg);
}

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

.feature-card {
    background: var(--bg-card);
    border-radius: var(--radius-lg);
    padding: var(--spacing-xl);
    border: 1px solid var(--border-color);
    transition: border-color var(--transition-normal), box-shadow var(--transition-normal);
}

.feature-card:hover {
    border-color: var(--teal);
    box-shadow: var(--shadow-glow-teal);
}

.feature-card-header {
    display: flex;
    align-items: center;
    gap: 10px;
    margin-bottom: var(--spacing-md);
}

.feature-card-header svg {
    width: 22px;
    height: 22px;
    flex-shrink: 0;
    stroke: var(--teal);
    fill: none;
}

.feature-card-title {
    font-size: 0.95rem;
    font-weight: 700;
    color: var(--teal-dark);
    text-transform: uppercase;
    letter-spacing: 0.05em;
    margin: 0;
}

.feature-card-desc {
    font-size: 0.9rem;
    color: var(--text-secondary);
    line-height: 1.6;
    margin: 0;
}

/* ============================================
   PHOTO SLIDER
   ============================================ */
.slider-section {
    width: 100%;
    background: var(--bg-primary);
    padding: var(--spacing-xxl) var(--spacing-lg);
    border-top: 1px solid var(--border-color);
}

.slider-section-inner {
    max-width: 1200px;
    margin: 0 auto;
}

.slider-heading {
    text-align: center;
    font-size: 1.5rem;
    font-weight: 700;
    color: var(--text-primary);
    margin-bottom: var(--spacing-lg);
}

.slider-heading span {
    color: var(--teal);
}

.hunt-slider {
    border-radius: var(--radius-lg);
    overflow: hidden;
    position: relative;
    background: var(--bg-secondary);
    max-width: 900px;
    margin: 0 auto;
    box-shadow: var(--shadow-md);
}

.hunt-slider-track {
    display: flex;
    transition: transform 0.5s ease;
    width: 100%;
}

.hunt-slide {
    min-width: 100%;
}

.hunt-slide img {
    width: 100%;
    height: auto;
    object-fit: cover;
    object-position: center;
    display: block;
}

.hunt-slider-dots {
    display: flex;
    justify-content: center;
    gap: 8px;
    padding: 12px 0;
    background: var(--bg-secondary);
}

.hunt-dot {
    width: 8px;
    height: 8px;
    border-radius: var(--radius-full);
    background: var(--border-light);
    cursor: pointer;
    transition: background var(--transition-fast);
}

.hunt-dot.active {
    background: var(--teal);
}

/* ============================================
   HOW IT WORKS
   ============================================ */
.hiw-section {
    width: 100%;
    padding: var(--spacing-xxl) var(--spacing-lg);
    background: var(--bg-secondary);
}

.hiw-inner {
    max-width: 1200px;
    margin: 0 auto;
    text-align: center;
}

.hiw-heading {
    font-size: 1.5rem;
    font-weight: 700;
    color: var(--text-primary);
    margin-bottom: var(--spacing-sm);
}

.hiw-subhead {
    color: var(--text-muted);
    font-size: 0.95rem;
    margin-bottom: var(--spacing-xxl);
}

@media (max-width: 639px) {
    .hiw-subhead { font-size: 0.9rem; }
    .hiw-subhead .hiw-subhead-break::before {
        content: '\A';
        white-space: pre;
    }
}

.hiw-steps {
    display: grid;
    grid-template-columns: 1fr;
    gap: var(--spacing-xl);
    margin-bottom: var(--spacing-xxl);
}

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

.hiw-step {
    text-align: left;
    display: flex;
    flex-direction: column;
}

@media (max-width: 639px) {
    .hiw-step {
        flex-direction: row;
        align-items: flex-start;
        gap: var(--spacing-md);
    }
    .hiw-step-num {
        margin: 0;
        flex-shrink: 0;
        width: 40px;
        height: 40px;
        font-size: 1rem;
    }
    .hiw-step-content { flex: 1; }
}

@media (min-width: 640px) {
    .hiw-step {
        text-align: center;
        align-items: center;
    }
    .hiw-step-content { width: 100%; }
}

.hiw-step-num {
    width: 48px;
    height: 48px;
    border-radius: 50%;
    background: var(--gradient-primary);
    color: #ffffff;
    font-size: 1.2rem;
    font-weight: 800;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto var(--spacing-md);
    flex-shrink: 0;
}

.hiw-step-title {
    font-size: 1rem;
    font-weight: 700;
    color: var(--text-primary);
    margin-bottom: var(--spacing-sm);
}

.hiw-step-desc {
    font-size: 0.88rem;
    color: var(--text-secondary);
    line-height: 1.6;
    margin: 0;
}

.hiw-cta {
    display: flex;
    flex-wrap: wrap;
    gap: var(--spacing-lg);
    justify-content: center;
    align-items: flex-start;
}

/* ============================================
   PRICING SECTION
   ============================================ */
.pricing-section {
    width: 100%;
    padding: var(--spacing-xxl) var(--spacing-lg);
    background: var(--bg-primary);
    border-top: 1px solid var(--border-color);
}

.pricing-inner {
    max-width: 1200px;
    margin: 0 auto;
    text-align: center;
}

.pricing-heading {
    font-size: 1.5rem;
    font-weight: 700;
    color: var(--text-primary);
    margin-bottom: var(--spacing-sm);
}

.pricing-subhead {
    color: var(--text-muted);
    font-size: 0.95rem;
    margin-bottom: var(--spacing-xxl);
    max-width: 600px;
    margin-left: auto;
    margin-right: auto;
}

.pricing-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: var(--spacing-md);
    max-width: 960px;
    margin: 0 auto var(--spacing-xl);
}

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

.p-card {
    background: var(--bg-card);
    border-radius: var(--radius-lg);
    padding: var(--spacing-xl) var(--spacing-lg);
    border: 2px solid var(--border-color);
    text-align: center;
    transition: all var(--transition-normal);
    position: relative;
    cursor: pointer;
    display: flex;
    flex-direction: column;
    box-shadow: var(--shadow-sm);
}

.p-card:hover {
    border-color: var(--teal);
    transform: translateY(-4px);
    box-shadow: var(--shadow-glow-teal);
}

.p-card-featured {
    border-color: var(--gold);
}

.p-card-featured:hover {
    border-color: var(--gold);
    box-shadow: var(--shadow-glow-gold);
}

.p-card-badge {
    position: absolute;
    top: -13px;
    left: 50%;
    transform: translateX(-50%);
    background: var(--gold);
    color: #ffffff;
    font-size: 0.7rem;
    font-weight: 800;
    padding: 3px 14px;
    border-radius: var(--radius-full);
    text-transform: uppercase;
    letter-spacing: 0.05em;
    white-space: nowrap;
    box-shadow: var(--shadow-sm);
}

.p-card-title {
    font-size: 0.8rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.08em;
    color: var(--text-muted);
    margin-bottom: var(--spacing-sm);
}

.p-card-price {
    font-size: 2.2rem;
    font-weight: 800;
    color: var(--gold);
    line-height: 1;
    margin-bottom: 4px;
}

.p-card-price-sub {
    font-size: 0.78rem;
    color: var(--text-muted);
    margin-bottom: var(--spacing-md);
}

.p-card-price-sub s {
    color: var(--text-muted);
    font-size: 1rem;
    font-weight: 600;
}

.p-card-features {
    list-style: none;
    margin: 0 0 var(--spacing-lg);
    padding: 0;
    text-align: left;
    font-size: 0.82rem;
    color: var(--text-secondary);
    line-height: 2;
    flex: 1;
}

.p-card-features li::before {
    content: '✓ ';
    color: var(--teal);
    font-weight: 700;
}

.p-card-btn {
    display: block;
    width: 100%;
    text-align: center;
    padding: 10px;
    border-radius: var(--radius-md);
    font-weight: 700;
    font-size: 0.9rem;
    border: none;
    cursor: pointer;
    font-family: var(--font-family);
    text-decoration: none;
    margin-top: auto;
    pointer-events: none;
}

.p-card-btn-paid {
    background: var(--gradient-primary);
    color: #ffffff;
}

.pricing-note {
    font-size: 0.82rem;
    color: var(--text-muted);
    font-style: italic;
    text-align: center;
}

.pricing-note a {
    color: var(--teal);
    margin-left: 8px;
    font-style: normal;
    font-weight: 600;
}

.pricing-more-link {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    color: var(--teal);
    font-weight: 700;
    font-size: 0.95rem;
    text-decoration: none;
    border: 2px solid var(--teal);
    padding: 10px 24px;
    border-radius: var(--radius-md);
    transition: all var(--transition-normal);
    margin-top: var(--spacing-md);
}

.pricing-more-link:hover {
    background: rgba(0, 180, 216, 0.08);
    color: var(--teal-dark);
}

.pricing-guarantee {
    text-align: center;
    margin-top: var(--spacing-md);
    color: var(--gold-dark);
    font-size: 0.875rem;
    font-weight: 600;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 6px;
}

/* ============================================
   DESKTOP CODE SECTION
   ============================================ */
.desktop-code-section {
    display: none;
    width: 100%;
    padding: var(--spacing-xxl) var(--spacing-lg);
    background: var(--bg-secondary);
    border-top: 1px solid var(--border-color);
}

@media (min-width: 769px) {
    .desktop-code-section { display: block; }
}

.desktop-code-inner {
    max-width: 440px;
    margin: 0 auto;
    text-align: center;
}

.desktop-code-label {
    font-size: 0.85rem;
    color: var(--text-muted);
    margin-bottom: var(--spacing-md);
    text-transform: uppercase;
    letter-spacing: 0.08em;
    font-weight: 600;
}

/* ============================================
   INFO BOX (SEO content under desktop code)
   ============================================ */
.info-box {
    background: var(--bg-card);
    border-radius: var(--radius-lg);
    padding: var(--spacing-lg);
    margin: var(--spacing-md) 0;
    text-align: left;
    border: 1px solid var(--border-color);
}

.info-box h2 {
    font-size: 1.25rem;
    font-weight: 700;
    color: var(--teal-dark);
    margin-bottom: 6px;
    text-align: center;
}

.info-box .info-subtitle {
    font-size: 1.05rem;
    font-weight: 600;
    color: var(--teal);
    margin-bottom: var(--spacing-md);
    text-align: center;
}

.info-box .tagline-quote {
    font-style: italic;
    color: var(--text-secondary);
    font-size: 0.95rem;
    line-height: 1.7;
}

.info-box .tagline-quote p {
    margin-bottom: var(--spacing-sm);
}

.info-box .tagline-quote p:last-child {
    margin-bottom: 0;
}

.info-box .brand-name {
    font-weight: 700;
    font-style: italic;
    color: var(--teal-dark);
}

.feature-list {
    display: flex;
    flex-direction: column;
    gap: var(--spacing-sm);
    margin: var(--spacing-lg) 0;
}

.feature-item {
    display: flex;
    align-items: center;
    gap: var(--spacing-sm);
    color: var(--text-secondary);
}

.feature-item-icon {
    color: var(--success);
}

/* Ring pulse for desktop input */
.input-pulse {
    animation: inputRingPulse 2s ease-in-out infinite;
}

.input-pulse:focus {
    animation: none;
}

@keyframes inputRingPulse {
    0%, 100% { box-shadow: 0 0 0 2px var(--teal); }
    50% { box-shadow: 0 0 12px 2px var(--teal); }
}

/* ============================================
   CODE INPUT GROUP (docked layout)
   Input on left 75%, Enter button on right 25%
   ============================================ */
.code-input-group {
    display: flex;
    align-items: stretch;
    margin-top: var(--spacing-sm);
    margin-bottom: var(--spacing-xs);
    border-radius: var(--radius-md);
    overflow: hidden;
    box-shadow: var(--shadow-sm);
}

.code-input-group .form-input {
    flex: 1 1 75%;
    margin: 0;
    border-radius: var(--radius-md) 0 0 var(--radius-md);
    border-right: none;
    box-shadow: none;
}

.code-input-group .form-input:focus {
    position: relative;
    z-index: 1;
}

.code-input-submit {
    flex: 0 0 25%;
    min-width: 90px;
    background: var(--gradient-primary);
    color: #ffffff;
    border: none;
    border-radius: 0 var(--radius-md) var(--radius-md) 0;
    font-size: 1rem;
    font-weight: 700;
    cursor: pointer;
    font-family: var(--font-family);
    transition: all var(--transition-normal);
    padding: 0 var(--spacing-md);
}

.code-input-submit:hover:not(:disabled) {
    box-shadow: var(--shadow-glow-teal);
    filter: brightness(1.08);
}

.code-input-submit:disabled {
    opacity: 0.6;
    cursor: not-allowed;
}

/* Pulse ring wraps the whole group when input-pulse is present */
.code-input-group .input-pulse {
    animation: inputRingPulse 2s ease-in-out infinite;
}

.code-input-group .input-pulse:focus {
    animation: none;
}

/* ============================================
   USE CASES
   ============================================ */
.use-case-section {
    width: 100%;
    padding: var(--spacing-xxl) var(--spacing-lg);
    background: var(--bg-primary);
    border-top: 1px solid var(--border-color);
}

.use-case-inner {
    max-width: 1200px;
    margin: 0 auto;
    text-align: center;
}

.use-case-section h2 {
    font-size: 1.125rem;
    color: var(--text-secondary);
    text-align: center;
    margin-bottom: var(--spacing-lg);
    font-weight: 500;
}

.use-case-tags {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: var(--spacing-sm);
}

.use-case-tag {
    background: var(--bg-secondary);
    color: var(--text-secondary);
    padding: var(--spacing-sm) var(--spacing-md);
    border-radius: var(--radius-full);
    font-size: 0.85rem;
    border: 1px solid var(--border-color);
    transition: all var(--transition-fast);
}

.use-case-tag:hover {
    border-color: var(--teal);
    color: var(--text-primary);
}

