/* ============================================================
   QINECT — Main Stylesheet  v1.0
   Fonts: Sora (headings) · Inter (body) — via Google Fonts
   ============================================================ */

@import url('https://fonts.googleapis.com/css2?family=Sora:wght@300;400;500;600;700;800&family=Inter:ital,wght@0,300;0,400;0,500;0,600;1,400&display=swap');

/* ── Custom Properties ─────────────────────────────────── */
:root {
    /* Brand */
    --dark:   #111229;
    --purple: #6049cd;
    --aqua:   #29e1ec;
    --white:  #ffffff;

    /* Extended palette */
    --dark-05:     rgba(17, 18, 41, 0.05);
    --dark-20:     rgba(17, 18, 41, 0.20);
    --dark-60:     rgba(17, 18, 41, 0.60);
    --dark-90:     rgba(17, 18, 41, 0.90);
    --purple-10:   rgba(96, 73, 205, 0.10);
    --purple-20:   rgba(96, 73, 205, 0.20);
    --purple-dark: #4e39b5;
    --aqua-10:     rgba(41, 225, 236, 0.10);
    --aqua-dark:   #1ec8d3;
    --light-bg:    #f4f5fb;
    --border:      #e0e2f0;
    --muted:       #6a6d90;
    --page-bg:     #0a0b18;  /* footer / very dark backgrounds */

    /* Typography */
    --font-heading: 'Sora', sans-serif;
    --font-body:    'Inter', sans-serif;

    /* Layout */
    --container:  1300px;
    --header-h:   80px;

    /* Radius */
    --r-sm:  8px;
    --r-md:  14px;
    --r-lg:  24px;
    --r-xl:  40px;

    /* Transitions */
    --ease:      0.28s cubic-bezier(0.4, 0, 0.2, 1);
    --ease-slow: 0.55s cubic-bezier(0.4, 0, 0.2, 1);
}

/* ── Reset ──────────────────────────────────────────────── */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }

html {
    scroll-behavior: smooth;
    font-size: 16px;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
}

body {
    font-family: var(--font-body);
    color: var(--dark);
    background: var(--white);
    line-height: 1.65;
    overflow-x: hidden;
}

img { max-width: 100%; height: auto; display: block; }

a {
    color: var(--purple);
    text-decoration: none;
    transition: color var(--ease);
}
a:hover { color: var(--aqua); }

ul { list-style: none; }

/* ── Accessibility ──────────────────────────────────────── */
.skip-link {
    position: absolute;
    top: -100px; left: 0;
    background: var(--purple);
    color: var(--white);
    padding: 0.5rem 1.25rem;
    z-index: 9999;
    border-radius: 0 0 var(--r-sm) 0;
    font-family: var(--font-heading);
    font-weight: 600;
    font-size: 0.875rem;
}
.skip-link:focus { top: 0; }

/* ── Typography ─────────────────────────────────────────── */
h1, h2, h3, h4, h5, h6 {
    font-family: var(--font-heading);
    font-weight: 700;
    line-height: 1.15;
    letter-spacing: -0.025em;
    color: var(--dark);
}
h1 { font-size: clamp(2.8rem, 6.5vw, 5rem); }
h2 { font-size: clamp(1.9rem, 4vw, 3rem); }
h3 { font-size: clamp(1.2rem, 2.5vw, 1.65rem); }
h4 { font-size: 1.1rem; font-weight: 600; }

p { line-height: 1.72; }

.lead {
    font-size: 1.15rem;
    line-height: 1.7;
    color: var(--muted);
}

.eyebrow {
    display: inline-block;
    font-family: var(--font-heading);
    font-size: 0.72rem;
    font-weight: 700;
    letter-spacing: 0.2em;
    text-transform: uppercase;
    color: var(--purple);
}

/* ── Layout helpers ─────────────────────────────────────── */
.container {
    max-width: var(--container);
    margin: 0 auto;
    padding: 0 2rem;
}

