/* =========================================================================
   Pronti Redesign - Inspired by Apple Design Language
   Core Palette: Purple (#7B2CBF), Magenta (#D633D1), Cyan (#00B4D8)
   Background: Pure Dark Mode (#050505)
   ========================================================================= */

:root {
    /* Color System */
    --color-bg: transparent;
    --color-surface: rgba(11, 10, 18, 0.82);
    --color-surface-elevated: rgba(16, 15, 28, 0.94);
    --color-surface-glass: rgba(9, 8, 18, 0.76);
    --color-border: rgba(123, 44, 191, 0.22);
    
    --color-text: #F6F7FC;
    --color-text-muted: #C8D0E4;
    
    --color-purple: #7B2CBF;
    --color-purple-light: rgba(123, 44, 191, 0.4);
    --color-magenta: #D633D1;
    --color-magenta-light: rgba(214, 51, 209, 0.4);
    --color-cyan: #00B4D8;
    --color-cyan-light: rgba(0, 180, 216, 0.4);

    /* Typography */
    --font-family: 'Inter', -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, Helvetica, Arial, sans-serif;
    
    /* Layout */
    --container-max-width: 100vw;
    --page-gutter: clamp(12px, 1.8vw, 24px);
    --border-radius-sm: 12px;
    --border-radius-md: 20px;
    --border-radius-lg: 32px;
}

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

html {
    scroll-behavior: smooth;
    background-color: #f9f5fd;
    color: var(--color-text);
    font-family: var(--font-family);
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
    max-width: 100%;
}

body {
    overflow-x: hidden;
    position: relative;
    line-height: 1.5;
    background:
        radial-gradient(circle at top left, rgba(214, 51, 209, 0.08), transparent 24%),
        radial-gradient(circle at top right, rgba(0, 180, 216, 0.08), transparent 22%),
        linear-gradient(180deg, rgba(252, 250, 255, 0.98) 0%, rgba(246, 239, 251, 0.98) 52%, rgba(255, 255, 255, 0.98) 100%);
    max-width: 100%;
    min-height: 100vh;
}

body::before {
    content: "";
    position: fixed;
    inset: 0;
    z-index: -3;
    pointer-events: none;
    background:
        radial-gradient(circle at 20% 18%, rgba(255, 255, 255, 0.8), transparent 28%),
        radial-gradient(circle at 82% 12%, rgba(255, 255, 255, 0.72), transparent 24%),
        linear-gradient(180deg, rgba(255, 255, 255, 0.12) 0%, rgba(255, 255, 255, 0) 100%);
}

.js body.intro-active .navbar {
    opacity: 0;
    transform: translateY(-24px);
    pointer-events: none;
}

.hero-intro {
    display: none;
}

.js .hero-intro {
    display: block;
    position: fixed;
    inset: 0;
    width: 100%;
    height: 100%;
    z-index: 130;
    overflow: hidden;
    background: #0d0a17;
    transition: transform 0.95s cubic-bezier(0.76, 0, 0.24, 1), opacity 0.75s ease, visibility 0s linear 0.75s;
}

.js body.intro-dismissed .hero-intro {
    transform: translateY(-100%);
    opacity: 0;
    visibility: hidden;
    pointer-events: none;
}

.js body.intro-bypassed .hero-intro {
    display: none;
}

.hero-intro-scrim {
    position: absolute;
    inset: 0;
    z-index: 1;
    background:
        radial-gradient(circle at center, rgba(123, 44, 191, 0.18), transparent 34%),
        linear-gradient(180deg, rgba(6, 5, 10, 0.78) 0%, rgba(6, 5, 10, 0.32) 36%, rgba(6, 5, 10, 0.72) 100%);
}

.hero-intro-content {
    position: relative;
    z-index: 2;
    width: min(calc(100% - 40px), 760px);
    height: 100%;
    margin: 0 auto;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    text-align: center;
    gap: 16px;
}

.hero-intro-logo {
    width: clamp(124px, 14vw, 176px);
    height: auto;
    filter: drop-shadow(0 24px 48px rgba(5, 4, 12, 0.36));
    animation: introFloat 6s ease-in-out infinite;
}

.hero-intro-kicker {
    font-family: 'Montserrat', var(--font-family);
    font-size: 0.84rem;
    font-weight: 700;
    letter-spacing: 0.34em;
    text-transform: uppercase;
    color: rgba(255, 255, 255, 0.74);
}

.hero-intro-brand {
    font-family: 'Montserrat', var(--font-family);
    font-size: clamp(3.6rem, 10vw, 7.4rem);
    font-weight: 700;
    line-height: 0.94;
    letter-spacing: -0.06em;
    color: #ffffff;
    text-shadow: 0 18px 46px rgba(0, 0, 0, 0.34);
}

.hero-intro-caption {
    max-width: 620px;
    font-size: clamp(1rem, 1.8vw, 1.3rem);
    color: rgba(241, 243, 249, 0.86);
    padding-inline: 18px;
    text-wrap: balance;
    text-shadow: 0 6px 18px rgba(0, 0, 0, 0.32);
}

.intro-scroll-cue {
    position: absolute;
    left: 50%;
    bottom: 34px;
    z-index: 2;
    transform: translateX(-50%);
    display: inline-flex;
    align-items: center;
    gap: 10px;
    padding: 12px 18px;
    border: 1px solid rgba(255, 255, 255, 0.16);
    border-radius: 999px;
    background: rgba(255, 255, 255, 0.08);
    color: rgba(255, 255, 255, 0.92);
    font-family: 'Montserrat', var(--font-family);
    font-size: 0.88rem;
    cursor: pointer;
    backdrop-filter: blur(8px);
    -webkit-backdrop-filter: blur(8px);
    box-shadow: 0 12px 28px rgba(6, 5, 10, 0.2);
    transition: transform 0.25s ease, background 0.25s ease, border-color 0.25s ease;
    animation: introCue 1.9s ease-in-out infinite;
}

.intro-scroll-cue:hover {
    transform: translateX(-50%) translateY(-2px);
    background: rgba(255, 255, 255, 0.14);
    border-color: rgba(255, 255, 255, 0.24);
}

/* Spline Background */
#spline-container {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    z-index: 0;
    pointer-events: none;
    overflow: hidden;
}

#spline-container spline-viewer {
    width: 100%;
    height: 100%;
    filter: saturate(1.04) contrast(1.02);
}

.spline-logo-mask {
    display: none;
    position: fixed;
    right: 0;
    bottom: 0;
    width: 198px;
    height: 68px;
    z-index: 131;
    pointer-events: none;
    border-radius: 30px 0 0 0;
    background: radial-gradient(circle at bottom right, rgba(20, 16, 34, 0.92) 0%, rgba(20, 16, 34, 0.76) 50%, rgba(20, 16, 34, 0.28) 74%, rgba(20, 16, 34, 0) 100%);
    backdrop-filter: none;
    -webkit-backdrop-filter: none;
    box-shadow: none;
    opacity: 1;
    transition: opacity 0.25s ease;
}

.js .spline-logo-mask {
    display: block;
}

html.spline-logo-fallback .spline-logo-mask {
    opacity: 1;
}

.js body.intro-dismissed .spline-logo-mask {
    opacity: 0 !important;
}

.js body.intro-bypassed .spline-logo-mask {
    opacity: 0 !important;
}

body a[href*="spline.design"],
body a[href*="splinetool"],
body [aria-label*="Built with Spline"],
body [title*="Built with Spline"] {
    display: none !important;
    visibility: hidden !important;
    opacity: 0 !important;
    pointer-events: none !important;
}

/* Typography Utilities */
h1, h2, h3, h4, h5, h6 {
    font-weight: 700;
    letter-spacing: -0.04em;
    line-height: 1.1;
    font-family: 'Montserrat', var(--font-family);
}

.gradient-text {
    background-clip: text;
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    display: inline-block;
}

