/* HERO */
.hero {
    max-width: 1280px;
    margin: 0 auto;
    padding: 148px 56px 80px;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 80px;
    align-items: center;
}
.breadcrumb {
    display: flex;
    align-items: center;
    gap: 8px;
    font-size: 11px;
    font-weight: 500;
    letter-spacing: 0.12em;
    text-transform: uppercase;
    color: var(--ink-faint);
    margin-bottom: 22px;
}
.breadcrumb span {
    color: var(--accent);
}
.breadcrumb::before {
    content: "";
    display: block;
    width: 18px;
    height: 1px;
    background: var(--accent);
}
.hero h1 {
    font-family: var(--ff-display);
    font-size: clamp(48px, 5.2vw, 72px);
    font-weight: 300;
    line-height: 1.02;
    letter-spacing: -0.03em;
    margin-bottom: 26px;
}
.hero h1 em {
    font-style: italic;
    color: var(--accent);
}
.hero-sub {
    font-size: 18px;
    color: var(--ink-muted);
    line-height: 1.75;
    font-weight: 300;
    max-width: 430px;
    margin-bottom: 18px;
}
.hero-sub2 {
    font-size: 15px;
    color: var(--ink-muted);
    line-height: 1.75;
    font-weight: 300;
    max-width: 430px;
    margin-bottom: 40px;
}
.hero-actions {
    display: flex;
    align-items: center;
    gap: 20px;
}
.btn-primary {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background: var(--accent);
    color: white;
    padding: 13px 28px;
    border-radius: var(--radius);
    font-size: 15px;
    font-weight: 500;
    text-decoration: none;
    transition:
        background var(--t),
        transform var(--t);
}
.btn-primary:hover {
    background: var(--accent-dark);
    transform: translateY(-1px);
}
.btn-ghost {
    font-size: 14px;
    color: var(--ink-muted);
    text-decoration: none;
    display: flex;
    align-items: center;
    gap: 6px;
    transition: color var(--t);
}
.btn-ghost:hover {
    color: var(--ink);
}
.hero-stats {
    display: flex;
    gap: 0;
    margin-top: 48px;
    border-top: 1px solid var(--border);
    padding-top: 32px;
}
.hero-stat {
    flex: 1;
}
.hero-stat + .hero-stat {
    padding-left: 28px;
    border-left: 1px solid var(--border);
    margin-left: 28px;
}
.hero-stat-num {
    font-family: var(--ff-display);
    font-size: 36px;
    font-weight: 300;
    color: var(--ink);
    letter-spacing: -0.02em;
    line-height: 1;
    margin-bottom: 6px;
}
.hero-stat-label {
    font-size: 13px;
    color: var(--ink-muted);
    font-weight: 300;
    line-height: 1.4;
}

/* HERO DASHBOARD */
.hero-screen {
    background: var(--ink);
    border-radius: var(--radius-lg);
    overflow: hidden;
    box-shadow:
        0 32px 72px rgba(0, 0, 0, 0.18),
        0 8px 16px rgba(0, 0, 0, 0.08);
}
.screen-bar {
    display: flex;
    align-items: center;
    gap: 6px;
    padding: 12px 16px;
    background: rgba(255, 255, 255, 0.05);
    border-bottom: 1px solid rgba(255, 255, 255, 0.06);
}
.dot {
    width: 10px;
    height: 10px;
    border-radius: 50%;
}
.screen-content {
    padding: 24px;
}

/* paywall preview */
.pw-header {
    display: flex;
    align-items: center;
    justify-content: space-between;
    margin-bottom: 18px;
}
.pw-title {
    font-size: 12px;
    font-weight: 500;
    color: rgba(255, 255, 255, 0.5);
}
.pw-live {
    font-size: 10px;
    color: #4ade80;
    background: rgba(74, 222, 128, 0.1);
    border: 1px solid rgba(74, 222, 128, 0.2);
    padding: 3px 10px;
    border-radius: 100px;
    display: flex;
    align-items: center;
    gap: 4px;
}
.pw-live::before {
    content: "";
    width: 5px;
    height: 5px;
    background: #4ade80;
    border-radius: 50%;
}

