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

:root {
    --bg: #000;
    --text: #fff;
    --text-dim: rgba(255,255,255,0.8);
    --text-muted: rgba(255,255,255,0.5);
    --accent: #818cf8;
    --accent-2: #a78bfa;
    --border: rgba(255,255,255,0.1);
    --card-bg: rgba(255,255,255,0.04);
}

html { scroll-behavior: smooth; }

body {
    font-family: -apple-system, BlinkMacSystemFont, 'SF Pro Display', system-ui, sans-serif;
    background: var(--bg);
    color: var(--text);
    line-height: 1.6;
    -webkit-font-smoothing: antialiased;
    overflow-x: hidden;
}

.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 24px;
}

/* ========== NAVIGATION ========== */
.nav {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 1000;
    padding: 16px 24px;
    background: rgba(0,0,0,0.8);
    backdrop-filter: blur(20px);
    border-bottom: 1px solid var(--border);
    transform: translateY(-100%);
    transition: transform 0.3s ease;
}

.nav.visible {
    transform: translateY(0);
}

.nav-container {
    max-width: 1200px;
    margin: 0 auto;
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.nav-logo {
    font-size: 22px;
    font-weight: 700;
    color: var(--text);
    text-decoration: none;
}

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

.nav-links a {
    font-size: 14px;
    font-weight: 500;
    color: var(--text-muted);
    text-decoration: none;
    transition: color 0.2s;
}

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

.nav-cta {
    font-size: 14px;
    font-weight: 600;
    color: var(--bg);
    background: var(--text);
    padding: 10px 20px;
    border-radius: 8px;
    text-decoration: none;
    transition: all 0.2s;
}

.nav-cta:hover {
    transform: translateY(-1px);
    box-shadow: 0 4px 12px rgba(255,255,255,0.2);
}

/* ========== HERO ========== */
.hero {
    min-height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    position: relative;
    padding: 0 24px;
    background: radial-gradient(ellipse 80% 50% at center top, rgba(129, 140, 248, 0.15) 0%, transparent 70%);
}

.hero-content {
    z-index: 1;
}

.hero-title {
    font-size: clamp(6rem, 20vw, 14rem);
    font-weight: 700;
    letter-spacing: -0.04em;
    line-height: 1;
    margin-bottom: 16px;
    animation: fadeInUp 0.8s ease both;
}

.title-gradient {
    background: linear-gradient(180deg, #ffffff 0%, #71717a 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    padding-right: 0.05em;
}

.hero-h1-sub {
    display: block;
    font-size: clamp(1rem, 2vw, 1.25rem);
    font-weight: 400;
    background: none;
    -webkit-background-clip: unset;
    -webkit-text-fill-color: var(--text-muted);
    color: var(--text-muted);
    letter-spacing: 0.02em;
    margin-top: 12px;
}

.hero-desc {
    font-size: clamp(1rem, 2vw, 1.125rem);
    color: var(--text-muted);
    max-width: 500px;
    margin: 0 auto 32px;
    line-height: 1.7;
    animation: fadeInUp 0.8s ease 0.2s both;
}

/* Hero CTA */
.hero-cta {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 16px;
    animation: fadeInUp 0.8s ease 0.4s both;
}

.btn-primary {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    background: var(--text);
    color: var(--bg);
    padding: 18px 36px;
    border-radius: 14px;
    font-size: 17px;
    font-weight: 600;
    text-decoration: none;
    transition: all 0.2s ease;
    border: none;
    cursor: pointer;
}

.btn-primary:hover {
    transform: translateY(-2px);
    box-shadow: 0 20px 40px rgba(255,255,255,0.15);
}

.btn-primary.large {
    padding: 24px 48px;
    font-size: 20px;
}

.apple-icon {
    width: 22px;
    height: 22px;
}

.cta-sub {
    font-size: 14px;
    color: var(--text-muted);
}

/* Mobile-only note (hidden on desktop) */
.mobile-only-note {
    display: none;
}

/* Replaced Apps */
.hero-replaces {
    margin-bottom: 40px;
    animation: fadeInUp 0.8s ease 0.3s both;
}

.hero-replaces a {
    font-size: 15px;
    color: var(--text-muted);
    text-decoration: none;
    transition: color 0.2s;
}

.hero-replaces a:hover {
    color: var(--text);
}

/* Scroll Indicator */
.scroll-indicator {
    position: absolute;
    bottom: 48px;
    left: 50%;
    transform: translateX(-50%);
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 10px;
    opacity: 0.5;
    animation: fadeIn 0.8s ease 0.6s both;
}

.scroll-indicator span {
    font-size: 11px;
    text-transform: uppercase;
    letter-spacing: 0.15em;
    color: var(--text-muted);
}

.scroll-arrow {
    width: 18px;
    height: 18px;
    border-right: 1.5px solid var(--text-muted);
    border-bottom: 1.5px solid var(--text-muted);
    transform: rotate(45deg);
    animation: bounce 2s infinite;
}

@keyframes bounce {
    0%, 20%, 50%, 80%, 100% { transform: rotate(45deg) translateY(0); }
    40% { transform: rotate(45deg) translateY(8px); }
}

/* Guarantee Box */
.guarantee-box {
    display: flex;
    align-items: center;
    gap: 16px;
    background: rgba(34, 197, 94, 0.1);
    border: 1px solid rgba(34, 197, 94, 0.3);
    border-radius: 16px;
    padding: 20px 28px;
    margin: 32px auto;
    max-width: 480px;
    text-align: left;
}

.guarantee-box svg {
    width: 40px;
    height: 40px;
    flex-shrink: 0;
    color: #22c55e;
}

.guarantee-box strong {
    display: block;
    font-size: 16px;
    color: var(--text);
    margin-bottom: 4px;
}

.guarantee-box p {
    font-size: 14px;
    color: var(--text-muted);
    margin: 0;
}

/* ========== SOCIAL PROOF ========== */
.social-proof {
    padding: 40px 24px;
    text-align: center;
    border-top: 1px solid var(--border);
    border-bottom: 1px solid var(--border);
}

.proof-text {
    font-size: 15px;
    color: var(--text-muted);
    letter-spacing: 0.02em;
}

/* ========== PILLARS GRID ========== */
.pillars-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 20px;
    padding: 80px 24px;
    max-width: 1200px;
    margin: 0 auto;
}

.pillar-card {
    background: var(--card-bg);
    border: 1px solid var(--border);
    border-radius: 20px;
    padding: 32px 24px;
    text-decoration: none;
    color: var(--text);
    transition: all 0.3s ease;
}

.pillar-card:hover {
    transform: translateY(-8px);
    border-color: rgba(129, 140, 248, 0.4);
    box-shadow: 0 20px 40px rgba(0,0,0,0.3);
}

.pillar-icon {
    width: 48px;
    height: 48px;
    background: linear-gradient(135deg, rgba(129, 140, 248, 0.2), rgba(167, 139, 250, 0.15));
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 20px;
}

.pillar-icon svg {
    width: 24px;
    height: 24px;
    stroke: var(--accent);
}

.pillar-card h3 {
    font-size: 20px;
    font-weight: 700;
    margin-bottom: 10px;
}

.pillar-card p {
    font-size: 14px;
    color: var(--text-muted);
    line-height: 1.6;
    margin-bottom: 16px;
}

.pillar-link {
    font-size: 14px;
    font-weight: 600;
    color: var(--accent);
}

/* ========== FEATURE SECTIONS ========== */
.feature-section {
    padding: 120px 24px;
}

.feature-section .container {
    max-width: 1400px;
}

.feature-section.alt {
    background: var(--card-bg);
}

.feature-section .container {
    display: grid;
    grid-template-columns: 1fr 1.4fr;
    gap: 60px;
    align-items: center;
}

.feature-section.alt .container {
    grid-template-columns: 1.4fr 1fr;
}

.feature-section.alt .container > * {
    direction: ltr;
}

.feature-label {
    display: inline-block;
    font-size: 12px;
    font-weight: 700;
    letter-spacing: 0.15em;
    color: var(--accent);
    margin-bottom: 16px;
    padding: 6px 14px;
    background: rgba(129, 140, 248, 0.12);
    border-radius: 100px;
}

.feature-content h2 {
    font-size: clamp(28px, 4vw, 40px);
    font-weight: 700;
    line-height: 1.15;
    margin-bottom: 20px;
    letter-spacing: -0.02em;
}

.feature-content > p {
    font-size: 17px;
    color: var(--text-dim);
    line-height: 1.7;
    margin-bottom: 28px;
}

.feature-list {
    list-style: none;
    margin-bottom: 28px;
}

.feature-list li {
    font-size: 15px;
    color: var(--text-dim);
    padding: 8px 0;
    padding-left: 20px;
    position: relative;
}

.feature-list li::before {
    content: '';
    position: absolute;
    left: 0;
    top: 14px;
    width: 6px;
    height: 6px;
    background: var(--accent);
    border-radius: 50%;
}

.feature-cta {
    font-size: 15px;
    font-weight: 600;
    color: var(--accent);
    text-decoration: none;
    transition: color 0.2s;
}

.feature-cta:hover {
    color: var(--accent-2);
}

.feature-visual img {
    width: 100%;
    height: auto;
    border-radius: 20px;
    box-shadow: 0 40px 80px rgba(0,0,0,0.5);
}

.feature-visual video {
    width: 100%;
    height: auto;
    border-radius: 20px;
    box-shadow: 0 40px 80px rgba(0,0,0,0.5);
}

/* ========== WHY SECTION ========== */
.why-section {
    padding: 120px 24px;
    background: var(--card-bg);
}

.why-section h2 {
    font-size: clamp(32px, 5vw, 48px);
    font-weight: 700;
    text-align: center;
    margin-bottom: 60px;
    letter-spacing: -0.02em;
}

.why-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 24px;
}

