/* Font Face Declarations */
@font-face {
    font-family: 'CustomFont';
    src: url('../fonts/font-light.woff2') format('woff2');
    font-weight: 300;
    font-style: normal;
    font-display: swap;
}

@font-face {
    font-family: 'CustomFont';
    src: url('../fonts/font-reg.woff2') format('woff2');
    font-weight: 400;
    font-style: normal;
    font-display: swap;
}

@font-face {
    font-family: 'CustomFont';
    src: url('../fonts/font-bold.woff2') format('woff2');
    font-weight: 700;
    font-style: normal;
    font-display: swap;
}

@font-face {
    font-family: 'CustomFont';
    src: url('../fonts/font-extrabold.woff2') format('woff2');
    font-weight: 800;
    font-style: normal;
    font-display: swap;
}

/* Reset and Base Styles */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

:root {
    /* Core vars needed by marketing pages (duplicated from layout.css for pages that only load main.css) */
    --color-primary: #ff8c00;
    --z-fixed: 300;
    --z-modal: 500;

    /* Legacy tokens */
    --text-dark: #212326;
    --text-muted: #6b7177;
    --background-light: #f6f6f7;
    --white: #ffffff;
    --border-color: #e1e3e5;
}

html {
    background-color: black;
}

body {
    font-family: 'CustomFont', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
    line-height: 1.5;
    color: var(--text-dark);
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
}

.container {
    max-width: 1400px;
    margin: 0 auto;
    padding: 0 64px;
}

/* Header */
.header {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    background: transparent;
    border-bottom: none;
    z-index: var(--z-fixed);
    transition: background 0.3s ease;
}

.header.scrolled {
    background: #000;
}

.header-container {
    max-width: 1400px;
    margin: 0 auto;
    padding: 0 64px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    height: 72px;
}

.logo {
    font-size: 26px;
    font-weight: 700;
    color: var(--color-primary);
    letter-spacing: -0.5px;
    text-decoration: none;
}

.main-nav {
    flex: 1;
    margin-left: 40px;
}

.nav-links {
    display: flex;
    list-style: none;
    gap: 8px;
}

.nav-links li a {
    display: block;
    padding: 8px 16px;
    text-decoration: none;
    color: var(--white);
    font-size: 23px;
    font-weight: 400;
    transition: color 0.2s;
    border-radius: 6px;
}

.nav-links li a:hover {
    text-decoration: underline;
    text-underline-offset: 6px;
}

.auth-buttons {
    display: flex;
    align-items: center;
    gap: 8px;
}


/* Button Styles */
.btn-login {
    display: block;
    padding: 10px 16px;
    text-decoration: none;
    color: var(--white);
    font-size: 23px;
    font-weight: 400;
    border-radius: 6px;
    transition: background 0.2s;
}

.btn-login:hover {
    background: rgba(255, 255, 255, 0.08);
}

.btn-primary {
    display: inline-block;
    color: white;
    padding: 5px 10px;
    border-radius: 12px;
    font-size: 23px;
    font-weight: 500;
    cursor: pointer;
    text-decoration: none;
    transition: background 0.2s, transform 0.1s;
    background: transparent;
    border:1px solid white;
}
.btn-primary.orange {
    background-color: rgba(255,140,0,.5) !important;
}
.btn-primary:hover {
    filter: brightness(1.1);
    background-color: rgba(255,255,255,.5);
}

.btn-primary:active {
    transform: scale(0.98);
}

.btn-large {
    padding: 14px 28px;
    font-size: 20px;
    border-radius: 10px;
}

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

.mobile-menu-toggle span {
    width: 24px;
    height: 2px;
    background: white;
}

/* Hero Section */
.hero {
    background: url('../images/space.jpg') center center / cover no-repeat;
    min-height: 100vh;
    display: flex;
    align-items: center;
}

.hero-container {
    max-width: 1400px;
    margin: 0 auto;
    padding: 0 64px;
    width: 100%;
}

.hero-content {
    max-width: 600px;
}
.hero-buttons {
    display: flex;
    flex-direction: row;
    gap: 16px;
}
.hero h1 {
    font-size: 100px;
    line-height: 1.05;
    font-weight:100;
    margin-bottom: 20px;
    color: var(--white);
    letter-spacing: -1.5px;
}

.hero-subtitle {
    font-size: 18px;
    font-weight: 400;
    color: rgba(255, 255, 255, 0.75);
    margin-bottom: 40px;
    line-height: 1.6;
}

.btn-secondary {
    display: inline-block;
    color: white;
    border-radius: 8px;
    font-weight: 500;
    cursor: pointer;
    text-decoration: none;
    transition: background 0.2s, color 0.2s;
    border: 1px solid white;
    background-color: rgba(255,140,0,.5);
}

.btn-secondary:hover {
    background: rgba(255, 255, 255, 0.15);
}

.btn-secondary:active {
    transform: scale(0.98);
}


/* Section Titles */
.section-title {
    font-size: 40px;
    font-weight: 700;
    text-align: center;
    margin-bottom: 16px;
}

.section-subtitle {
    font-size: 18px;
    color: var(--text-muted);
    text-align: center;
    margin-bottom: 48px;
}

