/* === Reset & Base === */
*, *::before, *::after {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

:root {
    --bg: #0a0f0d;
    --bg-card: #1a2520;
    --bg-elevated: #1e2e26;
    --green: #22c55e;
    --green-dim: rgba(34, 197, 94, 0.15);
    --amber: #f59e0b;
    --text: #e8ece9;
    --text-muted: #8a9b8f;
    --radius: 12px;
    --max-w: 1080px;
}

html {
    scroll-behavior: smooth;
}

body {
    font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, Oxygen, Ubuntu, Cantarell, sans-serif;
    background: var(--bg);
    color: var(--text);
    line-height: 1.6;
    -webkit-font-smoothing: antialiased;
}

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

h1, h2, h3 {
    line-height: 1.2;
}

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

/* === Nav === */
.nav {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 100;
    background: rgba(10, 15, 13, 0.85);
    backdrop-filter: blur(12px);
    -webkit-backdrop-filter: blur(12px);
    border-bottom: 1px solid rgba(34, 197, 94, 0.1);
}

.nav-inner {
    display: flex;
    align-items: center;
    justify-content: space-between;
    height: 64px;
}

.logo {
    font-size: 1.25rem;
    font-weight: 700;
    letter-spacing: -0.02em;
}

.logo span {
    color: var(--green);
}

.logo-sm {
    font-size: 1rem;
}

.nav-links {
    display: flex;
    align-items: center;
    gap: 8px;
}

.nav-link {
    font-size: 0.875rem;
    font-weight: 500;
    color: var(--text-muted);
    padding: 8px 16px;
    transition: color 0.2s;
}

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

.nav-cta {
    font-size: 0.875rem;
    font-weight: 600;
    color: var(--green);
    border: 1px solid rgba(34, 197, 94, 0.3);
    padding: 8px 20px;
    border-radius: 8px;
    transition: background 0.2s, border-color 0.2s;
}

.nav-cta:hover {
    background: var(--green-dim);
    border-color: var(--green);
}

/* === Buttons === */
.btn {
    display: inline-block;
    font-size: 1rem;
    font-weight: 600;
    padding: 14px 32px;
    border-radius: 10px;
    border: none;
    cursor: pointer;
    transition: transform 0.2s, box-shadow 0.2s, background 0.2s;
}

.btn-primary {
    background: var(--green);
    color: #0a0f0d;
}

.btn-primary:hover {
    transform: translateY(-1px);
    box-shadow: 0 8px 24px rgba(34, 197, 94, 0.3);
}

.btn-primary:active {
    transform: translateY(0);
}

.btn-outline {
    background: transparent;
    color: var(--green);
    border: 1px solid rgba(34, 197, 94, 0.3);
    padding: 12px 28px;
    font-size: 0.9375rem;
}

.btn-outline:hover {
    background: var(--green-dim);
    border-color: var(--green);
    transform: translateY(-1px);
}

/* === Hero === */
.hero {
    padding: 140px 0 80px;
    min-height: 80vh;
    display: flex;
    align-items: center;
}

.hero .container {
    display: flex;
    align-items: center;
    gap: 60px;
}

.hero-content {
    flex: 1;
}

.hero h1 {
    font-size: clamp(2rem, 5vw, 3.25rem);
    font-weight: 800;
    letter-spacing: -0.03em;
    margin-bottom: 20px;
}

.hero-sub {
    font-size: 1.125rem;
    color: var(--text-muted);
    max-width: 520px;
    margin-bottom: 32px;
}

.hero-visual {
    flex-shrink: 0;
    width: 420px;
}

/* === Hero Video === */
.hero-video-wrap {
    position: relative;
    background: var(--bg-card);
    border: 1px solid rgba(34, 197, 94, 0.25);
    border-radius: 14px;
    padding: 8px;
    box-shadow: 0 20px 60px rgba(34, 197, 94, 0.12), 0 0 0 1px rgba(34, 197, 94, 0.03);
    overflow: hidden;
}
.hero-video {
    width: 100%;
    height: auto;
    display: block;
    border-radius: 8px;
    background: #0a0f0d;
}
.hero-video-tag {
    position: absolute;
    top: -10px;
    left: 20px;
    background: var(--green);
    color: #0a0f0d;
    font-size: 0.65rem;
    font-weight: 800;
    letter-spacing: 1.5px;
    padding: 5px 10px;
    border-radius: 4px;
    box-shadow: 0 4px 12px rgba(34, 197, 94, 0.3);
    z-index: 2;
}

/* === Freeze-frame overlays === */
.freeze-overlays {
    position: absolute;
    inset: 8px;
    border-radius: 8px;
    pointer-events: none;
    opacity: 0;
    transition: opacity 0.25s ease-out;
    z-index: 3;
}
.freeze-overlays.show {
    opacity: 1;
}
/* Subtle darken the video during freeze for focus */
.freeze-overlays.show::before {
    content: '';
    position: absolute;
    inset: 0;
    background: rgba(0, 0, 0, 0.25);
    border-radius: 8px;
    animation: freezeFadeIn 0.3s ease-out;
}
@keyframes freezeFadeIn {
    from { opacity: 0; }
    to   { opacity: 1; }
}

/* Top center label */
.freeze-top-label {
    position: absolute;
    top: 14px;
    left: 50%;
    transform: translateX(-50%);
    display: inline-flex;
    align-items: center;
    gap: 6px;
    padding: 5px 12px;
    font-size: 0.65rem;
    font-weight: 800;
    letter-spacing: 2px;
    color: #0a0f0d;
    background: #f59e0b;
    border-radius: 4px;
    box-shadow: 0 4px 12px rgba(245, 158, 11, 0.35);
    opacity: 0;
    animation: freezeLabelIn 0.4s ease-out forwards;
}
.freeze-dot {
    width: 6px;
    height: 6px;
    border-radius: 50%;
    background: #0a0f0d;
    animation: dotPulse 1s ease-in-out infinite;
}
@keyframes dotPulse {
    0%, 100% { opacity: 1; }
    50%      { opacity: 0.3; }
}
@keyframes freezeLabelIn {
    from { opacity: 0; transform: translateX(-50%) translateY(-4px); }
    to   { opacity: 1; transform: translateX(-50%) translateY(0); }
}

/* Angle callout (pill + line) */
.angle-callout {
    position: absolute;
    transform: translate(-50%, -50%);
    opacity: 0;
}
.freeze-overlays.show .angle-callout {
    animation: angleIn 0.45s cubic-bezier(.2,.7,.3,1.1) forwards;
}
.freeze-overlays.show .angle-1 { animation-delay: 0.20s; }
.freeze-overlays.show .angle-2 { animation-delay: 0.45s; }
.freeze-overlays.show .angle-3 { animation-delay: 0.70s; }
.freeze-overlays.show .angle-4 { animation-delay: 0.95s; }
@keyframes angleIn {
    from { opacity: 0; transform: translate(-50%, -50%) scale(0.85); }
    to   { opacity: 1; transform: translate(-50%, -50%) scale(1); }
}

.angle-line {
    position: absolute;
    left: 50%;
    top: 50%;
    width: 10px;
    height: 10px;
    border-radius: 50%;
    transform: translate(-50%, -50%);
    pointer-events: none;
}
.angle-pill {
    font-size: 0.72rem;
    font-weight: 600;
    letter-spacing: 0.2px;
    padding: 5px 10px;
    border-radius: 999px;
    backdrop-filter: blur(4px);
    -webkit-backdrop-filter: blur(4px);
    white-space: nowrap;
    font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
}
.angle-pill strong {
    font-weight: 800;
    margin-left: 2px;
}
.angle-pill.amber {
    background: rgba(245, 158, 11, 0.92);
    color: #0a0f0d;
    border: 1px solid rgba(245, 158, 11, 1);
    box-shadow: 0 4px 14px rgba(245, 158, 11, 0.35);
}
.angle-pill.green {
    background: rgba(34, 197, 94, 0.92);
    color: #0a0f0d;
    border: 1px solid rgba(34, 197, 94, 1);
    box-shadow: 0 4px 14px rgba(34, 197, 94, 0.35);
}
.angle-1 .angle-line {
    background: #f59e0b;
    box-shadow: 0 0 0 3px rgba(245, 158, 11, 0.25), 0 0 12px rgba(245, 158, 11, 0.8);
}
.angle-2 .angle-line {
    background: #f59e0b;
    box-shadow: 0 0 0 3px rgba(245, 158, 11, 0.25), 0 0 12px rgba(245, 158, 11, 0.8);
}
.angle-3 .angle-line {
    background: #22c55e;
    box-shadow: 0 0 0 3px rgba(34, 197, 94, 0.25), 0 0 12px rgba(34, 197, 94, 0.8);
}
.angle-4 .angle-line {
    background: #22c55e;
    box-shadow: 0 0 0 3px rgba(34, 197, 94, 0.25), 0 0 12px rgba(34, 197, 94, 0.8);
}
/* Pill positioning relative to the dot */
.angle-1 .angle-pill { position: absolute; left: 24px; top: 50%; transform: translateY(-50%); }
.angle-2 .angle-pill { position: absolute; left: 24px; top: 50%; transform: translateY(-50%); }
.angle-3 .angle-pill { position: absolute; right: 24px; top: 50%; transform: translateY(-50%); }
.angle-4 .angle-pill { position: absolute; left: 24px; top: 50%; transform: translateY(-50%); }

/* === (Unused) Dashboard === */
.dash {
    position: relative;
    background: linear-gradient(180deg, #101a16 0%, #0c1411 100%);
    border: 1px solid rgba(34, 197, 94, 0.2);
    border-radius: 14px;
    padding: 0;
    box-shadow:
        0 30px 80px rgba(34, 197, 94, 0.1),
        0 10px 30px rgba(0, 0, 0, 0.5),
        0 0 0 1px rgba(255, 255, 255, 0.02) inset;
    overflow: hidden;
    font-family: "SF Mono", "Monaco", "Courier New", monospace;
}

/* Top window-chrome-style bar */
.dash-top {
    display: flex;
    align-items: center;
    gap: 12px;
    padding: 10px 14px;
    background: rgba(255, 255, 255, 0.02);
    border-bottom: 1px solid rgba(34, 197, 94, 0.1);
}
.dash-dots {
    display: flex;
    gap: 6px;
}
.dash-dots span {
    width: 11px;
    height: 11px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.15);
}
.dash-dots span:nth-child(1) { background: #ff5f57; opacity: 0.7; }
.dash-dots span:nth-child(2) { background: #febc2e; opacity: 0.7; }
.dash-dots span:nth-child(3) { background: #28c840; opacity: 0.7; }
.dash-title {
    flex: 1;
    text-align: center;
    font-size: 0.72rem;
    letter-spacing: 0.5px;
    color: rgba(255, 255, 255, 0.55);
    font-weight: 500;
}
.dash-live {
    display: inline-flex;
    align-items: center;
    gap: 5px;
    font-size: 0.6rem;
    font-weight: 700;
    letter-spacing: 1.5px;
    color: var(--green);
    padding: 3px 8px;
    background: rgba(34, 197, 94, 0.1);
    border: 1px solid rgba(34, 197, 94, 0.25);
    border-radius: 4px;
}
.dash-live-dot {
    width: 6px;
    height: 6px;
    border-radius: 50%;
    background: var(--green);
    box-shadow: 0 0 6px var(--green);
    animation: dashPulse 1.4s ease-in-out infinite;
}
@keyframes dashPulse {
    0%, 100% { opacity: 1; transform: scale(1); }
    50%      { opacity: 0.5; transform: scale(0.85); }
}

/* Phase progress tabs */
.dash-phases {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 6px;
    padding: 12px 14px;
    background: rgba(0, 0, 0, 0.2);
}
.phase-tab {
    display: flex;
    align-items: center;
    gap: 6px;
    padding: 7px 9px;
    background: rgba(255, 255, 255, 0.025);
    border: 1px solid rgba(255, 255, 255, 0.06);
    border-radius: 6px;
    transition: all 0.4s ease;
    position: relative;
    overflow: hidden;
}
.phase-tab.active {
    background: rgba(34, 197, 94, 0.12);
    border-color: rgba(34, 197, 94, 0.4);
    box-shadow: 0 0 16px rgba(34, 197, 94, 0.15);
}
.phase-tab.active::before {
    content: '';
    position: absolute;
    left: 0; top: 0; bottom: 0;
    width: 2px;
    background: var(--green);
}
.phase-num {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 18px;
    height: 18px;
    font-size: 0.6rem;
    font-weight: 700;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.08);
    color: rgba(255, 255, 255, 0.5);
    transition: all 0.4s ease;
    flex-shrink: 0;
}
.phase-tab.active .phase-num {
    background: var(--green);
    color: #0a0f0d;
}
.phase-name {
    font-size: 0.7rem;
    font-weight: 500;
    color: rgba(255, 255, 255, 0.55);
    transition: color 0.4s ease;
    font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
    letter-spacing: -0.2px;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
}
.phase-tab.active .phase-name {
    color: #fff;
}

/* Phase visual area */
.dash-view {
    position: relative;
    width: 100%;
    aspect-ratio: 640 / 480;
    background: #0a1310;
    overflow: hidden;
}
.phase-img {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    opacity: 0;
    transition: opacity 0.6s ease;
    display: block;
}
.phase-img.active {
    opacity: 1;
}

/* Bottom data bar */
.dash-footer {
    display: flex;
    align-items: center;
    gap: 10px;
    padding: 9px 14px;
    background: rgba(0, 0, 0, 0.3);
    border-top: 1px solid rgba(34, 197, 94, 0.1);
    font-size: 0.65rem;
    font-family: "SF Mono", "Monaco", "Courier New", monospace;
}
.dash-foot-label {
    color: rgba(255, 255, 255, 0.4);
    letter-spacing: 1px;
    font-weight: 600;
}
.dash-foot-metric {
    color: var(--green);
    font-weight: 700;
    letter-spacing: 0.3px;
}
.dash-foot-spacer {
    flex: 1;
}
.dash-foot-badge {
    color: rgba(255, 255, 255, 0.35);
    font-weight: 500;
    letter-spacing: 1px;
}

/* === Section Title === */
.section-title {
    font-size: clamp(1.5rem, 3.5vw, 2.25rem);
    font-weight: 700;
    text-align: center;
    margin-bottom: 48px;
    letter-spacing: -0.02em;
}

/* === Features === */
.features {
    padding: 80px 0;
    position: relative;
    overflow: hidden;
}

/* Background decorative elements */
.bg-decor {
    position: absolute;
    pointer-events: none;
    z-index: 0;
}

.bg-decor-stumps {
    width: 80px;
    right: 5%;
    top: 10%;
}

.bg-decor-ball {
    width: 150px;
    left: -30px;
    bottom: 5%;
}

.features .container {
    position: relative;
    z-index: 1;
}

.features-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 20px;
}

.feature-card {
    background: var(--bg-card);
    border: 1px solid rgba(34, 197, 94, 0.15);
    border-radius: var(--radius);
    padding: 32px;
    transition: border-color 0.3s, transform 0.3s;
}

.feature-card:hover {
    border-color: rgba(34, 197, 94, 0.25);
    transform: translateY(-2px);
}

.feature-icon {
    width: 48px;
    height: 48px;
    background: var(--green-dim);
    border-radius: 10px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 16px;
}

.feature-card h3 {
    font-size: 1.125rem;
    font-weight: 600;
    margin-bottom: 8px;
}

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

/* === How It Works === */
.how-it-works {
    padding: 80px 0;
    background: var(--bg-card);
}

.steps {
    display: flex;
    align-items: flex-start;
    justify-content: center;
    gap: 0;
}

.step {
    text-align: center;
    flex: 1;
    max-width: 260px;
    padding: 0 20px;
}

.step-illustration {
    width: 80px;
    height: 80px;
    margin: 0 auto 12px;
}

.step-illustration svg {
    width: 100%;
    height: 100%;
}

.step-number {
    width: 48px;
    height: 48px;
    border-radius: 50%;
    background: var(--green);
    color: #0a0f0d;
    font-size: 1.25rem;
    font-weight: 700;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 16px;
}

.step h3 {
    font-size: 1.125rem;
    font-weight: 600;
    margin-bottom: 8px;
}

.step p {
    font-size: 0.9375rem;
    color: var(--text-muted);
}

.step-connector {
    width: 60px;
    height: 2px;
    background: linear-gradient(90deg, var(--green), transparent);
    margin-top: 23px;
    flex-shrink: 0;
}

/* === Persona Sections === */
.personas {
    padding: 80px 0;
}

.persona-block {
    background: var(--bg-card);
    border: 1px solid rgba(34, 197, 94, 0.12);
    border-radius: 16px;
    padding: 40px 36px;
    margin-bottom: 24px;
}

.persona-block:last-child {
    margin-bottom: 0;
}

.persona-header {
    margin-bottom: 24px;
}

.persona-icon {
    width: 56px;
    height: 56px;
    background: var(--green-dim);
    border-radius: 14px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 16px;
}

.persona-header h3 {
    font-size: 1.5rem;
    font-weight: 700;
    margin-bottom: 6px;
}

.persona-tagline {
    font-size: 1.0625rem;
    color: var(--text-muted);
}

.persona-benefits {
    list-style: none;
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 12px 32px;
}

.persona-benefits li {
    font-size: 0.9375rem;
    color: var(--text-muted);
    padding-left: 24px;
    position: relative;
    line-height: 1.5;
}

.persona-benefits li::before {
    content: '';
    position: absolute;
    left: 0;
    top: 7px;
    width: 8px;
    height: 8px;
    border-radius: 50%;
    background: var(--green);
    opacity: 0.6;
}

/* === Sample Report === */
.sample-report {
    padding: 80px 0;
    background: var(--bg-card);
}

.section-subtitle {
    text-align: center;
    color: var(--text-muted);
    max-width: 560px;
    margin: -32px auto 40px;
    font-size: 1.0625rem;
    line-height: 1.6;
}

.phase-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 16px;
    max-width: 760px;
    margin: 0 auto;
}

.phase-card {
    border-radius: 10px;
    overflow: hidden;
    border: 1px solid rgba(34, 197, 94, 0.15);
    transition: border-color 0.3s, transform 0.3s;
}

.phase-card:hover {
    border-color: rgba(34, 197, 94, 0.35);
    transform: translateY(-2px);
}

.phase-card img {
    width: 100%;
    height: auto;
    display: block;
}

/* Option A — dashboard-style report cards */
.report-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 16px;
    max-width: 1100px;
    margin: 0 auto;
}

