:root {
    /* Color Palette */
    --bg-main: #060606;
    --bg-card: #111111;
    --bg-card-hover: #161616;

    --accent: #CCFF00;
    /* High voltage lime */
    --accent-hover: #b3e600;

    --text-primary: #FFFFFF;
    --text-secondary: #888888;
    --text-tertiary: #444444;

    --border: rgba(255, 255, 255, 0.08);
    --border-hover: rgba(255, 255, 255, 0.2);

    /* Typography */
    --font-display: 'Plus Jakarta Sans', sans-serif;
    --font-body: 'Inter', sans-serif;

    /* Layout */
    --width-container: 1200px;
    --nav-height: 80px;
}

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

html {
    scroll-behavior: smooth;
}

body {
    background-color: var(--bg-main);
    color: var(--text-primary);
    font-family: var(--font-body);
    font-size: 16px;
    line-height: 1.5;
    overflow-x: hidden;
    -webkit-font-smoothing: antialiased;
}

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

ul {
    list-style: none;
}

/* Utilities */
.container {
    max-width: var(--width-container);
    margin: 0 auto;
    padding: 0 2rem;
}

.highlight {
    color: var(--accent);
}

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

/* Buttons */
.btn-primary {
    background: var(--accent);
    color: #000;
    font-weight: 700;
    font-family: var(--font-display);
    padding: 0.8rem 1.5rem;
    border-radius: 8px;
    transition: transform 0.2s, background 0.2s;
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
}

.btn-primary:hover {
    background: var(--accent-hover);
    transform: translateY(-2px);
}

.btn-primary.small {
    padding: 0.6rem 1.2rem;
    font-size: 0.9rem;
}

.btn-primary.large {
    padding: 1rem 2.5rem;
    font-size: 1.1rem;
}

.btn-outline {
    background: transparent;
    border: 1px solid var(--border);
    color: var(--text-secondary);
    padding: 0.8rem 1.5rem;
    border-radius: 8px;
    font-weight: 600;
    transition: all 0.2s;
}

.btn-outline:hover {
    border-color: var(--text-primary);
    color: var(--text-primary);
}

.btn-login {
    color: var(--text-secondary);
    font-weight: 600;
    transition: color 0.2s;
}

.btn-login:hover {
    color: var(--text-primary);
}

.full {
    width: 100%;
    justify-content: center;
    text-align: center;
    display: flex;
}

/* Navigation */
.navbar {
    height: var(--nav-height);
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    z-index: 1000;
    border-bottom: 1px solid var(--border);
    backdrop-filter: blur(12px);
    background: rgba(6, 6, 6, 0.7);
}

.nav-container {
    max-width: var(--width-container);
    margin: 0 auto;
    height: 100%;
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 0 2rem;
}

.logo {
    display: flex;
    align-items: center;
    gap: 0.8rem;
}

.logo-mark {
    width: 24px;
    height: 24px;
    background: var(--accent);
    border-radius: 4px;
    transform: rotate(45deg);
}

.logo-text {
    font-family: var(--font-display);
    font-weight: 800;
    font-size: 1.25rem;
    letter-spacing: -0.02em;
}

.nav-center {
    display: flex;
    gap: 2rem;
}

.nav-center a {
    color: var(--text-secondary);
    font-weight: 500;
    font-size: 0.95rem;
    transition: color 0.2s;
}

.nav-center a:hover {
    color: var(--text-primary);
}

.nav-right {
    display: flex;
    align-items: center;
    gap: 1.5rem;
}

/* Hero Section */
.hero {
    padding-top: calc(var(--nav-height) + 6rem);
    position: relative;
    overflow: hidden;
    min-height: 100vh;
}

.hero-container {
    text-align: center;
    position: relative;
    z-index: 10;
}

.hook-badge {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid var(--border);
    padding: 0.5rem 1rem;
    border-radius: 100px;
    margin-bottom: 2rem;
}

.dot {
    width: 8px;
    height: 8px;
    background: var(--accent);
    border-radius: 50%;
    box-shadow: 0 0 10px var(--accent);
}