/* revenue chart */
.rev-card {
    background: rgba(255, 255, 255, 0.04);
    border: 1px solid rgba(255, 255, 255, 0.07);
    border-radius: 10px;
    padding: 18px;
    margin-bottom: 12px;
}
.rev-top {
    display: flex;
    align-items: baseline;
    gap: 10px;
    margin-bottom: 14px;
}
.rev-num {
    font-family: var(--ff-display);
    font-size: 28px;
    font-weight: 300;
    color: white;
    line-height: 1;
}
.rev-delta {
    font-size: 12px;
    color: #4ade80;
}
.rev-label {
    font-size: 11px;
    color: rgba(255, 255, 255, 0.3);
    margin-left: auto;
}
.rev-bars {
    display: flex;
    align-items: flex-end;
    gap: 4px;
    height: 48px;
}
.rev-bar {
    flex: 1;
    border-radius: 3px 3px 0 0;
}

/* plan cards row */
.plan-row {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 8px;
    margin-bottom: 12px;
}
.plan-card {
    background: rgba(255, 255, 255, 0.04);
    border: 1px solid rgba(255, 255, 255, 0.08);
    border-radius: 8px;
    padding: 14px 12px;
}
.plan-card.featured {
    background: rgba(200, 64, 10, 0.15);
    border-color: rgba(200, 64, 10, 0.35);
}
.plan-name {
    font-size: 10px;
    font-weight: 500;
    text-transform: uppercase;
    letter-spacing: 0.08em;
    color: rgba(255, 255, 255, 0.4);
    margin-bottom: 6px;
}
.plan-card.featured .plan-name {
    color: rgba(200, 64, 10, 0.8);
}
.plan-price {
    font-family: var(--ff-display);
    font-size: 20px;
    font-weight: 300;
    color: white;
    line-height: 1;
    margin-bottom: 2px;
}
.plan-sub {
    font-size: 10px;
    color: rgba(255, 255, 255, 0.3);
}
.plan-bar {
    height: 3px;
    border-radius: 2px;
    margin-top: 10px;
}

/* conversion funnel mini */
.funnel-card {
    background: rgba(255, 255, 255, 0.03);
    border: 1px solid rgba(255, 255, 255, 0.07);
    border-radius: 10px;
    padding: 16px 18px;
}
.funnel-row {
    display: flex;
    align-items: center;
    gap: 8px;
    margin-bottom: 6px;
}
.funnel-row:last-child {
    margin-bottom: 0;
}
.funnel-label {
    font-size: 11px;
    color: rgba(255, 255, 255, 0.4);
    width: 72px;
    flex-shrink: 0;
}
.funnel-track {
    flex: 1;
    height: 20px;
    background: rgba(255, 255, 255, 0.05);
    border-radius: 3px;
    overflow: hidden;
    position: relative;
}
.funnel-fill {
    height: 100%;
    border-radius: 3px;
    display: flex;
    align-items: center;
    padding-left: 8px;
}
.funnel-fill span {
    font-size: 10px;
    font-weight: 500;
    color: white;
    opacity: 0.8;
}

/* ENABLES BAND */
.enables-band {
    background: var(--ink);
    padding: 80px 56px;
}
.enables-inner {
    max-width: 1280px;
    margin: 0 auto;
    display: flex;
    align-items: end;
    justify-content: space-between;
    gap: 80px;
}
.en-left {
    max-width: 520px;
}
.en-eyebrow {
    font-size: 11px;
    font-weight: 500;
    letter-spacing: 0.14em;
    text-transform: uppercase;
    color: rgba(255, 255, 255, 0.35);
    margin-bottom: 18px;
}
.en-title {
    font-family: var(--ff-display);
    font-size: 44px;
    font-weight: 300;
    line-height: 1.1;
    letter-spacing: -0.02em;
    color: white;
}
.en-title em {
    font-style: italic;
    color: var(--accent);
}
.en-right {
    max-width: 440px;
}
.en-desc {
    font-size: 16px;
    color: rgba(255, 255, 255, 0.45);
    line-height: 1.8;
    font-weight: 300;
    margin-bottom: 20px;
}
.pill-grid {
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
}
.pill {
    display: flex;
    align-items: center;
    gap: 7px;
    font-size: 13px;
    color: rgba(255, 255, 255, 0.6);
    border: 1px solid rgba(255, 255, 255, 0.1);
    padding: 6px 14px;
    border-radius: 100px;
    background: rgba(255, 255, 255, 0.04);
}
.pill svg {
    width: 12px;
    height: 12px;
    fill: none;
    stroke: var(--accent);
    stroke-width: 2;
    stroke-linecap: round;
}

