:root {
    --hmy-blue: #29ABE2;
    --hmy-blue-bright: #4FC3F7;
    --hmy-blue-soft: rgba(41, 171, 226, 0.1);
    --hmy-blue-glow: rgba(41, 171, 226, 0.35);
    --hmy-cyan: #00D9FF;
    --bg: #08111F;
    --bg-soft: #0E1A2E;
    --bg-card: #131F36;
    --bg-elevated: #1A2842;
    --line: #1E2D47;
    --line-bright: #2A3D5C;
    --text: #F1F5FB;
    --text-muted: #95A6BD;
    --text-dim: #5E6F89;
    --white: #FFFFFF;
    --success: #10B981;
    --warning: #F59E0B;
    --danger: #EF4444;
    /* Suite-specific - injected per landing */
    --suite-color: #86EFAC;
    --suite-color-dark: #4ADE80;
    --suite-color-soft: rgba(134, 239, 172, 0.1);
    --suite-color-glow: rgba(134, 239, 172, 0.35);
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
}

body {
    font-family: 'Geist', system-ui, sans-serif;
    background: var(--bg);
    color: var(--text);
    line-height: 1.6;
    font-size: 15px;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
    overflow-x: hidden;
}

body::before {
    content: '';
    position: fixed;
    inset: 0;
    background-image:
        radial-gradient(circle at 12% 18%, var(--suite-color-soft) 0%, transparent 35%),
        radial-gradient(circle at 88% 65%, rgba(41, 171, 226, 0.06) 0%, transparent 35%);
    pointer-events: none;
    z-index: 0;
}

.container {
    max-width: 1320px;
    margin: 0 auto;
    padding: 0 32px;
    position: relative;
    z-index: 1;
}

@media (max-width: 768px) {
    .container {
        padding: 0 20px;
    }
}

.serif {
    font-family: 'Instrument Serif', Georgia, serif;
    font-weight: 400;
    letter-spacing: -0.01em;
}

.mono {
    font-family: 'Geist Mono', monospace;
}

.eyebrow {
    font-family: 'Geist Mono', monospace;
    font-size: 11px;
    letter-spacing: 0.18em;
    text-transform: uppercase;
    color: var(--suite-color);
    font-weight: 500;
    display: inline-flex;
    align-items: center;
    gap: 8px;
}

.eyebrow::before {
    content: '';
    width: 6px;
    height: 6px;
    background: var(--suite-color);
    border-radius: 50%;
    box-shadow: 0 0 12px var(--suite-color-glow);
}

/* NAV */
nav {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 100;
    padding: 16px 32px;
    background: rgba(8, 17, 31, 0.7);
    backdrop-filter: blur(24px) saturate(180%);
    -webkit-backdrop-filter: blur(24px) saturate(180%);
    border-bottom: 1px solid transparent;
    transition: all 0.3s ease;
}

nav.scrolled {
    border-bottom-color: var(--line);
    padding: 12px 32px;
}

.nav-inner {
    max-width: 1320px;
    margin: 0 auto;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.logo-link {
    display: flex;
    align-items: center;
    text-decoration: none;
}

.logo-img {
    height: 32px;
    width: auto;
}

.nav-links {
    display: flex;
    gap: 28px;
    align-items: center;
    list-style: none;
}

.nav-links a {
    color: var(--text-muted);
    text-decoration: none;
    font-size: 14px;
    font-weight: 500;
    transition: color 0.2s;
}

.nav-links a:hover {
    color: var(--text);
}

.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    padding: 10px 18px;
    border-radius: 8px;
    font-family: 'Geist', sans-serif;
    font-weight: 500;
    font-size: 14px;
    text-decoration: none !important;
    cursor: pointer;
    border: none;
    transition: all 0.2s ease;
    letter-spacing: -0.01em;
    white-space: nowrap;
}

