/* DomainUI Dark Theme — Premium Fintech Style
   ============================================= */

/* CSS Variables */
:root {
    --bg-primary: #0a0a0f;
    --bg-surface: #12121a;
    --bg-card: rgba(255,255,255,0.04);
    --bg-card-hover: rgba(255,255,255,0.07);
    --text-primary: #f1f1f4;
    --text-secondary: #8b8b9e;
    --text-muted: #5a5a6e;
    --accent-orange: #f97316;
    --accent-orange-dark: #ea580c;
    --accent-purple: #8b5cf6;
    --accent-purple-dark: #7c3aed;
    --border-glass: rgba(255,255,255,0.08);
    --border-glass-hover: rgba(255,255,255,0.14);
    --glow-orange: rgba(249,115,22,0.15);
    --glow-purple: rgba(139,92,246,0.15);
    --radius-sm: 10px;
    --radius-md: 16px;
    --radius-lg: 20px;
    --radius-xl: 24px;
    --radius-full: 9999px;
}

/* Base */
body {
    background: var(--bg-primary);
    color: var(--text-secondary);
    font-family: 'Inter', system-ui, -apple-system, sans-serif;
    overflow-x: hidden;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
}

/* Typography */
h1, h2, h3, h4, h5, h6 {
    color: var(--text-primary);
    font-weight: 700;
    line-height: 1.15;
}

/* Section Spacing */
.dui-section {
    padding: 100px 0;
    position: relative;
}
.dui-section-sm {
    padding: 60px 0;
}

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

/* Glass Cards */
.glass-card {
    backdrop-filter: blur(12px);
    -webkit-backdrop-filter: blur(12px);
    background: var(--bg-card);
    border: 1px solid var(--border-glass);
    border-radius: var(--radius-lg);
    transition: all 0.35s cubic-bezier(0.4, 0, 0.2, 1);
}
.glass-card:hover {
    background: var(--bg-card-hover);
    border-color: var(--border-glass-hover);
    transform: translateY(-4px);
    box-shadow: 0 20px 40px rgba(0,0,0,0.3);
}

/* Buttons */
.btn-primary {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 14px 32px;
    background: linear-gradient(135deg, var(--accent-orange), var(--accent-orange-dark));
    color: #fff;
    font-weight: 600;
    font-size: 16px;
    border-radius: var(--radius-full);
    border: none;
    cursor: pointer;
    text-decoration: none;
    transition: all 0.3s ease;
    box-shadow: 0 4px 15px rgba(249,115,22,0.3);
}
.btn-primary:hover {
    transform: scale(1.05);
    box-shadow: 0 6px 25px rgba(249,115,22,0.4);
    color: #fff;
    text-decoration: none;
}

.btn-secondary {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 14px 32px;
    background: rgba(255,255,255,0.06);
    color: #ffffff;
    font-weight: 600;
    font-size: 16px;
    border-radius: var(--radius-full);
    border: 1px solid rgba(255,255,255,0.2);
    cursor: pointer;
    text-decoration: none;
    transition: all 0.3s ease;
    backdrop-filter: blur(8px);
}
.btn-secondary:hover {
    background: rgba(255,255,255,0.06);
    border-color: rgba(255,255,255,0.2);
    transform: scale(1.03);
    color: #fff;
    text-decoration: none;
}

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

/* Eyebrow Badge */
.eyebrow {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 8px 20px;
    background: rgba(249,115,22,0.1);
    border: 1px solid rgba(249,115,22,0.2);
    border-radius: var(--radius-full);
    color: var(--accent-orange);
    font-size: 14px;
    font-weight: 500;
    letter-spacing: 0.02em;
    margin-bottom: 24px;
}
.eyebrow-purple {
    background: rgba(139,92,246,0.1);
    border-color: rgba(139,92,246,0.2);
    color: var(--accent-purple);
}

/* Hero Section */
.hero-section {
    min-height: auto;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: flex-start;
    text-align: center;
    padding: 90px 24px 50px;
    position: relative;
    overflow: hidden;
}
.hero-section::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    height: 250px;
    background: linear-gradient(to bottom, rgba(10,10,15,0) 0%, rgba(10,10,15,0.4) 40%, rgba(10,10,15,0.8) 70%, rgba(10,10,15,1) 100%);
    pointer-events: none;
    z-index: 3;
}

