/* My Predict 11 - Sporty Premium UI */

/* ... (Previous Styles Remain) ... */

:root {
    --primary-dark: #111827;
    --primary-purple: #7c3aed;
    --accent-orange: #E67E22;
    --accent-orange-hover: #d35400;

    --bg-page: #ffffff;
    --bg-light: #f8fafc;
    --bg-dark: #0f172a;

    --text-main: #1e293b;
    --text-muted: #64748b;
    --text-light: #94a3b8;

    --max-width: 1200px;
    --radius-xl: 32px;
    --radius-lg: 16px;
    --radius-md: 12px;
    --radius-sm: 8px;

    --shadow-soft: 0 4px 6px -1px rgba(0, 0, 0, 0.05);
    --shadow-card: 0 10px 15px -3px rgba(0, 0, 0, 0.05);
    --shadow-hero: 0 25px 50px -12px rgba(0, 0, 0, 0.5);
    --shadow-purple: 0 25px 50px -12px rgba(124, 58, 237, 0.25);
}

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

html {
    scroll-behavior: smooth;
    scroll-padding-top: 80px; /* Account for sticky header */
}

body {
    font-family: 'Inter', sans-serif;
    font-size: 16px;
    line-height: 1.6;
    color: var(--text-main);
    background-color: var(--bg-page);
    -webkit-font-smoothing: antialiased;
}

h1,
h2,
h3,
h4,
h5 {
    font-family: 'Outfit', sans-serif;
    font-weight: 700;
    line-height: 1.1;
    color: var(--text-main);
}

p {
    max-width: 640px;
    margin-bottom: 0;
}

a {
    text-decoration: none;
    transition: 0.2s;
}

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

ul {
    list-style: none;
}

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

@media (min-width: 1024px) {
    .container {
        padding: 0 48px;
    }
}

/* Utilities */
.section-padding {
    padding: 96px 0;
}

.bg-light {
    background-color: var(--bg-light);
}

.bg-dark {
    background-color: var(--bg-dark);
    color: white;
}

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

/* Buttons */
.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 14px 32px;
    border-radius: var(--radius-sm);
    font-weight: 600;
    font-size: 1rem;
    cursor: pointer;
    transition: all 0.2s ease;
}

.btn-primary {
    background-color: var(--accent-orange);
    color: white;
    box-shadow: 0 4px 6px rgba(230, 126, 34, 0.25);
    border: 1px solid transparent;
}

.btn-primary:hover {
    background-color: var(--accent-orange-hover);
    transform: translateY(-2px);
    box-shadow: 0 8px 12px rgba(230, 126, 34, 0.3);
}

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

.btn-secondary:hover {
    border-color: var(--accent-orange);
    color: var(--accent-orange);
}

.btn-hero-primary {
    background: var(--accent-orange);
    color: white;
    padding: 16px 32px;
    font-size: 1.1rem;
    font-weight: 700;
    border-radius: 6px;
    text-transform: uppercase;
    letter-spacing: 0.02em;
    box-shadow: 0 4px 0 #bf6211;
    transition: transform 0.1s;
}

.btn-hero-primary:active {
    transform: translateY(4px);
    box-shadow: none;
}

.btn-hero-text {
    color: white;
    border: 1px solid rgba(255, 255, 255, 0.3);
    padding: 16px 32px;
    border-radius: 6px;
    font-weight: 600;
}

/* Header */
.site-header {
    padding: 24px 0;
    position: absolute;
    width: 100%;
    top: 0;
    z-index: 50;
}

.header-inner {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.logo-text {
    font-size: 1.5rem;
    font-weight: 800;
    color: white;
    letter-spacing: -0.02em;
}

.nav-links {
    display: flex;
    gap: 40px;
}

.nav-item {
    color: rgba(255, 255, 255, 0.7);
    font-size: 0.95rem;
    font-weight: 500;
}

.nav-item:hover {
    color: white;
}

/* HERO (Sporty Dark) */
.hero {
    padding-top: 180px;
    padding-bottom: 120px;
    background-color: #0f0518;
    background-image:
        radial-gradient(circle at 80% 20%, rgba(124, 58, 237, 0.25) 0%, transparent 45%),
        linear-gradient(135deg, #09030f 0%, #1e1b4b 100%);
    position: relative;
    overflow: hidden;
    color: white;
}

.hero::before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background-image: linear-gradient(rgba(255, 255, 255, 0.03) 1px, transparent 1px), linear-gradient(90deg, rgba(255, 255, 255, 0.03) 1px, transparent 1px);
    background-size: 40px 40px;
    pointer-events: none;
}

.hero-grid {
    display: grid;
    grid-template-columns: 1.1fr 1fr;
    gap: 60px;
    align-items: center;
    position: relative;
    z-index: 10;
}

.hero-badge {
    display: inline-flex;
    align-items: center;
    padding: 6px 12px;
    background: rgba(230, 126, 34, 0.15);
    border: 1px solid rgba(230, 126, 34, 0.3);
    color: #fdba74;
    font-size: 0.8rem;
    font-weight: 700;
    text-transform: uppercase;
    border-radius: 4px;
    margin-bottom: 24px;
}

.hero-title {
    font-size: 3.75rem;
    letter-spacing: -0.02em;
    margin-bottom: 24px;
    line-height: 1.05;
    color: white;
}

.hero-subtitle {
    font-size: 1.25rem;
    color: rgba(255, 255, 255, 0.8);
    margin-bottom: 40px;
}

.hero-buttons {
    display: flex;
    gap: 20px;
    align-items: center;
    margin-bottom: 40px;
}

.phone-mockup {
    width: 340px;
    margin: 0 auto;
    border-radius: 44px;
    border: 8px solid #2d2d2d;
    background: #000;
    overflow: hidden;
    box-shadow: var(--shadow-hero);
    transform: rotate(-3deg);
}

.hero-stats-row {
    display: flex;
    gap: 24px;
    padding-top: 24px;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
}

.h-stat span {
    display: block;
}

.h-val {
    font-size: 1.5rem;
    font-weight: 700;
    color: white;
    line-height: 1;
}

.h-lbl {
    font-size: 0.75rem;
    text-transform: uppercase;
    color: rgba(255, 255, 255, 0.5);
    margin-top: 4px;
}

/* Stats */
.stats-section {
    padding: 40px 0;
    background: white;
    border-bottom: 1px solid #f1f5f9;
}

.stats-row {
    display: flex;
    justify-content: center;
    gap: 80px;
    flex-wrap: wrap;
}

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

.stat-num {
    display: block;
    font-size: 2.25rem;
    font-weight: 800;
    color: var(--text-main);
    line-height: 1;
    margin-bottom: 4px;
}

.stat-label {
    font-size: 0.85rem;
    font-weight: 600;
    text-transform: uppercase;
    color: var(--text-muted);
}

/* BENTO FEATURES */
.bento-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 24px;
}

.bento-card {
    background: white;
    padding: 32px;
    border-radius: var(--radius-xl);
    box-shadow: var(--shadow-card);
    border: 1px solid #f1f5f9;
    transition: transform 0.2s;
}