.gradient-purple { background-image: linear-gradient(135deg, #F05CE9 0%, var(--color-magenta) 28%, var(--color-purple) 74%, #A88BEB 100%); }
.gradient-magenta { background-image: linear-gradient(135deg, #FF8EF4 0%, var(--color-magenta) 54%, var(--color-purple) 100%); }
.gradient-cyan { background-image: linear-gradient(135deg, #8EF2FF 0%, var(--color-cyan) 50%, #5BD5F0 100%); }

/* Ambient Background Glows */
.ambient-glow {
    position: absolute;
    border-radius: 50%;
    filter: blur(120px);
    opacity: 0.2;
    animation: drift 22s infinite alternate ease-in-out;
}
.orb-purple { top: -12%; left: -8%; width: 42vw; height: 42vw; background: rgba(123, 44, 191, 0.9); }
.orb-magenta { top: 24%; right: -10%; width: 34vw; height: 34vw; background: rgba(214, 51, 209, 0.72); animation-delay: -5s; }
.orb-cyan { bottom: 6%; left: 12%; width: 38vw; height: 30vw; background: rgba(0, 180, 216, 0.62); animation-delay: -10s; }

@keyframes drift {
    0% { transform: translateY(0) scale(1); }
    100% { transform: translateY(100px) scale(1.1); }
}

@keyframes introFloat {
    0% { transform: translateY(0); }
    50% { transform: translateY(-12px); }
    100% { transform: translateY(0); }
}

@keyframes introCue {
    0%, 100% { transform: translateX(-50%) translateY(0); }
    50% { transform: translateX(-50%) translateY(6px); }
}

/* Button Component */
.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 12px 24px;
    border-radius: 9999px; /* Pill shape */
    font-weight: 500;
    font-family: 'Montserrat', var(--font-family);
    font-size: 1rem;
    cursor: pointer;
    text-decoration: none;
    transition: all 0.3s cubic-bezier(0.25, 1, 0.5, 1);
    border: 1px solid transparent;
}

.btn-large {
    padding: 16px 32px;
    font-size: 1.125rem;
}

.btn-primary {
    background: linear-gradient(135deg, var(--color-magenta) 0%, var(--color-purple) 100%);
    color: #FFFFFF;
    box-shadow: 0 18px 32px rgba(123, 44, 191, 0.28);
}

.btn-primary:hover {
    transform: scale(1.02) translateY(-1px);
    box-shadow: 0 0 24px rgba(214, 51, 209, 0.2), 0 18px 32px rgba(123, 44, 191, 0.34);
}

.btn-secondary {
    background: linear-gradient(180deg, rgba(10, 10, 16, 0.8) 0%, rgba(12, 12, 20, 0.64) 100%);
    color: var(--color-text);
    border: 1px solid rgba(0, 180, 216, 0.22);
}

.btn-secondary:hover {
    background: rgba(17, 17, 28, 0.88);
    transform: scale(1.02);
}

.w-full { width: 100%; }
.mt-4 { margin-top: 1rem; }
.mt-6 { margin-top: 2rem; }

.shadow-glow {
    box-shadow: 0 0 30px rgba(214, 51, 209, 0.3);
}

/* Glass Card Component */
.glass-card {
    background: #11101a;
    border: 1px solid var(--color-border);
    border-radius: var(--border-radius-md);
    padding: 24px;
}

/* Navbar */
.navbar {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 100;
    padding: 18px var(--page-gutter) 0;
    transition: opacity 0.45s ease, transform 0.45s ease;
}

.nav-shell {
    width: calc(100vw - (var(--page-gutter) * 2));
    max-width: none;
    margin: 0 auto;
    padding: 14px 18px;
    border-radius: 999px;
    background: rgba(255, 255, 255, 0.96);
    border: 1px solid rgba(123, 44, 191, 0.16);
    box-shadow: 0 10px 24px rgba(32, 24, 58, 0.08);
}

.nav-container {
    max-width: none;
    margin: 0;
    width: 100%;
    padding: 0;
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 20px;
}

.logo {
    display: flex;
    align-items: center;
    gap: 12px;
}

.logo img {
    display: block;
    width: auto;
    max-width: 138px;
}

.logo-tag {
    font-size: 0.74rem;
    letter-spacing: 0.14em;
    text-transform: uppercase;
    color: rgba(0, 180, 216, 0.82);
    white-space: nowrap;
}

.nav-menu {
    padding: 10px 18px;
    border-radius: 999px;
    background: rgba(246, 240, 252, 0.98);
    border: 1px solid rgba(123, 44, 191, 0.12);
}

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

.nav-links a {
    color: rgba(39, 30, 74, 0.82);
    text-decoration: none;
    font-family: 'Montserrat', var(--font-family);
    font-size: 0.88rem;
    font-weight: 500;
    transition: color 0.2s ease;
}

.nav-links a:hover {
    color: var(--color-cyan);
}

.nav-btn {
    white-space: nowrap;
    flex-shrink: 0;
    padding-inline: 22px;
    color: #FFFFFF;
    background: linear-gradient(135deg, var(--color-magenta) 0%, var(--color-purple) 100%);
    box-shadow: 0 16px 32px rgba(123, 44, 191, 0.24);
}

.nav-btn:hover {
    transform: translateY(-1px);
    box-shadow: 0 18px 34px rgba(123, 44, 191, 0.34);
}

.nav-btn-mobile { display: none; }

/* Hero Section */
.hero {
    min-height: 100vh;
    position: relative;
    isolation: isolate;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    text-align: center;
    width: calc(100vw - (var(--page-gutter) * 2));
    padding: 120px 0 60px;
    max-width: none;
    margin: 0 auto;
}

.hero::before {
    content: none;
}

.hero-stage {
    --hero-kicker-color: rgba(74, 93, 124, 0.82);
    --hero-title-color: #08060c;
    --hero-support-color: rgba(104, 106, 114, 0.82);
    --hero-pill-bg: rgba(123, 44, 191, 0.08);
    --hero-pill-border: rgba(123, 44, 191, 0.12);
    --hero-pill-color: rgba(70, 56, 104, 0.84);
    position: relative;
    width: 100%;
    min-height: min(680px, calc(100vh - 190px));
    display: grid;
    grid-template-columns: minmax(0, 1.02fr) minmax(300px, 0.98fr);
    align-items: center;
    gap: clamp(28px, 4vw, 72px);
    padding: clamp(38px, 5vw, 74px);
    border-radius: 40px;
    overflow: hidden;
    isolation: isolate;
    background: linear-gradient(135deg, rgba(255, 255, 255, 0.98) 0%, rgba(248, 243, 253, 0.94) 54%, rgba(241, 246, 255, 0.92) 100%);
    border: 1px solid rgba(123, 44, 191, 0.14);
    box-shadow: 0 14px 32px rgba(56, 42, 86, 0.08), inset 0 1px 0 rgba(255, 255, 255, 0.9);
    transition: border-color 0.55s ease, transform 0.6s ease;
}

.hero-stage::before,
.hero-stage::after {
    content: "";
    position: absolute;
    inset: 0;
    z-index: 0;
    pointer-events: none;
    transition: opacity 0.8s ease, transform 0.8s ease;
}

.hero-stage::before {
    background:
        radial-gradient(circle at 18% 24%, rgba(214, 51, 209, 0.18), transparent 28%),
        radial-gradient(circle at 86% 22%, rgba(0, 180, 216, 0.12), transparent 24%),
        radial-gradient(circle at 62% 78%, rgba(123, 44, 191, 0.08), transparent 22%);
    opacity: 1;
}

.hero-stage::after {
    background:
        radial-gradient(circle at 72% 46%, rgba(214, 51, 209, 0.2), transparent 24%),
        radial-gradient(circle at 84% 28%, rgba(0, 180, 216, 0.16), transparent 22%);
    opacity: 0.18;
}

.hero-stage.is-activated {
    --hero-kicker-color: rgba(138, 224, 255, 0.88);
    --hero-title-color: #ffffff;
    --hero-support-color: rgba(255, 255, 255, 0.72);
    --hero-pill-bg: rgba(255, 255, 255, 0.06);
    --hero-pill-border: rgba(255, 255, 255, 0.12);
    --hero-pill-color: rgba(245, 245, 250, 0.76);
    background: linear-gradient(135deg, rgba(4, 3, 8, 0.98) 0%, rgba(10, 9, 16, 0.96) 54%, rgba(20, 6, 19, 0.98) 100%);
    border-color: rgba(214, 51, 209, 0.16);
}

.hero-stage.is-activated .eyebrow {
    color: rgba(138, 224, 255, 0.88) !important;
    -webkit-text-fill-color: rgba(138, 224, 255, 0.88);
}

.hero-stage.is-activated .hero-title {
    color: #ffffff !important;
    -webkit-text-fill-color: #ffffff;
    text-shadow: 0 12px 32px rgba(0, 0, 0, 0.28);
}

.hero-stage.is-activated .hero-support {
    color: rgba(255, 255, 255, 0.72) !important;
    -webkit-text-fill-color: rgba(255, 255, 255, 0.72);
}

.hero-stage.is-activated .hero-pill {
    background: rgba(255, 255, 255, 0.09) !important;
    border-color: rgba(255, 255, 255, 0.12) !important;
    color: rgba(245, 245, 250, 0.76) !important;
}

.hero-stage.is-activated::before {
    opacity: 0.35;
    transform: scale(1.04);
}

.hero-stage.is-activated::after {
    opacity: 0.52;
}

.hero-stage-copy,
.hero-visual-grid {
    position: relative;
    z-index: 1;
}

.hero-stage-copy {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    text-align: left;
}

.hero-stage .eyebrow {
    margin-bottom: 18px;
    color: var(--hero-kicker-color);
    text-shadow: none;
    transition: color 0.6s ease;
}

.hero-stage .hero-title {
    max-width: 11.6ch;
    margin: 0 0 24px;
    margin-inline: 0;
    text-align: left;
    font-size: clamp(3.2rem, 7.2vw, 5.6rem);
    color: var(--hero-title-color);
    text-shadow: none;
    transition: color 0.65s ease;
}

.hero-support {
    max-width: 18ch;
    margin-bottom: 26px;
    font-family: 'Montserrat', var(--font-family);
    font-size: clamp(1.45rem, 2.3vw, 2.35rem);
    font-weight: 600;
    line-height: 1.05;
    letter-spacing: -0.04em;
    color: var(--hero-support-color);
    transition: color 0.65s ease, opacity 0.65s ease;
}

.hero-stage .hero-cta-group {
    justify-content: flex-start;
    margin-bottom: 26px;
}

.hero-stage .hero-pill-row {
    justify-content: flex-start;
    gap: 12px;
}

.hero-stage .hero-pill {
    background: rgba(255, 255, 255, 0.78);
    border-color: var(--hero-pill-border);
    color: var(--hero-pill-color);
    transition: background 0.55s ease, border-color 0.55s ease, color 0.55s ease;
}

.hero-stage .btn-secondary {
    background: linear-gradient(180deg, rgba(24, 24, 34, 0.78) 0%, rgba(24, 24, 34, 0.66) 100%);
}

.hero-stage.is-activated .btn-secondary {
    background: rgba(255, 255, 255, 0.08);
    border-color: rgba(255, 255, 255, 0.16);
    color: #ffffff;
}

.hero-visual-grid {
    position: relative;
    min-height: 520px;
    display: grid;
    grid-template-columns: minmax(0, 0.72fr) minmax(0, 1.08fr);
    grid-template-rows: auto auto;
    gap: 18px;
    align-items: center;
}

.hero-visual-grid::before {
    content: "";
    position: absolute;
    inset: 8% 10% 8% 18%;
    border-radius: 44px;
    background:
        radial-gradient(circle at 40% 44%, rgba(214, 51, 209, 0.18), transparent 30%),
        radial-gradient(circle at 72% 52%, rgba(0, 180, 216, 0.16), transparent 28%),
        linear-gradient(135deg, rgba(255, 255, 255, 0.86) 0%, rgba(248, 240, 253, 0.64) 100%);
    filter: blur(18px);
    opacity: 0.8;
    z-index: 0;
    transition: opacity 0.65s ease, transform 0.65s ease, background 0.65s ease;
}

.hero-visual-card {
    position: relative;
    z-index: 1;
    margin: 0;
    overflow: hidden;
    padding: 12px;
    border-radius: 30px;
    border: 1px solid rgba(123, 44, 191, 0.14);
    background: rgba(255, 255, 255, 0.84);
    box-shadow: 0 18px 42px rgba(54, 42, 82, 0.14);
    will-change: transform;
    transition: transform 0.65s cubic-bezier(0.22, 1, 0.36, 1), background 0.55s ease, border-color 0.55s ease, box-shadow 0.55s ease;
}

.hero-visual-card img {
    display: block;
    width: 100%;
    height: auto;
    aspect-ratio: 4 / 3;
    object-fit: cover;
    border-radius: 22px;
    box-shadow: 0 12px 24px rgba(18, 14, 34, 0.12);
}

.hero-visual-card figcaption {
    padding: 14px 8px 6px;
}

.hero-visual-card figcaption span {
    display: inline-flex;
    font-family: 'Montserrat', var(--font-family);
    font-size: 0.72rem;
    font-weight: 700;
    letter-spacing: 0.16em;
    text-transform: uppercase;
    color: rgba(0, 117, 145, 0.84);
}

.hero-visual-card figcaption strong {
    display: block;
    margin-top: 8px;
    font-size: 0.98rem;
    line-height: 1.32;
    color: rgba(19, 14, 30, 0.92);
}

.hero-visual-card-primary {
    grid-column: 2;
    grid-row: 1 / span 2;
    align-self: center;
    justify-self: center;
    max-width: 430px;
    transform: translate3d(-8px, 14px, 0) rotate(4deg);
}

.hero-visual-card-web {
    grid-column: 1;
    grid-row: 1;
    transform: translate3d(24px, -10px, 0) rotate(-4deg);
}

.hero-visual-card-data {
    grid-column: 1;
    grid-row: 2;
    transform: translate3d(12px, 8px, 0) rotate(-2deg);
}

.hero-visual-card-ops {
    position: absolute;
    right: 2%;
    bottom: 0;
    width: min(34%, 220px);
    transform: translate3d(0, 0, 0) rotate(5deg);
}

.hero-stage.is-activated .hero-visual-grid::before {
    opacity: 1;
    transform: scale(1.04);
    background:
        radial-gradient(circle at 38% 44%, rgba(214, 51, 209, 0.24), transparent 32%),
        radial-gradient(circle at 74% 50%, rgba(0, 180, 216, 0.22), transparent 30%),
        linear-gradient(135deg, rgba(12, 10, 20, 0.78) 0%, rgba(10, 10, 18, 0.34) 100%);
}

.hero-stage.is-activated .hero-visual-card {
    background: rgba(11, 10, 18, 0.88);
    border-color: rgba(255, 255, 255, 0.08);
    box-shadow: 0 22px 46px rgba(0, 0, 0, 0.28);
}

.hero-stage.is-activated .hero-visual-card figcaption span {
    color: rgba(138, 224, 255, 0.9);
}

.hero-stage.is-activated .hero-visual-card figcaption strong {
    color: rgba(255, 255, 255, 0.96);
}

.hero-stage.is-activated .hero-visual-card-primary {
    transform: translate3d(-26px, -8px, 0) rotate(-1deg) scale(1.02);
}

.hero-stage.is-activated .hero-visual-card-web {
    transform: translate3d(28px, -18px, 0) rotate(-6deg);
}

.hero-stage.is-activated .hero-visual-card-data {
    transform: translate3d(22px, 12px, 0) rotate(2deg);
}

.hero-stage.is-activated .hero-visual-card-ops {
    transform: translate3d(-10px, 10px, 0) rotate(4deg);
}

.hero-content {
    max-width: 920px;
    position: relative;
    z-index: 1;
    margin-bottom: clamp(36px, 5vw, 64px);
}

.eyebrow,
.section-kicker,
.overview-kicker {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    margin-bottom: 16px;
    font-size: 0.92rem;
    font-weight: 700;
    line-height: 1;
    letter-spacing: 0.18em;
    text-transform: uppercase;
    font-family: 'Montserrat', var(--font-family);
    color: rgba(0, 117, 145, 0.9);
    text-shadow: 0 2px 10px rgba(255, 255, 255, 0.26);
}

.card-label {
    color: rgba(0, 180, 216, 0.9);
}

.hero-title {
    font-size: clamp(3rem, 8vw, 5.5rem);
    margin-bottom: 24px;
    max-width: 900px;
    margin-inline: auto;
    color: rgba(123, 44, 191, 0.98);
    text-shadow: 0 10px 28px rgba(255, 255, 255, 0.22);
}

.hero-subtitle {
    font-size: clamp(1.125rem, 2vw, 1.35rem);
    color: rgba(255, 255, 255, 0.96);
    max-width: 720px;
    margin-inline: auto;
    margin-bottom: 40px;
    padding: 0;
    border-radius: 0;
    background: none;
    border: 0;
    box-shadow: none;
    text-shadow: none;
}

.hero-cta-group {
    display: flex;
    gap: 16px;
    justify-content: center;
    flex-wrap: wrap;
    margin-bottom: 28px;
}

.hero-pill-row {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 12px;
    margin-bottom: 0;
}

.hero-pill {
    padding: 10px 14px;
    border-radius: 999px;
    background: rgba(255, 255, 255, 0.88);
    border: 1px solid rgba(123, 44, 191, 0.16);
    color: rgba(55, 37, 92, 0.9);
    font-size: 0.85rem;
}

.system-overview {
    display: flex;
    align-items: stretch;
    gap: 24px;
    padding: 28px;
    text-align: left;
    background:
        radial-gradient(circle at top right, rgba(214, 51, 209, 0.16), transparent 34%),
        radial-gradient(circle at bottom left, rgba(0, 180, 216, 0.14), transparent 30%),
        rgba(8, 8, 18, 0.82);
}

.system-overview-copy {
    flex: 1 1 42%;
}

.system-overview-copy h3 {
    font-size: clamp(1.55rem, 2.8vw, 2.3rem);
    margin-bottom: 14px;
    color: rgba(160, 241, 255, 0.94);
}

.system-overview-copy p {
    color: rgba(232, 236, 248, 0.82);
    font-size: 1rem;
}

.overview-modules {
    flex: 1 1 58%;
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 14px;
}

.overview-module {
    min-height: 0;
    padding: 14px;
    border-radius: 22px;
    display: flex;
    flex-direction: column;
    gap: 14px;
    border: 1px solid rgba(255, 255, 255, 0.08);
    background: rgba(255, 255, 255, 0.03);
    overflow: hidden;
}

.overview-module-media {
    width: 100%;
    aspect-ratio: 1.2 / 1;
    object-fit: cover;
    object-position: center;
    border-radius: 18px;
    border: 1px solid rgba(255, 255, 255, 0.08);
    background: rgba(255, 255, 255, 0.03);
    box-shadow: 0 12px 28px rgba(0, 0, 0, 0.22);
}

.overview-module-copy {
    display: flex;
    flex-direction: column;
    gap: 10px;
    padding: 0 4px 2px;
}

.overview-module span {
    font-size: 0.8rem;
    letter-spacing: 0.08em;
    text-transform: uppercase;
    color: rgba(255, 255, 255, 0.68);
}

.overview-module strong {
    font-size: 1rem;
    line-height: 1.3;
    font-weight: 600;
}

.accent-purple {
    background: linear-gradient(180deg, rgba(123, 44, 191, 0.16) 0%, rgba(255, 255, 255, 0.03) 100%);
}

.accent-cyan {
    background: linear-gradient(180deg, rgba(0, 180, 216, 0.16) 0%, rgba(255, 255, 255, 0.03) 100%);
}

.accent-magenta {
    background: linear-gradient(180deg, rgba(214, 51, 209, 0.16) 0%, rgba(255, 255, 255, 0.03) 100%);
}

.accent-neutral {
    background: linear-gradient(180deg, rgba(255, 255, 255, 0.08) 0%, rgba(255, 255, 255, 0.03) 100%);
}

.chat-mockup {
    transform: rotateX(5deg);
    transition: transform 0.5s ease;
    border-radius: var(--border-radius-lg);
    background: linear-gradient(180deg, rgba(20,20,20,0.8) 0%, rgba(10,10,10,0.85) 100%);
    box-shadow: 0 30px 60px -10px rgba(0,0,0,0.6), 0 0 40px rgba(123, 44, 191, 0.1);
    border: 1px solid rgba(255, 255, 255, 0.08);
}

.chat-mockup:hover {
    transform: rotateX(0deg) translateY(-10px);
}

.chat-header {
    border-bottom: 1px solid var(--color-border);
    padding-bottom: 16px;
    margin-bottom: 20px;
}

.avatar-group {
    display: flex;
    align-items: center;
    gap: 12px;
}

.avatar {
    width: 40px;
    height: 40px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 700;
}

.pronti-avatar {
    background: linear-gradient(135deg, var(--color-purple), var(--color-magenta));
    color: white;
}

.chat-info h4 { font-size: 1rem; margin: 0; }
.chat-info span { font-size: 0.8rem; color: var(--color-cyan); }

.chat-body {
    display: flex;
    flex-direction: column;
    gap: 16px;
    text-align: left;
}

.msg {
    padding: 12px 16px;
    border-radius: 20px;
    max-width: 85%;
    font-size: 0.95rem;
}

.received {
    align-self: flex-start;
    background: var(--color-surface-elevated);
    border-bottom-left-radius: 4px;
}

.sent {
    align-self: flex-end;
    background: linear-gradient(135deg, var(--color-purple), var(--color-magenta));
    border-bottom-right-radius: 4px;
}

.receipt-card {
    background: rgba(0, 180, 216, 0.1);
    border: 1px solid rgba(0, 180, 216, 0.3);
    border-radius: 12px;
    padding: 16px;
    display: flex;
    gap: 12px;
    align-items: center;
    margin-top: 8px;
    align-self: flex-end;
    max-width: 90%;
}

.receipt-details { display: flex; flex-direction: column; }
.receipt-details .label { font-size: 0.75rem; color: var(--color-cyan); text-transform: uppercase; font-weight: 700; }
.receipt-details .value { font-size: 0.9rem; font-weight: 500; }

/* Features Bento Grid (Apple style) */
.features-section {
    width: calc(100vw - (var(--page-gutter) * 2));
    padding: 120px 0;
    max-width: none;
    margin: 0 auto;
}

.section-kicker {
    width: 100%;
    justify-content: center;
    color: rgba(0, 117, 145, 0.92);
}

.section-title {
    text-align: center;
    font-size: clamp(2rem, 5vw, 3.5rem);
    margin-bottom: 20px;
    color: rgba(123, 44, 191, 0.98);
    text-shadow: 0 10px 24px rgba(255, 255, 255, 0.22);
}

.section-copy {
    max-width: 760px;
    margin: 0 auto 80px;
    text-align: center;
    color: rgba(82, 75, 100, 0.9);
    font-size: 1.08rem;
    padding: 0;
    border-radius: 0;
    background: none;
    border: 0;
    box-shadow: none;
    text-shadow: none;
}

.section-signature {
    display: flex;
    align-items: center;
    gap: 14px;
    margin-bottom: 18px;
}

.section-kicker-left {
    width: auto;
    margin: 0;
    justify-content: flex-start;
    text-align: left;
}

.section-title-left {
    margin: 0 0 18px;
    text-align: left;
    max-width: 11ch;
}

.section-copy-left {
    margin: 0;
    text-align: left;
    max-width: 38rem;
}

.section-head-points {
    display: flex;
    flex-wrap: wrap;
    gap: 12px;
    margin-top: 24px;
}

.section-head-point {
    display: inline-flex;
    align-items: center;
    padding: 11px 16px;
    border-radius: 999px;
    border: 1px solid rgba(123, 44, 191, 0.14);
    background: rgba(255, 255, 255, 0.72);
    color: rgba(57, 39, 93, 0.88);
    font-family: 'Montserrat', var(--font-family);
    font-size: 0.82rem;
    font-weight: 700;
    letter-spacing: 0.04em;
}

.brand-illustration {
    display: block;
    width: 100%;
    height: auto;
    border-radius: 32px;
    box-shadow: 0 18px 38px rgba(52, 34, 84, 0.12);
}

.section-system,
.team-section,
.products-section {
    position: relative;
}

.section-system-head,
.products-section-head,
.team-section-shell,
.principle-card,
.cta-portal {
    position: relative;
    overflow: hidden;
}

.section-system-head > *,
.products-section-head > *,
.team-section-shell > *,
.principle-card > *,
.cta-portal > * {
    position: relative;
    z-index: 1;
}

.section-system-head,
.products-section-head,
.team-section-shell {
    display: grid;
    grid-template-columns: minmax(0, 0.92fr) minmax(320px, 1.08fr);
    gap: 32px;
    align-items: center;
    margin-bottom: 40px;
    padding: clamp(28px, 4vw, 48px);
    border-radius: 40px;
    border: 1px solid rgba(123, 44, 191, 0.14);
    box-shadow: 0 20px 44px rgba(34, 26, 58, 0.08);
}

.section-system-head {
    background:
        radial-gradient(circle at top left, rgba(214, 51, 209, 0.12), transparent 34%),
        radial-gradient(circle at bottom right, rgba(0, 180, 216, 0.1), transparent 28%),
        linear-gradient(135deg, rgba(255, 255, 255, 0.96) 0%, rgba(248, 242, 252, 0.94) 100%);
}

.products-section-head {
    grid-template-columns: minmax(0, 0.92fr) minmax(320px, 1.08fr);
    background:
        radial-gradient(circle at top right, rgba(214, 51, 209, 0.18), transparent 34%),
        radial-gradient(circle at left center, rgba(0, 180, 216, 0.16), transparent 30%),
        linear-gradient(135deg, rgba(14, 12, 24, 0.98) 0%, rgba(11, 16, 28, 0.98) 100%);
    border-color: rgba(123, 44, 191, 0.22);
    box-shadow: 0 26px 54px rgba(16, 12, 28, 0.16);
}

.team-section-shell {
    background:
        radial-gradient(circle at top left, rgba(0, 180, 216, 0.1), transparent 28%),
        radial-gradient(circle at 82% 18%, rgba(214, 51, 209, 0.12), transparent 30%),
        linear-gradient(135deg, rgba(255, 255, 255, 0.98) 0%, rgba(244, 238, 250, 0.94) 100%);
}

.section-system-head::before,
.section-system-head::after,
.products-section-head::before,
.products-section-head::after {
    content: none;
}

.section-system-copy,
.products-section-copy,
.team-section-copy {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
}

.section-system-art,
.products-section-art {
    margin: 0;
}

.service-showcase-grid,
.products-preview-strip {
    display: grid;
    gap: 18px;
    margin: 0;
}

.service-showcase-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
}

.products-preview-strip {
    grid-template-columns: repeat(3, minmax(0, 1fr));
}

.service-showcase-card,
.products-preview-card {
    margin: 0;
    padding: 12px;
    border-radius: 28px;
    background: rgba(255, 255, 255, 0.8);
    border: 1px solid rgba(123, 44, 191, 0.12);
    box-shadow: 0 12px 28px rgba(32, 24, 58, 0.08);
}

.products-preview-card {
    background: rgba(255, 255, 255, 0.04);
    border-color: rgba(255, 255, 255, 0.08);
    box-shadow: none;
}

.service-showcase-card figcaption,
.products-preview-card figcaption {
    margin-top: 10px;
    padding-inline: 4px;
    font-family: 'Montserrat', var(--font-family);
    font-size: 0.82rem;
    font-weight: 700;
    letter-spacing: 0.1em;
    text-transform: uppercase;
    color: rgba(55, 37, 92, 0.82);
}

.products-preview-card figcaption {
    color: rgba(234, 238, 246, 0.78);
}

.products-section-head .section-title-left {
    color: #ffffff;
    text-shadow: none;
}

.products-section-head .section-copy-left {
    color: rgba(230, 234, 244, 0.76);
}

.products-section-head .section-kicker-left {
    color: rgba(138, 224, 255, 0.92);
    text-shadow: none;
}

.products-section-head .section-head-point {
    border-color: rgba(255, 255, 255, 0.12);
    background: rgba(255, 255, 255, 0.06);
    color: rgba(242, 245, 250, 0.84);
}

.route-layout {
    display: grid;
    grid-template-columns: repeat(12, minmax(0, 1fr));
    gap: 24px;
}

.route-card {
    grid-column: span 3;
    position: relative;
    overflow: hidden;
    padding: 30px 28px;
    border-radius: 30px;
    border: 1px solid rgba(123, 44, 191, 0.16);
    background: #111018;
    box-shadow: 0 10px 24px rgba(18, 14, 34, 0.08);
}

.route-card::before {
    content: none;
}

.route-card h3,
.product-step h3 {
    margin: 0 0 12px;
    font-size: 1.42rem;
}

.route-icon {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 44px;
    height: 44px;
    margin-bottom: 14px;
    border-radius: 14px;
    border: 1px solid rgba(255, 255, 255, 0.12);
    background: rgba(255, 255, 255, 0.06);
    color: rgba(138, 224, 255, 0.9);
}

.route-icon svg {
    width: 20px;
    height: 20px;
}

.route-icon-core {
    width: 54px;
    height: 54px;
    margin-bottom: 0;
    border-radius: 18px;
    background: rgba(255, 255, 255, 0.08);
    color: rgba(255, 255, 255, 0.92);
}

.route-card p {
    color: rgba(236, 238, 246, 0.74);
    margin: 0;
}

.route-card-core {
    grid-column: span 12;
    background: linear-gradient(135deg, rgba(18, 14, 30, 0.98) 0%, rgba(30, 17, 44, 0.98) 56%, rgba(12, 26, 36, 0.98) 100%);
}

.route-card-core::before {
    content: none;
}

.route-card-top {
    display: flex;
    align-items: flex-start;
    gap: 18px;
    margin-bottom: 18px;
}

.route-card-top .card-label,
.route-card .card-label {
    margin-bottom: 10px;
}

.route-card-top h3 {
    margin-bottom: 0;
}

.route-index,
.product-step-kicker,
.principle-step {
    display: inline-flex;
    width: fit-content;
    margin-bottom: 14px;
    font-family: 'Montserrat', var(--font-family);
    font-size: 0.78rem;
    font-weight: 700;
    letter-spacing: 0.18em;
    text-transform: uppercase;
    color: rgba(138, 224, 255, 0.9);
}

.route-tags,
.cta-chip-row {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
    margin-top: 20px;
}

.route-tags span,
.cta-chip-row span {
    padding: 10px 14px;
    border-radius: 999px;
    border: 1px solid rgba(255, 255, 255, 0.12);
    background: rgba(255, 255, 255, 0.08);
    color: rgba(255, 255, 255, 0.82);
    font-size: 0.84rem;
}

.team-section {
    padding-top: 60px;
}

.team-role-rail {
    width: 100%;
    display: grid;
    gap: 0;
    margin-top: 26px;
}

.team-role-item {
    display: grid;
    grid-template-columns: 112px 1fr;
    gap: 18px;
    align-items: center;
    padding: 14px 0;
    border-top: 1px solid rgba(123, 44, 191, 0.14);
}

.team-role-item:last-child {
    border-bottom: 1px solid rgba(123, 44, 191, 0.14);
}

.team-role-item span {
    font-family: 'Montserrat', var(--font-family);
    font-size: 0.76rem;
    font-weight: 700;
    letter-spacing: 0.16em;
    text-transform: uppercase;
    color: rgba(123, 44, 191, 0.82);
}

.team-role-item strong {
    color: rgba(20, 14, 31, 0.92);
    font-size: 1.02rem;
}

.team-stage {
    position: relative;
    display: grid;
    grid-template-columns: minmax(0, 1.08fr) minmax(0, 0.92fr);
    grid-template-rows: auto auto;
    gap: 20px;
    min-height: 0;
    align-items: start;
}

.team-stage figure {
    position: relative;
    z-index: 1;
    margin: 0;
    overflow: hidden;
    display: flex;
    flex-direction: column;
    border-radius: 32px;
    border: 1px solid rgba(123, 44, 191, 0.14);
    background: linear-gradient(180deg, rgba(255, 255, 255, 0.98) 0%, rgba(244, 239, 251, 0.96) 100%);
    box-shadow: 0 14px 30px rgba(24, 18, 42, 0.12);
}

.team-stage-main {
    grid-column: 1;
    grid-row: 1;
    min-height: 0;
}

.team-stage-analytics {
    grid-column: 1;
    grid-row: 2;
}

.team-stage-market {
    grid-column: 2;
    grid-row: 1 / span 2;
}

.team-stage-side {
    min-height: 0;
}

.team-stage img {
    width: 100%;
    height: auto;
    object-fit: contain;
    display: block;
}

.team-stage figure img {
    padding: 14px 14px 0;
    background: linear-gradient(180deg, rgba(250, 247, 255, 0.98) 0%, rgba(243, 238, 251, 0.96) 100%);
}

.team-stage figcaption {
    position: static;
    padding: 18px 20px 22px;
    background: none;
}

.team-stage figcaption span {
    display: inline-flex;
    font-size: 0.74rem;
    letter-spacing: 0.14em;
    text-transform: uppercase;
    color: rgba(0, 117, 145, 0.82);
    font-family: 'Montserrat', var(--font-family);
}

.team-stage figcaption strong {
    display: block;
    margin-top: 8px;
    font-size: 1rem;
    line-height: 1.35;
    color: rgba(20, 14, 31, 0.92);
}

.principle-card {
    display: grid;
    grid-template-columns: 240px minmax(0, 1fr);
    gap: 32px;
    align-items: center;
}

.principle-mark {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    gap: 18px;
}

.products-section-head {
    margin-bottom: 42px;
}

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

.product-step {
    display: flex;
    flex-direction: column;
    position: relative;
    overflow: hidden;
    gap: 22px;
    min-height: 100%;
    padding: 32px;
    border-radius: 32px;
    border: 1px solid rgba(123, 44, 191, 0.16);
    background: #111018;
    box-shadow: 0 10px 24px rgba(18, 14, 34, 0.08);
}

.product-step::before {
    content: "";
    position: absolute;
    inset: 0 0 auto 0;
    height: 4px;
    background: linear-gradient(90deg, rgba(0, 180, 216, 0.94) 0%, rgba(123, 44, 191, 0.94) 52%, rgba(214, 51, 209, 0.94) 100%);
}

.product-step::after {
    content: none;
}

.product-step-featured {
    background: #171122;
    border-color: rgba(214, 51, 209, 0.36);
    transform: translateY(-10px);
}

.product-step:nth-child(1)::before {
    background: linear-gradient(90deg, rgba(0, 180, 216, 0.98) 0%, rgba(144, 247, 236, 0.82) 100%);
}

.product-step:nth-child(2)::before {
    background: linear-gradient(90deg, rgba(214, 51, 209, 0.98) 0%, rgba(123, 44, 191, 0.98) 100%);
}

.product-step:nth-child(3)::before {
    background: linear-gradient(90deg, rgba(123, 44, 191, 0.98) 0%, rgba(0, 180, 216, 0.92) 100%);
}

.product-step-head {
    display: flex;
    align-items: flex-start;
    gap: 16px;
}

.product-step-head p {
    margin: 6px 0 0;
}

.product-step-summary {
    color: rgba(236, 238, 246, 0.74);
    font-size: 0.98rem;
}

.product-step-media {
    overflow: hidden;
    border-radius: 24px;
    border: 1px solid rgba(255, 255, 255, 0.08);
    background: linear-gradient(180deg, rgba(255, 255, 255, 0.98) 0%, rgba(247, 242, 252, 0.96) 100%);
    aspect-ratio: 3 / 2;
    box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.78);
}

.product-step-media img {
    display: block;
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.product-outcomes {
    list-style: none;
    display: grid;
    gap: 12px;
    margin: 0;
    padding: 0;
    color: rgba(255, 255, 255, 0.84);
}

.product-outcomes li {
    position: relative;
    padding-left: 20px;
    line-height: 1.45;
}

.product-outcomes li::before {
    content: "";
    position: absolute;
    left: 0;
    top: 0.55em;
    width: 8px;
    height: 8px;
    border-radius: 50%;
    background: linear-gradient(135deg, var(--color-cyan), var(--color-magenta));
}

.cta-portal {
    display: grid;
    grid-template-columns: minmax(0, 1.08fr) minmax(280px, 0.92fr);
    gap: 28px;
    align-items: stretch;
    padding: 42px;
    border-radius: 40px;
    border: 1px solid rgba(123, 44, 191, 0.22);
    background:
        radial-gradient(circle at top center, rgba(214, 51, 209, 0.12), transparent 34%),
        linear-gradient(180deg, rgba(17, 13, 27, 0.98) 0%, rgba(11, 9, 19, 0.98) 100%);
    box-shadow: 0 18px 36px rgba(26, 18, 42, 0.16);
}

.cta-portal-copy {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    text-align: left;
}

.cta-portal-copy h2 {
    margin: 0 0 18px;
    max-width: 10ch;
    font-size: clamp(2rem, 4vw, 4rem);
    color: #FFFFFF;
}

.cta-portal-copy p {
    max-width: 40rem;
    margin: 0 0 20px;
    color: rgba(214, 217, 230, 0.9);
    font-size: 1.08rem;
}

.cta-portal-action {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 18px;
    padding: 34px 28px;
    border-radius: 32px;
    background: linear-gradient(180deg, rgba(255, 255, 255, 0.98) 0%, rgba(246, 238, 252, 0.96) 100%);
    border: 1px solid rgba(255, 255, 255, 0.72);
    box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.8), 0 18px 34px rgba(7, 6, 14, 0.12);
    text-align: center;
}

.cta-hint {
    max-width: 24ch;
    color: rgba(56, 48, 82, 0.72);
    font-size: 0.94rem;
}

#soluciones,
#equipo,
#productos,
#cta {
    position: relative;
    isolation: isolate;
    scroll-margin-top: 112px;
}

#soluciones::before,
#productos::before {
    content: none;
}

#soluciones > *,
#productos > *,
#cta > * {
    position: relative;
    z-index: 1;
}