.hero-glow {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    pointer-events: none;
    z-index: 0;
}
.hero-glow::before {
    content: '';
    position: absolute;
    top: -20%;
    left: -10%;
    width: 600px;
    height: 600px;
    background: radial-gradient(circle, var(--glow-orange) 0%, transparent 70%);
    border-radius: 50%;
}
.hero-glow::after {
    content: '';
    position: absolute;
    bottom: -10%;
    right: -10%;
    width: 500px;
    height: 500px;
    background: radial-gradient(circle, var(--glow-purple) 0%, transparent 70%);
    border-radius: 50%;
}

/* Hero Animation Layer */
.hero-anim {
    position: absolute;
    inset: 0;
    pointer-events: none;
    z-index: 1;
    overflow: hidden;
}

/* Floating Orbs — bold, visible */
.hero-orb {
    position: absolute;
    border-radius: 50%;
    filter: blur(40px);
    animation: orbFloat 12s ease-in-out infinite;
}
.hero-orb-1 {
    width: 600px;
    height: 600px;
    background: rgba(249,115,22,0.18);
    top: -20%;
    left: -10%;
    animation-duration: 10s;
}
.hero-orb-2 {
    width: 550px;
    height: 550px;
    background: rgba(139,92,246,0.16);
    bottom: -15%;
    right: -10%;
    animation-delay: -3s;
    animation-duration: 13s;
}
.hero-orb-3 {
    width: 350px;
    height: 350px;
    background: rgba(249,115,22,0.12);
    top: 30%;
    right: 5%;
    animation-delay: -6s;
    animation-duration: 11s;
}
.hero-orb-4 {
    width: 300px;
    height: 300px;
    background: rgba(139,92,246,0.14);
    top: 10%;
    left: 20%;
    animation-delay: -4s;
    animation-duration: 12s;
}

@keyframes orbFloat {
    0%, 100% {
        transform: translate(0, 0) scale(1);
        opacity: 0.6;
    }
    25% {
        transform: translate(50px, -60px) scale(1.15);
        opacity: 1;
    }
    50% {
        transform: translate(-30px, 40px) scale(0.9);
        opacity: 0.7;
    }
    75% {
        transform: translate(60px, 50px) scale(1.1);
        opacity: 1;
    }
}

/* Pulsing Rings — brighter borders */
.hero-ring {
    position: absolute;
    border-radius: 50%;
    border: 1px solid rgba(249,115,22,0.15);
    animation: ringPulse 6s ease-in-out infinite;
}
.hero-ring-1 {
    width: 500px;
    height: 500px;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
}
.hero-ring-2 {
    width: 800px;
    height: 800px;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    border-color: rgba(139,92,246,0.12);
    animation-delay: -3s;
    animation-duration: 8s;
}

@keyframes ringPulse {
    0% {
        transform: translate(-50%, -50%) scale(0.6);
        opacity: 0;
    }
    40% {
        opacity: 1;
    }
    100% {
        transform: translate(-50%, -50%) scale(1.5);
        opacity: 0;
    }
}