.bento-card:hover {
    transform: translateY(-4px);
}

.bento-card.span-2 {
    grid-column: span 2;
}

.bento-card.dark {
    background: var(--bg-dark);
    color: white;
    border: none;
}

.bento-card.dark h3 {
    color: white;
}

.bento-card.dark p {
    color: rgba(255, 255, 255, 0.7);
}

.feature-icon-box {
    width: 56px;
    height: 56px;
    background: var(--bg-light);
    color: var(--primary-purple);
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.5rem;
    margin-bottom: 24px;
}

.bento-card.dark .feature-icon-box {
    background: rgba(255, 255, 255, 0.1);
    color: white;
}

.bento-card h3 {
    font-size: 1.25rem;
    margin-bottom: 8px;
}

.bento-card p {
    font-size: 0.95rem;
    color: var(--text-muted);
    line-height: 1.5;
}

/* APP SHOWCASE */
.showcase-section {
    padding: 100px 0;
    overflow: hidden;
}

.showcase-row {
    display: flex;
    align-items: center;
    gap: 80px;
    margin-bottom: 120px;
}

.showcase-row:last-child {
    margin-bottom: 0;
}

.showcase-row.reverse {
    flex-direction: row-reverse;
}

.showcase-content {
    flex: 1;
}

.site-logo {
    height: 40px;
    width: auto;
}

.footer-logo {
    height: 50px;
    width: auto;
    margin-bottom: 16px;
    /* Invert colors for dark footer if the logo is dark */
    filter: brightness(0) invert(1);
}

.showcase-badge {
    display: inline-block;
    font-size: 0.8rem;
    font-weight: 700;
    color: var(--primary-purple);
    text-transform: uppercase;
    letter-spacing: 0.05em;
    margin-bottom: 16px;
    background: #f3e8ff;
    padding: 6px 12px;
    border-radius: 6px;
}

.showcase-content h3 {
    font-size: 2.25rem;
    margin-bottom: 20px;
    line-height: 1.1;
    color: var(--text-main);
}

.showcase-content p {
    font-size: 1.1rem;
    color: var(--text-muted);
    margin-bottom: 24px;
}

.feature-check {
    width: 24px;
    height: 24px;
    background: var(--accent-orange);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-size: 0.75rem;
    font-weight: 900;
    box-shadow: 0 2px 4px rgba(230, 126, 34, 0.3);
}

.feature-list li {
    display: flex;
    align-items: center;
    gap: 12px;
    margin-bottom: 16px;
    font-weight: 500;
}

.showcase-visual {
    flex: 1;
    position: relative;
    display: flex;
    justify-content: center;
}

.showcase-visual::before {
    content: "";
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 500px;
    height: 500px;
    border-radius: 50%;
    background: radial-gradient(circle, rgba(124, 58, 237, 0.05) 0%, transparent 70%);
    z-index: 0;
}

.showcase-phone {
    position: relative;
    z-index: 1;
    width: 320px;
    border-radius: 44px;
    border: 8px solid #1e293b;
    background: #000;
    box-shadow: var(--shadow-purple);
    transition: transform 0.3s ease;
}

/* HOW IT WORKS */
.process-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 32px;
    margin-top: 56px;
}

.process-card {
    background: white;
    padding: 24px;
    border-radius: var(--radius-lg);
    border: 1px solid #e2e8f0;
    text-align: center;
    position: relative;
    transition: transform 0.2s;
}

.process-card:hover {
    transform: translateY(-4px);
    border-color: var(--primary-purple);
}

.process-step-num {
    position: absolute;
    top: -16px;
    left: 50%;
    transform: translateX(-50%);
    width: 32px;
    height: 32px;
    background: var(--primary-purple);
    color: white;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 700;
    font-size: 0.9rem;
    border: 4px solid white;
}

.process-graph-area {
    height: 100px;
    display: flex;
    align-items: flex-end;
    justify-content: center;
    margin-bottom: 20px;
    background: #f8fafc;
    border-radius: var(--radius-sm);
    padding: 12px;
}

.match-select-ui {
    width: 100%;
    height: 100%;
    display: flex;
    flex-direction: column;
    gap: 6px;
    justify-content: center;
}

.match-bar {
    height: 14px;
    background: #cbd5e1;
    border-radius: 4px;
    width: 80%;
    margin: 0 auto;
}

.match-bar.active {
    background: var(--primary-purple);
    width: 90%;
}

.bar-chart-ui {
    display: flex;
    gap: 6px;
    align-items: flex-end;
    height: 100%;
    width: 100%;
    justify-content: center;
}

.bar-col {
    width: 12px;
    background: #e2e8f0;
    border-radius: 2px;
}

.bar-col:nth-child(2) {
    height: 40%;
    background: #a855f7;
}

.bar-col:nth-child(4) {
    height: 90%;
    background: var(--primary-purple);
}

.line-chart-svg {
    width: 100%;
    height: 100%;
}

.line-path {
    stroke: var(--accent-orange);
    stroke-width: 3;
    fill: none;
    stroke-linecap: round;
}

.trophy-ui {
    font-size: 3rem;
    display: flex;
    align-items: center;
    justify-content: center;
    height: 100%;
}

/* WHY US */
.comparison-table-wrapper {
    max-width: 1000px;
    margin: 56px auto 0;
    box-shadow: var(--shadow-card);
    border-radius: var(--radius-xl);
    overflow: hidden;
    border: 1px solid #e2e8f0;
}

.c-row {
    display: grid;
    grid-template-columns: 1.5fr 1fr 1fr;
    padding: 24px 32px;
    border-bottom: 1px solid #f1f5f9;
    background: white;
}

.c-row:last-child {
    border-bottom: none;
}

.c-row.header {
    background: #f8fafc;
    font-weight: 700;
    color: var(--text-main);
    font-family: 'Outfit';
    font-size: 1.1rem;
}

.c-col {
    display: flex;
    align-items: center;
    font-size: 1rem;
    color: var(--text-main);
}

.c-col.center {
    justify-content: center;
}

.c-col.feature-name {
    font-weight: 600;
    color: var(--text-main);
}

.c-col.highlight {
    color: var(--primary-purple);
    font-weight: 700;
}

.check-icon {
    color: #10b981;
    font-weight: 900;
    font-size: 1.2rem;
}

.cross-icon {
    color: #cbd5e1;
    font-size: 1.1rem;
}

.highlight-bg {
    background: rgba(124, 58, 237, 0.03);
}

/* TECH SECTION */
.tech-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 32px;
    margin-top: 48px;
}

.tech-card {
    padding: 32px;
    border-radius: var(--radius-lg);
    background: white;
    border: 1px solid #e2e8f0;
    position: relative;
    overflow: hidden;
}

.tech-card::before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 4px;
    background: var(--primary-purple);
    opacity: 0.5;
}