#soluciones .section-copy {
    color: rgba(82, 75, 100, 0.9);
}

#cta h2 {
    color: rgba(0, 180, 216, 0.98);
    text-shadow: 0 10px 24px rgba(255, 255, 255, 0.22);
}

#equipo {
    position: relative;
    isolation: isolate;
}

#equipo::before {
    content: none;
}

#equipo > * {
    position: relative;
    z-index: 1;
}

#equipo .section-title {
    color: rgba(0, 180, 216, 0.98);
    text-shadow: 0 10px 24px rgba(255, 255, 255, 0.22);
}

#equipo .section-copy {
    color: rgba(82, 75, 100, 0.9);
    text-shadow: none;
}

.bento-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 24px;
    grid-auto-rows: minmax(300px, auto);
}

.bento-card {
    background: #111018;
    border: 1px solid var(--color-border);
    border-radius: var(--border-radius-lg);
    padding: 40px;
    overflow: hidden;
    position: relative;
    display: flex;
    flex-direction: column;
    box-shadow: 0 10px 24px rgba(18, 14, 34, 0.08);
    transition: transform 0.24s ease, background-color 0.24s ease, box-shadow 0.24s ease;
}

.bento-card:hover {
    transform: translateY(-3px);
    background-color: #141220;
    box-shadow: 0 12px 28px rgba(0,0,0,0.14), 0 0 0 1px rgba(214, 51, 209, 0.08);
}