/* Floating Particles — bigger, brighter */
.hero-particles {
    position: absolute;
    inset: 0;
}
.hero-particles span {
    position: absolute;
    border-radius: 50%;
    background: #f97316;
    box-shadow: 0 0 6px 2px rgba(249,115,22,0.4);
    animation: particleDrift linear infinite;
}
.hero-particles span:nth-child(even) {
    background: #8b5cf6;
    box-shadow: 0 0 6px 2px rgba(139,92,246,0.4);
}
.hero-particles span:nth-child(1)  { left: 5%;  top: 20%; width: 3px; height: 3px; animation-duration: 14s; animation-delay: 0s; }
.hero-particles span:nth-child(2)  { left: 15%; top: 60%; width: 4px; height: 4px; animation-duration: 18s; animation-delay: -2s; }
.hero-particles span:nth-child(3)  { left: 25%; top: 30%; width: 5px; height: 5px; animation-duration: 16s; animation-delay: -5s; }
.hero-particles span:nth-child(4)  { left: 35%; top: 80%; width: 3px; height: 3px; animation-duration: 13s; animation-delay: -7s; }
.hero-particles span:nth-child(5)  { left: 45%; top: 10%; width: 4px; height: 4px; animation-duration: 17s; animation-delay: -3s; }
.hero-particles span:nth-child(6)  { left: 55%; top: 50%; width: 3px; height: 3px; animation-duration: 15s; animation-delay: -6s; }
.hero-particles span:nth-child(7)  { left: 65%; top: 25%; width: 5px; height: 5px; animation-duration: 19s; animation-delay: -1s; }
.hero-particles span:nth-child(8)  { left: 75%; top: 70%; width: 4px; height: 4px; animation-duration: 14s; animation-delay: -4s; }
.hero-particles span:nth-child(9)  { left: 85%; top: 40%; width: 3px; height: 3px; animation-duration: 16s; animation-delay: -8s; }
.hero-particles span:nth-child(10) { left: 92%; top: 15%; width: 4px; height: 4px; animation-duration: 13s; animation-delay: -9s; }
.hero-particles span:nth-child(11) { left: 10%; top: 45%; width: 3px; height: 3px; animation-duration: 20s; animation-delay: -11s; }
.hero-particles span:nth-child(12) { left: 20%; top: 75%; width: 5px; height: 5px; animation-duration: 12s; animation-delay: -10s; }
.hero-particles span:nth-child(13) { left: 40%; top: 55%; width: 4px; height: 4px; animation-duration: 15s; animation-delay: -2s; }
.hero-particles span:nth-child(14) { left: 50%; top: 85%; width: 3px; height: 3px; animation-duration: 14s; animation-delay: -6s; }
.hero-particles span:nth-child(15) { left: 60%; top: 35%; width: 4px; height: 4px; animation-duration: 17s; animation-delay: -8s; }
.hero-particles span:nth-child(16) { left: 70%; top: 90%; width: 5px; height: 5px; animation-duration: 16s; animation-delay: -4s; }
.hero-particles span:nth-child(17) { left: 80%; top: 5%;  width: 3px; height: 3px; animation-duration: 19s; animation-delay: -7s; }
.hero-particles span:nth-child(18) { left: 30%; top: 15%; width: 4px; height: 4px; animation-duration: 13s; animation-delay: -12s; }
.hero-particles span:nth-child(19) { left: 88%; top: 55%; width: 3px; height: 3px; animation-duration: 15s; animation-delay: -1s; }
.hero-particles span:nth-child(20) { left: 48%; top: 42%; width: 4px; height: 4px; animation-duration: 14s; animation-delay: -5s; }

@keyframes particleDrift {
    0% {
        opacity: 0;
        transform: translateY(0) translateX(0) scale(1);
    }
    15% {
        opacity: 1;
    }
    50% {
        opacity: 0.6;
        transform: translateY(-100px) translateX(40px) scale(1.3);
    }
    85% {
        opacity: 0.9;
    }
    100% {
        opacity: 0;
        transform: translateY(-220px) translateX(-30px) scale(0.8);
    }
}

/* Grid Lines — more visible */
.hero-grid-lines {
    position: absolute;
    inset: 0;
    background-image:
        linear-gradient(rgba(255,255,255,0.035) 1px, transparent 1px),
        linear-gradient(90deg, rgba(255,255,255,0.035) 1px, transparent 1px);
    background-size: 70px 70px;
    mask-image: radial-gradient(ellipse 70% 70% at 50% 50%, black 10%, transparent 70%);
    -webkit-mask-image: radial-gradient(ellipse 70% 70% at 50% 50%, black 10%, transparent 70%);
    animation: gridFade 4s ease-in-out infinite alternate;
}

@keyframes gridFade {
    0%   { opacity: 0.4; }
    100% { opacity: 1; }
}

.hero-content {
    position: relative;
    z-index: 4;
    max-width: 820px;
}

.hero-title {
    font-size: clamp(40px, 5.5vw, 64px);
    font-weight: 800;
    line-height: 1.08;
    margin-bottom: 24px;
    letter-spacing: -0.03em;
}

.hero-subtitle {
    font-size: clamp(16px, 2vw, 20px);
    color: var(--text-secondary);
    line-height: 1.6;
    max-width: 640px;
    margin: 0 auto 40px;
}

.hero-buttons {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 16px;
    margin-bottom: 48px;
    flex-wrap: wrap;
}

/* Trust Strip */
.trust-strip {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 32px;
    flex-wrap: wrap;
}
.trust-item {
    display: flex;
    align-items: center;
    gap: 8px;
    font-size: 14px;
    color: var(--text-primary);
}
.trust-item svg {
    width: 18px;
    height: 18px;
    color: var(--accent-orange);
    flex-shrink: 0;
}

/* Floating Dashboard Mockup */
.dashboard-mockup {
    max-width: 1100px;
    margin: -40px auto 0;
    position: relative;
    z-index: 2;
    padding: 0 24px;
}
.dashboard-panel {
    background: var(--bg-surface);
    border: 1px solid var(--border-glass);
    border-radius: var(--radius-xl);
    padding: 32px;
    box-shadow: 0 40px 80px rgba(0,0,0,0.5), 0 0 100px rgba(249,115,22,0.05);
}
.dashboard-header {
    display: flex;
    align-items: center;
    justify-content: space-between;
    margin-bottom: 28px;
}
.dashboard-greeting {
    font-size: 20px;
    font-weight: 600;
    color: var(--text-primary);
}
.dashboard-date {
    font-size: 13px;
    color: var(--text-muted);
}