.hook-text {
    font-size: 0.9rem;
    color: var(--text-primary);
    font-weight: 500;
}

.hero-heading {
    font-family: var(--font-display);
    font-size: 4.5rem;
    line-height: 1.1;
    font-weight: 800;
    letter-spacing: -0.03em;
    margin-bottom: 2rem;
    display: flex;
    flex-direction: column;
}

.hero-heading span {
    display: block;
}

.hero-desc {
    font-size: 1.25rem;
    color: var(--text-secondary);
    max-width: 600px;
    margin: 0 auto 3rem auto;
    line-height: 1.6;
}

.hero-cta-group {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 1rem;
}

.trust-text {
    font-size: 0.85rem;
    color: var(--text-tertiary);
}

.accent-text {
    color: var(--text-secondary);
}

/* Dashboard Stage (3D) */
.dashboard-stage {
    margin-top: 6rem;
    height: 700px;
    /* Space for the 3D element */
    position: relative;
    perspective: 1200px;
    overflow: visible;
}

.dashboard-perspective {
    width: 1100px;
    height: 650px;
    margin: 0 auto;
    position: relative;
    transform-style: preserve-3d;
}

/* Dashboard Interface 3D */
.dashboard-interface {
    width: 100%;
    /* max-width: 900px; */
    /* Let it fill container */
    aspect-ratio: 16/10;
    background: #0a0a0a;
    border-radius: 12px;
    border: 1px solid #333;
    display: flex;
    overflow: hidden;
    position: relative;
    box-shadow: 0 25px 50px -12px rgba(0, 0, 0, 0.5);
    transform-style: preserve-3d;
    backface-visibility: hidden;
    outline: 1px solid transparent;
    /* Anti-aliasing fix */
}

/* Sidebar Styling */
.dash-sidebar {
    width: 70px;
    background: #0A0A0A;
    border-right: 1px solid var(--border);
    display: flex;
    flex-direction: column;
    align-items: center;
    padding: 1.5rem 0;
    gap: 1rem;
    border-radius: 16px 0 0 16px;
}

.dash-icon {
    width: 36px;
    height: 36px;
    border-radius: 8px;
    background: rgba(255, 255, 255, 0.05);
}

.dash-icon.active {
    background: var(--accent);
}

.dash-icon.bottom {
    margin-top: auto;
}

.dash-spacer {
    flex-grow: 1;
}

.dash-content {
    flex: 1;
    display: flex;
    flex-direction: column;
    background: #0E0E0E;
    border-radius: 0 16px 16px 0;
}

.dash-topbar {
    height: 60px;
    border-bottom: 1px solid var(--border);
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 0 2rem;
}

.dash-breadcrumb {
    color: var(--text-secondary);
    font-size: 0.9rem;
}

.dash-breadcrumb strong {
    color: var(--text-primary);
}

.dash-user {
    width: 32px;
    height: 32px;
    border-radius: 50%;
    background: #333;
}

.dash-grid {
    padding: 2rem;
    display: grid;
    grid-template-columns: 2fr 1fr;
    grid-template-rows: 240px auto;
    gap: 1.5rem;
    height: 100%;
}

.dash-card {
    background: #151515;
    border: 1px solid var(--border);
    border-radius: 12px;
    padding: 1.5rem;
    display: flex;
    flex-direction: column;
}

.card-head {
    display: flex;
    justify-content: space-between;
    align-items: center;
    color: var(--text-secondary);
    font-size: 0.9rem;
    margin-bottom: 1rem;
}

.growth {
    color: #00FF94;
    font-size: 0.8rem;
    background: rgba(0, 255, 148, 0.1);
    padding: 2px 6px;
    border-radius: 4px;
}

.card-metric {
    font-family: var(--font-display);
    font-size: 2.2rem;
    font-weight: 700;
    color: var(--text-primary);
}

.revenue {
    grid-column: 1 / 2;
}

.visitors {
    grid-column: 2 / 3;
}

.orders {
    grid-column: 1 / 3;
}

