/* ============================================================
 * Island Intelligence - sunny design system
 * Mediterranean · editorial · GPU translate3d · hairline 1px lines
 * ============================================================ */

:root {
    /* === Mediterranean palette === */
    --bg: #fbf3df;
    --bg-deep: #f3e9cf;
    --paper: #fffaeb;
    --paper-strong: #fff6e0;
    --surface: rgba(255, 250, 232, 0.78);
    --ink: #0c2a23;
    --ink-soft: #122f29;
    --ink-mid: rgba(14, 47, 41, 0.7);
    --ink-faint: rgba(14, 47, 41, 0.46);
    --line: rgba(14, 47, 41, 0.14);
    --line-strong: rgba(14, 47, 41, 0.28);
    --line-soft: rgba(14, 47, 41, 0.08);

    /* Primary green tonality */
    --teal: #1f7a6e;
    --teal-deep: #0f4a45;
    --teal-ink: #073431;
    --teal-soft: #d9ede6;
    --olive: #5a7d4a;

    /* Sunshine */
    --gold: #f2b842;
    --gold-soft: rgba(242, 184, 66, 0.22);
    --sun: #ffd364;
    --sun-deep: #f5a623;

    /* Coastal accents */
    --coral: #ee7a5f;
    --coral-soft: #fcd9c8;
    --sky: #6bb6c6;
    --sand: #ead2a3;

    --shadow-card: 0 22px 60px -28px rgba(12, 42, 35, 0.36), 0 4px 12px -6px rgba(12, 42, 35, 0.06);
    --shadow-deep: 0 40px 100px -42px rgba(12, 42, 35, 0.42), 0 8px 20px -10px rgba(12, 42, 35, 0.08);
    --shadow-pop: 0 18px 38px rgba(15, 74, 69, 0.18);
    --shadow-sun: 0 22px 60px -28px rgba(242, 184, 66, 0.5);

    --s-1: 4px;
    --s-2: 8px;
    --s-3: 12px;
    --s-4: 16px;
    --s-5: 24px;
    --s-6: 32px;
    --s-7: 48px;
    --s-8: 64px;
    --s-9: 96px;
    --s-10: 128px;
    --s-11: 160px;
    --s-12: 200px;

    --r-pill: 999px;
    --r-xl: 28px;
    --r-lg: 22px;
    --r-md: 16px;
    --r-sm: 10px;

    --container: min(1240px, calc(100vw - 48px));
    --nav-offset: 96px;

    --ease-out: cubic-bezier(0.22, 1, 0.36, 1);
    --ease-spring: cubic-bezier(0.34, 1.56, 0.64, 1);
    --ease-in-out: cubic-bezier(0.65, 0, 0.35, 1);

    --f-display: "Bricolage Grotesque", "Inter", -apple-system, BlinkMacSystemFont, sans-serif;
    --f-sans: "Inter", -apple-system, BlinkMacSystemFont, sans-serif;
    --f-mono: "JetBrains Mono", ui-monospace, "SF Mono", Menlo, monospace;
}

@media (max-width: 720px) {
    :root {
        --container: min(1240px, calc(100vw - 32px));
        --nav-offset: 84px;
    }
}

* {
    box-sizing: border-box;
    -webkit-tap-highlight-color: transparent;
}

html {
    scroll-behavior: smooth;
    --scroll-p: 0;
}

body {
    margin: 0;
    min-width: 320px;
    background: var(--bg);
    color: var(--ink);
    font-family: var(--f-sans);
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
    text-rendering: optimizeLegibility;
    overflow-x: hidden;
}

img { display: block; max-width: 100%; }
a { color: inherit; }
body.menu-open { overflow: hidden; }

main > section,
section[id],
#book {
    scroll-margin-top: calc(var(--nav-offset) + 24px);
}

section[data-scene] {
    --scene-enter: 1;
    --scene-exit: 0;
    --scene-p: 0;
    --scene-center: 0;
    isolation: isolate;
}

section[data-scene]:not(.hero)::before {
    content: "";
    position: absolute;
    left: max(24px, calc((100vw - 1240px) / 2));
    right: max(24px, calc((100vw - 1240px) / 2));
    top: clamp(34px, 5vw, 72px);
    height: 1px;
    pointer-events: none;
    background: linear-gradient(90deg, transparent, rgba(31, 122, 110, 0.22), rgba(242, 184, 66, 0.3), transparent);
    opacity: calc(var(--scene-enter) * 0.8);
    transform: scaleX(calc(0.35 + var(--scene-center) * 0.65));
    transform-origin: center;
    z-index: 0;
}