.why-card {
    background: rgba(255,255,255,0.02);
    border: 1px solid var(--border);
    border-radius: 20px;
    padding: 32px 24px;
    text-align: center;
    transition: all 0.3s ease;
}

.why-card:hover {
    transform: translateY(-6px);
    border-color: rgba(255,255,255,0.2);
}

.why-icon {
    width: 48px;
    height: 48px;
    margin: 0 auto 20px;
    background: linear-gradient(135deg, rgba(129, 140, 248, 0.2), rgba(167, 139, 250, 0.15));
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.why-icon svg {
    width: 24px;
    height: 24px;
    stroke: var(--accent);
}

.why-card h4 {
    font-size: 18px;
    font-weight: 700;
    margin-bottom: 10px;
}

.why-card p {
    font-size: 14px;
    color: var(--text-muted);
    line-height: 1.6;
}

/* ========== SHOWCASE SECTION ========== */
.showcase-section {
    padding: 80px 24px 100px;
    text-align: center;
}

.showcase-section h2 {
    font-size: clamp(28px, 4vw, 40px);
    font-weight: 700;
    margin-bottom: 12px;
    letter-spacing: -0.02em;
}

.showcase-subtitle {
    font-size: 17px;
    color: var(--text-muted);
    margin-bottom: 48px;
    max-width: 500px;
    margin-left: auto;
    margin-right: auto;
}

.showcase-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    max-width: 740px;
    margin: 0 auto 40px;
    border: 1px solid rgba(255,255,255,0.08);
    border-radius: 20px;
    background: rgba(255,255,255,0.02);
    overflow: hidden;
}

.showcase-item {
    padding: 24px 28px;
    border-bottom: 1px solid rgba(255,255,255,0.06);
    display: flex;
    flex-direction: column;
    gap: 6px;
    text-align: left;
    transition: background 0.2s ease;
}

.showcase-item:nth-child(odd) {
    border-right: 1px solid rgba(255,255,255,0.06);
}

.showcase-item:nth-last-child(-n+2) {
    border-bottom: none;
}

.showcase-item:hover {
    background: rgba(255,255,255,0.03);
}

.showcase-cmd {
    font-family: 'SF Mono', Monaco, 'Courier New', monospace;
    font-size: 14px;
    color: var(--text);
    font-weight: 500;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
}

.showcase-result {
    font-size: 13px;
    color: var(--text-muted);
    line-height: 1.5;
}

.showcase-result::before {
    content: '\2192  ';
    opacity: 0.4;
}

.showcase-footnote {
    font-size: 15px;
    color: var(--text-muted);
    font-weight: 400;
}

/* ========== WHO SECTION ========== */
.who-section {
    padding: 100px 24px;
}

.who-content {
    max-width: 680px;
    margin: 0 auto;
    text-align: center;
}

.who-section h2 {
    font-size: clamp(28px, 4vw, 40px);
    font-weight: 700;
    margin-bottom: 48px;
    letter-spacing: -0.02em;
}

.who-statements {
    text-align: left;
    margin-bottom: 48px;
}

.who-statement {
    font-size: clamp(17px, 2.2vw, 20px);
    color: var(--text-muted);
    line-height: 1.6;
    padding: 20px 0;
    border-bottom: 1px solid rgba(255,255,255,0.06);
    font-style: italic;
}

.who-statement:first-child {
    padding-top: 0;
}

.who-statement:last-child {
    border-bottom: none;
}

.who-statement strong {
    color: var(--text);
    font-style: normal;
    font-weight: 600;
}

.who-punchline {
    font-size: clamp(18px, 2.5vw, 22px);
    font-weight: 600;
    color: var(--text);
    line-height: 1.5;
    margin-bottom: 16px;
}

.who-dismiss {
    font-size: 15px;
    color: var(--text-muted);
    opacity: 0.6;
}

/* ========== LAUNCHER POWER GRID ========== */
.launcher-grid-section {
    padding: 80px 24px 100px;
    text-align: center;
}

.launcher-grid-section h2 {
    font-size: clamp(28px, 4vw, 40px);
    font-weight: 700;
    margin-bottom: 12px;
    letter-spacing: -0.02em;
}

.launcher-grid-subtitle {
    font-size: 17px;
    color: var(--text-muted);
    max-width: 580px;
    margin: 0 auto 48px;
}