/* Mini Chart */
.mini-chart {
    flex-grow: 1;
    display: flex;
    align-items: flex-end;
    gap: 8px;
    padding-top: 1rem;
}

.bar {
    flex: 1;
    background: #252525;
    border-radius: 4px;
    position: relative;
    overflow: hidden;
}

.bar::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(to top, var(--accent) 0%, transparent 100%);
    opacity: 0.2;
}

/* Order List */
.order-list {
    margin-top: 1rem;
}

.order-item {
    display: flex;
    justify-content: space-between;
    padding: 1rem 0;
    border-bottom: 1px solid var(--border);
    font-size: 0.9rem;
}

.order-item:last-child {
    border: none;
}

.o-id {
    color: var(--text-secondary);
    width: 60px;
}

.o-name {
    font-weight: 500;
    flex-grow: 1;
}

.o-status {
    padding: 4px 10px;
    border-radius: 100px;
    font-size: 0.75rem;
    font-weight: 600;
    margin-right: 1.5rem;
}

.o-status.success {
    background: rgba(0, 255, 148, 0.1);
    color: #00FF94;
}

.o-status.pending {
    background: rgba(255, 184, 0, 0.1);
    color: #FFB800;
}

.o-val {
    font-weight: 600;
    text-align: right;
    width: 80px;
}

/* Floaters */
.float-card {
    position: absolute;
    background: #1A1A1A;
    border: 1px solid var(--border);
    padding: 1rem;
    border-radius: 12px;
    display: flex;
    align-items: center;
    gap: 1rem;
    box-shadow: 0 20px 50px rgba(0, 0, 0, 0.6);
    z-index: 10;
    transform: translateZ(60px);
    /* 3D pop */
}

.float-1 {
    bottom: -30px;
    right: 50px;
}

.icon-box {
    background: #222;
    width: 40px;
    height: 40px;
    border-radius: 8px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.2rem;
}

.f-title {
    font-size: 0.8rem;
    color: var(--text-secondary);
}

.f-sub {
    font-weight: 700;
    color: #fff;
}

.stage-floor {
    position: absolute;
    bottom: -100px;
    left: 50%;
    transform: translateX(-50%) rotateX(90deg);
    width: 1500px;
    height: 1500px;
    background: radial-gradient(circle, rgba(204, 255, 0, 0.05) 0%, transparent 60%);
    z-index: -1;
    pointer-events: none;
}

/* Builder Section */
.builder-section {
    padding: 8rem 0;
    border-top: 1px solid var(--border);
    background: #080808;
    position: relative;
    overflow: hidden;
}

.split-layout {
    display: grid;
    grid-template-columns: 1fr 1.5fr;
    gap: 4rem;
    align-items: center;
}

.section-tag {
    text-transform: uppercase;
    color: var(--accent);
    letter-spacing: 0.05em;
    font-weight: 700;
    font-size: 0.85rem;
    margin-bottom: 1rem;
    display: block;
}

.builder-info h2 {
    font-family: var(--font-display);
    font-size: 3rem;
    line-height: 1.1;
    margin-bottom: 1.5rem;
}

.builder-info p {
    color: var(--text-secondary);
    font-size: 1.1rem;
    margin-bottom: 2rem;
}

.builder-features li {
    display: flex;
    align-items: center;
    gap: 1rem;
    margin-bottom: 1rem;
    font-weight: 500;
}

.check {
    color: var(--accent);
    font-weight: 800;
}

/* Demo Frame */
.builder-demo-frame {
    background: #111;
    border-radius: 12px;
    border: 1px solid var(--border);
    overflow: hidden;
    height: 500px;
    display: flex;
    flex-direction: column;
}

.fake-browser-header {
    height: 40px;
    background: #1A1A1A;
    border-bottom: 1px solid var(--border);
    display: flex;
    align-items: center;
    padding: 0 1rem;
    gap: 1rem;
}

.dots {
    display: flex;
    gap: 6px;
}

.dots span {
    width: 10px;
    height: 10px;
    border-radius: 50%;
    background: #333;
}