/* Dashboard Metric Tiles */
.metric-tiles {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 16px;
    margin-bottom: 28px;
}
.metric-tile {
    background: rgba(255,255,255,0.03);
    border: 1px solid var(--border-glass);
    border-radius: var(--radius-md);
    padding: 20px;
}
.metric-label {
    font-size: 12px;
    color: var(--text-muted);
    margin-bottom: 8px;
    text-transform: uppercase;
    letter-spacing: 0.05em;
}
.metric-value {
    font-size: 28px;
    font-weight: 700;
    color: var(--text-primary);
}
.metric-value.green { color: #10b981; }
.metric-value.red { color: #ef4444; }
.metric-value.orange { color: var(--accent-orange); }
.metric-value.purple { color: var(--accent-purple); }

/* Dashboard Chart */
.dashboard-body {
    display: grid;
    grid-template-columns: 1.5fr 1fr;
    gap: 24px;
}
.chart-area {
    background: rgba(255,255,255,0.02);
    border: 1px solid var(--border-glass);
    border-radius: var(--radius-md);
    padding: 20px;
}
.chart-title {
    font-size: 13px;
    color: var(--text-muted);
    margin-bottom: 16px;
    font-weight: 500;
}
.chart-bars {
    display: flex;
    align-items: flex-end;
    gap: 12px;
    height: 120px;
    padding-top: 8px;
}
.chart-bar {
    flex: 1;
    border-radius: 4px 4px 0 0;
    min-width: 20px;
    transition: height 0.6s ease;
}
.chart-bar-orange {
    background: linear-gradient(to top, var(--accent-orange-dark), var(--accent-orange));
}
.chart-bar-purple {
    background: linear-gradient(to top, var(--accent-purple-dark), var(--accent-purple));
}
.chart-labels {
    display: flex;
    gap: 12px;
    margin-top: 8px;
}
.chart-labels span {
    flex: 1;
    text-align: center;
    font-size: 10px;
    color: var(--text-muted);
}

/* Dashboard Mini Table */
.mini-table {
    background: rgba(255,255,255,0.02);
    border: 1px solid var(--border-glass);
    border-radius: var(--radius-md);
    padding: 20px;
}
.mini-table-title {
    font-size: 13px;
    color: var(--text-muted);
    margin-bottom: 12px;
    font-weight: 500;
}
.mini-table-row {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 8px 0;
    border-bottom: 1px solid rgba(255,255,255,0.04);
}
.mini-table-row:last-child {
    border-bottom: none;
}
.mini-table-domain {
    font-size: 13px;
    color: var(--text-primary);
    font-weight: 500;
}
.mini-table-stat {
    font-size: 12px;
    color: var(--text-muted);
}
.mini-table-revenue {
    font-size: 13px;
    color: #10b981;
    font-weight: 600;
}

/* Section Headings */
.section-eyebrow {
    text-align: center;
    margin-bottom: 16px;
}
.section-title {
    text-align: center;
    font-size: clamp(28px, 3.5vw, 42px);
    font-weight: 700;
    margin-bottom: 20px;
    letter-spacing: -0.02em;
}
.section-subtitle {
    text-align: center;
    font-size: 17px;
    color: var(--text-secondary);
    max-width: 640px;
    margin: 0 auto 56px;
    line-height: 1.6;
}

/* Feature Pillar Cards */
.pillar-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 24px;
}
.pillar-card {
    padding: 36px;
}
.pillar-icon {
    width: 48px;
    height: 48px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: rgba(249,115,22,0.1);
    border-radius: 12px;
    margin-bottom: 20px;
    color: var(--accent-orange);
}
.pillar-icon.purple {
    background: rgba(139,92,246,0.1);
    color: var(--accent-purple);
}
.pillar-icon.green {
    background: rgba(16,185,129,0.1);
    color: #10b981;
}
.pillar-card h3 {
    font-size: 20px;
    margin-bottom: 12px;
}
.pillar-list {
    list-style: none;
    padding: 0;
    margin: 0;
}
.pillar-list li {
    padding: 6px 0;
    font-size: 14px;
    color: var(--text-secondary);
    display: flex;
    align-items: center;
    gap: 8px;
}
.pillar-list li::before {
    content: '';
    width: 5px;
    height: 5px;
    border-radius: 50%;
    background: var(--accent-orange);
    flex-shrink: 0;
}

/* Engines Grid */
.engines-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 20px;
}
.engine-card {
    padding: 32px;
    display: flex;
    flex-direction: column;
}
.engine-icon {
    width: 44px;
    height: 44px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 16px;
    color: var(--accent-orange);
}
.engine-icon svg {
    width: 32px;
    height: 32px;
}
.engine-card h3 {
    font-size: 18px;
    margin-bottom: 8px;
}
.engine-card p {
    font-size: 14px;
    color: var(--text-secondary);
    line-height: 1.5;
    margin-bottom: 16px;
    flex: 1;
}
.engine-link {
    font-size: 14px;
    font-weight: 500;
    color: var(--accent-orange);
    text-decoration: none;
    display: inline-flex;
    align-items: center;
    gap: 4px;
    transition: gap 0.2s ease;
}
.engine-link:hover {
    gap: 8px;
    color: var(--accent-orange);
}