.launcher-power-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    max-width: 900px;
    margin: 0 auto 40px;
    border: 1px solid rgba(255,255,255,0.08);
    border-radius: 20px;
    background: rgba(255,255,255,0.02);
    overflow: hidden;
}

.power-item {
    padding: 20px 24px;
    border-bottom: 1px solid rgba(255,255,255,0.06);
    border-right: 1px solid rgba(255,255,255,0.06);
    text-align: left;
    transition: background 0.2s ease;
}

.power-item:nth-child(3n) {
    border-right: none;
}

.power-item:nth-last-child(-n+3) {
    border-bottom: none;
}

.power-item:hover {
    background: rgba(255,255,255,0.03);
}

.power-item strong {
    display: block;
    font-size: 14px;
    font-weight: 600;
    margin-bottom: 4px;
    color: var(--text);
}

.power-item span {
    font-size: 13px;
    color: var(--text-muted);
    line-height: 1.5;
}

.launcher-grid-footnote {
    font-size: 15px;
    color: var(--text-muted);
    font-weight: 400;
}

/* ========== VALUE STACK ========== */
.value-stack-section {
    padding: 120px 24px;
    text-align: center;
}

.value-stack-section h2 {
    font-size: clamp(32px, 5vw, 48px);
    font-weight: 700;
    margin-bottom: 12px;
    letter-spacing: -0.02em;
}

.value-stack-subtitle {
    font-size: 17px;
    color: var(--text-muted);
    margin-bottom: 48px;
}

.value-stack {
    max-width: 800px;
    margin: 0 auto 24px;
    border: 1px solid var(--border);
    border-radius: 20px;
    overflow: hidden;
}

.value-row {
    display: grid;
    grid-template-columns: 1.5fr 1.5fr 0.8fr;
    padding: 16px 24px;
    border-bottom: 1px solid rgba(255,255,255,0.05);
    text-align: left;
    font-size: 15px;
    color: var(--text-dim);
}

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

.value-header {
    background: rgba(255,255,255,0.03);
    font-size: 12px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.08em;
    color: var(--text-muted);
    padding: 14px 24px;
}

.value-amount {
    text-align: right;
    font-weight: 600;
    color: var(--text);
}

.value-total {
    border-top: 1px solid var(--border);
    background: rgba(255,255,255,0.02);
}

.value-total .value-amount {
    font-size: 18px;
    color: var(--text-muted);
    text-decoration: line-through;
    text-decoration-color: rgba(255,100,100,0.5);
}

.value-you-pay {
    background: rgba(129, 140, 248, 0.08);
}

.value-you-pay span:first-child {
    font-weight: 700;
    color: var(--text);
}

.value-you-pay .value-amount {
    font-size: 20px;
    background: linear-gradient(135deg, var(--accent), var(--accent-2));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.value-save {
    background: rgba(34, 197, 94, 0.06);
}

.value-save span:first-child {
    font-weight: 700;
    color: #22c55e;
}

.value-save .value-amount {
    font-size: 20px;
    color: #22c55e;
}

.value-stack-badge {
    display: inline-block;
    background: rgba(129, 140, 248, 0.12);
    border: 1px solid rgba(129, 140, 248, 0.3);
    border-radius: 100px;
    padding: 12px 24px;
    font-size: 15px;
    font-weight: 600;
    color: var(--accent);
}

/* ========== TESTIMONIALS ========== */
.testimonials-section {
    padding: 120px 24px;
    background: var(--card-bg);
}

.testimonials-section h2 {
    font-size: clamp(32px, 5vw, 48px);
    font-weight: 700;
    text-align: center;
    margin-bottom: 60px;
    letter-spacing: -0.02em;
}

.testimonials-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 20px;
    max-width: 1100px;
    margin: 0 auto 48px;
}

.testimonial-card {
    background: rgba(255,255,255,0.02);
    border: 1px solid var(--border);
    border-radius: 20px;
    padding: 28px 24px;
    transition: all 0.3s ease;
}

.testimonial-card:hover {
    transform: translateY(-4px);
    border-color: rgba(255,255,255,0.15);
}

.testimonial-quote {
    font-size: 15px;
    color: var(--text-dim);
    line-height: 1.7;
    margin-bottom: 20px;
    font-style: italic;
}

.testimonial-author {
    display: flex;
    align-items: center;
    gap: 12px;
}

.testimonial-avatar {
    width: 40px;
    height: 40px;
    border-radius: 50%;
    background: linear-gradient(135deg, rgba(129, 140, 248, 0.3), rgba(167, 139, 250, 0.2));
    flex-shrink: 0;
}

.testimonial-name {
    display: block;
    font-size: 14px;
    font-weight: 600;
    color: var(--text);
}

.testimonial-role {
    font-size: 13px;
    color: var(--text-muted);
}

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

.stat {
    text-align: center;
}