/* Layered background - warm Mediterranean gradient + faint paper grid */
.homepage::before {
    content: "";
    position: fixed;
    inset: 0;
    z-index: -3;
    pointer-events: none;
    background:
        radial-gradient(60% 40% at 10% -5%, rgba(242, 184, 66, 0.42), transparent 60%),
        radial-gradient(50% 50% at 95% -5%, rgba(238, 122, 95, 0.28), transparent 60%),
        radial-gradient(45% 50% at 50% 105%, rgba(31, 122, 110, 0.18), transparent 60%),
        linear-gradient(180deg, #fff6df 0%, #fbf0d4 45%, #f4e9cf 100%);
}

.homepage::after {
    content: "";
    position: fixed;
    inset: 0;
    z-index: -2;
    pointer-events: none;
    opacity: 0.6;
    background:
        linear-gradient(90deg, rgba(14, 47, 41, 0.045) 1px, transparent 1px) 0 0 / 96px 96px,
        linear-gradient(0deg, rgba(14, 47, 41, 0.035) 1px, transparent 1px) 0 0 / 96px 96px;
    mask-image: radial-gradient(80% 80% at 50% 30%, #000 30%, transparent 78%);
    transform: translate3d(0, calc(var(--scroll-p) * -60px), 0);
    will-change: transform;
}

.signal-canvas {
    position: fixed;
    inset: 0;
    z-index: -1;
    width: 100vw;
    height: 100vh;
    pointer-events: none;
    opacity: 0.6;
}

.cursor-light {
    position: fixed;
    top: 0;
    left: 0;
    z-index: 0;
    width: 520px;
    height: 520px;
    border-radius: 50%;
    pointer-events: none;
    background: radial-gradient(circle, rgba(255, 211, 100, 0.28), rgba(31, 122, 110, 0.05) 40%, transparent 70%);
    mix-blend-mode: multiply;
    opacity: 0.75;
    will-change: transform;
}

.scroll-progress {
    position: fixed;
    top: 0;
    left: 0;
    z-index: 1100;
    width: 100%;
    height: 2px;
    transform-origin: 0 50%;
    transform: scaleX(0);
    background: linear-gradient(90deg, var(--sun), var(--coral), var(--teal));
}

/* ============ Typography ============ */

.display {
    margin: 0;
    font-family: var(--f-display);
    font-weight: 600;
    letter-spacing: -0.035em;
    line-height: 1;
    color: var(--ink-soft);
    font-feature-settings: "ss01";
}

.display-hero {
    font-size: clamp(2.8rem, 7.7vw, 6.05rem);
    font-weight: 600;
    letter-spacing: -0.045em;
    line-height: 0.96;
}

.display-section {
    font-size: clamp(2rem, 5.4vw, 4rem);
    letter-spacing: -0.04em;
    line-height: 1.02;
}

.display-on-dark {
    color: #fff6df;
}

.line {
    display: block;
    overflow: hidden;
    padding-bottom: 0.06em;
}

.line .line-inner {
    display: block;
    transform: translate3d(0, 110%, 0);
    transition: transform 1100ms var(--ease-out);
    transition-delay: var(--reveal-delay, 0ms);
}

[data-revealed].line .line-inner,
.line[data-revealed] .line-inner {
    transform: translate3d(0, 0, 0);
}

/* Highlight word - sunshine underline + warm color */
.hl {
    position: relative;
    color: var(--teal-deep);
    background: linear-gradient(180deg, transparent 64%, rgba(255, 211, 100, 0.55) 64%, rgba(238, 122, 95, 0.42) 92%, transparent 92%);
    padding: 0 0.06em;
    border-radius: 4px;
    white-space: nowrap;
}

.t-headline {
    margin: 0 0 var(--s-4);
    font-family: var(--f-display);
    font-weight: 600;
    letter-spacing: -0.02em;
    font-size: clamp(1.4rem, 2.4vw, 1.95rem);
    line-height: 1.18;
    color: var(--ink-soft);
}

.t-body {
    margin: 0 0 var(--s-4);
    color: var(--ink-mid);
    font-size: 1.02rem;
    line-height: 1.78;
}

.t-body:last-child { margin-bottom: 0; }

.lede {
    margin: var(--s-4) 0 0;
    max-width: 56ch;
    color: var(--ink-mid);
    font-size: clamp(1.02rem, 1.4vw, 1.18rem);
    line-height: 1.7;
}

.lede-tight {
    margin-top: 0;
    max-width: 46ch;
}

.lede-on-dark {
    color: rgba(255, 246, 223, 0.82);
}

.micro-label {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    color: var(--teal);
    font-family: var(--f-mono);
    font-size: 0.74rem;
    font-weight: 600;
    letter-spacing: 0.16em;
    text-transform: uppercase;
}

.eyebrow {
    display: inline-flex;
    align-items: center;
    gap: 12px;
    padding: 0;
    border-radius: 0;
    background: transparent;
    border: 0;
    color: var(--teal-deep);
    font-family: var(--f-mono);
    font-size: 0.72rem;
    font-weight: 600;
    letter-spacing: 0.16em;
    text-transform: uppercase;
    backdrop-filter: none;
    box-shadow: none;
}

.eyebrow-bullet {
    width: 34px;
    height: 1px;
    border-radius: 999px;
    background: linear-gradient(90deg, var(--coral), rgba(242, 184, 66, 0.6), transparent);
    box-shadow: none;
}

.eyebrow-sun {
    width: 16px;
    height: 16px;
    border-radius: 50%;
    background:
        radial-gradient(circle, var(--sun) 0%, var(--sun) 40%, var(--sun-deep) 70%);
    box-shadow:
        0 0 0 4px rgba(255, 211, 100, 0.32),
        0 0 14px rgba(245, 166, 35, 0.45);
    position: relative;
}

.eyebrow-on-dark {
    color: rgba(255, 246, 223, 0.92);
}

/* ============ Layout ============ */

.section-container {
    width: var(--container);
    margin: 0 auto;
    position: relative;
    z-index: 1;
}

main > section {
    position: relative;
    padding: clamp(112px, 11vw, 156px) 0;
}

main > section:first-child:not(.hero) {
    padding-top: 0;
}

@media (max-width: 720px) {
    main > section { padding: 40px 0; }
}

/* ============ Section rail (chapter strip) ============ */

.section-rail {
    width: var(--container);
    margin: 0 auto clamp(34px, 5vw, 58px);
    display: flex;
    align-items: center;
    flex-wrap: wrap;
    gap: 14px;
    color: var(--ink-faint);
    font-family: var(--f-mono);
    font-size: 0.7rem;
    letter-spacing: 0.16em;
    text-transform: uppercase;
    opacity: calc(0.35 + var(--scene-enter, 1) * 0.65);
    transform: translate3d(0, calc((1 - var(--scene-enter, 1)) * 18px), 0);
    transition: opacity 320ms ease, transform 320ms var(--ease-out);
}

.rail-chapter {
    color: var(--teal-deep);
    font-weight: 700;
}

.rail-divider {
    flex: 0 0 24px;
    height: 1px;
    background: var(--line-strong);
}

.rail-divider-grow {
    flex: 1;
    background: linear-gradient(90deg, var(--line-strong), transparent);
}

.rail-divider-full {
    flex: 1;
    background: linear-gradient(90deg, transparent, var(--line-strong), transparent);
}

.rail-label { color: var(--ink-soft); }
.rail-coord { margin-left: auto; color: var(--ink-faint); }

/* ============ Reveal primitives ============ */

[data-reveal] {
    opacity: 0;
    transform: translate3d(0, 18px, 0);
    transition: opacity 900ms var(--ease-out), transform 1000ms var(--ease-out);
    transition-delay: var(--reveal-delay, 0ms);
    will-change: opacity, transform;
}

[data-reveal][data-revealed] {
    opacity: 1;
    transform: translate3d(0, 0, 0);
}

.fade-in-scroll {
    opacity: 0;
    transform: translate3d(0, 20px, 0);
    transition: opacity 800ms var(--ease-out), transform 900ms var(--ease-out);
}

.fade-in-scroll.is-visible,
.fade-in-scroll.visible,
.fade-in-scroll[data-revealed] {
    opacity: 1;
    transform: translate3d(0, 0, 0);
}

[data-split-lines] .word {
    display: inline-block;
    overflow: hidden;
    vertical-align: bottom;
}

[data-split-lines] .word-inner {
    display: inline-block;
    transform: translate3d(0, 110%, 0);
    transition: transform 900ms var(--ease-out);
    transition-delay: calc(var(--word-i) * 60ms);
    will-change: transform;
}

[data-split-lines][data-revealed] .word-inner {
    transform: translate3d(0, 0, 0);
}

[data-parallax] { will-change: transform; }

[data-motion-item] {
    --motion-p: 0;
    --motion-center: 1;
    --motion-y: 0px;
    --motion-r: 0deg;
    --motion-s: 1;
}

.hero-proof[data-motion-item][data-revealed],
.surface[data-motion-item][data-revealed],
.timeline-item[data-motion-item][data-revealed],
.service-card[data-motion-item][data-revealed],
.ai-spotlight[data-motion-item][data-revealed],
.pillar[data-motion-item][data-revealed],
.delivery[data-motion-item][data-revealed],
.step[data-motion-item][data-revealed],
.product[data-motion-item][data-revealed],
.founder[data-motion-item][data-revealed],
.booking-copy[data-motion-item][data-revealed],
.cal-shell[data-motion-item][data-revealed],
.contact-stage[data-motion-item][data-revealed] {
    transform: translate3d(0, var(--motion-y), 0) rotate(var(--motion-r)) scale(var(--motion-s));
}

/* ============ Buttons ============ */

.btn {
    position: relative;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    min-height: 52px;
    padding: 0 26px;
    border: 1px solid transparent;
    border-radius: var(--r-pill);
    font-family: var(--f-sans);
    font-size: 0.96rem;
    font-weight: 600;
    text-decoration: none;
    cursor: pointer;
    transition: transform 240ms var(--ease-out), background 220ms ease, color 220ms ease, box-shadow 240ms var(--ease-out), border-color 220ms ease;
    will-change: transform;
}

.btn:hover {
    transform: translate3d(0, -2px, 0);
}

.btn i {
    font-size: 0.85rem;
    transition: transform 220ms var(--ease-out);
}

.btn:hover i {
    transform: translate3d(3px, 0, 0);
}

.btn-primary {
    background: linear-gradient(180deg, var(--teal) 0%, var(--teal-deep) 100%);
    color: #fff6df;
    box-shadow:
        0 1px 0 0 rgba(255, 255, 255, 0.12) inset,
        0 -1px 0 0 rgba(0, 0, 0, 0.18) inset,
        0 18px 38px -16px rgba(15, 74, 69, 0.55);
}

.btn-primary:hover {
    background: linear-gradient(180deg, var(--teal-deep) 0%, var(--teal-ink) 100%);
    box-shadow:
        0 1px 0 0 rgba(255, 255, 255, 0.16) inset,
        0 -1px 0 0 rgba(0, 0, 0, 0.18) inset,
        0 28px 50px -18px rgba(15, 74, 69, 0.65);
}

.btn-ghost {
    background: rgba(255, 250, 232, 0.6);
    border-color: var(--line-strong);
    color: var(--teal-deep);
    backdrop-filter: blur(8px);
}

.btn-ghost:hover {
    background: rgba(255, 250, 232, 0.92);
    border-color: var(--teal-deep);
}

.btn-compact {
    min-height: 42px;
    padding: 0 18px;
    font-size: 0.88rem;
}

.btn-compact i { font-size: 0.74rem; }

/* ============ NAV ============ */

.site-nav {
    position: fixed;
    inset: 16px 0 auto;
    z-index: 1000;
}

.nav-inner {
    width: var(--container);
    margin: 0 auto;
    display: flex;
    align-items: center;
    gap: 16px;
    padding: 14px 16px 14px 20px;
    border-radius: 999px;
    background: transparent;
    border: 1px solid transparent;
    box-shadow: none;
    transition:
        padding 320ms var(--ease-out),
        background 320ms ease,
        border-color 320ms ease,
        box-shadow 320ms ease,
        backdrop-filter 320ms ease;
}

.site-nav.is-scrolled .nav-inner,
body:not(.homepage) .site-nav .nav-inner {
    padding: 8px 10px 8px 16px;
    background: rgba(255, 250, 232, 0.86);
    border-color: var(--line-strong);
    backdrop-filter: blur(20px) saturate(140%);
    -webkit-backdrop-filter: blur(20px) saturate(140%);
    box-shadow: 0 14px 38px -18px rgba(12, 42, 35, 0.45);
}

.nav-brand {
    position: relative;
    display: inline-flex;
    align-items: center;
    gap: 12px;
    flex: 0 0 auto;
    text-decoration: none;
    color: var(--teal-deep);
}

.nav-brand-image {
    object-fit: contain;
    transition: width 320ms var(--ease-out), height 320ms var(--ease-out), opacity 240ms ease;
}

.nav-brand-image-large {
    width: 64px;
    height: 64px;
    filter: drop-shadow(0 8px 18px rgba(12, 42, 35, 0.18));
}

.nav-brand-image-small {
    position: absolute;
    left: 0;
    top: 50%;
    transform: translate3d(0, -50%, 0);
    width: 36px;
    height: 36px;
    opacity: 0;
    pointer-events: none;
}

.site-nav.is-scrolled .nav-brand-image-large,
body:not(.homepage) .nav-brand-image-large {
    opacity: 0;
    width: 36px;
    height: 36px;
}

.site-nav.is-scrolled .nav-brand-image-small,
body:not(.homepage) .nav-brand-image-small {
    opacity: 1;
}

.nav-brand-word {
    font-family: var(--f-display);
    font-weight: 600;
    font-size: 1.04rem;
    letter-spacing: -0.02em;
    color: var(--teal-deep);
    opacity: 0;
    transform: translate3d(-6px, 0, 0);
    transition: opacity 280ms ease 80ms, transform 320ms var(--ease-out) 80ms;
    pointer-events: none;
}

.site-nav.is-scrolled .nav-brand-word,
body:not(.homepage) .nav-brand-word {
    opacity: 1;
    transform: translate3d(0, 0, 0);
    pointer-events: auto;
}

.nav-panel {
    display: flex;
    align-items: center;
    gap: 4px;
    margin-left: auto;
}

.nav-links {
    display: flex;
    align-items: center;
    gap: 2px;
}

.nav-links a {
    position: relative;
    padding: 8px 14px;
    color: var(--ink-mid);
    font-size: 0.9rem;
    font-weight: 500;
    text-decoration: none;
    border-radius: var(--r-pill);
    transition: color 180ms ease, background 180ms ease;
}

.nav-links a:hover {
    color: var(--teal-deep);
    background: rgba(14, 47, 41, 0.06);
}

.nav-actions {
    display: flex;
    align-items: center;
    gap: 8px;
}

.language-switcher {
    display: inline-flex;
    align-items: center;
    padding: 3px;
    border-radius: var(--r-pill);
    background: rgba(14, 47, 41, 0.06);
    border: 1px solid var(--line-soft);
}

.lang-button {
    min-width: 36px;
    height: 30px;
    padding: 0 10px;
    border: 0;
    border-radius: var(--r-pill);
    background: transparent;
    color: var(--ink-mid);
    font-family: var(--f-mono);
    font-size: 0.7rem;
    font-weight: 600;
    letter-spacing: 0.04em;
    cursor: pointer;
    transition: background 160ms ease, color 160ms ease;
}

.lang-button:hover { color: var(--teal-deep); }

.lang-button.is-active {
    background: var(--paper);
    color: var(--teal-deep);
    box-shadow: 0 6px 16px -8px rgba(15, 74, 69, 0.32);
}

.nav-toggle {
    display: none;
    width: 40px;
    height: 40px;
    border: 1px solid var(--line);
    border-radius: 14px;
    background: rgba(255, 255, 255, 0.7);
    padding: 0;
    cursor: pointer;
    transition: background 180ms ease;
}

.nav-toggle:hover { background: rgba(255, 255, 255, 0.95); }

.nav-toggle span {
    display: block;
    width: 18px;
    height: 1.5px;
    margin: 5px auto;
    background: var(--teal-deep);
    border-radius: 999px;
    transition: transform 220ms var(--ease-out), opacity 200ms ease;
}

.site-nav.is-open .nav-toggle span:nth-child(1) {
    transform: translate3d(0, 3px, 0) rotate(45deg);
}

.site-nav.is-open .nav-toggle span:nth-child(2) {
    transform: translate3d(0, -3px, 0) rotate(-45deg);
}

@media (max-width: 960px) {
    .site-nav { inset: 12px 0 auto; }
    .nav-inner { padding: 8px 10px 8px 14px; border-radius: 22px; }
    body.homepage .site-nav:not(.is-scrolled) .nav-inner { padding: 10px 14px 10px 16px; }
    .nav-brand-word { display: none !important; }
    .nav-toggle { display: inline-block; }
    .nav-brand-image-large { width: 48px; height: 48px; }
    .site-nav.is-scrolled .nav-brand-image-large,
    body:not(.homepage) .nav-brand-image-large { width: 30px; height: 30px; }
    .nav-brand-image-small { width: 30px; height: 30px; }

    .nav-actions { margin-left: auto; }

    .nav-panel {
        position: absolute;
        top: calc(100% + 10px);
        left: 0;
        right: 0;
        display: grid;
        gap: 6px;
        padding: 14px;
        border-radius: var(--r-xl);
        background: rgba(255, 250, 232, 0.96);
        border: 1px solid var(--line);
        box-shadow: var(--shadow-deep);
        opacity: 0;
        pointer-events: none;
        transform: translate3d(0, -10px, 0);
        transition: opacity 220ms var(--ease-out), transform 240ms var(--ease-out);
    }

    .site-nav.is-open .nav-panel {
        opacity: 1;
        pointer-events: auto;
        transform: translate3d(0, 0, 0);
    }

    .nav-links { display: grid; gap: 4px; }
    .nav-links a { padding: 12px 14px; font-size: 1rem; border-radius: 14px; }
}

@media (max-width: 540px) {
    .nav-brand-image { width: 30px; height: 30px; }
    .language-switcher .lang-button { min-width: 32px; padding: 0 8px; }
    .nav-cta { display: none; }
}

/* ============ Scene background helpers ============ */

.scene-bg {
    position: absolute;
    inset: 0;
    pointer-events: none;
    overflow: hidden;
    z-index: 0;
}

.scene-grid {
    position: absolute;
    inset: -10% -5%;
    background:
        linear-gradient(90deg, rgba(14, 47, 41, 0.05) 1px, transparent 1px) 0 0 / 72px 72px,
        linear-gradient(0deg, rgba(14, 47, 41, 0.04) 1px, transparent 1px) 0 0 / 72px 72px;
    mask-image: radial-gradient(75% 60% at 50% 40%, rgba(0, 0, 0, 0.55), transparent 78%);
}

/* The sun motif behind hero - radial gradient + soft ray pattern */
.sun {
    position: absolute;
    top: -120px;
    right: -180px;
    width: 720px;
    height: 720px;
    border-radius: 50%;
    background:
        radial-gradient(circle at 30% 30%, rgba(255, 246, 195, 0.95) 0%, rgba(255, 211, 100, 0.7) 25%, rgba(245, 166, 35, 0.32) 45%, rgba(238, 122, 95, 0.18) 65%, transparent 78%);
    filter: blur(6px);
    transform: translate3d(0, calc(var(--scene-p, 0) * 50px), 0);
}

.sun::before {
    content: "";
    position: absolute;
    inset: -20%;
    border-radius: 50%;
    background:
        conic-gradient(from 0deg,
            rgba(255, 211, 100, 0.18) 0deg,
            transparent 12deg,
            rgba(255, 211, 100, 0.16) 24deg,
            transparent 36deg,
            rgba(245, 166, 35, 0.16) 48deg,
            transparent 60deg,
            rgba(255, 211, 100, 0.18) 72deg,
            transparent 84deg,
            rgba(245, 166, 35, 0.16) 96deg,
            transparent 108deg,
            rgba(255, 211, 100, 0.18) 120deg,
            transparent 132deg,
            rgba(245, 166, 35, 0.16) 144deg,
            transparent 156deg,
            rgba(255, 211, 100, 0.18) 168deg,
            transparent 180deg,
            rgba(245, 166, 35, 0.16) 192deg,
            transparent 204deg,
            rgba(255, 211, 100, 0.18) 216deg,
            transparent 228deg,
            rgba(245, 166, 35, 0.16) 240deg,
            transparent 252deg,
            rgba(255, 211, 100, 0.18) 264deg,
            transparent 276deg,
            rgba(245, 166, 35, 0.16) 288deg,
            transparent 300deg,
            rgba(255, 211, 100, 0.18) 312deg,
            transparent 324deg,
            rgba(245, 166, 35, 0.16) 336deg,
            transparent 348deg,
            rgba(255, 211, 100, 0.18) 360deg);
    filter: blur(10px);
    opacity: 0.55;
    animation: sunSpin 80s linear infinite;
}

@keyframes sunSpin {
    to { transform: rotate(360deg); }
}

/* ============ Hairline corner brackets ============ */

.card-corner,
.surface-corner,
.pillar-corner {
    position: absolute;
    width: 18px;
    height: 18px;
    pointer-events: none;
    opacity: 0;
    transition: opacity 700ms var(--ease-out) 200ms, transform 700ms var(--ease-out) 200ms;
    transform: scale(0.6);
}

[data-revealed] .card-corner,
[data-revealed] .surface-corner,
[data-revealed] .pillar-corner {
    opacity: 1;
    transform: scale(1);
}

.card-corner::before,
.card-corner::after,
.surface-corner::before,
.surface-corner::after,
.pillar-corner::before,
.pillar-corner::after {
    content: "";
    position: absolute;
    background: var(--line-strong);
}

.card-corner::before,
.surface-corner::before,
.pillar-corner::before { width: 100%; height: 1px; }
.card-corner::after,
.surface-corner::after,
.pillar-corner::after { width: 1px; height: 100%; }

.card-corner-tl,
.surface-corner-tl,
.pillar-corner-tl { top: -1px; left: -1px; }

.card-corner-tr,
.surface-corner-tr { top: -1px; right: -1px; }
.card-corner-tr::before,
.surface-corner-tr::before { right: 0; }
.card-corner-tr::after,
.surface-corner-tr::after { right: 0; }

.card-corner-bl,
.surface-corner-bl { bottom: -1px; left: -1px; }
.card-corner-bl::before,
.surface-corner-bl::before { bottom: 0; }

.card-corner-br,
.surface-corner-br,
.pillar-corner-br { bottom: -1px; right: -1px; }
.card-corner-br::before,
.surface-corner-br::before,
.pillar-corner-br::before { bottom: 0; right: 0; }
.card-corner-br::after,
.surface-corner-br::after,
.pillar-corner-br::after { bottom: 0; right: 0; }

.surface-corner-light::before,
.surface-corner-light::after {
    background: rgba(255, 246, 223, 0.32);
}

/* ============ HERO - photo-driven ============ */

.hero {
    position: relative;
    min-height: 100svh;
    padding: clamp(164px, 18vh, 218px) 0 clamp(108px, 12vh, 148px);
    overflow: hidden;
}

.hero::before {
    content: "";
    position: absolute;
    inset: 82px 0 auto;
    height: clamp(360px, 52vh, 620px);
    pointer-events: none;
    background:
        linear-gradient(110deg, transparent 0 18%, rgba(255, 211, 100, 0.16) 32%, rgba(238, 122, 95, 0.12) 46%, transparent 64%),
        linear-gradient(150deg, transparent 0 28%, rgba(31, 122, 110, 0.12) 44%, transparent 62%);
    filter: blur(18px);
    opacity: calc(0.62 + var(--scene-center, 0) * 0.2);
    transform: translate3d(calc(var(--scene-p, 0) * -34px), calc(var(--scene-p, 0) * 22px), 0) skewY(-5deg);
    transform-origin: center;
    z-index: 0;
}

.hero .scene-bg::before,
.hero .scene-bg::after {
    content: "";
    position: absolute;
    pointer-events: none;
}

.hero .scene-bg::before {
    left: -8vw;
    right: -8vw;
    top: 120px;
    height: 1px;
    background: linear-gradient(90deg, transparent, rgba(31, 122, 110, 0.16), rgba(242, 184, 66, 0.28), rgba(238, 122, 95, 0.14), transparent);
    transform: translate3d(calc(var(--scene-p, 0) * 80px), calc(var(--scene-center, 0) * 18px), 0);
    opacity: calc(0.24 + var(--scene-center, 0) * 0.34);
}

.hero .scene-bg::after {
    inset: 14% 4% 0 40%;
    background:
        repeating-linear-gradient(118deg, rgba(31, 122, 110, 0.08) 0 1px, transparent 1px 34px),
        linear-gradient(180deg, transparent, rgba(255, 211, 100, 0.1), transparent);
    mask-image: linear-gradient(90deg, transparent, #000 28%, #000 78%, transparent);
    opacity: calc(0.18 + var(--scene-center, 0) * 0.24);
    transform: translate3d(calc(var(--scene-p, 0) * -42px), calc(var(--scene-p, 0) * 28px), 0);
}

.hero .hero-grid {
    position: relative;
    display: grid;
    grid-template-columns: minmax(0, 1.12fr) minmax(0, 0.88fr);
    gap: clamp(44px, 6vw, 84px);
    align-items: center;
    min-height: calc(100svh - 300px);
    z-index: 2;
}

.hero-copy {
    position: relative;
    z-index: 1;
    max-width: 760px;
    padding-top: clamp(8px, 2vh, 24px);
}

.hero-copy .display-hero {
    margin-top: 0;
}

.lede {
    margin-top: clamp(20px, 3vh, 32px);
}

.hero-copy .lede {
    max-width: 62ch;
}

.hero-actions {
    display: flex;
    flex-wrap: wrap;
    gap: 14px;
    margin-top: clamp(32px, 4.6vh, 48px);
}

.hero-proof {
    display: grid;
    grid-template-columns: 1fr auto 1fr auto 1fr;
    align-items: center;
    gap: clamp(16px, 2.4vw, 28px);
    margin-top: clamp(46px, 6vh, 68px);
    padding: 22px 26px;
    border-radius: var(--r-lg);
    background: rgba(255, 250, 232, 0.6);
    border: 1px solid var(--line);
    backdrop-filter: blur(8px);
    box-shadow: 0 14px 36px -22px rgba(12, 42, 35, 0.3);
}

.proof-item { display: flex; flex-direction: column; gap: 4px; }

.proof-value {
    font-family: var(--f-display);
    font-weight: 600;
    font-size: clamp(1.55rem, 2.6vw, 2rem);
    color: var(--teal-deep);
    letter-spacing: -0.02em;
    font-variant-numeric: tabular-nums;
}

.proof-label {
    color: var(--ink-mid);
    font-size: 0.86rem;
    line-height: 1.4;
}

.proof-divider {
    width: 1px;
    height: 36px;
    background: linear-gradient(180deg, transparent, var(--line-strong), transparent);
}

/* Hero visual - photo card + floating chips */

.hero-visual {
    position: relative;
    min-height: clamp(500px, 66vh, 660px);
}

.hero-ring {
    position: absolute;
    border-radius: 50%;
    pointer-events: none;
    border: 1px dashed rgba(31, 122, 110, 0.22);
    animation: ringSpin 60s linear infinite;
}

.hero-ring-one {
    width: 120%;
    aspect-ratio: 1;
    top: -10%;
    left: -10%;
    animation-duration: 90s;
}

.hero-ring-two {
    width: 80%;
    aspect-ratio: 1;
    bottom: -20%;
    right: -15%;
    border-color: rgba(242, 184, 66, 0.32);
    animation-direction: reverse;
    animation-duration: 75s;
}

@keyframes ringSpin {
    to { transform: rotate(360deg); }
}

.hero-photo {
    position: relative;
    margin: 0;
    width: 88%;
    margin-left: auto;
    aspect-ratio: 4 / 5;
    border-radius: var(--r-xl);
    overflow: hidden;
    background: linear-gradient(180deg, rgba(255, 250, 232, 0.92), rgba(244, 233, 207, 0.78));
    border: 1px solid var(--line);
    box-shadow: var(--shadow-deep);
    transform: rotate(1.5deg);
    transition: transform 600ms var(--ease-out);
}

.hero-photo:hover { transform: rotate(0deg); }

.hero-photo img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center 30%;
    transform: scale(calc(1.035 + var(--scene-p, 0) * 0.025)) translate3d(0, calc(var(--scene-p, 0) * -18px), 0);
    transition: transform 1400ms var(--ease-out);
}

.hero-visual[data-revealed] .hero-photo img {
    transform: scale(calc(1 + var(--scene-p, 0) * 0.025)) translate3d(0, calc(var(--scene-p, 0) * -18px), 0);
}

.hero-photo-meta {
    position: absolute;
    left: 16px;
    right: 16px;
    bottom: 16px;
    padding: 14px 18px;
    border-radius: var(--r-md);
    background: rgba(7, 52, 49, 0.74);
    backdrop-filter: blur(10px);
    color: #fff6df;
    display: flex;
    flex-direction: column;
    gap: 2px;
}

.hero-photo-eyebrow {
    color: rgba(255, 246, 223, 0.6);
    font-family: var(--f-mono);
    font-size: 0.66rem;
    letter-spacing: 0.16em;
    text-transform: uppercase;
}

.hero-photo-name {
    font-family: var(--f-display);
    font-weight: 600;
    font-size: 1.04rem;
    letter-spacing: -0.01em;
}

.hero-chip {
    position: absolute;
    display: inline-flex;
    align-items: center;
    gap: 10px;
    padding: 10px 16px 10px 12px;
    border-radius: var(--r-pill);
    background: var(--paper);
    border: 1px solid var(--line);
    box-shadow: 0 14px 30px -16px rgba(12, 42, 35, 0.35);
    color: var(--ink-soft);
    font-family: var(--f-sans);
    font-size: 0.88rem;
    font-weight: 500;
    animation: chipFloat 6s ease-in-out infinite;
    will-change: transform;
}

.hero-chip img {
    width: 24px;
    height: 24px;
    border-radius: 50%;
    background: var(--bg);
    padding: 3px;
    border: 1px solid var(--line-soft);
    object-fit: contain;
}

.hero-chip-label {
    display: block;
    font-family: var(--f-mono);
    font-size: 0.62rem;
    letter-spacing: 0.16em;
    text-transform: uppercase;
    color: var(--ink-faint);
    line-height: 1;
    margin-bottom: 3px;
}

.hero-chip-value {
    display: block;
    font-family: var(--f-display);
    font-weight: 600;
    font-size: 0.94rem;
    color: var(--teal-deep);
    letter-spacing: -0.01em;
    line-height: 1;
}

.hero-chip-dot {
    width: 8px;
    height: 8px;
    border-radius: 50%;
    background: var(--coral);
    box-shadow: 0 0 0 4px rgba(238, 122, 95, 0.22);
    flex: 0 0 auto;
}

.hero-chip-dot-live {
    background: var(--sun-deep);
    box-shadow: 0 0 0 4px rgba(245, 166, 35, 0.22);
    animation: pulseLive 1.8s ease-in-out infinite;
}

.hero-chip-location {
    top: 16%;
    left: -6%;
    animation-delay: -1.5s;
}

.hero-chip-since {
    bottom: 22%;
    right: -10%;
    padding-left: 8px;
    animation-delay: -3s;
}

.hero-chip-pulse {
    top: 6%;
    right: -6%;
    max-width: 220px;
    background: linear-gradient(180deg, rgba(255, 246, 223, 0.95), rgba(255, 246, 223, 0.78));
    color: var(--ink-soft);
    line-height: 1.4;
    font-size: 0.78rem;
    animation-delay: -4.5s;
}

@keyframes chipFloat {
    0%, 100% { transform: translate3d(0, 0, 0); }
    50% { transform: translate3d(0, -7px, 0); }
}

@keyframes pulseLive {
    0%, 100% { opacity: 1; transform: scale(1); }
    50% { opacity: 0.55; transform: scale(0.92); }
}

/* Scroll cue */
.scroll-cue {
    position: absolute;
    left: 50%;
    bottom: 28px;
    transform: translate3d(-50%, 0, 0);
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 10px;
    color: var(--ink-faint);
    font-family: var(--f-mono);
    font-size: 0.66rem;
    letter-spacing: 0.18em;
    text-transform: uppercase;
    text-decoration: none;
    z-index: 2;
}

.scroll-cue-line {
    position: relative;
    width: 1px;
    height: 56px;
    background: var(--line-strong);
    overflow: hidden;
}

.scroll-cue-line::after {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 30%;
    background: var(--teal-deep);
    animation: scrollCue 2.2s ease-in-out infinite;
}

@keyframes scrollCue {
    0% { transform: translate3d(0, -100%, 0); }
    100% { transform: translate3d(0, 340%, 0); }
}

/* ============ ABOUT ============ */

.section-header-split {
    display: grid;
    grid-template-columns: minmax(0, 1.1fr) minmax(0, 0.9fr);
    align-items: end;
    gap: var(--s-7);
    margin-bottom: clamp(48px, 6vw, 78px);
}

.section-header-copy {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    gap: 18px;
}

.about-grid {
    display: grid;
    grid-template-columns: minmax(0, 1.05fr) minmax(0, 0.95fr);
    gap: clamp(28px, 4vw, 48px);
    align-items: start;
}

.surface {
    position: relative;
    padding: clamp(28px, 3.5vw, 44px);
    border-radius: var(--r-xl);
    background: var(--surface);
    border: 1px solid var(--line);
    box-shadow: var(--shadow-card);
    backdrop-filter: blur(8px);
    overflow: hidden;
}

.surface-cream {
    background: linear-gradient(180deg, rgba(255, 250, 232, 0.94), rgba(248, 234, 199, 0.7));
}

.about-stats {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 16px;
    margin-top: var(--s-6);
    padding-top: var(--s-6);
    border-top: 1px solid var(--line);
}

.stat { display: flex; flex-direction: column; gap: 6px; }

.stat-value {
    font-family: var(--f-display);
    font-weight: 600;
    font-size: clamp(1.6rem, 2.6vw, 2rem);
    color: var(--teal-deep);
    letter-spacing: -0.02em;
    font-variant-numeric: tabular-nums;
}

.stat-label {
    color: var(--ink-mid);
    font-size: 0.86rem;
    line-height: 1.4;
}

.timeline {
    list-style: none;
    margin: 0;
    padding: 0;
    position: relative;
}

.timeline::before {
    content: "";
    position: absolute;
    left: 11px;
    top: 14px;
    bottom: 14px;
    width: 1px;
    background: linear-gradient(180deg, transparent, var(--line-strong), transparent);
}

.timeline-item {
    position: relative;
    display: grid;
    grid-template-columns: 32px 90px 1fr;
    align-items: start;
    gap: 16px;
    padding: 24px 0;
    border-bottom: 1px solid var(--line-soft);
}

.timeline-item:last-child { border-bottom: 0; }

.timeline-marker {
    position: relative;
    display: grid;
    place-items: center;
    width: 22px;
    height: 22px;
    border-radius: 50%;
    background: var(--paper);
    border: 1px solid var(--line-strong);
}

.timeline-dot {
    width: 8px;
    height: 8px;
    border-radius: 50%;
    background: var(--teal);
    box-shadow: 0 0 0 3px rgba(31, 122, 110, 0.16);
    transition: background 400ms ease, box-shadow 400ms ease;
}

.timeline-item[data-revealed] .timeline-dot {
    background: var(--sun-deep);
    box-shadow: 0 0 0 3px rgba(245, 166, 35, 0.22);
}

.timeline-year {
    font-family: var(--f-mono);
    font-size: 0.76rem;
    font-weight: 700;
    letter-spacing: 0.1em;
    color: var(--teal-deep);
    padding-top: 2px;
}

.timeline-body h4 {
    margin: 0 0 6px;
    font-family: var(--f-display);
    font-weight: 600;
    font-size: 1.18rem;
    letter-spacing: -0.015em;
    color: var(--ink-soft);
}

.timeline-body p {
    margin: 0;
    color: var(--ink-mid);
    font-size: 0.96rem;
    line-height: 1.7;
}

/* ============ SERVICES BENTO ============ */

.services-bento {
    display: grid;
    grid-template-columns: repeat(12, minmax(0, 1fr));
    align-items: stretch;
    gap: clamp(16px, 2vw, 22px);
    perspective: 1200px;
}

.service-card {
    position: relative;
    grid-column: span 4;
    display: flex;
    flex-direction: column;
    gap: 18px;
    min-height: 300px;
    padding: clamp(24px, 2.6vw, 36px);
    border-radius: var(--r-xl);
    background:
        linear-gradient(180deg, rgba(255, 250, 232, 0.9), rgba(248, 234, 199, 0.72));
    border: 1px solid var(--line);
    box-shadow: var(--shadow-card);
    overflow: hidden;
    transform-style: preserve-3d;
    transition: transform 420ms var(--ease-out), box-shadow 380ms var(--ease-out), border-color 240ms ease, background 240ms ease;
    will-change: transform;
}

.service-card::before {
    content: "";
    position: absolute;
    inset: 0;
    pointer-events: none;
    background:
        linear-gradient(90deg, rgba(255, 255, 255, 0.32), transparent 36%),
        radial-gradient(80% 70% at 100% 0%, rgba(107, 182, 198, 0.13), transparent 62%);
    opacity: calc(0.28 + var(--motion-center, 0) * 0.46);
    transition: opacity 320ms ease;
}

.service-card::after {
    content: "";
    position: absolute;
    inset: auto -10% -50% auto;
    width: 60%;
    aspect-ratio: 1;
    border-radius: 50%;
    background: radial-gradient(circle, rgba(255, 211, 100, 0.32), transparent 65%);
    opacity: 0;
    transition: opacity 480ms ease;
    pointer-events: none;
}

.service-card > *:not(.card-corner) {
    position: relative;
    z-index: 1;
}

.service-card[data-motion-item][data-revealed] {
    transform:
        translate3d(var(--service-shift, 0px), calc(var(--motion-y, 0px) + var(--service-depth, 0px)), 0)
        rotateX(0.8deg)
        rotateZ(calc(var(--motion-r, 0deg) + var(--service-tilt, 0deg)))
        scale(var(--motion-s, 1));
}

.service-card:hover {
    transform:
        translate3d(var(--service-shift, 0px), calc(var(--motion-y, 0px) - 6px), 22px)
        rotateX(0deg)
        rotateZ(calc(var(--motion-r, 0deg) * 0.4))
        scale(1.01);
    box-shadow: var(--shadow-deep);
    border-color: var(--line-strong);
}

.service-card:hover::after { opacity: 1; }

.service-card-feature {
    grid-column: span 5;
    background:
        radial-gradient(80% 100% at 0% 0%, rgba(255, 211, 100, 0.36), transparent 55%),
        radial-gradient(70% 90% at 100% 100%, rgba(31, 122, 110, 0.12), transparent 62%),
        linear-gradient(180deg, rgba(255, 250, 232, 0.98), rgba(244, 233, 207, 0.82));
}

.service-card:nth-child(2),
.service-card:nth-child(5) {
    grid-column: span 3;
}

.service-card-dark {
    grid-column: span 5;
    background:
        radial-gradient(60% 80% at 100% 0%, rgba(242, 184, 66, 0.28), transparent 55%),
        linear-gradient(180deg, var(--teal-ink), #062826);
    color: #fff6df;
}

.service-card-dark .service-title,
.service-card-dark .service-desc {
    color: inherit;
}

.service-card-dark .service-desc {
    color: rgba(255, 246, 223, 0.78);
}

.service-card-dark .card-corner::before,
.service-card-dark .card-corner::after {
    background: rgba(255, 246, 223, 0.4);
}

.service-icon {
    display: inline-grid;
    place-items: center;
    width: 52px;
    height: 52px;
    border-radius: 16px;
    background: linear-gradient(180deg, rgba(217, 237, 230, 0.95), rgba(217, 237, 230, 0.55));
    color: var(--teal-deep);
    border: 1px solid var(--line-soft);
    font-size: 1.2rem;
    box-shadow: 0 12px 22px -16px rgba(15, 74, 69, 0.55);
}

.service-card[data-motion-item] .service-icon,
.pillar[data-motion-item] .pillar-icon {
    transform: translate3d(0, calc(var(--motion-y, 0px) * -0.18), 0) rotate(calc(var(--motion-r, 0deg) * -2));
    transition: transform 420ms var(--ease-out), background 320ms ease, border-color 320ms ease;
}

.step[data-motion-item] .step-marker {
    transform: translate3d(-50%, calc(var(--motion-y, 0px) * -0.18), 0) rotate(calc(var(--motion-r, 0deg) * -2));
    transition: transform 420ms var(--ease-out), background 320ms ease, border-color 320ms ease;
}

.service-icon-dark {
    background: linear-gradient(180deg, rgba(255, 211, 100, 0.28), rgba(255, 211, 100, 0.06));
    color: var(--sun);
    border-color: rgba(255, 211, 100, 0.32);
}

.service-title {
    margin: 0;
    font-family: var(--f-display);
    font-weight: 600;
    font-size: clamp(1.24rem, 1.7vw, 1.52rem);
    letter-spacing: -0.02em;
    color: var(--ink-soft);
}

.service-desc {
    margin: 0;
    color: var(--ink-mid);
    font-size: 0.97rem;
    line-height: 1.72;
}

.service-tags {
    display: flex;
    flex-wrap: wrap;
    gap: 6px;
    margin-top: auto;
    padding-top: 4px;
}

.service-tags span {
    display: inline-flex;
    align-items: center;
    height: 28px;
    padding: 0 12px;
    border-radius: var(--r-pill);
    background: rgba(14, 47, 41, 0.06);
    border: 1px solid var(--line-soft);
    color: var(--teal-deep);
    font-family: var(--f-mono);
    font-size: 0.68rem;
    font-weight: 600;
    letter-spacing: 0.08em;
    text-transform: uppercase;
}

.service-signal {
    display: flex;
    align-items: flex-end;
    gap: 4px;
    height: 36px;
    margin-top: auto;
}

.service-signal span {
    flex: 1;
    height: 100%;
    background: linear-gradient(180deg, rgba(31, 122, 110, 0.34), rgba(255, 211, 100, 0.32));
    border-radius: 4px;
    transform-origin: bottom;
    animation: signalBars 2.4s ease-in-out infinite;
}

.service-signal span:nth-child(2) { animation-delay: 0.1s; }
.service-signal span:nth-child(3) { animation-delay: 0.2s; }
.service-signal span:nth-child(4) { animation-delay: 0.3s; }
.service-signal span:nth-child(5) { animation-delay: 0.4s; }
.service-signal span:nth-child(6) { animation-delay: 0.5s; }

.service-pulse {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 6px;
    margin-top: auto;
}

.service-pulse span {
    height: 4px;
    border-radius: 999px;
    background: linear-gradient(90deg, var(--sun), rgba(255, 211, 100, 0.2));
    animation: signalBars 2.6s ease-in-out infinite;
    transform-origin: left;
}

.service-pulse span:nth-child(2) { animation-delay: 0.2s; }
.service-pulse span:nth-child(3) { animation-delay: 0.4s; }

/* AI Spotlight panel */
.ai-spotlight {
    position: relative;
    display: grid;
    grid-template-columns: 1fr 1px 1fr;
    gap: clamp(28px, 4vw, 56px);
    align-items: start;
    margin-top: clamp(28px, 4vw, 46px);
    padding: clamp(28px, 3.5vw, 44px);
    border-radius: var(--r-xl);
    background:
        linear-gradient(180deg, rgba(255, 250, 232, 0.96), rgba(248, 234, 199, 0.78));
    border: 1px solid var(--line);
    box-shadow: var(--shadow-card);
}

.ai-spotlight-col { display: flex; flex-direction: column; gap: 12px; }

.ai-spotlight-divider {
    width: 1px;
    align-self: stretch;
    background: linear-gradient(180deg, transparent, var(--line-strong), transparent);
}

/* ============ WHY (pillars) ============ */

.pillars {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: clamp(16px, 2vw, 22px);
}

.pillar {
    position: relative;
    display: flex;
    flex-direction: column;
    min-height: 292px;
    padding: clamp(28px, 3.4vw, 38px);
    border-radius: var(--r-xl);
    background: rgba(255, 250, 232, 0.78);
    border: 1px solid var(--line);
    box-shadow: var(--shadow-card);
    overflow: hidden;
    transition: transform 380ms var(--ease-out), box-shadow 380ms var(--ease-out);
    will-change: transform;
}

.pillar::before {
    content: "";
    position: absolute;
    inset: 0;
    pointer-events: none;
    background:
        linear-gradient(180deg, rgba(255, 211, 100, 0.16), transparent 42%),
        radial-gradient(70% 80% at 100% 0%, rgba(107, 182, 198, 0.16), transparent 62%);
    opacity: 0;
    transition: opacity 360ms ease;
}

.pillar:hover {
    transform: translate3d(0, calc(var(--motion-y, 0px) - 4px), 0) rotate(var(--motion-r, 0deg)) scale(var(--motion-s, 1));
    box-shadow: var(--shadow-deep);
}

.pillar:hover::before { opacity: 1; }

.pillar-corner { width: 14px; height: 14px; }

.pillar-icon {
    display: inline-grid;
    place-items: center;
    width: 54px;
    height: 54px;
    border-radius: 16px;
    background:
        radial-gradient(circle at 30% 30%, rgba(255, 211, 100, 0.5), rgba(217, 237, 230, 0.4) 65%);
    border: 1px solid var(--line);
    color: var(--teal-deep);
    font-size: 1.25rem;
    margin-bottom: 18px;
    position: relative;
    z-index: 1;
}

.pillar-title {
    margin: 0 0 10px;
    font-family: var(--f-display);
    font-weight: 600;
    font-size: clamp(1.2rem, 1.6vw, 1.4rem);
    letter-spacing: -0.02em;
    color: var(--ink-soft);
    position: relative;
    z-index: 1;
}

.pillar-desc {
    margin: 0;
    color: var(--ink-mid);
    font-size: 0.98rem;
    line-height: 1.7;
    position: relative;
    z-index: 1;
}

.pillar-rule {
    position: absolute;
    left: 28px;
    right: 28px;
    bottom: 0;
    height: 1px;
    background: linear-gradient(90deg, transparent, var(--sun-deep), transparent);
    transform: scaleX(0);
    transform-origin: left;
    transition: transform 900ms var(--ease-out) 200ms;
}

.pillar[data-revealed] .pillar-rule {
    transform: scaleX(1);
}

.delivery {
    position: relative;
    display: grid;
    grid-template-columns: minmax(0, 0.85fr) minmax(0, 1.15fr);
    gap: clamp(28px, 4vw, 56px);
    align-items: center;
    margin-top: clamp(30px, 4vw, 50px);
    padding: clamp(28px, 3.5vw, 44px);
    border-radius: var(--r-xl);
    background: linear-gradient(180deg, rgba(255, 250, 232, 0.95), rgba(248, 234, 199, 0.78));
    border: 1px solid var(--line);
    box-shadow: var(--shadow-card);
}

.delivery-copy { display: flex; flex-direction: column; gap: 12px; }

.delivery-chips {
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
}

.delivery-chips span {
    display: inline-flex;
    align-items: center;
    height: 36px;
    padding: 0 16px;
    border-radius: var(--r-pill);
    background: rgba(14, 47, 41, 0.05);
    border: 1px solid var(--line-soft);
    color: var(--teal-deep);
    font-size: 0.86rem;
    font-weight: 600;
    transition: background 220ms ease, transform 240ms var(--ease-out), border-color 220ms ease, color 220ms ease;
}

.delivery-chips span:hover {
    transform: translate3d(0, -2px, 0);
    background: rgba(255, 211, 100, 0.24);
    border-color: rgba(242, 184, 66, 0.4);
    color: var(--ink-soft);
}

/* ============ PROCESS PIPELINE ============ */

.pipeline {
    position: relative;
    display: grid;
    grid-template-columns: repeat(4, minmax(0, 1fr));
    column-gap: clamp(18px, 2.2vw, 28px);
    row-gap: 0;
    padding-top: 80px;
    isolation: isolate;
}

.pipeline-rail {
    position: absolute;
    left: calc(100% / 8);
    right: calc(100% / 8);
    top: 52px;
    height: 2px;
    border-radius: 2px;
    background: linear-gradient(90deg,
        transparent 0%,
        rgba(31, 122, 110, 0.38) 12%,
        rgba(242, 184, 66, 0.5) 50%,
        rgba(238, 122, 95, 0.4) 88%,
        transparent 100%);
    overflow: hidden;
    opacity: 0.9;
    z-index: 0;
    pointer-events: none;
}

.pipeline-rail-fill {
    position: absolute;
    inset: 0;
    background: linear-gradient(90deg, var(--sun), var(--coral), var(--teal-deep));
    transform: scaleX(0);
    transform-origin: left;
    transition: transform 1200ms var(--ease-out);
}

.process[data-active] .pipeline-rail-fill {
    transform: scaleX(calc(0.2 + var(--scene-p, 0) * 0.9));
}

.step {
    position: relative;
    z-index: 1;
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    gap: 10px;
    min-height: 0;
    padding: 28px 24px 24px;
    border-radius: var(--r-lg);
    background:
        linear-gradient(180deg, rgba(255, 250, 232, 0.96), rgba(248, 234, 199, 0.9));
    border: 1px solid var(--line);
    box-shadow:
        0 14px 36px -26px rgba(12, 42, 35, 0.32),
        inset 0 1px 0 rgba(255, 255, 255, 0.58);
    transition: transform 320ms var(--ease-out), box-shadow 320ms var(--ease-out), border-color 220ms ease;
    will-change: transform;
}

.step::before {
    content: "";
    position: absolute;
    inset: 0;
    border-radius: inherit;
    pointer-events: none;
    background: radial-gradient(80% 80% at 20% 0%, rgba(255, 211, 100, 0.18), transparent 56%);
    opacity: calc(0.2 + var(--motion-center, 0) * 0.35);
}

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

.step:hover {
    transform: translate3d(0, calc(var(--motion-y, 0px) - 3px), 0) rotate(var(--motion-r, 0deg)) scale(var(--motion-s, 1));
    border-color: var(--line-strong);
    box-shadow: var(--shadow-card);
}

.step-marker {
    position: absolute;
    top: -56px;
    left: 50%;
    transform: translate3d(-50%, 0, 0);
    z-index: 2;
    display: grid;
    place-items: center;
    width: 56px;
    height: 56px;
    border-radius: 50%;
    background: var(--paper-strong);
    border: 1px solid var(--line-strong);
    box-shadow:
        0 10px 22px -14px rgba(15, 74, 69, 0.5),
        0 0 0 8px rgba(255, 250, 232, 0.94);
    transition: background 320ms ease, border-color 320ms ease, transform 320ms var(--ease-spring);
}

.step[data-revealed] .step-marker {
    background: var(--teal-ink);
    border-color: var(--teal-ink);
    transform: translate3d(-50%, calc(var(--motion-y, 0px) * -0.18), 0) rotate(calc(var(--motion-r, 0deg) * -2)) scale(1.05);
}

.step-number {
    font-family: var(--f-mono);
    font-size: 0.78rem;
    font-weight: 700;
    letter-spacing: 0.1em;
    color: var(--teal-deep);
    transition: color 320ms ease;
}

.step[data-revealed] .step-number { color: var(--sun); }

.step-title {
    margin: 0;
    font-family: var(--f-display);
    font-weight: 600;
    font-size: 1.2rem;
    letter-spacing: -0.015em;
    color: var(--ink-soft);
}

.step-desc {
    margin: 0;
    color: var(--ink-mid);
    font-size: 0.96rem;
    line-height: 1.65;
}

/* ============ PRODUCTS ============ */

.product {
    position: relative;
    display: grid;
    grid-template-columns: minmax(0, 1.05fr) minmax(0, 0.95fr);
    gap: 0;
    margin-top: clamp(42px, 5vw, 62px);
    border-radius: var(--r-xl);
    background: rgba(255, 250, 232, 0.78);
    border: 1px solid var(--line);
    box-shadow: var(--shadow-card);
    overflow: hidden;
}

.product-reverse { grid-template-columns: minmax(0, 0.95fr) minmax(0, 1.05fr); }
.product-reverse .product-media { order: 2; }
.product-reverse .product-info { order: 1; }

.product-frame {
    position: absolute;
    inset: 0;
    pointer-events: none;
    z-index: 2;
}

.product-media {
    position: relative;
    overflow: hidden;
    min-height: 390px;
    background: linear-gradient(180deg, rgba(14, 47, 41, 0.04), rgba(14, 47, 41, 0.08));
}

.product-media > img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transform: scale(1.06);
    transition: transform 1200ms var(--ease-out);
}

.product[data-revealed] .product-media > img { transform: scale(1); }

.product[data-motion-item][data-revealed] .product-media > img {
    transform: scale(calc(1 + (1 - var(--motion-center, 1)) * 0.035)) translate3d(0, calc(var(--motion-y, 0px) * -0.2), 0);
}

/* ===== Launcher embed (mallorcAI card) ===== */

.product-media-launcher {
    display: flex;
    align-items: center;
    justify-content: center;
    padding: clamp(20px, 2.4vw, 32px);
    background:
        radial-gradient(80% 60% at 30% 0%, rgba(255, 211, 100, 0.18), transparent 65%),
        linear-gradient(180deg, #f3eed8, #ecdfb9);
    overflow: hidden;
}

.launcher-window {
    position: relative;
    width: 100%;
    display: flex;
    flex-direction: column;
    border-radius: var(--r-lg);
    background: linear-gradient(180deg, #1b3a6b 0%, #112849 100%);
    border: 1px solid rgba(255, 255, 255, 0.06);
    box-shadow:
        0 30px 60px -30px rgba(8, 26, 49, 0.6),
        inset 0 1px 0 rgba(255, 255, 255, 0.08);
    overflow: hidden;
    transform: translate3d(0, calc(var(--motion-y, 0px) * -0.28), 0);
    transition: transform 420ms var(--ease-out);
}

.launcher-bar {
    display: flex;
    align-items: center;
    gap: 8px;
    padding: 12px 16px;
    border-bottom: 1px solid rgba(255, 255, 255, 0.08);
    color: rgba(255, 246, 223, 0.7);
    font-family: var(--f-mono);
    font-size: 0.7rem;
    letter-spacing: 0.12em;
    text-transform: uppercase;
}

.launcher-bar strong {
    margin-left: 8px;
    color: #fff6df;
    font-weight: 600;
}

.launcher-bar-live {
    margin-left: auto;
    display: inline-flex;
    align-items: center;
    gap: 6px;
    color: var(--sun);
    font-weight: 700;
}

.launcher-bar-live i {
    font-size: 0.42rem;
    animation: pulseLive 1.6s ease-in-out infinite;
}

.launcher-grid {
    display: grid;
    grid-template-columns: repeat(6, minmax(0, 1fr));
    gap: 6px;
    padding: 16px;
    background:
        radial-gradient(60% 80% at 50% 0%, rgba(255, 211, 100, 0.08), transparent 60%),
        linear-gradient(180deg, #16335f 0%, #0e2547 100%);
}

.launcher-tile {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 8px;
    padding: 12px 6px;
    border-radius: 14px;
    background: transparent;
    color: rgba(255, 246, 223, 0.85);
    text-decoration: none;
    text-align: center;
    transition: background 220ms ease, transform 280ms var(--ease-out), color 220ms ease;
}

.launcher-tile:hover {
    background: rgba(255, 255, 255, 0.06);
    transform: translate3d(0, -2px, 0);
    color: #fff;
}

.launcher-icon {
    display: grid;
    place-items: center;
    width: 44px;
    height: 44px;
    border-radius: 12px;
    background: linear-gradient(180deg, rgba(255, 255, 255, 0.18), rgba(255, 255, 255, 0.04));
    border: 1px solid rgba(255, 255, 255, 0.1);
    font-size: 1.05rem;
    box-shadow: 0 6px 14px -8px rgba(0, 0, 0, 0.5);
    transition: transform 280ms var(--ease-spring), box-shadow 280ms ease;
}

.launcher-tile:hover .launcher-icon {
    transform: translate3d(0, -2px, 0) scale(1.06);
}

.launcher-icon.icon-blue { background: linear-gradient(180deg, #4f9bf5, #2a73d1); color: #fff; }
.launcher-icon.icon-purple { background: linear-gradient(180deg, #a07ff0, #7757d3); color: #fff; }
.launcher-icon.icon-green { background: linear-gradient(180deg, #4cc890, #2f9c6c); color: #fff; }
.launcher-icon.icon-coral { background: linear-gradient(180deg, #f58c6f, #d6664a); color: #fff; }
.launcher-icon.icon-gold { background: linear-gradient(180deg, #f7c84d, #d99a1e); color: #2b1d05; }
.launcher-icon.icon-slate { background: linear-gradient(180deg, #6a7d96, #475b75); color: #fff; }

.launcher-name {
    font-family: var(--f-sans);
    font-size: 0.72rem;
    font-weight: 500;
    letter-spacing: -0.005em;
    line-height: 1.15;
}

.launcher-foot {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 12px;
    padding: 14px 18px;
    border-top: 1px solid rgba(255, 255, 255, 0.08);
    background: rgba(0, 0, 0, 0.16);
    color: rgba(255, 246, 223, 0.7);
    font-family: var(--f-mono);
    font-size: 0.72rem;
    letter-spacing: 0.08em;
}

.launcher-foot i { color: var(--sun); margin-right: 6px; }

.launcher-cta {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    padding: 6px 12px;
    border-radius: var(--r-pill);
    background: var(--sun);
    color: #2b1d05;
    font-weight: 700;
    text-decoration: none;
    transition: transform 240ms var(--ease-out), background 220ms ease;
}

.launcher-cta:hover {
    transform: translate3d(2px, 0, 0);
    background: #ffd66b;
}

.launcher-cta i { color: #2b1d05; }

/* ===== Category embed (mallorca-renting card) ===== */

.product-media-categories {
    display: flex;
    align-items: center;
    justify-content: center;
    padding: clamp(20px, 2.4vw, 32px);
    background:
        radial-gradient(80% 60% at 70% 100%, rgba(108, 188, 168, 0.22), transparent 65%),
        linear-gradient(180deg, #f5efdc, #ead7ae);
    overflow: hidden;
}

.categories-window {
    position: relative;
    width: 100%;
    display: flex;
    flex-direction: column;
    border-radius: var(--r-lg);
    background: linear-gradient(180deg, #fffaec 0%, #fff5dc 100%);
    border: 1px solid var(--line);
    box-shadow:
        0 30px 60px -30px rgba(31, 122, 110, 0.4),
        inset 0 1px 0 rgba(255, 255, 255, 0.7);
    overflow: hidden;
    transform: translate3d(0, calc(var(--motion-y, 0px) * -0.28), 0);
    transition: transform 420ms var(--ease-out);
}

.categories-bar {
    display: flex;
    align-items: center;
    gap: 8px;
    padding: 12px 16px;
    border-bottom: 1px solid var(--line);
    color: var(--ink-mid);
    font-family: var(--f-mono);
    font-size: 0.7rem;
    letter-spacing: 0.12em;
    text-transform: uppercase;
}

.categories-bar strong {
    margin-left: 8px;
    color: var(--teal-deep);
    font-weight: 600;
}

.categories-grid {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 10px;
    padding: 16px;
}

.cat-tile {
    position: relative;
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    gap: 6px;
    padding: 16px;
    border-radius: var(--r-md);
    background: linear-gradient(160deg, rgba(255, 250, 232, 0.96) 0%, rgba(248, 234, 199, 0.78) 100%);
    border: 1px solid var(--line);
    text-decoration: none;
    color: var(--ink-soft);
    overflow: hidden;
    isolation: isolate;
    transition: transform 280ms var(--ease-out), box-shadow 280ms ease, border-color 220ms ease;
}

.cat-tile::after {
    content: "";
    position: absolute;
    inset: auto -20% -50% auto;
    width: 70%;
    aspect-ratio: 1;
    border-radius: 50%;
    background: radial-gradient(circle, rgba(255, 211, 100, 0.36), transparent 65%);
    opacity: 0;
    transition: opacity 320ms ease;
    z-index: -1;
}

.cat-tile:hover {
    transform: translate3d(0, -3px, 0);
    border-color: var(--teal);
    box-shadow: 0 18px 30px -16px rgba(15, 74, 69, 0.32);
}

.cat-tile:hover::after {
    opacity: 1;
}

.cat-icon {
    display: grid;
    place-items: center;
    width: 38px;
    height: 38px;
    border-radius: 12px;
    background: linear-gradient(180deg, var(--teal), var(--teal-deep));
    color: var(--sun);
    font-size: 1rem;
    box-shadow: 0 8px 16px -10px rgba(15, 74, 69, 0.5);
    margin-bottom: 4px;
}

.cat-stay .cat-icon { background: linear-gradient(180deg, #1f7a6e, #0f4a45); }
.cat-cars .cat-icon { background: linear-gradient(180deg, #ee7a5f, #c4533c); }
.cat-bikes .cat-icon { background: linear-gradient(180deg, #f2b842, #c98a1e); }
.cat-yachts .cat-icon { background: linear-gradient(180deg, #6bb6c6, #3d8898); }
.cat-tours .cat-icon { background: linear-gradient(180deg, #6bb6c6, #3d8898); }
.cat-adventures .cat-icon { background: linear-gradient(180deg, #5a7d4a, #3a5c30); }
.cat-wine .cat-icon { background: linear-gradient(180deg, #a85360, #6d2b35); }
.cat-food .cat-icon { background: linear-gradient(180deg, #ee7a5f, #c4533c); }
.cat-wellness .cat-icon { background: linear-gradient(180deg, #a07ff0, #7757d3); }

.cat-name {
    font-family: var(--f-display);
    font-weight: 600;
    font-size: 0.96rem;
    letter-spacing: -0.01em;
    color: var(--ink-soft);
}

.cat-meta {
    font-family: var(--f-mono);
    font-size: 0.66rem;
    letter-spacing: 0.08em;
    text-transform: uppercase;
    color: var(--ink-mid);
}

.categories-foot {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 12px;
    padding: 14px 18px;
    border-top: 1px solid var(--line);
    background: rgba(255, 246, 223, 0.6);
    color: var(--ink-mid);
    font-family: var(--f-mono);
    font-size: 0.72rem;
    letter-spacing: 0.08em;
}

.categories-foot i { color: var(--teal); margin-right: 6px; }

.categories-cta {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    padding: 6px 12px;
    border-radius: var(--r-pill);
    background: var(--teal-deep);
    color: var(--sun);
    font-weight: 700;
    text-decoration: none;
    transition: transform 240ms var(--ease-out), background 220ms ease;
}

.categories-cta:hover {
    transform: translate3d(2px, 0, 0);
    background: var(--teal-ink);
}

.categories-cta i { color: var(--sun); }

.product-info {
    position: relative;
    padding: clamp(32px, 3.5vw, 48px);
    display: flex;
    flex-direction: column;
    min-width: 0;
}

.product-logo {
    width: 132px;
    height: auto;
    margin: 0 0 8px;
}

.product-kicker {
    display: inline-flex;
    margin-top: 6px;
    color: var(--teal);
    font-family: var(--f-mono);
    font-size: 0.74rem;
    font-weight: 600;
    letter-spacing: 0.16em;
    text-transform: uppercase;
}

.product-title {
    margin: 14px 0 14px;
    font-family: var(--f-display);
    font-weight: 600;
    font-size: clamp(1.8rem, 3.4vw, 2.6rem);
    letter-spacing: -0.03em;
    line-height: 1.04;
    color: var(--ink-soft);
}

.product-desc {
    margin: 0 0 22px;
    color: var(--ink-mid);
    font-size: 1.02rem;
    line-height: 1.72;
}

.product-features {
    list-style: none;
    margin: 0 0 28px;
    padding: 0;
    display: grid;
    gap: 10px;
}

.product-features li {
    display: flex;
    align-items: flex-start;
    gap: 12px;
    color: var(--ink-soft);
    font-size: 0.96rem;
    line-height: 1.55;
}

.product-features i {
    margin-top: 6px;
    color: var(--coral);
    font-size: 0.8rem;
}

.product-info .btn {
    align-self: flex-start;
    margin-top: auto;
}

/* ============ FOUNDERS ============ */

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

.founder {
    position: relative;
    display: flex;
    flex-direction: column;
    border-radius: var(--r-xl);
    background: rgba(255, 250, 232, 0.82);
    border: 1px solid var(--line);
    box-shadow: var(--shadow-card);
    overflow: hidden;
    transition: transform 420ms var(--ease-out), box-shadow 420ms var(--ease-out);
    will-change: transform;
}

.founder:hover {
    transform: translate3d(0, calc(var(--motion-y, 0px) - 6px), 0) rotate(var(--motion-r, 0deg)) scale(var(--motion-s, 1));
    box-shadow: var(--shadow-deep);
}

.founder-media {
    position: relative;
    aspect-ratio: 4 / 3;
    overflow: hidden;
}

.founder-media img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center 20%;
    transform: scale(1.04);
    transition: transform 1400ms var(--ease-out);
}

.founder[data-revealed] .founder-media img { transform: scale(1); }

.founder[data-motion-item][data-revealed] .founder-media img {
    transform: scale(calc(1 + (1 - var(--motion-center, 1)) * 0.035)) translate3d(0, calc(var(--motion-y, 0px) * -0.18), 0);
}

.founder-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(180deg, transparent 40%, rgba(7, 52, 49, 0.5) 100%);
}

.founder-body {
    position: relative;
    padding: clamp(24px, 2.6vw, 34px);
    display: flex;
    flex-direction: column;
    gap: 10px;
}

.founder-name {
    margin: 0;
    font-family: var(--f-display);
    font-weight: 600;
    font-size: clamp(1.45rem, 2.2vw, 1.75rem);
    letter-spacing: -0.025em;
    color: var(--ink-soft);
}

.founder-role {
    margin: 0;
    color: var(--coral);
    font-family: var(--f-mono);
    font-size: 0.78rem;
    font-weight: 600;
    letter-spacing: 0.14em;
    text-transform: uppercase;
}

.founder-bio {
    margin: 8px 0 4px;
    color: var(--ink-mid);
    font-size: 0.98rem;
    line-height: 1.7;
}

.founder-tags {
    display: flex;
    flex-wrap: wrap;
    gap: 6px;
    margin-top: 8px;
}

.founder-tags span {
    display: inline-flex;
    align-items: center;
    padding: 6px 12px;
    border-radius: var(--r-pill);
    background: rgba(14, 47, 41, 0.05);
    border: 1px solid var(--line-soft);
    color: var(--teal-deep);
    font-size: 0.82rem;
    font-weight: 600;
}

.founder-email {
    margin-top: 16px;
    display: inline-flex;
    align-items: center;
    gap: 10px;
    color: var(--teal-deep);
    font-weight: 600;
    text-decoration: none;
    transition: color 200ms ease, gap 240ms var(--ease-out);
}

.founder-email:hover {
    color: var(--coral);
    gap: 14px;
}

.founder-email i { color: var(--teal); }

/* ============ BOOKING ============ */

.booking-grid {
    display: grid;
    grid-template-columns: minmax(0, 0.88fr) minmax(0, 1.12fr);
    gap: clamp(24px, 3vw, 36px);
    align-items: stretch;
}

.booking-copy {
    position: relative;
    min-width: 0;
    padding: clamp(30px, 3.2vw, 44px);
    border-radius: var(--r-xl);
    background:
        radial-gradient(80% 60% at 0% 0%, rgba(255, 211, 100, 0.24), transparent 55%),
        radial-gradient(60% 60% at 100% 100%, rgba(238, 122, 95, 0.18), transparent 55%),
        linear-gradient(180deg, var(--teal-ink), #052321);
    color: #fff6df;
    overflow: hidden;
    display: flex;
    flex-direction: column;
}

.booking-copy .eyebrow {
    align-self: flex-start;
    margin-bottom: 22px;
}

.booking-copy .display {
    margin-bottom: 20px;
    font-size: clamp(2rem, 4.2vw, 3.35rem);
    line-height: 1.05;
    overflow-wrap: anywhere;
    hyphens: auto;
}

.booking-copy .lede {
    max-width: 54ch;
}

.booking-points {
    list-style: none;
    margin: 30px 0 0;
    padding: 0;
    display: grid;
    gap: 10px;
}

.booking-points li {
    display: flex;
    align-items: flex-start;
    gap: 14px;
    padding: 14px 16px;
    border-radius: var(--r-md);
    background: rgba(255, 255, 255, 0.06);
    border: 1px solid rgba(255, 255, 255, 0.06);
    color: rgba(255, 246, 223, 0.92);
    font-size: 0.96rem;
    line-height: 1.55;
}

.booking-point-i {
    display: inline-grid;
    place-items: center;
    width: 34px;
    height: 34px;
    border-radius: 10px;
    background: rgba(255, 211, 100, 0.18);
    color: var(--sun);
    flex: 0 0 auto;
}

.booking-direct-links {
    display: grid;
    gap: 10px;
    margin-top: auto;
    padding-top: 26px;
}

.booking-link {
    position: relative;
    display: grid;
    grid-template-columns: minmax(78px, 90px) minmax(0, 1fr) auto;
    align-items: center;
    gap: 12px;
    padding: 16px 18px;
    border-radius: var(--r-md);
    background: rgba(255, 255, 255, 0.04);
    border: 1px solid rgba(255, 255, 255, 0.08);
    text-decoration: none;
    color: inherit;
    transition: background 220ms ease, border-color 220ms ease, transform 240ms var(--ease-out);
}

.booking-link:hover {
    background: rgba(255, 255, 255, 0.08);
    border-color: rgba(255, 211, 100, 0.34);
    transform: translate3d(0, -2px, 0);
}

.booking-link-label {
    font-family: var(--f-mono);
    font-size: 0.7rem;
    letter-spacing: 0.16em;
    text-transform: uppercase;
    color: rgba(255, 246, 223, 0.5);
}

.booking-link strong { font-weight: 600; }

.booking-link strong {
    min-width: 0;
    overflow-wrap: anywhere;
}

.booking-link i { color: rgba(255, 246, 223, 0.5); }

.cal-shell {
    position: relative;
    border-radius: var(--r-xl);
    background: rgba(255, 250, 232, 0.96);
    border: 1px solid var(--line);
    box-shadow: var(--shadow-card);
    overflow: hidden;
    display: flex;
    flex-direction: column;
}

.cal-topbar {
    display: flex;
    align-items: center;
    gap: 8px;
    padding: 14px 18px;
    border-bottom: 1px solid var(--line);
    font-family: var(--f-mono);
    font-size: 0.72rem;
    letter-spacing: 0.14em;
    color: var(--ink-mid);
}

.cal-topbar strong {
    margin-left: 8px;
    color: var(--teal-deep);
    font-weight: 600;
}

.dot { width: 10px; height: 10px; border-radius: 50%; }
.dot-red { background: var(--coral); }
.dot-amber { background: var(--sun-deep); }
.dot-green { background: #82c99f; }

.cal-frame { flex: 1; padding: 16px; }

.cal-embed-host {
    min-height: 880px;
    height: min(88vh, 960px);
    border-radius: var(--r-lg);
    overflow: hidden;
    background: #fff;
    box-shadow: inset 0 0 0 1px var(--line-soft);
}

/* ============ CONTACT ============ */

.contact-stage {
    position: relative;
    display: grid;
    grid-template-columns: minmax(0, 1.1fr) minmax(0, 0.9fr);
    gap: clamp(30px, 4.5vw, 64px);
    align-items: stretch;
    padding: clamp(36px, 4.5vw, 64px);
    border-radius: var(--r-xl);
    background:
        radial-gradient(60% 80% at 100% 0%, rgba(255, 211, 100, 0.28), transparent 60%),
        radial-gradient(60% 80% at 0% 100%, rgba(238, 122, 95, 0.16), transparent 60%),
        linear-gradient(180deg, rgba(255, 250, 232, 0.96), rgba(248, 234, 199, 0.82));
    border: 1px solid var(--line);
    box-shadow: var(--shadow-deep);
}

.contact-copy {
    display: flex;
    flex-direction: column;
    gap: 16px;
    min-width: 0;
}

.contact-actions {
    display: flex;
    flex-wrap: wrap;
    gap: 12px;
    margin-top: 14px;
}

.contact-card {
    align-self: stretch;
    display: flex;
    flex-direction: column;
    gap: 14px;
    padding: clamp(24px, 2.5vw, 32px);
    border-radius: var(--r-lg);
    background: rgba(255, 246, 223, 0.78);
    border: 1px solid var(--line);
    min-width: 0;
}

.contact-address {
    margin: 0;
    color: var(--ink-mid);
    line-height: 1.85;
    overflow-wrap: anywhere;
}

.contact-address strong { color: var(--teal-deep); }

/* ============ FOOTER ============ */

.site-footer {
    position: relative;
    padding: 0 0 40px;
    margin-top: var(--s-8);
}

.footer-rail {
    width: var(--container);
    margin: 0 auto var(--s-7);
}

.footer-shell {
    width: var(--container);
    margin: 0 auto;
    display: grid;
    grid-template-columns: minmax(0, 1.4fr) repeat(3, minmax(0, 1fr));
    gap: clamp(28px, 3vw, 48px);
    padding: clamp(28px, 3.5vw, 44px);
    border-radius: var(--r-xl);
    background: rgba(255, 250, 232, 0.78);
    border: 1px solid var(--line);
    box-shadow: var(--shadow-card);
}

.footer-brand {
    display: inline-flex;
    align-items: center;
    gap: 12px;
    text-decoration: none;
    color: var(--teal-deep);
}

.footer-brand-image {
    width: 42px;
    height: 42px;
    object-fit: contain;
}

.footer-brand-word {
    font-family: var(--f-display);
    font-weight: 600;
    font-size: 1.18rem;
    letter-spacing: -0.02em;
}

.footer-desc {
    margin: 16px 0 0;
    color: var(--ink-mid);
    line-height: 1.7;
    max-width: 36ch;
}

.footer-social {
    display: flex;
    gap: 10px;
    margin-top: 20px;
}

.footer-social a {
    display: inline-grid;
    place-items: center;
    width: 38px;
    height: 38px;
    border-radius: 12px;
    background: rgba(14, 47, 41, 0.05);
    border: 1px solid var(--line-soft);
    color: var(--teal-deep);
    text-decoration: none;
    transition: background 200ms ease, transform 240ms var(--ease-out), color 200ms ease;
}

.footer-social a:hover {
    background: var(--teal-ink);
    color: var(--sun);
    transform: translate3d(0, -2px, 0);
}

.footer-column h4 {
    margin: 0 0 14px;
    font-family: var(--f-display);
    font-weight: 600;
    font-size: 1.05rem;
    letter-spacing: -0.01em;
    color: var(--ink-soft);
}

.footer-links {
    display: grid;
    gap: 8px;
}

.footer-links a {
    color: var(--ink-mid);
    text-decoration: none;
    font-size: 0.94rem;
    transition: color 180ms ease;
}

.footer-links a:hover { color: var(--teal-deep); }

.footer-bottom {
    width: var(--container);
    margin: 22px auto 0;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 18px;
    padding: 18px 8px 0;
    color: var(--ink-faint);
    font-size: 0.88rem;
}

.footer-copy span { color: var(--ink-faint); }

.footer-legal {
    display: flex;
    flex-wrap: wrap;
    gap: 20px;
}

.footer-legal a {
    color: var(--ink-mid);
    text-decoration: none;
    transition: color 180ms ease;
}

.footer-legal a:hover { color: var(--teal-deep); }

/* ============ Animations ============ */

@keyframes signalBars {
    0%, 100% { transform: scaleY(0.4); }
    50% { transform: scaleY(1); }
}

/* ============ Responsive ============ */

@media (max-width: 1120px) {
    .hero .hero-grid {
        grid-template-columns: 1fr;
        min-height: auto;
    }

    .hero-copy {
        padding-top: 0;
    }

    .hero-visual { min-height: 560px; }

    .section-header-split {
        grid-template-columns: 1fr;
        align-items: start;
        gap: 18px;
    }

    .about-grid,
    .booking-grid,
    .contact-stage {
        grid-template-columns: 1fr;
    }

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

    .service-card,
    .service-card-feature,
    .service-card-dark,
    .services-bento .service-card:nth-child(2),
    .services-bento .service-card:nth-child(5) {
        grid-column: span 1;
        --service-shift: 0px !important;
        --service-tilt: 0deg !important;
    }

    .pillars { grid-template-columns: repeat(3, 1fr); }

    .pipeline {
        grid-template-columns: repeat(2, 1fr);
        gap: 32px;
        padding-top: 0;
    }

    .pipeline-rail { display: none; }

    .step { padding: 22px 24px 24px; }

    .step-marker {
        position: static;
        top: auto;
        left: auto;
        box-shadow:
            0 6px 14px -10px rgba(15, 74, 69, 0.45);
        margin-bottom: 4px;
    }

    .step[data-motion-item] .step-marker,
    .step[data-revealed] .step-marker {
        transform: none;
    }

    .product,
    .product-reverse { grid-template-columns: 1fr; }

    .product-reverse .product-media,
    .product-reverse .product-info { order: initial; }

    .delivery {
        grid-template-columns: 1fr;
        gap: 22px;
    }

    .ai-spotlight {
        grid-template-columns: 1fr;
        gap: 22px;
    }

    .ai-spotlight-divider {
        height: 1px;
        width: 100%;
        background: linear-gradient(90deg, transparent, var(--line-strong), transparent);
    }

    .footer-shell { grid-template-columns: repeat(2, 1fr); }
}

@media (max-width: 720px) {
    .hero {
        padding-top: 132px;
        padding-bottom: 86px;
        min-height: auto;
    }

    .section-rail {
        gap: 10px;
        margin-bottom: 20px;
    }

    .rail-divider {
        flex-basis: 18px;
    }

    .rail-divider-grow,
    .rail-coord {
        display: none;
    }

    .section-header-split {
        margin-bottom: 26px;
    }

    .hero .section-rail {
        margin-bottom: 26px;
    }

    .display-hero {
        font-size: clamp(2.4rem, 10.4vw, 2.95rem);
        letter-spacing: -0.04em;
    }

    .hero-visual { min-height: 460px; }

    .hero-photo {
        width: 92%;
        margin-left: auto;
        margin-right: 4%;
    }

    .hero-chip-location {
        top: 8%;
        left: -2%;
    }

    .hero-chip-since {
        top: 65%;
        right: -2%;
        bottom: auto;
    }

    .hero-chip-pulse {
        top: 0;
        right: -2%;
        max-width: 200px;
    }

    .hero-proof {
        grid-template-columns: 1fr;
        padding: 16px 18px;
        gap: 14px;
    }

    .proof-divider {
        width: 100%;
        height: 1px;
        background: linear-gradient(90deg, transparent, var(--line-strong), transparent);
    }

    .pillars { grid-template-columns: 1fr; }

    .pipeline { grid-template-columns: 1fr; }

    .step {
        min-height: 0;
    }

    .services-bento { grid-template-columns: 1fr; }

    .service-card,
    .service-card-feature,
    .service-card-dark,
    .services-bento .service-card:nth-child(2),
    .services-bento .service-card:nth-child(5) {
        grid-column: 1 / -1;
        min-height: 0;
        --service-shift: 0px !important;
        --service-tilt: 0deg !important;
        --service-depth: 0px !important;
    }

    .ai-spotlight,
    .delivery,
    .contact-stage {
        padding: 24px;
    }

    .product-media {
        min-height: 320px;
    }

    .product-media-launcher,
    .product-media-categories {
        display: contents;
    }

    .launcher-window,
    .categories-window {
        margin-bottom: 24px;
    }

    .cal-frame { padding: 0; }

    body.homepage .site-footer { margin-top: 0; }

    .launcher-grid {
        grid-template-columns: repeat(4, minmax(0, 1fr));
        gap: 4px;
        padding: 12px;
    }

    .launcher-icon {
        width: 38px;
        height: 38px;
    }

    .launcher-name {
        font-size: 0.66rem;
    }

    .categories-grid {
        grid-template-columns: repeat(2, minmax(0, 1fr));
        gap: 8px;
        padding: 12px;
    }

    .cat-tile {
        padding: 12px;
    }

    .booking-copy .display {
        font-size: clamp(1.9rem, 10vw, 2.55rem);
    }

    .booking-link {
        grid-template-columns: 1fr auto;
        gap: 6px 12px;
    }

    .booking-link-label {
        grid-column: 1 / -1;
    }

    .founders-grid { grid-template-columns: 1fr; }

    .footer-shell {
        grid-template-columns: 1fr;
        padding: 24px;
    }

    .footer-bottom {
        flex-direction: column;
        align-items: flex-start;
    }

    .timeline-item {
        grid-template-columns: 24px 1fr;
        grid-template-rows: auto auto;
        gap: 6px 12px;
    }

    .timeline-marker { grid-row: 1 / 3; }
    .timeline-year { grid-column: 2; }
    .timeline-body { grid-column: 2; }
}

/* ============ Reduced motion ============ */

@media (prefers-reduced-motion: reduce) {
    html { scroll-behavior: auto; }

    *,
    *::before,
    *::after {
        animation-duration: 0.001ms !important;
        animation-iteration-count: 1 !important;
        transition-duration: 0.001ms !important;
    }

    [data-reveal],
    [data-split-lines] .word-inner,
    .line .line-inner,
    .fade-in-scroll {
        opacity: 1 !important;
        transform: none !important;
    }

    .signal-canvas,
    .cursor-light { display: none; }
}

@media (pointer: coarse) {
    .signal-canvas,
    .cursor-light { display: none; }
}

/* Mobile perf: drop GPU-expensive backdrop blurs; bump background opacity so the surfaces stay readable. */
@media (max-width: 720px) {
    .site-nav.is-scrolled .nav-inner,
    body:not(.homepage) .site-nav .nav-inner {
        backdrop-filter: none;
        -webkit-backdrop-filter: none;
        background: rgba(255, 250, 232, 0.98);
    }

    .btn-ghost {
        backdrop-filter: none;
        background: rgba(255, 250, 232, 0.92);
    }

    .hero-proof {
        backdrop-filter: none;
        background: rgba(255, 250, 232, 0.94);
    }

    .hero-photo-meta {
        backdrop-filter: none;
        background: rgba(7, 52, 49, 0.92);
    }

    .surface {
        backdrop-filter: none;
    }

    /* Hide the desktop-only scroll progress bar on phones. */
    .scroll-progress { display: none; }

    /* Drop compositor hints - fewer permanent GPU layers in iOS WebKit. */
    .scene-grid,
    .hero-photo,
    .hero-photo img,
    [data-parallax],
    [data-motion-item] {
        will-change: auto;
    }

    /* Drop section-level stacking contexts on phones. */
    section[data-scene] { isolation: auto; }

    /* Neutralize identity-evaluating transforms that still promote layers
       even when the underlying CSS vars are at their at-rest defaults. */
    .homepage::after,
    .sun,
    .scene-grid,
    .hero-photo img,
    .hero-visual[data-revealed] .hero-photo img,
    [data-motion-item][data-revealed],
    .service-card[data-motion-item][data-revealed],
    .service-card[data-motion-item] .service-icon,
    .pillar[data-motion-item] .pillar-icon,
    .pipeline-rail-fill {
        transform: none !important;
    }
}