/* Split Section (text + visual) */
.split-section {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: center;
}
.split-text h2 {
    font-size: clamp(26px, 3vw, 36px);
    margin-bottom: 24px;
}
.split-list {
    list-style: none;
    padding: 0;
    margin: 0;
}
.split-list li {
    padding: 5px 0;
    font-size: 15px;
    color: var(--text-secondary);
    display: flex;
    align-items: center;
    gap: 12px;
}
.split-list li svg {
    width: 20px;
    height: 20px;
    color: var(--accent-orange);
    flex-shrink: 0;
}

/* Marketplace Cards */
.marketplace-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 24px;
}
.marketplace-card {
    padding: 32px;
    text-align: center;
}
.marketplace-card h3 {
    font-size: 20px;
    margin-bottom: 12px;
}
.marketplace-card p {
    font-size: 14px;
    color: var(--text-secondary);
    margin-bottom: 16px;
}
.stat-chip {
    display: inline-block;
    padding: 6px 14px;
    background: rgba(249,115,22,0.1);
    border: 1px solid rgba(249,115,22,0.15);
    border-radius: var(--radius-full);
    font-size: 12px;
    color: var(--accent-orange);
    font-weight: 500;
}
.stat-chip.purple {
    background: rgba(139,92,246,0.1);
    border-color: rgba(139,92,246,0.15);
    color: var(--accent-purple);
}

/* Punch Section */
.punch-section {
    text-align: center;
    padding: 100px 24px;
}
.punch-line {
    font-size: clamp(24px, 3.5vw, 40px);
    font-weight: 700;
    color: var(--text-primary);
    margin-bottom: 12px;
    opacity: 0.4;
    transition: opacity 0.3s ease;
}
.punch-line.active,
.punch-line:last-child {
    opacity: 1;
}
.punch-line:last-child {
    color: var(--accent-orange);
}

/* CTA Section */
.cta-section {
    text-align: center;
    padding: 100px 24px;
    position: relative;
}
.cta-section::before {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 600px;
    height: 400px;
    background: radial-gradient(circle, var(--glow-orange) 0%, transparent 70%);
    pointer-events: none;
}
.cta-title {
    font-size: clamp(28px, 4vw, 48px);
    font-weight: 800;
    margin-bottom: 32px;
    position: relative;
    z-index: 1;
    letter-spacing: -0.02em;
}
.cta-buttons {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 16px;
    position: relative;
    z-index: 1;
    flex-wrap: wrap;
}

/* Page Hero (sub-pages) */
.page-hero {
    padding: 160px 24px 80px;
    text-align: center;
    position: relative;
    overflow: hidden;
}
.page-hero::before {
    content: '';
    position: absolute;
    top: -30%;
    left: 20%;
    width: 500px;
    height: 500px;
    background: radial-gradient(circle, var(--glow-orange) 0%, transparent 70%);
    pointer-events: none;
    opacity: 0.5;
}
.page-hero h1 {
    font-size: clamp(36px, 4.5vw, 56px);
    font-weight: 800;
    margin-bottom: 20px;
    position: relative;
    z-index: 1;
    letter-spacing: -0.02em;
}
.page-hero p {
    font-size: 18px;
    color: var(--text-secondary);
    max-width: 640px;
    margin: 0 auto;
    position: relative;
    z-index: 1;
    line-height: 1.6;
}