/* Brand Promo Section */
.brand-promo-section {
    padding: 120px 64px;
    background: black;
}

.brand-promo-inner {
    max-width: 1400px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 80px;
    align-items: center;
}

.brand-promo-image {
    display: flex;
    justify-content: center;
    align-items: center;
}

.brand-promo-logo {
    width: 380px;
    height: 380px;
    background-color: var(--color-primary);
    -webkit-mask-image: url(../images/icons/logo.png);
    mask-image: url(../images/icons/logo.png);
    -webkit-mask-size: contain;
    mask-size: contain;
    -webkit-mask-repeat: no-repeat;
    mask-repeat: no-repeat;
    -webkit-mask-position: center;
    mask-position: center;
}

.brand-promo-content {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
}

.brand-promo-content h2 {
    font-size: 48px;
    font-weight: 700;
    color: white;
    letter-spacing: -1px;
    margin-bottom: 24px;
    line-height: 1.15;
}

.brand-promo-content p {
    font-size: 18px;
    color: rgba(255, 255, 255, 0.7);
    line-height: 1.7;
    margin-bottom: 20px;
}

.brand-promo-content .btn-primary {
    margin-top: 12px;
    align-self: flex-start;
}

/* Merchant Showcase */
.merchant-showcase {
    padding: 120px 0;
    background: black;
}

.merchant-showcase .container {
    max-width: 1400px;
    margin: 0 auto;
    padding: 0 64px;
}

.merchant-showcase .section-title {
    color: white;
    text-align: left;
    font-size: 48px;
    margin-bottom: 48px;
}

.showcase-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 16px;
    margin-top: 48px;
}

.showcase-item {
    position: relative;
    border-radius: 12px;
    overflow: hidden;
    aspect-ratio: 4/3;
}

.showcase-item.large {
    grid-column: span 2;
}