.stat-number {
    display: block;
    font-size: 32px;
    font-weight: 800;
    background: linear-gradient(135deg, var(--accent), var(--accent-2));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.stat-label {
    font-size: 14px;
    color: var(--text-muted);
}

/* ========== PRICING SECTION ========== */
.pricing-section {
    padding: 120px 24px;
    text-align: center;
}

.pricing-content h2 {
    font-size: clamp(32px, 5vw, 48px);
    font-weight: 700;
    margin-bottom: 48px;
    letter-spacing: -0.02em;
}

.pricing-tiers {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 20px;
    max-width: 1000px;
    margin: 0 auto;
}

.pricing-tier {
    background: var(--card-bg);
    border: 1px solid var(--border);
    border-radius: 20px;
    padding: 32px 24px;
    text-align: left;
    position: relative;
    display: flex;
    flex-direction: column;
}

.tier-featured {
    border-color: var(--accent);
    background: rgba(129, 140, 248, 0.06);
    box-shadow: 0 0 40px rgba(129, 140, 248, 0.1);
}

.tier-badge {
    position: absolute;
    top: -12px;
    left: 50%;
    transform: translateX(-50%);
    background: linear-gradient(135deg, var(--accent), var(--accent-2));
    color: white;
    font-size: 12px;
    font-weight: 700;
    padding: 6px 16px;
    border-radius: 100px;
    white-space: nowrap;
}

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

.tier-header h3 {
    font-size: 20px;
    font-weight: 700;
    margin-bottom: 8px;
}

.tier-price {
    font-size: 40px;
    font-weight: 800;
    letter-spacing: -0.02em;
}

.tier-price span {
    font-size: 16px;
    font-weight: 500;
    color: var(--text-muted);
}

.tier-price-old {
    color: var(--text-muted);
    text-decoration: line-through;
    text-decoration-color: rgba(255,100,100,0.6);
}

.tier-price-sub {
    font-size: 14px;
    color: var(--text-muted);
    margin-top: 4px;
}

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

.tier-features li {
    font-size: 14px;
    padding: 8px 0;
    padding-left: 28px;
    position: relative;
    color: var(--text-dim);
}

.tier-features li.included::before {
    content: '';
    position: absolute;
    left: 0;
    top: 12px;
    width: 16px;
    height: 16px;
    background: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='%2322c55e' stroke-width='2.5'%3E%3Cpath d='M5 13l4 4L19 7'/%3E%3C/svg%3E") center/contain no-repeat;
}

.tier-features li.excluded::before {
    content: '';
    position: absolute;
    left: 0;
    top: 12px;
    width: 16px;
    height: 16px;
    background: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='%23666' stroke-width='2'%3E%3Cpath d='M18 6L6 18M6 6l12 12'/%3E%3C/svg%3E") center/contain no-repeat;
}

.tier-features li.excluded {
    color: var(--text-muted);
}

.tier-features li.competitor::before {
    content: '';
    position: absolute;
    left: 0;
    top: 12px;
    width: 16px;
    height: 16px;
    background: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='%23f87171' stroke-width='2'%3E%3Ccircle cx='12' cy='12' r='10'/%3E%3Cpath d='M12 8v4M12 16h.01'/%3E%3C/svg%3E") center/contain no-repeat;
}

.tier-features li.competitor {
    color: var(--text-muted);
}

.tier-cta {
    display: block;
    text-align: center;
    padding: 14px 24px;
    border-radius: 12px;
    font-size: 15px;
    font-weight: 600;
    text-decoration: none;
    transition: all 0.2s ease;
}

.tier-cta-primary {
    background: var(--text);
    color: var(--bg);
}

.tier-cta-primary:hover {
    transform: translateY(-2px);
    box-shadow: 0 12px 24px rgba(255,255,255,0.15);
}

.tier-cta-secondary {
    background: transparent;
    color: var(--text);
    border: 1px solid var(--border);
}

.tier-cta-secondary:hover {
    border-color: rgba(255,255,255,0.3);
}

.tier-cta-disabled {
    color: var(--text-muted);
    font-size: 14px;
    cursor: default;
}

.tier-note {
    display: block;
    text-align: center;
    font-size: 13px;
    color: var(--accent);
    font-weight: 600;
    margin-top: 12px;
}

.tier-competitor {
    opacity: 0.6;
}

/* ========== FOUNDER SECTION ========== */
.founder-section {
    padding: 100px 24px;
}

.founder-content {
    max-width: 700px;
    margin: 0 auto;
    text-align: center;
}

.founder-section h2 {
    font-size: clamp(24px, 3vw, 32px);
    font-weight: 700;
    margin-bottom: 28px;
    letter-spacing: -0.02em;
}

.founder-quote {
    font-size: 20px;
    color: var(--text-dim);
    line-height: 1.7;
    font-style: italic;
    margin-bottom: 28px;
    border: none;
    padding: 0;
}

.founder-info {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 12px;
}

.founder-avatar {
    width: 48px;
    height: 48px;
    border-radius: 50%;
    background: linear-gradient(135deg, rgba(129, 140, 248, 0.3), rgba(167, 139, 250, 0.2));
}

.founder-name {
    display: block;
    font-size: 16px;
    font-weight: 600;
    color: var(--text);
}

.founder-role {
    font-size: 14px;
    color: var(--text-muted);
}

/* ========== EMAIL CAPTURE ========== */
.email-section {
    padding: 80px 24px;
    background: linear-gradient(180deg, transparent 0%, rgba(129, 140, 248, 0.06) 100%);
}

.email-content {
    max-width: 500px;
    margin: 0 auto;
    text-align: center;
}

.email-section h2 {
    font-size: clamp(24px, 3vw, 32px);
    font-weight: 700;
    margin-bottom: 12px;
    letter-spacing: -0.02em;
}

.email-content > p {
    font-size: 16px;
    color: var(--text-muted);
    margin-bottom: 24px;
    line-height: 1.6;
}

.email-form {
    display: flex;
    gap: 8px;
    margin-bottom: 12px;
}

.email-input {
    flex: 1;
    padding: 14px 18px;
    background: rgba(255,255,255,0.06);
    border: 1px solid var(--border);
    border-radius: 12px;
    color: var(--text);
    font-size: 15px;
    outline: none;
    transition: border-color 0.2s;
    font-family: inherit;
}

.email-input:focus {
    border-color: var(--accent);
}

.email-input::placeholder {
    color: var(--text-muted);
}

.email-btn {
    padding: 14px 24px;
    background: var(--text);
    color: var(--bg);
    border: none;
    border-radius: 12px;
    font-size: 15px;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.2s ease;
    font-family: inherit;
    white-space: nowrap;
}

.email-btn:hover {
    transform: translateY(-1px);
    box-shadow: 0 8px 20px rgba(255,255,255,0.15);
}

.email-note {
    font-size: 13px;
    color: var(--text-muted);
}

.email-success {
    color: #22c55e;
    font-size: 15px;
    font-weight: 500;
    text-align: center;
    width: 100%;
}

/* ========== FOOTER ========== */
.footer {
    padding: 80px 24px 40px;
    border-top: 1px solid var(--border);
}

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

.footer-logo {
    font-size: 24px;
    font-weight: 700;
    color: var(--text);
    display: block;
    margin-bottom: 12px;
}

.footer-brand p {
    font-size: 14px;
    color: var(--text-muted);
    line-height: 1.6;
}

.footer-col {
    display: flex;
    flex-direction: column;
    gap: 10px;
}

.footer-col h4 {
    font-size: 12px;
    font-weight: 600;
    color: var(--text);
    margin-bottom: 8px;
    text-transform: uppercase;
    letter-spacing: 0.08em;
}

.footer-col a {
    font-size: 14px;
    color: var(--text-muted);
    text-decoration: none;
    transition: color 0.2s;
}

.footer-col a:hover {
    color: var(--text);
}

.footer-bottom {
    text-align: center;
    padding-top: 40px;
    border-top: 1px solid var(--border);
}

.footer-bottom p {
    font-size: 14px;
    color: var(--text-muted);
}

/* ========== FEATURE PAGE STYLES ========== */
.feature-hero {
    padding: 160px 24px 80px;
    text-align: center;
    background: radial-gradient(ellipse at center top, rgba(129, 140, 248, 0.08) 0%, transparent 60%);
}

.hero-label {
    display: inline-block;
    font-size: 12px;
    font-weight: 700;
    letter-spacing: 0.15em;
    color: var(--accent);
    margin-bottom: 20px;
    padding: 8px 16px;
    background: rgba(129, 140, 248, 0.12);
    border-radius: 100px;
}

.feature-hero h1 {
    font-size: clamp(2.5rem, 6vw, 4rem);
    font-weight: 700;
    letter-spacing: -0.03em;
    margin-bottom: 20px;
}

.hero-desc {
    font-size: clamp(1rem, 2vw, 1.2rem);
    color: var(--text-muted);
    max-width: 700px;
    margin: 0 auto 32px;
    line-height: 1.7;
}

.feature-hero .hero-cta {
    margin-top: 32px;
}

/* Feature Showcase */
.feature-showcase {
    padding: 0 24px 100px;
}

.showcase-image,
.showcase-video {
    max-width: 1200px;
    margin: 0 auto;
}

.showcase-image img {
    width: 100%;
    height: auto;
    border-radius: 24px;
    box-shadow: 0 50px 100px rgba(0,0,0,0.5);
}

.showcase-video video {
    width: 100%;
    height: auto;
    border-radius: 24px;
    box-shadow: 0 50px 100px rgba(0,0,0,0.5);
}

/* Features Detail Grid */
.features-detail {
    padding: 100px 24px;
    background: var(--card-bg);
}

.features-detail h2 {
    font-size: clamp(28px, 4vw, 40px);
    font-weight: 700;
    text-align: center;
    margin-bottom: 60px;
    letter-spacing: -0.02em;
}

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

.feature-item {
    background: rgba(255,255,255,0.02);
    border: 1px solid var(--border);
    border-radius: 20px;
    padding: 32px 28px;
    transition: all 0.3s ease;
}

.feature-item:hover {
    transform: translateY(-6px);
    border-color: rgba(255,255,255,0.15);
}

.feature-item .feature-icon {
    width: 48px;
    height: 48px;
    background: linear-gradient(135deg, rgba(129, 140, 248, 0.2), rgba(167, 139, 250, 0.15));
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 20px;
}

.feature-item .feature-icon svg {
    width: 24px;
    height: 24px;
    stroke: var(--accent);
}

.feature-item h3 {
    font-size: 20px;
    font-weight: 700;
    margin-bottom: 12px;
}

.feature-item p {
    font-size: 15px;
    color: var(--text-muted);
    line-height: 1.7;
    margin-bottom: 16px;
}

.replaces {
    display: inline-block;
    font-size: 12px;
    font-weight: 600;
    color: var(--accent);
    padding: 4px 10px;
    background: rgba(129, 140, 248, 0.12);
    border-radius: 100px;
}

/* How It Works / Steps */
.how-it-works {
    padding: 100px 24px;
}

.how-it-works h2 {
    font-size: clamp(28px, 4vw, 40px);
    font-weight: 700;
    text-align: center;
    margin-bottom: 60px;
    letter-spacing: -0.02em;
}

.steps {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 40px;
    max-width: 900px;
    margin: 0 auto;
}

.step {
    text-align: center;
}

.step-number {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 48px;
    height: 48px;
    background: linear-gradient(135deg, var(--accent), var(--accent-2));
    border-radius: 50%;
    font-size: 20px;
    font-weight: 700;
    color: white;
    margin-bottom: 20px;
}

.step h4 {
    font-size: 18px;
    font-weight: 700;
    margin-bottom: 10px;
}

.step p {
    font-size: 15px;
    color: var(--text-muted);
    line-height: 1.6;
}

/* Page CTA */
.page-cta {
    padding: 100px 24px;
    text-align: center;
    background: linear-gradient(180deg, transparent 0%, rgba(129, 140, 248, 0.06) 100%);
}

.page-cta h2 {
    font-size: clamp(28px, 4vw, 40px);
    font-weight: 700;
    margin-bottom: 16px;
    letter-spacing: -0.02em;
}

.page-cta > .container > p {
    font-size: 17px;
    color: var(--text-muted);
    margin-bottom: 32px;
}

.page-cta .cta-sub {
    display: block;
    margin-top: 16px;
}

/* Other Features */
.other-features {
    padding: 80px 24px;
    border-top: 1px solid var(--border);
}

.other-features h3 {
    font-size: 20px;
    font-weight: 600;
    text-align: center;
    margin-bottom: 32px;
    color: var(--text-muted);
}

.other-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
    gap: 20px;
    max-width: 800px;
    margin: 0 auto;
}