.btn-primary {
    background: var(--suite-color);
    color: var(--white) !important;
    font-weight: 600;
    box-shadow: 0 0 0 1px var(--suite-color), 0 4px 16px var(--suite-color-glow);
}

.btn-primary:hover {
    background: var(--suite-color-dark);
    transform: translateY(-1px);
    box-shadow: 0 0 0 1px var(--suite-color-dark), 0 8px 24px var(--suite-color-glow);
}

.btn-ghost {
    background: transparent;
    color: var(--text);
    border: 1px solid var(--line-bright);
}

.btn-ghost:hover {
    background: var(--bg-elevated);
    border-color: var(--suite-color);
}

.btn-large {
    padding: 14px 24px;
    font-size: 15px;
}

@media (max-width: 1024px) {
    .nav-links li.hide-md {
        display: none;
    }
}

@media (max-width: 768px) {
    .nav-links li:not(:last-child):not(:nth-last-child(2)) {
        display: none;
    }
}

/* BACK LINK */
.back-link {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    font-family: 'Geist Mono', monospace;
    font-size: 12px;
    color: var(--text-muted);
    text-decoration: none;
    letter-spacing: 0.05em;
    transition: color 0.2s, gap 0.2s;
    margin-bottom: 24px;
}

.back-link:hover {
    color: var(--suite-color);
    gap: 10px;
}

/* HERO */
.hero {
    padding: 140px 0 80px;
    position: relative;
    overflow-x: hidden;
    overflow-y: visible;
}

.hero-bg-grid {
    position: absolute;
    inset: 0;
    background-image:
        linear-gradient(to right, rgba(255, 255, 255, 0.03) 1px, transparent 1px),
        linear-gradient(to bottom, rgba(255, 255, 255, 0.03) 1px, transparent 1px);
    background-size: 64px 64px;
    pointer-events: none;
    mask-image: radial-gradient(ellipse 80% 60% at 50% 30%, black 30%, transparent 80%);
    -webkit-mask-image: radial-gradient(ellipse 80% 60% at 50% 30%, black 30%, transparent 80%);
}

.hero-bg-orb {
    position: absolute;
    width: 700px;
    height: 700px;
    border-radius: 50%;
    filter: blur(120px);
    pointer-events: none;
    opacity: 0.3;
    background: var(--suite-color);
    top: -200px;
    right: -150px;
}

.hero-content {
    max-width: 940px;
    margin: 0 auto;
    position: relative;
}

.suite-tag-large {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background: var(--suite-color-soft);
    border: 1px solid var(--suite-color);
    color: var(--suite-color);
    padding: 6px 14px;
    border-radius: 999px;
    font-family: 'Geist Mono', monospace;
    font-size: 11px;
    font-weight: 700;
    letter-spacing: 0.18em;
    margin-bottom: 24px;
}

.hero h1 {
    padding-bottom: 12px;
    font-size: clamp(38px, 6vw, 72px);
    line-height: 1.15;
    letter-spacing: -0.04em;
    font-weight: 400;
    margin-bottom: 20px;
    color: var(--text);
}

.hero h1 em {
    font-family: 'Instrument Serif', serif;
    font-style: italic;
    padding: 0 0.08em;
    background: linear-gradient(90deg, var(--suite-color) 0%, var(--suite-color-dark) 100%);
    -webkit-background-clip: text;
    background-clip: text;
    -webkit-text-fill-color: transparent;
    font-weight: 400;
}

.hero-tagline {
    padding-bottom: 4px;
    font-size: 22px;
    color: var(--suite-color);
    font-weight: 500;
    margin-bottom: 24px;
    letter-spacing: -0.01em;
}

.hero-sub {
    font-size: 18px;
    color: var(--text-muted);
    margin-bottom: 36px;
    max-width: 760px;
    line-height: 1.65;
}

.hero-sub strong {
    color: var(--text);
    font-weight: 500;
}

.hero-cta {
    display: flex;
    gap: 14px;
    flex-wrap: wrap;
}