.report-card {
    background: var(--bg-card);
    border: 1px solid rgba(255, 255, 255, 0.08);
    border-radius: 14px;
    padding: 18px;
    transition: border-color 0.3s, transform 0.3s;
}

.report-card:hover {
    border-color: rgba(34, 197, 94, 0.3);
    transform: translateY(-2px);
}

.report-tag {
    display: inline-block;
    font-size: 10px;
    letter-spacing: 0.1em;
    text-transform: uppercase;
    color: var(--text-muted);
    margin-bottom: 12px;
}

.report-score-ring {
    width: 110px;
    height: 110px;
    border-radius: 50%;
    background: conic-gradient(var(--green) 0 73%, rgba(255, 255, 255, 0.08) 0);
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
    margin: 14px auto 14px;
}

.report-score-ring::before {
    content: '';
    position: absolute;
    inset: 8px;
    border-radius: 50%;
    background: var(--bg-card);
}

.report-score-ring span {
    position: relative;
    font-size: 28px;
    font-weight: 700;
    color: var(--text);
}

.report-score-grade {
    font-size: 18px;
    font-weight: 600;
    color: var(--green);
    text-align: center;
    margin-bottom: 4px;
}

.report-score-sub {
    font-size: 11px;
    color: var(--text-muted);
    text-align: center;
}