/* Feature Grid (features page) */
.feature-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 24px;
}
.feature-card {
    padding: 32px;
}
.feature-card .feature-icon {
    width: 48px;
    height: 48px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: rgba(249,115,22,0.1);
    border-radius: 12px;
    margin-bottom: 16px;
    color: var(--accent-orange);
}
.feature-card h3 {
    font-size: 18px;
    margin-bottom: 8px;
}
.feature-card p {
    font-size: 14px;
    color: var(--text-secondary);
    line-height: 1.6;
}

/* Pricing Cards */
.pricing-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 24px;
    align-items: start;
}
.pricing-card {
    padding: 40px 32px;
    text-align: center;
    position: relative;
}
.pricing-card.popular {
    border-color: var(--accent-orange);
    box-shadow: 0 0 40px rgba(249,115,22,0.1);
}
.pricing-badge {
    position: absolute;
    top: -12px;
    left: 50%;
    transform: translateX(-50%);
    padding: 4px 16px;
    background: linear-gradient(135deg, var(--accent-orange), var(--accent-orange-dark));
    color: #fff;
    font-size: 11px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.1em;
    border-radius: var(--radius-full);
}
.pricing-name {
    font-size: 20px;
    font-weight: 700;
    color: var(--text-primary);
    margin-bottom: 8px;
}
.pricing-price {
    font-size: 48px;
    font-weight: 800;
    color: var(--text-primary);
    margin-bottom: 4px;
}
.pricing-price span {
    font-size: 18px;
    font-weight: 400;
    color: var(--text-muted);
}
.pricing-desc {
    font-size: 14px;
    color: var(--text-secondary);
    margin-bottom: 28px;
}
.pricing-features {
    list-style: none;
    padding: 0;
    margin: 0 0 32px;
    text-align: left;
}
.pricing-features li {
    padding: 8px 0;
    font-size: 14px;
    color: var(--text-secondary);
    display: flex;
    align-items: center;
    gap: 10px;
}
.pricing-features li svg {
    width: 18px;
    height: 18px;
    color: #10b981;
    flex-shrink: 0;
}

/* Content Section (legal pages, docs etc) */
.content-section {
    padding: 40px 0 100px;
}
.content-wrapper {
    max-width: 800px;
    margin: 0 auto;
}
.content-wrapper h2 {
    font-size: 24px;
    margin: 40px 0 16px;
}
.content-wrapper h3 {
    font-size: 20px;
    margin: 32px 0 12px;
}
.content-wrapper p {
    font-size: 16px;
    line-height: 1.7;
    color: var(--text-secondary);
    margin-bottom: 16px;
}
.content-wrapper ul, .content-wrapper ol {
    padding-left: 24px;
    margin-bottom: 16px;
}
.content-wrapper li {
    font-size: 15px;
    color: var(--text-secondary);
    line-height: 1.6;
    margin-bottom: 8px;
}
.content-wrapper a {
    color: var(--accent-orange);
    text-decoration: none;
}
.content-wrapper a:hover {
    text-decoration: underline;
}

/* Contact Form */
.contact-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 48px;
    align-items: start;
}
.contact-form .form-group {
    margin-bottom: 20px;
}
.contact-form label {
    display: block;
    font-size: 14px;
    font-weight: 500;
    color: var(--text-primary);
    margin-bottom: 8px;
}
.contact-form input,
.contact-form textarea {
    width: 100%;
    padding: 12px 16px;
    background: rgba(255,255,255,0.04);
    border: 1px solid var(--border-glass);
    border-radius: var(--radius-sm);
    color: var(--text-primary);
    font-size: 15px;
    font-family: 'Inter', sans-serif;
    transition: border-color 0.2s ease;
    outline: none;
    box-sizing: border-box;
}
.contact-form input:focus,
.contact-form textarea:focus {
    border-color: var(--accent-orange);
    box-shadow: 0 0 0 3px rgba(249,115,22,0.1);
}
.contact-form textarea {
    min-height: 140px;
    resize: vertical;
}
.contact-info-card {
    padding: 32px;
}
.contact-info-card h3 {
    font-size: 18px;
    margin-bottom: 20px;
}
.contact-method {
    display: flex;
    align-items: flex-start;
    gap: 12px;
    margin-bottom: 20px;
}
.contact-method svg {
    width: 20px;
    height: 20px;
    color: var(--accent-orange);
    flex-shrink: 0;
    margin-top: 2px;
}
.contact-method-label {
    font-size: 13px;
    color: var(--text-muted);
    margin-bottom: 4px;
}
.contact-method-value {
    font-size: 15px;
    color: var(--text-primary);
}
.contact-method-value a {
    color: var(--accent-orange);
    text-decoration: none;
}