/* WHY MATTERS */
.why-section {
    background: var(--bg-soft);
    border-top: 1px solid var(--line);
    border-bottom: 1px solid var(--line);
    padding: 90px 0;
}

.why-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 64px;
    align-items: center;
}

@media (max-width: 1024px) {
    .why-grid {
        grid-template-columns: 1fr;
        gap: 40px;
    }
}

.why-grid h2 {
    font-size: clamp(28px, 3.6vw, 42px);
    line-height: 1.15;
    letter-spacing: -0.03em;
    font-weight: 400;
    color: var(--text);
    margin-bottom: 18px;
}

.why-grid h2 em {
    font-family: 'Instrument Serif', serif;
    font-style: italic;
    color: var(--suite-color);
}

.why-grid p {
    color: var(--text-muted);
    font-size: 16px;
    line-height: 1.7;
    margin-bottom: 14px;
}

.why-grid p strong {
    color: var(--text);
}

.ideal-card {
    background: var(--bg-card);
    border: 1px solid var(--line-bright);
    border-radius: 16px;
    padding: 28px;
    border-left: 3px solid var(--suite-color);
}

.ideal-card .ideal-tag {
    font-family: 'Geist Mono', monospace;
    font-size: 10px;
    color: var(--suite-color);
    letter-spacing: 0.15em;
    margin-bottom: 10px;
    text-transform: uppercase;
    font-weight: 600;
}

.ideal-card h3 {
    font-size: 18px;
    color: var(--text);
    font-weight: 600;
    margin-bottom: 10px;
}

.ideal-card p {
    color: var(--text-muted);
    font-size: 14px;
    line-height: 1.6;
    margin: 0;
}

/* SECTIONS */
section {
    padding: 100px 0;
    position: relative;
}

.section-header {
    text-align: center;
    max-width: 760px;
    margin: 0 auto 56px;
}

.section-header h2 {
    font-size: clamp(32px, 4.4vw, 52px);
    line-height: 1.15;
    letter-spacing: -0.03em;
    font-weight: 400;
    color: var(--text);
    margin: 16px 0 18px;
}

.section-header h2 em {
    font-family: 'Instrument Serif', serif;
    font-style: italic;
    padding: 0 0.08em;
    background: linear-gradient(90deg, var(--suite-color) 0%, var(--suite-color-dark) 100%);
    -webkit-background-clip: text;
    background-clip: text;
    -webkit-text-fill-color: transparent;
}

.section-header p {
    font-size: 17px;
    color: var(--text-muted);
    line-height: 1.65;
}

/* SOLUTIONS LIST */
.solutions-section {
    background: var(--bg-soft);
}

.solutions-list {
    display: flex;
    flex-direction: column;
    gap: 80px;
    margin-top: 24px;
}

.solution-block {
    scroll-margin-top: 100px;
}

.solution-header {
    display: flex;
    align-items: flex-start;
    gap: 20px;
    margin-bottom: 32px;
    padding-bottom: 24px;
    border-bottom: 1px solid var(--line);
}

@media (max-width: 768px) {
    .solution-header {
        flex-direction: column;
        gap: 12px;
    }
}

.solution-num {
    flex-shrink: 0;
    font-family: 'Instrument Serif', serif;
    font-size: 80px;
    line-height: 0.85;
    font-style: italic;
    background: linear-gradient(135deg, var(--suite-color) 0%, var(--suite-color-dark) 100%);
    -webkit-background-clip: text;
    background-clip: text;
    -webkit-text-fill-color: transparent;
    min-width: 90px;
}

.solution-info {
    flex-grow: 1;
    padding-top: 8px;
}

.solution-tag {
    display: inline-block;
    font-family: 'Geist Mono', monospace;
    font-size: 10px;
    color: var(--suite-color);
    background: var(--suite-color-soft);
    border: 1px solid var(--suite-color);
    padding: 4px 10px;
    border-radius: 999px;
    letter-spacing: 0.15em;
    margin-bottom: 10px;
    font-weight: 600;
    text-transform: uppercase;
}

