:root {
    --background-color: #ffffff;
    --primary-text-color: #000000;
    --secondary-text-color: #555555;
    --accent-color: #1081fa;
    --button-background-color: #066ede;
    --button-text-color: #ffffff;
    --nav-color: #e0e0e07d;
    --accent-dim: rgba(16, 129, 250, 0.5);
    --cursor-hover-color: rgba(208, 208, 208, 0.5);
    --cursor-dot-color: #000000;
    --navlinks-color: #0f2e65;
    --navlinks-hover-color: #1081fa;

}

/* ============================================
   CURSOR
   ============================================ */

html,
body,
body *,
body *::before,
body *::after {
    cursor: none !important;
}

.cursor {
    position: fixed;
    top: 0;
    left: 0;
    width: 20px;
    height: 20px;
    border: 1px solid rgba(121, 121, 121, 0.595);
    border-radius: 50%;
    pointer-events: none;
    z-index: 9999;
    transition: border-color 0.3s ease, background-color 0.3s ease, opacity 0.25s ease;
    will-change: transform;
}


.cursor.is-hidden {
    opacity: 0;
}

.cursor-dot {
    position: fixed;
    top: 0;
    left: 0;
    width: 3px;
    height: 3px;
    background: var(--cursor-dot-color);
    border-radius: 50%;
    pointer-events: none;
    z-index: 9999;
    will-change: transform;
}

/* ============================================
   General-Pre Styles
   ============================================ */

h1 {
    font-size: 2.5rem;
    color: var(--primary-text-color);
    margin-bottom: 1rem;
}

h2 {
    font-size: 2rem;
    color: var(--primary-text-color);
    margin-bottom: 0.75rem;
}

h3 {
    font-size: 1.75rem;
    color: var(--primary-text-color);
    margin-bottom: 0.5rem;
}

h4 {
    font-size: 1.5rem;
    color: var(--primary-text-color);
    margin-bottom: 0.25rem;
}

p {
    font-size: 1rem;
    color: var(--primary-text-color);
    margin-bottom: 1rem;
}

a {
    color: var(--accent-color);
    text-decoration: none;
}

/* ============================================
   Styling for the rest of the website
   ============================================ */

body {
    background-color: var(--background-color);
    color: var(--primary-text-color);
    font-family: 'Outfit', sans-serif;
    margin: 0;
    padding: 0;
}

nav {
      background: #e1e1e115;
      backdrop-filter: blur(10px);
      color: #fff;
      padding: 1rem 1.5rem;
      align-items: center;
      justify-content: space-between;
      position: fixed;
      top: 0;
      left: 0;
      display: flex;
      width: 100%;
      box-sizing: border-box;
      z-index: 1001;
}

.nav-links {
      display: flex;
      gap: 1.5rem;
      margin-left: auto;
      margin-right: 0;
      list-style-type: none;
}
.nav-links a {
    color: var(--navlinks-color);
    font-family: 'Outfit', sans-serif;
    font-size: 0.82rem;
    font-weight: 500;
    letter-spacing: 0.08em;
    line-height: 1;
    transition: color 0.25s ease, opacity 0.25s ease;
    text-transform: uppercase;
}

.nav-links a:hover,
.nav-links a:focus-visible {
    color: var(--navlinks-hover-color);
    opacity: 0.72;
}

nav img.logo {
    height: 40px;
    transition: transform 0.3s ease;
}

.nav-burger {
    display: none;
    flex-direction: column;
    gap: 5px;
    cursor: pointer;
}

/* ============================================
   Hero
   ============================================ */

.bg-orbs {
    position: fixed;
    inset: 0;
    overflow: hidden;
    pointer-events: none;
    z-index: -1;
}

.orb {
    position: absolute;
    border-radius: 50%;
    filter: blur(60px);
    opacity: 0.45;
}

.orb-1 {
    top: 6rem;
    right: -6rem;
    width: 22rem;
    height: 22rem;
    background: rgba(16, 129, 250, 0.14);
}

.orb-2 {
    top: 20rem;
    left: -7rem;
    width: 18rem;
    height: 18rem;
    background: rgba(15, 46, 101, 0.08);
}

.orb-3 {
    bottom: 4rem;
    right: 18%;
    width: 14rem;
    height: 14rem;
    background: rgba(16, 129, 250, 0.08);
}