/* Timeline (about/mission) */
.timeline {
    position: relative;
    max-width: 700px;
    margin: 0 auto;
}
.timeline::before {
    content: '';
    position: absolute;
    left: 24px;
    top: 0;
    bottom: 0;
    width: 2px;
    background: var(--border-glass);
}
.timeline-item {
    padding-left: 64px;
    position: relative;
    margin-bottom: 48px;
}
.timeline-dot {
    position: absolute;
    left: 16px;
    top: 4px;
    width: 18px;
    height: 18px;
    border-radius: 50%;
    background: linear-gradient(135deg, var(--accent-orange), var(--accent-orange-dark));
    border: 3px solid var(--bg-primary);
}
.timeline-label {
    font-size: 13px;
    color: var(--accent-orange);
    font-weight: 600;
    margin-bottom: 8px;
    text-transform: uppercase;
    letter-spacing: 0.05em;
}
.timeline-item h3 {
    font-size: 20px;
    margin-bottom: 8px;
}
.timeline-item p {
    font-size: 15px;
    color: var(--text-secondary);
    line-height: 1.6;
}

/* Stats Row */
.stats-row {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 24px;
    margin: 60px 0;
}
.stat-block {
    text-align: center;
    padding: 32px 16px;
}
.stat-number {
    font-size: 40px;
    font-weight: 800;
    color: var(--accent-orange);
    margin-bottom: 8px;
}
.stat-label {
    font-size: 14px;
    color: var(--text-secondary);
}

/* Examples Grid */
.examples-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 24px;
}
.example-card {
    padding: 24px;
}
.example-domain {
    font-size: 16px;
    font-weight: 600;
    color: var(--accent-orange);
    margin-bottom: 8px;
}
.example-niche {
    font-size: 13px;
    color: var(--text-muted);
    margin-bottom: 16px;
    text-transform: uppercase;
    letter-spacing: 0.05em;
}
.example-link {
    font-size: 14px;
    color: var(--accent-orange);
    text-decoration: none;
    font-weight: 500;
    display: inline-flex;
    align-items: center;
    gap: 4px;
}

/* FAQ Accordion */
.faq-list {
    max-width: 700px;
    margin: 0 auto;
}
.faq-item {
    border-bottom: 1px solid var(--border-glass);
}
.faq-question {
    width: 100%;
    padding: 20px 0;
    background: none;
    border: none;
    text-align: left;
    color: var(--text-primary);
    font-size: 16px;
    font-weight: 600;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 16px;
    font-family: 'Inter', sans-serif;
}
.faq-question svg {
    width: 20px;
    height: 20px;
    color: var(--text-muted);
    flex-shrink: 0;
    transition: transform 0.3s ease;
}
.faq-question.active svg {
    transform: rotate(45deg);
}
.faq-answer {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.3s ease;
}
.faq-answer p {
    padding-bottom: 20px;
    font-size: 15px;
    color: var(--text-secondary);
    line-height: 1.6;
}

/* Alternating Surface Sections */
.surface-section {
    background: var(--bg-surface);
}

/* Scroll Reveal Animation */
.reveal {
    opacity: 0;
    transform: translateY(30px);
    transition: opacity 0.7s ease, transform 0.7s ease;
}
.reveal.visible {
    opacity: 1;
    transform: translateY(0);
}

/* Legal Page Quick Links */
.legal-quicklinks {
    display: flex;
    gap: 16px;
    margin-top: 48px;
    padding-top: 32px;
    border-top: 1px solid var(--border-glass);
}
.legal-quicklinks a {
    padding: 10px 20px;
    background: var(--bg-card);
    border: 1px solid var(--border-glass);
    border-radius: var(--radius-full);
    color: var(--text-secondary);
    font-size: 14px;
    text-decoration: none;
    transition: all 0.2s ease;
}
.legal-quicklinks a:hover {
    background: var(--bg-card-hover);
    color: var(--text-primary);
}

/* Doc Cards */
.doc-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 24px;
}
.doc-card {
    padding: 32px;
}
.doc-card h3 {
    font-size: 18px;
    margin-bottom: 8px;
}
.doc-card p {
    font-size: 14px;
    color: var(--text-secondary);
    margin-bottom: 16px;
    line-height: 1.6;
}

