/* style.css */
:root {
  --bg: #050816;
  --panel: #0b1020;
  --panel-2: #101624;
  --text: #e5e7eb;
  --muted: #9ca3af;
  --accent: #f97316; /* Orange */
  --accent-soft: rgba(249, 115, 22, 0.12);
  --accent-strong: #fb923c;
  --border: rgba(148, 163, 184, 0.16);
  --radius: 16px;
  --max-width: 1120px;
  --transition: 0.3s ease;
  --shadow: 0 20px 50px rgba(0, 0, 0, 0.5);
}

*, *::before, *::after { box-sizing: border-box; }

body {
  margin: 0;
  font-family: "Plus Jakarta Sans", sans-serif;
  color: var(--text);
  line-height: 1.6;
  background-color: var(--bg);
  background-image: 
    linear-gradient(rgba(255, 255, 255, 0.03) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255, 255, 255, 0.03) 1px, transparent 1px);
  background-size: 40px 40px;
  overflow-x: hidden;
}

h1, h2, h3 { font-family: "Sora", sans-serif; margin-top: 0; color: #fff; }
p { margin: 0 0 1rem 0; }
a { color: inherit; text-decoration: none; transition: var(--transition); }
img { max-width: 100%; display: block; }

.container { width: min(var(--max-width), 92vw); margin: 0 auto; }

/* HEADER */
.nav {
  position: sticky; top: 0; z-index: 50;
  backdrop-filter: blur(14px);
  background: rgba(5, 8, 22, 0.85);
  border-bottom: 1px solid var(--border);
}
.nav-inner { display: flex; justify-content: space-between; align-items: center; padding: 20px 0; }
.logo { font-family: "Sora"; font-weight: 700; text-transform: uppercase; letter-spacing: 1px; font-size: 1.2rem; }

.nav-links { list-style: none; display: flex; gap: 30px; margin: 0; padding: 0; }
.nav-links a { font-weight: 500; font-size: 0.95rem; color: var(--muted); }
.nav-links a:hover { color: var(--accent-strong); }
.nav-toggle { display: none; background: none; border: 1px solid var(--border); border-radius: 8px; padding: 8px; cursor: pointer; }
.nav-toggle span { display: block; width: 22px; height: 2px; background: #fff; margin: 5px 0; }

/* HERO */
.hero-wrap { display: flex; flex-direction: column; }
.hero { display: grid; grid-template-columns: 1.2fr 1fr; gap: 50px; align-items: center; padding: 80px 0 100px; }

.pill-badge {
    display: inline-block; padding: 6px 14px; border-radius: 50px;
    background: var(--accent-soft); color: var(--accent-strong);
    font-size: 0.85rem; font-weight: 600; margin-bottom: 20px;
    border: 1px solid rgba(249, 115, 22, 0.3);
}

.hero h1 { font-size: clamp(2.5rem, 5vw, 3.8rem); line-height: 1.1; margin-bottom: 20px; }
.lede { font-size: 1.1rem; color: var(--muted); max-width: 500px; margin-bottom: 30px; }

.cta-row { display: flex; gap: 15px; margin-bottom: 50px; }
.center-row { justify-content: center; }
.extra-top-margin { margin-top: 40px; }
/* style.css - Update the .btn class */
.btn {
    display: inline-flex;          /* Keeps icon and text on same line */
    align-items: center;           /* Vertically centers them */
    justify-content: center;
    gap: 8px;                      /* Space between text and arrow */
    padding: 12px 24px;
    border-radius: 50px;
    font-weight: 600;
    border: none;
    cursor: pointer;
    font-size: 0.95rem;
    transition: var(--transition);
    text-decoration: none;
    line-height: 1;                /* Prevents weird height issues */
    white-space: nowrap;           /* Prevents text wrapping */
}
.btn.primary { background: linear-gradient(135deg, var(--accent), var(--accent-strong)); color: #000; box-shadow: 0 10px 30px rgba(249, 115, 22, 0.3); }
.btn.primary:hover { transform: translateY(-3px); box-shadow: 0 15px 40px rgba(249, 115, 22, 0.4); }
.btn.ghost { background: transparent; border: 1px solid var(--border); color: var(--text); }
.btn.ghost:hover { border-color: var(--accent); color: #fff; }

/* TRUST STRIP */
.trust-strip { border-top: 1px solid var(--border); padding-top: 30px; }
.small-caps { font-size: 0.75rem; text-transform: uppercase; letter-spacing: 1px; color: #52525b; margin-bottom: 15px; }
.logo-row { display: flex; gap: 20px; flex-wrap: wrap; }
.logo-placeholder { font-weight: 700; color: #3f3f46; font-size: 1rem; }

/* HERO VISUAL (IMPROVED) */
.hero-visual { position: relative; height: 450px; display: flex; align-items: center; justify-content: center; background: radial-gradient(circle, rgba(249,115,22,0.1) 0%, transparent 70%); }
.orbital { position: relative; width: 300px; height: 300px; }
.ring { position: absolute; inset: 0; border: 1px dashed rgba(255,255,255,0.1); border-radius: 50%; animation: spin 20s linear infinite; }
.ring-2 { inset: 20%; animation-duration: 15s; direction: reverse; }
.ring-3 { inset: 40%; animation-duration: 10s; }
.nodes { position: absolute; width: 100%; height: 100%; animation: spin 30s linear infinite; }
.dot { position: absolute; width: 10px; height: 10px; background: var(--accent); border-radius: 50%; box-shadow: 0 0 15px var(--accent); }
.dot-a { top: 0; left: 50%; } .dot-b { top: 70%; left: 10%; } .dot-c { top: 70%; right: 10%; }

@keyframes spin { 100% { transform: rotate(360deg); } }

/* Improved Glow Card (Dashboard Widget) */
.glow-card {
    position: absolute; bottom: 40px; right: 20px; background: rgba(11, 16, 32, 0.9);
    backdrop-filter: blur(14px); border: 1px solid rgba(255,255,255,0.1); border-radius: 16px;
    padding: 20px; width: 220px; box-shadow: 0 15px 40px rgba(0,0,0,0.6);
}
.gc-header { display: flex; align-items: center; gap: 10px; margin-bottom: 10px; }
.gc-icon { background: rgba(249, 115, 22, 0.1); padding: 8px; border-radius: 8px; color: var(--accent); display: flex; }
.gc-meta { display: flex; flex-direction: column; }
.gc-label { font-size: 0.65rem; color: var(--muted); text-transform: uppercase; letter-spacing: 0.5px; }
.gc-status { font-size: 0.75rem; color: #4ade80; font-weight: 600; display: flex; align-items: center; gap: 5px; }
.pulse-dot { width: 6px; height: 6px; background: #4ade80; border-radius: 50%; box-shadow: 0 0 8px #4ade80; animation: pulse 1.5s infinite; }
.gc-title { display: block; font-size: 0.95rem; margin-bottom: 10px; color: #fff; }
.gc-graph { margin-bottom: 10px; border-bottom: 1px solid rgba(255,255,255,0.05); padding-bottom: 10px; }
.gc-footer { display: flex; justify-content: space-between; font-size: 0.75rem; color: #4ade80; font-weight: 600; }
.gc-id { color: var(--muted); font-weight: 400; }
@keyframes pulse { 0% { opacity: 1; } 50% { opacity: 0.4; } 100% { opacity: 1; } }


/* SECTIONS & GRIDS */
.section { padding: 100px 0; }
.bg-grid-overlay { background: rgba(255,255,255,0.01); border-top: 1px solid var(--border); border-bottom: 1px solid var(--border); }
.section-header { margin-bottom: 60px; }
.eyebrow { color: var(--accent); text-transform: uppercase; font-weight: 700; font-size: 0.8rem; letter-spacing: 1px; margin-bottom: 10px; display: block; }
.center { text-align: center; }
.center-text { margin: 0 auto; max-width: 600px; }
.grid { display: grid; gap: 30px; }
.pods-grid { grid-template-columns: repeat(auto-fit, minmax(280px, 1fr)); }

/* CARDS & HOVER LIFT */
.card { background: var(--panel); border: 1px solid var(--border); border-radius: var(--radius); padding: 30px; transition: all 0.3s cubic-bezier(0.25, 0.8, 0.25, 1); }
.card:hover { border-color: var(--accent); box-shadow: 0 20px 40px rgba(249, 115, 22, 0.1); }
.lift:hover { transform: translateY(-8px); } /* Stronger lift effect */

.icon-box { color: var(--accent); margin-bottom: 15px; }
.pod-card h3 { margin-bottom: 10px; }
.pod-card p { font-size: 0.95rem; margin-bottom: 20px; line-height: 1.5; }
.card-top { display: flex; justify-content: space-between; margin-bottom: 15px; }
.card-tag { font-size: 0.75rem; font-weight: 700; color: #94a3b8; text-transform: uppercase; }
.card-icon { color: var(--accent); }
.link-arrow { font-size: 0.9rem; font-weight: 600; color: var(--accent); display: inline-flex; align-items: center; }
.why-grid { grid-template-columns: repeat(auto-fit, minmax(300px, 1fr)); }

/* EXPANDED NETWORK DIAGRAM STYLES */
.network-diagram {
    background: var(--panel);
    border: 1px solid var(--border);
    border-radius: var(--radius);
    padding: 60px 20px;
    display: flex;
    flex-direction: column;
    align-items: center;
    position: relative;
    overflow: hidden;
}

/* Level 1 */
.network-level { width: 100%; display: flex; justify-content: center; position: relative; z-index: 2; }
.client-node {
    background: #fff; color: #000; padding: 12px 30px; border-radius: 50px;
    font-weight: 700; box-shadow: 0 0 20px rgba(255,255,255,0.2);
}

/* Connectors */
.net-connector-vertical {
    height: 60px; width: 2px; background: linear-gradient(to bottom, #fff, var(--accent));
    margin: 10px 0; position: relative;
}
.flow-dot {
    position: absolute; width: 6px; height: 6px; background: #fff; border-radius: 50%;
    left: -2px; top: 0; animation: flowDown 2s infinite ease-in-out;
}

/* Level 2 */
.net-core {
    position: relative; padding: 20px 40px; text-align: center;
    background: #0f172a; border: 1px solid var(--accent); border-radius: 12px;
    box-shadow: 0 0 30px rgba(249, 115, 22, 0.2); z-index: 2; margin-bottom: 20px;
}
.core-content { display: flex; flex-direction: column; gap: 5px; }
.core-content strong { color: var(--accent); font-size: 1.1rem; }
.micro-text { font-size: 0.75rem; text-transform: uppercase; letter-spacing: 1px; color: var(--muted); }

/* DISTRIBUTOR LINE (The fixed flow) */
.distributor-line {
    display: flex; flex-direction: column; align-items: center; width: 90%; max-width: 800px;
    margin-bottom: 20px;
}
.h-bar {
    width: 100%; height: 2px; background: rgba(255,255,255,0.1); position: relative;
}
.h-bar::after {
    content: ''; position: absolute; left: 50%; top: -20px; height: 20px; width: 2px; background: var(--accent);
}
.v-drop-container {
    display: flex; justify-content: space-between; width: 100%;
}
.v-drop {
    width: 1px; height: 40px; background: rgba(255,255,255,0.1); position: relative;
}
.drop-packet {
    position: absolute; top: 0; left: -1px; width: 3px; height: 3px; background: var(--accent);
    border-radius: 50%; animation: dropFlow 2s infinite; opacity: 0;
}
.delay-1 { animation-delay: 0s; }
.delay-2 { animation-delay: 0.4s; }
.delay-3 { animation-delay: 0.8s; }
.delay-4 { animation-delay: 1.2s; }
.delay-5 { animation-delay: 1.6s; }

@keyframes dropFlow {
    0% { top: 0; opacity: 0; }
    20% { opacity: 1; }
    100% { top: 100%; opacity: 0; }
}

/* Level 3 */
.network-level.bottom { justify-content: space-between; width: 90%; max-width: 800px; }
.net-pod {
    background: var(--panel-2); border: 1px solid var(--border);
    padding: 10px; border-radius: 8px; display: flex; flex-direction: column;
    align-items: center; gap: 8px; width: 18%; text-align: center;
    font-size: 0.85rem; font-weight: 500; color: var(--muted);
    transition: 0.3s;
}
.pod-icon-svg { color: var(--muted); transition: 0.3s; }
.net-pod:hover { border-color: var(--accent); color: #fff; transform: translateY(-5px); }
.net-pod:hover .pod-icon-svg { color: var(--accent); }

@keyframes flowDown {
    0% { top: 0; opacity: 1; }
    100% { top: 100%; opacity: 0; }
}

/* CHIPS & PILLS */
.chip-grid { display: flex; flex-wrap: wrap; gap: 15px; justify-content: center; }
.pill-card { background: var(--panel-2); border: 1px solid var(--border); padding: 12px 24px; border-radius: 50px; font-weight: 600; color: var(--muted); transition: var(--transition); }
.pill-card:hover { border-color: var(--accent); color: #fff; background: rgba(249, 115, 22, 0.1); }

/* CTA PANEL */
.cta-panel { background: linear-gradient(to right, var(--panel), #0f152a); border: 1px solid var(--border); border-radius: var(--radius); padding: 50px; display: flex; justify-content: space-between; align-items: center; }
.cta-content h3 { font-size: 1.8rem; margin-bottom: 10px; }

/* FOOTER */
.footer { border-top: 1px solid var(--border); padding: 60px 0 20px; background: #02040a; }
.footer-row { display: grid; grid-template-columns: 2fr 1fr 1fr 1fr; gap: 40px; }
.footer-col { display: flex; flex-direction: column; gap: 12px; }
.footer-col a { color: #52525b; font-size: 0.9rem; }
.footer-col a:hover { color: var(--accent); }
.copyright { border-top: 1px solid #1f2937; margin-top: 40px; padding-top: 20px; text-align: center; font-size: 0.8rem; }

/* RESPONSIVE */
@media (max-width: 900px) {
  .hero { grid-template-columns: 1fr; text-align: center; }
  .hero-visual { width: 100%; margin-top: 30px; }
  .cta-row, .logo-row { justify-content: center; }
  .cta-panel { flex-direction: column; text-align: center; gap: 30px; }
  .footer-row { grid-template-columns: 1fr 1fr; }
  .network-level.bottom { flex-wrap: wrap; justify-content: center; gap: 10px; }
  .net-pod { width: 45%; }
  .v-drop-container { display: none; } /* Hide complex lines on mobile */
  .h-bar { display: none; }
}
@media (max-width: 768px) {
    .nav-links { display: none; }
    .nav-toggle { display: block; }
}

/* =========================================
   1. DROPDOWN MENU STYLES
   ========================================= */

/* Parent Item */
.has-dropdown {
    position: relative;
    padding-bottom: 10px;
    margin-bottom: -10px;
}

/* Arrow Indicator */
.arrow-down {
    font-size: 0.7rem;
    margin-left: 4px;
    vertical-align: middle;
    transition: 0.3s;
    display: inline-block;
}
.has-dropdown:hover .arrow-down {
    transform: rotate(180deg);
    color: var(--accent);
}

/* The Dropdown Box */
.dropdown {
    position: absolute;
    top: 100%;
    left: -20px;
    width: 240px;
    background: rgba(11, 16, 32, 0.98);
    backdrop-filter: blur(16px);
    border: 1px solid var(--border);
    border-radius: 12px;
    padding: 10px 0;
    list-style: none;
    box-shadow: 0 20px 50px rgba(0, 0, 0, 0.6);
    
    /* Animation State */
    opacity: 0;
    visibility: hidden;
    transform: translateY(10px);
    transition: all 0.2s cubic-bezier(0.25, 0.8, 0.25, 1);
    z-index: 100;
}

/* Show on Hover */
.has-dropdown:hover .dropdown {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
}

/* Dropdown Links */
.dropdown li { margin: 0; display: block; width: 100%; }
.dropdown li a {
    display: block;
    padding: 10px 20px;
    font-size: 0.9rem;
    color: var(--muted);
    border-left: 3px solid transparent;
    transition: 0.2s;
}
.dropdown li a:hover {
    background: rgba(255, 255, 255, 0.03);
    color: #fff;
    border-left-color: var(--accent);
    padding-left: 25px;
}

/* =========================================
   2. MOBILE OPTIMIZATIONS
   ========================================= */

@media (max-width: 900px) {
    
    /* --- Mobile Navigation --- */
    .nav-links {
        display: none; /* Hidden by default */
        flex-direction: column;
        position: absolute;
        top: 70px;
        left: 0;
        width: 100%;
        background: #050816;
        padding: 20px;
        border-bottom: 1px solid var(--border);
        box-shadow: 0 20px 40px rgba(0,0,0,0.8);
        z-index: 100;
        gap: 0;
    }
    
    .nav-links.active { display: flex; } /* JS toggles this */

    .nav-links li { 
        width: 100%; 
        border-bottom: 1px solid rgba(255,255,255,0.05);
    }
    
    .nav-links > li > a {
        display: block;
        padding: 15px 0;
        font-size: 1.1rem;
        color: #fff;
    }

    /* Mobile Dropdowns (Always Expanded or Clickable) */
    .has-dropdown { margin: 0; padding: 0; }
    .has-dropdown:hover .dropdown { display: block; position: static; }
    
    .dropdown {
        position: static;
        opacity: 1;
        visibility: visible;
        transform: none;
        width: 100%;
        background: rgba(255,255,255,0.03);
        border: none;
        box-shadow: none;
        padding: 5px 0 15px 0;
        display: block; /* Always show sub-items on mobile for simplicity */
    }
    .dropdown li a {
        padding: 10px 0 10px 20px; /* Indent sub-items */
        font-size: 0.95rem;
        color: #94a3b8;
        border-left: none;
    }
    .arrow-down { display: none; }

    /* --- Layout Stacking --- */
    .hero { grid-template-columns: 1fr; text-align: center; gap: 40px; padding-top: 40px; }
    .hero h1 { font-size: 2.5rem; }
    .hero-visual { width: 100%; height: auto; aspect-ratio: 1/1; margin-top: 20px; }
    
    .cta-row { justify-content: center; }
    .logo-row { justify-content: center; }

    /* Stack Grids Vertically */
    .footer-row, 
    .contact-split, 
    .feature-row, 
    .hybrid-split, 
    .pipeline-row,
    .network-level.bottom {
        grid-template-columns: 1fr !important;
        flex-direction: column;
        gap: 40px;
    }
    
    /* Center Alignments */
    .cta-panel { flex-direction: column; text-align: center; gap: 20px; }
    .feature-text { text-align: center; }
    .feature-row.reverse { flex-direction: column; }
    
    /* Disable 3D Tilt on Touch (Performance) */
    .tilt { transform: none !important; transition: none; }
    
    /* Network Diagram Mobile Fix */
    .distributor-line, .v-drop-container { display: none; }
    .net-pod { width: 100%; margin-bottom: 10px; flex-direction: row; justify-content: center; gap: 15px; }
}

/* =========================================
   EDITORIAL / JOURNAL STYLES (Professional)
   ========================================= */

.text-accent { color: var(--accent); }
.no-pad-top { padding-top: 0; }

/* --- Header Typography --- */
.journal-header {
    padding: 100px 0 60px;
}
.journal-title-lockup h1 {
    font-size: 3.5rem;
    letter-spacing: -1px;
    margin-bottom: 20px;
    max-width: 800px;
}
.journal-title-lockup .lede {
    font-size: 1.2rem;
    max-width: 600px;
    color: var(--muted);
}

/* --- Navigation Bar --- */
.journal-nav {
    display: flex;
    gap: 30px;
    border-bottom: 1px solid var(--border);
    padding-bottom: 15px;
    margin-top: 50px;
    overflow-x: auto; /* Scroll on mobile */
}
.j-link {
    font-size: 0.9rem;
    font-weight: 500;
    color: var(--muted);
    position: relative;
    padding-bottom: 15px;
    white-space: nowrap;
}
.j-link:hover, .j-link.active {
    color: #fff;
}
.j-link.active::after {
    content: '';
    position: absolute; bottom: -1px; left: 0; width: 100%; height: 2px;
    background: var(--accent);
}

/* --- The Magazine Grid --- */
.magazine-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    grid-auto-rows: minmax(300px, auto);
    gap: 30px;
}

/* Card Base */
.mag-card {
    background: var(--panel);
    border: 1px solid var(--border);
    border-radius: var(--radius);
    overflow: hidden;
    display: flex;
    flex-direction: column;
    transition: var(--transition);
}
.mag-card:hover {
    border-color: rgba(255,255,255,0.2);
    transform: translateY(-5px);
}

/* 1. Hero Feature (Top Left, Wide) */
.hero-feature {
    grid-column: span 2;
    position: relative;
    min-height: 400px;
    justify-content: flex-end; /* Text at bottom */
}
.hero-feature .mag-content {
    background: linear-gradient(to top, #050816 10%, transparent);
    position: relative;
    z-index: 2;
    padding-top: 60px;
}
.hero-feature h2 { font-size: 2rem; margin-bottom: 15px; }

/* 2. Sidebar (Top Right, Tall) */
.mag-sidebar {
    grid-column: span 1;
    grid-row: span 2; /* Stretches down */
    background: var(--panel-2);
    border: 1px solid var(--border);
    border-radius: var(--radius);
    padding: 30px;
}
.sidebar-header {
    font-family: "Sora";
    font-weight: 700;
    border-bottom: 1px solid var(--border);
    padding-bottom: 15px;
    margin-bottom: 20px;
    color: #fff;
}
.sidebar-item {
    display: block;
    margin-bottom: 25px;
    padding-bottom: 25px;
    border-bottom: 1px solid rgba(255,255,255,0.05);
}
.sidebar-item:last-child { border: none; }
.sidebar-item h4 {
    font-size: 1rem; margin: 0; color: #e5e7eb; transition: 0.2s;
    line-height: 1.4;
}
.sidebar-item:hover h4 { color: var(--accent); }
.tag-text {
    font-size: 0.7rem; color: var(--muted); text-transform: uppercase;
    display: block; margin-bottom: 5px; letter-spacing: 1px;
}

/* 3. Wide Text Card */
.wide-text {
    grid-column: span 2;
    justify-content: center;
    background: linear-gradient(135deg, #101624, #050816);
}
.wide-text .mag-content { padding: 50px; }
.wide-text h3 { font-size: 1.8rem; }

/* 4. List Group Card */
.list-group { padding: 30px; }
.list-header { font-weight: 700; color: #fff; margin-bottom: 20px; }
.list-row {
    display: flex; justify-content: space-between;
    padding: 15px 0; border-bottom: 1px solid var(--border);
    font-size: 0.95rem; font-weight: 500;
}
.list-row:hover { color: var(--accent); }

/* --- Content Styling --- */
.mag-content { padding: 30px; }
.tag {
    color: var(--accent); font-size: 0.75rem; font-weight: 700;
    text-transform: uppercase; letter-spacing: 1px; margin-bottom: 10px; display: block;
}
.mag-card h3 { font-size: 1.3rem; margin-bottom: 10px; line-height: 1.3; }
.mag-card p { font-size: 0.95rem; color: var(--muted); margin-bottom: 0; }
.author-row {
    margin-top: 20px; display: flex; justify-content: space-between; align-items: center;
    font-size: 0.85rem; color: #9ca3af;
}
.read-btn { color: #fff; font-weight: 600; border-bottom: 1px solid var(--accent); padding-bottom: 2px; }

/* --- CSS GENERATIVE ART (No Images Needed) --- */
.art-canvas {
    height: 180px; width: 100%;
    position: relative; overflow: hidden;
    background: #0f172a;
}
.hero-feature .art-canvas {
    position: absolute; top: 0; left: 0; height: 100%; width: 100%; z-index: 1;
}

/* Abstract Patterns */
.canvas-1 { background: radial-gradient(circle at 100% 0%, #1e293b, #050816); }
.canvas-1::before {
    content: ''; position: absolute; top: -50%; left: -20%; width: 80%; height: 200%;
    background: radial-gradient(circle, rgba(249,115,22,0.08), transparent 60%);
}

.canvas-2 { background: linear-gradient(45deg, #0b1020, #1e293b); }
.canvas-2::after {
    content: ''; position: absolute; right: 20px; bottom: 20px; width: 40px; height: 40px;
    border: 2px solid rgba(255,255,255,0.05); border-radius: 50%;
}

.canvas-3 { background: #050816; }
.canvas-3::before {
    content: ''; position: absolute; top: 0; left: 0; right: 0; bottom: 0;
    background-image: linear-gradient(rgba(255,255,255,0.03) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255,255,255,0.03) 1px, transparent 1px);
    background-size: 20px 20px;
}

.canvas-4 { background: radial-gradient(circle at 50% 120%, var(--accent-soft), #050816); }
.canvas-5 { background: linear-gradient(120deg, #1e293b, #050816); }

/* Art Element in Hero */
.art-circle {
    position: absolute; top: 20%; right: 10%; width: 300px; height: 300px;
    border-radius: 50%; border: 1px solid rgba(255,255,255,0.05);
}
.art-glass {
    position: absolute; top: 30%; right: 15%; width: 200px; height: 200px;
    background: rgba(255,255,255,0.02); backdrop-filter: blur(20px);
    border-radius: 50%;
}

/* --- Minimal CTA --- */
.cta-panel.minimal {
    padding: 40px;
    background: linear-gradient(90deg, #0b1020, #050816);
}
.minimal-input {
    background: transparent; border: 1px solid var(--border);
    color: #fff; padding: 12px 20px; border-radius: 8px; width: 300px;
}
.input-group { display: flex; gap: 10px; }

/* Responsive Grid */
@media (max-width: 1024px) {
    .magazine-grid { grid-template-columns: 1fr 1fr; }
    .mag-sidebar { grid-column: span 2; grid-row: auto; display: grid; grid-template-columns: 1fr 1fr; gap: 20px; }
    .hero-feature { grid-column: span 2; }
}

@media (max-width: 768px) {
    .magazine-grid { display: flex; flex-direction: column; }
    .mag-sidebar { display: flex; flex-direction: column; gap: 0; }
    .input-group { flex-direction: column; width: 100%; }
    .minimal-input { width: 100%; }
    .journal-title-lockup h1 { font-size: 2.5rem; }
}