.url-bar {
    background: #000;
    flex: 1;
    height: 24px;
    border-radius: 4px;
    font-size: 0.7rem;
    display: flex;
    align-items: center;
    padding: 0 1rem;
    color: #444;
}

.builder-canvas-wrapper {
    flex: 1;
    display: flex;
    position: relative;
}

.b-sidebar {
    width: 60px;
    background: #161616;
    border-right: 1px solid var(--border);
    padding: 1rem;
    display: flex;
    flex-direction: column;
    gap: 0.8rem;
}

.tool {
    height: 40px;
    background: #252525;
    border-radius: 6px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 0.7rem;
    font-weight: 700;
    color: #666;
    cursor: default;
    border: 1px solid transparent;
}

.tool:hover {
    border-color: #444;
}

.b-canvas {
    flex: 1;
    position: relative;
    background-color: #080808;
    background-image: radial-gradient(#222 1px, transparent 1px);
    background-size: 24px 24px;
    overflow: hidden;
    display: flex;
    align-items: center;
    justify-content: center;
}

/* Removed .canvas-grid-lines */


/* Canvas Content Placeholders */
.c-header {
    display: flex;
    justify-content: space-between;
    margin-bottom: 3rem;
    align-items: center;
}

.c-logo {
    font-weight: 900;
    color: #000;
}

.c-nav {
    width: 100px;
    height: 10px;
    background: #eee;
    border-radius: 100px;
}

.c-hero {
    height: 250px;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    border: 1px dashed transparent;
    transition: border 0.2s;
}

.c-hero.active-drop {
    border-color: var(--accent);
    background: rgba(204, 255, 0, 0.05);
}

.c-h1-placeholder {
    width: 60%;
    height: 30px;
    background: #ddd;
    margin-bottom: 1rem;
    border-radius: 4px;
}

.c-p-placeholder {
    width: 40%;
    height: 15px;
    background: #eee;
    margin-bottom: 2rem;
    border-radius: 4px;
}

.c-dropzone {
    min-height: 50px;
    display: flex;
    align-items: center;
    justify-content: center;
    width: 100%;
}

.ghost-btn {
    background: #000;
    color: #fff;
    padding: 0.8rem 2rem;
    font-family: var(--font-display);
    font-weight: 700;
    border-radius: 4px;
    opacity: 0;
    transform: scale(0.9);
}

.demo-cursor {
    position: absolute;
    top: 50%;
    left: 10%;
    pointer-events: none;
    z-index: 100;
    filter: drop-shadow(0 4px 8px rgba(0, 0, 0, 0.3));
}

/* Pricing */
.pricing-section {
    padding: 8rem 0;
}

.sub-heading {
    color: var(--text-secondary);
    margin-top: 1rem;
    margin-bottom: 4rem;
    font-size: 1.1rem;
}

.pricing-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
}

.plan-card {
    background: var(--bg-card);
    border: 1px solid var(--border);
    border-radius: 16px;
    padding: 2.5rem;
    transition: all 0.2s;
}

.plan-card:hover {
    border-color: var(--text-tertiary);
    transform: translateY(-5px);
}

.plan-card.featured {
    border-color: var(--accent);
    background: #141414;
    position: relative;
    overflow: hidden;
}

.popular-tag {
    position: absolute;
    top: 0;
    right: 0;
    background: var(--accent);
    color: #000;
    font-size: 0.7rem;
    font-weight: 700;
    padding: 4px 12px;
    border-bottom-left-radius: 8px;
    text-transform: uppercase;
}

.plan-header {
    margin-bottom: 2rem;
    border-bottom: 1px solid var(--border);
    padding-bottom: 2rem;
}

.plan-header h3 {
    font-family: var(--font-display);
    font-size: 1.4rem;
    margin-bottom: 1rem;
}

.plan-cost {
    font-size: 3.5rem;
    font-weight: 800;
    font-family: var(--font-display);
    line-height: 1;
}

.plan-sub {
    color: var(--text-secondary);
    font-size: 0.9rem;
}