.card-large { grid-column: span 2; }
.card-small { grid-column: span 1; }
.card-wide {
    grid-column: span 3;
    display: flex;
    flex-direction: row;
    align-items: center;
    justify-content: space-between;
}

.bg-gradient {
    background: linear-gradient(135deg, rgba(20, 14, 32, 0.98) 0%, rgba(33, 19, 48, 0.98) 52%, rgba(18, 31, 45, 0.98) 100%);
}

.bento-card h3 { font-size: 1.5rem; margin-bottom: 12px; z-index: 2; }
.bento-card p { color: rgba(255, 255, 255, 0.76); font-size: 1rem; z-index: 2; }

.card-label {
    margin-bottom: 12px;
    color: rgba(0, 180, 216, 0.9);
    display: inline-flex;
    font-size: 0.9rem;
    font-weight: 700;
    letter-spacing: 0.16em;
    text-transform: uppercase;
    font-family: 'Montserrat', var(--font-family);
    text-shadow: 0 2px 10px rgba(255, 255, 255, 0.22);
}

.bg-gradient .card-content {
    max-width: min(100%, 540px);
    padding: 24px 26px;
    border-radius: 30px;
    background: rgba(20, 16, 32, 0.96);
    border: 1px solid rgba(214, 51, 209, 0.24);
    box-shadow: 0 10px 24px rgba(88, 38, 142, 0.12), inset 0 1px 0 rgba(255, 255, 255, 0.12);
}