.tech-visual-box {
    height: 140px;
    background: #0f172a;
    border-radius: var(--radius-md);
    margin-bottom: 24px;
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
    overflow: hidden;
}

.network-dot {
    position: absolute;
    width: 6px;
    height: 6px;
    background: rgba(255, 255, 255, 0.4);
    border-radius: 50%;
}

.network-line {
    position: absolute;
    height: 1px;
    background: rgba(255, 255, 255, 0.1);
    width: 100px;
    transform-origin: left;
}

.center-node {
    width: 24px;
    height: 24px;
    background: var(--primary-purple);
    border-radius: 50%;
    box-shadow: 0 0 20px rgba(124, 58, 237, 0.8);
    z-index: 2;
    position: relative;
}

.pulse-line {
    stroke: #10b981;
    stroke-width: 2;
    fill: none;
    stroke-dasharray: 100;
    animation: dash 3s linear infinite;
}

@keyframes dash {
    to {
        stroke-dashoffset: -200;
    }
}

.scatter-dot {
    width: 4px;
    height: 4px;
    background: #eab308;
    border-radius: 50%;
    opacity: 0.8;
}

.regression-line {
    width: 80%;
    height: 2px;
    background: rgba(234, 179, 8, 0.5);
    transform: rotate(-30deg);
}

.tech-card h3 {
    font-size: 1.25rem;
    margin-bottom: 12px;
}

.tech-card p {
    font-size: 0.95rem;
    color: var(--text-muted);
    line-height: 1.5;
}

/* FAQ */
.faq-container {
    max-width: 768px;
    margin: 0 auto;
    margin-top: 40px;
}

.faq-item {
    background: white;
    border: 1px solid #e2e8f0;
    border-radius: 16px;
    margin-bottom: 16px;
    overflow: hidden;
    transition: all 0.3s ease;
}

.faq-item:hover {
    border-color: #cbd5e1;
    transform: translateY(-2px);
    box-shadow: 0 8px 24px rgba(0, 0, 0, 0.04);
}

.faq-item.active {
    border-color: transparent;
    box-shadow: 0 10px 30px rgba(139, 92, 246, 0.15);
    background: linear-gradient(to right, #ffffff, #faf5ff);
}

.faq-item.active .faq-question {
    color: var(--primary-purple);
    padding-bottom: 16px;
}

.faq-question {
    padding: 24px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    cursor: pointer;
    font-weight: 700;
    font-size: 1.15rem;
    color: var(--text-main);
    transition: color 0.3s ease, padding 0.3s ease;
}

.faq-icon {
    font-size: 1.2rem;
    transition: all 0.3s ease;
    color: #94a3b8;
    width: 36px;
    height: 36px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    background: #f8fafc;
}

.faq-item.active .faq-icon {
    transform: scale(1.15) rotate(10deg);
    background: var(--primary-purple);
    color: white;
    box-shadow: 0 4px 12px rgba(139, 92, 246, 0.4);
}

.faq-answer {
    padding: 0 24px 24px 24px;
    color: var(--text-muted);
    font-size: 1.05rem;
    line-height: 1.7;
    display: none;
    border-top: none;
}

.faq-item.active .faq-answer {
    display: block;
    animation: faqFadeInDown 0.4s ease;
}

@keyframes faqFadeInDown {
    from {
        opacity: 0;
        transform: translateY(-10px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

/* CTA (Immersive) */
.cta-banner {
    background: linear-gradient(135deg, #09030f 0%, #1e1b4b 100%);
    color: white;
    text-align: center;
    position: relative;
    overflow: hidden;
    padding: 120px 0;
    border-top: 1px solid rgba(255, 255, 255, 0.05);
}

.cta-banner::before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: radial-gradient(circle at 50% 100%, rgba(124, 58, 237, 0.15) 0%, transparent 70%);
    pointer-events: none;
}

.cta-bg-pattern {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background-image: linear-gradient(rgba(255, 255, 255, 0.03) 1px, transparent 1px), linear-gradient(90deg, rgba(255, 255, 255, 0.03) 1px, transparent 1px);
    background-size: 60px 60px;
    pointer-events: none;
}

.cta-banner h2 {
    font-size: 3rem;
    margin-bottom: 24px;
    color: white;
    letter-spacing: -0.02em;
}

.cta-sub {
    color: rgba(255, 255, 255, 0.7);
    max-width: 600px;
    margin: 0 auto 48px;
    font-size: 1.1rem;
}

.store-buttons {
    display: flex;
    gap: 20px;
    justify-content: center;
    flex-wrap: wrap;
}

.store-btn {
    background: white;
    color: black;
    border-radius: 12px;
    padding: 12px 24px;
    display: flex;
    align-items: center;
    gap: 12px;
    text-decoration: none;
    transition: transform 0.2s, box-shadow 0.2s;
    min-width: 180px;
}

.store-btn:hover {
    transform: translateY(-4px);
    box-shadow: 0 10px 20px rgba(0, 0, 0, 0.2);
}

.store-icon {
    width: 32px;
    height: 32px;
    fill: currentColor;
}

.store-text-group {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
}

.store-tiny {
    font-size: 0.7rem;
    font-weight: 500;
    text-transform: uppercase;
    line-height: 1;
    margin-bottom: 4px;
    color: #4b5563;
}

.store-large {
    font-size: 1.1rem;
    font-weight: 700;
    line-height: 1;
}

/* RE-DESIGNED FOOTER */
.site-footer {
    background: #0f0518;
    color: #cbd5e1;
    padding: 80px 0 40px;
    border-top: 1px solid rgba(255, 255, 255, 0.05);
    font-size: 0.95rem;
}

.footer-grid {
    display: grid;
    grid-template-columns: 2fr 1fr 1fr 1fr;
    gap: 48px;
    margin-bottom: 64px;
}

.footer-brand p {
    font-size: 0.9rem;
    color: #94a3b8;
    margin-top: 16px;
    width: 100%;
    max-width: 280px;
}

.footer-col h4 {
    color: white;
    margin-bottom: 24px;
    font-size: 1.1rem;
}

.footer-links {
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.footer-links a {
    color: #94a3b8;
    transition: color 0.2s;
}

.footer-links a:hover {
    color: var(--accent-orange);
}

.social-links {
    display: flex;
    gap: 16px;
    margin-top: 24px;
}

.social-icon {
    width: 40px;
    height: 40px;
    background: rgba(255, 255, 255, 0.05);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    transition: all 0.2s;
}

.social-icon:hover {
    background: var(--primary-purple);
    transform: translateY(-3px);
}

.footer-bottom {
    border-top: 1px solid rgba(255, 255, 255, 0.05);
    padding-top: 32px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    color: #64748b;
    font-size: 0.85rem;
}

@media (max-width: 900px) {

    .hero-grid,
    .stats-row,
    .process-grid,
    .tech-grid,
    .cta-banner .container,
    .footer-bottom {
        flex-direction: column;
        text-align: center;
    }

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

    .bento-card.span-2 {
        grid-column: auto;
    }

    .footer-grid {
        grid-template-columns: 1fr;
        gap: 40px;
        text-align: center;
    }

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

    .social-links {
        justify-content: center;
    }

    .c-row {
        grid-template-columns: 1fr 1fr;
    }

    .c-col.center:nth-child(2) {
        display: none;
    }

    .footer-bottom {
        gap: 16px;
    }
}

/* Edge Section Redesign */
.edge-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
    margin-top: 40px;
}

.edge-card {
    background: rgba(255, 255, 255, 0.03);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 24px;
    overflow: hidden;
    transition: transform 0.3s ease, border-color 0.3s;
    display: flex;
    flex-direction: column;
}

.edge-card:hover {
    transform: translateY(-8px);
    border-color: var(--primary-purple);
    background: rgba(255, 255, 255, 0.05);
}

.edge-card.highlight {
    background: linear-gradient(180deg, rgba(124, 58, 237, 0.1) 0%, rgba(255, 255, 255, 0.02) 100%);
    border-color: rgba(124, 58, 237, 0.3);
}

.edge-content {
    padding: 32px 24px 0;
    text-align: left;
    flex: 1;
}

.edge-icon_wrap {
    width: 48px;
    height: 48px;
    background: rgba(255, 255, 255, 0.1);
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.5rem;
    margin-bottom: 20px;
    color: white;
}

.edge-card h3 {
    margin-bottom: 12px;
    font-size: 1.25rem;
    color: white;
}

.edge-card p {
    font-size: 0.95rem;
    color: rgba(255, 255, 255, 0.6);
    margin-bottom: 24px;
    line-height: 1.5;
}

.feature-list.small li {
    font-size: 0.85rem;
    color: rgba(255, 255, 255, 0.8);
    margin-bottom: 8px;
}

.edge-visual {
    margin-top: 24px;
    display: flex;
    justify-content: center;
    padding-bottom: 0px;
    overflow: hidden;
}

.edge-visual img {
    width: 80%;
    border-top-left-radius: 24px;
    border-top-right-radius: 24px;
    border: 4px solid #2d2d2d;
    border-bottom: none;
    box-shadow: 0 -10px 40px rgba(0, 0, 0, 0.5);
    background: #000;
}

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

/* Intel Grid Styles */
.intel-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 24px;
}

.intel-card {
    background: white;
    padding: 24px;
    border-radius: 16px;
    border: 1px solid #e2e8f0;
    transition: all 0.3s ease;
    display: flex;
    flex-direction: column;
}

.intel-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.05);
    border-color: #cbd5e1;
}

.intel-header {
    display: flex;
    align-items: center;
    gap: 16px;
    margin-bottom: 20px;
}

.intel-icon {
    width: 48px;
    height: 48px;
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.5rem;
}

.intel-meta {
    font-size: 0.85rem;
    text-transform: uppercase;
    font-weight: 700;
    color: var(--text-light);
    letter-spacing: 0.02em;
}

.intel-card h3 {
    font-size: 1.25rem;
    font-weight: 700;
    margin-bottom: 12px;
    color: var(--text-main);
}

.intel-card p {
    font-size: 0.95rem;
    color: var(--text-muted);
    line-height: 1.6;
}

/* Sporty Dark Intel Cards */
.intel-card.dark-mode {
    background: rgba(255, 255, 255, 0.03);
    border-color: rgba(255, 255, 255, 0.1);
}

.intel-card.dark-mode:hover {
    background: rgba(255, 255, 255, 0.05);
    border-color: var(--primary-purple);
    transform: translateY(-5px);
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.3);
}