.report-metric {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 7px 0;
    border-bottom: 1px solid rgba(255, 255, 255, 0.04);
    font-size: 12px;
}

.report-metric:last-child {
    border-bottom: 0;
}

.report-val {
    font-weight: 600;
    color: var(--text);
}

.report-pill {
    font-size: 9px;
    font-weight: 700;
    padding: 2px 6px;
    border-radius: 4px;
    letter-spacing: 0.05em;
    text-transform: uppercase;
    margin-left: 4px;
}

.report-pill.green { background: rgba(34, 197, 94, 0.15); color: var(--green); }
.report-pill.amber { background: rgba(245, 158, 11, 0.15); color: var(--amber); }
.report-pill.red   { background: rgba(239, 68, 68, 0.15);  color: #fca5a5; }

.report-phase {
    display: flex;
    justify-content: space-between;
    padding: 8px 0;
    border-bottom: 1px solid rgba(255, 255, 255, 0.04);
    font-size: 12px;
}

.report-phase:last-child {
    border-bottom: 0;
}

.report-phase-name {
    color: var(--text);
}

.report-phase-time {
    color: var(--text-muted);
    font-variant-numeric: tabular-nums;
}

.report-long {
    font-size: 11px;
    padding: 8px 10px;
    border-radius: 6px;
    margin-bottom: 8px;
    display: flex;
    gap: 8px;
    line-height: 1.4;
}

.report-long.amber {
    background: rgba(245, 158, 11, 0.1);
    border: 1px solid rgba(245, 158, 11, 0.2);
}

.report-long.green {
    background: rgba(34, 197, 94, 0.1);
    border: 1px solid rgba(34, 197, 94, 0.2);
}

.report-long-dot {
    width: 6px;
    height: 6px;
    border-radius: 50%;
    flex-shrink: 0;
    margin-top: 5px;
}

.report-long.amber .report-long-dot { background: var(--amber); }
.report-long.green .report-long-dot { background: var(--green); }

.report-long-sub {
    color: var(--text-muted);
}

@media (max-width: 900px) {
    .report-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

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

.report-cta-box {
    max-width: 600px;
    margin: 36px auto 0;
    text-align: center;
    background: var(--bg-elevated);
    border: 1px solid rgba(34, 197, 94, 0.12);
    border-radius: 16px;
    padding: 32px 28px;
}

.report-cta-box p {
    color: var(--text-muted);
    margin-bottom: 20px;
    font-size: 1rem;
}

.report-downloads {
    display: flex;
    gap: 12px;
    justify-content: center;
    flex-wrap: wrap;
    margin-bottom: 12px;
}

/* === Pricing === */
.pricing {
    padding: 80px 0;
}

.pricing-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 16px;
    margin-bottom: 32px;
}

.pricing-card {
    background: var(--bg-card);
    border: 1px solid rgba(34, 197, 94, 0.12);
    border-radius: 16px;
    padding: 32px 24px;
    display: flex;
    flex-direction: column;
    position: relative;
}

.pricing-card-featured {
    border-color: var(--green);
    box-shadow: 0 0 40px rgba(34, 197, 94, 0.1);
}

.pricing-badge {
    position: absolute;
    top: -12px;
    left: 50%;
    transform: translateX(-50%);
    background: var(--green);
    color: #0a0f0d;
    font-size: 0.75rem;
    font-weight: 700;
    padding: 4px 16px;
    border-radius: 20px;
    white-space: nowrap;
    text-transform: uppercase;
    letter-spacing: 0.04em;
}

.pricing-tier {
    font-size: 1.125rem;
    font-weight: 700;
    margin-bottom: 12px;
}

.pricing-price {
    font-size: 2rem;
    font-weight: 800;
    margin-bottom: 8px;
    letter-spacing: -0.02em;
}

.pricing-currency {
    font-size: 1.25rem;
    font-weight: 600;
    vertical-align: top;
    position: relative;
    top: 4px;
}

.pricing-period {
    font-size: 0.875rem;
    font-weight: 400;
    color: var(--text-muted);
}

.pricing-desc {
    font-size: 0.875rem;
    color: var(--text-muted);
    margin-bottom: 20px;
    line-height: 1.5;
}

.pricing-features {
    list-style: none;
    flex: 1;
    margin-bottom: 24px;
}

.pricing-features li {
    font-size: 0.875rem;
    color: var(--text-muted);
    padding: 6px 0 6px 20px;
    position: relative;
    line-height: 1.4;
}

.pricing-features li::before {
    content: '';
    position: absolute;
    left: 0;
    top: 12px;
    width: 6px;
    height: 6px;
    border-radius: 50%;
    background: var(--green);
    opacity: 0.5;
}

.pricing-cta {
    width: 100%;
    text-align: center;
    padding: 12px 20px;
    font-size: 0.9375rem;
}

/* Enterprise box */
.enterprise-box {
    background: var(--bg-elevated);
    border: 1px solid rgba(34, 197, 94, 0.12);
    border-radius: 16px;
    padding: 32px 36px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 32px;
}

.enterprise-box h3 {
    font-size: 1.25rem;
    font-weight: 700;
    margin-bottom: 6px;
}

.enterprise-box p {
    font-size: 0.9375rem;
    color: var(--text-muted);
    line-height: 1.5;
}

/* === Waitlist === */
.waitlist {
    padding: 80px 0;
}

.waitlist-box {
    max-width: 520px;
    margin: 0 auto;
    text-align: center;
    background: var(--bg-elevated);
    border: 1px solid rgba(34, 197, 94, 0.12);
    border-radius: 16px;
    padding: 48px 36px;
}

.waitlist-box h2 {
    font-size: 1.75rem;
    font-weight: 700;
    margin-bottom: 12px;
}

.waitlist-box > p {
    color: var(--text-muted);
    margin-bottom: 28px;
}

.waitlist-form {
    display: flex;
    gap: 10px;
}

.waitlist-form input[type="email"] {
    flex: 1;
    padding: 14px 18px;
    border-radius: 10px;
    border: 1px solid rgba(34, 197, 94, 0.2);
    background: var(--bg);
    color: var(--text);
    font-size: 1rem;
    outline: none;
    transition: border-color 0.2s;
}

.waitlist-form input[type="email"]::placeholder {
    color: var(--text-muted);
}

.waitlist-form input[type="email"]:focus {
    border-color: var(--green);
}

.waitlist-form .btn {
    white-space: nowrap;
    padding: 14px 24px;
}

.form-note {
    font-size: 0.8125rem;
    color: var(--text-muted);
    margin-top: 14px;
}

.form-success {
    margin-top: 20px;
    padding: 16px;
    background: var(--green-dim);
    border-radius: 10px;
    color: var(--green);
    font-weight: 600;
}

/* === Footer === */
.footer {
    padding: 32px 0;
    border-top: 1px solid rgba(34, 197, 94, 0.08);
}

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

.footer-text {
    text-align: right;
}

.footer p {
    font-size: 0.8125rem;
    color: var(--text-muted);
}

.health-notice {
    margin-top: 6px;
    font-size: 0.75rem !important;
    color: var(--text-muted);
    opacity: 0.7;
    font-style: italic;
}

/* === Fade-in Animation === */
.fade-in {
    opacity: 0;
    transform: translateY(20px);
    transition: opacity 0.6s ease-out, transform 0.6s ease-out;
}

.fade-in.visible {
    opacity: 1;
    transform: translateY(0);
}

/* === Responsive === */
@media (max-width: 1024px) {
    .pricing-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 768px) {
    .hero .container {
        flex-direction: column;
        text-align: center;
    }

    .hero-sub {
        margin-left: auto;
        margin-right: auto;
    }

    .hero-visual {
        display: none;
    }

    .hero {
        min-height: auto;
        padding: 120px 0 60px;
    }

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

    .phase-grid {
        grid-template-columns: 1fr;
        max-width: 400px;
    }

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

    .step-connector {
        width: 2px;
        height: 32px;
        background: linear-gradient(180deg, var(--green), transparent);
        margin: 0;
    }

    .step {
        max-width: 100%;
    }

    .persona-benefits {
        grid-template-columns: 1fr;
    }

    .persona-block {
        padding: 28px 24px;
    }

    .pricing-grid {
        grid-template-columns: 1fr;
        max-width: 400px;
        margin-left: auto;
        margin-right: auto;
    }

    .enterprise-box {
        flex-direction: column;
        text-align: center;
        padding: 28px 24px;
    }

    .report-downloads {
        flex-direction: column;
        align-items: center;
    }

    .waitlist-form {
        flex-direction: column;
    }

    .waitlist-box {
        padding: 36px 24px;
    }

    .footer-inner {
        flex-direction: column;
        gap: 12px;
        text-align: center;
    }

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

    .nav-links {
        gap: 4px;
    }

    .nav-link {
        padding: 8px 10px;
        font-size: 0.8125rem;
    }
}

@media (max-width: 480px) {
    .container {
        padding: 0 16px;
    }

    .feature-card {
        padding: 24px;
    }

    .pricing-card {
        padding: 28px 20px;
    }
}

/* ── Legal pages (privacy / terms) ───────────────────────────────── */
.legal-page {
    background: var(--bg, #0a0f0d);
}
.legal {
    max-width: 780px;
    padding: 72px 24px 96px;
    color: var(--text, #e5e7eb);
    line-height: 1.65;
}
.legal h1 {
    font-size: 42px;
    margin: 0 0 8px;
    letter-spacing: -0.02em;
}
.legal .legal-updated {
    color: #9ca3af;
    font-size: 14px;
    margin: 0 0 32px;
    text-transform: uppercase;
    letter-spacing: 0.08em;
}
.legal h2 {
    font-size: 22px;
    margin: 40px 0 12px;
    color: #fff;
}
.legal p, .legal li {
    font-size: 16px;
    color: #cbd5e1;
}
.legal ul {
    padding-left: 22px;
}
.legal li {
    margin: 6px 0;
}
.legal a {
    color: #22c55e;
    text-decoration: underline;
    text-underline-offset: 3px;
}
.legal a:hover {
    color: #4ade80;
}
.legal strong {
    color: #fff;
}