.bg-gradient .card-content p {
    color: rgba(255, 255, 255, 0.92);
    text-shadow: 0 2px 14px rgba(12, 8, 26, 0.58);
}

.bg-gradient .feature-tag {
    background: rgba(255, 255, 255, 0.1);
    border-color: rgba(255, 255, 255, 0.18);
    color: rgba(255, 255, 255, 0.92);
}

.card-visual {
    flex-grow: 1;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-top: 24px;
    min-height: 150px;
}

.visual-svg { width: 150px; height: 150px; }

.abstract-chart {
    display: flex;
    align-items: flex-end;
    gap: 12px;
    height: 100px;
}

.bar {
    width: 24px;
    background: var(--color-cyan);
    border-radius: 4px 4px 0 0;
    transition: height 1s ease;
}

.bento-card:hover .bar-1 { height: 40px; background: var(--color-cyan); }
.bento-card:hover .bar-2 { height: 70px; background: var(--color-purple); }
.bento-card:hover .bar-3 { height: 50px; background: var(--color-magenta); }
.bento-card:hover .bar-4 { height: 100px; background: var(--color-cyan); }

.agent-visual {
    align-items: stretch;
}

.conversation-flow {
    width: 100%;
    padding: 24px;
    border-radius: 24px;
    background: linear-gradient(180deg, rgba(8, 8, 8, 0.7) 0%, rgba(24, 24, 24, 0.8) 100%);
    border: 1px solid rgba(255, 255, 255, 0.08);
    display: flex;
    flex-direction: column;
    gap: 14px;
}