/* FEATURES */
.features-section {
    max-width: 1280px;
    margin: 0 auto;
    padding: 80px 56px;
}
.feat-grid-2 {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 20px;
    margin-bottom: 20px;
}
.feat-grid-3 {
    display: grid;
    grid-template-columns: 1fr 1fr 1fr;
    gap: 20px;
    margin-bottom: 20px;
}

.feat-card {
    background: white;
    border: 1px solid var(--border);
    border-radius: var(--radius-lg);
    padding: 40px 36px;
    transition:
        box-shadow var(--t),
        transform var(--t);
    position: relative;
    overflow: hidden;
}
.feat-card:hover {
    box-shadow: 0 20px 52px rgba(0, 0, 0, 0.07);
    transform: translateY(-2px);
}
.feat-card.dark {
    background: var(--ink);
    border-color: rgba(255, 255, 255, 0.06);
}
.feat-card.warm {
    background: var(--surface-warm);
    border-color: rgba(0, 0, 0, 0.06);
}
.feat-card.accent-tint {
    background: var(--accent-light);
    border-color: rgba(200, 64, 10, 0.12);
}
.feat-card::before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 3px;
    background: var(--accent);
    transform: scaleX(0);
    transform-origin: left;
    transition: transform 0.3s ease;
}
.feat-card:not(.dark):hover::before {
    transform: scaleX(1);
}

.feat-num {
    font-size: 11px;
    font-weight: 500;
    letter-spacing: 0.12em;
    text-transform: uppercase;
    color: var(--accent);
    margin-bottom: 18px;
    display: flex;
    align-items: center;
    gap: 10px;
}
.feat-num::after {
    content: "";
    width: 24px;
    height: 1px;
    background: var(--accent);
    opacity: 0.4;
}
.feat-card.dark .feat-num {
    color: rgba(200, 64, 10, 0.85);
}

.feat-icon {
    width: 50px;
    height: 50px;
    border-radius: 12px;
    background: var(--accent-light);
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 22px;
}
.feat-card.dark .feat-icon {
    background: rgba(200, 64, 10, 0.15);
}
.feat-card.warm .feat-icon {
    background: rgba(200, 64, 10, 0.12);
}
.feat-card.accent-tint .feat-icon {
    background: rgba(200, 64, 10, 0.15);
}
.feat-icon svg {
    width: 24px;
    height: 24px;
    fill: none;
    stroke: var(--accent);
    stroke-width: 1.5;
    stroke-linecap: round;
    stroke-linejoin: round;
}

.feat-card h3 {
    font-family: var(--ff-display);
    font-size: 24px;
    font-weight: 400;
    line-height: 1.2;
    letter-spacing: -0.01em;
    margin-bottom: 14px;
}
.feat-card.dark h3 {
    color: white;
}
.feat-card > p {
    font-size: 15px;
    color: var(--ink-muted);
    line-height: 1.75;
    font-weight: 300;
    margin-bottom: 22px;
}
.feat-card.dark > p {
    color: rgba(255, 255, 255, 0.45);
}