.fee-badge {
    background: rgba(255, 255, 255, 0.05);
    display: inline-block;
    padding: 6px 12px;
    border-radius: 4px;
    font-size: 0.85rem;
    font-weight: 600;
    margin-bottom: 2rem;
    color: var(--text-secondary);
}

.sub-desc {
    font-size: 1.1rem;
    max-width: 700px;
    margin: 2rem auto;
    color: var(--text-secondary);
}

.highlight-text {
    color: var(--accent);
    display: inline-block;
    min-width: 120px;
    /* Prevent jump */
    text-align: center;
}

.fee-badge.highlight {
    background: rgba(204, 255, 0, 0.1);
    color: var(--accent);
}

.features-list li {
    margin-bottom: 1rem;
    color: var(--text-secondary);
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

.features-list li::before {
    content: '•';
    color: var(--accent);
}

.enterprise-bar {
    margin-top: 4rem;
    border: 1px solid var(--border);
    border-radius: 12px;
    padding: 2rem;
    display: flex;
    justify-content: space-between;
    align-items: center;
    background: linear-gradient(90deg, #111, #0a0a0a);
}

.ent-info h4 {
    font-family: var(--font-display);
    font-size: 1.2rem;
    margin-bottom: 0.3rem;
}

.ent-info p {
    color: var(--text-secondary);
    font-size: 0.9rem;
}

.btn-text {
    color: var(--text-primary);
    font-weight: 600;
    transition: color 0.2s;
}

.btn-text:hover {
    color: var(--accent);
}

/* Footer */
footer {
    border-top: 1px solid var(--border);
    padding: 3rem 0;
    margin-top: 4rem;
    background: #000;
}

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

.footer-left .logo {
    font-size: 1.1rem;
    font-weight: 800;
}

.footer-left p {
    font-size: 0.85rem;
    color: var(--text-tertiary);
    margin-top: 0.5rem;
}

.footer-right {
    color: var(--text-tertiary);
    font-size: 0.85rem;
}

/* Responsive */
@media (max-width: 900px) {
    .split-layout {
        grid-template-columns: 1fr;
    }

    .hero-heading {
        font-size: 3rem;
    }

    .dashboard-perspective {
        width: 100%;
        height: auto;
        transform: none;
        box-shadow: none;
        border: none;
    }

    .dashboard-interface {
        transform: none;
        box-shadow: none;
        height: auto;
        flex-direction: column;
    }

    .dash-sidebar {
        display: none;
    }

    .dash-content {
        border-radius: 16px;
    }

    .dashboard-stage {
        height: auto;
        margin-top: 4rem;
        perspective: none;
    }

    .float-card {
        display: none;
    }
}

/* Modal Styles */
.modal-overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.8);
    backdrop-filter: blur(8px);
    z-index: 2000;
    display: flex;
    justify-content: center;
    align-items: center;
    opacity: 0;
    pointer-events: none;
    transition: opacity 0.3s ease;
}

.modal-overlay.active {
    opacity: 1;
    pointer-events: auto;
}

.modal-container {
    background: #111;
    border: 1px solid var(--border);
    border-radius: 16px;
    width: 90%;
    max-width: 500px;
    padding: 2.5rem;
    position: relative;
    transform: translateY(20px);
    transition: transform 0.3s ease;
    box-shadow: 0 40px 100px -20px rgba(0, 0, 0, 0.8);
}

.modal-overlay.active .modal-container {
    transform: translateY(0);
}

.modal-close {
    position: absolute;
    top: 1.5rem;
    right: 1.5rem;
    background: transparent;
    border: none;
    color: var(--text-secondary);
    font-size: 1.5rem;
    cursor: pointer;
    line-height: 1;
}

.modal-close:hover {
    color: var(--text-primary);
}

.modal-header {
    margin-bottom: 2rem;
    text-align: center;
}

.modal-header h3 {
    font-family: var(--font-display);
    font-size: 1.8rem;
    margin-bottom: 0.5rem;
}

.modal-header p {
    color: var(--text-secondary);
    font-size: 0.95rem;
}