.solution-info h3 {
    font-size: clamp(26px, 3vw, 36px);
    line-height: 1.1;
    letter-spacing: -0.02em;
    font-weight: 500;
    color: var(--text);
    margin-bottom: 14px;
}

.solution-info p {
    color: var(--text-muted);
    font-size: 16px;
    line-height: 1.65;
    max-width: 720px;
}

/* MODULE GRID */
.modules-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 16px;
}

@media (max-width: 768px) {
    .modules-grid {
        grid-template-columns: 1fr;
    }
}

.module-card {
    background: var(--bg-card);
    border: 1px solid var(--line);
    border-radius: 14px;
    padding: 24px 22px;
    transition: all 0.25s;
    position: relative;
}

.module-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    bottom: 0;
    width: 2px;
    background: var(--suite-color);
    opacity: 0.5;
    border-radius: 14px 0 0 14px;
}

.module-card:hover {
    background: var(--bg-elevated);
    border-color: var(--suite-color);
    transform: translateX(2px);
}

.module-card:hover::before {
    opacity: 1;
}

.module-name {
    display: flex;
    align-items: center;
    gap: 10px;
    font-size: 16px;
    color: var(--text);
    font-weight: 600;
    margin-bottom: 14px;
    letter-spacing: -0.01em;
}

.module-name::before {
    content: '';
    width: 8px;
    height: 8px;
    border-radius: 2px;
    background: var(--suite-color);
    flex-shrink: 0;
}

.module-features {
    list-style: none;
    display: flex;
    flex-direction: column;
    gap: 8px;
}

.module-features li {
    font-size: 13px;
    color: var(--text-muted);
    line-height: 1.55;
    padding-left: 18px;
    position: relative;
}

.module-features li::before {
    content: '→';
    position: absolute;
    left: 0;
    color: var(--suite-color);
    font-weight: 600;
}

/* AI COPILOT FOR THIS SUITE */
.ai-suite-section {
    background: linear-gradient(180deg, var(--bg) 0%, var(--bg-soft) 100%);
    position: relative;
    overflow: hidden;
}

.ai-suite-section::before {
    content: '';
    position: absolute;
    inset: 0;
    background-image:
        radial-gradient(circle at 30% 50%, var(--suite-color-soft) 0%, transparent 40%),
        radial-gradient(circle at 70% 50%, rgba(41, 171, 226, 0.06) 0%, transparent 40%);
    pointer-events: none;
}

.ai-suite-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 64px;
    align-items: start;
    position: relative;
}

@media (max-width: 1024px) {
    .ai-suite-grid {
        grid-template-columns: 1fr;
        gap: 48px;
    }
}

.ai-suite-content h2 {
    font-size: clamp(32px, 4.2vw, 50px);
    line-height: 1.1;
    letter-spacing: -0.03em;
    font-weight: 400;
    color: var(--text);
    margin: 16px 0 22px;
}

.ai-suite-content h2 em {
    font-family: 'Instrument Serif', serif;
    font-style: italic;
    color: var(--suite-color);
}

.ai-suite-content p {
    color: var(--text-muted);
    font-size: 16px;
    line-height: 1.7;
    margin-bottom: 16px;
}

.ai-suite-content p strong {
    color: var(--text);
    font-weight: 500;
}

.ai-findings-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 12px;
    margin-top: 24px;
}

@media (max-width: 480px) {
    .ai-findings-grid {
        grid-template-columns: 1fr;
    }
}

.ai-finding {
    background: var(--bg-card);
    border: 1px solid var(--line);
    border-radius: 12px;
    padding: 16px;
    transition: all 0.25s;
}

.ai-finding:hover {
    border-color: var(--suite-color);
    transform: translateY(-2px);
}