.showcase-item .placeholder-image {
    width: 100%;
    height: 100%;
    background: linear-gradient(145deg, #1a1a1a 0%, #2d2d2d 100%);
    border: 1px solid rgba(255, 255, 255, 0.1);
}

.merchant-name {
    position: absolute;
    bottom: 16px;
    left: 16px;
    background: rgba(0, 0, 0, 0.7);
    color: white;
    padding: 8px 16px;
    border-radius: 6px;
    font-size: 14px;
    font-weight: 500;
    backdrop-filter: blur(10px);
}

/* Pillars Section */
.pillars {
    padding: 80px 0;
    background: black;
}

.pillars > .container {
    max-width: 1400px;
    margin: 0 auto;
    padding: 0 64px;
}

.pillars-section-title {
    margin-bottom: 100px;
}

.pillars-section-title h1 {
    font-size: 56px;
    font-weight: 100;
    color: white;
    letter-spacing: -1.5px;
    line-height: 1.1;
}

.pillar-section {
    padding-top: 100px;
    opacity: 0;
    transform: translateY(20px);
    transition: opacity 0.5s ease, transform 0.5s ease;
}

.pillar-section.visible {
    opacity: 1;
    transform: translateY(0);
}

.pillar-section:last-child {
    padding-bottom: 0;
}

.pillar-title {
    font-size: 38px;
    font-weight: 300;
    color: white;
    margin-bottom: 16px;
    text-align: right;
    letter-spacing: -0.5px;
    line-height: 1.2;
}

.pillar-content {
    text-align: right;
}

.pillar-section.reverse .pillar-title {
    text-align: left;
}

.pillar-section.reverse .pillar-content {
    text-align: left;
}

.pillar-row {
    display: grid;
    grid-template-columns: 1fr 1.4fr;
    gap: 60px;
    align-items: flex-start;
}

.pillar-section.reverse .pillar-row {
    grid-template-columns: 1.4fr 1fr;
    direction: rtl;
}

.pillar-section.reverse .pillar-row > * {
    direction: ltr;
}

.pillar-content {
    padding-top: 20px;
}

.pillar-content p {
    font-size: 16px;
    font-weight: 400;
    color: rgba(255, 255, 255, 0.6);
    margin-bottom: 28px;
    line-height: 1.7;
    max-width: 380px;
    margin-left: auto;
}

.pillar-section.reverse .pillar-content p {
    margin-left: 0;
    margin-right: auto;
}

.pillar-visual .placeholder-image {
    width: 100%;
    height: 420px;
    border-radius: 12px;
    border: 1px solid rgba(255, 255, 255, 0.06);
}

.pillar-buttons {
    display: flex;
    flex-direction: row;
    align-items: center;
    justify-content: flex-end;
    gap: 16px;
}

.pillar-section.reverse .pillar-buttons {
    justify-content: flex-start;
}

/* ========================================
   AURORA BOREALIS PILLAR GRADIENTS
   Wide at the top corner (text side), tapering toward the opposite bottom corner
   Achieved by centering large ellipses exactly at the origin corner so only
   the inner quarter is visible — creating a natural wedge/ray shape.
   ======================================== */

/* Pillar 1 — "a thought" — text LEFT → origin: top-left — cyan / indigo */
.pillars > .container .pillar-section:nth-child(2) {
    background:
        radial-gradient(ellipse 110% 80% at 0% 0%, rgba(0, 235, 190, 0.24) 0%, transparent 65%),
        radial-gradient(ellipse 80% 110% at 0% 0%, rgba(55, 85, 255, 0.14) 0%, transparent 58%);
}

/* Pillar 2 — "a vision" — text RIGHT → origin: top-right — violet / blue */
.pillars > .container .pillar-section:nth-child(3) {
    background:
        radial-gradient(ellipse 110% 80% at 100% 0%, rgba(160, 45, 255, 0.22) 0%, transparent 65%),
        radial-gradient(ellipse 80% 110% at 100% 0%, rgba(0, 175, 255, 0.14) 0%, transparent 58%);
}

/* Pillar 3 — "an action" — text LEFT → origin: top-left — green / teal */
.pillars > .container .pillar-section:nth-child(4) {
    background:
        radial-gradient(ellipse 110% 80% at 0% 0%, rgba(35, 255, 125, 0.21) 0%, transparent 65%),
        radial-gradient(ellipse 80% 110% at 0% 0%, rgba(0, 210, 220, 0.13) 0%, transparent 58%);
}

/* Pillar 4 — "a platform" — text RIGHT → origin: top-right — magenta / purple */
.pillars > .container .pillar-section:nth-child(5) {
    background:
        radial-gradient(ellipse 110% 80% at 100% 0%, rgba(230, 40, 195, 0.20) 0%, transparent 65%),
        radial-gradient(ellipse 80% 110% at 100% 0%, rgba(85, 25, 215, 0.14) 0%, transparent 58%);
}

/* Pillar 5 — "a message" — text LEFT → origin: top-left — sky blue / cyan */
.pillars > .container .pillar-section:nth-child(6) {
    background:
        radial-gradient(ellipse 110% 80% at 0% 0%, rgba(20, 155, 255, 0.23) 0%, transparent 65%),
        radial-gradient(ellipse 80% 110% at 0% 0%, rgba(0, 238, 195, 0.13) 0%, transparent 58%);
}

/* Pillar 6 — "to create something" — text RIGHT → origin: top-right — teal / violet */
.pillars > .container .pillar-section:nth-child(7) {
    background:
        radial-gradient(ellipse 110% 80% at 100% 0%, rgba(0, 222, 182, 0.22) 0%, transparent 65%),
        radial-gradient(ellipse 80% 110% at 100% 0%, rgba(125, 30, 220, 0.15) 0%, transparent 58%);
}

.learn-more {
    color: white;
    text-decoration: none;
    font-size: 18px;
    font-weight: 100;
    display: inline-flex;
    align-items: center;
    gap: 6px;
    padding: 15px 30px;
    border-radius: 20px;
    background: rgba(255, 255, 255, 0);
    border: 1px solid rgba(255, 255, 255, 1);
    transition: all 0.2s ease;
}

.learn-more:hover {
    background: rgba(255, 255, 255, 0.12);
    border-color: rgba(255, 255, 255, 0.25);
}

.contact-us {
    color: white;
    background-color: rgba(255,144,0,.3);
    text-decoration: none;
    font-size: 18px;
    font-weight: 100;
    display: inline-flex;
    align-items: center;
    gap: 6px;
    padding: 15px 30px;
    transition: color 0.2s ease;
    border:1px solid white;
    border-radius: 20px;
}

.contact-us:hover {
    color: white;
}

/* Developer Section */
.developer-section {
    padding: 120px 0;
    background: #0a0a0a;
    color: var(--white);
}

.developer-section .container {
    max-width: 1400px;
    margin: 0 auto;
    padding: 0 64px;
}

.developer-section .section-title,
.developer-section .section-subtitle {
    color: var(--white);
}

.developer-section .section-title {
    text-align: left;
    font-size: 48px;
}

.developer-section .section-subtitle {
    text-align: left;
}

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

.feature-card {
    background: rgba(255, 255, 255, 0.05);
    padding: 40px;
    border-radius: 16px;
    border: 1px solid rgba(255, 255, 255, 0.1);
    transition: transform 0.3s ease, background 0.3s ease;
}

.feature-card:hover {
    transform: translateY(-4px);
    background: rgba(255, 255, 255, 0.08);
}

.feature-icon {
    width: 56px;
    height: 56px;
    background: var(--color-primary);
    border-radius: 12px;
    margin-bottom: 24px;
}

.feature-card h4 {
    font-size: 20px;
    margin-bottom: 12px;
    color: white;
}

.feature-card p {
    color: rgba(255, 255, 255, 0.7);
    font-size: 16px;
}

/* Stats Section */
.stats-section {
    padding: 120px 0;
    background: black;
}

.stats-section .container {
    max-width: 1400px;
    margin: 0 auto;
    padding: 0 64px;
}

.stats-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 48px;
    text-align: center;
}

.stat-card {
    padding: 40px;
    background: rgba(255, 255, 255, 0.03);
    border-radius: 16px;
    border: 1px solid rgba(255, 255, 255, 0.08);
}