.flow-chip {
    width: fit-content;
    max-width: 86%;
    padding: 12px 16px;
    border-radius: 18px;
    line-height: 1.4;
    font-size: 0.96rem;
}

.incoming {
    background: rgba(255, 255, 255, 0.06);
    border-bottom-left-radius: 6px;
}

.outgoing {
    margin-left: auto;
    background: linear-gradient(135deg, rgba(123, 44, 191, 0.9), rgba(214, 51, 209, 0.88));
    border-bottom-right-radius: 6px;
}

.flow-receipt {
    margin-left: auto;
    width: min(100%, 260px);
    padding: 16px 18px;
    border-radius: 18px;
    background: rgba(0, 180, 216, 0.1);
    border: 1px solid rgba(0, 180, 216, 0.26);
    display: flex;
    flex-direction: column;
    gap: 6px;
}

.flow-receipt span {
    font-size: 0.78rem;
    text-transform: uppercase;
    letter-spacing: 0.08em;
    color: var(--color-cyan);
}

.flow-receipt strong {
    font-size: 0.98rem;
}

.browser-frame,
.dashboard-shell {
    width: 100%;
    border-radius: 24px;
    background: linear-gradient(180deg, rgba(15, 15, 18, 0.96) 0%, rgba(8, 8, 10, 0.85) 100%);
    border: 1px solid rgba(255, 255, 255, 0.08);
    overflow: hidden;
    box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.06);
}

.browser-toolbar {
    display: flex;
    gap: 8px;
    padding: 14px 16px;
    border-bottom: 1px solid rgba(255, 255, 255, 0.06);
}

.browser-toolbar span {
    width: 9px;
    height: 9px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.22);
}

.browser-screen {
    padding: 24px;
    min-height: 180px;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    background:
        radial-gradient(circle at top left, rgba(0, 180, 216, 0.28), transparent 42%),
        radial-gradient(circle at bottom right, rgba(214, 51, 209, 0.24), transparent 38%),
        rgba(8, 8, 10, 0.82);
}

.browser-badge {
    width: fit-content;
    padding: 8px 12px;
    border-radius: 999px;
    font-size: 0.78rem;
    font-weight: 600;
    color: rgba(255, 255, 255, 0.82);
    background: rgba(255, 255, 255, 0.08);
}

.browser-screen h4 {
    font-size: 1.28rem;
    max-width: 260px;
}

.browser-actions {
    display: flex;
    gap: 10px;
}

.browser-actions span {
    height: 10px;
    border-radius: 999px;
}

.browser-primary {
    width: 116px;
    background: linear-gradient(135deg, rgba(255, 255, 255, 0.92), rgba(255, 255, 255, 0.6));
}

.browser-secondary {
    width: 72px;
    background: linear-gradient(135deg, rgba(123, 44, 191, 0.92), rgba(214, 51, 209, 0.78));
}

.dashboard-shell {
    padding: 18px;
    display: flex;
    flex-direction: column;
    gap: 16px;
}

.metric-row {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 12px;
}

.metric-pill {
    padding: 14px 16px;
    border-radius: 18px;
    background: rgba(255, 255, 255, 0.04);
    border: 1px solid rgba(255, 255, 255, 0.06);
    display: flex;
    flex-direction: column;
    gap: 4px;
}

.metric-pill span {
    color: rgba(255, 255, 255, 0.7);
    font-size: 0.76rem;
    text-transform: uppercase;
    letter-spacing: 0.06em;
}

.metric-pill strong {
    font-size: 1.12rem;
}

.mini-line {
    display: flex;
    align-items: flex-end;
    gap: 10px;
    min-height: 42px;
}

.mini-line span {
    flex: 1;
    border-radius: 999px;
    background: linear-gradient(180deg, rgba(255, 255, 255, 0.08), rgba(214, 51, 209, 0.72));
}

.mini-line span:nth-child(1) { height: 22px; }
.mini-line span:nth-child(2) { height: 34px; }
.mini-line span:nth-child(3) { height: 18px; }
.mini-line span:nth-child(4) { height: 40px; }

.wide-copy {
    max-width: 44%;
}

.feature-tags {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
    margin-top: 22px;
}

.feature-tag {
    padding: 10px 14px;
    border-radius: 999px;
    border: 1px solid rgba(255, 255, 255, 0.09);
    background: rgba(255, 255, 255, 0.05);
    color: rgba(255, 255, 255, 0.82);
    font-size: 0.85rem;
}

.workflow-visual {
    flex: 1 1 48%;
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 14px;
    width: 100%;
}

.workflow-column {
    padding: 18px;
    border-radius: 24px;
    background: rgba(255, 255, 255, 0.04);
    border: 1px solid rgba(255, 255, 255, 0.07);
    display: flex;
    flex-direction: column;
    gap: 10px;
    min-height: 210px;
}

.active-column {
    background: linear-gradient(180deg, rgba(214, 51, 209, 0.16) 0%, rgba(255, 255, 255, 0.05) 100%);
}

.workflow-heading {
    font-size: 0.78rem;
    letter-spacing: 0.08em;
    text-transform: uppercase;
    color: rgba(255, 255, 255, 0.68);
}

.workflow-task {
    padding: 12px 14px;
    border-radius: 16px;
    background: rgba(0, 0, 0, 0.26);
    border: 1px solid rgba(255, 255, 255, 0.06);
    color: rgba(255, 255, 255, 0.84);
    font-size: 0.92rem;
    line-height: 1.35;
}

/* Pricing */
.pricing-section {
    width: calc(100vw - (var(--page-gutter) * 2));
    padding: 120px 0;
    max-width: none;
    margin: 0 auto;
}

.pricing-cards {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 24px;
    margin-top: 60px;
}

.pricing-card {
    display: flex;
    flex-direction: column;
    position: relative;
}

.product-cards {
    align-items: stretch;
}

.product-card {
    gap: 24px;
}

.product-card-featured {
    border-color: rgba(214, 51, 209, 0.5);
    background:
        radial-gradient(circle at top right, rgba(214, 51, 209, 0.14), transparent 34%),
        radial-gradient(circle at bottom left, rgba(0, 180, 216, 0.1), transparent 30%),
        #171122;
}

.product-media-frame {
    overflow: hidden;
    padding: 12px;
    border-radius: 26px;
    background: linear-gradient(180deg, rgba(11, 10, 18, 0.94) 0%, rgba(8, 8, 14, 0.8) 100%);
    border: 1px solid rgba(123, 44, 191, 0.18);
}

.product-pill {
    display: inline-flex;
    width: fit-content;
    padding: 8px 12px;
    margin-bottom: 14px;
    border-radius: 999px;
    background: rgba(214, 51, 209, 0.12);
    color: rgba(255, 226, 252, 0.92);
    font-size: 0.78rem;
    letter-spacing: 0.12em;
    text-transform: uppercase;
    font-family: 'Montserrat', var(--font-family);
}

.product-price {
    font-family: 'Montserrat', var(--font-family);
    font-size: clamp(2rem, 3vw, 2.65rem);
    font-weight: 700;
    letter-spacing: -0.04em;
}

.product-price span {
    font-size: 1rem;
    font-weight: 500;
    color: rgba(255, 255, 255, 0.72);
}

.product-actions {
    display: flex;
    flex-direction: column;
    gap: 12px;
    margin-top: auto;
}

.highlighted {
    border-color: rgba(214, 51, 209, 0.5);
    background: linear-gradient(180deg, rgba(214, 51, 209, 0.05) 0%, rgba(123, 44, 191, 0.05) 100%);
    transform: scale(1.02);
}

.highlight-badge {
    position: absolute;
    top: -12px;
    right: 24px;
    background: linear-gradient(135deg, var(--color-magenta), var(--color-purple));
    color: white;
    padding: 4px 12px;
    border-radius: 999px;
    font-size: 0.75rem;
    font-weight: 700;
    text-transform: uppercase;
    box-shadow: 0 4px 12px rgba(214, 51, 209, 0.4);
}

.plan-header h4 { font-size: 1.5rem; margin-bottom: 8px; }
.plan-desc { color: rgba(255, 255, 255, 0.76); font-size: 0.9rem; margin-bottom: 24px; min-height: 48px;}

.plan-features { flex-grow: 1; margin-bottom: 32px; }
.plan-features ul { list-style: none; }
.plan-features li {
    display: flex;
    align-items: center;
    gap: 12px;
    margin-bottom: 16px;
    font-size: 0.95rem;
}
.plan-features li svg { width: 18px; height: 18px; flex-shrink: 0; }

/* CTA Section */
.cta-section {
    width: calc(100vw - (var(--page-gutter) * 2));
    padding: 60px 0 120px;
    max-width: none;
    margin: 0 auto;
    text-align: center;
}

.cta-container {
    padding: 80px 40px;
    border-color: rgba(123, 44, 191, 0.34);
    background:
        radial-gradient(circle at top center, rgba(214, 51, 209, 0.12), transparent 34%),
        linear-gradient(180deg, rgba(17, 13, 27, 0.98) 0%, rgba(11, 9, 19, 0.98) 100%);
}