.ai-finding-tag {
    font-family: 'Geist Mono', monospace;
    font-size: 9px;
    color: var(--suite-color);
    letter-spacing: 0.15em;
    margin-bottom: 8px;
    text-transform: uppercase;
    font-weight: 600;
}

.ai-finding p {
    color: var(--text);
    font-size: 13px;
    line-height: 1.5;
    margin: 0;
}

/* COMPLIANCE BY COUNTRY */
.compliance-section {
    background: var(--bg);
    border-top: 1px solid var(--line);
    border-bottom: 1px solid var(--line);
    padding: 80px 0;
}

.compliance-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 16px;
    margin-top: 40px;
}

@media (max-width: 1024px) {
    .compliance-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 600px) {
    .compliance-grid {
        grid-template-columns: 1fr;
    }
}

.compliance-card {
    background: var(--bg-card);
    border: 1px solid var(--line);
    border-radius: 12px;
    padding: 20px;
    position: relative;
    transition: all 0.25s;
}

.compliance-card.live {
    border-color: var(--success);
}

.compliance-card.live::after {
    content: 'ACTIVO';
    position: absolute;
    top: 14px;
    right: 14px;
    font-family: 'Geist Mono', monospace;
    font-size: 9px;
    font-weight: 700;
    color: var(--success);
    background: rgba(16, 185, 129, 0.1);
    padding: 3px 8px;
    border-radius: 4px;
    letter-spacing: 0.1em;
    border: 1px solid var(--success);
}

.compliance-card.soon::after {
    content: '2026';
    position: absolute;
    top: 14px;
    right: 14px;
    font-family: 'Geist Mono', monospace;
    font-size: 9px;
    font-weight: 700;
    color: var(--text-dim);
    background: var(--bg);
    padding: 3px 8px;
    border-radius: 4px;
    letter-spacing: 0.1em;
    border: 1px solid var(--line-bright);
}

.compliance-flag {
    font-size: 28px;
    margin-bottom: 10px;
    display: block;
}

.compliance-card h4 {
    font-size: 16px;
    color: var(--text);
    font-weight: 600;
    margin-bottom: 6px;
}

.compliance-card p {
    font-size: 12px;
    color: var(--text-muted);
    font-family: 'Geist Mono', monospace;
    letter-spacing: 0.05em;
    line-height: 1.5;
}

/* CTA */
.cta-final {
    text-align: center;
    padding: 120px 0;
    position: relative;
    overflow: hidden;
}

.cta-final::before {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 800px;
    height: 800px;
    background: radial-gradient(circle, var(--suite-color-glow) 0%, transparent 60%);
    opacity: 0.3;
    pointer-events: none;
}

.cta-final h2 {
    font-size: clamp(36px, 5.4vw, 70px);
    line-height: 1.05;
    letter-spacing: -0.04em;
    font-weight: 400;
    color: var(--text);
    margin-bottom: 22px;
    position: relative;
}

.cta-final h2 em {
    font-family: 'Instrument Serif', serif;
    font-style: italic;
    padding: 0 0.08em;
    background: linear-gradient(90deg, var(--suite-color) 0%, var(--suite-color-dark) 100%);
    -webkit-background-clip: text;
    background-clip: text;
    -webkit-text-fill-color: transparent;
}

.cta-final p {
    color: var(--text-muted);
    font-size: 18px;
    max-width: 600px;
    margin: 0 auto 36px;
    line-height: 1.6;
    position: relative;
}

.cta-final-buttons {
    position: relative;
    display: flex;
    gap: 14px;
    justify-content: center;
    flex-wrap: wrap;
}

/* OTHER SUITES (cross-link) */
.other-suites-section {
    background: var(--bg-soft);
    border-top: 1px solid var(--line);
    padding: 90px 0;
}

.other-suites-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 12px;
    margin-top: 40px;
}

@media (max-width: 1024px) {
    .other-suites-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 480px) {
    .other-suites-grid {
        grid-template-columns: 1fr;
    }
}