.other-card {
    background: var(--card-bg);
    border: 1px solid var(--border);
    border-radius: 16px;
    padding: 24px;
    text-decoration: none;
    color: var(--text);
    transition: all 0.2s ease;
}

.other-card:hover {
    border-color: rgba(255,255,255,0.2);
    transform: translateY(-4px);
}

.other-card h4 {
    font-size: 16px;
    font-weight: 700;
    margin-bottom: 6px;
}

.other-card p {
    font-size: 14px;
    color: var(--text-muted);
}

/* Examples Section (Launcher) */
.examples-section {
    padding: 80px 24px;
}

.examples-section h2 {
    font-size: clamp(24px, 3vw, 32px);
    font-weight: 700;
    text-align: center;
    margin-bottom: 40px;
}

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

.example {
    background: var(--card-bg);
    border: 1px solid var(--border);
    border-radius: 12px;
    padding: 20px;
    display: flex;
    flex-direction: column;
    gap: 8px;
}

.example code {
    font-family: 'SF Mono', Monaco, monospace;
    font-size: 15px;
    color: var(--accent);
    background: rgba(129, 140, 248, 0.1);
    padding: 8px 12px;
    border-radius: 8px;
}

.example span {
    font-size: 14px;
    color: var(--text-muted);
}

/* ========== BLOG ========== */

/* Shared page styles */
.page-header {
    padding: 40px 0 48px;
    text-align: center;
}

.page-header h1 {
    font-size: clamp(32px, 5vw, 52px);
    font-weight: 800;
    margin-bottom: 16px;
    letter-spacing: -0.02em;
}

.page-header p {
    font-size: 18px;
    color: var(--text-muted);
    max-width: 650px;
    margin: 0 auto;
    line-height: 1.7;
}

.page-content {
    padding: 0 0 40px;
}

.back-link {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    color: var(--text-muted);
    text-decoration: none;
    font-size: 14px;
    padding-top: 24px;
    margin-bottom: 0;
    transition: color 0.2s;
}

.back-link:hover {
    color: var(--text);
}

/* Blog grid */
.blog-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 24px;
    max-width: 900px;
    margin: 0 auto;
}

.blog-card {
    background: var(--card-bg);
    border: 1px solid var(--border);
    border-radius: 20px;
    overflow: hidden;
    text-decoration: none;
    color: var(--text);
    transition: all 0.3s ease;
    display: flex;
    flex-direction: column;
}

.blog-card:hover {
    transform: translateY(-6px);
    border-color: rgba(129, 140, 248, 0.4);
    box-shadow: 0 20px 40px rgba(0,0,0,0.3);
}

/* Featured (first) card spans full width */
.blog-card.featured {
    grid-column: 1 / -1;
    flex-direction: row;
}

.blog-card.featured .blog-card-image {
    width: 45%;
    flex-shrink: 0;
    display: flex;
    align-items: center;
}

.blog-card.featured .blog-card-body {
    padding: 32px;
}

.blog-card.featured .blog-card-title {
    font-size: 24px;
}

.blog-card-image {
    background: linear-gradient(135deg, rgba(129, 140, 248, 0.2), rgba(167, 139, 250, 0.1));
    position: relative;
}

.blog-card-image:has(img) {
    background: none;
}

.blog-card-image picture {
    display: block;
    width: 100%;
}

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