.section        { padding: 7rem 0; }
.section--alt   { background: var(--light-bg); }
.section--dark  { background: var(--dark); color: var(--white); }

.section-header {
    text-align: center;
    max-width: 780px;
    margin: 0 auto 4.5rem;
}
.section-header .eyebrow { margin-bottom: 1rem; }
.section-header h2 { margin-bottom: 1.1rem; }
.section-header .lead { margin: 0; }

/* ── Buttons ─────────────────────────────────────────────── */
.btn {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    padding: 0.8rem 1.9rem;
    font-family: var(--font-heading);
    font-size: 0.9rem;
    font-weight: 600;
    letter-spacing: 0.01em;
    border-radius: 50px;
    border: 2px solid transparent;
    cursor: pointer;
    transition: all var(--ease);
    text-decoration: none;
    white-space: nowrap;
    line-height: 1.3;
}

.btn--primary {
    background: var(--purple);
    color: var(--white);
    border-color: var(--purple);
}
.btn--primary:hover {
    background: var(--purple-dark);
    border-color: var(--purple-dark);
    color: var(--white);
    transform: translateY(-2px);
    box-shadow: 0 10px 28px rgba(96, 73, 205, 0.38);
}

.btn--outline-white {
    background: transparent;
    color: var(--white);
    border-color: rgba(255, 255, 255, 0.45);
}
.btn--outline-white:hover {
    background: var(--white);
    color: var(--dark);
    border-color: var(--white);
    transform: translateY(-2px);
}

.btn--aqua {
    background: var(--aqua);
    color: var(--dark);
    border-color: var(--aqua);
}
.btn--aqua:hover {
    background: var(--aqua-dark);
    border-color: var(--aqua-dark);
    color: var(--dark);
    transform: translateY(-2px);
    box-shadow: 0 10px 28px rgba(41, 225, 236, 0.38);
}

.btn--lg { padding: 1rem 2.4rem; font-size: 1rem; }

.btn svg {
    width: 18px; height: 18px;
    stroke: currentColor;
    fill: none;
    stroke-width: 2;
    stroke-linecap: round;
    stroke-linejoin: round;
    flex-shrink: 0;
}

/* ── Header ─────────────────────────────────────────────── */
#main-header {
    position: fixed;
    top: 0; left: 0; right: 0;
    height: var(--header-h);
    z-index: 1000;
    background: var(--dark);
    border-bottom: 1px solid rgba(255, 255, 255, 0.08);
    transition: height var(--ease), border-color var(--ease), box-shadow var(--ease);
}

/* Once scrolled past the hero: same dark background, subtle elevation */
#main-header.scrolled {
    border-bottom-color: rgba(41, 225, 236, 0.2);
    box-shadow: 0 4px 28px rgba(0, 0, 0, 0.4);
    height: 70px;
}

.header-inner {
    display: flex;
    align-items: center;
    justify-content: space-between;
    height: 100%;
    max-width: var(--container);
    margin: 0 auto;
    padding: 0 2rem;
}

/* Logo — single white version; header is always dark */
.header-logo {
    display: flex;
    align-items: center;
    flex-shrink: 0;
    text-decoration: none;
}
.header-logo img {
    height: 34px;
    width: auto;
    display: block;
    transition: filter 0.25s ease;
}
/* On hover: convert entire logo to aqua (#29e1ec).
   brightness(0) → black; the chain below brings it to #29e1ec. */
.header-logo:hover img {
    filter: brightness(0) invert(54%) sepia(100%) hue-rotate(146deg) saturate(300%) brightness(107%);
}

/* Desktop nav — white text always, aqua hover/active underline */
.header-nav {
    display: flex;
    align-items: center;
    gap: 2.2rem;
}