.other-suite-tile {
    background: var(--bg-card);
    border: 1px solid var(--line);
    border-radius: 12px;
    padding: 20px;
    text-decoration: none;
    transition: all 0.25s;
    position: relative;
    overflow: hidden;
}

.other-suite-tile::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 2px;
    background: var(--tile-color);
    opacity: 0.6;
}

.other-suite-tile:hover {
    background: var(--bg-elevated);
    border-color: var(--tile-color);
    transform: translateY(-3px);
}

.other-suite-tile:hover::before {
    opacity: 1;
}

.other-suite-code {
    font-family: 'Geist Mono', monospace;
    font-size: 11px;
    color: var(--tile-color);
    letter-spacing: 0.18em;
    font-weight: 700;
    margin-bottom: 6px;
}

.other-suite-tile h4 {
    font-size: 14px;
    color: var(--text);
    font-weight: 600;
    margin-bottom: 6px;
}

.other-suite-tile p {
    font-size: 12px;
    color: var(--text-muted);
    line-height: 1.5;
}

/* FOOTER */
footer {
    background: var(--bg-soft);
    border-top: 1px solid var(--line);
    padding: 64px 0 28px;
    position: relative;
    z-index: 1;
}

.footer-grid {
    display: grid;
    grid-template-columns: 1.6fr 1fr 1fr 1fr 1fr;
    gap: 36px;
    margin-bottom: 40px;
}

@media (max-width: 1024px) {
    .footer-grid {
        grid-template-columns: 1fr 1fr 1fr;
    }
}

@media (max-width: 640px) {
    .footer-grid {
        grid-template-columns: 1fr 1fr;
    }
}

.footer-brand .logo-img {
    height: 28px;
    margin-bottom: 16px;
}

.footer-brand p {
    color: var(--text-muted);
    font-size: 13px;
    line-height: 1.6;
    margin-bottom: 16px;
    max-width: 300px;
}

.footer-address {
    font-family: 'Geist Mono', monospace;
    font-size: 11px;
    color: var(--text-dim);
    line-height: 1.6;
    letter-spacing: 0.04em;
}

.footer-col h4 {
    font-family: 'Geist Mono', monospace;
    font-size: 11px;
    font-weight: 600;
    color: var(--suite-color);
    letter-spacing: 0.15em;
    text-transform: uppercase;
    margin-bottom: 18px;
}

.footer-col ul {
    list-style: none;
}

.footer-col li {
    margin-bottom: 9px;
}

.footer-col a {
    color: var(--text-muted);
    text-decoration: none;
    font-size: 13px;
    transition: color 0.2s;
}

.footer-col a:hover {
    color: var(--text);
}

.footer-bottom {
    padding-top: 28px;
    border-top: 1px solid var(--line);
    display: flex;
    justify-content: space-between;
    flex-wrap: wrap;
    gap: 16px;
    font-size: 11px;
    color: var(--text-dim);
    font-family: 'Geist Mono', monospace;
    letter-spacing: 0.05em;
}

/* SOLUTIONS NAV (sticky on long lists) */
.solutions-nav {
    background: var(--bg-elevated);
    border: 1px solid var(--line-bright);
    border-radius: 12px;
    padding: 16px;
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
    margin-bottom: 56px;
    position: sticky;
    top: 80px;
    z-index: 5;
    backdrop-filter: blur(12px);
    background: rgba(26, 40, 66, 0.92);
}

.solutions-nav-label {
    font-family: 'Geist Mono', monospace;
    font-size: 10px;
    color: var(--text-dim);
    letter-spacing: 0.18em;
    text-transform: uppercase;
    margin-right: 8px;
    align-self: center;
    font-weight: 600;
}

.solutions-nav a {
    font-size: 12px;
    color: var(--text-muted);
    text-decoration: none;
    padding: 6px 12px;
    border-radius: 6px;
    border: 1px solid transparent;
    font-weight: 500;
    transition: all 0.2s;
    white-space: nowrap;
}

