/* =========================================================
   PODNIKATELSKY365 — FINTECH DESIGN SYSTEM v4
   Čisté PHP + jeden CSS soubor. Bez frameworku.
   ========================================================= */

:root {
    --ink: #080a0f;
    --ink-2: #11151d;
    --night: #05070b;
    --night-2: #0a1019;
    --night-3: #0e1725;

    --blue: #146ef5;
    --blue-2: #2e86ff;
    --blue-3: #77b7ff;
    --blue-soft: #dceaff;
    --blue-ice: #edf5ff;
    --cyan: #72d4ff;

    --paper: #ffffff;
    --bg: #f2f4f7;
    --bg-2: #e9edf3;
    --surface: #f9fafb;
    --surface-2: #eef2f7;

    --text: #242a34;
    --muted: #69717f;
    --muted-2: #9299a5;
    --line: #dde2e8;
    --line-dark: rgba(255,255,255,.12);

    --green: #0d8f63;
    --danger: #a23f52;

    --container: 1280px;
    --reading: 780px;
    --header-h: 74px;

    --r-xs: 10px;
    --r-sm: 16px;
    --r-md: 24px;
    --r-lg: 34px;
    --r-xl: 48px;

    --shadow-soft: 0 16px 50px rgba(12, 20, 34, .08);
    --shadow-float: 0 30px 80px rgba(9, 17, 31, .16);
    --shadow-blue: 0 24px 70px rgba(20, 110, 245, .26);

    --font: "Inter", "SF Pro Text", "SF Pro Display", "Segoe UI Variable", "Segoe UI", system-ui, -apple-system, BlinkMacSystemFont, Arial, sans-serif;
    --ease: cubic-bezier(.22,.75,.25,1);
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; scroll-padding-top: 110px; }
body {
    margin: 0;
    min-height: 100vh;
    background: var(--bg);
    color: var(--text);
    font: 16.5px/1.68 var(--font);
    font-optical-sizing: auto;
    -webkit-font-smoothing: antialiased;
    text-rendering: optimizeLegibility;
}
body.menu-open { overflow: hidden; }
img, svg, video { display: block; max-width: 100%; }
a { color: inherit; text-decoration-thickness: 1px; text-underline-offset: 4px; }
button, input, textarea, select { font: inherit; }
button { cursor: pointer; }
::selection { background: var(--blue); color: #fff; }

h1, h2, h3, h4, p { margin-top: 0; }
h1, h2, h3, h4 {
    color: var(--ink);
    font-weight: 650;
    letter-spacing: -.055em;
    line-height: .99;
    text-wrap: balance;
}
h1 { font-size: clamp(3.65rem, 8.2vw, 8.5rem); }
h2 { font-size: clamp(2.45rem, 5.2vw, 5.5rem); }
h3 { font-size: clamp(1.35rem, 2.25vw, 2rem); letter-spacing: -.04em; line-height: 1.07; }
h4 { font-size: 1.08rem; letter-spacing: -.025em; line-height: 1.2; }
p { margin-bottom: 1.35em; }
strong { color: inherit; font-weight: 700; }
small { font-size: .82rem; }
code {
    padding: .12rem .38rem;
    border: 1px solid rgba(8,10,15,.08);
    border-radius: 7px;
    background: rgba(8,10,15,.045);
    font-size: .92em;
}

.container { width: min(calc(100% - 64px), var(--container)); margin-inline: auto; }
.text-container { width: min(calc(100% - 64px), var(--reading)); margin-inline: auto; }
.section { padding-block: clamp(88px, 10vw, 150px); }
.section-tight { padding-block: clamp(66px, 7vw, 105px); }
.surface { background: var(--paper); }
.surface-2 { background: var(--surface-2); }
.section-line { border-top: 1px solid var(--line); }
.narrow-left { max-width: 930px; }
.muted { color: var(--muted); }
.small { font-size: .88rem; }

.skip-link {
    position: fixed;
    z-index: 9999;
    top: 12px;
    left: 12px;
    padding: 10px 14px;
    border-radius: 10px;
    background: var(--ink);
    color: #fff;
    transform: translateY(-170%);
    transition: transform .2s ease;
}
.skip-link:focus { transform: none; }
:focus-visible { outline: 2px solid var(--blue); outline-offset: 4px; }

/* ---------------------------------------------------------
   Liquid glass — jen tam, kde dává smysl
   --------------------------------------------------------- */
.glass-shell,
.glass-chip,
.glass-card,
.meta-strip,
.contact-card {
    border: 1px solid rgba(255,255,255,.5);
    background:
        linear-gradient(145deg, rgba(255,255,255,.68), rgba(255,255,255,.38));
    box-shadow:
        0 20px 55px rgba(12,20,34,.09),
        inset 0 1px 0 rgba(255,255,255,.92),
        inset 0 -1px 0 rgba(255,255,255,.18);
    backdrop-filter: blur(24px) saturate(170%);
    -webkit-backdrop-filter: blur(24px) saturate(170%);
}
.glass-dark {
    border: 1px solid rgba(255,255,255,.13);
    background:
        linear-gradient(145deg, rgba(255,255,255,.105), rgba(255,255,255,.035));
    box-shadow:
        0 28px 80px rgba(0,0,0,.26),
        inset 0 1px 0 rgba(255,255,255,.15),
        inset 0 -1px 0 rgba(255,255,255,.035);
    backdrop-filter: blur(26px) saturate(160%);
    -webkit-backdrop-filter: blur(26px) saturate(160%);
}
@supports not ((backdrop-filter: blur(1px)) or (-webkit-backdrop-filter: blur(1px))) {
    .glass-shell, .glass-chip, .glass-card, .meta-strip, .contact-card { background: rgba(255,255,255,.96); }
    .glass-dark { background: #111824; }
}

/* ---------------------------------------------------------
   Header
   --------------------------------------------------------- */
.site-header {
    position: fixed;
    z-index: 1000;
    top: 18px;
    left: 50%;
    width: min(calc(100% - 36px), calc(var(--container) + 28px));
    transform: translateX(-50%);
    border-radius: 22px;
    transition: background .3s ease, border-color .3s ease, box-shadow .3s ease, transform .3s ease;
}
.site-header.scrolled {
    background: rgba(255,255,255,.78);
    border-color: rgba(255,255,255,.76);
    box-shadow: 0 22px 55px rgba(10,18,31,.12), inset 0 1px 0 rgba(255,255,255,.94);
}
.header-inner {
    min-height: var(--header-h);
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 30px;
    padding-inline: 18px;
}
.brand {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    color: var(--ink);
    font-weight: 680;
    letter-spacing: -.04em;
    text-decoration: none;
    white-space: nowrap;
}
.brand-mark {
    display: grid;
    place-items: center;
    width: 30px;
    height: 30px;
    border-radius: 10px;
    background: var(--ink);
    color: var(--blue-2);
    font-size: .86rem;
    font-weight: 850;
    box-shadow: inset 0 1px 0 rgba(255,255,255,.16);
}
.brand-word { font-size: .98rem; }
.brand-word strong { color: var(--blue); }
.site-nav { display: flex; align-items: center; gap: 30px; }
.site-nav > a {
    position: relative;
    padding: 10px 0;
    color: #4c5563;
    font-size: .88rem;
    font-weight: 590;
    text-decoration: none;
    transition: color .2s ease;
}
.site-nav > a:not(.nav-cta)::after {
    content: "";
    position: absolute;
    right: 0;
    bottom: 3px;
    left: 0;
    height: 1.5px;
    border-radius: 99px;
    background: var(--blue);
    transform: scaleX(0);
    transform-origin: right center;
    transition: transform .25s var(--ease);
}
.site-nav > a:hover,
.site-nav > a[aria-current="page"] { color: var(--ink); }
.site-nav > a:hover::after,
.site-nav > a[aria-current="page"]::after { transform: scaleX(1); transform-origin: left center; }
.site-nav .nav-cta {
    display: inline-flex;
    align-items: center;
    gap: 9px;
    padding: 12px 16px;
    border: 1px solid rgba(8,10,15,.09);
    border-radius: 13px;
    background: var(--ink);
    color: #fff;
    box-shadow: 0 8px 20px rgba(8,10,15,.12), inset 0 1px 0 rgba(255,255,255,.12);
}
.site-nav .nav-cta:hover { color: #fff; background: #161a22; }
.menu-button {
    display: none;
    width: 48px;
    height: 48px;
    padding: 0;
    border-radius: 15px;
    color: var(--ink);
}
.menu-button span {
    display: block;
    width: 19px;
    height: 1.6px;
    margin: 4px auto;
    border-radius: 99px;
    background: currentColor;
    transition: transform .2s ease, opacity .2s ease;
}
.menu-button[aria-expanded="true"] span:nth-child(1) { transform: translateY(5.6px) rotate(45deg); }
.menu-button[aria-expanded="true"] span:nth-child(2) { opacity: 0; }
.menu-button[aria-expanded="true"] span:nth-child(3) { transform: translateY(-5.6px) rotate(-45deg); }

/* ---------------------------------------------------------
   Shared type / buttons
   --------------------------------------------------------- */
.eyebrow,
.micro-label,
.kicker {
    display: inline-flex;
    align-items: center;
    gap: 9px;
    margin-bottom: 22px;
    color: var(--blue);
    font-size: .72rem;
    font-weight: 760;
    letter-spacing: .115em;
    line-height: 1.2;
    text-transform: uppercase;
}
.eyebrow::before {
    content: "";
    width: 20px;
    height: 1px;
    background: currentColor;
}
.lead {
    max-width: 760px;
    color: #515967;
    font-size: clamp(1.08rem, 1.55vw, 1.36rem);
    line-height: 1.58;
    letter-spacing: -.016em;
}
.actions { display: flex; flex-wrap: wrap; gap: 11px; align-items: center; }
.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    min-height: 52px;
    padding: 14px 20px;
    border: 1px solid transparent;
    border-radius: 15px;
    font-size: .9rem;
    font-weight: 680;
    line-height: 1;
    text-decoration: none;
    transition: transform .22s var(--ease), box-shadow .22s ease, background .22s ease, border-color .22s ease;
}
.btn:hover { transform: translateY(-2px); }
.btn-primary {
    background: var(--blue);
    color: #fff;
    box-shadow: 0 14px 30px rgba(20,110,245,.22), inset 0 1px 0 rgba(255,255,255,.24);
}
.btn-primary:hover { background: #0b63ea; box-shadow: 0 18px 36px rgba(20,110,245,.28); }
.btn-dark { background: var(--ink); color: #fff; box-shadow: 0 14px 30px rgba(8,10,15,.18); }
.btn-dark:hover { background: #171b24; }
.btn-light { background: #fff; color: var(--ink); box-shadow: 0 14px 30px rgba(0,0,0,.15); }
.btn-light:hover { box-shadow: 0 18px 38px rgba(0,0,0,.22); }
.btn-secondary {
    border-color: rgba(8,10,15,.1);
    background: rgba(255,255,255,.68);
    color: var(--ink);
    box-shadow: inset 0 1px 0 rgba(255,255,255,.85);
    backdrop-filter: blur(16px);
}
.btn-secondary:hover { border-color: rgba(8,10,15,.18); background: #fff; }
.btn-text { min-height: auto; padding: 8px 2px; color: var(--ink); }
.btn-text::after { content: "↗"; color: var(--blue); }

/* ---------------------------------------------------------
   Hero — product-led fintech, bez falešné bankovní aplikace
   --------------------------------------------------------- */
.hero-fintech {
    position: relative;
    overflow: clip;
    min-height: 100svh;
    padding: 150px 0 92px;
    background:
        radial-gradient(700px 520px at 83% 28%, rgba(20,110,245,.16), transparent 64%),
        radial-gradient(520px 380px at 64% 76%, rgba(114,212,255,.10), transparent 70%),
        linear-gradient(180deg, #f6f8fb 0%, #edf1f6 100%);
}
.hero-fintech::before {
    content: "";
    position: absolute;
    inset: 0;
    pointer-events: none;
    background-image:
        linear-gradient(rgba(8,10,15,.035) 1px, transparent 1px),
        linear-gradient(90deg, rgba(8,10,15,.035) 1px, transparent 1px);
    background-size: 72px 72px;
    mask-image: linear-gradient(to bottom, rgba(0,0,0,.2), transparent 68%);
}
.hero-grid {
    position: relative;
    z-index: 1;
    display: grid;
    grid-template-columns: minmax(0, 1fr) minmax(420px, .88fr);
    gap: clamp(42px, 6vw, 95px);
    align-items: center;
}
.hero-copy { padding-top: 28px; }
.hero-copy h1 {
    max-width: 820px;
    margin-bottom: 28px;
    font-size: clamp(4.2rem, 8.7vw, 8.6rem);
    line-height: .91;
    letter-spacing: -.072em;
}
.hero-copy h1 .blue { color: var(--blue); }
.hero-copy .lead { max-width: 660px; margin-bottom: 36px; }
.hero-proof {
    display: flex;
    flex-wrap: wrap;
    gap: 10px 22px;
    margin-top: 40px;
    color: #737b87;
    font-size: .82rem;
}
.hero-proof span { display: inline-flex; align-items: center; gap: 8px; }
.hero-proof span::before {
    content: "";
    width: 5px;
    height: 5px;
    border-radius: 50%;
    background: var(--blue);
    box-shadow: 0 0 0 4px rgba(20,110,245,.09);
}

.hero-stage {
    position: relative;
    min-height: 650px;
    perspective: 1200px;
    isolation: isolate;
}
.hero-stage::before {
    content: "";
    position: absolute;
    z-index: -2;
    top: 8%;
    left: 8%;
    width: 86%;
    aspect-ratio: 1;
    border-radius: 44% 56% 62% 38% / 46% 40% 60% 54%;
    background:
        radial-gradient(circle at 36% 32%, rgba(255,255,255,.95), transparent 17%),
        radial-gradient(circle at 46% 46%, rgba(119,183,255,.9), rgba(20,110,245,.74) 42%, rgba(20,110,245,.06) 72%);
    filter: blur(2px);
    opacity: .94;
    transform: rotate(-8deg);
    box-shadow: 0 60px 150px rgba(20,110,245,.18);
}
.hero-stage::after {
    content: "";
    position: absolute;
    z-index: -1;
    right: -5%;
    bottom: 5%;
    width: 78%;
    height: 17%;
    border-radius: 50%;
    background: rgba(10,20,35,.18);
    filter: blur(36px);
    transform: rotate(-5deg);
}

.book-object {
    position: absolute;
    z-index: 4;
    top: 15%;
    left: 22%;
    width: min(330px, 56%);
    aspect-ratio: .71;
    transform-style: preserve-3d;
    transform: rotateY(-15deg) rotateX(7deg) rotateZ(-3deg);
    transition: transform .25s var(--ease);
    filter: drop-shadow(0 35px 38px rgba(8,14,26,.24));
}
.book-object::before {
    content: "";
    position: absolute;
    top: 1.4%;
    right: -8%;
    width: 9%;
    height: 98%;
    border-radius: 0 8px 8px 0;
    background: linear-gradient(90deg, #d9dee6, #fff 28%, #c6ccd5 72%, #fafafa);
    transform: rotateY(72deg);
    transform-origin: left center;
}
.book-object::after {
    content: "";
    position: absolute;
    right: -1%;
    bottom: -5%;
    left: 5%;
    height: 8%;
    border-radius: 0 0 10px 10px;
    background: linear-gradient(#fff, #cbd2dc);
    transform: rotateX(74deg);
    transform-origin: top center;
}
.book-face {
    position: absolute;
    inset: 0;
    overflow: hidden;
    padding: 28px;
    border: 1px solid rgba(255,255,255,.22);
    border-radius: 9px 14px 14px 9px;
    background:
        radial-gradient(280px 220px at 95% 0%, rgba(46,134,255,.78), transparent 60%),
        linear-gradient(155deg, #080b11 0%, #0b1220 50%, #06152d 100%);
    color: #fff;
    box-shadow: inset 0 1px 0 rgba(255,255,255,.11);
}
.book-face::before {
    content: "";
    position: absolute;
    inset: 0;
    background-image:
        linear-gradient(rgba(255,255,255,.055) 1px, transparent 1px),
        linear-gradient(90deg, rgba(255,255,255,.055) 1px, transparent 1px);
    background-size: 44px 44px;
    mask-image: linear-gradient(135deg, rgba(0,0,0,.75), transparent 70%);
}
.book-brand,
.book-title-big,
.book-subtitle,
.book-index { position: relative; z-index: 1; }
.book-brand {
    display: flex;
    align-items: center;
    gap: 7px;
    color: rgba(255,255,255,.78);
    font-size: .7rem;
    font-weight: 650;
    letter-spacing: -.02em;
}
.book-brand::before { content: "P"; display: grid; place-items: center; width: 21px; height: 21px; border-radius: 7px; background: #fff; color: var(--blue); font-weight: 850; }
.book-title-big {
    margin-top: 70px;
    max-width: 240px;
    font-size: clamp(2rem, 3.5vw, 3.3rem);
    font-weight: 620;
    letter-spacing: -.065em;
    line-height: .94;
}
.book-title-big em { display: block; color: var(--blue-3); font-style: normal; }
.book-subtitle {
    position: absolute;
    right: 28px;
    bottom: 30px;
    left: 28px;
    color: rgba(255,255,255,.62);
    font-size: .72rem;
    line-height: 1.42;
}
.book-index {
    position: absolute;
    top: 28px;
    right: 28px;
    color: rgba(255,255,255,.4);
    font-size: .66rem;
    letter-spacing: .1em;
}

.float-card {
    position: absolute;
    z-index: 6;
    border-radius: 20px;
    color: var(--ink);
}
.float-card strong { display: block; color: var(--ink); letter-spacing: -.04em; }
.float-stat {
    top: 8%;
    right: 1%;
    width: 178px;
    padding: 17px 18px;
}
.float-stat .num { font-size: 1.55rem; line-height: 1; }
.float-stat span { color: var(--muted); font-size: .72rem; }
.float-price {
    right: 2%;
    bottom: 15%;
    width: 172px;
    padding: 16px 18px;
}
.float-price strong { font-size: 1.45rem; }
.float-price small { color: var(--muted); }
.float-topics {
    bottom: 3%;
    left: 1%;
    width: 218px;
    padding: 16px 18px 14px;
}
.float-topics .mini-row {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 12px;
    padding: 8px 0;
    border-bottom: 1px solid rgba(8,10,15,.07);
    color: #4c5562;
    font-size: .72rem;
}
.float-topics .mini-row:last-child { border-bottom: 0; }
.mini-line { width: 52px; height: 15px; }
.mini-line path { fill: none; stroke: var(--blue); stroke-width: 2; }
.float-note {
    top: 43%;
    left: -4%;
    width: 168px;
    padding: 15px 16px;
    color: #eef5ff;
}
.float-note strong { color: #fff; font-size: .94rem; line-height: 1.18; }
.float-note span { display: block; margin-top: 8px; color: rgba(255,255,255,.55); font-size: .69rem; }

.topic-strip {
    position: relative;
    z-index: 5;
    margin-top: -1px;
    border-top: 1px solid var(--line);
    border-bottom: 1px solid var(--line);
    background: rgba(255,255,255,.82);
    overflow: hidden;
}
.topic-strip-inner {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 26px;
    min-height: 82px;
    color: #59616e;
    font-size: .76rem;
    font-weight: 650;
    letter-spacing: .045em;
    text-transform: uppercase;
}
.topic-strip-inner span { white-space: nowrap; }
.topic-strip-inner i { width: 4px; height: 4px; border-radius: 50%; background: var(--blue); }

/* ---------------------------------------------------------
   Statement / section headers
   --------------------------------------------------------- */
.statement-section { padding: clamp(115px, 14vw, 220px) 0; background: var(--paper); }
.statement {
    max-width: 1080px;
    margin: 0 auto;
    color: var(--ink);
    font-size: clamp(3rem, 6.6vw, 7.1rem);
    font-weight: 610;
    letter-spacing: -.066em;
    line-height: .95;
    text-align: center;
    text-wrap: balance;
}
.statement .muted-word { color: #b1b7c0; }
.section-heading {
    display: grid;
    grid-template-columns: 180px minmax(0, 1fr);
    gap: 44px;
    margin-bottom: clamp(50px, 7vw, 96px);
}
.section-index {
    padding-top: 8px;
    color: var(--blue);
    font-size: .72rem;
    font-weight: 770;
    letter-spacing: .1em;
}
.section-heading-copy { max-width: 920px; }
.section-heading-copy h2 { margin-bottom: 22px; }
.section-heading-copy .lead { max-width: 720px; }

/* Legacy-compatible section header */
.section-head { display: grid; grid-template-columns: 150px minmax(0,1fr); gap: 42px; margin-bottom: 70px; }
.section-no { padding-top: 9px; color: var(--blue); font-size: .72rem; font-weight: 770; letter-spacing: .1em; }
.section-title { max-width: 900px; }
.section-title h2 { margin-bottom: 20px; }

/* ---------------------------------------------------------
   Featured publication
   --------------------------------------------------------- */
.featured-wrap { background: var(--paper); padding-bottom: clamp(90px, 10vw, 150px); }
.featured-publication {
    position: relative;
    overflow: hidden;
    display: grid;
    grid-template-columns: .88fr 1.12fr;
    min-height: 700px;
    border-radius: var(--r-xl);
    background:
        radial-gradient(780px 520px at 18% 46%, rgba(20,110,245,.47), transparent 64%),
        radial-gradient(650px 480px at 95% 100%, rgba(114,212,255,.14), transparent 74%),
        linear-gradient(135deg, #05070b 0%, #08111e 56%, #0b1421 100%);
    box-shadow: 0 36px 100px rgba(7,12,21,.16);
    color: #fff;
}
.featured-publication::before {
    content: "";
    position: absolute;
    inset: 0;
    opacity: .58;
    background-image:
        linear-gradient(rgba(255,255,255,.055) 1px, transparent 1px),
        linear-gradient(90deg, rgba(255,255,255,.055) 1px, transparent 1px);
    background-size: 74px 74px;
    mask-image: radial-gradient(circle at 42% 47%, black, transparent 76%);
}
.featured-visual,
.featured-copy { position: relative; z-index: 1; }
.featured-visual { min-height: 700px; }
.featured-visual .book-object { top: 15%; left: 19%; width: 310px; transform: rotateY(-18deg) rotateX(7deg) rotateZ(-6deg); }
.featured-orbit {
    position: absolute;
    top: 14%;
    left: 8%;
    width: 78%;
    aspect-ratio: 1;
    border: 1px solid rgba(119,183,255,.18);
    border-radius: 50%;
    transform: rotate(-14deg);
}
.featured-orbit::before,
.featured-orbit::after {
    content: "";
    position: absolute;
    border: 1px solid rgba(119,183,255,.1);
    border-radius: 50%;
}
.featured-orbit::before { inset: 11%; }
.featured-orbit::after { inset: 25%; }
.featured-copy {
    align-self: center;
    padding: 80px 76px 80px 24px;
}
.featured-copy .eyebrow { color: var(--blue-3); }
.featured-copy h2 { max-width: 720px; color: #fff; font-size: clamp(3.2rem, 5.5vw, 6rem); }
.featured-copy .lead { max-width: 650px; color: rgba(232,241,252,.68); }
.featured-copy .actions { margin-top: 30px; }
.featured-meta {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
    margin: 32px 0 0;
}
.featured-meta span {
    padding: 10px 13px;
    border: 1px solid rgba(255,255,255,.12);
    border-radius: 12px;
    background: rgba(255,255,255,.06);
    color: rgba(255,255,255,.74);
    font-size: .76rem;
    backdrop-filter: blur(12px);
}

/* ---------------------------------------------------------
   Bento system
   --------------------------------------------------------- */
.bento-section { background: var(--bg); }
.bento-grid {
    display: grid;
    grid-template-columns: 1.15fr .85fr .85fr;
    grid-auto-rows: minmax(250px, auto);
    gap: 16px;
}
.bento-card {
    position: relative;
    overflow: hidden;
    min-height: 270px;
    padding: 32px;
    border: 1px solid rgba(8,10,15,.07);
    border-radius: var(--r-lg);
    background: var(--paper);
    box-shadow: 0 8px 28px rgba(10,18,31,.035);
}
.bento-card h3 { max-width: 430px; margin-bottom: 14px; }
.bento-card p { max-width: 430px; color: var(--muted); font-size: .94rem; }
.bento-card .card-tag {
    display: inline-flex;
    margin-bottom: 72px;
    padding: 7px 9px;
    border-radius: 9px;
    background: var(--surface-2);
    color: #56606e;
    font-size: .68rem;
    font-weight: 720;
    letter-spacing: .05em;
    text-transform: uppercase;
}
.bento-card.large { grid-row: span 2; min-height: 555px; }
.bento-card.wide { grid-column: span 2; }
.bento-card.blue {
    background:
        radial-gradient(400px 300px at 82% 10%, rgba(255,255,255,.26), transparent 64%),
        linear-gradient(145deg, #0e62e9, #1d7dff 58%, #4aa5ff);
    color: #fff;
    border-color: rgba(255,255,255,.14);
    box-shadow: var(--shadow-blue);
}
.bento-card.blue h3,
.bento-card.dark h3 { color: #fff; }
.bento-card.blue p { color: rgba(255,255,255,.72); }
.bento-card.blue .card-tag { background: rgba(255,255,255,.14); color: #fff; }
.bento-card.dark {
    background:
        radial-gradient(420px 260px at 78% 20%, rgba(20,110,245,.24), transparent 64%),
        linear-gradient(145deg, #05070b, #0b111b);
    color: #fff;
    border-color: rgba(255,255,255,.08);
}
.bento-card.dark p { color: rgba(255,255,255,.58); }
.bento-card.dark .card-tag { background: rgba(255,255,255,.08); color: rgba(255,255,255,.76); }
.bento-graphic {
    position: absolute;
    right: 24px;
    bottom: 24px;
    left: 24px;
    height: 185px;
}
.bar-chart {
    position: absolute;
    inset: 0;
    display: flex;
    align-items: end;
    gap: 9px;
    padding: 24px 28px;
    border: 1px solid rgba(255,255,255,.13);
    border-radius: 22px;
    background: rgba(255,255,255,.08);
    backdrop-filter: blur(14px);
}
.bar-chart i { flex: 1; border-radius: 7px 7px 3px 3px; background: rgba(255,255,255,.74); }
.bar-chart i:nth-child(1) { height: 32%; opacity: .35; }
.bar-chart i:nth-child(2) { height: 49%; opacity: .45; }
.bar-chart i:nth-child(3) { height: 41%; opacity: .48; }
.bar-chart i:nth-child(4) { height: 69%; opacity: .65; }
.bar-chart i:nth-child(5) { height: 82%; opacity: .82; }
.bar-chart i:nth-child(6) { height: 100%; background: #fff; }
.risk-rings {
    position: absolute;
    right: 5%;
    bottom: -14%;
    width: 72%;
    aspect-ratio: 1;
    border: 1px solid rgba(20,110,245,.14);
    border-radius: 50%;
}
.risk-rings::before,
.risk-rings::after { content: ""; position: absolute; border: 1px solid rgba(20,110,245,.12); border-radius: 50%; }
.risk-rings::before { inset: 15%; }
.risk-rings::after { inset: 32%; background: radial-gradient(circle, rgba(20,110,245,.16), transparent 65%); }
.price-pill {
    position: absolute;
    right: 30px;
    bottom: 30px;
    display: flex;
    align-items: baseline;
    gap: 8px;
    padding: 18px 20px;
    border-radius: 18px;
    background: #fff;
    box-shadow: 0 16px 40px rgba(8,10,15,.14);
    color: var(--ink);
}
.price-pill strong { font-size: 2rem; letter-spacing: -.06em; }
.price-pill span { color: var(--muted); font-size: .72rem; }
.flow-lines {
    position: absolute;
    inset: auto 24px 20px 24px;
    height: 110px;
    border-radius: 20px;
    background:
        linear-gradient(90deg, transparent 0 5%, rgba(20,110,245,.13) 5% 5.3%, transparent 5.3% 33%, rgba(20,110,245,.13) 33% 33.3%, transparent 33.3% 67%, rgba(20,110,245,.13) 67% 67.3%, transparent 67.3% 100%),
        linear-gradient(rgba(20,110,245,.10) 1px, transparent 1px);
    background-size: 100% 100%, 100% 28px;
}
.flow-lines::before {
    content: "";
    position: absolute;
    left: 5%; right: 4%; top: 22%; bottom: 10%;
    background: linear-gradient(165deg, transparent 0 35%, var(--blue) 35.5% 37%, transparent 37.5% 48%, var(--blue) 48.5% 50%, transparent 50.5% 66%, var(--blue) 66.5% 68%, transparent 68.5%);
    filter: drop-shadow(0 0 6px rgba(20,110,245,.28));
}

/* ---------------------------------------------------------
   Dark intelligence section
   --------------------------------------------------------- */
.insight-section {
    position: relative;
    overflow: hidden;
    background:
        radial-gradient(760px 520px at 78% 42%, rgba(20,110,245,.34), transparent 64%),
        radial-gradient(520px 360px at 8% 88%, rgba(114,212,255,.08), transparent 70%),
        linear-gradient(180deg, #05070b, #07101b 72%, #05070b);
    color: #fff;
}
.insight-section::before {
    content: "";
    position: absolute;
    inset: 0;
    background-image:
        linear-gradient(rgba(255,255,255,.055) 1px, transparent 1px),
        linear-gradient(90deg, rgba(255,255,255,.055) 1px, transparent 1px);
    background-size: 84px 84px;
    opacity: .5;
    mask-image: radial-gradient(circle at 56% 48%, black, transparent 79%);
}
.insight-inner { position: relative; z-index: 1; }
.insight-section .eyebrow { color: var(--blue-3); }
.insight-section h2 { max-width: 990px; color: #fff; }
.insight-section .lead { color: rgba(236,244,255,.62); }
.insight-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 14px;
    margin-top: 66px;
}
.insight-card {
    min-height: 270px;
    padding: 28px;
    border-radius: 26px;
}
.insight-card .micro-label { color: var(--blue-3); }
.insight-card h3 { color: #fff; margin-top: 42px; }
.insight-card p { color: rgba(255,255,255,.56); font-size: .9rem; }
.insight-card .metric {
    display: block;
    margin-top: 24px;
    color: #fff;
    font-size: 2.65rem;
    font-weight: 560;
    letter-spacing: -.065em;
}
.insight-card .metric small { margin-left: 7px; color: rgba(255,255,255,.38); font-size: .72rem; letter-spacing: 0; }

/* ---------------------------------------------------------
   Method / process
   --------------------------------------------------------- */
.method-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    border-top: 1px solid var(--line);
}
.method-step { padding: 36px 38px 20px 0; }
.method-step + .method-step { padding-left: 38px; border-left: 1px solid var(--line); }
.method-no { display: block; margin-bottom: 70px; color: var(--blue); font-size: .7rem; font-weight: 780; letter-spacing: .1em; }
.method-step p { color: var(--muted); }

/* ---------------------------------------------------------
   Generic cards / legacy compatibility
   --------------------------------------------------------- */
.card-grid { display: grid; grid-template-columns: repeat(2, minmax(0,1fr)); gap: 16px; }
.card-grid.three { grid-template-columns: repeat(3, minmax(0,1fr)); }
.panel,
.card-line {
    padding: 30px;
    border: 1px solid rgba(8,10,15,.07);
    border-radius: 26px;
    background: var(--paper);
    box-shadow: 0 8px 30px rgba(10,18,31,.035);
}
.panel-accent { background: var(--blue-ice); border-color: rgba(20,110,245,.12); }
.panel p,
.card-line p { color: var(--muted); }
.card-no { display: block; margin-bottom: 58px; color: var(--blue); font-size: .7rem; font-weight: 780; letter-spacing: .08em; }
.pillar-grid,
.topic-grid { display: grid; grid-template-columns: repeat(3,minmax(0,1fr)); gap: 14px; }

.meta-strip {
    display: grid;
    grid-template-columns: repeat(3,1fr);
    margin: 30px 0;
    overflow: hidden;
    border-radius: 20px;
}
.meta-item { padding: 18px 20px; }
.meta-item + .meta-item { border-left: 1px solid rgba(8,10,15,.07); }
.meta-label { display: block; margin-bottom: 4px; color: var(--muted); font-size: .67rem; font-weight: 680; letter-spacing: .06em; text-transform: uppercase; }
.meta-value { color: var(--ink); font-weight: 670; letter-spacing: -.02em; }

/* ---------------------------------------------------------
   Publication listing / detail
   --------------------------------------------------------- */
.book-feature,
.book-hero-grid {
    display: grid;
    grid-template-columns: minmax(360px,.84fr) minmax(0,1.16fr);
    gap: clamp(50px, 8vw, 110px);
    align-items: center;
}
.book-visual {
    position: relative;
    min-height: 580px;
    display: grid;
    place-items: center;
    border-radius: var(--r-xl);
    background:
        radial-gradient(420px 330px at 50% 50%, rgba(20,110,245,.38), transparent 68%),
        linear-gradient(145deg, #070a10, #0c1421);
    overflow: hidden;
}
.book-visual::before {
    content: "";
    position: absolute;
    width: 78%;
    aspect-ratio: 1;
    border: 1px solid rgba(119,183,255,.18);
    border-radius: 50%;
}
.book-cover {
    position: relative;
    z-index: 2;
    width: min(300px, 68%);
    aspect-ratio: .71;
    padding: 27px;
    border-radius: 9px 15px 15px 9px;
    background:
        radial-gradient(250px 200px at 92% 3%, rgba(46,134,255,.7), transparent 62%),
        linear-gradient(155deg, #080b11, #0c1320 60%, #071a37);
    color: #fff;
    box-shadow: 28px 38px 65px rgba(0,0,0,.34);
    transform: perspective(1000px) rotateY(-13deg) rotateZ(-3deg);
}
.book-cover::after {
    content: "";
    position: absolute;
    right: -13px;
    top: 8px;
    width: 14px;
    height: calc(100% - 12px);
    border-radius: 0 6px 6px 0;
    background: linear-gradient(90deg,#cdd3dc,#fff,#c5ccd6);
}
.book-cover small { color: rgba(255,255,255,.52); }
.book-title { margin-top: 86px; max-width: 230px; font-size: clamp(2rem,3.4vw,3.1rem); line-height: .95; letter-spacing: -.065em; font-weight: 620; }
.book-sub { position: absolute; right: 27px; bottom: 28px; left: 27px; color: rgba(255,255,255,.56); font-size: .74rem; line-height: 1.45; }
.book-hero-grid h1 { font-size: clamp(4rem,7vw,7.5rem); }

.number-list { margin: 0; padding: 0; list-style: none; border-top: 1px solid var(--line); }
.number-list li { display: grid; grid-template-columns: 90px minmax(0,1fr); gap: 18px; padding: 28px 0; border-bottom: 1px solid var(--line); }
.number-list .n { color: var(--blue); font-size: .7rem; font-weight: 780; letter-spacing: .08em; }
.number-list p { margin: 6px 0 0; color: var(--muted); }

/* ---------------------------------------------------------
   Page hero / legal / prose
   --------------------------------------------------------- */
.page-hero {
    position: relative;
    overflow: hidden;
    min-height: 610px;
    display: flex;
    align-items: flex-end;
    padding: 170px 0 90px;
    background:
        radial-gradient(740px 460px at 82% 18%, rgba(20,110,245,.19), transparent 67%),
        linear-gradient(180deg, #f8fafc, #eef2f6);
    border-bottom: 1px solid var(--line);
}
.page-hero::before {
    content: "";
    position: absolute;
    inset: 0;
    background-image:
        linear-gradient(rgba(8,10,15,.035) 1px, transparent 1px),
        linear-gradient(90deg, rgba(8,10,15,.035) 1px, transparent 1px);
    background-size: 80px 80px;
    mask-image: linear-gradient(to bottom, rgba(0,0,0,.25), transparent 76%);
}
.page-hero-glow {
    position: absolute;
    right: 7%;
    top: 19%;
    width: 330px;
    aspect-ratio: 1;
    border-radius: 50%;
    background: radial-gradient(circle at 38% 34%, #fff 0 8%, var(--blue-3) 20%, rgba(20,110,245,.72) 44%, transparent 70%);
    filter: blur(8px);
    opacity: .55;
}
.page-hero-inner { position: relative; z-index: 1; }
.page-hero h1 { max-width: 1100px; margin-bottom: 26px; font-size: clamp(4rem,8vw,8rem); }
.page-hero .lead { max-width: 780px; }

.prose { color: #3b424d; }
.prose h2 { margin: 2.2em 0 .7em; font-size: clamp(1.8rem,3.5vw,2.8rem); line-height: 1.08; letter-spacing: -.045em; }
.prose h3 { margin: 1.9em 0 .65em; }
.prose p, .prose li { line-height: 1.78; }
.prose a { color: var(--blue); }
.prose ul, .prose ol { padding-left: 1.4rem; }
.prose blockquote { margin: 2.2em 0; padding: 5px 0 5px 24px; border-left: 2px solid var(--blue); color: var(--ink); font-size: 1.12rem; }
.notice { margin-bottom: 32px; padding: 18px 20px; border: 1px solid rgba(20,110,245,.14); border-radius: 16px; background: var(--blue-ice); color: #31445d; }

/* ---------------------------------------------------------
   Contact / forms
   --------------------------------------------------------- */
.contact-grid { display: grid; grid-template-columns: minmax(0,1.15fr) minmax(300px,.65fr); gap: clamp(45px,7vw,90px); align-items: start; }
.form { max-width: 760px; }
.form-row { display: grid; grid-template-columns: repeat(2,1fr); gap: 14px; }
.field { margin-bottom: 16px; }
.field label { display: block; margin-bottom: 8px; color: var(--ink); font-size: .78rem; font-weight: 650; }
.field input,
.field textarea,
.field select {
    width: 100%;
    padding: 15px 16px;
    border: 1px solid #d2d8e0;
    border-radius: 14px;
    outline: none;
    background: #fff;
    color: var(--ink);
    transition: border .2s ease, box-shadow .2s ease;
}
.field textarea { min-height: 180px; resize: vertical; }
.field input:focus,
.field textarea:focus,
.field select:focus { border-color: var(--blue); box-shadow: 0 0 0 4px rgba(20,110,245,.09); }
.contact-card { position: sticky; top: 120px; padding: 28px; border-radius: 26px; }
.contact-card h3 { word-break: break-word; }
.contact-card p { color: var(--muted); }
.contact-card a { color: var(--blue); font-weight: 650; }
.honeypot { position: absolute !important; width: 1px !important; height: 1px !important; overflow: hidden !important; clip: rect(1px,1px,1px,1px) !important; }
.alert { margin-bottom: 20px; padding: 14px 16px; border-radius: 14px; }
.alert-success { border: 1px solid rgba(13,143,99,.18); background: #eaf8f2; color: #176a4e; }
.alert-error { border: 1px solid rgba(162,63,82,.18); background: #fff0f3; color: #8b3546; }

/* ---------------------------------------------------------
   Author
   --------------------------------------------------------- */
.author-grid { display: grid; grid-template-columns: .72fr 1.28fr; gap: clamp(52px,8vw,110px); align-items: start; }
.author-visual {
    position: sticky;
    top: 120px;
    min-height: 520px;
    overflow: hidden;
    display: grid;
    place-items: center;
    border-radius: var(--r-xl);
    background:
        radial-gradient(340px 280px at 65% 24%, rgba(119,183,255,.86), transparent 65%),
        linear-gradient(145deg,#06080d,#0a1422);
}
.author-monogram {
    position: relative;
    z-index: 2;
    display: grid;
    place-items: center;
    width: 190px;
    aspect-ratio: 1;
    border: 1px solid rgba(255,255,255,.18);
    border-radius: 50%;
    background: rgba(255,255,255,.08);
    color: #fff;
    font-size: 4rem;
    font-weight: 570;
    letter-spacing: -.08em;
    backdrop-filter: blur(18px);
    box-shadow: 0 32px 80px rgba(0,0,0,.3), inset 0 1px 0 rgba(255,255,255,.18);
}
.author-visual::before,
.author-visual::after { content: ""; position: absolute; border: 1px solid rgba(119,183,255,.18); border-radius: 50%; }
.author-visual::before { width: 70%; aspect-ratio:1; }
.author-visual::after { width: 46%; aspect-ratio:1; }

/* ---------------------------------------------------------
   Footer
   --------------------------------------------------------- */
.site-footer {
    padding: 36px 0 26px;
    background: var(--night);
    color: rgba(255,255,255,.62);
}
.footer-cta {
    display: grid;
    grid-template-columns: 1.25fr .75fr;
    gap: 44px;
    align-items: end;
    margin-bottom: 78px;
    padding: clamp(38px,5vw,68px);
    border-radius: var(--r-lg);
    background:
        radial-gradient(520px 300px at 14% 50%, rgba(20,110,245,.35), transparent 68%),
        radial-gradient(440px 280px at 88% 12%, rgba(114,212,255,.08), transparent 70%),
        linear-gradient(145deg, rgba(255,255,255,.08), rgba(255,255,255,.025));
}
.footer-cta .micro-label { color: var(--blue-3); }
.footer-cta h2 { margin: 0; color: #fff; font-size: clamp(2.6rem,5vw,5rem); }
.footer-cta-actions p { max-width: 420px; color: rgba(255,255,255,.54); }
.footer-grid { display: grid; grid-template-columns: 1.5fr .55fr .7fr; gap: 70px; padding-bottom: 60px; }
.brand-footer { color: #fff; }
.brand-footer .brand-mark { background: #fff; color: var(--blue); }
.footer-brand-block p { max-width: 480px; margin-top: 18px; color: rgba(255,255,255,.46); font-size: .9rem; }
.footer-title { margin-bottom: 18px; color: rgba(255,255,255,.35); font-size: .68rem; font-weight: 730; letter-spacing: .08em; text-transform: uppercase; }
.footer-links { display: flex; flex-direction: column; gap: 10px; }
.footer-links a { color: rgba(255,255,255,.67); font-size: .88rem; text-decoration: none; }
.footer-links a:hover { color: #fff; }
.footer-bottom { display: flex; justify-content: space-between; gap: 30px; padding-top: 22px; border-top: 1px solid rgba(255,255,255,.09); color: rgba(255,255,255,.34); font-size: .76rem; }

/* ---------------------------------------------------------
   Motion
   --------------------------------------------------------- */
.reveal { opacity: 0; transform: translateY(18px); transition: opacity .7s var(--ease), transform .7s var(--ease); }
.reveal.visible { opacity: 1; transform: none; }
[data-tilt] { --rx: 0deg; --ry: 0deg; transform-style: preserve-3d; }
[data-tilt].tilting .book-object { transform: rotateY(calc(-15deg + var(--ry))) rotateX(calc(7deg + var(--rx))) rotateZ(-3deg); }

/* ---------------------------------------------------------
   Responsive
   --------------------------------------------------------- */
@media (max-width: 1080px) {
    .hero-grid { grid-template-columns: 1fr .85fr; gap: 28px; }
    .hero-stage { min-height: 590px; }
    .featured-publication { grid-template-columns: .9fr 1.1fr; }
    .featured-copy { padding-right: 48px; }
    .bento-grid { grid-template-columns: 1fr 1fr; }
    .bento-card.large { grid-row: auto; min-height: 420px; }
    .bento-card.wide { grid-column: span 2; }
    .insight-grid { grid-template-columns: 1fr; }
    .insight-card { min-height: 220px; }
}

@media (max-width: 860px) {
    :root { --header-h: 68px; }
    .container, .text-container { width: min(calc(100% - 40px), var(--container)); }
    .site-header { top: 10px; width: calc(100% - 20px); }
    .header-inner { padding-inline: 10px; }
    .menu-button { display: block; }
    .site-nav {
        position: fixed;
        top: 90px;
        right: 10px;
        left: 10px;
        display: flex;
        flex-direction: column;
        align-items: stretch;
        gap: 0;
        padding: 14px;
        border: 1px solid rgba(255,255,255,.66);
        border-radius: 22px;
        background: rgba(255,255,255,.93);
        box-shadow: 0 30px 70px rgba(8,15,27,.18);
        backdrop-filter: blur(24px) saturate(160%);
        opacity: 0;
        pointer-events: none;
        transform: translateY(-10px) scale(.985);
        transition: opacity .2s ease, transform .25s var(--ease);
    }
    .site-nav.open { opacity: 1; pointer-events: auto; transform: none; }
    .site-nav > a { padding: 14px 12px; border-bottom: 1px solid var(--line); }
    .site-nav > a::after { display: none; }
    .site-nav .nav-cta { justify-content: center; margin-top: 8px; border-bottom: 0; }

    .hero-fintech { min-height: auto; padding: 135px 0 72px; }
    .hero-grid { grid-template-columns: 1fr; }
    .hero-copy h1 { max-width: 900px; }
    .hero-stage { min-height: 590px; width: min(620px,100%); margin: 10px auto 0; }
    .topic-strip-inner { overflow-x: auto; justify-content: flex-start; scrollbar-width: none; }
    .topic-strip-inner::-webkit-scrollbar { display:none; }

    .section-heading, .section-head { grid-template-columns: 1fr; gap: 15px; }
    .section-index, .section-no { padding-top: 0; }
    .featured-publication { grid-template-columns: 1fr; }
    .featured-visual { min-height: 520px; }
    .featured-copy { padding: 0 44px 56px; }
    .featured-visual .book-object { top: 10%; left: 28%; }

    .method-grid { grid-template-columns: 1fr; }
    .method-step, .method-step + .method-step { padding: 30px 0; border-left: 0; border-bottom: 1px solid var(--line); }
    .method-no { margin-bottom: 26px; }

    .book-feature, .book-hero-grid { grid-template-columns: 1fr; }
    .book-visual { min-height: 500px; }
    .book-hero-grid .book-visual { order: -1; }
    .author-grid { grid-template-columns: 1fr; }
    .author-visual { position: relative; top: auto; min-height: 430px; }
    .contact-grid { grid-template-columns: 1fr; }
    .contact-card { position: relative; top: auto; }
    .footer-cta { grid-template-columns: 1fr; }
    .footer-grid { grid-template-columns: 1.2fr .6fr .7fr; gap: 36px; }
}

@media (max-width: 640px) {
    body { font-size: 16px; }
    .container, .text-container { width: calc(100% - 30px); }
    h1 { font-size: clamp(3.2rem, 15vw, 5.3rem); }
    h2 { font-size: clamp(2.35rem, 11.5vw, 4rem); }
    .hero-copy h1 { font-size: clamp(3.75rem, 18vw, 6rem); }
    .section { padding-block: 76px; }
    .hero-fintech { padding-top: 120px; }
    .hero-stage { min-height: 500px; }
    .book-object { top: 15%; left: 20%; width: 58%; }
    .float-stat { top: 5%; right: 0; width: 145px; padding: 14px; }
    .float-note { top: 45%; left: 0; width: 145px; }
    .float-price { right: 0; bottom: 10%; width: 145px; }
    .float-topics { bottom: 0; left: 0; width: 170px; padding: 12px; }
    .statement { font-size: clamp(2.7rem, 13vw, 4.8rem); }

    .featured-publication { border-radius: 30px; }
    .featured-visual { min-height: 430px; }
    .featured-visual .book-object { left: 22%; width: 56%; }
    .featured-copy { padding: 0 24px 38px; }

    .bento-grid { grid-template-columns: 1fr; }
    .bento-card, .bento-card.wide { grid-column: auto; min-height: 300px; }
    .bento-card.large { min-height: 470px; }
    .bento-card .card-tag { margin-bottom: 48px; }

    .pillar-grid, .topic-grid, .card-grid, .card-grid.three { grid-template-columns: 1fr; }
    .meta-strip { grid-template-columns: 1fr; }
    .meta-item + .meta-item { border-left: 0; border-top: 1px solid rgba(8,10,15,.07); }
    .number-list li { grid-template-columns: 48px 1fr; }
    .form-row { grid-template-columns: 1fr; }

    .page-hero { min-height: 520px; padding: 150px 0 65px; }
    .page-hero h1 { font-size: clamp(3.4rem,16vw,5.8rem); }
    .book-visual { min-height: 420px; border-radius: 28px; }
    .book-cover { width: 65%; }

    .footer-grid { grid-template-columns: 1fr; }
    .footer-bottom { flex-direction: column; gap: 10px; }
    .footer-cta { margin-bottom: 58px; padding: 30px 24px; }
    .actions { align-items: stretch; flex-direction: column; }
    .btn { width: 100%; }
    .btn-text { width: auto; align-self: flex-start; }
}

@media (max-width: 390px) {
    .hero-stage { min-height: 455px; }
    .float-note { display: none; }
    .float-topics { width: 158px; }
}

@media (prefers-reduced-motion: reduce) {
    html { scroll-behavior: auto; }
    *, *::before, *::after { animation-duration: .01ms !important; animation-iteration-count: 1 !important; transition-duration: .01ms !important; scroll-behavior: auto !important; }
    .reveal { opacity: 1; transform: none; }
    [data-tilt] .book-object { transform: rotateY(-15deg) rotateX(7deg) rotateZ(-3deg) !important; }
}

@media print {
    .site-header, .site-footer, .actions, .hero-stage { display: none !important; }
    body { background: #fff; color: #000; }
    .page-hero, .hero-fintech, .insight-section { background: #fff !important; color: #000 !important; }
    .section { padding-block: 28px; }
}