.header-nav > a {
    font-family: var(--font-heading);
    font-size: 0.875rem;
    font-weight: 500;
    color: rgba(255, 255, 255, 0.88);
    letter-spacing: 0.01em;
    position: relative;
    padding-bottom: 3px;
    transition: color var(--ease);
}
.header-nav > a::after {
    content: '';
    position: absolute;
    bottom: 0; left: 0;
    width: 0; height: 2px;
    background: var(--aqua);
    border-radius: 2px;
    transition: width var(--ease);
}
.header-nav > a:hover,
.header-nav > a.active { color: var(--aqua); }
.header-nav > a:hover::after,
.header-nav > a.active::after { width: 100%; }

.header-nav .btn--primary {
    padding: 0.5rem 1.3rem;
    font-size: 0.83rem;
    margin-left: 0.8rem;
}

/* Hamburger */
.hamburger {
    display: none;
    flex-direction: column;
    justify-content: center;
    gap: 5px;
    cursor: pointer;
    background: none;
    border: none;
    padding: 6px;
    border-radius: var(--r-sm);
}
.hamburger span {
    display: block;
    width: 24px; height: 2px;
    background: rgba(255,255,255,0.9);
    border-radius: 2px;
    transition: all var(--ease);
}
#main-header.scrolled .hamburger span { background: var(--dark); }
.hamburger.active span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
.hamburger.active span:nth-child(2) { opacity: 0; transform: scaleX(0); }
.hamburger.active span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }

/* Mobile overlay nav */
.mobile-nav {
    display: none;
    position: fixed;
    top: var(--header-h);
    left: 0; right: 0;
    background: var(--dark);
    flex-direction: column;
    padding: 1.5rem 2rem 2rem;
    gap: 0.25rem;
    border-top: 1px solid rgba(255,255,255,0.08);
    z-index: 999;
    box-shadow: 0 8px 40px rgba(0,0,0,0.4);
}
.mobile-nav.open { display: flex; }

.mobile-nav a {
    font-family: var(--font-heading);
    font-size: 1rem;
    font-weight: 500;
    color: rgba(255,255,255,0.85);
    padding: 0.85rem 0;
    border-bottom: 1px solid rgba(255,255,255,0.07);
    transition: color var(--ease);
}
.mobile-nav a:last-child { border-bottom: none; }
.mobile-nav a:hover { color: var(--aqua); }
.mobile-nav .btn {
    margin-top: 1rem;
    text-align: center;
    justify-content: center;
}

/* ── Hero ───────────────────────────────────────────────── */
.hero {
    position: relative;
    height: 100vh;
    min-height: 640px;
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
    background: var(--dark);
}

.hero-bg {
    position: absolute;
    inset: 0;
    background-image: url('../images/heros/hero_2026-03-01_1119.svg');
    background-size: cover;
    background-position: center center;
    background-repeat: no-repeat;
    z-index: 0;
}

.hero-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(
        160deg,
        rgba(17, 18, 41, 0.25) 0%,
        rgba(17, 18, 41, 0.05) 40%,
        rgba(17, 18, 41, 0.65) 100%
    );
    z-index: 1;
}

.hero-content {
    position: relative;
    z-index: 2;
    text-align: center;
    padding: 0 1.5rem;
    max-width: 940px;
}

.hero-eyebrow {
    display: inline-block;
    font-family: var(--font-heading);
    font-size: 0.72rem;
    font-weight: 700;
    letter-spacing: 0.3em;
    text-transform: uppercase;
    color: var(--aqua);
    margin-bottom: 1.6rem;
    opacity: 0;
    animation: fadeUp 0.9s 0.3s ease forwards;
}

.hero-title {
    font-family: var(--font-heading);
    font-weight: 800;
    font-size: clamp(3.2rem, 8vw, 6.2rem);
    line-height: 1.02;
    letter-spacing: -0.04em;
    color: var(--white);
    margin-bottom: 1.6rem;
    opacity: 0;
    animation: fadeUp 0.9s 0.5s ease forwards;
}
.hero-title .accent { color: var(--aqua); }