.solutions-nav a:hover {
    background: var(--bg);
    color: var(--suite-color);
    border-color: var(--suite-color);
}

/* Reveal */
.reveal {
    opacity: 0;
    transform: translateY(20px);
    transition: opacity 0.7s ease, transform 0.7s ease;
}

.reveal.visible {
    opacity: 1;
    transform: translateY(0);
}

/* === SOLUTION NARRATIVE === */
.solution-narrative {
    display: grid;
    grid-template-columns: 1.4fr 1fr;
    gap: 32px;
    margin-bottom: 40px;
    padding: 32px;
    background: var(--bg-card);
    border: 1px solid var(--line-bright);
    border-radius: 16px;
    border-left: 3px solid var(--suite-color);
}

@media (max-width: 900px) {
    .solution-narrative {
        grid-template-columns: 1fr;
        gap: 24px;
    }
}

.narrative-block {
    display: flex;
    flex-direction: column;
    gap: 22px;
}

.narrative-item {
    position: relative;
}

.narrative-label {
    display: inline-block;
    font-family: 'Geist Mono', monospace;
    font-size: 10px;
    color: var(--suite-color);
    background: var(--suite-color-soft);
    border: 1px solid var(--suite-color);
    padding: 4px 10px;
    border-radius: 4px;
    letter-spacing: 0.15em;
    margin-bottom: 10px;
    font-weight: 600;
    text-transform: uppercase;
}

.narrative-item h4 {
    font-size: 16px;
    color: var(--text);
    font-weight: 600;
    margin-bottom: 8px;
    letter-spacing: -0.01em;
}

.narrative-item p {
    color: var(--text-muted);
    font-size: 14px;
    line-height: 1.65;
    margin: 0;
}

.narrative-item p strong {
    color: var(--text);
}

.benefits-card {
    background: linear-gradient(135deg, var(--suite-color-soft) 0%, var(--bg-elevated) 100%);
    border: 1px solid var(--suite-color);
    border-radius: 14px;
    padding: 24px;
    position: relative;
    overflow: hidden;
}

.benefits-card::before {
    content: '';
    position: absolute;
    top: -40px;
    right: -40px;
    width: 150px;
    height: 150px;
    background: radial-gradient(circle, var(--suite-color-glow) 0%, transparent 70%);
    opacity: 0.4;
    pointer-events: none;
}

.benefits-card .narrative-label {
    background: var(--bg);
    border-color: var(--suite-color);
}

.benefits-card h4 {
    font-size: 16px;
    color: var(--text);
    font-weight: 600;
    margin-bottom: 14px;
    position: relative;
}

.benefits-list {
    list-style: none;
    display: flex;
    flex-direction: column;
    gap: 10px;
    position: relative;
}

.benefits-list li {
    display: flex;
    align-items: flex-start;
    gap: 10px;
    font-size: 13px;
    color: var(--text);
    line-height: 1.5;
}

.benefits-list li::before {
    content: '✓';
    flex-shrink: 0;
    color: var(--suite-color);
    font-weight: 700;
    font-size: 14px;
    width: 18px;
    height: 18px;
    background: var(--bg);
    border: 1px solid var(--suite-color);
    border-radius: 4px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-top: 1px;
}

/* Modules subhead */
.modules-subhead {
    display: flex;
    align-items: center;
    gap: 10px;
    margin-bottom: 18px;
    padding-top: 8px;
}

.modules-subhead-line {
    flex-grow: 1;
    height: 1px;
    background: var(--line);
}

.modules-subhead span {
    font-family: 'Geist Mono', monospace;
    font-size: 10px;
    color: var(--text-dim);
    letter-spacing: 0.18em;
    text-transform: uppercase;
    font-weight: 600;
}