.feat-list {
    list-style: none;
    display: flex;
    flex-direction: column;
    gap: 9px;
    margin-bottom: 22px;
}
.feat-list li {
    display: flex;
    align-items: flex-start;
    gap: 10px;
    font-size: 14px;
    color: var(--ink-muted);
    line-height: 1.5;
    font-weight: 300;
}
.feat-card.dark .feat-list li {
    color: rgba(255, 255, 255, 0.4);
}
.feat-list li::before {
    content: "";
    display: block;
    width: 16px;
    height: 16px;
    min-width: 16px;
    border-radius: 50%;
    background: var(--accent-light);
    border: 1px solid var(--accent);
    background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 16 16' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath d='M3.5 8l3 3 6-6' stroke='%23c8400a' stroke-width='1.5' fill='none' stroke-linecap='round' stroke-linejoin='round'/%3E%3C/svg%3E");
    background-size: 12px;
    background-position: center;
    background-repeat: no-repeat;
    margin-top: 2px;
}
.feat-card.dark .feat-list li::before {
    background-color: rgba(200, 64, 10, 0.15);
    border-color: rgba(200, 64, 10, 0.4);
}

.feat-result {
    background: var(--surface);
    border-radius: 8px;
    padding: 16px 18px;
    border: 1px solid var(--border);
    font-size: 14px;
    color: var(--ink-muted);
    line-height: 1.6;
    font-weight: 300;
}
.feat-card.dark .feat-result {
    background: rgba(255, 255, 255, 0.05);
    border-color: rgba(255, 255, 255, 0.08);
    color: rgba(255, 255, 255, 0.38);
}
.feat-card.warm .feat-result {
    background: white;
    border-color: var(--border);
}
.feat-card.accent-tint .feat-result {
    background: rgba(200, 64, 10, 0.07);
    border-color: rgba(200, 64, 10, 0.14);
}
.feat-result-label {
    font-size: 11px;
    font-weight: 500;
    text-transform: uppercase;
    letter-spacing: 0.1em;
    color: var(--accent);
    margin-bottom: 4px;
}

.feat-metric-row {
    display: flex;
    gap: 28px;
    margin-top: 24px;
}
.feat-metric-num {
    font-family: var(--ff-display);
    font-size: 38px;
    font-weight: 300;
    color: var(--accent);
    line-height: 1;
    margin-bottom: 4px;
    letter-spacing: -0.02em;
}
.feat-card.dark .feat-metric-num {
    color: var(--accent);
}
.feat-metric-label {
    font-size: 13px;
    color: var(--ink-muted);
    font-weight: 300;
}
.feat-card.dark .feat-metric-label {
    color: rgba(255, 255, 255, 0.35);
}

/* wide 2-col interior */
.feat-wide-inner {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 56px;
    align-items: start;
}

/* paywall strategy card visual */
.strategy-grid {
    display: grid;
    grid-template-columns: 1fr 1fr 1fr;
    gap: 8px;
    margin-top: 20px;
}
.strategy-item {
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(255, 255, 255, 0.09);
    border-radius: 8px;
    padding: 16px 14px;
}
.strategy-item.active {
    background: rgba(200, 64, 10, 0.18);
    border-color: rgba(200, 64, 10, 0.4);
}
.si-label {
    font-size: 10px;
    font-weight: 500;
    text-transform: uppercase;
    letter-spacing: 0.08em;
    color: rgba(255, 255, 255, 0.35);
    margin-bottom: 8px;
}
.strategy-item.active .si-label {
    color: rgba(200, 64, 10, 0.8);
}
.si-name {
    font-size: 13px;
    font-weight: 500;
    color: rgba(255, 255, 255, 0.8);
    margin-bottom: 6px;
}
.si-desc {
    font-size: 11px;
    color: rgba(255, 255, 255, 0.3);
    line-height: 1.5;
}

/* funnel viz in card */
.funnel-viz {
    margin-top: 20px;
}
.fv-step {
    margin-bottom: 6px;
}
.fv-label-row {
    display: flex;
    justify-content: space-between;
    margin-bottom: 4px;
}
.fv-name {
    font-size: 12px;
    color: rgba(255, 255, 255, 0.5);
}
.fv-pct {
    font-size: 12px;
    color: rgba(255, 255, 255, 0.4);
    font-weight: 500;
}
.fv-track {
    height: 10px;
    background: rgba(255, 255, 255, 0.05);
    border-radius: 3px;
    overflow: hidden;
}
.fv-fill {
    height: 100%;
    border-radius: 3px;
}