.cta-container h2 { font-size: clamp(2rem, 4vw, 3rem); margin-bottom: 24px; }
.cta-container p {
    color: rgba(214, 217, 230, 0.9);
    font-size: 1.125rem;
    max-width: 780px;
    margin: 0 auto 28px;
    padding: 0;
    border-radius: 0;
    background: none;
    border: 0;
    box-shadow: none;
    text-shadow: none;
}

/* Footer */
.footer {
    border: 1px solid var(--color-border);
    border-bottom: 0;
    border-radius: 28px 28px 0 0;
    padding: 68px 24px 24px;
    width: calc(100vw - (var(--page-gutter) * 2));
    max-width: none;
    margin: 32px auto 0;
    background: linear-gradient(180deg, rgba(8, 8, 16, 0.86) 0%, rgba(6, 6, 12, 0.94) 100%);
    box-shadow: 0 -12px 28px rgba(0, 0, 0, 0.14), inset 0 1px 0 rgba(255, 255, 255, 0.04);
}

.footer-content {
    display: flex;
    justify-content: space-between;
    flex-wrap: wrap;
    gap: 40px;
    margin-bottom: 60px;
}

.footer-logo { max-width: 300px; }
.footer-logo img { display: block; width: auto; max-width: 100%; }
.footer-logo p { color: rgba(255, 255, 255, 0.72); margin-top: 16px; font-size: 0.94rem; }

.footer-links {
    display: flex;
    gap: 32px;
}
.footer-links a { color: rgba(255, 255, 255, 0.72); text-decoration: none; transition: color 0.2s; }
.footer-links a:hover { color: var(--color-text); }

.footer-bottom {
    border-top: 1px solid var(--color-border);
    padding-top: 24px;
    color: rgba(255, 255, 255, 0.6);
    font-size: 0.8rem;
    text-align: center;
}

.quote-section {
    width: calc(100vw - (var(--page-gutter) * 2));
    max-width: none;
    margin: 0 auto;
    padding: 24px 0 0;
}

.quote-card {
    padding: 34px 38px;
    text-align: left;
    background:
        radial-gradient(circle at top right, rgba(214, 51, 209, 0.14), transparent 34%),
        radial-gradient(circle at bottom left, rgba(0, 180, 216, 0.1), transparent 34%),
        #14111f;
}

.quote-layout {
    display: grid;
    grid-template-columns: 240px minmax(0, 1fr);
    gap: 28px;
    align-items: center;
}

.quote-figure {
    margin: 0;
    display: flex;
    flex-direction: column;
}

.quote-portrait {
    display: block;
    width: 100%;
    height: auto;
    aspect-ratio: auto;
    object-fit: contain;
    object-position: center;
    border-radius: 26px;
    border: 1px solid rgba(255, 255, 255, 0.1);
    box-shadow: 0 24px 44px rgba(0, 0, 0, 0.28);
}

.quote-figure figcaption {
    margin-top: 12px;
    font-family: 'Montserrat', var(--font-family);
    font-size: 0.92rem;
    color: rgba(255, 255, 255, 0.78);
}

.quote-copy {
    min-width: 0;
}

.quote-eyebrow {
    margin-bottom: 18px;
    font-size: 0.92rem;
    font-weight: 700;
    letter-spacing: 0.18em;
    text-transform: uppercase;
    color: rgba(0, 180, 216, 0.9);
    font-family: 'Montserrat', var(--font-family);
}

.quote-card .principle-step {
    display: none;
}

.quote-text {
    max-width: none;
    margin: 0;
    font-family: Georgia, "Times New Roman", serif;
    font-style: italic;
    font-size: clamp(1.8rem, 3.6vw, 2.8rem);
    line-height: 1.15;
    color: rgba(255, 255, 255, 0.98);
    text-shadow: 0 4px 18px rgba(0, 0, 0, 0.26);
}

.quote-text.is-typing::after,
.quote-text.is-complete::after {
    content: "";
    display: inline-block;
    width: 2px;
    height: 0.95em;
    margin-left: 8px;
    vertical-align: -0.08em;
    background: rgba(255, 255, 255, 0.92);
}

.quote-text.is-typing::after {
    animation: quote-caret 0.9s step-end infinite;
}

.quote-text.is-complete::after {
    opacity: 0.72;
}

.quote-meta {
    margin-top: 22px;
    display: grid;
    grid-template-columns: 180px 1fr;
    gap: 18px;
    align-items: start;
}

.quote-meta span {
    font-family: 'Montserrat', var(--font-family);
    font-size: 0.9rem;
    color: rgba(255, 255, 255, 0.9);
}

.quote-meta p {
    color: rgba(255, 255, 255, 0.84);
    font-size: 1rem;
}

@keyframes quote-caret {
    0%, 49% { opacity: 1; }
    50%, 100% { opacity: 0; }
}

.service-image-frame {
    width: 100%;
    padding: 12px;
    border-radius: 28px;
    background: linear-gradient(180deg, rgba(11, 10, 18, 0.92) 0%, rgba(8, 8, 14, 0.78) 100%);
    border: 1px solid rgba(123, 44, 191, 0.16);
    box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.05);
}

.service-illustration {
    display: block;
    width: 100%;
    height: auto;
    border-radius: 20px;
}

.wide-service-frame {
    flex: 1 1 48%;
    align-self: stretch;
    min-height: 100%;
}

.team-showcase {
    display: grid;
    grid-template-columns: minmax(0, 1.35fr) repeat(2, minmax(0, 1fr));
    gap: 24px;
    margin-bottom: 34px;
}

.team-panel {
    position: relative;
    min-height: 320px;
    overflow: hidden;
    border-radius: var(--border-radius-lg);
    border: 1px solid rgba(123, 44, 191, 0.16);
    background: rgba(8, 8, 16, 0.74);
}

.team-panel img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
    filter: saturate(1.02) contrast(1.02);
}

.team-panel-primary {
    min-height: 420px;
}

.team-panel-primary img {
    object-position: center 26%;
}

.team-panel-analytics img {
    object-position: center 22%;
}

.team-panel-market img {
    object-position: center 18%;
    filter: brightness(1.14) saturate(1.04);
}

.team-panel figcaption {
    position: absolute;
    inset: auto 0 0 0;
    padding: 20px;
    background: linear-gradient(180deg, rgba(0, 0, 0, 0) 0%, rgba(5, 5, 7, 0.92) 76%);
}

.team-panel span {
    display: inline-flex;
    font-size: 0.76rem;
    letter-spacing: 0.14em;
    text-transform: uppercase;
    color: rgba(255, 255, 255, 0.62);
    font-family: 'Montserrat', var(--font-family);
}

.team-panel strong {
    display: block;
    margin-top: 8px;
    font-size: 1.04rem;
    line-height: 1.35;
}

.team-member-card p {
    color: rgba(255, 255, 255, 0.72) !important;
}

.team-member-icon {
    width: 46px;
    height: 46px;
    border-radius: 14px;
    display: grid;
    place-items: center;
    margin-bottom: 14px;
    color: #FFFFFF;
    background: linear-gradient(135deg, rgba(123, 44, 191, 0.92), rgba(214, 51, 209, 0.82));
    box-shadow: 0 14px 24px rgba(123, 44, 191, 0.22);
}

.team-member-icon svg {
    width: 22px;
    height: 22px;
}

.team-role {
    display: inline-flex;
    margin-bottom: 8px;
    font-size: 0.78rem;
    letter-spacing: 0.12em;
    text-transform: uppercase;
    color: rgba(0, 180, 216, 0.9);
    font-family: 'Montserrat', var(--font-family);
}

/* Animations */
/* Scroll Reveal System */
.reveal {
    opacity: 1;
    transform: translateY(0);
}

.js .reveal {
    opacity: 0;
    transform: translateY(40px);
    transition: opacity 0.72s cubic-bezier(0.25, 1, 0.5, 1), transform 0.72s cubic-bezier(0.25, 1, 0.5, 1);
}

.js .reveal.active {
    opacity: 1;
    transform: translateY(0);
}

.stagger > *:nth-child(1) { transition-delay: 0.1s; }
.stagger > *:nth-child(2) { transition-delay: 0.2s; }
.stagger > *:nth-child(3) { transition-delay: 0.3s; }
.stagger > *:nth-child(4) { transition-delay: 0.4s; }

/* Micro-animations */
.spin-slow { animation: spin 10s linear infinite; transform-origin: center; }
@keyframes spin { 100% { transform: rotate(360deg); } }

.pulse { animation: pulseAnim 3s ease-in-out infinite alternate; }
@keyframes pulseAnim { 0% { transform: scale(1); } 100% { transform: scale(1.05); } }

.floating { animation: float 6s ease-in-out infinite; }
@keyframes float { 0% { transform: translateY(0); } 50% { transform: translateY(-15px); } 100% { transform: translateY(0); } }

.slide-in-bottom { 
    opacity: 0; transform: translateY(20px); 
    animation: slideIn 0.6s cubic-bezier(0.25, 1, 0.5, 1) forwards; 
}
.slide-in-bottom-delay-1 { 
    opacity: 0; transform: translateY(20px); 
    animation: slideIn 0.6s cubic-bezier(0.25, 1, 0.5, 1) 0.8s forwards; 
}
.slide-in-bottom-delay-2 { 
    opacity: 0; transform: translateY(20px); 
    animation: slideIn 0.6s cubic-bezier(0.25, 1, 0.5, 1) 1.6s forwards; 
}
.slide-in-bottom-delay-3 { 
    opacity: 0; transform: translateY(20px); 
    animation: slideIn 0.6s cubic-bezier(0.25, 1, 0.5, 1) 2.4s forwards; 
}
.slide-in-bottom-delay-4 { 
    opacity: 0; transform: translateY(20px); 
    animation: slideIn 0.6s cubic-bezier(0.25, 1, 0.5, 1) 3.2s forwards; 
}

@keyframes slideIn {
    to { opacity: 1; transform: translateY(0); }
}

/* Hover SVG interactions */
.move-right { transition: transform 0.3s; }
.bento-card:hover .move-right { transform: translateX(5px); }