.hero {
    display: grid;
    gap: 3rem;
    padding: 7.5rem 2rem 4rem;
    background:
        radial-gradient(circle at top right, rgba(16, 129, 250, 0.08), transparent 32%),
        linear-gradient(180deg, rgba(255, 255, 255, 0.92), #ffffff 72%);
    grid-auto-flow: column;
    justify-items: center;
    justify-content: space-evenly;
}

.hero-content {
    max-width: 600px;    
}

.hero-content h1 {
    font-family: 'Playfair Display', serif;
    font-size: clamp(3.6rem, 7vw, 6.2rem);
    font-weight: 500;
    line-height: 0.95;
    letter-spacing: -0.05em;
    margin-bottom: 1.25rem;
}

.hero-content p {
    max-width: 600px;
    font-size: 1.05rem;
    color: var(--secondary-text-color);
    line-height: 1.8;
    margin-bottom: 0;
}

.hero-actions {
    display: flex;
    flex-wrap: wrap;
    gap: 0.9rem;
    margin-top: 2rem;
}

.btn-primary {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-height: 3.25rem;
    padding: 0 1.5rem;
    background-color: var(--button-background-color);
    color: var(--button-text-color);
    border: 1px solid var(--button-background-color);
    border-radius: 999px;
    font-size: 0.8rem;
    font-weight: 600;
    letter-spacing: 0.08em;
    text-transform: uppercase;
    transition: transform 160ms cubic-bezier(0.23, 1, 0.32, 1),
                background-color 200ms cubic-bezier(0.23, 1, 0.32, 1),
                border-color 200ms cubic-bezier(0.23, 1, 0.32, 1),
                box-shadow 200ms cubic-bezier(0.23, 1, 0.32, 1);
}

.btn-secondary {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-height: 3.25rem;
    padding: 0 1.5rem;
    background-color: rgba(255, 255, 255, 0.48);
    color: var(--button-background-color);
    border: 1px solid rgba(6, 110, 222, 0.18);
    border-radius: 999px;
    font-size: 0.8rem;
    font-weight: 600;
    letter-spacing: 0.08em;
    text-transform: uppercase;
    backdrop-filter: blur(10px);
    transition: transform 160ms cubic-bezier(0.23, 1, 0.32, 1),
                background-color 200ms cubic-bezier(0.23, 1, 0.32, 1),
                color 200ms cubic-bezier(0.23, 1, 0.32, 1),
                border-color 200ms cubic-bezier(0.23, 1, 0.32, 1),
                box-shadow 200ms cubic-bezier(0.23, 1, 0.32, 1);
}

.btn-primary:active,
.btn-secondary:active {
    transform: scale(0.97);
}

@media (hover: hover) and (pointer: fine) {
    .btn-primary:hover,
    .btn-primary:focus-visible,
    .btn-secondary:hover,
    .btn-secondary:focus-visible {
        transform: translateY(-2px);
        box-shadow: 0 8px 20px rgba(6, 110, 222, 0.25);
    }
}


.hero-adition {
    position: relative;
    padding: 9px;
    overflow: hidden;
    background:
        linear-gradient(160deg, rgba(255, 255, 255, 0.88), rgba(246, 250, 255, 0.82)),
        rgba(250, 250, 250, 0.615);
    border: 1px solid rgba(198, 213, 235, 0.7);
    border-radius: 12px;
    max-width: 600px;
    box-shadow:
        0 24px 60px rgba(15, 46, 101, 0.08),
        0 1px 0 rgba(255, 255, 255, 0.7) inset,
        0 -18px 40px rgba(16, 129, 250, 0.06) inset;
    backdrop-filter: blur(20px);
}

.hero-adition-kicker {
    font-size: 0.75rem;
    font-weight: 500;
    color: #0f4fa8;
    text-transform: uppercase;
    letter-spacing: 0.1em;
    margin-bottom: 0.5rem;
    padding: 5px 0.5rem;
    margin-left: 1rem;
    margin-top: 2rem;
    background: linear-gradient(180deg, rgba(255, 255, 255, 0.86), rgba(239, 246, 255, 0.92));
    border: 2px solid rgba(16, 129, 250, 0.28);
    border-radius: 15px;
    box-shadow:
        0 10px 24px rgba(16, 129, 250, 0.1),
        0 1px 0 rgba(255, 255, 255, 0.8) inset;
}

.hero-adition h2 {
    font-family: 'Playfair Display', serif;
    font-size: 1.75rem;
    font-weight: 400;
    color: var(--primary-text-color);
    margin-bottom: 0.5rem;
    letter-spacing: -0.03em;
    text-wrap: balance;
}

.hero-adition p {
    font-size: 0.95rem;
    color: #5a6473;
    line-height: 1.7;
    text-align: center;
}

.hero-adition h3 {
    font-family: 'DM Mono', monospace;
    font-size: 1.25rem;
    font-weight: 600;
    color: #12284c;
    margin-bottom: 0.25rem;
    letter-spacing: -0.02em;
}

.adition-container {
    gap: 1.25rem;
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    grid-template-rows: auto;

}

.hero-adition::before {
    content: "";
    position: absolute;
    inset: 0;
    background:
        radial-gradient(circle at top left, rgba(16, 129, 250, 0.12), transparent 32%),
        radial-gradient(circle at bottom right, rgba(15, 46, 101, 0.09), transparent 28%);
    pointer-events: none;
}

.hero-adition-content {
    position: relative;
    z-index: 1;
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    text-align: start;
}

.adition-item {
    position: relative;
    background:
        linear-gradient(180deg, rgba(255, 255, 255, 0.5), rgba(255, 255, 255, 0.18));
    border-radius: 10px;
    box-shadow:
        0 1px 0 rgba(255, 255, 255, 0.85) inset,
        0 14px 30px rgba(15, 46, 101, 0.05);
    padding-top: 0.15rem;
        padding-bottom: 0.15rem;
}

.adition-item h3 {
    font-family: 'DM Mono', monospace;
    font-size: 1.25rem;
    font-weight: 600;
    color: #12284c;
    margin-bottom: 0.25rem;
    letter-spacing: -0.02em;
    margin-left: 1.5rem;
}

.adition-item p {
    font-size: 0.95rem;
    color: #5a6473;
    line-height: 1.7;
    margin-left: 1.5rem;
    text-align: start;
}

.adition-item::before {
    content: "";
    position: absolute;
    top: 0.9rem;
    left: 0;
    bottom: 0.9rem;
    width: 3px;
    border-radius: 999px;
    background: linear-gradient(180deg, rgba(16, 129, 250, 0.92), rgba(15, 46, 101, 0.55));
    opacity: 0.85;
}


.service-selector {
    margin: 0;
}

.services-container {
    display: grid;
    gap: 0;
    grid-template-columns: repeat(2, 1fr);
    margin: 0;
    width: 100%;
}

.service {
    position: relative;
    min-height: 320px;
    overflow: hidden;
    border-radius: 0;
    margin: 0;
    background-position: center;
    background-repeat: no-repeat;
    background-size: cover;
    isolation: isolate;
}

.service::before {
    content: "";
    position: absolute;
    inset: 0;
    background: linear-gradient(180deg, rgba(8, 15, 28, 0.18) 0%, rgba(8, 15, 28, 0.8) 100%);
    transition: background 0.35s ease, opacity 0.35s ease;
    z-index: -1;
}

.service-copy {
    position: absolute;
    inset: auto 0 0 0;
    padding: 1.75rem;
    background: linear-gradient(180deg, transparent 0%, rgba(4, 10, 20, 0.92) 55%, rgba(4, 10, 20, 0.96) 100%);
    transform: translateY(calc(100% - 7.5rem));
    transition: transform 350ms cubic-bezier(0.23, 1, 0.32, 1);
    z-index: 1;
}

.service:hover .service-copy,
.service:focus-within .service-copy {
    transform: translateY(0);
}

.service:hover::before,
.service:focus-within::before {
    background: linear-gradient(180deg, rgba(8, 15, 28, 0.08) 0%, rgba(8, 15, 28, 0.62) 100%);
}

.service h3,
.service p {
    color: #ffffff;
}

.service h3 {
    font-family: 'DM Mono', monospace;
    font-size: clamp(1.5rem, 2.5vw, 2.1rem);
    margin-bottom: 0.75rem;
}

.service p {
    margin: 0;
    max-width: 34ch;
    line-height: 1.7;
    color: rgba(255, 255, 255, 0.86);
}

.service {
    border-top: 2px solid rgba(16, 129, 250, 0.6);
    transition: transform 300ms cubic-bezier(0.23, 1, 0.32, 1),
                border-color 300ms cubic-bezier(0.23, 1, 0.32, 1);
}

@media (hover: hover) and (pointer: fine) {
    .service:hover {
        transform: translateY(-3px);
    }
}

.service::after {
    content: "";
    position: absolute;
    inset: 0;
    background-image: radial-gradient(circle, rgba(16, 129, 250, 0.15) 1px, transparent 1px);
    background-size: 24px 24px;
    z-index: 0;
    opacity: 0.6;
    pointer-events: none;
}

.service-web {
    background: linear-gradient(135deg, #0a1628 0%, #0d2647 100%);
}

.service-hosting {
    background: linear-gradient(135deg, #081422 0%, #102040 100%);
}

.service-cloud {
    background: linear-gradient(135deg, #0b1c38 0%, #0e2a50 100%);
}

.service-marketing {
    background: linear-gradient(135deg, #091628 0%, #0f2545 100%);
}

@media (max-width: 820px) {
    .services-container {
        grid-template-columns: 1fr;
    }

    .service {
        min-height: 280px;
    }

    .service-copy {
        transform: translateY(0);
    }
}

.extras-content {
    max-width: 1200px;
    margin: 0 auto;
    padding: 4rem 2rem 5rem;
}

.extras-section {
    border-top: 1px solid rgba(15, 46, 101, 0.08);
    padding-top: 3rem;
}

.extras-head {
    margin-bottom: 1.75rem;
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    gap: 0.75rem;
}

.extras-head .eyebrow {
    align-self: flex-start;
    margin-bottom: 0;
}

.extras-lead {
    font-family: 'Playfair Display', serif;
    font-size: clamp(1.4rem, 2.4vw, 1.9rem);
    font-weight: 400;
    color: #12284c;
    line-height: 1.25;
    letter-spacing: -0.02em;
    margin: 0;
    max-width: 38ch;
}

.extras {
    display: flex;
    flex-wrap: wrap;
    gap: 0.6rem;
    list-style: none;
    padding: 0;
    margin: 0;
}

.extra {
    display: inline-flex;
    align-items: center;
    gap: 0.55rem;
    padding: 0.6rem 1.1rem;
    background: rgba(255, 255, 255, 0.65);
    border: 1px solid #1081fa;
    border-radius: 999px;
    font-family: 'DM Mono', monospace;
    font-size: 0.82rem;
    font-weight: 500;
    color: #12284c;
    backdrop-filter: blur(12px);
    -webkit-backdrop-filter: blur(12px);
    transition: background 200ms cubic-bezier(0.23, 1, 0.32, 1),
                transform 160ms cubic-bezier(0.23, 1, 0.32, 1),
                box-shadow 200ms cubic-bezier(0.23, 1, 0.32, 1);
}

.extra:active {
    transform: scale(0.97);
}

@media (hover: hover) and (pointer: fine) {
    .extra:hover {
        background: rgba(16, 129, 250, 0.08);
        transform: translateY(-1px);
        box-shadow: 0 8px 20px rgba(16, 129, 250, 0.12);
    }
}

.extra-icon {
    color: var(--accent-color);
    font-size: 0.8rem;
}

/* ============================================
   REVEAL ANIMATION
   ============================================ */
.reveal {
    opacity: 0;
    transform: translateY(20px);
    transition: opacity 0.6s cubic-bezier(0.23, 1, 0.32, 1),
                transform 0.6s cubic-bezier(0.23, 1, 0.32, 1);
}
.reveal.is-in {
    opacity: 1;
    transform: translateY(0);
}
.reveal-left {
    opacity: 0;
    transform: translateX(-24px);
    transition: opacity 0.65s cubic-bezier(0.23, 1, 0.32, 1),
                transform 0.65s cubic-bezier(0.23, 1, 0.32, 1);
}
.reveal-left.is-in {
    opacity: 1;
    transform: translateX(0);
}
.reveal-right {
    opacity: 0;
    transform: translateX(24px);
    transition: opacity 0.65s cubic-bezier(0.23, 1, 0.32, 1),
                transform 0.65s cubic-bezier(0.23, 1, 0.32, 1);
}
.reveal-right.is-in {
    opacity: 1;
    transform: translateX(0);
}
@media (prefers-reduced-motion: reduce) {
    .reveal, .reveal-left, .reveal-right {
        transform: none;
        transition: opacity 0.4s ease;
    }
}

/* Stagger — process steps */
.process-step:nth-child(1) { transition-delay: 0ms; }
.process-step:nth-child(2) { transition-delay: 50ms; }
.process-step:nth-child(3) { transition-delay: 100ms; }
.process-step:nth-child(4) { transition-delay: 150ms; }

/* Stagger — why cards */
.why-card:nth-child(1) { transition-delay: 0ms; }
.why-card:nth-child(2) { transition-delay: 50ms; }
.why-card:nth-child(3) { transition-delay: 100ms; }
.why-card:nth-child(4) { transition-delay: 150ms; }

/* ============================================
   SECTION HEAD (shared)
   ============================================ */
.section-head {
    max-width: 760px;
    margin: 0 auto 3rem;
    text-align: center;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 1rem;
}

.section-head .eyebrow {
    margin-bottom: 0;
}

.section-title {
    font-family: 'Playfair Display', serif;
    font-size: clamp(2.2rem, 4.5vw, 3.6rem);
    font-weight: 500;
    line-height: 1.05;
    letter-spacing: -0.035em;
    color: #0a1628;
    margin: 0;
    text-wrap: balance;
}

.section-sub {
    font-size: 1.05rem;
    line-height: 1.7;
    color: #5a6473;
    margin: 0;
    max-width: 56ch;
    text-wrap: pretty;
}

/* ============================================
   PROCESS — Jak to funguje
   ============================================ */
.process {
    background: #ffffff;
    padding: 6rem 2rem;
    position: relative;
}

.process-steps {
    list-style: none;
    padding: 0;
    margin: 0 auto;
    max-width: 1200px;
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 1.5rem;
    position: relative;
}

.process-steps::before {
    content: "";
    position: absolute;
    top: 3.6rem;
    left: 8%;
    right: 8%;
    height: 1px;
    background-image: linear-gradient(to right, rgba(16, 129, 250, 0.35) 50%, transparent 50%);
    background-size: 12px 1px;
    background-repeat: repeat-x;
    z-index: 0;
}

.process-step {
    position: relative;
    background: #ffffff;
    border: 1px solid rgba(15, 46, 101, 0.08);
    border-radius: 16px;
    padding: 1.75rem 1.5rem 1.5rem;
    box-shadow: 0 12px 32px rgba(15, 46, 101, 0.06);
    overflow: hidden;
    z-index: 1;
    transition: transform 300ms cubic-bezier(0.23, 1, 0.32, 1),
                box-shadow 300ms cubic-bezier(0.23, 1, 0.32, 1),
                border-color 300ms cubic-bezier(0.23, 1, 0.32, 1);
}

@media (hover: hover) and (pointer: fine) {
    .process-step:hover {
        transform: translateY(-4px);
        box-shadow: 0 24px 50px rgba(15, 46, 101, 0.1);
        border-color: rgba(16, 129, 250, 0.25);
    }
}

.process-num {
    position: absolute;
    top: -1.5rem;
    right: -0.75rem;
    font-family: 'DM Mono', monospace;
    font-size: 8rem;
    font-weight: 700;
    line-height: 1;
    color: #1081fa;
    opacity: 0.09;
    letter-spacing: -0.05em;
    pointer-events: none;
}

.process-body h3 {
    font-family: 'DM Mono', monospace;
    font-size: 1.2rem;
    font-weight: 600;
    color: #12284c;
    margin: 0 0 0.6rem;
    letter-spacing: -0.01em;
}

.process-body p {
    font-size: 0.93rem;
    line-height: 1.65;
    color: #5a6473;
    margin: 0;
}

@media (max-width: 900px) {
    .process-steps {
        grid-template-columns: repeat(2, 1fr);
    }
    .process-steps::before { display: none; }
}
@media (max-width: 520px) {
    .process-steps {
        grid-template-columns: 1fr;
    }
}

/* ============================================
   WHY AETHERON — Proč Aetheron
   ============================================ */
.why {
    background: linear-gradient(160deg, #0a1628 0%, #0d1f3c 100%);
    padding: 6rem 2rem;
    position: relative;
    overflow: hidden;
}
.why::before {
    content: "";
    position: absolute;
    inset: 0;
    background:
        radial-gradient(circle at 15% 40%, rgba(16, 129, 250, 0.18), transparent 45%),
        radial-gradient(circle at 85% 60%, rgba(16, 129, 250, 0.1), transparent 40%);
    pointer-events: none;
}
.why .section-title { color: #ffffff; }
.why .section-sub { color: rgba(255, 255, 255, 0.65); }
.why .eyebrow {
    background: transparent;
    border: 1px solid rgba(16, 129, 250, 0.5);
    color: rgba(16, 129, 250, 0.9);
    box-shadow: none;
}

.why-grid {
    max-width: 1100px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 1.5rem;
}

.why-card {
    position: relative;
    background: rgba(255, 255, 255, 0.06);
    border: 1px solid rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(12px);
    border-radius: 16px;
    padding: 2rem 2rem 2rem 2.5rem;
    overflow: hidden;
    transition: transform 300ms cubic-bezier(0.23, 1, 0.32, 1),
                box-shadow 300ms cubic-bezier(0.23, 1, 0.32, 1),
                border-color 300ms cubic-bezier(0.23, 1, 0.32, 1);
}

@media (hover: hover) and (pointer: fine) {
    .why-card:hover {
        transform: translateY(-3px);
        box-shadow: 0 24px 50px rgba(0, 0, 0, 0.3);
        border-color: rgba(16, 129, 250, 0.3);
    }
}

.why-card::before { display: none; }

.why-icon {
    width: 44px;
    height: 44px;
    border-radius: 12px;
    background: rgba(16, 129, 250, 0.2);
    color: var(--accent-color);
    display: inline-flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 1.15rem;
}
.why-icon svg { width: 22px; height: 22px; }

.why-card h3 {
    font-family: 'DM Mono', monospace;
    font-size: 1.25rem;
    font-weight: 500;
    color: #ffffff;
    margin: 0 0 0.55rem;
    letter-spacing: -0.01em;
}

.why-card p {
    font-size: 0.96rem;
    line-height: 1.7;
    color: rgba(255, 255, 255, 0.7);
    margin: 0;
}

@media (max-width: 760px) {
    .why-grid { grid-template-columns: 1fr; }
}

/* ============================================
   REFERENCES — Reference
   ============================================ */
.projects {
    background: #ffffff;
    padding: 6rem 2rem;
}

.projects-grid {
    max-width: 1200px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 1.25rem;
}

.project-card {
    position: relative;
    min-height: 340px;
    border-radius: 16px;
    overflow: hidden;
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    isolation: isolate;
    box-shadow: 0 16px 40px rgba(15, 46, 101, 0.1);
    transition: transform 300ms cubic-bezier(0.23, 1, 0.32, 1),
                box-shadow 300ms cubic-bezier(0.23, 1, 0.32, 1);
    cursor: none;
}

@media (hover: hover) and (pointer: fine) {
    .project-card:hover {
        transform: translateY(-4px);
        box-shadow: 0 28px 60px rgba(15, 46, 101, 0.18);
    }
}

.project-eyebrow {
    position: absolute;
    top: 1.25rem;
    left: 1.25rem;
    font-family: 'DM Mono', monospace;
    font-size: 0.7rem;
    font-weight: 600;
    color: #ffffff;
    text-transform: uppercase;
    letter-spacing: 0.12em;
    padding: 0.4rem 0.7rem;
    background: rgba(16, 129, 250, 0.92);
    border-radius: 999px;
    z-index: 2;
}

.project-badge {
    position: absolute;
    top: 1.25rem;
    right: 1.25rem;
    font-family: 'DM Mono', monospace;
    font-size: 0.66rem;
    font-weight: 500;
    color: rgba(255, 255, 255, 0.92);
    text-transform: uppercase;
    letter-spacing: 0.1em;
    padding: 0.35rem 0.65rem;
    background: rgba(255, 255, 255, 0.12);
    border: 1px solid rgba(255, 255, 255, 0.25);
    backdrop-filter: blur(8px);
    -webkit-backdrop-filter: blur(8px);
    border-radius: 999px;
    z-index: 2;
}

.project-body {
    position: absolute;
    left: 0;
    right: 0;
    bottom: 0;
    padding: 1.5rem 1.5rem 1.6rem;
    z-index: 1;
}

.project-body h3 {
    font-family: 'Playfair Display', serif;
    font-size: 1.25rem;
    font-weight: 500;
    color: #ffffff;
    line-height: 1.3;
    letter-spacing: -0.01em;
    margin: 0;
    text-wrap: balance;
}

@media (max-width: 980px) {
    .projects-grid { grid-template-columns: repeat(2, 1fr); }
}
@media (max-width: 600px) {
    .projects-grid { grid-template-columns: 1fr; }
}

/* ============================================
   CONTACT — Kontakt
   ============================================ */
.contact {
    background: #ffffff;
    padding: 6rem 2rem;
    position: relative;
}

.contact-grid {
    max-width: 1100px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: 1fr 1.2fr;
    gap: 2rem;
    align-items: stretch;
}

.contact-info {
    position: relative;
    padding: 2.5rem 2.25rem;
    background:
        linear-gradient(160deg, rgba(255, 255, 255, 0.88), rgba(246, 250, 255, 0.82));
    border: 1px solid rgba(198, 213, 235, 0.7);
    border-radius: 16px;
    box-shadow:
        0 24px 60px rgba(15, 46, 101, 0.08),
        0 1px 0 rgba(255, 255, 255, 0.7) inset;
    backdrop-filter: blur(20px);
    overflow: hidden;
}

.contact-info::before {
    content: "";
    position: absolute;
    inset: 0;
    background:
        radial-gradient(circle at top left, rgba(16, 129, 250, 0.1), transparent 35%),
        radial-gradient(circle at bottom right, rgba(15, 46, 101, 0.08), transparent 30%);
    pointer-events: none;
}

.contact-info > * { position: relative; z-index: 1; }

.contact-info .hero-adition-kicker {
    display: inline-block;
    margin: 0 0 1.25rem 0;
    padding: 0.3rem 0.75rem;
}

.contact-info h3 {
    font-family: 'Playfair Display', serif;
    font-size: 1.7rem;
    font-weight: 500;
    color: #0a1628;
    margin: 0 0 1.5rem;
    letter-spacing: -0.02em;
}

.contact-list {
    list-style: none;
    padding: 0;
    margin: 0 0 1.5rem;
    display: grid;
    gap: 1rem;
}

.contact-list li {
    display: grid;
    gap: 0.15rem;
    padding-bottom: 1rem;
    border-bottom: 1px solid rgba(15, 46, 101, 0.08);
}
.contact-list li:last-child {
    padding-bottom: 0;
    border-bottom: none;
}

.contact-label {
    font-family: 'DM Mono', monospace;
    font-size: 0.7rem;
    font-weight: 600;
    color: #5a6473;
    text-transform: uppercase;
    letter-spacing: 0.12em;
}

.contact-value {
    font-family: 'DM Mono', monospace;
    font-size: 1.15rem;
    font-weight: 600;
    color: #12284c;
    letter-spacing: -0.01em;
}

a.contact-value { color: #12284c; transition: color 0.2s ease; }
a.contact-value:hover { color: var(--accent-color); }

.contact-note {
    font-size: 0.9rem;
    line-height: 1.7;
    color: #5a6473;
    margin: 0;
}

.contact-form {
    display: flex;
    flex-direction: column;
    gap: 1rem;
    padding: 2.5rem 2.25rem;
    background: #ffffff;
    border: 1px solid rgba(15, 46, 101, 0.08);
    border-radius: 16px;
    box-shadow: 0 16px 40px rgba(15, 46, 101, 0.06);
}

.form-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 1rem;
}

.form-field {
    display: flex;
    flex-direction: column;
    gap: 0.4rem;
}

.form-field > span {
    font-family: 'DM Mono', monospace;
    font-size: 0.78rem;
    font-weight: 600;
    color: #12284c;
    letter-spacing: 0.02em;
}
.form-field em {
    font-style: normal;
    font-weight: 400;
    color: #5a6473;
    font-size: 0.72rem;
}

.form-field input,
.form-field textarea {
    font-family: 'Outfit', sans-serif;
    font-size: 0.95rem;
    color: #0a1628;
    padding: 0.85rem 1rem;
    background: #fafbfd;
    border: 1px solid rgba(15, 46, 101, 0.12);
    border-radius: 10px;
    transition: border-color 0.2s ease, background 0.2s ease, box-shadow 0.2s ease;
    outline: none;
    resize: vertical;
}
.form-field input::placeholder,
.form-field textarea::placeholder {
    color: #9aa3b3;
}
.form-field input:focus,
.form-field textarea:focus {
    border-color: rgba(16, 129, 250, 0.6);
    background: #ffffff;
    box-shadow: 0 0 0 4px rgba(16, 129, 250, 0.1);
}

.form-actions {
    display: flex;
    align-items: center;
    gap: 1rem;
    margin-top: 0.5rem;
    flex-wrap: wrap;
}

.form-actions .btn-primary {
    border: none;
    cursor: none;
}

.form-success {
    font-family: 'DM Mono', monospace;
    font-size: 0.88rem;
    font-weight: 500;
    color: #066ede;
    margin: 0;
}

@media (max-width: 880px) {
    .contact-grid { grid-template-columns: 1fr; }
    .form-row { grid-template-columns: 1fr; }
}

/* ============================================
   FOOTER
   ============================================ */
.site-footer {
    background: #0a1628;
    color: rgba(255, 255, 255, 0.78);
    padding: 4.5rem 2rem 1.5rem;
    margin-top: 0;
}

.footer-grid {
    max-width: 1200px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: 1.4fr 1fr 1fr;
    gap: 3rem;
    padding-bottom: 3rem;
    border-bottom: 1px solid rgba(255, 255, 255, 0.08);
}

.footer-brand .footer-logo {
    height: 44px;
    width: auto;
    filter: brightness(0) invert(1);
    opacity: 0.95;
    margin-bottom: 1rem;
    display: block;
}

.footer-tagline {
    font-family: 'Playfair Display', serif;
    font-size: 1.1rem;
    font-weight: 400;
    font-style: italic;
    color: rgba(255, 255, 255, 0.78);
    line-height: 1.5;
    margin: 0;
    max-width: 28ch;
}

.footer-heading {
    font-family: 'DM Mono', monospace;
    font-size: 0.75rem;
    font-weight: 600;
    color: #ffffff;
    text-transform: uppercase;
    letter-spacing: 0.14em;
    margin: 0 0 1.25rem;
}

.footer-links {
    list-style: none;
    padding: 0;
    margin: 0;
    display: flex;
    flex-direction: column;
    gap: 0.7rem;
}

.footer-links a,
.footer-links span {
    color: rgba(255, 255, 255, 0.65);
    font-size: 0.92rem;
    transition: color 0.2s ease;
}
.footer-links a:hover {
    color: #ffffff;
}

.footer-bar {
    max-width: 1200px;
    margin: 0 auto;
    padding-top: 1.5rem;
    text-align: center;
}
.footer-bar p {
    font-size: 0.78rem;
    color: rgba(255, 255, 255, 0.45);
    letter-spacing: 0.04em;
    margin: 0;
}

@media (max-width: 800px) {
    .footer-grid {
        grid-template-columns: 1fr;
        gap: 2.5rem;
    }
}

.eyebrow {
    font-size: 0.75rem;
    font-weight: 500;
    color: #0f4fa8;
    text-transform: uppercase;
    letter-spacing: 0.1em;
    margin-bottom: 1rem;
    padding: 5px 0.5rem;
    background: linear-gradient(180deg, rgba(255, 255, 255, 0.86), rgba(239, 246, 255, 0.92));
    border-radius: 15px;
    box-shadow:
        0 10px 24px rgba(16, 129, 250, 0.1),
        0 1px 0 rgba(255, 255, 255, 0.8) inset;
}

/* ============================================
   NAV — active link
   ============================================ */
.nav-links a.is-active {
    color: var(--accent-color);
    position: relative;
}
.nav-links a.is-active::after {
    content: "";
    position: absolute;
    left: 0;
    right: 0;
    bottom: -8px;
    height: 2px;
    background: var(--accent-color);
    border-radius: 2px;
}
.nav-links a.is-active:hover,
.nav-links a.is-active:focus-visible {
    color: var(--accent-color);
    opacity: 1;
}

/* ============================================
   MARKETING — Services grid
   ============================================ */
.mkt-services {
    background: #ffffff;
    padding: 6rem 2rem;
}

.mkt-services-grid {
    max-width: 1200px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 1.5rem;
}

.mkt-service {
    position: relative;
    background: #ffffff;
    border: 1px solid rgba(15, 46, 101, 0.08);
    border-top: 2px solid var(--accent-color);
    border-radius: 14px;
    padding: 2rem 1.75rem 1.5rem;
    box-shadow: 0 14px 36px rgba(15, 46, 101, 0.06);
    display: flex;
    flex-direction: column;
    transition: transform 300ms cubic-bezier(0.23, 1, 0.32, 1),
                box-shadow 300ms cubic-bezier(0.23, 1, 0.32, 1),
                border-color 300ms cubic-bezier(0.23, 1, 0.32, 1);
}
@media (hover: hover) and (pointer: fine) {
    .mkt-service:hover {
        transform: translateY(-3px);
        box-shadow: 0 26px 56px rgba(15, 46, 101, 0.1);
    }
}

.mkt-service-head {
    display: flex;
    align-items: center;
    gap: 0.85rem;
    margin-bottom: 0.85rem;
}

.mkt-service-icon {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 44px;
    height: 44px;
    border-radius: 10px;
    background: rgba(16, 129, 250, 0.1);
    color: var(--accent-color);
    font-size: 1.4rem;
    line-height: 1;
}

.mkt-service h3 {
    font-family: 'DM Mono', monospace;
    font-size: 1.3rem;
    font-weight: 600;
    color: #12284c;
    margin: 0;
    letter-spacing: -0.01em;
}

.mkt-service > p {
    font-size: 0.95rem;
    line-height: 1.7;
    color: #5a6473;
    margin: 0 0 1.25rem;
    flex: 1;
}

.mkt-service-note {
    font-family: 'DM Mono', monospace;
    font-size: 0.74rem !important;
    font-weight: 500;
    color: #8a93a3 !important;
    text-transform: uppercase;
    letter-spacing: 0.1em;
    margin: 0 !important;
    padding-top: 1rem;
    border-top: 1px solid rgba(15, 46, 101, 0.06);
}

@media (max-width: 980px) {
    .mkt-services-grid { grid-template-columns: repeat(2, 1fr); }
}
@media (max-width: 620px) {
    .mkt-services-grid { grid-template-columns: 1fr; }
}

/* ============================================
   GROWTH — charts
   ============================================ */
.growth {
    background: #ffffff;
    padding: 6rem 2rem;
    border-top: 1px solid rgba(15, 46, 101, 0.06);
}

.growth-grid {
    max-width: 1200px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 1.5rem;
}

.growth-card {
    position: relative;
    background:
        linear-gradient(160deg, rgba(255, 255, 255, 0.95), rgba(246, 250, 255, 0.88));
    border: 1px solid rgba(198, 213, 235, 0.7);
    border-radius: 16px;
    padding: 1.75rem 1.5rem 1.5rem;
    box-shadow:
        0 20px 48px rgba(15, 46, 101, 0.07),
        0 1px 0 rgba(255, 255, 255, 0.7) inset;
    backdrop-filter: blur(20px);
    display: flex;
    flex-direction: column;
    gap: 0.75rem;
    overflow: hidden;
}

.growth-card::before {
    content: "";
    position: absolute;
    inset: 0;
    background: radial-gradient(circle at top right, rgba(16, 129, 250, 0.08), transparent 50%);
    pointer-events: none;
}
.growth-card > * { position: relative; z-index: 1; }

.growth-card .eyebrow {
    align-self: flex-start;
    margin-bottom: 0;
}

.growth-card h3 {
    font-family: 'DM Mono', monospace;
    font-size: 1.1rem;
    font-weight: 600;
    color: #12284c;
    margin: 0;
    letter-spacing: -0.01em;
}

.chart-wrap {
    position: relative;
    width: 100%;
    height: 220px;
    margin-top: 0.25rem;
}
.chart-wrap canvas {
    width: 100% !important;
    height: 100% !important;
}

.growth-note {
    font-size: 0.85rem;
    line-height: 1.6;
    color: #5a6473;
    margin: 0;
    padding-top: 0.5rem;
    border-top: 1px solid rgba(15, 46, 101, 0.06);
}

.growth-disclaimer {
    max-width: 760px;
    margin: 2.5rem auto 0;
    text-align: center;
    font-size: 0.82rem;
    line-height: 1.65;
    color: #8a93a3;
    text-wrap: pretty;
}

@media (max-width: 980px) {
    .growth-grid { grid-template-columns: 1fr; }
}

/* ============================================
   SOCIAL — Správa sociálních sítí
   ============================================ */
.mkt-social {
    background: rgba(16, 129, 250, 0.04);
    padding: 6rem 2rem;
}

.mkt-social-inner {
    max-width: 1100px;
    margin: 0 auto;
}

.mkt-social-head {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    gap: 1rem;
    margin-bottom: 2.5rem;
}
.mkt-social-head .eyebrow { margin-bottom: 0; }

.section-title--left {
    text-align: left;
    max-width: 18ch;
}

.mkt-social-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 2.5rem;
    align-items: start;
}

.mkt-social-copy p {
    font-size: 1.05rem;
    line-height: 1.8;
    color: #5a6473;
    margin: 0;
    max-width: 50ch;
}

.mkt-social-card {
    background: #ffffff;
    border: 1px solid rgba(15, 46, 101, 0.08);
    border-radius: 16px;
    padding: 2rem 2rem 1.75rem;
    box-shadow: 0 18px 44px rgba(15, 46, 101, 0.06);
}

.mkt-social-list {
    list-style: none;
    padding: 0;
    margin: 0 0 1.25rem;
    display: grid;
    gap: 0.85rem;
}

.mkt-social-list li {
    display: flex;
    align-items: center;
    gap: 0.85rem;
    font-family: 'DM Mono', monospace;
    font-size: 1rem;
    font-weight: 500;
    color: #12284c;
}

.mkt-check {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 26px;
    height: 26px;
    flex: 0 0 26px;
    border-radius: 50%;
    background: rgba(16, 129, 250, 0.1);
    color: var(--accent-color);
}
.mkt-check svg { width: 16px; height: 16px; }

.mkt-social-note {
    font-family: 'DM Mono', monospace;
    font-size: 0.74rem;
    font-weight: 500;
    color: #8a93a3;
    text-transform: uppercase;
    letter-spacing: 0.1em;
    margin: 0;
    padding-top: 1rem;
    border-top: 1px solid rgba(15, 46, 101, 0.06);
}

@media (max-width: 820px) {
    .mkt-social-grid { grid-template-columns: 1fr; gap: 1.75rem; }
    .section-title--left { max-width: none; }
}

/* ============================================
   CTA
   ============================================ */
.mkt-cta {
    background: #0a1628;
    padding: 6rem 2rem;
    text-align: center;
    position: relative;
    overflow: hidden;
}

.mkt-cta::before {
    content: "";
    position: absolute;
    inset: 0;
    background:
        radial-gradient(circle at 20% 30%, rgba(16, 129, 250, 0.18), transparent 45%),
        radial-gradient(circle at 80% 70%, rgba(15, 46, 101, 0.4), transparent 50%);
    pointer-events: none;
}

.mkt-cta-inner {
    position: relative;
    max-width: 720px;
    margin: 0 auto;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 1.25rem;
}

.mkt-cta h2 {
    font-family: 'Playfair Display', serif;
    font-size: clamp(2.4rem, 5vw, 3.8rem);
    font-weight: 500;
    line-height: 1.05;
    letter-spacing: -0.035em;
    color: #ffffff;
    margin: 0;
    text-wrap: balance;
}

.mkt-cta p {
    font-size: 1.05rem;
    line-height: 1.75;
    color: rgba(255, 255, 255, 0.78);
    margin: 0;
    max-width: 54ch;
}

.mkt-cta .btn-primary {
    margin-top: 0.75rem;
    background-color: #ffffff;
    color: #066ede;
    border-color: #ffffff;
}
.mkt-cta .btn-primary:hover {
    background-color: rgba(255, 255, 255, 0.92);
}

/* ============================================
   SPECS ROW — quick stat blocks
   ============================================ */
.specs-row {
    max-width: 1200px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 1rem;
}
.spec-item {
    background: #ffffff;
    border: 1px solid rgba(15, 46, 101, 0.08);
    border-radius: 14px;
    padding: 1.5rem 1.4rem;
    box-shadow: 0 12px 32px rgba(15, 46, 101, 0.05);
    display: flex;
    flex-direction: column;
    gap: 0.3rem;
}
.spec-value {
    font-family: 'DM Mono', monospace;
    font-size: 2rem;
    font-weight: 700;
    color: #0a1628;
    letter-spacing: -0.02em;
    line-height: 1;
}
.spec-value .unit {
    font-size: 1.1rem;
    color: var(--accent-color);
    margin-left: 0.15rem;
}
.spec-label {
    font-family: 'DM Mono', monospace;
    font-size: 0.75rem;
    font-weight: 600;
    color: #5a6473;
    text-transform: uppercase;
    letter-spacing: 0.12em;
}
.spec-sub {
    font-size: 0.88rem;
    color: #5a6473;
    line-height: 1.5;
    margin: 0.3rem 0 0;
}
.specs-section {
    background: #ffffff;
    padding: 5rem 2rem;
}
@media (max-width: 880px) { .specs-row { grid-template-columns: repeat(2, 1fr); } }
@media (max-width: 480px) { .specs-row { grid-template-columns: 1fr; } }

/* ============================================
   PRICING TIERS
   ============================================ */
.pricing {
    background: rgba(16, 129, 250, 0.04);
    padding: 6rem 2rem;
}
.pricing-grid {
    max-width: 1100px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 1.5rem;
    align-items: stretch;
}
.pricing-card {
    position: relative;
    background: #ffffff;
    border: 1px solid rgba(15, 46, 101, 0.1);
    border-radius: 18px;
    padding: 2rem 1.75rem 1.75rem;
    box-shadow: 0 16px 40px rgba(15, 46, 101, 0.06);
    display: flex;
    flex-direction: column;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}
.pricing-card:hover {
    transform: translateY(-4px);
    box-shadow: 0 26px 56px rgba(15, 46, 101, 0.12);
}
.pricing-card.is-featured {
    background: linear-gradient(180deg, #0a1628 0%, #122a4d 100%);
    border-color: rgba(16, 129, 250, 0.4);
    color: #ffffff;
    box-shadow: 0 26px 60px rgba(15, 46, 101, 0.25);
}
.pricing-card.is-featured .pricing-tier,
.pricing-card.is-featured .pricing-amount,
.pricing-card.is-featured .pricing-tagline,
.pricing-card.is-featured .pricing-features li {
    color: #ffffff;
}
.pricing-card.is-featured .pricing-per {
    color: rgba(255, 255, 255, 0.6);
}
.pricing-card.is-featured .pricing-features li::before {
    color: var(--accent-color);
}
.pricing-card.is-featured .pricing-features {
    border-color: rgba(255, 255, 255, 0.1);
}
.pricing-badge {
    position: absolute;
    top: -0.65rem;
    left: 50%;
    transform: translateX(-50%);
    background: var(--accent-color);
    color: #ffffff;
    font-family: 'DM Mono', monospace;
    font-size: 0.7rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.12em;
    padding: 0.35rem 0.85rem;
    border-radius: 999px;
    box-shadow: 0 6px 14px rgba(16, 129, 250, 0.35);
}
.pricing-tier {
    font-family: 'DM Mono', monospace;
    font-size: 0.78rem;
    font-weight: 600;
    color: #5a6473;
    text-transform: uppercase;
    letter-spacing: 0.14em;
    margin: 0 0 0.5rem;
}
.pricing-amount {
    font-family: 'DM Mono', monospace;
    font-size: 2.6rem;
    font-weight: 700;
    color: #0a1628;
    letter-spacing: -0.03em;
    line-height: 1;
}
.pricing-per {
    font-size: 0.85rem;
    font-weight: 500;
    color: #5a6473;
    margin-left: 0.25rem;
}
.pricing-tagline {
    font-size: 0.95rem;
    color: #5a6473;
    line-height: 1.55;
    margin: 0.85rem 0 1.5rem;
}
.pricing-features {
    list-style: none;
    padding: 1.25rem 0 0;
    margin: 0 0 1.5rem;
    border-top: 1px solid rgba(15, 46, 101, 0.08);
    display: grid;
    gap: 0.7rem;
    flex: 1;
}
.pricing-features li {
    position: relative;
    padding-left: 1.6rem;
    font-size: 0.93rem;
    color: #12284c;
    line-height: 1.55;
}
.pricing-features li::before {
    content: "✓";
    position: absolute;
    left: 0;
    top: 0.05rem;
    color: var(--accent-color);
    font-weight: 700;
}
.pricing-card .btn-primary,
.pricing-card .btn-secondary {
    width: 100%;
}
.pricing-card.is-featured .btn-primary {
    background-color: #ffffff;
    color: #066ede;
    border-color: #ffffff;
}
.pricing-foot {
    max-width: 760px;
    margin: 2.5rem auto 0;
    text-align: center;
    font-size: 0.85rem;
    color: #5a6473;
    line-height: 1.6;
}
@media (max-width: 920px) { .pricing-grid { grid-template-columns: 1fr; max-width: 480px; } }

/* ============================================
   FAQ — accordion
   ============================================ */
.faq {
    background: #ffffff;
    padding: 6rem 2rem;
}
.faq-list {
    max-width: 820px;
    margin: 0 auto;
    display: flex;
    flex-direction: column;
    gap: 0.75rem;
}
.faq-item {
    background: #ffffff;
    border: 1px solid rgba(15, 46, 101, 0.1);
    border-radius: 14px;
    overflow: hidden;
    transition: border-color 0.25s ease, box-shadow 0.25s ease;
}
.faq-item[open] {
    border-color: rgba(16, 129, 250, 0.4);
    box-shadow: 0 16px 36px rgba(15, 46, 101, 0.06);
}
.faq-item summary {
    list-style: none;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 1rem;
    padding: 1.25rem 1.5rem;
    font-family: 'DM Mono', monospace;
    font-size: 1.05rem;
    font-weight: 600;
    color: #12284c;
    letter-spacing: -0.005em;
}
.faq-item summary::-webkit-details-marker { display: none; }
.faq-icon {
    flex: 0 0 28px;
    width: 28px;
    height: 28px;
    border-radius: 50%;
    background: rgba(16, 129, 250, 0.1);
    color: var(--accent-color);
    display: inline-flex;
    align-items: center;
    justify-content: center;
    font-size: 1.2rem;
    line-height: 1;
    transition: transform 0.25s ease, background 0.25s ease;
}
.faq-item[open] .faq-icon { transform: rotate(45deg); background: var(--accent-color); color: #ffffff; }
.faq-body {
    padding: 0 1.5rem 1.5rem;
    font-size: 0.96rem;
    color: #5a6473;
    line-height: 1.75;
}
.faq-body p { margin: 0 0 0.75rem; color: #5a6473; }
.faq-body p:last-child { margin-bottom: 0; }

/* ============================================
   USE CASE GRID (cloud)
   ============================================ */
.usecases {
    background: rgba(16, 129, 250, 0.04);
    padding: 6rem 2rem;
}
.usecases-grid {
    max-width: 1100px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 1.25rem;
}
.usecase-card {
    background: #ffffff;
    border: 1px solid rgba(15, 46, 101, 0.08);
    border-radius: 14px;
    padding: 1.5rem 1.4rem;
    box-shadow: 0 14px 32px rgba(15, 46, 101, 0.05);
    transition: transform 300ms cubic-bezier(0.23, 1, 0.32, 1),
                box-shadow 300ms cubic-bezier(0.23, 1, 0.32, 1);
}
@media (hover: hover) and (pointer: fine) {
    .usecase-card:hover {
        transform: translateY(-3px);
        box-shadow: 0 24px 50px rgba(15, 46, 101, 0.09);
    }
}
.usecase-tag {
    font-family: 'DM Mono', monospace;
    font-size: 0.7rem;
    font-weight: 600;
    color: var(--accent-color);
    text-transform: uppercase;
    letter-spacing: 0.14em;
    display: block;
    margin-bottom: 0.5rem;
}
.usecase-card h3 {
    font-family: 'DM Mono', monospace;
    font-size: 1.1rem;
    font-weight: 600;
    color: #12284c;
    margin: 0 0 0.5rem;
    letter-spacing: -0.005em;
}
.usecase-card p {
    font-size: 0.93rem;
    line-height: 1.65;
    color: #5a6473;
    margin: 0;
}
@media (max-width: 880px) { .usecases-grid { grid-template-columns: repeat(2, 1fr); } }
@media (max-width: 540px) { .usecases-grid { grid-template-columns: 1fr; } }

/* ============================================
   BOOKING — Calendar + form (call.html)
   ============================================ */
.booking {
    background: #ffffff;
    padding: 5rem 2rem 6rem;
}
.booking-grid {
    max-width: 1100px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: 1fr 1.2fr;
    gap: 2rem;
    align-items: stretch;
}
.booking-form {
    display: flex;
    flex-direction: column;
    gap: 1rem;
    padding: 2.5rem 2.25rem;
    background: #ffffff;
    border: 1px solid rgba(15, 46, 101, 0.08);
    border-radius: 16px;
    box-shadow: 0 18px 44px rgba(15, 46, 101, 0.06);
}
.booking-form h3 {
    font-family: 'Playfair Display', serif;
    font-size: 1.5rem;
    font-weight: 500;
    color: #0a1628;
    margin: 0 0 0.5rem;
    letter-spacing: -0.02em;
}
.booking-form .form-field input[type="date"],
.booking-form .form-field input[type="time"] {
    font-family: 'Outfit', sans-serif;
    color: #0a1628;
}
.booking-aside {
    position: relative;
    padding: 2.5rem 2.25rem;
    background:
        linear-gradient(160deg, rgba(255, 255, 255, 0.88), rgba(246, 250, 255, 0.82));
    border: 1px solid rgba(198, 213, 235, 0.7);
    border-radius: 16px;
    box-shadow:
        0 24px 60px rgba(15, 46, 101, 0.08),
        0 1px 0 rgba(255, 255, 255, 0.7) inset;
    backdrop-filter: blur(20px);
    overflow: hidden;
}
.booking-aside::before {
    content: "";
    position: absolute;
    inset: 0;
    background:
        radial-gradient(circle at top left, rgba(16, 129, 250, 0.1), transparent 35%),
        radial-gradient(circle at bottom right, rgba(15, 46, 101, 0.08), transparent 30%);
    pointer-events: none;
}
.booking-aside > * { position: relative; z-index: 1; }
.booking-aside h3 {
    font-family: 'Playfair Display', serif;
    font-size: 1.6rem;
    font-weight: 500;
    color: #0a1628;
    margin: 1rem 0 1.25rem;
    letter-spacing: -0.02em;
}
.booking-info-list {
    list-style: none;
    padding: 0;
    margin: 0 0 1.5rem;
    display: grid;
    gap: 1rem;
}
.booking-info-list li {
    display: grid;
    gap: 0.15rem;
    padding-bottom: 1rem;
    border-bottom: 1px solid rgba(15, 46, 101, 0.08);
}
.booking-info-list li:last-child { padding-bottom: 0; border-bottom: none; }
.select-field select {
    font-family: 'Outfit', sans-serif;
    font-size: 0.95rem;
    color: #0a1628;
    padding: 0.85rem 1rem;
    background: #fafbfd;
    border: 1px solid rgba(15, 46, 101, 0.12);
    border-radius: 10px;
    outline: none;
    appearance: none;
    background-image: linear-gradient(45deg, transparent 50%, #5a6473 50%), linear-gradient(135deg, #5a6473 50%, transparent 50%);
    background-position: calc(100% - 18px) 50%, calc(100% - 13px) 50%;
    background-size: 5px 5px, 5px 5px;
    background-repeat: no-repeat;
    padding-right: 2.25rem;
    transition: border-color 0.2s ease, background-color 0.2s ease, box-shadow 0.2s ease;
}
.select-field select:focus {
    border-color: rgba(16, 129, 250, 0.6);
    background-color: #ffffff;
    box-shadow: 0 0 0 4px rgba(16, 129, 250, 0.1);
}
.next-steps {
    list-style: none;
    padding: 0;
    margin: 1.25rem 0 0;
    display: grid;
    gap: 0.85rem;
}
.next-steps li {
    display: flex;
    gap: 0.85rem;
    align-items: flex-start;
    font-size: 0.95rem;
    color: #12284c;
    line-height: 1.55;
}
.next-step-num {
    flex: 0 0 26px;
    width: 26px;
    height: 26px;
    border-radius: 50%;
    background: rgba(16, 129, 250, 0.1);
    color: var(--accent-color);
    font-family: 'DM Mono', monospace;
    font-weight: 700;
    font-size: 0.85rem;
    display: inline-flex;
    align-items: center;
    justify-content: center;
}
@media (max-width: 880px) {
    .booking-grid { grid-template-columns: 1fr; }
}

/* ============================================
   SLA TIERS (hosting)
   ============================================ */
.sla {
    background: #ffffff;
    padding: 6rem 2rem;
}
.sla-grid {
    max-width: 1100px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 1.25rem;
}
.sla-card {
    background: #ffffff;
    border: 1px solid rgba(15, 46, 101, 0.08);
    border-top: 4px solid var(--accent-color);
    border-radius: 14px;
    padding: 1.75rem 1.5rem 1.5rem;
    box-shadow: 0 14px 32px rgba(15, 46, 101, 0.05);
}
.sla-card h3 {
    font-family: 'DM Mono', monospace;
    font-size: 1.15rem;
    font-weight: 600;
    color: #12284c;
    margin: 0 0 0.4rem;
    letter-spacing: -0.005em;
}
.sla-response {
    font-family: 'DM Mono', monospace;
    font-size: 1.6rem;
    font-weight: 700;
    color: var(--accent-color);
    letter-spacing: -0.02em;
    margin: 0 0 0.85rem;
}
.sla-response small {
    font-size: 0.78rem;
    font-weight: 500;
    color: #5a6473;
    text-transform: uppercase;
    letter-spacing: 0.12em;
    margin-left: 0.4rem;
}
.sla-card p {
    font-size: 0.93rem;
    line-height: 1.65;
    color: #5a6473;
    margin: 0;
}
@media (max-width: 880px) { .sla-grid { grid-template-columns: 1fr; } }

/* growth grid two-col variant */
.growth-grid.growth-grid--two {
    grid-template-columns: repeat(2, 1fr);
}
@media (max-width: 980px) {
    .growth-grid.growth-grid--two { grid-template-columns: 1fr; }
}

/* ============================================
   TYPES — Tři typy webů (large stacked cards)
   ============================================ */
.types {
    background: rgba(16, 129, 250, 0.04);
    padding: 6rem 2rem;
}
.types-list {
    max-width: 1100px;
    margin: 0 auto;
    display: flex;
    flex-direction: column;
    gap: 2rem;
}
.type-card {
    position: relative;
    background:
        linear-gradient(160deg, rgba(255, 255, 255, 0.92), rgba(246, 250, 255, 0.86));
    border: 1px solid rgba(198, 213, 235, 0.7);
    border-radius: 18px;
    padding: 2.5rem 2.5rem 2.25rem;
    box-shadow:
        0 24px 60px rgba(15, 46, 101, 0.08),
        0 1px 0 rgba(255, 255, 255, 0.7) inset;
    backdrop-filter: blur(20px);
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 2.5rem;
    align-items: start;
    overflow: hidden;
    transition: transform 300ms cubic-bezier(0.23, 1, 0.32, 1),
                box-shadow 300ms cubic-bezier(0.23, 1, 0.32, 1);
}
.type-card::before {
    content: "";
    position: absolute;
    inset: 0;
    background:
        radial-gradient(circle at top right, rgba(16, 129, 250, 0.1), transparent 35%),
        radial-gradient(circle at bottom left, rgba(15, 46, 101, 0.07), transparent 30%);
    pointer-events: none;
}
@media (hover: hover) and (pointer: fine) {
    .type-card:hover {
        transform: translateY(-3px);
        box-shadow: 0 32px 70px rgba(15, 46, 101, 0.12);
    }
}
.type-card > * { position: relative; z-index: 1; }

/* Alternating layout */
.type-card:nth-child(even) .type-card__visual { order: -1; }
.type-card:nth-child(even) .type-card__body { order: 1; }

.type-card__head {
    display: flex;
    align-items: center;
    gap: 0.85rem;
    flex-wrap: wrap;
    margin-bottom: 1rem;
}
.type-card__label {
    font-family: 'DM Mono', monospace;
    font-size: 0.7rem;
    font-weight: 700;
    color: var(--accent-color);
    text-transform: uppercase;
    letter-spacing: 0.18em;
    padding: 0.3rem 0.7rem;
    background: rgba(16, 129, 250, 0.08);
    border: 1px solid rgba(16, 129, 250, 0.2);
    border-radius: 999px;
    display: inline-flex;
    align-items: center;
}
.type-card__pill {
    font-family: 'DM Mono', monospace;
    font-size: 0.7rem;
    font-weight: 600;
    color: #ffffff;
    text-transform: uppercase;
    letter-spacing: 0.14em;
    padding: 0.35rem 0.75rem;
    background: var(--accent-color);
    border-radius: 999px;
    box-shadow: 0 6px 14px rgba(16, 129, 250, 0.3);
}
.type-card__title-row {
    display: flex;
    align-items: center;
    gap: 0.85rem;
    margin-bottom: 0.85rem;
}
.type-card__icon {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 52px;
    height: 52px;
    flex: 0 0 52px;
    border-radius: 12px;
    background: rgba(16, 129, 250, 0.1);
    color: var(--accent-color);
    font-size: 1.6rem;
}
.type-card__title-row h3 {
    font-family: 'Playfair Display', serif;
    font-size: clamp(1.6rem, 3vw, 2.1rem);
    font-weight: 500;
    color: #0a1628;
    margin: 0;
    letter-spacing: -0.025em;
    line-height: 1.1;
}
.type-card__desc {
    font-size: 1rem;
    line-height: 1.7;
    color: #5a6473;
    margin: 0 0 1.5rem;
    max-width: 56ch;
}
.type-card__features {
    list-style: none;
    padding: 0;
    margin: 0 0 1.5rem;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 0.6rem 1.25rem;
}
.type-card__features li {
    position: relative;
    padding-left: 1.6rem;
    font-size: 0.93rem;
    color: #12284c;
    line-height: 1.55;
}
.type-card__features li::before {
    content: "✓";
    position: absolute;
    left: 0;
    top: 0.05rem;
    color: var(--accent-color);
    font-weight: 700;
}
.type-card__best-for {
    font-size: 0.9rem;
    line-height: 1.65;
    color: #5a6473;
    margin: 0 0 0.4rem;
    padding-top: 1.25rem;
    border-top: 1px solid rgba(15, 46, 101, 0.08);
}
.type-card__price-note {
    font-family: 'DM Mono', monospace;
    font-size: 0.74rem;
    font-weight: 500;
    color: #8a93a3;
    text-transform: uppercase;
    letter-spacing: 0.12em;
    margin: 0;
}
.type-card__visual {
    display: flex;
    align-items: center;
    justify-content: center;
    min-height: 280px;
    height: 100%;
}
@media (max-width: 880px) {
    .type-card {
        grid-template-columns: 1fr;
        padding: 2rem 1.75rem;
        gap: 1.5rem;
    }
    .type-card__features { grid-template-columns: 1fr; }
    .type-card:nth-child(even) .type-card__visual { order: 1; }
    .type-card:nth-child(even) .type-card__body { order: 0; }
    .type-card__visual { min-height: 200px; }
}

/* ============================================
   TYPE VISUALS — decorative SVG-ish blocks
   ============================================ */
.type-visual {
    position: relative;
    width: 100%;
    max-width: 360px;
    aspect-ratio: 4 / 3;
    border-radius: 14px;
    background:
        linear-gradient(180deg, rgba(255, 255, 255, 0.7), rgba(246, 250, 255, 0.4));
    border: 1px solid rgba(15, 46, 101, 0.08);
    box-shadow: 0 18px 44px rgba(15, 46, 101, 0.08);
    overflow: hidden;
    padding: 1.2rem;
    display: flex;
    flex-direction: column;
    gap: 0.6rem;
}
.tv-row {
    height: 10px;
    background: linear-gradient(90deg, rgba(16, 129, 250, 0.15), rgba(16, 129, 250, 0.05));
    border-radius: 4px;
}
.tv-row.tv-row--accent {
    background: linear-gradient(90deg, var(--accent-color), rgba(16, 129, 250, 0.4));
    height: 14px;
    width: 70%;
}
.tv-row.tv-row--short { width: 50%; }
.tv-row.tv-row--xshort { width: 30%; }
.tv-block {
    flex: 1;
    background: linear-gradient(135deg, rgba(16, 129, 250, 0.18), rgba(15, 46, 101, 0.1));
    border-radius: 8px;
    border: 1px solid rgba(16, 129, 250, 0.15);
    margin-top: 0.4rem;
}
.tv-grid {
    flex: 1;
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 0.4rem;
    margin-top: 0.4rem;
}
.tv-cell {
    background: linear-gradient(135deg, rgba(16, 129, 250, 0.16), rgba(15, 46, 101, 0.08));
    border-radius: 6px;
    border: 1px solid rgba(16, 129, 250, 0.12);
}

/* ============================================
   DEMO OFFER + browser mock
   ============================================ */
.demo-offer {
    background: rgba(16, 129, 250, 0.04);
    padding: 6rem 2rem;
}
.demo-offer-inner {
    max-width: 1100px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: 1fr 1.1fr;
    gap: 3rem;
    align-items: center;
}
.demo-offer-copy h2 {
    font-family: 'Playfair Display', serif;
    font-size: clamp(2rem, 4vw, 3rem);
    font-weight: 500;
    color: #0a1628;
    line-height: 1.1;
    letter-spacing: -0.03em;
    margin: 0 0 1.25rem;
    max-width: 18ch;
    text-wrap: balance;
}
.demo-offer-copy p {
    font-size: 1.05rem;
    line-height: 1.8;
    color: #5a6473;
    margin: 0 0 2rem;
    max-width: 52ch;
}
.demo-offer-visual {
    display: flex;
    justify-content: center;
    align-items: center;
}
.browser-mock {
    width: 100%;
    max-width: 520px;
    background: #ffffff;
    border: 1px solid rgba(15, 46, 101, 0.1);
    border-radius: 14px;
    box-shadow: 0 28px 60px rgba(15, 46, 101, 0.18);
    overflow: hidden;
    transform: perspective(1200px) rotateX(2deg) rotateY(-3deg);
    transition: transform 0.5s ease;
}
.browser-mock:hover {
    transform: perspective(1200px) rotateX(0deg) rotateY(0deg);
}
.browser-chrome {
    display: flex;
    align-items: center;
    gap: 0.65rem;
    padding: 0.85rem 1rem;
    background: #f4f6fa;
    border-bottom: 1px solid rgba(15, 46, 101, 0.08);
}
.browser-dots {
    display: flex;
    gap: 0.4rem;
    flex: 0 0 auto;
}
.browser-dot {
    width: 11px;
    height: 11px;
    border-radius: 50%;
    background: #d3d8e0;
}
.browser-dot--r { background: #ef6a6a; }
.browser-dot--y { background: #efc56a; }
.browser-dot--g { background: #6acc8a; }
.browser-address {
    flex: 1;
    height: 24px;
    background: #ffffff;
    border: 1px solid rgba(15, 46, 101, 0.08);
    border-radius: 6px;
    display: flex;
    align-items: center;
    padding: 0 0.7rem;
    font-family: 'DM Mono', monospace;
    font-size: 0.72rem;
    color: #8a93a3;
    letter-spacing: 0.01em;
}
.browser-address::before {
    content: "🔒";
    margin-right: 0.4rem;
    font-size: 0.7rem;
    opacity: 0.6;
}
.browser-screen {
    position: relative;
    aspect-ratio: 16 / 10;
    background:
        radial-gradient(circle at top right, rgba(16, 129, 250, 0.18), transparent 50%),
        linear-gradient(160deg, #0f2e65 0%, #1081fa 100%);
    display: flex;
    align-items: center;
    justify-content: center;
    flex-direction: column;
    gap: 1rem;
    padding: 2rem;
    overflow: hidden;
}
.browser-screen::before {
    content: "";
    position: absolute;
    top: -40%;
    right: -20%;
    width: 80%;
    height: 80%;
    background: radial-gradient(circle, rgba(255, 255, 255, 0.18), transparent 60%);
    border-radius: 50%;
}
.browser-screen img {
    height: 56px;
    width: auto;
    filter: brightness(0) invert(1);
    opacity: 0.95;
    position: relative;
    z-index: 1;
}
.browser-screen-text {
    font-family: 'DM Mono', monospace;
    font-size: 0.85rem;
    font-weight: 500;
    color: rgba(255, 255, 255, 0.55);
    text-transform: uppercase;
    letter-spacing: 0.18em;
    position: relative;
    z-index: 1;
}
@media (max-width: 880px) {
    .demo-offer-inner {
        grid-template-columns: 1fr;
        gap: 2rem;
    }
    .browser-mock { transform: none; }
}

/* ============================================================
   ============================================================
   V2 UPGRADES — distinct page heroes, imagery, order cards,
   trust strip. Appended; does not modify existing rules.
   ============================================================
   ============================================================ */

:root {
    --ink-900: #0a1628;
    --ink-700: #12284c;
    --ink-500: #2c3e5e;
    --ink-300: #5a6473;
    --ink-100: #c6d5eb;
    --line: rgba(15, 46, 101, 0.08);
    --line-strong: rgba(15, 46, 101, 0.16);
    --brand: #1081fa;
    --brand-dark: #066ede;
    --brand-deep: #0f2e65;
    --surface: #f7f9fc;
}

/* ---- shared hero wrapper used by all page-specific variants ---- */
.page-hero {
    position: relative;
    padding: 8rem 2rem 4.5rem;
    overflow: hidden;
}
.page-hero .hero-eyebrow {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    font-family: 'DM Mono', monospace;
    font-size: 0.7rem;
    letter-spacing: 0.22em;
    text-transform: uppercase;
    color: var(--brand-deep);
    background: rgba(16, 129, 250, 0.08);
    border: 1px solid rgba(16, 129, 250, 0.22);
    padding: 0.5rem 0.9rem;
    border-radius: 999px;
    margin-bottom: 1.4rem;
}
.page-hero .hero-eyebrow::before {
    content: "";
    width: 6px; height: 6px; border-radius: 50%;
    background: var(--brand);
    box-shadow: 0 0 0 4px rgba(16,129,250,0.18);
}
.page-hero h1 {
    font-family: 'Playfair Display', serif;
    font-size: clamp(2.6rem, 5.4vw, 4.6rem);
    line-height: 1.02;
    letter-spacing: -0.035em;
    color: var(--ink-900);
    font-weight: 500;
    margin: 0 0 1.25rem;
}

.home-hero-inner h1 {
    font-size: clamp(3.8rem, 8vw, 7rem);
    line-height: 0.92;
    letter-spacing: -0.04em;
    font-weight: 500;
}

.home-hero-inner .hero-eyebrow {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    background: transparent;
    border: none;
    padding: 0;
    border-radius: 0;
    font-family: 'DM Mono', monospace;
    font-size: 0.72rem;
    letter-spacing: 0.18em;
    text-transform: uppercase;
    color: var(--brand-deep);
    margin-bottom: 1.4rem;
}

.home-hero-inner .hero-eyebrow::before {
    content: "";
    display: block;
    width: 32px;
    height: 1px;
    background: var(--accent-color);
    box-shadow: none;
    border-radius: 0;
    flex: none;
}
.page-hero h1 em {
    font-style: italic;
    color: var(--brand-dark);
}
.page-hero .lede {
    font-size: 1.08rem;
    line-height: 1.75;
    color: var(--ink-300);
    max-width: 36rem;
    margin: 0 0 2rem;
}
.page-hero .hero-actions { margin-top: 0; }

/* ---- HOME hero: editorial split with photo + floating cards ---- */
.hero--home {
    display: grid;
    grid-template-columns: 1.05fr 1fr;
    gap: 4rem;
    align-items: center;
    background:
      radial-gradient(900px 500px at 100% 0%, rgba(16,129,250,0.10), transparent 60%),
      linear-gradient(180deg, #ffffff, #f7f9fc);
}
.hero--home .hero-stats {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 1.5rem;
    margin-top: 2.5rem;
    padding-top: 2rem;
    border-top: 1px solid var(--line);
}
.hero--home .hero-stats .stat-num {
    display: block;
    font-family: 'DM Mono', monospace;
    font-weight: 700;
    font-size: 1.85rem;
    color: var(--ink-900);
    letter-spacing: -0.02em;
}
.hero--home .hero-stats .stat-lbl {
    display: block;
    font-size: 0.78rem;
    color: var(--ink-300);
    margin-top: 0.25rem;
    letter-spacing: 0.04em;
}
.hero--home .hero-visual {
    position: relative;
    aspect-ratio: 4 / 5;
    border-radius: 24px;
    overflow: hidden;
    box-shadow: 0 30px 80px rgba(15,46,101,0.18), 0 0 0 1px rgba(15,46,101,0.06);
    background: linear-gradient(180deg, rgba(8,15,28,0.05), rgba(8,15,28,0.35)),
                url('https://images.unsplash.com/photo-1497366216548-37526070297c?w=1400&q=80') center/cover;
}
.hero--home .visual-card {
    position: absolute;
    background: rgba(255,255,255,0.96);
    backdrop-filter: blur(16px);
    border-radius: 14px;
    border: 1px solid rgba(255,255,255,0.6);
    box-shadow: 0 20px 50px rgba(15,46,101,0.18);
    padding: 1rem 1.1rem;
    font-family: 'Outfit', sans-serif;
}
.hero--home .visual-card .vc-label {
    font-size: 0.65rem;
    text-transform: uppercase;
    letter-spacing: 0.14em;
    color: var(--ink-300);
    margin-bottom: 0.25rem;
}
.hero--home .visual-card .vc-value {
    font-family: 'DM Mono', monospace;
    font-weight: 700;
    font-size: 1.15rem;
    color: var(--ink-900);
}
.hero--home .visual-card.vc-1 { top: 1.3rem; left: -1.2rem; }
.hero--home .visual-card.vc-2 { bottom: 1.5rem; right: -1rem; }
.hero--home .visual-card .vc-spark {
    width: 70px; height: 24px; margin-top: 0.4rem;
}
@media (max-width: 960px) {
    .hero--home { grid-template-columns: 1fr; gap: 2.5rem; }
    .hero--home .hero-visual { aspect-ratio: 4/3; }
    .hero--home .visual-card.vc-1 { left: 0.5rem; }
    .hero--home .visual-card.vc-2 { right: 0.5rem; }
}

/* ---- WEBY hero: layered browser mockups on a tinted slab ---- */
.hero--weby {
    display: grid;
    grid-template-columns: 1fr 1.1fr;
    gap: 4rem;
    align-items: center;
    background:
      radial-gradient(800px 400px at 0% 100%, rgba(15,46,101,0.06), transparent 60%),
      linear-gradient(180deg, #ffffff, #f1f5fb);
}
.hero--weby .web-stack {
    position: relative;
    height: 460px;
}
.hero--weby .web-tile {
    position: absolute;
    width: 78%;
    aspect-ratio: 16/10;
    border-radius: 14px;
    background-size: cover;
    background-position: center;
    box-shadow: 0 22px 60px rgba(15,46,101,0.22), 0 0 0 1px rgba(15,46,101,0.08);
}
.hero--weby .web-tile.t-1 {
    top: 0; left: 0;
    transform: rotate(-3deg);
    background-image: url('https://images.unsplash.com/photo-1559028012-481c04fa702d?w=900&q=80');
}
.hero--weby .web-tile.t-2 {
    bottom: 0; right: 0;
    transform: rotate(2deg);
    background-image: url('https://images.unsplash.com/photo-1467232004584-a241de8bcf5d?w=900&q=80');
}
.hero--weby .web-tile.t-3 {
    top: 38%; left: 42%;
    width: 50%;
    background-image: url('https://images.unsplash.com/photo-1545239351-ef35f43d514b?w=700&q=80');
    box-shadow: 0 30px 80px rgba(15,46,101,0.32), 0 0 0 1px rgba(15,46,101,0.1);
}
@media (max-width: 960px) {
    .hero--weby { grid-template-columns: 1fr; }
    .hero--weby .web-stack { height: 360px; }
}

/* ---- HOSTING hero: dark tech panel + terminal mockup ---- */
.hero--hosting {
    display: grid;
    grid-template-columns: 1fr 1.05fr;
    gap: 4rem;
    align-items: center;
    background:
      radial-gradient(700px 360px at 110% 20%, rgba(16,129,250,0.18), transparent 55%),
      linear-gradient(180deg, #0a1628 0%, #0f2e65 100%);
    color: #fff;
}
.hero--hosting h1 { color: #fff; }
.hero--hosting h1 em { color: #6db4ff; }
.hero--hosting .lede { color: rgba(255,255,255,0.78); }
.hero--hosting .hero-eyebrow {
    color: #cfe2ff;
    background: rgba(16,129,250,0.15);
    border-color: rgba(109,180,255,0.35);
}
.hero--hosting .btn-secondary {
    background: rgba(255,255,255,0.06);
    color: #fff;
    border-color: rgba(255,255,255,0.25);
    backdrop-filter: blur(6px);
}
.hero--hosting .pulse-row {
    display: flex; gap: 1.5rem; flex-wrap: wrap;
    margin-top: 2.25rem; padding-top: 1.75rem;
    border-top: 1px solid rgba(255,255,255,0.12);
}
.hero--hosting .pulse-item { display: flex; align-items: center; gap: 0.6rem; font-size: 0.85rem; color: rgba(255,255,255,0.75); }
.hero--hosting .pulse-dot {
    width: 8px; height: 8px; border-radius: 50%;
    background: #4ade80;
    box-shadow: 0 0 0 0 rgba(74,222,128,0.6);
    animation: pulse 1.8s infinite;
}
@keyframes pulse {
    0% { box-shadow: 0 0 0 0 rgba(74,222,128,0.55); }
    70% { box-shadow: 0 0 0 12px rgba(74,222,128,0); }
    100% { box-shadow: 0 0 0 0 rgba(74,222,128,0); }
}
.hero--hosting .terminal {
    background: #050c1a;
    border-radius: 14px;
    border: 1px solid rgba(255,255,255,0.08);
    box-shadow: 0 30px 80px rgba(0,0,0,0.5);
    overflow: hidden;
    font-family: 'JetBrains Mono', 'Menlo', monospace;
}
.hero--hosting .terminal-chrome {
    display: flex; align-items: center; gap: 6px;
    padding: 0.7rem 1rem;
    background: rgba(255,255,255,0.04);
    border-bottom: 1px solid rgba(255,255,255,0.06);
}
.hero--hosting .terminal-chrome span {
    width: 11px; height: 11px; border-radius: 50%;
    background: rgba(255,255,255,0.22);
}
.hero--hosting .terminal-chrome .tc-title {
    width: auto; height: auto; background: none;
    margin-left: 0.6rem; font-size: 0.72rem;
    color: rgba(255,255,255,0.5);
    font-family: 'Outfit', sans-serif;
    letter-spacing: 0.06em;
}
.hero--hosting .terminal pre {
    margin: 0;
    padding: 1.25rem 1.4rem;
    color: #cfe2ff;
    font-size: 0.85rem;
    line-height: 1.7;
    white-space: pre-wrap;
}
.hero--hosting .terminal .ln-prompt { color: #6db4ff; }
.hero--hosting .terminal .ln-ok { color: #4ade80; }
.hero--hosting .terminal .ln-dim { color: rgba(255,255,255,0.45); }
.hero--hosting .server-image {
    margin-top: 1.2rem;
    height: 130px;
    border-radius: 12px;
    background:
      linear-gradient(180deg, rgba(10,22,40,0.0), rgba(10,22,40,0.85)),
      url('https://images.unsplash.com/photo-1558494949-ef010cbdcc31?w=1200&q=80') center/cover;
    border: 1px solid rgba(255,255,255,0.08);
    display: flex; align-items: flex-end;
    padding: 0.9rem 1.1rem;
    font-size: 0.78rem;
    color: rgba(255,255,255,0.72);
    letter-spacing: 0.05em;
    text-transform: uppercase;
}
@media (max-width: 960px) {
    .hero--hosting { grid-template-columns: 1fr; gap: 2.5rem; }
}

/* ---- CLOUD hero: dashboard-style with overlapping panels ---- */
.hero--cloud {
    display: grid;
    grid-template-columns: 1fr 1.15fr;
    gap: 4rem;
    align-items: center;
    background:
      radial-gradient(900px 500px at 110% 110%, rgba(16,129,250,0.10), transparent 55%),
      linear-gradient(160deg, #f7f9fc 0%, #ffffff 60%);
}
.hero--cloud .dash-stack { position: relative; aspect-ratio: 1 / 1.05; }
.hero--cloud .dash-panel {
    position: absolute;
    background: #fff;
    border-radius: 16px;
    border: 1px solid var(--line);
    box-shadow: 0 30px 70px rgba(15,46,101,0.14);
    padding: 1.1rem 1.2rem;
}
.hero--cloud .dp-main { top: 0; left: 0; right: 18%; bottom: 22%; padding: 1.4rem; }
.hero--cloud .dp-side { bottom: 0; right: 0; width: 58%; top: 32%; }
.hero--cloud .dp-mini { top: 22%; right: 0; width: 38%; }
.hero--cloud .dp-label {
    font-size: 0.65rem; letter-spacing: 0.15em; text-transform: uppercase;
    color: var(--ink-300); margin-bottom: 0.4rem;
}
.hero--cloud .dp-value {
    font-family: 'DM Mono', monospace;
    font-weight: 700; font-size: 1.5rem; color: var(--ink-900);
    letter-spacing: -0.02em;
}
.hero--cloud .dp-meta {
    font-size: 0.75rem; color: #16a34a; margin-top: 0.25rem;
    display: inline-flex; align-items: center; gap: 0.3rem;
}
.hero--cloud .dp-bars {
    display: flex; align-items: flex-end; gap: 6px;
    height: 90px; margin-top: 1rem;
}
.hero--cloud .dp-bars span {
    flex: 1; background: linear-gradient(180deg, var(--brand), var(--brand-deep));
    border-radius: 4px 4px 0 0; opacity: 0.85;
}
.hero--cloud .dp-line {
    height: 70px; margin-top: 0.6rem;
    background: linear-gradient(180deg, rgba(16,129,250,0.18), transparent 80%);
    clip-path: polygon(0 90%, 8% 70%, 18% 75%, 30% 50%, 42% 55%, 56% 35%, 70% 40%, 82% 20%, 100% 25%, 100% 100%, 0 100%);
    border-radius: 6px;
}
.hero--cloud .dp-nodes {
    display: grid; grid-template-columns: repeat(4, 1fr); gap: 6px;
    margin-top: 0.6rem;
}
.hero--cloud .dp-nodes div {
    aspect-ratio: 1; border-radius: 6px;
    background: rgba(16,129,250,0.08);
    border: 1px solid rgba(16,129,250,0.18);
}
.hero--cloud .dp-nodes div:nth-child(3n) { background: rgba(16,129,250,0.28); }
@media (max-width: 960px) {
    .hero--cloud { grid-template-columns: 1fr; }
    .hero--cloud .dash-stack { aspect-ratio: 4/3; }
}

/* ---- MARKETING hero: bold typographic + photo card + chart tile ---- */
.hero--marketing {
    display: grid;
    grid-template-columns: 1.1fr 1fr;
    gap: 4rem;
    align-items: stretch;
    background:
      radial-gradient(800px 400px at 0% 0%, rgba(16,129,250,0.10), transparent 55%),
      linear-gradient(180deg, #ffffff, #f5f8fd);
}
.hero--marketing h1 {
    font-size: clamp(2.8rem, 6vw, 5rem);
    line-height: 0.98;
}
.hero--marketing .metric-row {
    display: grid; grid-template-columns: repeat(3, 1fr);
    gap: 1rem; margin-top: 2.5rem;
}
.hero--marketing .metric-tile {
    background: #fff;
    border: 1px solid var(--line);
    border-radius: 12px;
    padding: 1rem 1.1rem;
}
.hero--marketing .metric-tile .mt-val {
    font-family: 'DM Mono', monospace;
    font-weight: 700; font-size: 1.5rem;
    color: var(--brand-dark); letter-spacing: -0.02em;
}
.hero--marketing .metric-tile .mt-lbl {
    font-size: 0.72rem; color: var(--ink-300);
    margin-top: 0.2rem; letter-spacing: 0.05em;
}
.hero--marketing .photo-stack {
    display: grid; grid-template-rows: 1.3fr 1fr; gap: 1rem;
}
.hero--marketing .photo-main {
    border-radius: 18px; overflow: hidden;
    background:
      linear-gradient(180deg, rgba(8,15,28,0.0), rgba(8,15,28,0.45)),
      url('https://images.unsplash.com/photo-1552664730-d307ca884978?w=1200&q=80') center/cover;
    box-shadow: 0 25px 60px rgba(15,46,101,0.15);
    position: relative;
}
.hero--marketing .photo-main .photo-tag {
    position: absolute; bottom: 1rem; left: 1rem;
    background: rgba(255,255,255,0.95);
    color: var(--ink-900);
    padding: 0.5rem 0.9rem; border-radius: 999px;
    font-size: 0.72rem; letter-spacing: 0.1em;
    text-transform: uppercase; font-weight: 600;
}
.hero--marketing .photo-chart {
    background: #fff;
    border-radius: 18px;
    border: 1px solid var(--line);
    padding: 1.2rem 1.4rem;
    display: flex; flex-direction: column; justify-content: space-between;
    box-shadow: 0 25px 60px rgba(15,46,101,0.08);
}
.hero--marketing .photo-chart .pc-head {
    display: flex; justify-content: space-between; align-items: baseline;
}
.hero--marketing .photo-chart .pc-title {
    font-family: 'DM Mono', monospace;
    font-weight: 600; font-size: 0.85rem;
    color: var(--ink-700);
}
.hero--marketing .photo-chart .pc-delta {
    font-size: 0.8rem; color: #16a34a; font-weight: 600;
}
.hero--marketing .photo-chart .pc-graph {
    height: 80px; margin-top: 0.8rem;
    background: linear-gradient(180deg, rgba(16,129,250,0.22), transparent 90%);
    clip-path: polygon(0 100%, 0 80%, 12% 72%, 24% 76%, 38% 55%, 52% 60%, 66% 38%, 78% 42%, 90% 18%, 100% 14%, 100% 100%);
    border-radius: 8px;
}
@media (max-width: 960px) { .hero--marketing { grid-template-columns: 1fr; } }

/* ---- ORDER / PURCHASE pricing cards (replaces hosting pricing) ---- */
.order-pricing {
    padding: 5rem 2rem;
}
.order-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 1.5rem;
    max-width: 1200px;
    margin: 3rem auto 0;
}
.order-card {
    position: relative;
    background: #fff;
    border: 1px solid var(--line);
    border-radius: 18px;
    padding: 2rem 1.75rem 1.75rem;
    display: flex; flex-direction: column;
    transition: transform 0.25s ease, box-shadow 0.25s ease, border-color 0.25s ease;
}
.order-card:hover {
    transform: translateY(-4px);
    box-shadow: 0 25px 60px rgba(15,46,101,0.10);
    border-color: var(--line-strong);
}
.order-card.is-featured {
    background: linear-gradient(180deg, #0a1628 0%, #0f2e65 100%);
    color: #fff;
    border-color: transparent;
    box-shadow: 0 30px 70px rgba(15,46,101,0.25);
}
.order-card.is-featured .oc-tier,
.order-card.is-featured .oc-tagline,
.order-card.is-featured .oc-features li,
.order-card.is-featured .oc-amount,
.order-card.is-featured .oc-per { color: #fff; }
.order-card.is-featured .oc-features li::before { background: #6db4ff; }
.order-card.is-featured .oc-divider { border-color: rgba(255,255,255,0.12); }
.order-card .oc-badge {
    position: absolute; top: -10px; right: 1.5rem;
    background: var(--brand-dark);
    color: #fff;
    font-size: 0.65rem; letter-spacing: 0.16em;
    text-transform: uppercase; font-weight: 600;
    padding: 0.35rem 0.7rem; border-radius: 999px;
}
.order-card .oc-tier {
    font-family: 'DM Mono', monospace;
    font-weight: 600;
    font-size: 0.78rem;
    letter-spacing: 0.18em;
    text-transform: uppercase;
    color: var(--ink-300);
    margin-bottom: 1rem;
}
.order-card .oc-price {
    display: flex; align-items: baseline; gap: 0.4rem;
    margin-bottom: 1rem;
}
.order-card .oc-amount {
    font-family: 'Playfair Display', serif;
    font-size: 3.5rem; font-weight: 500;
    color: var(--ink-900); line-height: 1;
    letter-spacing: -0.03em;
}
.order-card .oc-per {
    font-size: 0.85rem; color: var(--ink-300); font-weight: 500;
}
.order-card .oc-tagline {
    color: var(--ink-300); font-size: 0.92rem;
    line-height: 1.6; margin-bottom: 1.25rem;
}
.order-card .oc-divider {
    border: none; border-top: 1px solid var(--line);
    margin: 0 0 1.25rem;
}
.order-card .oc-features {
    list-style: none; padding: 0; margin: 0 0 2rem;
    flex: 1;
}
.order-card .oc-features li {
    position: relative;
    padding-left: 1.4rem;
    font-size: 0.92rem;
    color: var(--ink-500);
    line-height: 1.5;
    margin-bottom: 0.7rem;
}
.order-card .oc-features li::before {
    content: ""; position: absolute;
    left: 0; top: 0.55rem;
    width: 6px; height: 6px; border-radius: 50%;
    background: var(--brand);
}
.order-card .oc-features li.is-placeholder {
    color: rgba(15,46,101,0.32);
    font-style: italic;
}
.order-card .oc-features li.is-placeholder::before { background: rgba(15,46,101,0.18); }
.order-card .oc-cta {
    display: inline-flex; align-items: center; justify-content: center;
    min-height: 3.1rem;
    border-radius: 999px;
    font-size: 0.78rem; font-weight: 600;
    letter-spacing: 0.12em; text-transform: uppercase;
    background: #fff; color: var(--brand-dark);
    border: 1px solid rgba(6, 110, 222, 0.25);
    transition: transform 0.2s ease, background 0.2s ease, color 0.2s ease;
}
.order-card .oc-cta:hover { transform: translateY(-1px); }
.order-card.is-featured .oc-cta {
    background: #fff; color: var(--brand-deep); border-color: #fff;
}
.order-card.is-featured .oc-cta:hover { background: #e9f1ff; }
.order-card .oc-fineprint {
    font-size: 0.72rem; color: var(--ink-300);
    text-align: center; margin: 0.8rem 0 0;
    letter-spacing: 0.02em;
}
.order-card.is-featured .oc-fineprint { color: rgba(255,255,255,0.55); }
@media (max-width: 920px) { .order-grid { grid-template-columns: 1fr; } }

/* ---- Image-led service rail (homepage) ---- */
.service-rail {
    padding: 5rem 2rem;
    max-width: 1300px;
    margin: 0 auto;
}
.service-rail-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 1.25rem;
    margin-top: 3rem;
}
.service-tile {
    position: relative;
    aspect-ratio: 3/4;
    border-radius: 18px;
    overflow: hidden;
    color: #fff;
    text-decoration: none;
    display: flex; flex-direction: column;
    justify-content: flex-end;
    padding: 1.5rem;
    box-shadow: 0 20px 50px rgba(15,46,101,0.14);
    transition: transform 300ms cubic-bezier(0.23, 1, 0.32, 1),
                box-shadow 300ms cubic-bezier(0.23, 1, 0.32, 1);
}
.service-tile::before {
    content: "";
    position: absolute; inset: 0;
    background-size: cover; background-position: center;
    transition: transform 500ms cubic-bezier(0.23, 1, 0.32, 1);
    z-index: 0;
}
.service-tile::after {
    content: "";
    position: absolute; inset: 0;
    background: linear-gradient(180deg, rgba(8,15,28,0.05) 0%, rgba(8,15,28,0.78) 100%);
    z-index: 1;
}
@media (hover: hover) and (pointer: fine) {
    .service-tile:hover { transform: translateY(-6px); box-shadow: 0 30px 70px rgba(15,46,101,0.22); }
    .service-tile:hover::before { transform: scale(1.06); }
}
.service-tile > * { position: relative; z-index: 2; }
.service-tile .st-kicker {
    font-family: 'DM Mono', monospace;
    font-size: 0.7rem; letter-spacing: 0.18em;
    text-transform: uppercase;
    opacity: 0.85; margin-bottom: 0.5rem;
}
.service-tile h3 {
    font-family: 'Playfair Display', serif;
    color: #fff; font-weight: 500;
    font-size: 1.7rem; line-height: 1.1;
    margin: 0 0 0.6rem;
    letter-spacing: -0.01em;
}
.service-tile p {
    color: rgba(255,255,255,0.82);
    font-size: 0.88rem; line-height: 1.55;
    margin: 0 0 1rem;
}
.service-tile .st-arrow {
    display: inline-flex; align-items: center; gap: 0.5rem;
    font-size: 0.75rem; letter-spacing: 0.14em;
    text-transform: uppercase; font-weight: 600;
}
.service-tile.st-web::before    { background-image: url('https://images.unsplash.com/photo-1547658719-da2b51169166?w=900&q=80'); }
.service-tile.st-hosting::before{ background-image: url('https://images.unsplash.com/photo-1558494949-ef010cbdcc31?w=900&q=80'); }
.service-tile.st-cloud::before  { background-image: url('https://images.unsplash.com/photo-1451187580459-43490279c0fa?w=900&q=80'); }
.service-tile.st-marketing::before { background-image: url('https://images.unsplash.com/photo-1460925895917-afdab827c52f?w=900&q=80'); }
@media (max-width: 980px) { .service-rail-grid { grid-template-columns: repeat(2, 1fr); } }
@media (max-width: 520px) { .service-rail-grid { grid-template-columns: 1fr; } }

/* ---- Trust strip with logos / signals ---- */
.trust-strip {
    padding: 3rem 2rem;
    background: var(--surface);
    border-top: 1px solid var(--line);
    border-bottom: 1px solid var(--line);
}
.trust-strip-inner {
    max-width: 1300px; margin: 0 auto;
    display: grid; grid-template-columns: 1fr 2fr;
    gap: 3rem; align-items: center;
}
.trust-strip .ts-title {
    font-family: 'DM Mono', monospace;
    font-size: 0.78rem;
    letter-spacing: 0.18em;
    text-transform: uppercase;
    color: var(--ink-300);
    margin: 0;
}
.trust-strip .ts-logos {
    overflow: hidden;
    mask-image: linear-gradient(to right, transparent, black 10%, black 90%, transparent);
    -webkit-mask-image: linear-gradient(to right, transparent, black 10%, black 90%, transparent);
}
.ts-track {
    display: flex;
    gap: 3rem;
    width: max-content;
    animation: marquee 22s linear infinite;
}
.ts-track span {
    font-family: 'DM Mono', monospace;
    font-size: 0.8rem;
    font-weight: 500;
    color: #5a6473;
    text-transform: uppercase;
    letter-spacing: 0.12em;
    white-space: nowrap;
    padding: 0.4rem 1.2rem;
    border: 1px solid rgba(15, 46, 101, 0.12);
    border-radius: 999px;
}
@keyframes marquee {
    from { transform: translateX(0); }
    to { transform: translateX(-50%); }
}
@media (prefers-reduced-motion: reduce) {
    .ts-track { animation: none; }
}
@media (max-width: 880px) {
    .trust-strip-inner { grid-template-columns: 1fr; gap: 1.5rem; }
}

/* ---- Image band for marketing/cloud breaks ---- */
.image-band {
    position: relative;
    min-height: 420px;
    margin: 5rem 0;
    background-size: cover;
    background-position: center;
    background-attachment: fixed;
    display: flex; align-items: center; justify-content: center;
    color: #fff;
    overflow: hidden;
}
.image-band::before {
    content: ""; position: absolute; inset: 0;
    background: linear-gradient(120deg, rgba(10,22,40,0.78) 0%, rgba(15,46,101,0.62) 100%);
}
.image-band > * { position: relative; z-index: 1; }
.image-band-content {
    max-width: 720px; padding: 4rem 2rem;
    text-align: center;
}
.image-band-content .eyebrow { color: rgba(255,255,255,0.7); }
.image-band-content h2 {
    color: #fff;
    font-family: 'Playfair Display', serif;
    font-size: clamp(2rem, 4vw, 3rem);
    font-weight: 500; line-height: 1.1;
    letter-spacing: -0.02em;
    margin: 0.5rem 0 1rem;
}
.image-band-content p {
    color: rgba(255,255,255,0.85);
    font-size: 1.05rem; line-height: 1.7;
}
.image-band.band-servers { background-image: url('https://images.unsplash.com/photo-1573164713988-8665fc963095?w=1800&q=80'); }
.image-band.band-team    { background-image: url('https://images.unsplash.com/photo-1522071820081-009f0129c71c?w=1800&q=80'); }
.image-band.band-network { background-image: url('https://images.unsplash.com/photo-1518770660439-4636190af475?w=1800&q=80'); }
.image-band.band-data    { background-image: url('https://images.unsplash.com/photo-1551288049-bebda4e38f71?w=1800&q=80'); }

/* ---- About strip (homepage) two-up image + text ---- */
.about-strip {
    padding: 6rem 2rem;
    max-width: 1300px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    align-items: center;
}
.about-strip .about-copy h2 {
    font-family: 'Playfair Display', serif;
    font-size: clamp(2rem, 4vw, 3rem);
    font-weight: 500;
    color: var(--ink-900);
    letter-spacing: -0.02em;
    line-height: 1.1;
    margin: 0.5rem 0 1.2rem;
}
.about-strip .about-copy p {
    color: var(--ink-300);
    line-height: 1.85;
    font-size: 1.02rem;
}
.about-strip .about-points {
    list-style: none; padding: 0; margin: 1.5rem 0 0;
    display: grid; gap: 0.8rem;
}
.about-strip .about-points li {
    display: flex; gap: 0.8rem; align-items: flex-start;
    color: var(--ink-500);
    font-size: 0.95rem;
}
.about-strip .about-points li::before {
    content: ""; flex: none;
    width: 18px; height: 18px; border-radius: 50%;
    background: rgba(16,129,250,0.12);
    border: 4px solid var(--brand);
    margin-top: 0.18rem;
}
.about-strip .about-photo {
    position: relative;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 1.5rem;
}
.about-stat-card {
    background: linear-gradient(160deg, #0a1628, #0d2040);
    border: 1px solid rgba(16, 129, 250, 0.2);
    border-radius: 20px;
    padding: 2.5rem 2rem;
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
    box-shadow: 0 32px 64px rgba(15, 46, 101, 0.25);
    width: 100%;
    max-width: 340px;
}
.asc-item {
    display: flex;
    flex-direction: column;
    gap: 0.25rem;
}
.asc-num {
    font-family: 'DM Mono', monospace;
    font-size: 2.8rem;
    font-weight: 400;
    color: #ffffff;
    line-height: 1;
    letter-spacing: -0.03em;
}
.asc-unit {
    font-size: 1.4rem;
    color: var(--accent-color);
    margin-left: 0.1rem;
}
.asc-label {
    font-family: 'DM Mono', monospace;
    font-size: 0.72rem;
    font-weight: 500;
    color: rgba(255, 255, 255, 0.5);
    text-transform: uppercase;
    letter-spacing: 0.14em;
}
.asc-divider {
    height: 1px;
    background: rgba(255, 255, 255, 0.08);
}
.about-strip .about-badge {
    background: rgba(255, 255, 255, 0.96);
    border-radius: 12px;
    padding: 0.9rem 1.2rem;
    backdrop-filter: blur(10px);
    align-self: flex-start;
    margin-left: 0.5rem;
}
.about-strip .about-badge .ab-num {
    font-family: 'DM Mono', monospace;
    font-weight: 700; font-size: 1.5rem;
    color: var(--ink-900);
}
.about-strip .about-badge .ab-lbl {
    font-size: 0.72rem; color: var(--ink-300);
    letter-spacing: 0.08em; text-transform: uppercase;
}
@media (max-width: 960px) {
    .about-strip { grid-template-columns: 1fr; padding: 4rem 2rem; }
}

/* ---- Image gallery (weby — replaces flat browser-mock visual) ---- */
.work-gallery {
    padding: 5rem 2rem;
    max-width: 1300px;
    margin: 0 auto;
}
.work-grid {
    display: grid;
    grid-template-columns: repeat(6, 1fr);
    grid-auto-rows: 180px;
    gap: 1rem;
    margin-top: 3rem;
}
.work-tile {
    border-radius: 14px;
    background-size: cover; background-position: center;
    position: relative; overflow: hidden;
    box-shadow: 0 14px 40px rgba(15,46,101,0.10);
}
.work-tile::after {
    content: "";
    position: absolute; inset: 0;
    background: linear-gradient(180deg, rgba(8,15,28,0) 40%, rgba(8,15,28,0.7) 100%);
    opacity: 0; transition: opacity 0.3s ease;
}
.work-tile:hover::after { opacity: 1; }
.work-tile .wt-label {
    position: absolute; left: 1rem; bottom: 1rem;
    color: #fff;
    font-family: 'DM Mono', monospace;
    font-weight: 600;
    font-size: 0.85rem;
    letter-spacing: 0.04em;
    opacity: 0; transform: translateY(8px);
    transition: opacity 0.3s ease, transform 0.3s ease;
    z-index: 1;
}
.work-tile:hover .wt-label { opacity: 1; transform: translateY(0); }
.work-tile.wt-1 { grid-column: span 4; grid-row: span 2; }
.work-tile.wt-2 { grid-column: span 2; }
.work-tile.wt-3 { grid-column: span 2; }
.work-tile.wt-4 { grid-column: span 2; grid-row: span 2; }
.work-tile.wt-5 { grid-column: span 2; }
.work-tile.wt-6 { grid-column: span 2; }
@media (max-width: 880px) {
    .work-grid { grid-template-columns: repeat(2, 1fr); grid-auto-rows: 160px; }
    .work-tile.wt-1, .work-tile.wt-4 { grid-column: span 2; grid-row: span 2; }
    .work-tile.wt-2, .work-tile.wt-3, .work-tile.wt-5, .work-tile.wt-6 { grid-column: span 1; grid-row: span 1; }
}

/* ---- Datacenter spec band (hosting) ---- */
.dc-band {
    position: relative;
    padding: 5rem 2rem;
    background:
      linear-gradient(180deg, rgba(10,22,40,0.92), rgba(15,46,101,0.92)),
      url('https://images.unsplash.com/photo-1597733336794-12d05021d510?w=1800&q=80') center/cover;
    color: #fff;
    overflow: hidden;
}
.dc-band-inner {
    max-width: 1300px; margin: 0 auto;
    display: grid; grid-template-columns: 1fr 1fr; gap: 3rem;
    align-items: center;
}
.dc-band h2 {
    color: #fff;
    font-family: 'Playfair Display', serif;
    font-weight: 500;
    font-size: clamp(2rem, 4vw, 3rem);
    letter-spacing: -0.02em;
    line-height: 1.1;
    margin: 0 0 1rem;
}
.dc-band p { color: rgba(255,255,255,0.78); line-height: 1.8; max-width: 32rem; }
.dc-grid {
    display: grid; grid-template-columns: repeat(2, 1fr);
    gap: 1.25rem;
}
.dc-stat {
    background: rgba(255,255,255,0.04);
    border: 1px solid rgba(255,255,255,0.1);
    border-radius: 14px;
    padding: 1.3rem 1.4rem;
}
.dc-stat .dc-val {
    font-family: 'DM Mono', monospace;
    font-weight: 700; font-size: 2rem;
    color: #fff; letter-spacing: -0.02em;
    display: block;
}
.dc-stat .dc-lbl {
    color: rgba(255,255,255,0.65);
    font-size: 0.78rem;
    letter-spacing: 0.1em;
    text-transform: uppercase;
    margin-top: 0.3rem;
    display: block;
}
.dc-stat .dc-sub {
    color: rgba(255,255,255,0.55);
    font-size: 0.78rem;
    line-height: 1.5;
    margin-top: 0.6rem;
}
@media (max-width: 960px) {
    .dc-band-inner { grid-template-columns: 1fr; }
}

/* ---- Logo links inside the navbar (active page underline) ---- */
.nav-links a.is-active {
    color: var(--brand);
    position: relative;
}
.nav-links a.is-active::after {
    content: ""; position: absolute;
    left: 0; right: 0; bottom: -8px;
    height: 2px; background: var(--brand);
    border-radius: 2px;
}

/* ---- mobile tidy for all new heroes ---- */
@media (max-width: 720px) {
    .page-hero { padding: 7rem 1.25rem 3rem; }
}


/* ============================================================
   V2.1 REFINEMENTS — more professional heroes, nav-on-dark,
   pricing button overflow fix.
   ============================================================ */

/* ---- Fix: pricing card buttons overflow (box-sizing) ---- */
.pricing-card .btn-primary,
.pricing-card .btn-secondary,
.order-card .oc-cta {
    box-sizing: border-box;
    width: 100%;
    padding: 0 1rem;
    white-space: nowrap;
}

/* ---- Hero refinement: smaller, tighter, business-like ---- */
.page-hero {
    padding: 7rem 2rem 3.5rem;
}
.page-hero h1 {
    font-family: 'Inter', 'DM Mono', monospace;
    font-weight: 600;
    font-size: clamp(1.75rem, 2.8vw, 2.5rem);
    line-height: 1.18;
    letter-spacing: -0.025em;
    margin: 0 0 1rem;
    max-width: 28rem;
}
.page-hero h1 em {
    font-style: normal;
    color: var(--brand-dark);
    font-weight: 600;
}
.hero--hosting h1 em { color: #6db4ff; }
.page-hero .lede {
    font-size: 0.98rem;
    line-height: 1.65;
    max-width: 30rem;
    color: var(--ink-300);
    margin: 0 0 1.75rem;
}
.page-hero .hero-eyebrow {
    font-size: 0.65rem;
    letter-spacing: 0.25em;
    padding: 0.4rem 0.75rem;
    margin-bottom: 1rem;
}
.page-hero .hero-eyebrow::before {
    width: 5px; height: 5px;
    box-shadow: 0 0 0 3px rgba(16,129,250,0.18);
}

/* Refine action buttons inside hero — slightly smaller, more utilitarian */
.page-hero .btn-primary,
.page-hero .btn-secondary {
    min-height: 2.75rem;
    padding: 0 1.25rem;
    font-size: 0.74rem;
    letter-spacing: 0.1em;
}

/* Tighten hero-home stats */
.hero--home .hero-stats {
    margin-top: 2rem;
    padding-top: 1.5rem;
    gap: 1.25rem;
}
.hero--home .hero-stats .stat-num { font-size: 1.4rem; }
.hero--home .hero-stats .stat-lbl { font-size: 0.7rem; letter-spacing: 0.08em; text-transform: uppercase; }

/* Marketing metric tiles smaller */
.hero--marketing .metric-row { margin-top: 2rem; }
.hero--marketing .metric-tile { padding: 0.8rem 0.9rem; }
.hero--marketing .metric-tile .mt-val { font-size: 1.15rem; }
.hero--marketing .metric-tile .mt-lbl { font-size: 0.65rem; text-transform: uppercase; letter-spacing: 0.06em; }

/* Hosting pulse row smaller */
.hero--hosting .pulse-row { gap: 1.25rem; margin-top: 1.75rem; padding-top: 1.25rem; }
.hero--hosting .pulse-item { font-size: 0.78rem; }
.hero--hosting .terminal pre { font-size: 0.78rem; padding: 1rem 1.15rem; line-height: 1.6; }
.hero--hosting .server-image { height: 100px; font-size: 0.7rem; }

/* Cloud dashboard slightly tighter */
.hero--cloud .dp-value { font-size: 1.25rem; }
.hero--cloud .dp-label { font-size: 0.6rem; letter-spacing: 0.12em; }
.hero--cloud .dp-bars { height: 70px; }

/* ---- Nav: adapt to background ----
   Default (light-bg pages): keep existing navlinks color.
   On dark hero, toggle .is-on-dark via JS. */
.navbar.is-on-dark {
    background: rgba(8, 16, 32, 0.55);
    backdrop-filter: blur(14px);
    -webkit-backdrop-filter: blur(14px);
    transition: background 0.3s ease;
}
.navbar.is-on-dark .nav-links a {
    color: rgba(255, 255, 255, 0.85);
}
.navbar.is-on-dark .nav-links a:hover,
.navbar.is-on-dark .nav-links a:focus-visible {
    color: #ffffff;
    opacity: 1;
}
.navbar.is-on-dark .nav-links a.is-active {
    color: #6db4ff;
}
.navbar.is-on-dark .nav-links a.is-active::after {
    background: #6db4ff;
}
.navbar.is-on-dark .nav-burger span {
    background: #ffffff;
}
/* Light state — explicit so transitions are smooth */
.navbar {
    transition: background 0.3s ease, backdrop-filter 0.3s ease;
}
.nav-links a {
    transition: color 0.25s ease, opacity 0.25s ease;
}

/* Optional: blend mode fallback for sections we don't sentinel */
@supports (mix-blend-mode: difference) {
    .navbar.is-blend .nav-links a {
        color: #fff;
        mix-blend-mode: difference;
    }
}



/* ============================================================
   V2.2 — only the Weby hero gets SVG mocks (no stock photos).
   All other pages keep their photo backgrounds.
   ============================================================ */

.hero--weby .web-tile { background-image: none !important; }
.hero--weby .web-tile {
    background: #ffffff;
    overflow: hidden;
}
.hero--weby .web-tile::before {
    content: "";
    position: absolute; inset: 0 0 auto 0;
    height: 32px;
    background: linear-gradient(180deg, #f1f5fb, #e6ecf5);
    border-bottom: 1px solid rgba(15,46,101,0.08);
}
.hero--weby .web-tile::after {
    content: "● ● ●";
    position: absolute; top: 9px; left: 14px;
    color: rgba(15,46,101,0.18);
    font-size: 10px; letter-spacing: 4px;
}
.hero--weby .web-tile.t-1 {
    background:
      linear-gradient(180deg, transparent 32px, #fff 32px) 0 0 / 100% 100%,
      linear-gradient(135deg, #6db4ff 0%, #066ede 100%);
}
.hero--weby .web-tile.t-1 > i {
    position: absolute; top: 60px; left: 24px; right: 24px; bottom: 24px;
    background:
      linear-gradient(rgba(15,46,101,0.08) 8px, transparent 8px) 0 0 / 100% 22px,
      linear-gradient(rgba(15,46,101,0.05) 6px, transparent 6px) 0 60px / 60% 18px,
      linear-gradient(rgba(15,46,101,0.05) 6px, transparent 6px) 0 90px / 80% 18px,
      linear-gradient(135deg, rgba(16,129,250,0.18), rgba(16,129,250,0.06)) 0 130px / 35% 60px no-repeat;
    border-radius: 8px;
}
.hero--weby .web-tile.t-2 {
    background:
      linear-gradient(180deg, transparent 32px, #0a1628 32px) 0 0 / 100% 100%;
    color: #fff;
}
.hero--weby .web-tile.t-2 > i {
    position: absolute; top: 60px; left: 24px; right: 24px; bottom: 24px;
    background:
      linear-gradient(rgba(255,255,255,0.16) 8px, transparent 8px) 0 0 / 50% 22px,
      linear-gradient(rgba(109,180,255,0.45) 4px, transparent 4px) 0 38px / 70% 16px,
      linear-gradient(rgba(255,255,255,0.08) 4px, transparent 4px) 0 62px / 90% 14px,
      linear-gradient(rgba(255,255,255,0.08) 4px, transparent 4px) 0 82px / 80% 14px;
    border-radius: 8px;
}
.hero--weby .web-tile.t-3 {
    background:
      linear-gradient(180deg, transparent 32px, #fff 32px),
      linear-gradient(160deg, #f7f9fc 0%, #e7eef9 100%);
}
.hero--weby .web-tile.t-3 > i {
    position: absolute; top: 50px; left: 18px; right: 18px; bottom: 18px;
    background:
      linear-gradient(135deg, rgba(16,129,250,0.18), rgba(16,129,250,0.05)) 0 0 / 100% 60px no-repeat,
      linear-gradient(rgba(15,46,101,0.08) 6px, transparent 6px) 0 75px / 70% 18px,
      linear-gradient(rgba(15,46,101,0.06) 4px, transparent 4px) 0 100px / 90% 14px;
    border-radius: 6px;
}


/* ============================================================
   V2.3 — Client logo strip (references)
   ============================================================ */
.client-logos {
    max-width: 1200px;
    margin: 3rem auto 0;
    padding: 0 2rem;
    display: grid;
    grid-template-columns: repeat(6, 1fr);
    gap: 1rem;
}
.client-logo {
    height: 100px;
    background: #ffffff;
    border: 1px solid rgba(15, 46, 101, 0.08);
    border-radius: 14px;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 1rem;
    font-family: 'DM Mono', monospace;
    font-weight: 600;
    font-size: 0.95rem;
    color: #5a6473;
    letter-spacing: 0.02em;
    text-align: center;
    transition: transform 0.25s ease, border-color 0.25s ease, box-shadow 0.25s ease, color 0.25s ease;
    user-select: none;
}
.client-logo:hover {
    transform: translateY(-3px);
    border-color: rgba(15, 46, 101, 0.18);
    box-shadow: 0 14px 30px rgba(15, 46, 101, 0.08);
    color: #0a1628;
}
.client-logo img {
    max-height: 56px;
    max-width: 100%;
    object-fit: contain;
    filter: grayscale(1);
    opacity: 0.75;
    transition: filter 0.25s ease, opacity 0.25s ease;
}
.client-logo:hover img {
    filter: grayscale(0);
    opacity: 1;
}
@media (max-width: 980px) { .client-logos { grid-template-columns: repeat(3, 1fr); } }
@media (max-width: 520px) { .client-logos { grid-template-columns: repeat(2, 1fr); } .client-logo { height: 84px; font-size: 0.85rem; } }


/* ============================================================
   V2.4 — Cloud hero right-side: single compact panel
   ============================================================ */

/* Neutralize the tall stacked dashboards */
.hero--cloud .dash-stack { aspect-ratio: auto; height: auto; }
.hero--cloud .dash-stack .dash-panel { display: none; }

/* New compact infrastructure panel */
.hero--cloud .infra-panel {
    background: #ffffff;
    border-radius: 18px;
    border: 1px solid rgba(15, 46, 101, 0.08);
    box-shadow: 0 30px 60px rgba(15, 46, 101, 0.10);
    padding: 1.3rem 1.4rem;
    display: grid;
    gap: 1.1rem;
    max-width: 480px;
    width: 100%;
    margin-left: auto;
}
.hero--cloud .ip-head {
    display: flex; align-items: center; justify-content: space-between;
    padding-bottom: 0.9rem;
    border-bottom: 1px solid rgba(15, 46, 101, 0.06);
}
.hero--cloud .ip-title {
    font-family: 'DM Mono', monospace;
    font-weight: 600; font-size: 0.85rem;
    color: #0a1628;
    display: flex; align-items: center; gap: 0.55rem;
}
.hero--cloud .ip-title::before {
    content: ""; width: 7px; height: 7px; border-radius: 50%;
    background: #4ade80;
    box-shadow: 0 0 0 3px rgba(74,222,128,0.18);
}
.hero--cloud .ip-meta {
    font-size: 0.7rem; color: #5a6473;
    letter-spacing: 0.08em;
    text-transform: uppercase;
}
.hero--cloud .ip-nodes {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 0.5rem;
}
.hero--cloud .ip-node {
    background: rgba(16, 129, 250, 0.05);
    border: 1px solid rgba(16, 129, 250, 0.12);
    border-radius: 8px;
    padding: 0.55rem 0.6rem;
    display: flex; flex-direction: column; gap: 0.3rem;
}
.hero--cloud .ip-node-label {
    font-family: 'DM Mono', monospace;
    font-size: 0.62rem;
    letter-spacing: 0.08em;
    color: #5a6473;
    text-transform: uppercase;
}
.hero--cloud .ip-node-bar {
    height: 4px; border-radius: 999px;
    background: rgba(16, 129, 250, 0.12);
    overflow: hidden;
    position: relative;
}
.hero--cloud .ip-node-bar::after {
    content: ""; position: absolute; left: 0; top: 0; bottom: 0;
    width: var(--load, 50%);
    background: linear-gradient(90deg, #1081fa, #066ede);
    border-radius: 999px;
}
.hero--cloud .ip-row {
    display: grid; grid-template-columns: 1fr 1fr; gap: 1rem;
    padding-top: 0.4rem;
}
.hero--cloud .ip-stat .ip-val {
    font-family: 'DM Mono', monospace;
    font-weight: 700;
    font-size: 1.4rem;
    color: #0a1628;
    letter-spacing: -0.02em;
    line-height: 1;
}
.hero--cloud .ip-stat .ip-lbl {
    font-size: 0.66rem;
    letter-spacing: 0.1em;
    color: #5a6473;
    text-transform: uppercase;
    margin-top: 0.35rem;
}
.hero--cloud .ip-graph {
    height: 56px;
    background: linear-gradient(180deg, rgba(16,129,250,0.22), rgba(16,129,250,0));
    clip-path: polygon(0 100%, 0 70%, 12% 60%, 24% 65%, 38% 45%, 52% 50%, 66% 30%, 78% 38%, 90% 18%, 100% 22%, 100% 100%);
    border-radius: 6px;
}

@media (max-width: 960px) {
    .hero--cloud .infra-panel { margin-left: 0; max-width: 100%; }
}


/* ============================================================
   V2.5 — Weby hero matches hosting hero (dark)
   ============================================================ */
.hero--weby {
    background:
      radial-gradient(700px 360px at 110% 20%, rgba(16,129,250,0.18), transparent 55%),
      linear-gradient(180deg, #0a1628 0%, #0f2e65 100%);
    color: #ffffff;
}
.hero--weby h1 { color: #ffffff; }
.hero--weby h1 em { color: #6db4ff; }
.hero--weby .lede { color: rgba(255, 255, 255, 0.78); }
.hero--weby .hero-eyebrow {
    color: #cfe2ff;
    background: rgba(16, 129, 250, 0.15);
    border-color: rgba(109, 180, 255, 0.35);
}
.hero--weby .btn-secondary {
    background: rgba(255, 255, 255, 0.06);
    color: #ffffff;
    border-color: rgba(255, 255, 255, 0.25);
    backdrop-filter: blur(6px);
}


/* ============================================================
   V2.6 — Weby hero tiles readable on dark background
   ============================================================ */
.hero--weby .web-tile {
    box-shadow:
      0 30px 80px rgba(0, 0, 0, 0.45),
      0 0 0 1px rgba(255, 255, 255, 0.06),
      0 0 60px rgba(109, 180, 255, 0.10);
}

/* t-2 was near-black on near-black — switch to brand blue */
.hero--weby .web-tile.t-2 {
    background:
      linear-gradient(180deg, transparent 32px, #066ede 32px) 0 0 / 100% 100%,
      linear-gradient(160deg, #1081fa 0%, #066ede 100%) !important;
}
.hero--weby .web-tile.t-2::before {
    background: linear-gradient(180deg, #0a1628, #12284c);
    border-bottom: 1px solid rgba(255, 255, 255, 0.08);
}
.hero--weby .web-tile.t-2::after { color: rgba(255, 255, 255, 0.35); }
.hero--weby .web-tile.t-2 > i {
    background:
      linear-gradient(rgba(255, 255, 255, 0.28) 8px, transparent 8px) 0 0 / 50% 22px,
      linear-gradient(rgba(255, 255, 255, 0.55) 4px, transparent 4px) 0 38px / 70% 16px,
      linear-gradient(rgba(255, 255, 255, 0.16) 4px, transparent 4px) 0 62px / 90% 14px,
      linear-gradient(rgba(255, 255, 255, 0.16) 4px, transparent 4px) 0 82px / 80% 14px;
}

/* Slight outer ring + warmer tint on the highlighted t-3 */
.hero--weby .web-tile.t-3 {
    box-shadow:
      0 35px 90px rgba(0, 0, 0, 0.55),
      0 0 0 1px rgba(109, 180, 255, 0.25),
      0 0 80px rgba(109, 180, 255, 0.22);
}


/* ============================================================
   V2.7 — Weby hero: drop t-3, redesign t-2 as a stat card
   ============================================================ */
.hero--weby .web-stack { height: 420px; }
.hero--weby .web-tile.t-1 {
    top: 0; left: 0;
    width: 70%;
    transform: rotate(-2deg);
}
.hero--weby .web-tile.t-2 {
    /* override the old mockup-style layout */
    bottom: 0; right: 0; top: auto; left: auto;
    width: 55%;
    aspect-ratio: auto;
    height: 220px;
    transform: rotate(2deg);
    background: #ffffff !important;
    border-radius: 16px;
    overflow: hidden;
    padding: 0;
    box-shadow:
      0 35px 80px rgba(0, 0, 0, 0.5),
      0 0 0 1px rgba(109, 180, 255, 0.18),
      0 0 80px rgba(109, 180, 255, 0.22);
}
.hero--weby .web-tile.t-2::before,
.hero--weby .web-tile.t-2::after { content: none; display: none; }

.hero--weby .t2-card {
    padding: 1.4rem 1.5rem;
    height: 100%;
    display: flex; flex-direction: column; gap: 0.4rem;
    position: relative;
    background:
      radial-gradient(circle at 100% 0%, rgba(16,129,250,0.10), transparent 55%),
      #ffffff;
}
.hero--weby .t2-card::before {
    content: ""; position: absolute; top: 0; left: 0; right: 0;
    height: 3px;
    background: linear-gradient(90deg, #6db4ff 0%, #1081fa 50%, #066ede 100%);
}
.hero--weby .t2-label {
    font-family: 'DM Mono', monospace;
    font-size: 0.7rem;
    letter-spacing: 0.16em;
    text-transform: uppercase;
    color: #5a6473;
}
.hero--weby .t2-value {
    font-family: 'DM Mono', monospace;
    font-weight: 700;
    font-size: 2.6rem;
    line-height: 1;
    color: #0a1628;
    letter-spacing: -0.03em;
    margin-top: 0.2rem;
}
.hero--weby .t2-value span {
    font-size: 1.2rem;
    color: #066ede;
    margin-left: 0.2rem;
    font-weight: 600;
}
.hero--weby .t2-sub {
    font-size: 0.78rem;
    color: #5a6473;
    line-height: 1.45;
    margin-top: 0.1rem;
}
.hero--weby .t2-spark {
    width: 100%;
    height: 38px;
    margin-top: auto;
}

/* Hide the deleted third tile entirely if cached elsewhere */
.hero--weby .web-tile.t-3 { display: none !important; }

@media (max-width: 960px) {
    .hero--weby .web-stack { height: 360px; }
    .hero--weby .web-tile.t-1 { width: 75%; }
    .hero--weby .web-tile.t-2 { width: 65%; height: 180px; }
}


/* ============================================================
   V2.8 — t-2 is now a webpage SVG mock
   ============================================================ */
.hero--weby .web-tile.t-2 {
    padding: 0;
}
.hero--weby .web-tile.t-2 .t2-page {
    display: block;
    width: 100%;
    height: 100%;
}
/* Neutralize the old stat-card pieces if any cached HTML remains */
.hero--weby .t2-card,
.hero--weby .t2-label,
.hero--weby .t2-value,
.hero--weby .t2-sub,
.hero--weby .t2-spark { display: none; }


/* ============================================================
   V2.9 — Home hero: compact, editorial, single column
   ============================================================ */
.hero--home {
    display: block;
    padding: 7rem 2rem 3.5rem;
    background:
      radial-gradient(900px 460px at 100% 0%, rgba(16,129,250,0.08), transparent 60%),
      linear-gradient(180deg, #ffffff, #f7f9fc);
}
.hero--home .home-hero-inner {
    max-width: 760px;
    margin: 0 auto 0 max(2rem, calc((100vw - 1300px) / 2));
}
.hero--home .home-hero-inner .lede { max-width: 38rem; }
@media (max-width: 1340px) {
    .hero--home .home-hero-inner { margin-left: 0; }
}


/* ============================================================
   V3.0 — Home hero: 2x2 service icon grid alongside text
   ============================================================ */
.hero--home {
    display: grid;
    grid-template-columns: 1.15fr 1fr;
    gap: 4rem;
    align-items: center;
    max-width: 1300px;
    margin: 0 auto;
}
.hero--home .home-hero-inner {
    margin: 0;
    max-width: 32rem;
}
.home-hero-art {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 1rem;
    max-width: 440px;
    margin-left: auto;
    width: 100%;
}
.hha-tile {
    position: relative;
    aspect-ratio: 1;
    background: #ffffff;
    border: 1px solid rgba(15, 46, 101, 0.08);
    border-radius: 18px;
    padding: 1.4rem;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    color: #0a1628;
    text-decoration: none;
    box-shadow: 0 12px 30px rgba(15, 46, 101, 0.06);
    overflow: hidden;
    transition: transform 0.3s ease, border-color 0.3s ease, box-shadow 0.3s ease, color 0.3s ease;
}
.hha-tile::before {
    content: "";
    position: absolute;
    inset: 0;
    background: linear-gradient(160deg, rgba(16, 129, 250, 0), rgba(16, 129, 250, 0.06));
    opacity: 0;
    transition: opacity 0.3s ease;
}
.hha-tile:hover {
    transform: translateY(-4px);
    border-color: rgba(16, 129, 250, 0.25);
    box-shadow: 0 24px 50px rgba(15, 46, 101, 0.12);
}
.hha-tile:hover::before { opacity: 1; }
.hha-tile svg {
    width: 36px;
    height: 36px;
    color: #066ede;
    transition: color 0.3s ease, transform 0.3s ease;
    position: relative;
}
.hha-tile:hover svg { transform: translate(-2px, -2px); }
.hha-label {
    font-family: 'DM Mono', monospace;
    font-weight: 600;
    font-size: 0.95rem;
    color: #0a1628;
    letter-spacing: -0.01em;
    position: relative;
}

/* Featured (alternating) variation — invert one tile for visual rhythm */
.hha-cloud {
    background: linear-gradient(160deg, #0a1628 0%, #0f2e65 100%);
    border-color: transparent;
    color: #ffffff;
    box-shadow: 0 18px 40px rgba(15, 46, 101, 0.18);
}
.hha-cloud .hha-label { color: #ffffff; }
.hha-cloud svg { color: #6db4ff; }
.hha-cloud::before {
    background:
      radial-gradient(circle at 80% 20%, rgba(109,180,255,0.25), transparent 55%),
      linear-gradient(rgba(255,255,255,0.04) 1px, transparent 1px) 0 0 / 100% 14px;
    opacity: 1;
}

@media (max-width: 960px) {
    .hero--home {
        grid-template-columns: 1fr;
        gap: 2.5rem;
        padding: 6.5rem 2rem 3rem;
    }
    .home-hero-art {
        margin: 0 auto;
        max-width: 360px;
    }
}
@media (max-width: 480px) {
    .home-hero-art { gap: 0.75rem; }
    .hha-tile { padding: 1.1rem; }
    .hha-tile svg { width: 28px; height: 28px; }
}


/* ============================================================
   V3.1 — Cursor/SVG safety
   ============================================================ */
/* Cursor — force visible above any stacking context */
.cursor,
.cursor-dot {
    z-index: 2147483647 !important;
    pointer-events: none !important;
    opacity: 1;
}
body.no-cursor .cursor,
body.no-cursor .cursor-dot { display: none !important; }

/* hha-tile content stacking — make sure ::before pseudo never covers svg/label */
.hha-tile::before { z-index: 0; }
.hha-tile svg,
.hha-tile .hha-label { position: relative; z-index: 1; }

/* Force the SVG to render even if some inherited rule shrank it */
.hha-tile svg {
    display: block;
    flex: none;
    min-width: 28px;
    min-height: 28px;
}

/* Weby SVG webpage mock — make sure it fills the tile */
.hero--weby .web-tile.t-2 .t2-page {
    display: block !important;
    width: 100% !important;
    height: 100% !important;
}