.blog-card-image.gradient-1,
.blog-card-image.gradient-2,
.blog-card-image.gradient-3,
.blog-card-image.gradient-4,
.blog-card-image.gradient-5 {
    height: 180px;
}
.blog-card-image.gradient-1 { background: linear-gradient(135deg, rgba(129, 140, 248, 0.25), rgba(59, 130, 246, 0.15)); }
.blog-card-image.gradient-2 { background: linear-gradient(135deg, rgba(167, 139, 250, 0.25), rgba(129, 140, 248, 0.15)); }
.blog-card-image.gradient-3 { background: linear-gradient(135deg, rgba(59, 130, 246, 0.25), rgba(99, 102, 241, 0.15)); }
.blog-card-image.gradient-4 { background: linear-gradient(135deg, rgba(236, 72, 153, 0.2), rgba(129, 140, 248, 0.15)); }
.blog-card-image.gradient-5 { background: linear-gradient(135deg, rgba(34, 197, 94, 0.2), rgba(129, 140, 248, 0.15)); }

.blog-card-body {
    padding: 24px;
    flex: 1;
    display: flex;
    flex-direction: column;
}

.blog-card-meta {
    display: flex;
    align-items: center;
    gap: 12px;
    margin-bottom: 12px;
    flex-wrap: wrap;
}

.blog-category {
    display: inline-block;
    font-size: 11px;
    font-weight: 700;
    letter-spacing: 0.08em;
    text-transform: uppercase;
    color: var(--accent);
    padding: 4px 10px;
    background: rgba(129, 140, 248, 0.12);
    border-radius: 100px;
}

.blog-date,
.blog-read-time {
    font-size: 13px;
    color: var(--text-muted);
}

.blog-card-title {
    font-size: 20px;
    font-weight: 700;
    line-height: 1.3;
    margin-bottom: 10px;
    letter-spacing: -0.01em;
}

.blog-card-excerpt {
    font-size: 14px;
    color: var(--text-muted);
    line-height: 1.6;
    flex: 1;
}

/* Article page */
.article-header {
    padding: 40px 0 32px;
    text-align: center;
}

.article-header h1 {
    font-size: clamp(28px, 5vw, 44px);
    font-weight: 800;
    line-height: 1.15;
    margin-bottom: 16px;
    letter-spacing: -0.02em;
    max-width: 800px;
    margin-left: auto;
    margin-right: auto;
}

.article-header .blog-card-meta {
    justify-content: center;
    margin-bottom: 20px;
}

.article-subtitle {
    font-size: 18px;
    color: var(--text-muted);
    max-width: 650px;
    margin: 0 auto;
    line-height: 1.7;
}

.article-hero-image {
    display: block;
    width: 100%;
    max-height: 400px;
    object-fit: cover;
    margin-bottom: 32px;
    border-radius: 12px;
}

.article-content {
    max-width: 720px;
    margin: 48px auto 80px;
}

/* Prose typography */
.prose {
    font-size: 17px;
    color: var(--text-dim);
    line-height: 1.8;
}

.prose p {
    margin-bottom: 20px;
}

.prose h2 {
    font-size: clamp(24px, 3.5vw, 32px);
    font-weight: 700;
    color: var(--text);
    margin: 48px 0 16px;
    letter-spacing: -0.01em;
}

.prose h3 {
    font-size: 22px;
    font-weight: 700;
    color: var(--text);
    margin: 36px 0 12px;
}

.prose ul,
.prose ol {
    margin-bottom: 20px;
    padding-left: 24px;
}

.prose li {
    margin-bottom: 8px;
}

.prose strong {
    color: var(--text);
}

.prose a {
    color: var(--accent);
    text-decoration: underline;
    text-decoration-color: rgba(129, 140, 248, 0.4);
    transition: text-decoration-color 0.2s;
}

.prose a:hover {
    text-decoration-color: var(--accent);
}

.prose blockquote {
    border-left: 3px solid var(--accent);
    padding-left: 20px;
    margin: 24px 0;
    color: var(--text-muted);
    font-style: italic;
}

.prose code {
    font-family: 'SF Mono', Monaco, monospace;
    font-size: 0.9em;
    background: rgba(129, 140, 248, 0.1);
    padding: 2px 6px;
    border-radius: 4px;
    color: var(--accent);
}

.prose table {
    width: 100%;
    border-collapse: separate;
    border-spacing: 0;
    margin: 24px 0;
}

.prose table th {
    font-size: 12px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.08em;
    color: var(--text-muted);
    padding: 12px 16px;
    text-align: left;
    border-bottom: 1px solid var(--border);
}

.prose table td {
    font-size: 15px;
    padding: 12px 16px;
    border-bottom: 1px solid rgba(255,255,255,0.05);
    color: var(--text-dim);
}

/* Breadcrumb */
.breadcrumb {
    padding: 24px 0 0;
}

.breadcrumb ol {
    display: flex;
    align-items: center;
    gap: 8px;
    list-style: none;
    padding: 0;
    margin: 0;
    font-size: 14px;
}

.breadcrumb li {
    display: flex;
    align-items: center;
    gap: 8px;
    color: var(--text-muted);
}

.breadcrumb li:not(:last-child)::after {
    content: '›';
    color: var(--text-muted);
    opacity: 0.5;
}

.breadcrumb a {
    color: var(--text-muted);
    text-decoration: none;
    transition: color 0.2s;
}

.breadcrumb a:hover {
    color: var(--text);
}

.breadcrumb [aria-current="page"] {
    color: var(--text-dim);
    overflow: hidden;
    text-overflow: ellipsis;
    white-space: nowrap;
    max-width: 300px;
}

/* Key Takeaways */
.key-takeaways {
    background: var(--card-bg);
    border-left: 3px solid var(--accent);
    border-radius: 8px;
    padding: 24px 28px;
    margin: 32px 0;
}

.key-takeaways-title {
    font-size: 14px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.06em;
    color: var(--accent);
    margin-bottom: 14px;
}

.key-takeaways ul {
    margin: 0;
    padding-left: 18px;
}

.key-takeaways li {
    margin-bottom: 8px;
    color: var(--text-dim);
    line-height: 1.6;
}

.key-takeaways li:last-child {
    margin-bottom: 0;
}

/* FAQ Section */
.faq-section {
    margin-top: 48px;
    padding-top: 40px;
    border-top: 1px solid var(--border);
}

.faq-section h2 {
    font-size: clamp(22px, 3vw, 28px);
    font-weight: 700;
    color: var(--text);
    margin-bottom: 28px;
}

.faq-item {
    margin-bottom: 24px;
}

.faq-item h3 {
    font-size: 17px;
    font-weight: 600;
    color: var(--text);
    margin-bottom: 8px;
}

.faq-item p {
    font-size: 16px;
    color: var(--text-dim);
    line-height: 1.7;
    margin: 0;
}

/* Related articles */
.related-articles {
    padding: 60px 0;
    border-top: 1px solid var(--border);
}

.related-articles h3 {
    font-size: 20px;
    font-weight: 600;
    text-align: center;
    margin-bottom: 32px;
    color: var(--text-muted);
}

/* ========== ANIMATIONS ========== */
@keyframes fadeInUp {
    from { opacity: 0; transform: translateY(20px); }
    to { opacity: 1; transform: translateY(0); }
}