/* PRICING STRATEGY SECTION */
.pricing-section {
    background: var(--surface-warm);
    padding: 80px 56px;
}
.pricing-inner {
    max-width: 1280px;
    margin: 0 auto;
}
.pricing-header {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 80px;
    align-items: end;
    margin-bottom: 56px;
}
.pricing-header h2 {
    font-family: var(--ff-display);
    font-size: 44px;
    font-weight: 300;
    line-height: 1.1;
    letter-spacing: -0.02em;
}
.pricing-header h2 em {
    font-style: italic;
    color: var(--accent);
}
.pricing-header p {
    font-size: 16px;
    color: var(--ink-muted);
    line-height: 1.8;
    font-weight: 300;
    padding-top: 20px;
}

.pricing-cards {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 16px;
}
.pricing-card {
    background: white;
    border: 1px solid var(--border);
    border-radius: var(--radius-lg);
    padding: 32px 28px;
    transition: box-shadow var(--t);
}
.pricing-card:hover {
    box-shadow: 0 12px 36px rgba(0, 0, 0, 0.06);
}
.pricing-card.featured {
    background: var(--ink);
    border-color: var(--ink);
}
.pc-badge {
    display: inline-block;
    font-size: 11px;
    font-weight: 500;
    padding: 4px 12px;
    border-radius: 100px;
    margin-bottom: 20px;
}
.badge-free {
    background: var(--surface-warm);
    color: var(--ink-muted);
}
.badge-meter {
    background: var(--accent-light);
    color: var(--accent);
}
.badge-premium {
    background: rgba(255, 255, 255, 0.12);
    color: rgba(255, 255, 255, 0.7);
}
.pc-name {
    font-family: var(--ff-display);
    font-size: 22px;
    font-weight: 400;
    margin-bottom: 8px;
}
.pricing-card.featured .pc-name {
    color: white;
}
.pc-desc {
    font-size: 14px;
    color: var(--ink-muted);
    line-height: 1.6;
    margin-bottom: 24px;
    font-weight: 300;
}
.pricing-card.featured .pc-desc {
    color: rgba(255, 255, 255, 0.45);
}
.pc-features {
    list-style: none;
    display: flex;
    flex-direction: column;
    gap: 10px;
}
.pc-features li {
    font-size: 13px;
    color: var(--ink-muted);
    display: flex;
    align-items: flex-start;
    gap: 8px;
    line-height: 1.5;
    font-weight: 300;
}
.pricing-card.featured .pc-features li {
    color: rgba(255, 255, 255, 0.5);
}
.pc-features li::before {
    content: "";
    display: block;
    width: 14px;
    height: 14px;
    min-width: 14px;
    border-radius: 50%;
    background: var(--accent-light);
    border: 1px solid var(--accent);
    background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 14 14' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath d='M3 7l2.5 2.5 5.5-5.5' stroke='%23c8400a' stroke-width='1.5' fill='none' stroke-linecap='round' stroke-linejoin='round'/%3E%3C/svg%3E");
    background-size: 10px;
    background-position: center;
    background-repeat: no-repeat;
    margin-top: 1px;
}
.pricing-card.featured .pc-features li::before {
    background-color: rgba(200, 64, 10, 0.15);
    border-color: rgba(200, 64, 10, 0.4);
}
.pc-divider {
    height: 1px;
    background: var(--border);
    margin: 20px 0;
}
.pricing-card.featured .pc-divider {
    background: rgba(255, 255, 255, 0.08);
}
.pc-use {
    font-size: 13px;
    color: var(--ink-faint);
    font-style: italic;
}
.pricing-card.featured .pc-use {
    color: rgba(255, 255, 255, 0.28);
}