/* Responsive */
@media (max-width: 1024px) {
    .pillar-grid,
    .engines-grid,
    .marketplace-grid,
    .pricing-grid,
    .feature-grid,
    .examples-grid {
        grid-template-columns: repeat(2, 1fr);
    }
    .split-section {
        grid-template-columns: 1fr;
        gap: 40px;
    }
    .metric-tiles {
        grid-template-columns: repeat(2, 1fr);
    }
    .dashboard-body {
        grid-template-columns: 1fr;
    }
    .stats-row {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 768px) {
    .dui-section {
        padding: 60px 0;
    }
    .hero-section {
        padding: 90px 16px 32px;
        min-height: auto;
    }
    .hero-title {
        font-size: clamp(28px, 8vw, 36px);
    }
    .hero-subtitle {
        font-size: 15px;
    }
    .hero-buttons {
        flex-direction: column;
        width: 100%;
        max-width: 320px;
        margin-left: auto;
        margin-right: auto;
        margin-bottom: 32px;
        gap: 12px;
    }
    .btn-primary, .btn-secondary {
        width: 100%;
        justify-content: center;
        padding: 12px 24px;
        font-size: 15px;
    }
    .trust-strip {
        display: grid;
        grid-template-columns: 1fr 1fr;
        gap: 10px;
    }
    .trust-item {
        font-size: 12px;
        gap: 6px;
    }
    .trust-item svg {
        width: 14px;
        height: 14px;
    }
    .eyebrow {
        font-size: 12px;
        padding: 6px 14px;
    }
    .pillar-grid,
    .marketplace-grid,
    .pricing-grid,
    .feature-grid,
    .examples-grid,
    .doc-grid {
        grid-template-columns: 1fr;
    }
    .engines-grid {
        grid-template-columns: 1fr 1fr;
        gap: 12px;
    }
    .engine-card {
        padding: 20px;
    }
    .engine-card h3 {
        font-size: 15px;
    }
    .engine-card p {
        font-size: 13px;
        margin-bottom: 10px;
    }
    .engine-icon {
        margin-bottom: 10px;
    }
    .engine-icon svg {
        width: 24px;
        height: 24px;
    }
    .pillar-card {
        padding: 24px;
    }
    .contact-grid {
        grid-template-columns: 1fr;
    }
    .dashboard-mockup {
        padding: 0 12px !important;
        margin: 40px auto 0 !important;
    }
    .dashboard-panel {
        padding: 16px;
        border-radius: 16px;
    }
    .dashboard-header {
        flex-direction: column;
        align-items: flex-start;
        gap: 10px;
        margin-bottom: 16px;
    }
    .dashboard-date {
        font-size: 11px;
    }
    .metric-tiles {
        grid-template-columns: 1fr 1fr;
        gap: 8px;
    }
    .metric-tile {
        padding: 12px;
    }
    .metric-label {
        font-size: 10px;
        margin-bottom: 4px;
    }
    .metric-value {
        font-size: 20px;
    }
    .chart-bars {
        height: 80px;
        gap: 8px;
    }
    .dashboard-body {
        gap: 12px;
    }
    .chart-area, .mini-table {
        padding: 14px;
    }
    .mini-table-domain {
        font-size: 12px;
    }
    .mini-table-stat {
        font-size: 11px;
    }
    .mini-table-revenue {
        font-size: 12px;
    }
    .section-title {
        font-size: clamp(22px, 6vw, 28px);
        padding: 0 8px;
    }
    .section-subtitle {
        font-size: 14px;
        margin-bottom: 36px;
        padding: 0 8px;
    }
    .split-section {
        gap: 24px;
    }
    .split-text h2 {
        font-size: 24px;
    }
    .split-list li {
        font-size: 14px;
        padding: 8px 0;
    }
    .stats-row {
        grid-template-columns: 1fr 1fr;
        gap: 12px;
    }
    .stat-block {
        padding: 20px 12px;
    }
    .stat-number {
        font-size: 28px;
    }
    .legal-quicklinks {
        flex-direction: column;
    }
    .page-hero {
        padding: 90px 16px 48px;
    }
    .page-hero h1 {
        font-size: clamp(26px, 7vw, 36px);
    }
    .page-hero p {
        font-size: 15px;
    }
    .marketplace-card {
        padding: 24px;
    }
}

@media (max-width: 480px) {
    .hero-section {
        padding: 80px 14px 24px;
    }
    .hero-title {
        font-size: 26px;
    }
    .engines-grid {
        grid-template-columns: 1fr;
    }
    .metric-tiles {
        grid-template-columns: 1fr 1fr;
        gap: 6px;
    }
    .metric-tile {
        padding: 10px;
    }
    .metric-value {
        font-size: 18px;
    }
}