/* Responsive tweaks */
@media (max-width: 992px) {
    .section-system-head,
    .products-section-head,
    .team-section-shell,
    .cta-portal {
        grid-template-columns: 1fr;
    }
    .products-preview-strip {
        grid-template-columns: repeat(3, minmax(0, 1fr));
    }
    .route-card {
        grid-column: span 6;
    }
    .route-card-core {
        grid-column: span 12;
    }
    .team-stage {
        grid-template-columns: minmax(0, 1fr) minmax(0, 0.86fr);
        grid-template-rows: auto auto;
        min-height: auto;
    }
    .team-stage-main {
        grid-column: 1;
        grid-row: 1;
        min-height: 0;
    }
    .team-stage-analytics {
        grid-column: 1;
        grid-row: 2;
    }
    .team-stage-market {
        grid-column: 2;
        grid-row: 1 / span 2;
    }
    .principle-card {
        grid-template-columns: 200px minmax(0, 1fr);
    }
    .product-track {
        grid-template-columns: 1fr;
    }
    .product-step-featured {
        transform: none;
    }
    .bento-grid { grid-template-columns: 1fr 1fr; }
    .card-large, .card-wide { grid-column: span 2; }
    .pricing-cards { grid-template-columns: 1fr; }
    .highlighted { transform: scale(1); }
    .card-wide {
        flex-direction: column;
        align-items: flex-start;
    }
    .wide-copy { max-width: 100%; }
    .workflow-visual { width: 100%; }
    .system-overview {
        flex-direction: column;
    }
    .team-showcase {
        grid-template-columns: repeat(2, minmax(0, 1fr));
    }
    .team-panel-primary {
        grid-column: span 2;
        min-height: 360px;
    }
    .quote-meta {
        grid-template-columns: 1fr;
        gap: 8px;
    }
    .quote-layout {
        grid-template-columns: 200px minmax(0, 1fr);
    }
}

@media (max-width: 768px) {
    .navbar {
        padding: 14px var(--page-gutter) 0;
    }
    .hero-intro-content {
        width: calc(100% - 32px);
        gap: 14px;
    }
    .hero-intro-logo {
        width: 118px;
    }
    .hero-intro-kicker {
        font-size: 0.72rem;
        letter-spacing: 0.28em;
    }
    .hero-intro-brand {
        font-size: clamp(3rem, 16vw, 4.6rem);
    }
    .hero-intro-caption {
        max-width: 320px;
        font-size: 0.98rem;
    }
    .intro-scroll-cue {
        bottom: 24px;
        padding: 10px 14px;
        font-size: 0.82rem;
    }
    .spline-logo-mask {
        width: 152px;
        height: 52px;
        border-radius: 22px 0 0 0;
    }
    .nav-shell {
        padding: 10px 12px;
        border-radius: 24px;
    }
    .nav-container {
        padding: 0;
        gap: 12px;
    }
    .logo img {
        height: 28px !important;
        max-width: 98px;
    }
    .logo-tag,
    .nav-menu,
    .nav-links { display: none; }
    .nav-btn {
        padding: 10px 14px;
        font-size: 0.86rem;
        max-width: none;
    }
    .nav-btn-desktop { display: none; }
    .nav-btn-mobile { display: inline; }
    .hero {
        min-height: auto;
        padding: 128px 0 72px;
    }
    .section-signature {
        gap: 10px;
        margin-bottom: 14px;
    }
    .section-title-left,
    .section-copy-left {
        max-width: none;
    }
    .section-system-head,
    .products-section-head,
    .team-section-shell,
    .cta-portal,
    .principle-card {
        grid-template-columns: 1fr;
        gap: 22px;
    }
    .service-showcase-grid,
    .products-preview-strip {
        grid-template-columns: 1fr;
    }
    .brand-illustration {
        border-radius: 24px;
    }
    .route-layout {
        grid-template-columns: 1fr;
    }
    .route-card,
    .route-card-core {
        grid-column: span 1;
        padding: 24px 22px;
    }
    .route-card-top,
    .product-step-head {
        flex-direction: column;
        gap: 14px;
    }
    .team-role-item {
        grid-template-columns: 1fr;
        gap: 6px;
    }
    .team-stage {
        grid-template-columns: 1fr;
        grid-template-rows: auto;
    }
    .team-stage-main,
    .team-stage-side,
    .team-stage-analytics,
    .team-stage-market {
        grid-column: auto;
        grid-row: auto;
        min-height: 0;
    }
    .principle-card {
        padding: 26px 22px;
    }
    .principle-mark {
        flex-direction: row;
        align-items: center;
        justify-content: space-between;
    }
    .product-step {
        padding: 26px 22px;
    }
    .product-step-media {
        border-radius: 20px;
    }
    .cta-portal {
        padding: 28px 22px;
    }
    .cta-portal-copy h2 {
        max-width: none;
    }
    .cta-portal-action {
        padding: 22px 18px;
    }
    .hero-stage {
        min-height: auto;
        grid-template-columns: 1fr;
        gap: 20px;
        padding: 28px 22px 26px;
        border-radius: 34px;
    }
    .hero-stage-copy {
        align-items: flex-start;
    }
    .hero-stage .eyebrow {
        margin-bottom: 14px;
    }
    .hero-stage .hero-title {
        max-width: 9ch;
        font-size: clamp(2.55rem, 13vw, 3.85rem);
        margin-bottom: 18px;
    }
    .hero-support {
        max-width: 14ch;
        font-size: clamp(1.2rem, 6vw, 1.72rem);
        margin-bottom: 22px;
    }
    .hero-content {
        width: 100%;
        margin-bottom: 32px;
    }
    .bento-grid { grid-template-columns: 1fr; }
    .card-large, .card-wide, .card-small { grid-column: span 1; }
    .card-wide { flex-direction: column; text-align: left; }
    .hero-title { font-size: clamp(2.35rem, 13vw, 3.4rem); }
    .hero-subtitle {
        font-size: 1rem;
        padding: 14px 16px;
        margin-bottom: 32px;
    }
    .hero-cta-group {
        width: 100%;
        gap: 12px;
    }
    .hero-cta-group .btn {
        width: 100%;
    }
    .hero-pill-row {
        justify-content: flex-start;
        gap: 10px;
    }
    .hero-pill {
        font-size: 0.8rem;
        padding: 9px 12px;
    }
    .hero-visual-grid {
        min-height: 0;
        grid-template-columns: repeat(2, minmax(0, 1fr));
        grid-template-rows: auto auto;
        gap: 14px;
    }
    .hero-visual-grid::before {
        inset: 12% 8% 10%;
        border-radius: 28px;
        filter: blur(14px);
    }
    .hero-visual-card {
        padding: 10px;
        border-radius: 24px;
    }
    .hero-visual-card figcaption {
        padding: 12px 6px 4px;
    }
    .hero-visual-card figcaption strong {
        font-size: 0.86rem;
    }
    .hero-visual-card-primary,
    .hero-visual-card-web,
    .hero-visual-card-data,
    .hero-visual-card-ops {
        position: relative;
        right: auto;
        bottom: auto;
        width: auto;
        max-width: none;
        grid-column: auto;
        grid-row: auto;
    }
    .hero-visual-card-primary {
        transform: none;
    }
    .hero-visual-card-web {
        transform: rotate(-4deg);
    }
    .hero-visual-card-data {
        transform: rotate(2deg);
    }
    .hero-visual-card-ops {
        transform: rotate(4deg);
    }
    .hero-stage.is-activated .hero-visual-card-primary {
        transform: translateY(-8px);
    }
    .hero-stage.is-activated .hero-visual-card-web {
        transform: translateY(-12px) rotate(-6deg);
    }
    .hero-stage.is-activated .hero-visual-card-data {
        transform: translateY(6px) rotate(2deg);
    }
    .hero-stage.is-activated .hero-visual-card-ops {
        transform: translateY(10px) rotate(5deg);
    }
    .system-overview {
        padding: 22px;
    }
    .overview-modules {
        grid-template-columns: 1fr;
    }
    .overview-module {
        padding: 12px;
    }
    .features-section,
    .pricing-section,
    .cta-section,
    .footer {
        padding-left: 0;
        padding-right: 0;
    }
    .quote-section {
        padding: 12px 0 0;
    }
    .quote-card {
        padding: 26px 22px;
    }
    .quote-layout {
        grid-template-columns: 1fr;
        gap: 20px;
    }
    .quote-figure {
        max-width: 220px;
    }
    .quote-text {
        font-size: clamp(1.55rem, 7vw, 2.2rem);
    }
    .quote-meta p {
        font-size: 0.98rem;
    }
    .section-copy {
        font-size: 1rem;
        margin-bottom: 56px;
        padding: 0;
    }
    .bg-gradient .card-content {
        padding: 18px 16px;
    }
    #soluciones::before,
    #productos::before,
    #equipo::before {
        width: calc(100% - 20px);
        border-radius: 34px;
        filter: blur(8px);
    }
    #soluciones::before,
    #productos::before {
        height: 210px;
    }
    #equipo::before {
        height: 220px;
    }
    .bento-card {
        padding: 28px;
    }
    .card-visual {
        margin-top: 20px;
    }
    .service-image-frame {
        padding: 10px;
    }
    .product-media-frame {
        padding: 10px;
    }
    .conversation-flow,
    .browser-screen,
    .dashboard-shell {
        padding: 18px;
    }
    .metric-row,
    .workflow-visual {
        grid-template-columns: 1fr;
    }
    .workflow-column {
        min-height: 0;
    }
    .feature-tags {
        margin-top: 18px;
    }
    .team-showcase {
        grid-template-columns: 1fr;
        gap: 18px;
    }
    .team-panel,
    .team-panel-primary {
        min-height: 280px;
    }
    .team-panel-primary {
        grid-column: auto;
    }
    .team-panel figcaption {
        padding: 18px;
    }
    .product-price {
        font-size: 2rem;
    }
    .footer-content {
        flex-direction: column;
    }
    .footer {
        margin-top: 18px;
        padding-top: 54px;
        border-radius: 26px 26px 0 0;
    }
}