.form-group {
    margin-bottom: 1.5rem;
}

.form-group label {
    display: block;
    color: var(--text-primary);
    font-size: 0.9rem;
    font-weight: 500;
    margin-bottom: 0.8rem;
}

input[type="email"] {
    width: 100%;
    background: #0A0A0A;
    border: 1px solid var(--border);
    padding: 0.8rem 1rem;
    border-radius: 8px;
    color: var(--text-primary);
    font-family: var(--font-body);
    font-size: 1rem;
    transition: border-color 0.2s;
}

input[type="email"]:focus {
    outline: none;
    border-color: var(--accent);
}

.radio-group {
    display: flex;
    flex-direction: column;
    gap: 0.8rem;
}

.radio-item {
    display: flex;
    align-items: center;
    gap: 0.8rem;
    background: rgba(255, 255, 255, 0.03);
    padding: 0.8rem;
    border-radius: 8px;
    border: 1px solid transparent;
    cursor: pointer;
    transition: all 0.2s;
}

.radio-item:hover {
    background: rgba(255, 255, 255, 0.05);
}

.radio-item input[type="radio"] {
    display: none;
}

.radio-custom {
    width: 20px;
    height: 20px;
    border: 2px solid var(--text-secondary);
    border-radius: 50%;
    position: relative;
    transition: border-color 0.2s;
}

.radio-item input[type="radio"]:checked+.radio-custom {
    border-color: var(--accent);
}

.radio-item input[type="radio"]:checked+.radio-custom::after {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 10px;
    height: 10px;
    background: var(--accent);
    border-radius: 50%;
}

.radio-item input[type="radio"]:checked~.radio-label {
    color: var(--text-primary);
}

.radio-label {
    color: var(--text-secondary);
    font-size: 0.95rem;
    transition: color 0.2s;
}

.form-note {
    font-size: 0.8rem;
    color: var(--text-tertiary);
    text-align: center;
    margin-top: 1rem;
}

/* Pitch Deck Specific Styles */

/* Pitch Hero */
/* Pitch Hero Split Layout */
.pitch-hero {
    display: flex;
    align-items: center;
    justify-content: center;
    min-height: 100vh;
    padding-top: var(--nav-height);
    position: relative;
    overflow: hidden;
}

.hero-split {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 3rem;
    width: 100%;
}

@media (min-width: 900px) {
    .pitch-hero {
        text-align: left;
    }

    .hero-split {
        flex-direction: row;
        align-items: center;
        justify-content: space-between;
    }

    .hero-content-side {
        flex: 1;
        max-width: 50%;
        display: flex;
        flex-direction: column;
        align-items: flex-start;
        z-index: 2;
    }

    .hero-visual-side {
        flex: 1;
        width: 100%;
        display: flex;
        justify-content: center;
        perspective: 1000px;
        height: 600px;
        /* Reduced specific height for containment */
        align-items: center;
    }

    .dashboard-stage.small-scale {
        transform: scale(0.85);
        /* Slightly smaller to fit side */
        width: 100%;
        height: 100%;
    }

    .dynamic-loop-container {
        justify-content: flex-start;
        /* Align left */
    }
}

.sub-branding {
    font-size: 1rem;
    color: var(--text-tertiary);
    text-transform: uppercase;
    letter-spacing: 2px;
    margin-bottom: 1rem;
    font-weight: 600;
}

.hero-heading {
    margin-bottom: 1rem !important;
    /* Override */
}

/* Builder Demo Store Layout */
.store-layout {
    display: flex;
    flex-direction: column;
    gap: 15px;
    padding: 20px;
    height: 100%;
}

.store-nav {
    height: 30px;
    background: #222;
    border-radius: 4px;
    display: flex;
    align-items: center;
    padding: 0 10px;
    gap: 20px;
}

.s-logo {
    width: 40px;
    height: 12px;
    background: #444;
    border-radius: 2px;
}

.s-links {
    flex: 1;
    height: 8px;
    background: #333;
    border-radius: 2px;
    max-width: 150px;
}