.stat-number {
    display: block;
    font-size: 72px;
    font-weight: 700;
    color: var(--color-primary);
    margin-bottom: 12px;
    letter-spacing: -2px;
}

.stat-label {
    font-size: 16px;
    color: rgba(255, 255, 255, 0.6);
    line-height: 1.5;
}

/* Testimonial Section */
.testimonial-section {
    padding: 120px 0;
    background: #0a0a0a;
}

.testimonial-section .container {
    max-width: 1400px;
    margin: 0 auto;
    padding: 0 64px;
}

.testimonial-card {
    max-width: 900px;
    margin: 0 auto;
    text-align: center;
}

.testimonial-card blockquote {
    font-size: 32px;
    font-weight: 400;
    color: white;
    line-height: 1.5;
    margin-bottom: 40px;
    font-style: italic;
}

.testimonial-author {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 16px;
}

.author-avatar {
    width: 56px;
    height: 56px;
    background: linear-gradient(135deg, var(--color-primary) 0%, #ff8c00 100%);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-weight: 600;
    font-size: 18px;
}

.author-info {
    text-align: left;
}

.author-name {
    display: block;
    font-weight: 600;
    font-size: 16px;
    color: white;
}

.author-title {
    color: rgba(255, 255, 255, 0.6);
    font-size: 14px;
}

/* AI Section */
.ai-section {
    padding: 120px 0;
    background: black;
}

.ai-section .container {
    max-width: 1400px;
    margin: 0 auto;
    padding: 0 64px;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 80px;
    align-items: center;
}

/* Badge */
.badge {
    display: inline-block;
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    color: var(--white);
    padding: 8px 16px;
    border-radius: 20px;
    font-size: 14px;
    font-weight: 600;
    margin-bottom: 16px;
}

.ai-content h2 {
    font-size: 48px;
    font-weight: 700;
    margin-bottom: 20px;
    color: white;
    letter-spacing: -1px;
}

.ai-content p {
    font-size: 18px;
    color: rgba(255, 255, 255, 0.7);
    margin-bottom: 32px;
    line-height: 1.7;
}

.ai-visual .placeholder-image {
    width: 100%;
    height: 450px;
    background: linear-gradient(145deg, var(--color-primary) 0%, #ff6600 100%);
    border-radius: 16px;
}
.placeholder-image.square {
    height: 450px;
    width:450px !important;
    float:right;
}
/* Setup Section */
.setup-section {
    padding: 120px 0;
    background: #0a0a0a;
}

.setup-section .container {
    max-width: 1400px;
    margin: 0 auto;
    padding: 0 64px;
}

.setup-section .section-title {
    color: white;
    text-align: left;
    font-size: 48px;
}

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

.step-card {
    padding: 40px;
    border-radius: 16px;
    text-align: center;
    background: rgba(255, 255, 255, 0.03);
    border: 1px solid rgba(255, 255, 255, 0.08);
    transition: transform 0.3s ease;
}

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

.step-number {
    display: inline-block;
    width: 40px;
    height: 40px;
    background: var(--color-primary);
    color: var(--white);
    border-radius: 50%;
    line-height: 40px;
    font-weight: 700;
    font-size: 16px;
    margin-bottom: 20px;
}

.step-icon {
    width: 72px;
    height: 72px;
    background: rgba(255, 165, 0, 0.1);
    border-radius: 16px;
    margin: 0 auto 24px;
}

.step-card h4 {
    font-size: 22px;
    margin-bottom: 12px;
    color: white;
}

.step-card p {
    color: rgba(255, 255, 255, 0.6);
    font-size: 15px;
    line-height: 1.6;
}

/* Final CTA */
.final-cta {
    padding: 140px 0;
    background: linear-gradient(145deg, #1a0a00 0%, #2d1500 50%, #0a0a0a 100%);
    text-align: center;
}

.final-cta .container {
    max-width: 1400px;
    margin: 0 auto;
    padding: 0 64px;
}

.final-cta h2 {
    font-size: 52px;
    font-weight: 700;
    margin-bottom: 20px;
    color: white;
    letter-spacing: -1px;
}

.final-cta p {
    font-size: 18px;
    color: rgba(255, 255, 255, 0.6);
    margin-bottom: 40px;
}

.cta-buttons {
    display: flex;
    justify-content: center;
    gap: 16px;
    flex-wrap: wrap;
}

.email-input {
    padding: 14px 24px;
    border: 1px solid rgba(255, 255, 255, 0.2);
    border-radius: 10px;
    font-size: 16px;
    width: 320px;
    max-width: 100%;
    background: rgba(255, 255, 255, 0.05);
    color: white;
    transition: border-color 0.2s;
}

.email-input::placeholder {
    color: rgba(255, 255, 255, 0.4);
}

.email-input:focus {
    outline: none;
    border-color: var(--color-primary);
}

/* Footer */
.footer {
    background: #050505;
    color: var(--white);
    padding: 80px 0 40px;
}

.footer .container {
    max-width: 1400px;
    margin: 0 auto;
    padding: 0 64px;
}

.footer-grid {
    display: grid;
    grid-template-columns: repeat(5, 1fr);
    gap: 32px;
    margin-bottom: 48px;
}

.footer-column h5 {
    font-size: 14px;
    font-weight: 700;
    margin-bottom: 16px;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.footer-column ul {
    list-style: none;
}

.footer-column li {
    margin-bottom: 8px;
}

.footer-column a {
    color: rgba(255, 255, 255, 0.7);
    text-decoration: none;
    font-size: 14px;
    transition: color 0.2s;
}

.footer-column a:hover {
    color: var(--white);
}

.footer-bottom {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding-top: 32px;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
}

.footer-legal {
    display: flex;
    gap: 24px;
    font-size: 14px;
    color: rgba(255, 255, 255, 0.7);
}

.footer-legal a {
    color: rgba(255, 255, 255, 0.7);
    text-decoration: none;
}

.footer-legal a:hover {
    color: var(--white);
}

.footer-social {
    display: flex;
    gap: 16px;
}

.social-icon {
    width: 36px;
    height: 36px;
    background: rgba(255, 255, 255, 0.1);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--white);
    text-decoration: none;
    font-size: 12px;
    font-weight: 600;
    transition: background 0.2s;
}

.social-icon:hover {
    background: rgba(255, 255, 255, 0.2);
}

/* Responsive Design */
@media (max-width: 1200px) {
    .container,
    .header-container,
    .hero-container,
    .pillars > .container,
    .merchant-showcase .container,
    .developer-section .container,
    .stats-section .container,
    .testimonial-section .container,
    .ai-section .container,
    .setup-section .container,
    .final-cta .container,
    .footer .container {
        padding: 0 40px;
    }

    .pillars {
        padding: 100px 0;
    }
}

@media (max-width: 1024px) {
    .features-grid,
    .stats-grid,
    .steps-grid {
        grid-template-columns: repeat(2, 1fr);
    }

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

    .pillar-row,
    .pillar-section.reverse .pillar-row {
        gap: 48px;
    }
}

@media (max-width: 768px) {
    .container,
    .header-container,
    .hero-container,
    .pillars > .container,
    .merchant-showcase .container,
    .developer-section .container,
    .stats-section .container,
    .testimonial-section .container,
    .ai-section .container,
    .setup-section .container,
    .final-cta .container,
    .footer .container {
        padding: 0 24px;
    }

    .main-nav,
    .auth-buttons {
        display: none;
    }

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

    .hero h1 {
        font-size: 42px;
    }

    .pillars-section-title h1 {
        font-size: 36px;
    }

    .pillar-title {
        font-size: 32px;
    }

    .pillar-section {
        margin-bottom: 80px;
    }

    .hero-buttons {
        flex-direction: column;
        align-items: flex-start;
    }

    .email-input {
        width: 100%;
    }

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

    .showcase-item.large {
        grid-column: span 1;
    }

    .pillar-row,
    .pillar-section.reverse .pillar-row {
        grid-template-columns: 1fr;
        direction: ltr;
        gap: 32px;
    }

    .brand-promo-section {
        padding: 80px 24px;
    }

    .brand-promo-inner {
        grid-template-columns: 1fr;
        gap: 40px;
    }

    .brand-promo-logo {
        width: 240px;
        height: 240px;
    }

    .brand-promo-content h2 {
        font-size: 32px;
    }

    .pillar-visual .placeholder-image {
        height: 300px;
    }

    .pillar-buttons {
        flex-direction: column;
        align-items: flex-start;
        gap: 12px;
    }

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

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

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

    .footer-bottom {
        flex-direction: column;
        gap: 24px;
        text-align: center;
    }

    .section-title {
        font-size: 32px;
    }

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

    .final-cta h2 {
        font-size: 32px;
    }
}

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

    .footer-legal {
        flex-direction: column;
        gap: 8px;
    }
}

/* Mobile Menu */
.mobile-menu {
    display: none;
    position: fixed;
    top: 72px;
    left: 0;
    right: 0;
    background: #000;
    padding: 24px;
    z-index: var(--z-modal);
}

.mobile-menu.active {
    display: block;
}

.mobile-nav-links {
    list-style: none;
}

.mobile-nav-links li {
    margin-bottom: 16px;
}

.mobile-nav-link {
    color: white;
    text-decoration: none;
    font-size: 18px;
}

.mobile-cta {
    margin-top: 24px;
    padding-top: 24px;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
}

/* Nav link style for dark theme */
.nav-link {
    color: white;
    text-decoration: none;
    font-size: 16px;
    padding: 8px 16px;
    transition: color 0.2s;
}

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

/* ==========================================
   Additional Dark Theme Component Styles
   ========================================== */

/* Page Header */
.page-header {
    padding: 140px 0 80px;
    background: linear-gradient(145deg, #0a0a0a 0%, #1a1a1a 100%);
    text-align: center;
}

.page-header h1 {
    font-size: 48px;
    font-weight: 700;
    color: white;
    margin-bottom: 16px;
    letter-spacing: -1px;
}

.page-header p {
    font-size: 18px;
    color: rgba(255, 255, 255, 0.6);
    max-width: 600px;
    margin: 0 auto;
}

/* Category Cards */
.category-card {
    display: block;
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 16px;
    padding: 32px;
    text-align: center;
    text-decoration: none;
    transition: transform 0.3s ease, background 0.3s ease, border-color 0.3s ease;
}

.category-card:hover {
    transform: translateY(-4px);
    background: rgba(255, 255, 255, 0.08);
    border-color: var(--color-primary);
}

.category-icon {
    font-size: 48px;
    margin-bottom: 16px;
}

.category-title {
    font-size: 20px;
    font-weight: 600;
    color: white;
    margin-bottom: 8px;
}

.category-description {
    font-size: 14px;
    color: rgba(255, 255, 255, 0.6);
    line-height: 1.5;
}

/* Product Cards */
.product-card {
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 16px;
    overflow: hidden;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.product-card:hover {
    transform: translateY(-4px);
    box-shadow: 0 16px 48px rgba(255, 140, 0, 0.15);
}

.product-image {
    position: relative;
    aspect-ratio: 1/1;
    background: linear-gradient(145deg, #1a1a1a 0%, #2d2d2d 100%);
}

.product-image-placeholder {
    width: 100%;
    height: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: rgba(255, 255, 255, 0.3);
    font-size: 14px;
}

.product-badge {
    position: absolute;
    top: 12px;
    left: 12px;
    background: var(--color-primary);
    color: white;
    padding: 4px 12px;
    border-radius: 20px;
    font-size: 12px;
    font-weight: 600;
    text-transform: uppercase;
}

.product-info {
    padding: 20px;
}

.product-creator {
    font-size: 12px;
    color: rgba(255, 255, 255, 0.5);
    margin-bottom: 4px;
}

.product-name {
    font-size: 16px;
    font-weight: 600;
    color: white;
    margin-bottom: 8px;
    line-height: 1.3;
}

.product-price {
    font-size: 18px;
    font-weight: 700;
    color: var(--color-primary);
    margin-bottom: 16px;
}

/* Section Utilities - Dark Theme Override */
.section-gray {
    background: #0a0a0a !important;
}

.py-12 { padding-top: 48px; padding-bottom: 48px; }
.py-24 { padding-top: 96px; padding-bottom: 96px; }

/* Section Header */
.section-header {
    text-align: center;
    margin-bottom: 48px;
}

.section-header .section-title {
    color: white;
}

.section-header .section-subtitle {
    color: rgba(255, 255, 255, 0.6);
}

/* Grid Utilities */
.grid {
    display: grid;
}

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

.gap-4 { gap: 16px; }
.gap-6 { gap: 24px; }
.gap-8 { gap: 32px; }

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

@media (min-width: 1024px) {
    .lg\:grid-cols-3 { grid-template-columns: repeat(3, 1fr); }
    .lg\:grid-cols-4 { grid-template-columns: repeat(4, 1fr); }
}

/* Text Utilities - Dark Theme */
.text-gray-500 { color: rgba(255, 255, 255, 0.5); }
.text-gray-600 { color: rgba(255, 255, 255, 0.6); }
.text-gray-700 { color: rgba(255, 255, 255, 0.7); }
.text-primary { color: var(--color-primary); }

.text-center { text-align: center; }
.text-sm { font-size: 14px; }
.text-2xl { font-size: 24px; }

.font-semibold { font-weight: 600; }
.font-bold { font-weight: 700; }

/* Spacing Utilities */
.mb-2 { margin-bottom: 8px; }
.mb-3 { margin-bottom: 12px; }
.mb-4 { margin-bottom: 16px; }
.mb-6 { margin-bottom: 24px; }
.mb-8 { margin-bottom: 32px; }
.mb-12 { margin-bottom: 48px; }
.mt-4 { margin-top: 16px; }
.mt-6 { margin-top: 24px; }
.mt-12 { margin-top: 48px; }
.mx-auto { margin-left: auto; margin-right: auto; }
.max-w-2xl { max-width: 672px; }
.max-w-5xl { max-width: 1024px; }

/* Two Column Layout */
.two-col-layout {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 64px;
    align-items: center;
}

@media (max-width: 768px) {
    .two-col-layout {
        grid-template-columns: 1fr;
        gap: 40px;
    }
}

.two-col-layout h2 {
    font-size: 36px;
    font-weight: 700;
    color: white;
    margin-bottom: 16px;
}

.two-col-layout p {
    color: rgba(255, 255, 255, 0.7);
    line-height: 1.7;
}

.two-col-layout ul {
    list-style: disc;
    margin-left: 24px;
    color: rgba(255, 255, 255, 0.7);
}

.two-col-layout li {
    margin-bottom: 12px;
}

/* Button Block */
.btn-block {
    display: block;
    width: 100%;
    text-align: center;
}

.btn-sm {
    padding: 8px 16px;
    font-size: 14px;
}

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

/* Stat Component - Dark Theme */
.stat {
    text-align: center;
    padding: 24px;
}

.stat-value {
    font-size: 32px;
    font-weight: 700;
    color: var(--color-primary);
    margin-bottom: 4px;
}

.stat-label {
    font-size: 12px;
    color: rgba(255, 255, 255, 0.5);
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

/* Testimonial Cards - Dark Theme */
.testimonial {
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 16px;
    padding: 32px;
}

.testimonial-quote {
    font-size: 16px;
    color: rgba(255, 255, 255, 0.8);
    line-height: 1.6;
    margin-bottom: 24px;
    font-style: italic;
}

.testimonial-quote::before {
    content: '"';
}

.testimonial-quote::after {
    content: '"';
}

.testimonial-author-name {
    font-weight: 600;
    color: white;
    font-size: 14px;
}

.testimonial-author-title {
    font-size: 12px;
    color: rgba(255, 255, 255, 0.5);
}

/* Feature Card Icon */
.feature-card-icon {
    width: 56px;
    height: 56px;
    background: var(--color-primary);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-size: 20px;
    font-weight: 700;
}

.feature-card-title {
    font-size: 18px;
    font-weight: 600;
    color: white;
    margin-bottom: 8px;
}

.feature-card-text {
    font-size: 14px;
    color: rgba(255, 255, 255, 0.6);
    line-height: 1.5;
}

/* Footer - Legacy Support */
.footer-content {
    display: grid;
    grid-template-columns: 2fr 1fr 1fr 1fr;
    gap: 48px;
    margin-bottom: 48px;
}

@media (max-width: 768px) {
    .footer-content {
        grid-template-columns: 1fr 1fr;
    }
}

@media (max-width: 480px) {
    .footer-content {
        grid-template-columns: 1fr;
    }
}

.footer-section h3 {
    font-size: 14px;
    font-weight: 700;
    color: white;
    margin-bottom: 16px;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.footer-description {
    font-size: 14px;
    color: rgba(255, 255, 255, 0.6);
    line-height: 1.6;
}

.footer-links {
    list-style: none;
}

.footer-links li {
    margin-bottom: 8px;
}

.footer-link {
    color: rgba(255, 255, 255, 0.6);
    text-decoration: none;
    font-size: 14px;
    transition: color 0.2s;
}

.footer-link:hover {
    color: white;
}

.footer-copyright {
    color: rgba(255, 255, 255, 0.5);
    font-size: 14px;
}

.social-link {
    color: rgba(255, 255, 255, 0.6);
    text-decoration: none;
    font-size: 14px;
    transition: color 0.2s;
}

.social-link:hover {
    color: white;
}

/* Search Bar - Dark Theme */
.header-search {
    display: none;
}

/* Dropdown Menu - Dark Theme */
.nav-item-dropdown {
    position: relative;
}

.dropdown-menu {
    position: absolute;
    top: 100%;
    left: 0;
    background: #1a1a1a;
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 12px;
    padding: 8px;
    min-width: 200px;
    opacity: 0;
    visibility: hidden;
    transform: translateY(-8px);
    transition: all 0.2s ease;
}

.nav-item-dropdown:hover .dropdown-menu {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
}

.dropdown-link {
    display: block;
    padding: 10px 16px;
    color: rgba(255, 255, 255, 0.8);
    text-decoration: none;
    border-radius: 8px;
    font-size: 14px;
    transition: background 0.2s;
}

.dropdown-link:hover {
    background: rgba(255, 255, 255, 0.1);
    color: white;
}

/* CTA Section */
.cta-section {
    background: linear-gradient(145deg, #1a0a00 0%, #2d1500 100%);
    border-radius: 24px;
    padding: 64px;
    text-align: center;
}

.cta-section h2 {
    font-size: 36px;
    font-weight: 700;
    color: white;
    margin-bottom: 16px;
}

.cta-section p {
    font-size: 18px;
    color: rgba(255, 255, 255, 0.6);
    margin-bottom: 32px;
}

/* Flex Utilities */
.flex { display: flex; }
.flex-col { flex-direction: column; }
.justify-center { justify-content: center; }
.sm\:flex-row { }
@media (min-width: 640px) {
    .sm\:flex-row { flex-direction: row; }
}

/* White Button Variants */
.btn-white {
    display: inline-block;
    background: white;
    color: #0a0a0a;
    padding: 14px 28px;
    border-radius: 10px;
    font-size: 16px;
    font-weight: 600;
    text-decoration: none;
    transition: background 0.2s, transform 0.1s;
}

.btn-white:hover {
    background: rgba(255, 255, 255, 0.9);
}

.btn-outline-white {
    display: inline-block;
    background: transparent;
    color: white;
    padding: 14px 28px;
    border: 2px solid white;
    border-radius: 10px;
    font-size: 16px;
    font-weight: 600;
    text-decoration: none;
    transition: background 0.2s;
}

.btn-outline-white:hover {
    background: rgba(255, 255, 255, 0.1);
}

.btn-outline {
    display: inline-block;
    background: transparent;
    color: white;
    padding: 14px 28px;
    border: 2px solid rgba(255, 255, 255, 0.3);
    border-radius: 10px;
    font-size: 16px;
    font-weight: 500;
    text-decoration: none;
    transition: border-color 0.2s, background 0.2s;
}

.btn-outline:hover {
    border-color: var(--color-primary);
    background: rgba(255, 140, 0, 0.1);
}

.btn-xl {
    padding: 18px 36px;
    font-size: 18px;
}

/* Card Component - Dark Theme */
.card {
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 16px;
    overflow: hidden;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.card:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 32px rgba(255, 140, 0, 0.1);
}

.card-body {
    padding: 32px;
}

.card-title {
    font-size: 20px;
    font-weight: 600;
    color: white;
    margin-bottom: 8px;
}

.card-text {
    color: rgba(255, 255, 255, 0.6);
    font-size: 14px;
    line-height: 1.5;
}

/* Max Width Utilities */
.max-w-4xl {
    max-width: 896px;
}

/* Form Styles - Dark Theme */
.form-group {
    margin-bottom: 24px;
}

.form-label {
    display: block;
    color: rgba(255, 255, 255, 0.8);
    font-size: 14px;
    font-weight: 500;
    margin-bottom: 8px;
}

.form-input,
.form-textarea {
    width: 100%;
    padding: 14px 16px;
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(255, 255, 255, 0.2);
    border-radius: 10px;
    color: white;
    font-size: 16px;
    transition: border-color 0.2s, box-shadow 0.2s;
}

.form-input::placeholder,
.form-textarea::placeholder {
    color: rgba(255, 255, 255, 0.4);
}

.form-input:focus,
.form-textarea:focus {
    outline: none;
    border-color: var(--color-primary);
    box-shadow: 0 0 0 3px rgba(255, 140, 0, 0.15);
}

.form-textarea {
    min-height: 120px;
    resize: vertical;
}

/* Alert Components - Dark Theme */
.alert {
    padding: 16px 20px;
    border-radius: 12px;
    margin-bottom: 24px;
}

.alert-error {
    background: rgba(255, 71, 87, 0.15);
    border: 1px solid rgba(255, 71, 87, 0.3);
    color: #ff6b6b;
}

.alert-success {
    background: rgba(149, 191, 71, 0.15);
    border: 1px solid rgba(149, 191, 71, 0.3);
    color: #95bf47;
}

/* Code Block - Dark Theme */
.code-block {
    background: #1a1a1a;
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 12px;
    padding: 24px;
    overflow-x: auto;
}

.code-block code {
    color: #95bf47;
    font-family: 'Monaco', 'Menlo', monospace;
    font-size: 14px;
    line-height: 1.6;
}

/* Pricing Card - Dark Theme */
.pricing-card {
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 20px;
    padding: 48px;
    text-align: center;
}

.pricing-card.featured {
    border-color: var(--color-primary);
    background: rgba(255, 140, 0, 0.1);
}

.pricing-value {
    font-size: 64px;
    font-weight: 700;
    color: white;
    line-height: 1;
}

.pricing-rate {
    font-size: 48px;
    font-weight: 700;
    color: var(--color-primary);
}

/* Table Component - Dark Theme */
.table-wrapper {
    overflow-x: auto;
    border-radius: 12px;
    border: 1px solid rgba(255, 255, 255, 0.1);
}

.table {
    width: 100%;
    border-collapse: collapse;
}

.table th,
.table td {
    padding: 16px 20px;
    text-align: left;
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

.table th {
    background: rgba(255, 255, 255, 0.05);
    color: rgba(255, 255, 255, 0.7);
    font-weight: 600;
    font-size: 12px;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.table td {
    color: rgba(255, 255, 255, 0.8);
}

.table tbody tr:hover {
    background: rgba(255, 255, 255, 0.03);
}

/* Icon Container */
.icon-box {
    width: 64px;
    height: 64px;
    background: rgba(255, 140, 0, 0.1);
    border-radius: 16px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 28px;
    margin-bottom: 20px;
}

/* Inline Code */
code {
    background: rgba(255, 140, 0, 0.1);
    color: var(--color-primary);
    padding: 2px 6px;
    border-radius: 4px;
    font-family: 'Monaco', 'Menlo', monospace;
    font-size: 0.9em;
}

/* FAQ Styles */
.faq-item {
    background: rgba(255, 255, 255, 0.03);
    border: 1px solid rgba(255, 255, 255, 0.08);
    border-radius: 12px;
    margin-bottom: 16px;
}

.faq-question {
    padding: 20px 24px;
    color: white;
    font-weight: 600;
    cursor: pointer;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.faq-answer {
    padding: 0 24px 20px;
    color: rgba(255, 255, 255, 0.6);
    line-height: 1.6;
}

/* Comparison Table Icons */
.check-icon {
    color: #95bf47;
}

.x-icon {
    color: rgba(255, 255, 255, 0.3);
}

/* Hero Banner for Sub-pages */
.hero-banner {
    padding: 120px 0 80px;
    background: linear-gradient(145deg, #0a0a0a 0%, #1a1a1a 100%);
    text-align: center;
}

.hero-banner h1 {
    font-size: 56px;
    font-weight: 700;
    color: white;
    margin-bottom: 20px;
    letter-spacing: -1px;
}

.hero-banner p {
    font-size: 20px;
    color: rgba(255, 255, 255, 0.6);
    max-width: 700px;
    margin: 0 auto;
}