.intel-card.dark-mode h3 {
    color: white;
}

.intel-card.dark-mode p {
    color: rgba(255, 255, 255, 0.6);
}

.intel-card.dark-mode .intel-meta {
    color: rgba(255, 255, 255, 0.5);
}

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

/* Comparison Section Redesign */
.comparison-container {
    max-width: 900px;
    margin: 0 auto;
    background: rgba(255, 255, 255, 0.02);
    border-radius: 24px;
    border: 1px solid rgba(255, 255, 255, 0.05);
    overflow: hidden;
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.2);
}

.comp-header {
    display: grid;
    grid-template-columns: 1.5fr 1fr 1fr;
    padding: 24px 32px;
    background: rgba(0, 0, 0, 0.2);
    border-bottom: 1px solid rgba(255, 255, 255, 0.05);
    font-family: 'Outfit', sans-serif;
    font-weight: 700;
    color: white;
    font-size: 1.1rem;
}

.comp-row {
    display: grid;
    grid-template-columns: 1.5fr 1fr 1fr;
    padding: 24px 32px;
    border-bottom: 1px solid rgba(255, 255, 255, 0.03);
    align-items: center;
    transition: background 0.2s;
}

.comp-row:last-child {
    border-bottom: none;
}

.comp-row:hover {
    background: rgba(255, 255, 255, 0.02);
}

.comp-col {
    display: flex;
    align-items: center;
}

.feature-col {
    color: rgba(255, 255, 255, 0.8);
    font-weight: 500;
    gap: 12px;
}

.feat-icon {
    font-size: 1.2rem;
    width: 32px;
    height: 32px;
    background: rgba(255, 255, 255, 0.05);
    border-radius: 8px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.competitor-col {
    color: #64748b;
    font-size: 0.95rem;
}

.us-col {
    color: #a78bfa;
    font-weight: 700;
}

.brand-glow {
    color: #a78bfa;
    text-shadow: 0 0 20px rgba(167, 139, 250, 0.3);
}

.highlight-text {
    color: white;
    text-shadow: 0 0 10px rgba(255, 255, 255, 0.1);
}

@media (max-width: 768px) {
    .comp-header {
        display: none;
    }

    .comp-row {
        grid-template-columns: 1fr;
        padding: 24px;
        gap: 12px;
        background: rgba(255, 255, 255, 0.02);
        margin: 16px;
        border-radius: 12px;
        border: 1px solid rgba(255, 255, 255, 0.05);
        text-align: center;
    }

    .comp-col {
        justify-content: center;
        flex-direction: column;
        gap: 8px;
    }

    .competitor-col {
        font-size: 0.85rem;
        opacity: 0.6;
    }

    .competitor-col::before {
        content: "Others: ";
    }

    .us-col::before {
        content: "My Predict 11: ";
        color: #a78bfa;
        font-size: 0.85rem;
    }
}

/* Steps Section */
.steps-section {
    position: relative;
    overflow: hidden;
}

.steps-container {
    display: flex;
    justify-content: center;
    align-items: flex-start;
    gap: 0;
    position: relative;
    padding: 20px 0;
}

.step-card {
    text-align: center;
    flex: 1;
    max-width: 300px;
    position: relative;
    z-index: 2;
    padding: 20px;
}

.step-number {
    position: absolute;
    top: -10px;
    left: calc(50% + 24px);
    background: linear-gradient(135deg, var(--primary-purple) 0%, #ec4899 100%);
    color: white;
    width: 32px;
    height: 32px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1rem;
    font-weight: 700;
    box-shadow: 0 4px 12px rgba(236, 72, 153, 0.4);
    z-index: 10;
}

.step-icon {
    width: 80px;
    height: 80px;
    background: white;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 2rem;
    margin: 0 auto 24px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.08);
    position: relative;
    border: 2px solid white;
}

.step-card h3 {
    font-family: 'Outfit', sans-serif;
    font-weight: 700;
    color: var(--primary-dark);
    margin-bottom: 12px;
}

.step-card p {
    color: var(--text-muted);
}

.step-connector {
    flex: 1;
    height: 2px;
    background: #e2e8f0;
    margin-top: 40px;
    position: relative;
    max-width: 150px;
}

.step-connector::after {
    content: '';
    position: absolute;
    right: 0;
    top: 50%;
    transform: translateY(-50%);
    width: 6px;
    height: 6px;
    background: #cbd5e1;
    border-radius: 50%;
}

@media (max-width: 768px) {
    .steps-container {
        flex-direction: column;
        align-items: center;
        gap: 40px;
    }

    .step-connector {
        display: none;
    }

    .deep-dive-content {
        position: relative;
        top: 0;
    }

    .deep-dive-grid {
        grid-template-columns: 1fr;
        gap: 32px;
    }
}

.deep-dive-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: center;
}