.store-hero {
    height: 120px;
    background: #222;
    border-radius: 4px;
    display: flex;
    align-items: center;
    padding: 20px;
    gap: 20px;
}

.s-hero-txt {
    flex: 1;
    height: 60px;
    background: #333;
    border-radius: 4px;
}

.s-hero-img {
    width: 80px;
    height: 80px;
    background: #444;
    border-radius: 4px;
}

.ghost-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 10px;
    width: 100%;
    opacity: 0;
    transform: scale(0.95);
}

.g-item {
    background: #1a1a1a;
    border: 1px solid #333;
    padding: 8px;
    border-radius: 4px;
    display: flex;
    flex-direction: column;
    gap: 6px;
}

.g-img {
    height: 60px;
    background: #333;
    border-radius: 2px;
    width: 100%;
}

.g-row {
    height: 6px;
    width: 70%;
    background: #444;
    border-radius: 2px;
}

.g-row.short {
    width: 40%;
    background: var(--accent);
}

.c-dropzone {
    min-height: 100px;
    border: 2px dashed #333;
    border-radius: 6px;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.3s;
    background: rgba(255, 255, 255, 0.01);
}

.c-dropzone.active-drop {
    border-color: var(--accent);
    background: rgba(212, 255, 0, 0.05);
}

/* Brand Suffix */
.brand-suffix {
    font-size: 0.9rem;
    /* Increased visibility */
    color: var(--text-tertiary);
    font-weight: 500;
    margin-left: 0.8rem;
    opacity: 0.9;
    letter-spacing: 0.5px;
}

/* Feature Grid Fix */
.highlight-text {
    width: 240px;
    /* Accommodate 'Enterprise' */
    text-align: center;
    display: inline-block;
    vertical-align: bottom;
    white-space: nowrap;
}

/* Visual Switcher */
.visual-switcher {
    position: relative;
    width: 100%;
    height: 100%;
}

.v-stage {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    opacity: 0;
    visibility: hidden;
    transition: all 0.5s cubic-bezier(0.4, 0, 0.2, 1);
    transform: translateY(20px) scale(0.95);
    display: flex;
    justify-content: center;
    align-items: center;
}

.v-stage.active {
    opacity: 1;
    visibility: visible;
    transform: translateY(0) scale(1);
    z-index: 2;
}

/* New Preview Cards */
.store-preview-card,
.portfolio-preview-card {
    background: #0a0a0a;
    border: 1px solid #333;
    border-radius: 16px;
    width: 100%;
    height: 100%;
    display: flex;
    flex-direction: column;
    overflow: hidden;
    box-shadow: 0 25px 50px -12px rgba(0, 0, 0, 0.5);
    transform-style: preserve-3d;
    backface-visibility: hidden;
    outline: 1px solid transparent;
    /* Anti-aliasing fix */
}

/* Store Content */
.sp-header,
.pp-header {
    height: 48px;
    border-bottom: 1px solid #222;
    display: flex;
    align-items: center;
    padding: 0 20px;
    justify-content: space-between;
    background: #111;
}

.sp-logo,
.pp-logo {
    font-weight: 800;
    font-size: 0.8rem;
    letter-spacing: 2px;
    color: #fff;
}

.sp-menu {
    display: flex;
    gap: 8px;
}

.sp-link {
    width: 30px;
    height: 6px;
    background: #333;
    border-radius: 2px;
    display: block;
}

.sp-hero {
    height: 140px;
    background: #141414;
    margin: 15px;
    border-radius: 8px;
    position: relative;
    overflow: hidden;
    display: flex;
    align-items: flex-end;
    padding: 15px;
}

.sp-hero::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, #1f1f1f, #2a2a2a);
    z-index: 0;
}

.sp-hero-content {
    position: relative;
    z-index: 1;
    width: 100%;
}

.sp-hero-title {
    width: 60%;
    height: 10px;
    background: #fff;
    border-radius: 4px;
    margin-bottom: 8px;
    opacity: 0.8;
}