.hero-subtitle {
    font-size: clamp(1rem, 2vw, 1.2rem);
    color: rgba(255, 255, 255, 0.78);
    line-height: 1.7;
    max-width: 580px;
    margin: 0 auto 2.8rem;
    opacity: 0;
    animation: fadeUp 0.9s 0.7s ease forwards;
}

.hero-cta {
    display: flex;
    gap: 1rem;
    justify-content: center;
    flex-wrap: wrap;
    opacity: 0;
    animation: fadeUp 0.9s 0.9s ease forwards;
}

/* Scroll cue */
.hero-scroll {
    position: absolute;
    bottom: 2.5rem;
    left: 50%;
    transform: translateX(-50%);
    z-index: 2;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 0.6rem;
    color: rgba(255,255,255,0.4);
    font-family: var(--font-heading);
    font-size: 0.65rem;
    letter-spacing: 0.2em;
    text-transform: uppercase;
    opacity: 0;
    animation: fadeIn 1s 1.4s ease forwards;
}
.scroll-chevron {
    width: 22px; height: 22px;
    border-right: 2px solid rgba(255,255,255,0.35);
    border-bottom: 2px solid rgba(255,255,255,0.35);
    transform: rotate(45deg);
    animation: chevronBounce 2.2s ease-in-out infinite;
}

/* ── About ──────────────────────────────────────────────── */
.about { padding: 7rem 0; }

.about-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 5rem;
    align-items: center;
}