/* Mobile Menu Styling */
.mobile-menu-overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(15, 5, 24, 0.98);
    z-index: 100;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    gap: 32px;
    opacity: 0;
    visibility: hidden;
    transition: all 0.3s ease;
}

.mobile-menu-overlay.active {
    opacity: 1;
    visibility: visible;
}

.mobile-nav-item {
    color: white;
    font-size: 1.5rem;
    font-weight: 700;
    text-decoration: none;
    font-family: 'Outfit', sans-serif;
}

.mobile-nav-item.active {
    color: var(--accent-orange);
}

.mobile-menu-toggle {
    display: none;
    flex-direction: column;
    gap: 6px;
    background: none;
    border: none;
    cursor: pointer;
    z-index: 101;
}

.mobile-menu-toggle span {
    display: block;
    width: 24px;
    height: 2px;
    background-color: white;
    transition: all 0.3s ease;
}

/* Responsive Styles for Header */
@media (max-width: 768px) {
    .nav-links {
        display: none;
    }

    .mobile-menu-toggle {
        display: flex;
    }
}

/* Homepage Redesign 2026 */
.homepage {
    --home-ink: #102033;
    --home-copy: #405162;
    --home-muted: #6f8191;
    --home-line: rgba(16, 32, 51, 0.08);
    --home-surface: #ffffff;
    --home-surface-alt: #f4f7fb;
    --home-wash: #eef4f8;
    --home-accent: #ff7a30;
    --home-accent-strong: #e85e12;
    --home-teal: #149d8d;
    --home-navy: #132238;
    --home-shadow: 0 20px 60px rgba(15, 23, 42, 0.08);
    background:
        radial-gradient(circle at top left, rgba(20, 157, 141, 0.08), transparent 26rem),
        radial-gradient(circle at top right, rgba(255, 122, 48, 0.12), transparent 22rem),
        linear-gradient(180deg, #fbfcfe 0%, #f5f8fb 16%, #ffffff 36%);
    color: var(--home-ink);
    font-family: 'Manrope', sans-serif;
}

.homepage h1,
.homepage h2,
.homepage h3,
.homepage h4,
.homepage h5,
.homepage h6 {
    font-family: 'Sora', sans-serif;
    color: var(--home-ink);
}

.homepage p {
    max-width: none;
    color: var(--home-copy);
}

.homepage .container {
    max-width: 1240px;
}

.homepage .site-header {
    position: sticky;
    top: 0;
    padding: 18px 0;
    background: rgba(248, 250, 252, 0.78);
    backdrop-filter: blur(18px);
    border-bottom: 1px solid rgba(255, 255, 255, 0.7);
    box-shadow: 0 8px 30px rgba(15, 23, 42, 0.04);
}

.homepage .homepage-header {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 24px;
}

.homepage .brandmark {
    display: inline-flex;
    align-items: center;
}

.homepage .site-logo {
    height: 42px;
    width: auto;
}

.homepage .homepage-nav {
    display: flex;
    align-items: center;
    gap: 26px;
}

.homepage .nav-item {
    color: var(--home-copy);
    font-size: 0.95rem;
    font-weight: 600;
    position: relative;
}

.homepage .nav-item::after {
    content: "";
    position: absolute;
    left: 0;
    bottom: -8px;
    width: 100%;
    height: 2px;
    border-radius: 999px;
    background: linear-gradient(90deg, var(--home-accent), var(--home-teal));
    transform: scaleX(0);
    transform-origin: left;
    transition: transform 0.22s ease;
}

.homepage .nav-item:hover {
    color: var(--home-ink);
}

.homepage .nav-item:hover::after {
    transform: scaleX(1);
}

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

.homepage .btn {
    border-radius: 999px;
    font-weight: 700;
    letter-spacing: -0.01em;
    transition: transform 0.22s ease, box-shadow 0.22s ease, border-color 0.22s ease, background 0.22s ease, color 0.22s ease;
}

.homepage .btn:hover {
    transform: translateY(-2px);
}

.homepage .btn-primary {
    background: linear-gradient(135deg, var(--home-accent) 0%, #ff964f 100%);
    color: white;
    border: 1px solid transparent;
    box-shadow: 0 16px 30px rgba(255, 122, 48, 0.24);
}

.homepage .btn-primary:hover {
    background: linear-gradient(135deg, var(--home-accent-strong) 0%, var(--home-accent) 100%);
}

.homepage .btn-secondary {
    background: rgba(255, 255, 255, 0.8);
    color: var(--home-ink);
    border: 1px solid var(--home-line);
    box-shadow: 0 10px 22px rgba(15, 23, 42, 0.04);
}

.homepage .btn-secondary:hover {
    border-color: rgba(20, 157, 141, 0.3);
    color: var(--home-ink);
}

.homepage .btn-large {
    padding: 16px 26px;
    font-size: 1rem;
}

.homepage .mobile-menu-toggle {
    display: none;
    border: 1px solid var(--home-line);
    background: rgba(255, 255, 255, 0.82);
    border-radius: 14px;
    width: 48px;
    height: 48px;
    align-items: center;
    justify-content: center;
    gap: 5px;
    box-shadow: 0 10px 22px rgba(15, 23, 42, 0.04);
}

.homepage .mobile-menu-toggle span {
    width: 18px;
    height: 2px;
    background: var(--home-ink);
    border-radius: 999px;
}

.homepage .home-hero {
    padding: 72px 0 48px;
    position: relative;
    overflow: clip;
}

.homepage .home-hero::before {
    content: "";
    position: absolute;
    inset: 48px auto auto 50%;
    width: 44rem;
    height: 44rem;
    transform: translateX(-10%);
    border-radius: 999px;
    background: radial-gradient(circle, rgba(19, 34, 56, 0.07), transparent 62%);
    pointer-events: none;
}

.homepage .home-hero-grid {
    display: grid;
    grid-template-columns: minmax(0, 1.03fr) minmax(320px, 0.97fr);
    gap: 48px;
    align-items: center;
}

.homepage .hero-copy {
    position: relative;
    z-index: 1;
}

.homepage .eyebrow {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 8px 14px;
    border-radius: 999px;
    background: rgba(20, 157, 141, 0.1);
    color: var(--home-teal);
    font-size: 0.78rem;
    font-weight: 800;
    letter-spacing: 0.08em;
    text-transform: uppercase;
}

.homepage .eyebrow-light {
    background: rgba(255, 255, 255, 0.12);
    color: #b3f2e8;
}

.homepage .hero-copy h1 {
    margin-top: 22px;
    font-size: clamp(2.7rem, 5vw, 4.7rem);
    line-height: 1.02;
    letter-spacing: -0.05em;
    max-width: 11ch;
}

.homepage .hero-description {
    margin-top: 22px;
    font-size: 1.08rem;
    line-height: 1.85;
    max-width: 60ch;
}

.homepage .hero-actions {
    display: flex;
    align-items: center;
    flex-wrap: wrap;
    gap: 14px;
    margin-top: 30px;
}

.homepage .hero-proof-grid {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 14px;
    margin-top: 34px;
}

.homepage .proof-card {
    padding: 18px;
    border-radius: 22px;
    background: rgba(255, 255, 255, 0.78);
    border: 1px solid rgba(255, 255, 255, 0.9);
    box-shadow: 0 18px 36px rgba(15, 23, 42, 0.06);
}

.homepage .proof-card strong {
    display: block;
    margin-top: 10px;
    color: var(--home-ink);
    font-size: 0.96rem;
    line-height: 1.55;
}

.homepage .proof-label {
    font-size: 0.74rem;
    font-weight: 800;
    letter-spacing: 0.08em;
    text-transform: uppercase;
    color: var(--home-muted);
}

.homepage .hero-stage {
    position: relative;
    z-index: 1;
}

.homepage .hero-stage-card {
    position: relative;
    padding: 26px;
    border-radius: 34px;
    background: linear-gradient(180deg, #12233b 0%, #0e1726 100%);
    box-shadow: 0 40px 80px rgba(15, 23, 42, 0.22);
    overflow: hidden;
}

.homepage .hero-stage-card::after {
    content: "";
    position: absolute;
    inset: auto -8% -20% auto;
    width: 14rem;
    height: 14rem;
    border-radius: 999px;
    background: radial-gradient(circle, rgba(255, 122, 48, 0.3), transparent 65%);
}

.homepage .stage-kicker {
    display: inline-flex;
    padding: 8px 12px;
    border-radius: 999px;
    background: rgba(255, 255, 255, 0.12);
    color: #d8e6f5;
    font-size: 0.76rem;
    font-weight: 800;
    letter-spacing: 0.08em;
    text-transform: uppercase;
}

.homepage .hero-stage-card h2 {
    margin-top: 16px;
    color: white;
    font-size: clamp(1.5rem, 2vw, 2.1rem);
    line-height: 1.25;
    max-width: 15ch;
}

.homepage .hero-stage-image {
    position: relative;
    z-index: 1;
    margin-top: 24px;
    border-radius: 24px;
    border: 1px solid rgba(255, 255, 255, 0.08);
    box-shadow: 0 24px 48px rgba(0, 0, 0, 0.2);
}

.homepage .floating-note {
    position: absolute;
    max-width: 250px;
    padding: 14px 16px;
    border-radius: 18px;
    background: rgba(255, 255, 255, 0.92);
    border: 1px solid rgba(255, 255, 255, 0.92);
    box-shadow: 0 20px 34px rgba(15, 23, 42, 0.12);
    color: var(--home-copy);
    font-size: 0.9rem;
    line-height: 1.55;
}

.homepage .note-tag {
    display: block;
    margin-bottom: 6px;
    color: var(--home-teal);
    font-size: 0.72rem;
    font-weight: 800;
    letter-spacing: 0.08em;
    text-transform: uppercase;
}

.homepage .note-top {
    top: 32px;
    left: -38px;
    animation: homepageFloat 5.8s ease-in-out infinite;
}

.homepage .note-bottom {
    right: -22px;
    bottom: 34px;
    animation: homepageFloat 6.3s ease-in-out infinite reverse;
}

.homepage .section-shell {
    padding: clamp(76px, 10vw, 120px) 0;
    position: relative;
}

.homepage .section-surface {
    background: linear-gradient(180deg, rgba(244, 247, 251, 0.92) 0%, rgba(255, 255, 255, 0.98) 100%);
}

.homepage .section-contrast {
    background: linear-gradient(135deg, #132238 0%, #1a2c44 100%);
    color: white;
}

.homepage .section-heading {
    display: flex;
    justify-content: space-between;
    align-items: end;
    gap: 32px;
    margin-bottom: 34px;
}

.homepage .section-heading.centered {
    align-items: center;
    text-align: center;
    flex-direction: column;
    margin-bottom: 42px;
}

.homepage .section-heading h2 {
    font-size: clamp(2rem, 3vw, 3rem);
    line-height: 1.08;
    letter-spacing: -0.045em;
    max-width: 13ch;
    margin-top: 14px;
}

.homepage .section-heading.centered h2 {
    max-width: 16ch;
}

.homepage .section-heading p {
    max-width: 54ch;
    font-size: 1rem;
    line-height: 1.8;
}

.homepage .signal-grid,
.homepage .feature-grid-v2,
.homepage .outcome-grid {
    display: grid;
    gap: 20px;
}

.homepage .signal-grid {
    grid-template-columns: repeat(4, minmax(0, 1fr));
}

.homepage .signal-card,
.homepage .feature-card-v2,
.homepage .outcome-card {
    padding: 24px;
    border-radius: 26px;
    background: rgba(255, 255, 255, 0.92);
    border: 1px solid rgba(255, 255, 255, 0.95);
    box-shadow: 0 18px 36px rgba(15, 23, 42, 0.06);
    transition: transform 0.22s ease, box-shadow 0.22s ease, border-color 0.22s ease;
}

.homepage .signal-card:hover,
.homepage .feature-card-v2:hover,
.homepage .outcome-card:hover,
.homepage .timeline-card:hover,
.homepage .showcase-card-v2:hover {
    transform: translateY(-4px);
    box-shadow: 0 26px 48px rgba(15, 23, 42, 0.1);
}

.homepage .signal-label,
.homepage .outcome-kicker,
.homepage .showcase-label {
    display: inline-flex;
    padding: 7px 11px;
    border-radius: 999px;
    background: rgba(20, 157, 141, 0.1);
    color: var(--home-teal);
    font-size: 0.74rem;
    font-weight: 800;
    letter-spacing: 0.08em;
    text-transform: uppercase;
}

.homepage .signal-card h3,
.homepage .feature-card-v2 h3,
.homepage .outcome-card h3,
.homepage .timeline-card h3,
.homepage .showcase-copy-v2 h3 {
    margin-top: 16px;
    font-size: 1.28rem;
    line-height: 1.35;
    letter-spacing: -0.03em;
}

.homepage .signal-card p,
.homepage .feature-card-v2 p,
.homepage .outcome-card p,
.homepage .timeline-card p,
.homepage .showcase-copy-v2 p {
    margin-top: 12px;
    font-size: 0.97rem;
    line-height: 1.75;
}

.homepage .signal-meter {
    height: 10px;
    margin-top: 20px;
    border-radius: 999px;
    background: #dce6ee;
    overflow: hidden;
}

.homepage .signal-meter span {
    display: block;
    height: 100%;
    border-radius: inherit;
    background: linear-gradient(90deg, var(--home-teal), var(--home-accent));
}

.homepage .signal-caption {
    margin-top: 12px;
    font-size: 0.82rem;
    font-weight: 700;
    color: var(--home-muted);
}

.homepage .feature-grid-v2 {
    grid-template-columns: repeat(3, minmax(0, 1fr));
}

.homepage .feature-index {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 44px;
    height: 44px;
    border-radius: 14px;
    background: linear-gradient(135deg, rgba(255, 122, 48, 0.18), rgba(20, 157, 141, 0.16));
    color: var(--home-ink);
    font-size: 0.95rem;
    font-weight: 800;
    letter-spacing: -0.03em;
}

.homepage .workflow-grid {
    display: grid;
    grid-template-columns: minmax(0, 0.92fr) minmax(0, 1.08fr);
    gap: 34px;
    align-items: start;
}

.homepage .section-contrast h2,
.homepage .section-contrast h3,
.homepage .section-contrast p,
.homepage .section-contrast strong,
.homepage .section-contrast span {
    color: inherit;
}

.homepage .workflow-copy h2 {
    margin-top: 16px;
    color: white;
    font-size: clamp(2rem, 3vw, 3rem);
    line-height: 1.08;
}

.homepage .workflow-copy > p {
    margin-top: 18px;
    color: rgba(237, 245, 250, 0.78);
    line-height: 1.85;
}

.homepage .workflow-points {
    display: grid;
    gap: 16px;
    margin-top: 26px;
}

.homepage .workflow-point {
    padding: 18px 20px;
    border-radius: 20px;
    background: rgba(255, 255, 255, 0.08);
    border: 1px solid rgba(255, 255, 255, 0.08);
}

.homepage .workflow-point strong {
    display: block;
    font-size: 0.95rem;
    color: white;
}

.homepage .workflow-point span {
    display: block;
    margin-top: 8px;
    font-size: 0.92rem;
    line-height: 1.65;
    color: rgba(237, 245, 250, 0.72);
}

.homepage .workflow-steps {
    display: grid;
    gap: 18px;
}

.homepage .timeline-card {
    position: relative;
    padding: 22px 22px 22px 84px;
    border-radius: 24px;
    background: rgba(255, 255, 255, 0.08);
    border: 1px solid rgba(255, 255, 255, 0.1);
    box-shadow: 0 20px 36px rgba(0, 0, 0, 0.08);
    transition: transform 0.22s ease, box-shadow 0.22s ease;
}

.homepage .timeline-index {
    position: absolute;
    left: 20px;
    top: 20px;
    width: 48px;
    height: 48px;
    border-radius: 16px;
    background: linear-gradient(135deg, rgba(255, 122, 48, 0.94), rgba(20, 157, 141, 0.9));
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-size: 0.95rem;
    font-weight: 800;
}

.homepage .showcase-stack {
    display: grid;
    gap: 24px;
}

.homepage .showcase-card-v2 {
    display: grid;
    grid-template-columns: minmax(0, 0.95fr) minmax(320px, 1.05fr);
    gap: 26px;
    align-items: center;
    padding: 26px;
    border-radius: 30px;
    background: linear-gradient(180deg, rgba(255, 255, 255, 0.98) 0%, rgba(245, 248, 252, 0.96) 100%);
    border: 1px solid var(--home-line);
    box-shadow: var(--home-shadow);
    transition: transform 0.22s ease, box-shadow 0.22s ease;
}

.homepage .showcase-card-v2.reverse {
    grid-template-columns: minmax(320px, 1.05fr) minmax(0, 0.95fr);
}

.homepage .showcase-card-v2.reverse .showcase-copy-v2 {
    order: 2;
}

.homepage .showcase-card-v2.reverse .showcase-media-v2 {
    order: 1;
}

.homepage .showcase-copy-v2 p {
    max-width: 52ch;
}

.homepage .showcase-media-v2 {
    border-radius: 24px;
    overflow: hidden;
    border: 1px solid rgba(16, 32, 51, 0.08);
    box-shadow: 0 18px 36px rgba(15, 23, 42, 0.08);
}

.homepage .showcase-media-v2 img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.homepage .check-list {
    display: grid;
    gap: 10px;
    margin-top: 18px;
}

.homepage .check-list li {
    position: relative;
    padding-left: 28px;
    color: var(--home-copy);
    font-size: 0.95rem;
    line-height: 1.65;
}

.homepage .check-list li::before {
    content: "";
    position: absolute;
    left: 0;
    top: 8px;
    width: 14px;
    height: 14px;
    border-radius: 50%;
    background: linear-gradient(135deg, var(--home-teal), var(--home-accent));
    box-shadow: 0 0 0 4px rgba(20, 157, 141, 0.12);
}

.homepage .outcome-grid {
    grid-template-columns: repeat(4, minmax(0, 1fr));
}

.homepage .faq-container {
    max-width: 860px;
    margin: 0 auto;
    display: grid;
    gap: 14px;
}

.homepage .faq-item {
    border-radius: 22px;
    border: 1px solid var(--home-line);
    background: rgba(255, 255, 255, 0.92);
    box-shadow: 0 16px 30px rgba(15, 23, 42, 0.05);
    overflow: hidden;
}

.homepage .faq-question {
    width: 100%;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 16px;
    padding: 20px 22px;
    cursor: pointer;
    color: var(--home-ink);
    font-size: 1rem;
    font-weight: 700;
}

.homepage .faq-icon {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 32px;
    height: 32px;
    border-radius: 50%;
    background: var(--home-wash);
    color: var(--home-ink);
    font-size: 1.1rem;
    font-weight: 700;
    flex-shrink: 0;
}

.homepage .faq-answer {
    max-height: 0;
    overflow: hidden;
    padding: 0 22px;
    color: var(--home-copy);
    font-size: 0.96rem;
    line-height: 1.75;
    transition: max-height 0.24s ease, padding 0.24s ease;
}

.homepage .faq-item.active .faq-answer {
    max-height: 240px;
    padding: 0 22px 20px;
}

.homepage .faq-item.active .faq-icon {
    background: rgba(20, 157, 141, 0.12);
    color: var(--home-teal);
}

.homepage .cta-panel {
    display: grid;
    grid-template-columns: minmax(0, 1.05fr) minmax(300px, 0.95fr);
    gap: 28px;
    align-items: center;
    padding: 34px;
    border-radius: 34px;
    background:
        radial-gradient(circle at top right, rgba(20, 157, 141, 0.18), transparent 18rem),
        radial-gradient(circle at bottom left, rgba(255, 122, 48, 0.18), transparent 20rem),
        linear-gradient(135deg, #132238 0%, #172a45 100%);
    box-shadow: 0 28px 64px rgba(15, 23, 42, 0.18);
}

.homepage .cta-copy h2 {
    margin-top: 14px;
    color: white;
    font-size: clamp(2rem, 3vw, 3rem);
    line-height: 1.08;
}

.homepage .cta-copy p {
    margin-top: 18px;
    color: rgba(237, 245, 250, 0.78);
    line-height: 1.82;
    max-width: 54ch;
}

.homepage .cta-actions {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    gap: 14px;
}

.homepage .store-buttons {
    display: flex;
    flex-wrap: wrap;
    gap: 12px;
}

.homepage .store-btn {
    display: inline-flex;
    align-items: center;
    gap: 14px;
    padding: 14px 18px;
    border-radius: 20px;
    background: rgba(255, 255, 255, 0.94);
    color: var(--home-ink);
    border: 1px solid rgba(255, 255, 255, 0.95);
    box-shadow: 0 12px 24px rgba(15, 23, 42, 0.1);
}

.homepage .store-btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 18px 28px rgba(15, 23, 42, 0.12);
}

.homepage .store-icon {
    width: 24px;
    height: 24px;
    fill: currentColor;
}

.homepage .store-text-group {
    display: flex;
    flex-direction: column;
    gap: 2px;
}

.homepage .store-tiny {
    font-size: 0.72rem;
    font-weight: 700;
    color: var(--home-muted);
}

.homepage .store-large {
    font-size: 1rem;
    font-weight: 800;
    color: var(--home-ink);
}

.homepage .cta-note {
    color: rgba(237, 245, 250, 0.68);
    font-size: 0.9rem;
    font-weight: 700;
}

.homepage .homepage-footer {
    margin-top: 28px;
    padding: 0 0 44px;
    background: transparent;
    color: var(--home-copy);
}

.homepage .footer-shell {
    display: grid;
    grid-template-columns: minmax(0, 1fr) minmax(0, 1.1fr);
    gap: 34px;
    padding: 28px 0 22px;
    border-top: 1px solid var(--home-line);
}

.homepage .footer-brand-block p {
    margin-top: 16px;
    max-width: 46ch;
    line-height: 1.78;
}

.homepage .footer-logo {
    height: 42px;
    filter: none;
}

.homepage .footer-columns {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 18px;
}

.homepage .footer-col h4 {
    font-size: 0.92rem;
    letter-spacing: -0.02em;
}

.homepage .footer-links {
    display: grid;
    gap: 10px;
    margin-top: 14px;
}

.homepage .footer-links a {
    color: var(--home-copy);
    font-weight: 600;
}

.homepage .footer-links a:hover {
    color: var(--home-ink);
}

.homepage .footer-disclaimer {
    padding: 18px 22px;
    border-radius: 22px;
    background: rgba(255, 255, 255, 0.92);
    border: 1px solid var(--home-line);
    color: var(--home-muted);
    font-size: 0.86rem;
    line-height: 1.75;
}

.homepage .footer-bottom {
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 14px;
    margin-top: 18px;
    color: var(--home-muted);
    font-size: 0.88rem;
    font-weight: 700;
}

@keyframes homepageFloat {
    0%, 100% {
        transform: translateY(0);
    }
    50% {
        transform: translateY(-10px);
    }
}

@media (max-width: 1100px) {
    .homepage .home-hero-grid,
    .homepage .workflow-grid,
    .homepage .cta-panel,
    .homepage .footer-shell,
    .homepage .showcase-card-v2,
    .homepage .showcase-card-v2.reverse {
        grid-template-columns: 1fr;
    }

    .homepage .showcase-card-v2.reverse .showcase-copy-v2,
    .homepage .showcase-card-v2.reverse .showcase-media-v2 {
        order: initial;
    }

    .homepage .signal-grid,
    .homepage .outcome-grid {
        grid-template-columns: repeat(2, minmax(0, 1fr));
    }

    .homepage .feature-grid-v2 {
        grid-template-columns: repeat(2, minmax(0, 1fr));
    }

    .homepage .hero-stage {
        max-width: 720px;
        margin: 0 auto;
    }

    .homepage .note-top {
        left: 16px;
    }

    .homepage .note-bottom {
        right: 12px;
    }
}

@media (max-width: 960px) {
    .homepage .homepage-nav {
        display: none;
        position: absolute;
        top: calc(100% + 10px);
        left: 24px;
        right: 24px;
        padding: 18px;
        border-radius: 24px;
        background: rgba(255, 255, 255, 0.96);
        border: 1px solid var(--home-line);
        box-shadow: 0 24px 48px rgba(15, 23, 42, 0.1);
        flex-direction: column;
        align-items: flex-start;
        gap: 16px;
    }

    .homepage .homepage-nav.open {
        display: flex;
    }

    .homepage .mobile-menu-toggle {
        display: inline-flex;
    }

    .homepage .header-actions .btn-secondary {
        display: none;
    }

    .homepage .hero-proof-grid {
        grid-template-columns: 1fr;
    }
}

@media (max-width: 720px) {
    .homepage .home-hero {
        padding-top: 44px;
    }

    .homepage .section-shell {
        padding: 72px 0;
    }

    .homepage .section-heading {
        flex-direction: column;
        align-items: flex-start;
        margin-bottom: 30px;
    }

    .homepage .section-heading.centered {
        align-items: center;
    }

    .homepage .signal-grid,
    .homepage .feature-grid-v2,
    .homepage .outcome-grid {
        grid-template-columns: 1fr;
    }

    .homepage .hero-copy h1,
    .homepage .section-heading h2,
    .homepage .workflow-copy h2,
    .homepage .cta-copy h2 {
        max-width: none;
    }

    .homepage .hero-stage-card,
    .homepage .signal-card,
    .homepage .feature-card-v2,
    .homepage .timeline-card,
    .homepage .showcase-card-v2,
    .homepage .outcome-card,
    .homepage .cta-panel {
        border-radius: 24px;
    }

    .homepage .hero-stage-card,
    .homepage .showcase-card-v2,
    .homepage .cta-panel {
        padding: 20px;
    }

    .homepage .floating-note {
        position: static;
        max-width: none;
        margin-top: 14px;
        animation: none;
    }

    .homepage .store-buttons {
        width: 100%;
        flex-direction: column;
    }

    .homepage .store-btn {
        width: 100%;
        justify-content: center;
    }

    .homepage .footer-columns {
        grid-template-columns: 1fr;
    }

    .homepage .footer-bottom {
        flex-direction: column;
        align-items: flex-start;
    }
}