.sp-hero-btn {
    width: 80px;
    height: 24px;
    background: var(--accent);
    border-radius: 4px;
}

.sp-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 12px;
    padding: 0 15px 15px;
    flex: 1;
    overflow: hidden;
}

.sp-card {
    background: #141414;
    border-radius: 8px;
    overflow: hidden;
    display: flex;
    flex-direction: column;
}

.sp-img {
    height: 70px;
    background: #222;
    width: 100%;
}

.sp-info {
    padding: 8px;
    display: flex;
    flex-direction: column;
    gap: 4px;
}

.sp-title {
    width: 80%;
    height: 6px;
    background: #333;
    border-radius: 2px;
}

.sp-price {
    width: 40%;
    height: 6px;
    background: #444;
    border-radius: 2px;
}

/* Portfolio Content */
.pp-masonry {
    column-count: 2;
    column-gap: 15px;
    padding: 15px;
    flex: 1;
}

.pp-item {
    break-inside: avoid;
    background: #1a1a1a;
    margin-bottom: 15px;
    border-radius: 8px;
    position: relative;
    overflow: hidden;
}

.pp-item.big {
    height: 140px;
    background: #222;
}

.pp-item.tall {
    height: 180px;
    background: #1e1e1e;
}

.pp-item.wide {
    height: 90px;
    background: #252525;
}

.pp-overlay {
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    padding: 15px;
    background: linear-gradient(to top, rgba(0, 0, 0, 0.8), transparent);
    opacity: 0.8;
}

.pp-title {
    width: 60%;
    height: 6px;
    background: #fff;
    border-radius: 2px;
}

.pp-filters {
    display: flex;
    gap: 6px;
}

.pp-filters span {
    width: 6px;
    height: 6px;
    background: #333;
    border-radius: 50%;
    display: block;
}

.pp-filters span.active {
    background: #fff;
}

/* Dashboard adjustments for consistency */
.dashboard-interface {
    border-radius: 16px;
    background: #0a0a0a;
    /* Match others */
}

/* Why Octopus Grid */
.why-section {
    padding: 8rem 0;
    background: #080808;
}

.section-title {
    font-family: var(--font-display);
    font-size: 3rem;
    font-weight: 800;
    margin-bottom: 4rem;
}

.features-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
}

.feature-card {
    background: #111;
    border: 1px solid var(--border);
    padding: 2rem;
    border-radius: 12px;
    transition: transform 0.2s, border-color 0.2s;
}

.feature-card:hover {
    transform: translateY(-5px);
    border-color: var(--accent);
}

.f-icon {
    font-size: 2.5rem;
    margin-bottom: 1rem;
}

.feature-card h3 {
    font-size: 1.5rem;
    margin-bottom: 1rem;
    color: #fff;
    font-family: var(--font-display);
}

.feature-card p {
    color: var(--text-secondary);
    line-height: 1.6;
}

/* Key Features List */
.key-features-section {
    padding: 6rem 0;
    border-top: 1px solid var(--border);
    border-bottom: 1px solid var(--border);
}

.key-features-list {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
    max-width: 800px;
    margin: 0 auto;
    text-align: left;
}

.key-item {
    background: rgba(255, 255, 255, 0.03);
    padding: 1.5rem;
    border-radius: 8px;
    border: 1px solid var(--border);
    display: flex;
    align-items: flex-start;
    gap: 1rem;
}

.key-check {
    font-size: 1.2rem;
}

.key-item strong {
    color: var(--accent);
    font-weight: 700;
    min-width: 150px;
}

/* CTA Section */
.cta-section {
    padding: 8rem 0;
}

.sub-heading.big {
    font-size: 1.5rem;
    color: #fff;
    margin-bottom: 3rem;
}

.cta-links {
    display: flex;
    justify-content: center;
    gap: 1.5rem;
    align-items: center;
    font-size: 1.1rem;
    font-weight: 600;
}

.link-item {
    color: var(--text-secondary);
    transition: color 0.2s;
}

.link-item:hover {
    color: var(--accent);
}

.divider {
    color: var(--border);
}