@keyframes fadeIn {
    from { opacity: 0; }
    to { opacity: 1; }
}

/* ========== RESPONSIVE ========== */

/* Tablet */
@media (max-width: 1024px) {

    .feature-section .container {
        grid-template-columns: 1fr;
        gap: 48px;
    }

    .feature-section.alt .container {
        grid-template-columns: 1fr;
    }

    .feature-visual {
        order: -1;
    }

    .why-grid {
        grid-template-columns: repeat(2, 1fr);
    }

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

    .testimonials-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .pricing-tiers {
        grid-template-columns: 1fr;
        max-width: 420px;
        margin: 0 auto;
    }

    .tier-competitor {
        display: none;
    }

    .footer-grid {
        grid-template-columns: repeat(3, 1fr);
        gap: 40px;
    }

    .footer-brand {
        grid-column: 1 / -1;
    }

    .blog-grid {
        gap: 20px;
    }
}

/* Mobile - Clean & Balanced */
@media (max-width: 768px) {
    /* Navigation */
    .nav {
        padding: 12px 16px;
    }

    .nav-container {
        justify-content: center;
    }

    .nav-links {
        display: none;
    }

    .nav-logo {
        font-size: 18px;
    }

    .nav-cta {
        display: none;
    }

    /* Hero - Balanced for mobile */
    .hero {
        min-height: 100vh;
        min-height: 100svh;
        padding: 0 20px;
        padding-bottom: 80px;
    }

    .hero-title {
        font-size: clamp(3.5rem, 18vw, 5rem);
        margin-bottom: 8px;
    }

    .hero-h1-sub {
        font-size: 0.95rem;
        margin-top: 8px;
        letter-spacing: 0.01em;
    }

    .hero-desc {
        font-size: 0.95rem;
        margin-bottom: 24px;
        line-height: 1.6;
        max-width: 320px;
        margin-left: auto;
        margin-right: auto;
    }

    .hero-desc br {
        display: none;
    }

    .hero-replaces {
        margin-bottom: 24px;
    }

    .scroll-indicator {
        bottom: 24px;
        opacity: 0.4;
    }

    .scroll-indicator span {
        font-size: 10px;
    }

    .scroll-arrow {
        width: 14px;
        height: 14px;
    }

    .btn-primary {
        padding: 16px 32px;
        font-size: 15px;
        border-radius: 12px;
    }

    .cta-sub {
        font-size: 12px;
    }

    /* Hide download buttons on mobile */
    .download-only {
        display: none !important;
    }

    .mobile-only-note {
        display: block;
        font-size: 15px;
        color: var(--text-muted);
        line-height: 1.5;
    }

    .tier-cta-primary,
    .tier-cta-secondary {
        display: none;
    }

    /* Videos */
    video {
        width: 100%;
        height: auto;
    }

    /* Showcase Grid */
    .showcase-section {
        padding: 60px 20px 80px;
    }

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

    .showcase-item:nth-child(odd) {
        border-right: none;
    }

    .showcase-item:nth-last-child(2) {
        border-bottom: 1px solid rgba(255,255,255,0.06);
    }

    .showcase-item:last-child {
        border-bottom: none;
    }

    /* Launcher Power Grid */
    .launcher-power-grid {
        grid-template-columns: repeat(2, 1fr);
    }
    .power-item:nth-child(3n) {
        border-right: 1px solid rgba(255,255,255,0.06);
    }
    .power-item:nth-child(2n) {
        border-right: none;
    }
    .power-item:nth-last-child(-n+3) {
        border-bottom: 1px solid rgba(255,255,255,0.06);
    }
    .power-item:nth-last-child(-n+2) {
        border-bottom: none;
    }
    .power-item:last-child {
        border-bottom: none;
    }

    /* Who Section */
    .who-section {
        padding: 60px 20px;
    }

    .who-section h2 {
        margin-bottom: 32px;
    }

    .who-statement {
        padding: 16px 0;
    }

    /* Feature Sections */
    .feature-section {
        padding: 60px 20px;
    }

    .feature-section .container {
        gap: 40px;
    }

    .feature-label {
        font-size: 11px;
        padding: 6px 14px;
        margin-bottom: 16px;
    }

    .feature-content h2 {
        font-size: 1.875rem;
        line-height: 1.15;
        margin-bottom: 16px;
    }

    .feature-content > p {
        font-size: 16px;
        line-height: 1.6;
        margin-bottom: 24px;
    }

    .feature-list {
        margin-bottom: 24px;
    }

    .feature-list li {
        font-size: 15px;
        padding: 10px 0 10px 24px;
        line-height: 1.5;
    }

    .feature-list li::before {
        top: 16px;
        width: 6px;
        height: 6px;
    }

    .feature-cta {
        font-size: 15px;
        font-weight: 600;
    }

    .feature-visual video,
    .feature-visual img {
        border-radius: 20px;
        box-shadow: 0 30px 60px rgba(0,0,0,0.4);
    }

    /* Why Section */
    .why-section {
        padding: 60px 20px;
    }

    .why-section h2 {
        font-size: 1.875rem;
        margin-bottom: 48px;
    }

    .why-grid {
        grid-template-columns: 1fr;
        gap: 16px;
    }

    .why-card {
        padding: 24px;
        border-radius: 20px;
        text-align: left;
        display: flex;
        gap: 20px;
        align-items: flex-start;
    }

    .why-icon {
        width: 48px;
        height: 48px;
        margin: 0;
        flex-shrink: 0;
    }

    .why-icon svg {
        width: 24px;
        height: 24px;
    }

    .why-card h4 {
        font-size: 17px;
        margin-bottom: 6px;
    }

    .why-card p {
        font-size: 14px;
        line-height: 1.5;
    }

    /* Value Stack */
    .value-stack-section {
        padding: 60px 20px;
    }

    .value-row {
        grid-template-columns: 1.2fr 1fr 0.6fr;
        padding: 12px 16px;
        font-size: 13px;
    }

    .value-header {
        font-size: 10px;
    }

    .value-stack-badge {
        font-size: 13px;
        padding: 10px 20px;
    }

    /* Testimonials */
    .testimonials-section {
        padding: 60px 20px;
    }

    .testimonials-grid {
        grid-template-columns: 1fr;
        gap: 16px;
    }

    .testimonial-card {
        padding: 24px 20px;
    }

    .stats-row {
        gap: 32px;
    }

    .stat-number {
        font-size: 24px;
    }

    .stat-label {
        font-size: 12px;
    }

    /* Pricing */
    .pricing-section {
        padding: 60px 20px;
    }

    .pricing-content h2 {
        font-size: 1.75rem;
        margin-bottom: 40px;
        line-height: 1.2;
    }

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

    .tier-competitor {
        display: none;
    }

    .tier-price {
        font-size: 32px;
    }

    /* Founder */
    .founder-section {
        padding: 60px 20px;
    }

    .founder-quote {
        font-size: 17px;
    }

    /* Email */
    .email-section {
        padding: 60px 20px;
    }

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

    .email-btn {
        width: 100%;
    }

    /* Feature Pages */
    .feature-hero {
        padding: 110px 20px 48px;
    }

    .feature-hero h1 {
        font-size: 2.25rem;
        line-height: 1.1;
    }

    .hero-desc {
        font-size: 1.05rem;
        line-height: 1.6;
        margin-bottom: 28px;
    }

    .feature-showcase {
        padding: 0 20px 60px;
    }

    .showcase-video video,
    .showcase-image img {
        border-radius: 20px;
        box-shadow: 0 30px 60px rgba(0,0,0,0.4);
    }

    /* Features Detail */
    .features-detail {
        padding: 60px 20px;
    }

    .features-detail h2 {
        font-size: 1.625rem;
        margin-bottom: 40px;
    }

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

    .feature-item {
        padding: 24px;
        border-radius: 20px;
    }

    .feature-item .feature-icon {
        width: 48px;
        height: 48px;
        margin-bottom: 16px;
    }

    .feature-item h3 {
        font-size: 18px;
        margin-bottom: 10px;
    }

    .feature-item p {
        font-size: 15px;
        line-height: 1.6;
        margin-bottom: 14px;
    }

    .replaces {
        font-size: 12px;
        padding: 5px 12px;
    }

    /* Steps */
    .how-it-works {
        padding: 60px 20px;
    }

    .how-it-works h2 {
        font-size: 1.625rem;
        margin-bottom: 40px;
    }

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

    .step-number {
        width: 44px;
        height: 44px;
        font-size: 18px;
        margin-bottom: 16px;
    }

    .step h4 {
        font-size: 17px;
        margin-bottom: 8px;
    }

    .step p {
        font-size: 15px;
        line-height: 1.5;
    }

    /* Page CTA */
    .page-cta {
        padding: 60px 20px;
    }

    .page-cta h2 {
        font-size: 1.625rem;
        margin-bottom: 12px;
    }

    .page-cta > .container > p {
        font-size: 16px;
        margin-bottom: 28px;
    }

    .page-cta .btn-primary {
        width: 100%;
        justify-content: center;
    }

    /* Other Features */
    .other-features {
        padding: 48px 20px;
    }

    .other-features h3 {
        font-size: 17px;
        margin-bottom: 24px;
    }

    .other-grid {
        grid-template-columns: 1fr;
        gap: 12px;
    }

    .other-card {
        padding: 20px 24px;
        border-radius: 16px;
    }

    .other-card h4 {
        font-size: 16px;
        margin-bottom: 4px;
    }

    .other-card p {
        font-size: 14px;
    }

    /* Examples */
    .examples-section {
        padding: 48px 20px;
    }

    .examples-section h2 {
        font-size: 1.375rem;
        margin-bottom: 28px;
    }

    .examples-grid {
        grid-template-columns: 1fr;
        gap: 12px;
    }

    .example {
        padding: 16px 20px;
        border-radius: 14px;
        flex-direction: row;
        justify-content: space-between;
        align-items: center;
    }

    .example code {
        font-size: 14px;
        padding: 8px 12px;
        border-radius: 8px;
    }

    .example span {
        font-size: 13px;
        text-align: right;
    }

    /* Blog */
    .blog-grid {
        grid-template-columns: 1fr;
        gap: 16px;
    }

    .blog-card.featured {
        flex-direction: column;
    }

    .blog-card.featured .blog-card-image {
        width: 100%;
    }

    .blog-card.featured .blog-card-title {
        font-size: 20px;
    }

    .blog-card-body {
        padding: 20px;
    }

    .page-header {
        padding: 32px 20px 32px;
    }

    .back-link {
        padding-top: 20px;
    }

    .article-header {
        padding: 32px 20px 24px;
    }

    .article-header h1 {
        font-size: 1.75rem;
    }

    .article-subtitle {
        font-size: 16px;
    }

    .article-content {
        margin: 32px auto 60px;
    }

    .related-articles {
        padding: 40px 0;
    }

    .prose h2 {
        margin-top: 36px;
    }

    .prose table th,
    .prose table td {
        padding: 10px 12px;
        font-size: 13px;
    }

    /* Footer */
    .footer {
        padding: 48px 20px 32px;
    }

    .footer-grid {
        display: grid;
        grid-template-columns: 1fr 1fr;
        gap: 32px;
    }

    .footer-brand {
        grid-column: 1 / -1;
        text-align: center;
        padding-bottom: 32px;
        border-bottom: 1px solid var(--border);
    }

    .footer-logo {
        font-size: 24px;
    }

    .footer-brand p {
        font-size: 14px;
        margin-top: 8px;
    }

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

    .footer-col h4 {
        margin-bottom: 12px;
    }

    .footer-col a {
        font-size: 14px;
    }

    .footer-bottom {
        margin-top: 32px;
        padding-top: 24px;
    }

    .footer-bottom p {
        font-size: 13px;
    }
}