/* Video placeholder */
.about-video-wrap {
    position: relative;
    border-radius: var(--r-lg);
    overflow: hidden;
    aspect-ratio: 16 / 9;
    background: var(--dark);
    box-shadow: 0 30px 80px rgba(17, 18, 41, 0.2);
}
.video-placeholder {
    width: 100%; height: 100%;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 1.2rem;
    background: linear-gradient(145deg, #131430 0%, #1c1e4a 60%, #0f102a 100%);
    position: relative;
    overflow: hidden;
}
.video-placeholder::before {
    content: '';
    position: absolute; inset: 0;
    background:
        radial-gradient(ellipse 60% 50% at 75% 35%, rgba(41,225,236,0.18), transparent),
        radial-gradient(ellipse 50% 60% at 25% 65%, rgba(96,73,205,0.25), transparent);
}
.play-btn {
    position: relative;
    width: 72px; height: 72px;
    background: rgba(255,255,255,0.12);
    border: 2px solid rgba(255,255,255,0.35);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    transition: all var(--ease);
    backdrop-filter: blur(8px);
}
.play-btn:hover {
    background: var(--purple);
    border-color: var(--purple);
    transform: scale(1.1);
    box-shadow: 0 0 40px rgba(96,73,205,0.5);
}
.play-btn svg { width: 26px; height: 26px; fill: white; margin-left: 4px; }
.video-caption {
    font-family: var(--font-heading);
    font-size: 0.8rem;
    font-weight: 500;
    letter-spacing: 0.08em;
    color: rgba(255,255,255,0.5);
    position: relative;
    text-transform: uppercase;
}

/* About text */
.about-content .eyebrow { margin-bottom: 0.85rem; }
.about-content h2 { margin-bottom: 1.3rem; }
.about-content > .lead { margin-bottom: 2rem; }

.feature-list { display: flex; flex-direction: column; gap: 1.1rem; }
.feature-item {
    display: flex;
    align-items: flex-start;
    gap: 0.9rem;
}
.feature-bullet {
    flex-shrink: 0;
    width: 26px; height: 26px;
    border-radius: 50%;
    background: var(--aqua-10);
    border: 1.5px solid rgba(41, 225, 236, 0.3);
    display: flex;
    align-items: center;
    justify-content: center;
    margin-top: 1px;
}
.feature-bullet svg {
    width: 13px; height: 13px;
    stroke: var(--aqua);
    fill: none;
    stroke-width: 2.5;
    stroke-linecap: round;
    stroke-linejoin: round;
}
.feature-item p {
    font-size: 0.96rem;
    line-height: 1.55;
    color: var(--dark);
    margin: 0;
}
.feature-item p strong { font-weight: 600; color: var(--dark); }

/* ── Learning Cycle ─────────────────────────────────────── */
.learning-cycle { padding: 7rem 0; background: var(--light-bg); }

.cycle-flow {
    display: flex;
    align-items: flex-start;
    gap: 0;
}

.cycle-step {
    flex: 1;
    text-align: center;
    padding: 2.5rem 1.5rem;
    background: var(--white);
    border-radius: var(--r-md);
    margin: 0 0.75rem;
    box-shadow: 0 4px 24px rgba(17,18,41,0.06);
    transition: transform var(--ease), box-shadow var(--ease);
    position: relative;
}
.cycle-step:first-child { margin-left: 0; }
.cycle-step:last-child  { margin-right: 0; }
.cycle-step:hover {
    transform: translateY(-6px);
    box-shadow: 0 16px 48px rgba(17,18,41,0.10);
}

.cycle-connector {
    display: flex;
    align-items: center;
    justify-content: center;
    padding-top: 4rem;
    flex-shrink: 0;
    color: var(--purple-20);
}
.cycle-connector svg {
    width: 22px; height: 22px;
    stroke: var(--purple);
    fill: none;
    stroke-width: 2;
    stroke-linecap: round;
    stroke-linejoin: round;
    opacity: 0.4;
}

.cycle-num {
    width: 56px; height: 56px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 1.4rem;
    font-family: var(--font-heading);
    font-size: 1.1rem;
    font-weight: 800;
    color: var(--white);
}
.cycle-num-1 { background: linear-gradient(135deg, var(--purple), #6e58e0); box-shadow: 0 8px 24px rgba(96,73,205,0.35); }
.cycle-num-2 { background: linear-gradient(135deg, #5240bc, #7060e0); box-shadow: 0 8px 24px rgba(96,73,205,0.28); }
.cycle-num-3 { background: linear-gradient(135deg, #4838a8, #2ab5c5); box-shadow: 0 8px 24px rgba(41,181,197,0.28); }
.cycle-num-4 { background: linear-gradient(135deg, #25c5d5, var(--aqua)); box-shadow: 0 8px 24px rgba(41,225,236,0.32); }

.cycle-icon {
    font-size: 1.6rem;
    margin-bottom: 0.5rem;
    display: none; /* using number instead */
}

.cycle-step h3 {
    font-size: 1rem;
    font-weight: 700;
    margin-bottom: 0.7rem;
    color: var(--dark);
}
.cycle-step p {
    font-size: 0.875rem;
    color: var(--muted);
    line-height: 1.6;
}

/* ── Clients ─────────────────────────────────────────────── */
.clients { padding: 5.5rem 0; background: var(--white); }

.clients-label {
    text-align: center;
    font-family: var(--font-heading);
    font-size: 0.72rem;
    font-weight: 700;
    letter-spacing: 0.2em;
    text-transform: uppercase;
    color: var(--muted);
    margin-bottom: 3rem;
}

.clients-logos {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    justify-content: center;
    gap: 3rem 4rem;
}

.client-logo {
    height: 44px;
    display: flex;
    align-items: center;
    opacity: 0.35;
    filter: grayscale(100%);
    transition: opacity var(--ease), filter var(--ease);
}
.client-logo:hover {
    opacity: 0.9;
    filter: grayscale(0%);
}
.client-logo img, .client-logo svg {
    max-height: 44px;
    max-width: 130px;
    width: auto;
    object-fit: contain;
}

/* ── CTA section ────────────────────────────────────────── */
.cta-section {
    background: var(--dark);
    padding: 7rem 0;
    position: relative;
    overflow: hidden;
}
.cta-section::before {
    content: '';
    position: absolute;
    top: -40%; right: -15%;
    width: 65%; height: 180%;
    background: radial-gradient(ellipse, rgba(96,73,205,0.28) 0%, transparent 70%);
    pointer-events: none;
}
.cta-section::after {
    content: '';
    position: absolute;
    bottom: -40%; left: -10%;
    width: 50%; height: 160%;
    background: radial-gradient(ellipse, rgba(41,225,236,0.13) 0%, transparent 70%);
    pointer-events: none;
}
.cta-inner {
    position: relative;
    z-index: 1;
    text-align: center;
    max-width: 700px;
    margin: 0 auto;
}
.cta-inner .eyebrow { color: var(--aqua); margin-bottom: 1.4rem; }
.cta-inner h2 {
    color: var(--white);
    font-size: clamp(2rem, 4.5vw, 3.2rem);
    margin-bottom: 1.3rem;
}
.cta-inner p {
    color: rgba(255,255,255,0.68);
    font-size: 1.1rem;
    line-height: 1.72;
    margin-bottom: 2.8rem;
}
.cta-badges {
    display: flex;
    gap: 0.75rem;
    justify-content: center;
    flex-wrap: wrap;
    margin-top: 2rem;
}
.cta-badge {
    font-family: var(--font-heading);
    font-size: 0.75rem;
    font-weight: 600;
    letter-spacing: 0.05em;
    color: rgba(255,255,255,0.45);
    border: 1px solid rgba(255,255,255,0.12);
    border-radius: 50px;
    padding: 0.35rem 0.9rem;
}

/* ── Footer ─────────────────────────────────────────────── */
footer {
    background: var(--page-bg);
    padding: 5rem 0 2.5rem;
    color: rgba(255,255,255,0.65);
}

.footer-grid {
    display: grid;
    grid-template-columns: 2fr 1fr 1fr 1.2fr;
    gap: 3rem;
    margin-bottom: 4rem;
}

.footer-brand .footer-logo { height: 30px; width: auto; margin-bottom: 1.4rem; opacity: 0.85; }
.footer-brand p {
    font-size: 0.875rem;
    line-height: 1.7;
    color: rgba(255,255,255,0.45);
    max-width: 270px;
    margin-bottom: 1.8rem;
}

.social-links { display: flex; gap: 0.75rem; }
.social-link {
    width: 38px; height: 38px;
    border: 1px solid rgba(255,255,255,0.15);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: rgba(255,255,255,0.5);
    transition: all var(--ease);
    text-decoration: none;
}
.social-link:hover {
    border-color: var(--aqua);
    color: var(--aqua);
    background: rgba(41,225,236,0.08);
}
.social-link svg { width: 16px; height: 16px; fill: currentColor; }

.footer-col h4 {
    font-family: var(--font-heading);
    font-size: 0.72rem;
    font-weight: 700;
    letter-spacing: 0.18em;
    text-transform: uppercase;
    color: rgba(255,255,255,0.85);
    margin-bottom: 1.3rem;
}
.footer-col ul { display: flex; flex-direction: column; gap: 0.7rem; }
.footer-col ul a {
    font-size: 0.875rem;
    color: rgba(255,255,255,0.45);
    transition: color var(--ease);
    text-decoration: none;
}
.footer-col ul a:hover { color: var(--aqua); }

.footer-bottom {
    border-top: 1px solid rgba(255,255,255,0.07);
    padding-top: 2rem;
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    gap: 0.75rem;
}
.footer-bottom p {
    font-size: 0.82rem;
    color: rgba(255,255,255,0.3);
    margin: 0;
}
.footer-bottom a {
    font-size: 0.82rem;
    color: rgba(255,255,255,0.3);
    text-decoration: none;
    transition: color var(--ease);
}
.footer-bottom a:hover { color: var(--aqua); }
.footer-legal { display: flex; gap: 1.5rem; flex-wrap: wrap; }

/* ── Animations ─────────────────────────────────────────── */
@keyframes fadeUp {
    from { opacity: 0; transform: translateY(28px); }
    to   { opacity: 1; transform: translateY(0); }
}
@keyframes fadeIn {
    from { opacity: 0; }
    to   { opacity: 1; }
}
@keyframes chevronBounce {
    0%, 100% { transform: rotate(45deg) translate(0, 0); opacity: 0.4; }
    50%       { transform: rotate(45deg) translate(3px, 3px); opacity: 0.85; }
}

/* Scroll-triggered fade in */
.reveal {
    opacity: 0;
    transform: translateY(36px);
    transition: opacity 0.7s ease, transform 0.7s ease;
}
.reveal.is-visible {
    opacity: 1;
    transform: translateY(0);
}
.reveal-delay-1 { transition-delay: 0.1s; }
.reveal-delay-2 { transition-delay: 0.2s; }
.reveal-delay-3 { transition-delay: 0.3s; }
.reveal-delay-4 { transition-delay: 0.4s; }

/* ── Inner-page hero (dark, matching home) ──────────────── */
.page-hero {
    padding-top: calc(var(--header-h) + 5rem);
    padding-bottom: 5rem;
    background: var(--dark);
    position: relative;
    overflow: hidden;
}
.page-hero::before {
    content: '';
    position: absolute;
    top: -60%; right: -15%;
    width: 55%; height: 220%;
    background: radial-gradient(ellipse, rgba(96,73,205,0.25) 0%, transparent 70%);
    pointer-events: none;
}
.page-hero::after {
    content: '';
    position: absolute;
    bottom: -40%; left: -8%;
    width: 45%; height: 160%;
    background: radial-gradient(ellipse, rgba(41,225,236,0.12) 0%, transparent 70%);
    pointer-events: none;
}
.page-hero .container { position: relative; z-index: 1; }
.page-hero .eyebrow   { color: var(--aqua); margin-bottom: 1rem; }
.page-hero h1         { color: var(--white); margin-bottom: 1.2rem; }
.page-hero .lead      { color: rgba(255,255,255,0.72); max-width: 640px; }

.coming-soon {
    padding: 7rem 0;
    text-align: center;
}
.coming-soon-badge {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    background: var(--purple-10);
    border: 1px solid var(--purple-20);
    border-radius: 50px;
    padding: 0.5rem 1.2rem;
    font-family: var(--font-heading);
    font-size: 0.8rem;
    font-weight: 600;
    color: var(--purple);
    margin-bottom: 2rem;
}
.coming-soon h2 { margin-bottom: 1rem; }
.coming-soon p  { color: var(--muted); max-width: 500px; margin: 0 auto 2.5rem; }

/* ── Responsive ─────────────────────────────────────────── */
@media (max-width: 1100px) {
    .about-grid { gap: 3rem; }
    .footer-grid { grid-template-columns: 1fr 1fr; gap: 2.5rem; }
    .footer-brand { grid-column: 1 / -1; }
}

@media (max-width: 900px) {
    .cycle-flow { flex-direction: column; align-items: stretch; gap: 1rem; }
    .cycle-connector { display: none; }
    .cycle-step { margin: 0; }
}

@media (max-width: 768px) {
    :root { --header-h: 64px; }

    .header-nav { display: none; }
    .hamburger  { display: flex; }

    .section { padding: 4.5rem 0; }
    .about-grid {
        grid-template-columns: 1fr;
        gap: 2.5rem;
    }

    .clients-logos { gap: 2rem 2.5rem; }

    .footer-grid { grid-template-columns: 1fr 1fr; }
    .footer-bottom { flex-direction: column; text-align: center; }
    .footer-legal  { justify-content: center; }
}

@media (max-width: 520px) {
    :root { --container: 100%; }
    .container { padding: 0 1.25rem; }
    .hero-title { font-size: 2.8rem; letter-spacing: -0.03em; }
    .hero-cta   { flex-direction: column; align-items: center; }
    .hero-cta .btn { width: 100%; justify-content: center; }
    .footer-grid { grid-template-columns: 1fr; }
}