/* ===== MODAL FORMS ===== */
.modal-overlay {
    display: none;
    position: fixed;
    inset: 0;
    background: rgba(0, 0, 0, 0.7);
    backdrop-filter: blur(6px);
    -webkit-backdrop-filter: blur(6px);
    z-index: 10000;
    align-items: center;
    justify-content: center;
    padding: 20px;
}

.modal-overlay.active {
    display: flex;
}

.modal-box {
    background: var(--bg-card, #1A2332);
    border: 1px solid var(--line-bright, #2A3A50);
    border-radius: 20px;
    max-width: 560px;
    width: 100%;
    max-height: 90vh;
    overflow-y: auto;
    padding: 40px 36px;
    position: relative;
    box-shadow: 0 40px 80px rgba(0, 0, 0, 0.5);
}

.modal-close {
    position: absolute;
    top: 16px;
    right: 20px;
    background: none;
    border: none;
    color: var(--text-muted, #8A9BB5);
    font-size: 28px;
    cursor: pointer;
    line-height: 1;
}

.modal-close:hover {
    color: #fff;
}

.modal-box h3 {
    font-size: 26px;
    font-weight: 400;
    margin-bottom: 8px;
    color: var(--text, #E8EDF4);
}

.modal-box h3 em {
    font-family: 'Instrument Serif', serif;
    font-style: italic;
    color: #D4A44A;
}

.modal-box .modal-desc {
    font-size: 14px;
    color: var(--text-muted, #8A9BB5);
    line-height: 1.6;
    margin-bottom: 28px;
}

.modal-form {
    display: flex;
    flex-direction: column;
    gap: 14px;
}

.modal-form-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 14px;
}

@media (max-width: 500px) {
    .modal-form-row {
        grid-template-columns: 1fr;
    }
}

.modal-form label {
    font-size: 12px;
    color: var(--text-muted, #8A9BB5);
    display: block;
    margin-bottom: 4px;
    font-weight: 500;
}

.modal-form input,
.modal-form select,
.modal-form textarea {
    width: 100%;
    background: var(--bg, #0F1923);
    border: 1px solid var(--line-bright, #2A3A50);
    border-radius: 10px;
    padding: 12px 14px;
    color: var(--text, #E8EDF4);
    font-size: 14px;
    font-family: inherit;
    outline: none;
    transition: border-color 0.2s;
    box-sizing: border-box;
}

.modal-form input:focus,
.modal-form select:focus,
.modal-form textarea:focus {
    border-color: #D4A44A;
}

.modal-form textarea {
    min-height: 80px;
    resize: vertical;
}

.modal-form select option {
    background: #0F1923;
    color: #E8EDF4;
}

.modal-form .btn-submit {
    background: linear-gradient(135deg, #D4A44A, #B8862D);
    color: #000;
    border: none;
    border-radius: 10px;
    padding: 14px 28px;
    font-size: 15px;
    font-weight: 600;
    cursor: pointer;
    margin-top: 8px;
    transition: transform 0.2s, box-shadow 0.2s;
}

.modal-form .btn-submit:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 24px rgba(212, 164, 74, 0.3);
}

.modal-form .modal-privacy {
    font-size: 11px;
    color: var(--text-dim, #5E6F89);
    line-height: 1.5;
    margin-top: 4px;
}

.modal-success {
    display: none;
    text-align: center;
    padding: 20px 0;
}

.modal-success.active {
    display: block;
}

.modal-success h4 {
    font-size: 22px;
    color: #10B981;
    margin-bottom: 10px;
}

.modal-success p {
    color: var(--text-muted, #8A9BB5);
    font-size: 14px;
}


/* Fix word cutting */
.section-header p,
.hero-sub,
.narrative-item p,
.solution-header p,
.featured-sub,
.solution-info p {
    overflow-wrap: break-word;
    word-wrap: break-word;
    hyphens: none;
    -webkit-hyphens: none;
}

.section-header {
    overflow: visible;
}