/* QUOTE */
.quote-strip {
    padding: 80px 56px;
}
.quote-inner {
    max-width: 1280px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: 1fr 2fr;
    gap: 80px;
    align-items: center;
}
.quote-label {
    font-size: 11px;
    font-weight: 500;
    letter-spacing: 0.14em;
    text-transform: uppercase;
    color: var(--accent);
    margin-bottom: 16px;
}
.quote-left h3 {
    font-family: var(--ff-display);
    font-size: 28px;
    font-weight: 400;
    line-height: 1.2;
}
blockquote {
    font-family: var(--ff-display);
    font-size: 28px;
    font-weight: 300;
    font-style: italic;
    line-height: 1.4;
    color: var(--ink);
    border-left: 3px solid var(--accent);
    padding-left: 32px;
    margin-bottom: 24px;
}
.quote-attr {
    font-size: 14px;
    color: var(--ink-muted);
    padding-left: 32px;
}
.quote-attr strong {
    color: var(--ink);
    font-weight: 500;
}

/* CTA */
.cta-section {
    max-width: 1280px;
    margin: 0 auto;
    padding: 20px 56px 100px;
}
.cta-box {
    background: var(--ink);
    border-radius: 20px;
    padding: 80px;
    text-align: center;
    position: relative;
    overflow: hidden;
}
.cta-box::before {
    content: "";
    position: absolute;
    top: -80px;
    right: -80px;
    width: 320px;
    height: 320px;
    background: var(--accent);
    border-radius: 50%;
    opacity: 0.08;
}
.cta-eyebrow {
    font-size: 11px;
    font-weight: 500;
    letter-spacing: 0.14em;
    text-transform: uppercase;
    color: rgba(255, 255, 255, 0.3);
    margin-bottom: 18px;
}
.cta-title {
    font-family: var(--ff-display);
    font-size: 50px;
    font-weight: 300;
    color: white;
    line-height: 1.1;
    letter-spacing: -0.03em;
    margin-bottom: 20px;
}
.cta-title em {
    font-style: italic;
    color: var(--accent);
}
.cta-sub {
    font-size: 17px;
    color: rgba(255, 255, 255, 0.38);
    max-width: 440px;
    margin: 0 auto 40px;
    font-weight: 300;
    line-height: 1.7;
}

.d1 {
    animation-delay: 0.08s;
    opacity: 0;
}
.d2 {
    animation-delay: 0.18s;
    opacity: 0;
}
.d3 {
    animation-delay: 0.28s;
    opacity: 0;
}

@media (max-width: 960px) {
    .hero {
        grid-template-columns: 1fr;
        padding: 100px 24px 60px;
        gap: 40px;
    }
    .enables-band {
        padding: 60px 24px;
    }
    .enables-inner {
        flex-direction: column;
        gap: 32px;
    }
    .features-section {
        padding: 60px 24px;
    }
    .feat-grid-2,
    .feat-grid-3 {
        grid-template-columns: 1fr;
    }
    .feat-grid-2 > *,
    .feat-grid-3 > * {
        min-width: 0;
    }
    .feat-wide-inner {
        grid-template-columns: 1fr;
    }
    .feat-wide-inner > * {
        min-width: 0;
    }
    .pricing-section {
        padding: 60px 24px;
    }
    .pricing-header {
        grid-template-columns: 1fr;
        gap: 20px;
    }
    .pricing-cards {
        grid-template-columns: 1fr;
    }
    .quote-strip {
        padding: 60px 24px;
    }
    .quote-inner {
        grid-template-columns: 1fr;
        gap: 32px;
    }
    .cta-section {
        padding: 20px 24px 60px;
    }
    .cta-box {
        padding: 48px 28px;
    }
    .cta-title {
        font-size: 36px;
    }
    .hero-stats {
        flex-direction: column;
        gap: 20px;
    }
    .hero-stat + .hero-stat {
        padding-left: 0;
        border-left: none;
        margin-left: 0;
        border-top: 1px solid var(--border);
        padding-top: 20px;
    }
}