/* Small Mobile */
@media (max-width: 480px) {
    .hero {
        padding: 0 16px;
        padding-bottom: 70px;
    }

    .hero-title {
        font-size: clamp(3rem, 16vw, 4rem);
    }

    .hero-h1-sub {
        font-size: 0.85rem;
    }

    .hero-desc {
        font-size: 0.9rem;
        max-width: 280px;
    }

    .hero-replaces {
        margin-bottom: 20px;
    }

    .hero-replaces a {
        font-size: 14px;
    }

    .btn-primary {
        padding: 14px 24px;
        font-size: 14px;
    }

    .cta-sub {
        font-size: 11px;
    }

    .showcase-section {
        padding: 40px 16px 60px;
    }

    .showcase-section h2 {
        font-size: 1.5rem;
    }

    .showcase-item {
        padding: 18px 20px;
    }

    .showcase-cmd {
        font-size: 13px;
    }

    .who-section {
        padding: 40px 16px;
    }

    .who-punchline {
        font-size: 17px;
    }

    .who-dismiss {
        font-size: 14px;
    }

    .feature-section {
        padding: 40px 16px;
    }

    .feature-content h2 {
        font-size: 1.5rem;
    }

    .value-stack-section {
        padding: 40px 16px;
    }

    .value-row {
        grid-template-columns: 1fr 0.6fr;
        font-size: 12px;
        padding: 10px 12px;
    }

    .value-row span:nth-child(2) {
        display: none;
    }

    .value-header span:nth-child(2) {
        display: none;
    }

    .why-card {
        flex-direction: column;
        text-align: center;
    }

    .why-icon {
        margin: 0 auto;
    }

    .stats-row {
        flex-direction: column;
        gap: 20px;
    }

    .pricing-content h2 {
        font-size: 1.5rem;
    }

    .blog-card-body {
        padding: 16px;
    }

    .blog-card-title {
        font-size: 18px;
    }

    .article-header h1 {
        font-size: 1.5rem;
    }

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

    .footer-col {
        padding: 0 20px;
    }

    .launcher-power-grid {
        grid-template-columns: 1fr;
    }
    .power-item {
        border-right: none !important;
    }
    .power-item:last-child {
        border-bottom: none;
    }
}
