/* ═══════════════════════════════════════════════════════════════════
   OTOLOOM LANDING — "Işık Dokuması" (Aurora / Liquid Glass)
   Vanilla CSS. Yalnız transform/opacity/filter anime edilir.
   ═══════════════════════════════════════════════════════════════════ */

@property --a {
    syntax: '<angle>';
    initial-value: 0deg;
    inherits: false;
}

:root {
    --bg0: #07090F;
    --bg1: #0B0E17;
    --violet: #8B7CFF;
    --teal: #34E1C4;
    --pink: #FF7AC6;
    --amber: #FFC26B;
    --txt: #EDEFF7;
    --txt2: #9BA3B7;
    --txt3: #6C7386;
    --glass-bg: rgba(255, 255, 255, .04);
    --glass-brd: rgba(255, 255, 255, .08);
    --grad: linear-gradient(120deg, var(--violet), var(--teal));
    --font-d: 'Space Grotesk', sans-serif;
    --font-b: 'Inter', sans-serif;
    --font-m: 'JetBrains Mono', monospace;
    --ease-out: cubic-bezier(.22, 1, .36, 1);
}

/* ── Reset / base ─────────────────────────────────────────────── */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }

html { scroll-behavior: smooth; }

body {
    background: var(--bg0);
    color: var(--txt2);
    font-family: var(--font-b);
    font-size: 1.0625rem;
    line-height: 1.7;
    overflow-x: hidden;
    overflow-x: clip;
    -webkit-font-smoothing: antialiased;
}

body.menu-open { overflow: hidden; }

section { scroll-margin-top: 96px; position: relative; }

img, svg { display: block; max-width: 100%; }

a { color: inherit; text-decoration: none; }

button { font: inherit; color: inherit; background: none; border: none; cursor: pointer; }

ul { list-style: none; }

h1, h2, h3 { font-family: var(--font-d); color: var(--txt); font-weight: 700; letter-spacing: -.02em; }

h2 { font-size: clamp(2rem, 4vw, 3.25rem); line-height: 1.12; margin-bottom: 1rem; }

h3 { font-size: 1.25rem; font-weight: 600; }

:focus-visible { outline: 2px solid var(--teal); outline-offset: 3px; border-radius: 4px; }

.wrap { max-width: 1180px; margin-inline: auto; padding-inline: clamp(1.25rem, 4vw, 2.5rem); }

/* ── 1.3 Noise ────────────────────────────────────────────────── */
body::after {
    content: '';
    position: fixed;
    inset: 0;
    pointer-events: none;
    z-index: 60;
    opacity: .03;
    background: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='128' height='128'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.9' numOctaves='2'/%3E%3C/filter%3E%3Crect width='128' height='128' filter='url(%23n)'/%3E%3C/svg%3E") repeat;
}

/* ── A1: Aurora zemin ─────────────────────────────────────────── */
.aurora {
    position: fixed;
    inset: 0;
    z-index: 0;
    pointer-events: none;
    overflow: hidden;
    transition: opacity 1s linear;
}

.ab {
    position: absolute;
    width: 60vw;
    height: 60vw;
    border-radius: 50%;
    filter: blur(120px);
    mix-blend-mode: screen;
    will-change: transform;
}

.ab-1 { background: radial-gradient(circle, rgba(139,124,255,.55), transparent 65%); top: -18vw; left: -8vw;  opacity: .5;  animation: drift1 52s ease-in-out infinite; }
.ab-2 { background: radial-gradient(circle, rgba(52,225,196,.45),  transparent 65%); top: 4vw;  right: -16vw; opacity: .4;  animation: drift2 64s ease-in-out infinite; }
.ab-3 { background: radial-gradient(circle, rgba(139,124,255,.5),  transparent 65%); bottom: -22vw; left: 22vw; opacity: .35; animation: drift3 70s ease-in-out infinite; }
.ab-4 { background: radial-gradient(circle, rgba(255,122,198,.5),  transparent 65%); top: 36%; left: 30vw; opacity: .15; animation: drift4 46s ease-in-out infinite; }

@keyframes drift1 { 0%,100% { transform: translate3d(0,0,0) scale(1); } 33% { transform: translate3d(12vw, 8vh, 0) scale(1.15); } 66% { transform: translate3d(-4vw, 16vh, 0) scale(.95); } }
@keyframes drift2 { 0%,100% { transform: translate3d(0,0,0) scale(1); } 40% { transform: translate3d(-14vw, 12vh, 0) scale(1.1); } 75% { transform: translate3d(-6vw, -6vh, 0) scale(1.2); } }
@keyframes drift3 { 0%,100% { transform: translate3d(0,0,0) scale(1); } 50% { transform: translate3d(10vw, -14vh, 0) scale(1.12); } }
@keyframes drift4 { 0%,100% { transform: translate3d(0,0,0) scale(1); } 30% { transform: translate3d(-10vw, 10vh, 0) scale(1.25); } 70% { transform: translate3d(8vw, -8vh, 0) scale(.9); } }

/* ── 1.2 Cam ──────────────────────────────────────────────────── */
.glass {
    background: var(--glass-bg);
    border: 1px solid var(--glass-brd);
    border-radius: 20px;
    backdrop-filter: blur(24px) saturate(140%);
    -webkit-backdrop-filter: blur(24px) saturate(140%);
}

/* Işık kıran kenar (premium kartlar) */
.edge-wrap {
    position: relative;
    padding: 1px;
    border-radius: 21px;
    background: conic-gradient(from var(--a), rgba(139,124,255,.5), rgba(52,225,196,.4), transparent 40%, rgba(139,124,255,.5));
    animation: spin-a 8s linear infinite;
}

.edge-wrap > .glass, .edge-wrap > form.glass {
    background: rgba(11, 14, 23, .78);
    border: none;
    border-radius: 20px;
}

@keyframes spin-a { to { --a: 360deg; } }

/* ── 1.4 Mono etiket dili ─────────────────────────────────────── */
.mono-tag, .eyebrow {
    font-family: var(--font-m);
    font-weight: 500;
    font-size: .72rem;
    letter-spacing: .14em;
    text-transform: uppercase;
    color: var(--txt3);
}

.eyebrow { display: block; margin-bottom: .9rem; color: var(--violet); opacity: .85; }

/* ── 1.5 Butonlar ─────────────────────────────────────────────── */
.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: .5rem;
    padding: .95rem 1.9rem;
    border-radius: 14px;
    font-weight: 600;
    font-size: 1rem;
    white-space: nowrap;
    transition: transform .3s var(--ease-out), border-color .3s, background-color .3s;
}

.btn-sm { padding: .55rem 1.15rem; font-size: .9rem; border-radius: 11px; }
.btn-lg { padding: 1.05rem 2.2rem; font-size: 1.06rem; }
.btn-xl { padding: 1.2rem 2.8rem; font-size: 1.15rem; }

.btn-primary {
    position: relative;
    background: var(--grad);
    color: #0A0C12;
    z-index: 1;
}

.btn-primary::before {
    content: '';
    position: absolute;
    inset: -2px;
    border-radius: inherit;
    background: conic-gradient(from var(--a), #8B7CFF, #34E1C4, #8B7CFF);
    filter: blur(10px);
    opacity: .7;
    z-index: -1;
    animation: spin-a 6s linear infinite;
}

.btn-ghost {
    background: var(--glass-bg);
    border: 1px solid var(--glass-brd);
    color: var(--txt);
    backdrop-filter: blur(24px) saturate(140%);
    -webkit-backdrop-filter: blur(24px) saturate(140%);
}

.btn-ghost:hover {
    border-color: rgba(139, 124, 255, .4);
    background: radial-gradient(120px at 50% 120%, rgba(139,124,255,.14), var(--glass-bg));
}

.mag-wrap { display: inline-block; padding: 8px; margin: -8px; }
.mag-wrap .btn { will-change: transform; }

/* ── A3: Shimmer başlıklar ────────────────────────────────────── */
.shimmer, .shimmer-once {
    background: linear-gradient(100deg, #EDEFF7 20%, #8B7CFF 40%, #FF7AC6 50%, #34E1C4 60%, #EDEFF7 80%);
    background-size: 250% 100%;
    background-position: 250% 0;
    -webkit-background-clip: text;
    background-clip: text;
    color: transparent;
}

.shimmer { animation: shimmer 6s linear infinite; }

.shimmer-once.play { animation: shimmer 2.4s var(--ease-out) 1 forwards; }

@keyframes shimmer {
    0% { background-position: 250% 0; }
    60%, 100% { background-position: 0% 0; }
}

/* ── Navbar ───────────────────────────────────────────────────── */
.nav {
    position: fixed;
    top: 0; left: 0; right: 0;
    z-index: 50;
    transition: background-color .3s, backdrop-filter .3s, border-color .3s;
    border-bottom: 1px solid transparent;
}

.nav.scrolled {
    background: rgba(7, 9, 15, .72);
    backdrop-filter: blur(18px);
    -webkit-backdrop-filter: blur(18px);
    border-bottom-color: var(--glass-brd);
}

.nav-in {
    max-width: 1180px;
    margin-inline: auto;
    padding: .9rem clamp(1.25rem, 4vw, 2.5rem);
    display: flex;
    align-items: center;
    gap: 2rem;
}

.wordmark {
    font-family: var(--font-d);
    font-weight: 700;
    font-size: 1.45rem;
    color: var(--txt);
    letter-spacing: -.02em;
}

.wordmark span {
    background: var(--grad);
    -webkit-background-clip: text;
    background-clip: text;
    color: transparent;
}

.nav-links { display: flex; gap: 1.8rem; margin-inline: auto; }

.nav-links a {
    font-size: .95rem;
    font-weight: 500;
    color: var(--txt2);
    transition: color .25s;
}

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

.nav-cta { display: flex; gap: .7rem; align-items: center; }

.nav-burger {
    display: none;
    flex-direction: column;
    gap: 6px;
    padding: 8px;
    margin-left: auto;
}

.nav-burger span {
    width: 24px; height: 2px;
    background: var(--txt);
    border-radius: 2px;
    transition: transform .3s var(--ease-out), opacity .3s;
}

.nav-burger[aria-expanded="true"] span:nth-child(1) { transform: translateY(4px) rotate(45deg); }
.nav-burger[aria-expanded="true"] span:nth-child(2) { transform: translateY(-4px) rotate(-45deg); }

.mobile-menu {
    position: fixed;
    inset: 0;
    z-index: 49;
    background: rgba(7, 9, 15, .92);
    backdrop-filter: blur(24px);
    -webkit-backdrop-filter: blur(24px);
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    transform: scale(.98);
    pointer-events: none;
    transition: opacity .35s, transform .35s var(--ease-out);
}

.mobile-menu.open { opacity: 1; transform: none; pointer-events: auto; }

.mobile-menu nav { display: flex; flex-direction: column; gap: 1.6rem; text-align: center; }

.mobile-menu nav > a { font-family: var(--font-d); font-size: 1.6rem; color: var(--txt); font-weight: 600; }

.mobile-menu-cta { display: flex; flex-direction: column; gap: .8rem; margin-top: 1.4rem; }

/* ── Sayfa kapsayıcı + iplik ──────────────────────────────────── */
.page { position: relative; z-index: 2; }

#thread {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    z-index: -1;
    pointer-events: none;
    overflow: visible;
}

#threadGlow { opacity: .35; filter: blur(6px); }

.thread-seed { position: relative; display: block; width: 6px; height: 6px; margin-top: 2.4rem; }

.seed-dot {
    position: absolute;
    width: 6px; height: 6px;
    border-radius: 50%;
    background: var(--violet);
    animation: seed-pulse 2s ease-in-out infinite;
}

@keyframes seed-pulse {
    0%, 100% { opacity: .35; transform: scale(1); }
    50% { opacity: 1; transform: scale(1.6); }
}

/* ── HERO ─────────────────────────────────────────────────────── */
.hero { padding: clamp(7.5rem, 14vh, 11rem) 0 clamp(3rem, 7vh, 5rem); }

.hero-in {
    max-width: 1180px;
    margin-inline: auto;
    padding-inline: clamp(1.25rem, 4vw, 2.5rem);
    display: grid;
    grid-template-columns: 48% 52%;
    align-items: center;
    gap: 1rem;
}

.hero-h1 {
    font-size: clamp(2.1rem, 5vw, 4.2rem);
    line-height: 1.1;
    letter-spacing: -.02em;
    margin: .4rem 0 1.4rem;
}

.mask { display: block; overflow: hidden; padding-bottom: .08em; margin-bottom: -.08em; }

.line {
    display: inline-block;
    transform: translateY(110%);
    transition: transform .8s var(--ease-out);
    transition-delay: calc(var(--i, 0) * 80ms + 150ms);
}

body.loaded .line { transform: none; }

.rv-late { opacity: 0; transform: translateY(20px); transition: opacity .8s, transform .8s var(--ease-out); transition-delay: .45s; }

body.loaded .rv-late { opacity: 1; transform: none; }

.hero-sub { max-width: 34rem; font-size: clamp(1.05rem, 1.6vw, 1.25rem); }

.hero-features {
    display: flex;
    flex-wrap: wrap;
    gap: .8rem;
    margin-top: 1.5rem;
    list-style: none;
}

.hero-features li {
    position: relative;
    overflow: hidden;
    display: inline-flex;
    align-items: center;
    gap: 0.4rem;
    font-size: 0.85rem;
    font-weight: 500;
    color: var(--txt2);
    background: rgba(255, 255, 255, 0.05);
    padding: 0.4rem 0.9rem;
    border-radius: 999px;
    border: 1px solid var(--glass-brd);
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
    transition: transform 0.3s var(--ease-out), background 0.3s, border-color 0.3s;
    cursor: default;
}

.hero-features li::after {
    content: '';
    position: absolute;
    top: 0; left: -100%;
    width: 40%; height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.15), transparent);
    transform: skewX(-20deg);
    animation: sweep 6s infinite;
}

.hero-features li.highlight::after {
    background: linear-gradient(90deg, transparent, rgba(52, 225, 196, 0.4), transparent);
}

@keyframes sweep {
    0%, 15% { left: -100%; }
    40%, 100% { left: 200%; }
}

.hero-features li:hover {
    transform: translateY(-2px);
    background: rgba(255, 255, 255, 0.08);
    border-color: rgba(255, 255, 255, 0.15);
}

.hero-features li.highlight {
    background: rgba(52, 225, 196, 0.12);
    color: var(--teal);
    border-color: rgba(52, 225, 196, 0.3);
    box-shadow: 0 4px 20px rgba(52, 225, 196, 0.15);
}

.hero-features li.highlight:hover {
    background: rgba(52, 225, 196, 0.18);
    box-shadow: 0 6px 24px rgba(52, 225, 196, 0.25);
}

.hero-features li svg {
    width: 14px;
    height: 14px;
    fill: none;
    stroke: currentColor;
    stroke-width: 2.5;
    stroke-linecap: round;
    stroke-linejoin: round;
}

.hero-cta { display: flex; gap: 1rem; align-items: center; margin-top: 1.8rem; flex-wrap: wrap; }

.hero-micro {
    font-family: var(--font-m);
    font-size: .7rem;
    letter-spacing: .12em;
    color: var(--txt3);
    margin-top: 1.1rem;
}

/* Kokpit */
.cockpit { perspective: 1200px; min-height: 480px; position: relative; }

.scene {
    position: absolute;
    inset: 0;
    transform: rotateX(calc(8deg + var(--hy, 0) * -6deg)) rotateY(calc(-6deg + var(--hx, 0) * 8deg));
    transition: transform .15s ease-out;
    transform-style: preserve-3d;
}

.card-file-wrap {
    --tz: 20px;
    position: absolute;
    top: 60px; left: 8%;
    width: min(430px, 84%);
    opacity: 0;
    transition: opacity .8s .6s;
    animation: float 6s ease-in-out infinite;
}

.card-file { padding: 1.3rem 1.4rem; }

.card-receipt {
    --tz: 45px;
    position: absolute;
    top: 0; right: 0;
    width: 235px;
    padding: 1rem 1.1rem;
    opacity: 0;
    transition: opacity .8s .72s;
    animation: float 7.5s .8s ease-in-out infinite;
}

.card-toast {
    --tz: 70px;
    position: absolute;
    bottom: 26px; left: 0;
    width: 280px;
    padding: 1rem 1.2rem;
    opacity: 0;
    transition: opacity .8s .84s;
    animation: float 9s .4s ease-in-out infinite;
}

body.loaded .card-file-wrap,
body.loaded .card-receipt,
body.loaded .card-toast { opacity: 1; }

@keyframes float {
    0%, 100% { transform: translateY(0) translateZ(var(--tz, 0px)); }
    50% { transform: translateY(-8px) translateZ(var(--tz, 0px)); }
}

.cf-top { display: flex; justify-content: space-between; align-items: center; gap: .6rem; margin-bottom: 1rem; }

.chip {
    font-size: .72rem;
    font-weight: 500;
    color: var(--txt2);
    padding: .18rem .6rem;
    border-radius: 999px;
    background: rgba(255, 255, 255, .05);
    border: 1px solid var(--glass-brd);
    white-space: nowrap;
}

.chip-brand { color: var(--txt); }

.cf-rows li {
    display: flex;
    align-items: center;
    gap: .6rem;
    padding: .55rem 0;
    border-bottom: 1px solid rgba(255, 255, 255, .05);
    transition: background-color 0.25s, transform 0.25s;
    border-radius: 6px;
    margin: 0 -0.4rem;
    padding-left: 0.4rem;
    padding-right: 0.4rem;
    cursor: default;
}

.cf-rows li:hover {
    background-color: rgba(255, 255, 255, 0.06);
    transform: translateX(2px);
}

.cf-rows li:last-child { border-bottom: none; }

.cf-rows .part { flex: 1; font-weight: 500; font-size: .92rem; color: var(--txt); }

.pill {
    font-size: .7rem;
    font-weight: 600;
    padding: .22rem .62rem;
    border-radius: 999px;
    white-space: nowrap;
}

.pill-supply { color: var(--teal); background: rgba(52, 225, 196, .1); animation: pill-pulse 2s ease-in-out infinite; }
.pill-way    { color: var(--violet); background: rgba(139, 124, 255, .12); }
.pill-done   { color: #0A0C12; background: var(--teal); }
.pill-wait   { color: var(--txt3); background: rgba(255, 255, 255, .06); }

@keyframes pill-pulse {
    0%, 100% { box-shadow: 0 0 0 0 rgba(52, 225, 196, 0); }
    50% { box-shadow: 0 0 14px 0 rgba(52, 225, 196, .35); }
}

.cf-bottom { margin-top: .9rem; }

.cr-top { display: flex; justify-content: space-between; align-items: baseline; gap: .5rem; margin-bottom: .7rem; }

.cr-top strong { color: var(--txt); font-size: .95rem; }

.progress { height: 7px; border-radius: 99px; background: rgba(255, 255, 255, .06); overflow: hidden; }

.progress-fill {
    display: block;
    height: 100%;
    border-radius: inherit;
    background: var(--grad);
    width: 0;
}

body.loaded .progress-fill { animation: fill75 1.2s var(--ease-out) 1.4s forwards; }

@keyframes fill75 { to { width: 75%; } }

.card-toast { position: absolute; }

.card-toast::before {
    content: '';
    position: absolute;
    inset: 20% 10%;
    background: radial-gradient(circle, rgba(52, 225, 196, .5), transparent 70%);
    filter: blur(24px);
    opacity: .35;
    z-index: -1;
}

.ct-amount { font-family: var(--font-d); font-weight: 600; font-size: 1.4rem; color: var(--txt); }

.ct-meta { display: flex; justify-content: space-between; align-items: center; gap: .6rem; margin-top: .35rem; }

.badge-ok {
    font-size: .72rem;
    font-weight: 600;
    color: var(--teal);
    background: rgba(52, 225, 196, .12);
    padding: .18rem .55rem;
    border-radius: 999px;
    transition: transform 0.2s, background 0.2s;
    cursor: default;
}

.badge-ok:hover {
    transform: scale(1.05);
    background: rgba(52, 225, 196, .22);
}

/* ── Marquee ──────────────────────────────────────────────────── */
.marquee-sec { padding: clamp(2rem, 6vh, 4rem) 0; overflow: hidden; }

.marquee-tilt { transform: rotate(-1.5deg); }

.mq {
    overflow: hidden;
    -webkit-mask-image: linear-gradient(90deg, transparent, #000 8%, #000 92%, transparent);
    mask-image: linear-gradient(90deg, transparent, #000 8%, #000 92%, transparent);
}

.mq-track {
    display: flex;
    width: max-content;
    will-change: transform;
    animation: scroll-x 28s linear infinite;
}

.mq-track span { white-space: nowrap; }

.mq-top .mq-track span {
    font-family: var(--font-d);
    font-weight: 700;
    font-size: clamp(2rem, 4.6vw, 3.6rem);
    text-transform: uppercase;
    -webkit-text-stroke: 1px rgba(139, 124, 255, .55);
    color: transparent;
    letter-spacing: .01em;
}

.mq-bottom { margin-top: .5rem; }

.mq-bottom .mq-track {
    animation-duration: 36s;
    animation-direction: reverse;
}

.mq-bottom .mq-track span {
    font-weight: 500;
    font-size: .95rem;
    letter-spacing: .18em;
    color: rgba(52, 225, 196, .8);
}

.marquee-tilt:hover .mq-track { animation-play-state: paused; }

@keyframes scroll-x { to { transform: translateX(-50%); } }

.mq-caption { text-align: center; margin-top: 2.4rem; color: var(--txt2); font-size: 1.05rem; }

/* ── Operasyon Nabzı ──────────────────────────────────────────── */
.pulse-sec { padding: clamp(3.5rem, 9vh, 6.5rem) 0; }

.pulse-strip {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    margin-top: 2.2rem;
    overflow: hidden;
}

.pulse-cell {
    padding: 1.7rem 1.5rem;
    display: flex;
    flex-direction: column;
    gap: .5rem;
    border-left: 1px solid var(--glass-brd);
    position: relative;
    transition: background .3s;
}

.pulse-cell:first-child { border-left: none; }

.pulse-cell:hover { background: radial-gradient(200px at 50% 100%, rgba(139, 124, 255, .1), transparent); }

.pulse-cell strong {
    font-family: var(--font-d);
    font-weight: 600;
    font-size: clamp(1.35rem, 2vw, 1.8rem);
    color: var(--txt);
    font-variant-numeric: tabular-nums;
    min-width: 8ch;
}

.pulse-note { margin-top: 1.4rem; font-size: .95rem; color: var(--txt3); }

/* ── Yolculuk ─────────────────────────────────────────────────── */
.journey-sec { padding: clamp(3.5rem, 10vh, 7rem) 0; }

.sec-sub { max-width: 46rem; margin-bottom: 2.5rem; }

.journey { position: relative; display: flex; flex-direction: column; gap: clamp(1.8rem, 4vh, 3rem); padding-block: 1.5rem; }

.journey-line {
    display: none;
    position: absolute;
    top: 0; bottom: 0; left: 7px;
    width: 2px;
    background: linear-gradient(180deg, var(--violet), var(--teal));
    transform-origin: top;
    transform: scaleY(0);
}

.stop-row {
    display: grid;
    grid-template-columns: 1fr 64px 1fr;
    align-items: center;
}

.node-cell { display: flex; justify-content: center; }

.node {
    position: relative;
    width: 14px; height: 14px;
    border-radius: 50%;
    background: var(--bg0);
    border: 2px solid rgba(139, 124, 255, .5);
    transition: border-color .3s, transform .3s var(--ease-out);
}

.node::before {
    content: '';
    position: absolute;
    inset: -10px;
    border-radius: 50%;
    background: radial-gradient(circle, rgba(52, 225, 196, .55), transparent 70%);
    filter: blur(6px);
    opacity: 0;
    transition: opacity .3s;
}

.node.lit { border-color: var(--teal); transform: scale(1.35); }
.node.lit::before { opacity: 1; }

.stop { padding: 1.5rem 1.7rem; max-width: 480px; }

.stop-row:nth-child(odd) .stop { margin-left: auto; }

.stop h3 { margin: .55rem 0 .4rem; }

.stop p { font-size: .96rem; }

.journey-close {
    text-align: center;
    margin-top: 3rem;
    font-family: var(--font-d);
    font-weight: 600;
    font-size: clamp(1.3rem, 2.4vw, 1.8rem);
    color: var(--txt);
}

/* ── Bento ────────────────────────────────────────────────────── */
.bento-sec { padding: clamp(3.5rem, 10vh, 7rem) 0; }

.bento {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 1.1rem;
    margin-top: 2.5rem;
}

.bento-card {
    padding: 1.6rem;
    display: flex;
    flex-direction: column;
    gap: .5rem;
    position: relative;
    overflow: hidden;
    transform: perspective(900px) rotateX(var(--rx, 0deg)) rotateY(var(--ry, 0deg));
    transition: transform .15s linear;
}

.bento-card.settle { transition: transform .6s ease-out; }

.bento-card::after {
    content: '';
    position: absolute;
    inset: 0;
    background: radial-gradient(400px at var(--mx, 50%) var(--my, 50%), rgba(255, 255, 255, .1), transparent 60%);
    opacity: 0;
    transition: opacity .3s;
    pointer-events: none;
}

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

.b-big { grid-column: span 2; grid-row: span 2; }
.b-wide { grid-column: span 2; }

.mod-code { position: absolute; top: 1.2rem; right: 1.3rem; }

.bento-card h3 { margin-top: .1rem; padding-right: 4.4rem; }

.bento-card p { font-size: .95rem; }

.vg { margin-top: auto; padding-top: 1.2rem; }

/* vinyet: rota */
.vg-route { position: relative; height: 130px; }

.vg-route svg { width: 100%; height: 100%; }

.route-path {
    fill: none;
    stroke: rgba(139, 124, 255, .5);
    stroke-width: 2;
    stroke-dasharray: 6 7;
}

.route-dot {
    position: absolute;
    top: 0; left: 0;
    width: 10px; height: 10px;
    border-radius: 50%;
    background: var(--teal);
    box-shadow: 0 0 12px rgba(52, 225, 196, .8);
    offset-path: path('M10 100 C70 20, 130 110, 190 40 S 270 60, 292 18');
    animation: route-run 6s linear infinite;
}

@keyframes route-run {
    0% { offset-distance: 0%; }
    100% { offset-distance: 100%; }
}

/* vinyet: bar chart */
.vg-bars { display: flex; align-items: flex-end; gap: 8px; height: 74px; }

.vg-bars i {
    flex: 1;
    height: calc(var(--h) * 100%);
    border-radius: 6px 6px 2px 2px;
    background: var(--grad);
    opacity: .8;
    transform-origin: bottom;
    transition: transform .4s var(--ease-out);
}

.bento-card:hover .vg-bars i { transform: scaleY(1.12); }

/* vinyet: raf */
.vg-shelf { display: grid; grid-template-columns: repeat(4, 1fr); gap: 6px; }

.vg-shelf i { height: 18px; border-radius: 4px; background: rgba(255, 255, 255, .05); border: 1px solid var(--glass-brd); }

.vg-shelf i.on { background: rgba(52, 225, 196, .18); border-color: rgba(52, 225, 196, .3); }

.vg-shelf i.blink { animation: shelf-blink 1.8s ease-in-out infinite; }

@keyframes shelf-blink {
    0%, 100% { background: rgba(52, 225, 196, .18); }
    50% { background: rgba(52, 225, 196, .55); }
}

/* vinyet: iade halkası */
.vg-ring svg { width: 56px; height: 56px; animation: ring-spin 7s linear infinite; }

.vg-ring circle {
    fill: none;
    stroke: rgba(139, 124, 255, .55);
    stroke-width: 2.5;
    stroke-dasharray: 84 30;
    stroke-linecap: round;
}

.vg-ring .ring-arrow { fill: none; stroke: var(--teal); stroke-width: 2.5; stroke-linecap: round; stroke-linejoin: round; }

@keyframes ring-spin { to { transform: rotate(360deg); } }

/* vinyet: belge */
.vg-doc { position: relative; display: flex; flex-direction: column; gap: 8px; padding-right: 2.4rem; }

.vg-doc i { display: block; width: var(--w); height: 7px; border-radius: 4px; background: rgba(255, 255, 255, .1); }

.doc-check {
    position: absolute;
    right: .2rem; bottom: -2px;
    font-size: 1.3rem;
    color: var(--teal);
}

/* vinyet: checklist */
.vg-check { display: flex; flex-direction: column; gap: 10px; }

.vg-check > div { display: flex; align-items: center; gap: 10px; }

.vg-check i { display: block; width: var(--w); height: 7px; border-radius: 4px; background: rgba(255, 255, 255, .1); }

.tick { width: 16px; height: 16px; flex: none; }

.tick path {
    fill: none;
    stroke: var(--teal);
    stroke-width: 2;
    stroke-linecap: round;
    stroke-linejoin: round;
    stroke-dasharray: 20;
    stroke-dashoffset: 20;
}

.draw .tick path, .tick.draw path {
    transition: stroke-dashoffset .5s cubic-bezier(.4, 0, .2, 1) calc(var(--i, 0) * 120ms);
    stroke-dashoffset: 0;
}

/* vinyet: mobil */
.vg-mobile {
    position: relative;
    display: flex;
    justify-content: center;
    align-items: center;
    height: 70px;
}

.mob-phone {
    width: 32px;
    height: 48px;
    stroke: rgba(255, 255, 255, 0.5);
    z-index: 1;
}

.mob-pulse {
    position: absolute;
    width: 6px;
    height: 6px;
    background: var(--teal);
    border-radius: 50%;
    top: 45%;
    left: 50%;
    transform: translate(-50%, -50%);
    animation: mob-ping 2s ease-out infinite;
}

@keyframes mob-ping {
    0% { transform: translate(-50%, -50%) scale(0.8); box-shadow: 0 0 0 0 rgba(52, 225, 196, 0.7); opacity: 1; }
    70%, 100% { transform: translate(-50%, -50%) scale(1); box-shadow: 0 0 0 15px rgba(52, 225, 196, 0); opacity: 0; }
}

/* ── Finans ───────────────────────────────────────────────────── */
.finance-sec { padding: clamp(3.5rem, 10vh, 7rem) 0; }

.finance-sec .ab-hint { opacity: .18; }

.finance-grid {
    display: grid;
    grid-template-columns: 1fr 1.05fr;
    gap: clamp(2rem, 5vw, 4rem);
    align-items: center;
}

.tick-list { margin-top: 1.4rem; display: flex; flex-direction: column; gap: .6rem; }

.tick-list li { position: relative; padding-left: 1.4rem; color: var(--txt); font-weight: 500; font-size: .98rem; }

.tick-list li::before {
    content: '';
    position: absolute;
    left: 0; top: .52em;
    width: 8px; height: 8px;
    border-radius: 50%;
    background: var(--teal);
    box-shadow: 0 0 10px rgba(52, 225, 196, .6);
}

.match-panel { padding: 1.4rem; position: relative; }

.mp-cols { display: grid; grid-template-columns: 1fr 1fr; gap: 1.2rem; }

.mp-list { margin-top: .8rem; display: flex; flex-direction: column; gap: .5rem; min-height: 232px; }

.mp-list li {
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: .5rem;
    padding: .55rem .75rem;
    border-radius: 10px;
    background: rgba(255, 255, 255, .04);
    border: 1px solid var(--glass-brd);
    font-size: .8rem;
    overflow: hidden;
    transition: background .4s, border-color .4s, opacity .5s, max-height .5s var(--ease-out), padding .5s, margin .5s;
    max-height: 52px;
}

.mp-list li span { font-family: var(--font-m); font-size: .72rem; letter-spacing: .04em; color: var(--txt2); }

.mp-list li em { font-style: normal; font-weight: 600; color: var(--txt); font-variant-numeric: tabular-nums; }

.mp-list li.enter { max-height: 0; padding-block: 0; opacity: 0; border-width: 0; }

.mp-list li.scan { animation: scan-jitter .5s linear 2; }

@keyframes scan-jitter {
    0%, 100% { transform: translateX(0); }
    25% { transform: translateX(2px); }
    75% { transform: translateX(-2px); }
}

.mp-list li.matched {
    background: linear-gradient(90deg, rgba(52, 225, 196, .14), rgba(52, 225, 196, .05));
    border-color: rgba(52, 225, 196, .35);
}

.mp-list li.leave { opacity: 0; max-height: 0; padding-block: 0; margin: 0; border-width: 0; }

.mp-badge {
    font-size: .66rem;
    font-weight: 700;
    padding: .14rem .5rem;
    border-radius: 999px;
    white-space: nowrap;
    transform: scale(0);
    animation: badge-pop .3s var(--ease-out) forwards;
}

.mp-badge.ok { color: #0A0C12; background: var(--teal); }

.mp-badge.warn { color: #0A0C12; background: var(--amber); }

@keyframes badge-pop { to { transform: scale(1); } }

.mp-list li.unmatched { border-color: rgba(255, 194, 107, .45); background: rgba(255, 194, 107, .07); }

.mp-bridge {
    position: absolute;
    height: 2px;
    background: linear-gradient(90deg, rgba(139, 124, 255, .9), var(--teal));
    box-shadow: 0 0 12px rgba(52, 225, 196, .55);
    border-radius: 2px;
    transform-origin: left center;
    transform: scaleX(0);
    transition: transform .4s var(--ease-out);
    pointer-events: none;
    z-index: 3;
}

.mp-bridge.on { transform: scaleX(1); }

.mp-un { margin-top: 1.1rem; padding-top: .9rem; border-top: 1px dashed rgba(255, 255, 255, .1); }

.mp-un .mp-list { min-height: 0; margin-top: .5rem; }

/* ── Marka ────────────────────────────────────────────────────── */
.brand-sec { padding: clamp(3.5rem, 10vh, 7rem) 0; }

.mock-wrap { max-width: 760px; margin: 2.4rem auto 0; text-align: center; }

.mock {
    display: grid;
    grid-template-columns: 64px 1fr;
    text-align: left;
    overflow: hidden;
    min-height: 300px;
}

.mock-side {
    border-right: 1px solid var(--glass-brd);
    padding: 1.1rem .9rem;
    display: flex;
    flex-direction: column;
    gap: .8rem;
    align-items: center;
}

.mock-side i {
    width: 30px; height: 30px;
    border-radius: 9px;
    background: rgba(255, 255, 255, .06);
    transition: background-color .5s;
}

.mock-side i:first-child { background: var(--brand-soft); box-shadow: inset 0 0 0 1px var(--brand); transition: background-color .5s, box-shadow .5s; }

.mock-main { padding: 1.2rem 1.4rem; display: flex; flex-direction: column; gap: 1.1rem; }

.mock-top { display: flex; justify-content: space-between; align-items: center; }

.mock-logo {
    font-family: var(--font-d);
    font-weight: 700;
    font-size: 1.15rem;
    color: var(--brand);
    transition: color .5s, opacity .25s, filter .25s, transform .25s;
}

.mock-logo.out { opacity: 0; filter: blur(6px); transform: translateY(-8px); }

.mock-avatar { width: 30px; height: 30px; border-radius: 50%; background: var(--brand-soft); border: 1px solid var(--brand); transition: background-color .5s, border-color .5s; }

.mock-cards { display: grid; grid-template-columns: repeat(3, 1fr); gap: .8rem; }

.mock-card {
    padding: .85rem .9rem;
    border-radius: 12px;
    background: rgba(255, 255, 255, .04);
    border: 1px solid var(--glass-brd);
    display: flex;
    flex-direction: column;
    gap: .15rem;
}

.mock-card b { font-family: var(--font-d); font-size: 1.2rem; color: var(--txt); }

.mock-card span { font-size: .72rem; color: var(--txt3); }

.mock-card:first-child { border-color: var(--brand); background: var(--brand-soft); transition: border-color .5s, background-color .5s; }

.mock-chart { display: flex; align-items: flex-end; gap: 7px; height: 76px; }

.mock-chart i {
    flex: 1;
    height: calc(var(--h) * 100%);
    border-radius: 5px 5px 2px 2px;
    background: var(--brand);
    opacity: .75;
    transition: background-color .5s;
}

.brand-chips { display: flex; justify-content: center; gap: .8rem; margin-top: 1.6rem; flex-wrap: wrap; }

.brand-chip {
    position: relative;
    display: inline-flex;
    align-items: center;
    gap: .5rem;
    padding: .5rem 1.05rem;
    border-radius: 999px;
    background: var(--glass-bg);
    border: 1px solid var(--glass-brd);
    color: var(--txt);
    font-weight: 500;
    font-size: .9rem;
    transition: border-color .3s, transform .3s var(--ease-out);
}

.brand-chip:hover { transform: translateY(-2px); }

.brand-chip i { width: 12px; height: 12px; border-radius: 50%; }

.brand-chip.active::before {
    content: '';
    position: absolute;
    inset: -3px;
    border-radius: inherit;
    background: conic-gradient(from var(--a), var(--violet), var(--teal), transparent 55%, var(--violet));
    animation: spin-a 4s linear infinite;
    z-index: -1;
    filter: blur(3px);
}

.brand-micro { margin-top: 1.4rem; }

/* ── Paketler ─────────────────────────────────────────────────── */
.packs-sec { padding: clamp(3.5rem, 10vh, 7rem) 0; }

.packs {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 1.4rem;
    align-items: stretch;
    margin-top: 2.5rem;
}

.pack {
    padding: 1.9rem 1.7rem;
    display: flex;
    flex-direction: column;
    gap: .45rem;
    position: relative;
    transition: transform .35s var(--ease-out);
    height: 100%;
}

.pack::after {
    content: '';
    position: absolute;
    inset: auto 12% -18px 12%;
    height: 30px;
    background: var(--grad);
    filter: blur(30px);
    opacity: 0;
    transition: opacity .4s;
    z-index: -1;
}

.pack:hover { transform: translateY(-6px); }

.pack:hover::after { opacity: .45; }

.pack h3 { font-size: 1.5rem; margin-top: .3rem; }

.pack-tag { color: var(--txt2); font-size: .95rem; margin-bottom: .8rem; }

.pack ul { display: flex; flex-direction: column; gap: .55rem; margin-bottom: 1.6rem; }

.pack ul li { position: relative; padding-left: 1.35rem; font-size: .94rem; }

.pack ul li::before {
    content: '';
    position: absolute;
    left: 0; top: .5em;
    width: 7px; height: 7px;
    border-radius: 50%;
    background: var(--violet);
    opacity: .8;
}

.pack .btn, .pack .mag-wrap { margin-top: auto; }

.pack .mag-wrap .btn { width: 100%; }

.pack > .btn { width: 100%; }

.pack-hero-wrap { transform: scale(1.06); z-index: 2; }

.pack-hero { height: 100%; }

.pack-badge {
    position: absolute;
    top: -13px; left: 50%;
    transform: translateX(-50%);
    font-family: var(--font-m);
    font-size: .64rem;
    letter-spacing: .12em;
    font-weight: 700;
    color: #0A0C12;
    background: var(--grad);
    padding: .3rem .8rem;
    border-radius: 999px;
    white-space: nowrap;
}

.packs-try { text-align: center; margin-top: 3rem; display: flex; gap: .8rem; align-items: center; justify-content: center; flex-wrap: wrap; }

.packs-try strong { color: var(--txt); }

/* Karşılaştırma accordion */
.acc { max-width: 880px; margin: 2.6rem auto 0; }

.acc-btn {
    width: 100%;
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 1rem;
    padding: 1rem 1.3rem;
    border-radius: 14px;
    background: var(--glass-bg);
    border: 1px solid var(--glass-brd);
    color: var(--txt);
    font-weight: 600;
    transition: border-color .3s;
}

.acc-btn:hover { border-color: rgba(139, 124, 255, .4); }

.acc-arrow {
    width: 9px; height: 9px;
    border-right: 2px solid var(--txt2);
    border-bottom: 2px solid var(--txt2);
    transform: rotate(45deg);
    transition: transform .3s var(--ease-out);
}

.acc-btn[aria-expanded="true"] .acc-arrow { transform: rotate(225deg); }

.acc-panel {
    max-height: 0;
    overflow: hidden;
    transition: max-height .6s var(--ease-out);
}

.table-scroll { overflow-x: auto; margin-top: 1rem; border-radius: 14px; border: 1px solid var(--glass-brd); }

.cmp { width: 100%; border-collapse: collapse; min-width: 560px; background: rgba(255, 255, 255, .02); }

.cmp th, .cmp td { padding: .8rem 1.1rem; text-align: left; border-bottom: 1px solid rgba(255, 255, 255, .06); font-size: .92rem; }

.cmp th {
    font-family: var(--font-m);
    font-size: .68rem;
    letter-spacing: .12em;
    text-transform: uppercase;
    color: var(--txt3);
    background: rgba(255, 255, 255, .03);
}

.cmp tbody tr:last-child td { border-bottom: none; }

.cmp td.c { text-align: center; }

.cmp td.c .tick { margin-inline: auto; }

.cmp td.dash { color: var(--txt3); }

.cmp td.t { font-size: .82rem; color: var(--txt2); }

/* ── Teklif & Kapanış ─────────────────────────────────────────── */
.close-sec { padding: clamp(4rem, 11vh, 8rem) 0 clamp(3rem, 8vh, 5rem); }

.close-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: clamp(2rem, 5vw, 4.5rem);
    align-items: center;
}

.close-mini { font-family: var(--font-d); font-weight: 600; font-size: 1.25rem; margin: 1.3rem 0 1.5rem; }

.close-copy .hero-micro { margin-top: 1.3rem; }

.quote-form { padding: 1.8rem 1.7rem; display: flex; flex-direction: column; gap: 1rem; }

.qf-cols { display: grid; grid-template-columns: 1fr 1fr; gap: 1rem; }

.qf-row { display: flex; flex-direction: column; gap: .4rem; }

.qf-row label { font-size: .84rem; font-weight: 500; color: var(--txt); }

.qf-row .opt { color: var(--txt3); font-weight: 400; }

.qf-row input, .qf-row select, .qf-row textarea {
    font: inherit;
    font-size: .95rem;
    color: var(--txt);
    background: rgba(255, 255, 255, .05);
    border: 1px solid var(--glass-brd);
    border-radius: 12px;
    padding: .7rem .9rem;
    transition: box-shadow .3s, border-color .3s;
    width: 100%;
}

.qf-row select { appearance: none; background-image: linear-gradient(45deg, transparent 50%, var(--txt2) 50%), linear-gradient(135deg, var(--txt2) 50%, transparent 50%); background-position: calc(100% - 20px) 50%, calc(100% - 15px) 50%; background-size: 5px 5px; background-repeat: no-repeat; }

.qf-row textarea { resize: vertical; min-height: 84px; }

.qf-row input:focus, .qf-row select:focus, .qf-row textarea:focus {
    outline: none;
    border-color: transparent;
    box-shadow: inset 0 0 0 1px var(--teal), 0 0 24px rgba(52, 225, 196, .12);
}

.qf-row input.invalid, .qf-row textarea.invalid { border-color: var(--amber); }

.qf-err { color: var(--amber); letter-spacing: .1em; }

.qf-submit { margin-top: .4rem; }

.qf-submit.sent {
    background: linear-gradient(120deg, var(--teal), var(--teal));
    pointer-events: none;
}

.quote-form.sent .qf-row { opacity: .45; pointer-events: none; }

/* düğüm parıltısı */
.edge-wrap.knot-flash::after {
    content: '';
    position: absolute;
    inset: -12px;
    border-radius: 28px;
    background: radial-gradient(circle, rgba(52, 225, 196, .35), transparent 70%);
    filter: blur(18px);
    animation: knot 0.6s ease-out forwards;
    pointer-events: none;
}

@keyframes knot {
    0% { opacity: 0; transform: scale(.9); }
    40% { opacity: 1; }
    100% { opacity: 0; transform: scale(1.08); }
}

/* ── Footer ───────────────────────────────────────────────────── */
.footer { position: relative; z-index: 2; border-top: 1px solid var(--glass-brd); padding: 2.2rem 0 1.6rem; }

.footer-in {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 1.6rem;
    flex-wrap: wrap;
}

.footer-left { display: flex; flex-direction: column; gap: .45rem; }

.footer-links { display: flex; gap: 1.4rem; flex-wrap: wrap; }

.footer-links a { font-size: .9rem; color: var(--txt2); transition: color .25s; }

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

.footer-login { font-size: .9rem; font-weight: 600; color: var(--txt); }

.footer-copy { text-align: center; margin-top: 1.8rem; font-size: .62rem; }

/* ── A6: Scroll reveal ────────────────────────────────────────── */
.rv {
    opacity: 0;
    transform: translateY(28px);
    filter: blur(8px);
    transition: opacity .7s, transform .7s var(--ease-out), filter .7s;
    transition-delay: calc(var(--i, 0) * 70ms);
}

.rv.in { opacity: 1; transform: none; filter: none; }

/* ═══ RESPONSIVE ══════════════════════════════════════════════── */
@media (max-width: 1080px) {
    .hero-in { grid-template-columns: 1fr; gap: 3rem; }
    .cockpit { transform: scale(.85); transform-origin: top center; min-height: 430px; max-width: 560px; margin-inline: auto; width: 100%; }
    .close-grid { grid-template-columns: 1fr; }
}

@media (max-width: 900px) {
    .nav-links, .nav-cta { display: none; }
    .nav-burger { display: flex; }

    #thread { display: none; }
    .journey-line { display: block; }

    .stop-row { grid-template-columns: 28px 1fr; }
    .node-cell { justify-content: flex-start; grid-column: 1; grid-row: 1; align-self: center; }
    .stop { grid-column: 2; margin-left: 0 !important; max-width: none; }
    .stop-gap { display: none; }

    .bento { grid-template-columns: 1fr; }
    .b-big, .b-wide { grid-column: auto; grid-row: auto; }

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

    .pulse-strip { grid-template-columns: 1fr 1fr; }
    .pulse-cell { border-left: none; border-top: 1px solid var(--glass-brd); }
    .pulse-cell:nth-child(-n+2) { border-top: none; }
    .pulse-cell:nth-child(even) { border-left: 1px solid var(--glass-brd); }

    .packs { grid-template-columns: 1fr; max-width: 460px; margin-inline: auto; }
    .pack-hero-wrap { transform: none; }
}

@media (max-width: 640px) {
    .mq-top .mq-track span { font-size: 1.5rem; }
    .qf-cols { grid-template-columns: 1fr; }
    .mp-cols { grid-template-columns: 1fr; }
    .mp-list { min-height: 0; }
    .footer-in { flex-direction: column; align-items: flex-start; }
    .cockpit { transform: scale(1); min-height: 0; position: relative; height: auto; padding-bottom: 1rem; }
    .scene { position: relative; transform: none; }
    .card-file-wrap { position: relative; top: 0; left: 0; width: 100%; }
    .card-receipt, .card-toast { position: relative; inset: auto; width: 100%; margin-top: .9rem; }
}

/* ═══ REDUCED MOTION ═════════════════════════════════════════── */
@media (prefers-reduced-motion: reduce) {
    html { scroll-behavior: auto; }

    .ab, .mq-track, .route-dot, .vg-ring svg, .shimmer,
    .card-file-wrap, .card-receipt, .card-toast,
    .seed-dot, .pill-supply, .vg-shelf i.blink,
    .edge-wrap, .btn-primary::before, .brand-chip.active::before {
        animation: none !important;
    }

    .line { transform: none; transition: none; }

    .rv, .rv-late {
        transition: opacity .2s;
        transform: none;
        filter: none;
    }

    body.loaded .rv-late, .rv.in { opacity: 1; }

    body.loaded .progress-fill { animation: none; width: 75%; }

    .mq-track { transform: none; }
}

/* ═══ SAHA & MOBİL (Depo & Saha Operasyonu) ═══════════════════── */
.saha-sec { padding: clamp(3.5rem, 10vh, 7rem) 0; }

.saha-grid {
    display: grid;
    grid-template-columns: 1.25fr .85fr;
    gap: clamp(1.6rem, 4vw, 3rem);
    align-items: center;
    margin-top: 2.4rem;
}

.saha-cards { display: grid; grid-template-columns: 1fr 1fr; gap: 1.1rem; }

.saha-card {
    padding: 1.5rem 1.5rem 1.4rem;
    position: relative;
    overflow: hidden;
    transition: transform .35s var(--ease-out), border-color .35s;
}

.saha-card::before {
    content: '';
    position: absolute;
    left: 0; top: 12%; bottom: 12%;
    width: 2px;
    background: var(--grad);
    opacity: 0;
    transition: opacity .35s;
}

.saha-card::after {
    content: '';
    position: absolute;
    inset: 0;
    background: radial-gradient(340px at 0% 50%, rgba(139,124,255,.09), transparent 65%);
    opacity: 0;
    transition: opacity .35s;
    pointer-events: none;
}

.saha-card:hover { transform: translateY(-5px); border-color: rgba(139,124,255,.35); }
.saha-card:hover::before, .saha-card:hover::after { opacity: 1; }

.saha-card h3 { margin: .5rem 0 .45rem; font-size: 1.12rem; }
.saha-card p { font-size: .92rem; line-height: 1.6; }
.saha-card p strong { color: var(--txt); font-weight: 600; }

/* Telefon maketi */
.phone-wrap { border-radius: 33px; max-width: 360px; justify-self: center; animation: spin-a 8s linear infinite, phone-float 7s ease-in-out infinite; }

@keyframes phone-float {
    0%, 100% { transform: translateY(0) rotate(-1.2deg); }
    50% { transform: translateY(-10px) rotate(.6deg); }
}

.phone {
    border-radius: 32px;
    padding: 1.3rem 1.2rem 1.1rem;
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

.ph-top { display: flex; justify-content: space-between; align-items: center; }

.ph-live {
    width: 10px; height: 10px;
    border-radius: 50%;
    background: var(--teal);
    animation: live-pulse 1.6s ease-in-out infinite;
}

@keyframes live-pulse {
    0%, 100% { box-shadow: 0 0 0 0 rgba(52,225,196,.5); }
    50% { box-shadow: 0 0 0 7px rgba(52,225,196,0); }
}

.ph-route { position: relative; display: flex; flex-direction: column; gap: 1rem; padding-left: 4px; }

.ph-route::before {
    content: '';
    position: absolute;
    left: 10px; top: 14px; bottom: 14px;
    width: 2px;
    background: linear-gradient(180deg, var(--teal), rgba(139,124,255,.5), rgba(255,255,255,.08));
}

.ph-stop { position: relative; display: flex; align-items: center; gap: .8rem; }

.ph-stop i {
    position: relative;
    z-index: 1;
    width: 14px; height: 14px;
    flex: none;
    border-radius: 50%;
    background: var(--bg0);
    border: 2px solid rgba(255,255,255,.18);
}

.ph-stop.done i { background: var(--teal); border-color: var(--teal); }

.ph-stop.active i { border-color: var(--violet); }

.ph-stop.active i::after {
    content: '';
    position: absolute;
    inset: -7px;
    border-radius: 50%;
    border: 1px solid rgba(139,124,255,.6);
    animation: ring-pulse 1.8s ease-out infinite;
}

@keyframes ring-pulse {
    0% { transform: scale(.55); opacity: 1; }
    100% { transform: scale(1.25); opacity: 0; }
}

.ph-stop > div { flex: 1; min-width: 0; }

.ph-stop b { display: block; font-size: .84rem; font-weight: 600; color: var(--txt); font-family: var(--font-b); white-space: nowrap; overflow: hidden; text-overflow: ellipsis; }

.ph-stop span { font-size: .72rem; color: var(--txt3); }

.ph-chip {
    flex: none;
    font-size: .62rem;
    font-weight: 700;
    padding: .2rem .55rem;
    border-radius: 999px;
    white-space: nowrap;
}

.ph-chip.ok { color: #0A0C12; background: var(--teal); }

.ph-chip.way { color: var(--violet); background: rgba(139,124,255,.14); border: 1px solid rgba(139,124,255,.35); animation: way-blink 2.2s ease-in-out infinite; }

@keyframes way-blink {
    0%, 100% { opacity: 1; }
    50% { opacity: .55; }
}

.ph-bar { height: 6px; border-radius: 99px; background: rgba(255,255,255,.07); overflow: hidden; }

.ph-fill {
    display: block;
    height: 100%;
    width: 0;
    border-radius: inherit;
    background: var(--grad);
    transition: width 1.4s var(--ease-out) .5s;
}

.phone-wrap.in .ph-fill { width: 58%; }

.ph-foot { text-align: center; font-size: .62rem; }

@media (max-width: 1080px) {
    .saha-grid { grid-template-columns: 1fr; }
    .phone-wrap { justify-self: center; }
}

@media (max-width: 640px) {
    .saha-cards { grid-template-columns: 1fr; }
}

@media (prefers-reduced-motion: reduce) {
    .phone-wrap, .ph-live, .ph-stop.active i::after, .ph-chip.way { animation: none !important; }
    .phone-wrap.in .ph-fill { transition: none; }
}

/* ═══ Modern cila: scroll progress, selection, scrollbar ═══════── */
.scroll-progress {
    position: fixed;
    top: 0; left: 0; right: 0;
    height: 2px;
    z-index: 55;
    background: var(--grad);
    transform: scaleX(var(--scrollp, 0));
    transform-origin: left;
    pointer-events: none;
}

::selection { background: rgba(139,124,255,.35); color: var(--txt); }

::-webkit-scrollbar { width: 10px; }
::-webkit-scrollbar-track { background: var(--bg0); }
::-webkit-scrollbar-thumb { background: rgba(255,255,255,.12); border-radius: 99px; border: 2px solid var(--bg0); }
::-webkit-scrollbar-thumb:hover { background: rgba(139,124,255,.45); }

/* ═══ Hizalama koruması: satır kayması önleme ═══════════════════ */
.cf-rows li { flex-wrap: nowrap; }
.cf-rows .part { white-space: nowrap; overflow: hidden; text-overflow: ellipsis; min-width: 0; }
.mp-list li span { white-space: nowrap; overflow: hidden; text-overflow: ellipsis; min-width: 0; }
.pulse-cell .mono-tag { white-space: nowrap; overflow: hidden; text-overflow: ellipsis; }
.mock-logo { min-width: 7ch; display: inline-block; }
.brand-chip { min-width: 108px; justify-content: center; }

/* vinyet: fatura ⇄ mal kabul kalem eşleştirme */
.vg-match { display: flex; flex-direction: column; gap: 10px; }
.vg-match > div { display: flex; align-items: center; gap: 10px; }
.vg-match .ml, .vg-match .mr { display: block; flex: none; width: calc(var(--w) * .42); height: 7px; border-radius: 4px; background: rgba(255,255,255,.1); }
.vg-match .ml { margin-left: auto; background: rgba(139,124,255,.35); }
.vg-match .mr { margin-right: auto; background: rgba(52,225,196,.3); }
.vg-match > div { justify-content: center; }
.vg-match .mr-diff { background: rgba(255,194,107,.35); }
.mm-diff { flex: none; width: 16px; text-align: center; font-weight: 700; color: var(--amber); font-size: .85rem; }

/* ═══ Hero kokpit kompozisyon düzeltmesi ═══════════════════════ */
.card-file-wrap { top: 108px; z-index: 2; }
.card-receipt { z-index: 1; }
.cr-top { flex-direction: column; align-items: flex-start; gap: .3rem; margin-bottom: .8rem; }
.cr-top strong, .cr-top .mono-tag { white-space: nowrap; }
.hero-features { margin-top: 1.2rem; }

/* ═══ Hero özellik listesi — profesyonel düzen (override) ══════ */
.hero-features {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: .55rem .6rem;
    max-width: 30rem;
    margin-top: 1.3rem;
    padding: 0;
}

.hero-features li {
    display: flex;
    align-items: center;
    gap: .55rem;
    padding: .55rem .85rem;
    font-size: .85rem;
    font-weight: 500;
    color: var(--txt2);
    background: rgba(255, 255, 255, .03);
    border: 1px solid var(--glass-brd);
    border-radius: 10px;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
    transition: border-color .25s, color .25s, background-color .25s;
}

.hero-features li:hover { border-color: rgba(52, 225, 196, .35); color: var(--txt); }

.hero-features svg {
    width: 14px;
    height: 14px;
    flex: none;
    fill: none;
    stroke: var(--teal);
    stroke-width: 2.5;
    stroke-linecap: round;
    stroke-linejoin: round;
}

.hero-features li.highlight {
    grid-column: 1 / -1;
    justify-content: center;
    color: var(--txt);
    font-weight: 600;
    background: linear-gradient(90deg, rgba(139, 124, 255, .12), rgba(52, 225, 196, .1));
    border-color: rgba(139, 124, 255, .3);
}

.hero-features li.highlight svg { stroke: var(--violet); }

@media (max-width: 420px) {
    .hero-features { grid-template-columns: 1fr; }
}

/* ═══ Print Agent akış bandı ═══════════════════════════════════ */
.pa-strip {
    display: grid;
    grid-template-columns: 1fr 1.1fr;
    gap: clamp(1.4rem, 3vw, 2.6rem);
    align-items: center;
    padding: 1.8rem 1.9rem;
    margin-top: 1.6rem;
}

.pa-info h3 { margin: .5rem 0 .5rem; font-size: 1.25rem; }
.pa-info p { font-size: .93rem; line-height: 1.65; }
.pa-info p strong { color: var(--txt); font-weight: 600; }

.pa-diagram { display: flex; align-items: center; gap: 0; justify-content: flex-end; }

.pa-node {
    display: flex;
    flex-direction: column;
    gap: .2rem;
    padding: .7rem .95rem;
    border-radius: 12px;
    background: rgba(255, 255, 255, .04);
    border: 1px solid var(--glass-brd);
    text-align: center;
    flex: none;
}

.pa-node b { font-family: var(--font-d); font-size: .85rem; font-weight: 600; color: var(--txt); white-space: nowrap; }
.pa-node em { font-style: normal; font-size: .56rem; white-space: nowrap; }

.pa-hub { border-color: rgba(139, 124, 255, .45); position: relative; }
.pa-hub::before {
    content: '';
    position: absolute;
    inset: -6px;
    border-radius: 16px;
    border: 1px solid rgba(139, 124, 255, .35);
    animation: hub-pulse 2.4s ease-out infinite;
    pointer-events: none;
}
@keyframes hub-pulse {
    0% { transform: scale(.92); opacity: 1; }
    100% { transform: scale(1.12); opacity: 0; }
}

.pa-prn { border-color: rgba(52, 225, 196, .3); }

.pa-line {
    flex: none;
    width: clamp(20px, 3vw, 42px);
    height: 2px;
    background: repeating-linear-gradient(90deg, var(--teal) 0 6px, transparent 6px 12px);
    background-size: 200% 100%;
    animation: pa-flow 1.1s linear infinite;
    opacity: .8;
}
@keyframes pa-flow { to { background-position: -24px 0; } }

.pa-out { display: flex; flex-direction: column; gap: .8rem; }
.pa-branch { display: flex; align-items: center; }

@media (max-width: 1080px) {
    .pa-strip { grid-template-columns: 1fr; }
    .pa-diagram { justify-content: flex-start; flex-wrap: wrap; row-gap: .8rem; }
}
@media (max-width: 480px) {
    .pa-node { padding: .55rem .7rem; }
    .pa-node b { font-size: .74rem; }
}
@media (prefers-reduced-motion: reduce) {
    .pa-line, .pa-hub::before { animation: none !important; }
}

/* ═══ İmleç efektleri: aura + kart spotlight (jenerik sol-border kaldırıldı) ═ */
.saha-card::after { content: none; }

.glow-card { position: relative; overflow: hidden; }

.glow-card::before {
    content: '';
    position: absolute;
    inset: 0;
    width: auto;
    height: auto;
    background: radial-gradient(340px at var(--mx, 50%) var(--my, 50%), rgba(255, 255, 255, .07), transparent 60%);
    opacity: 0;
    transition: opacity .3s;
    pointer-events: none;
}

.glow-card:hover::before { opacity: 1; }

.cursor-aura {
    position: fixed;
    left: 0; top: 0;
    width: 560px; height: 560px;
    margin: -280px 0 0 -280px;
    border-radius: 50%;
    background: radial-gradient(circle, rgba(139, 124, 255, .09), rgba(52, 225, 196, .045) 42%, transparent 70%);
    mix-blend-mode: screen;
    pointer-events: none;
    z-index: 4;
    opacity: 0;
    transition: opacity .5s;
    will-change: transform;
}

body.aura-on .cursor-aura { opacity: 1; }

@media (hover: none), (prefers-reduced-motion: reduce) {
    .cursor-aura { display: none; }
}

/* ═══ Apple-tarzı pinned sahne: Saha & Mobil ═══════════════════ */
.saha-pin { align-items: start; }

.saha-pin .saha-steps { grid-template-columns: 1fr; gap: 0; }

.saha-pin .saha-card {
    margin-bottom: 34vh;
    opacity: .3;
    transform: scale(.965) translateY(6px);
    filter: blur(1px);
    transition: opacity .55s var(--ease-out), transform .55s var(--ease-out), filter .55s;
}

.saha-pin .saha-card:first-child { margin-top: 6vh; }
.saha-pin .saha-card:last-child { margin-bottom: 10vh; }

.saha-pin .saha-card.act { opacity: 1; transform: none; filter: none; }

.saha-stage {
    position: sticky;
    top: calc(50vh - 265px);
    display: flex;
    justify-content: center;
}

/* Telefon ekranları — çapraz geçiş */
.ph-body { display: grid; min-height: 236px; }

.ph-screen {
    grid-area: 1 / 1;
    opacity: 0;
    transform: translateY(16px) scale(.985);
    transition: opacity .5s var(--ease-out), transform .5s var(--ease-out);
    pointer-events: none;
}

.ph-screen.on { opacity: 1; transform: none; }

.ph-rows { display: flex; flex-direction: column; gap: .7rem; }

.ph-row {
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: .6rem;
    padding: .55rem .75rem;
    border-radius: 10px;
    background: rgba(255, 255, 255, .04);
    border: 1px solid var(--glass-brd);
}

.ph-row b { font-size: .82rem; font-weight: 600; color: var(--txt); font-family: var(--font-b); white-space: nowrap; overflow: hidden; text-overflow: ellipsis; }

.ph-row.dim { opacity: .5; }

.ph-tagx { flex: none; font-family: var(--font-m); font-size: .58rem; letter-spacing: .08em; color: var(--txt3); white-space: nowrap; }
.ph-tagx.ok { color: var(--teal); }
.ph-tagx.way { color: var(--violet); animation: way-blink 2.2s ease-in-out infinite; }

/* Teslim kanıtı ekranı */
.ph-proof { display: flex; flex-direction: column; gap: .9rem; }

.ph-photo {
    height: 116px;
    border-radius: 12px;
    border: 1px dashed rgba(255, 255, 255, .18);
    background: linear-gradient(135deg, rgba(139, 124, 255, .08), rgba(52, 225, 196, .06));
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: .5rem;
}

.ph-photo i {
    width: 34px; height: 34px;
    border-radius: 50%;
    background: radial-gradient(circle at 35% 35%, rgba(255, 255, 255, .25), rgba(255, 255, 255, .06));
    border: 1px solid var(--glass-brd);
}

.ph-sign {
    padding: .7rem .9rem;
    border-radius: 12px;
    background: rgba(255, 255, 255, .04);
    border: 1px solid var(--glass-brd);
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: .8rem;
}

.ph-sign svg { width: 110px; height: 34px; flex: none; }

.sign-path {
    fill: none;
    stroke: var(--teal);
    stroke-width: 2;
    stroke-linecap: round;
    stroke-dasharray: 220;
    stroke-dashoffset: 220;
}

.ph-screen.on .sign-path { animation: sign-draw 1.4s var(--ease-out) .3s forwards; }

@keyframes sign-draw { to { stroke-dashoffset: 0; } }

/* Hero scroll-fade */
.hero-in { transition: none; }

@media (max-width: 1080px) {
    .saha-pin .saha-card { margin-bottom: 1.1rem; opacity: 1; transform: none; filter: none; }
    .saha-pin .saha-card:first-child { margin-top: 0; }
    .saha-stage { position: static; margin-top: 1.6rem; }
}

@media (prefers-reduced-motion: reduce) {
    .saha-pin .saha-card { opacity: 1; transform: none; filter: none; }
    .ph-screen { transition: opacity .2s; }
    .ph-screen.on .sign-path { animation: none; stroke-dashoffset: 0; }
}

/* ═══ Sticky düzeltmeleri ══════════════════════════════════════ */
.saha-pin { align-items: stretch; }

.saha-stage {
    align-self: stretch;
    height: auto;
    display: block;
}

.saha-stage .phone-wrap {
    position: sticky;
    top: calc(50vh - 265px);
    margin-inline: auto;
}

/* Dimlemeyi biraz daha belirgin yap — geçiş net okunur */
.saha-pin .saha-card { opacity: .22; filter: blur(1.5px); will-change: opacity, transform, filter; }
.saha-pin .saha-card.act { opacity: 1; filter: none; }

@media (max-width: 1080px) {
    .saha-stage .phone-wrap { position: relative; top: auto; }
}

/* ═══ Apple 3D scrub efektleri ═════════════════════════════════ */
/* Başlıklar: perspektifte doğrulup gelir */
h2.rv {
    transform: perspective(900px) rotateX(22deg) translateY(34px);
    transform-origin: 50% 100%;
}
h2.rv.in { transform: none; }

/* Yolculuk kartları: yanlardan 3D açıyla döner */
.stop-row:nth-child(odd) .stop.rv { transform: perspective(1000px) rotateY(-16deg) translateX(-28px); transform-origin: right center; }
.stop-row:nth-child(even) .stop.rv { transform: perspective(1000px) rotateY(16deg) translateX(28px); transform-origin: left center; }
.stop.rv.in { transform: none; }

/* Paket kartları: hafif 3D yükseliş */
.pack.rv, .pack-hero-wrap.rv { transform: perspective(1000px) rotateX(14deg) translateY(30px); transform-origin: 50% 100%; }
.pack.rv.in { transform: none; }
.pack-hero-wrap.rv.in { transform: scale(1.06); }

/* Telefon: scroll-scrub 3D dönüş (JS --pry/--prx sürer) */
.saha-stage .phone {
    transform: perspective(1100px) rotateY(var(--pry, 0deg)) rotateX(var(--prx, 0deg));
    will-change: transform;
}

/* Kokpit: scroll'la perspektifte yatar (JS sürer) */
.cockpit { will-change: transform; }

@media (prefers-reduced-motion: reduce) {
    h2.rv, .stop.rv, .pack.rv, .pack-hero-wrap.rv { transform: none !important; }
    .saha-stage .phone { transform: none !important; }
}

/* ═══ STORY (GSAP) — stacking takeover + çok sayfa eklentileri ═══ */
.nav-links a.active {
    color: var(--txt);
    background: var(--grad);
    -webkit-background-clip: text;
    background-clip: text;
    color: transparent;
    font-weight: 600;
}

/* Vitrin CTA kartı */
.bento-cta {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 1rem;
    padding: 1.6rem 1.8rem;
    border: 1px dashed rgba(139, 124, 255, .4);
    transition: border-color .3s, transform .3s var(--ease-out);
}

.bento-cta:hover { border-color: var(--teal); transform: translateY(-4px); }

.bento-cta-text {
    font-family: var(--font-d);
    font-weight: 600;
    font-size: 1.15rem;
    background: var(--grad);
    -webkit-background-clip: text;
    background-clip: text;
    color: transparent;
}

.bento-cta-arrow {
    font-size: 1.5rem;
    color: var(--teal);
    transition: transform .3s var(--ease-out);
}

.bento-cta:hover .bento-cta-arrow { transform: translateX(6px); }

/* Devralan bölümlerin opak "sheet" zemini (yalnız GSAP aktifken) */
.gsap-on main.page > section.tk { position: relative; }

.gsap-on main.page > section.tk::before {
    content: '';
    position: absolute;
    inset: 0;
    z-index: -1;
    background: rgba(7, 9, 15, .96);
    border-top: 1px solid var(--glass-brd);
    border-radius: 28px 28px 0 0;
    box-shadow: 0 -40px 90px rgba(0, 0, 0, .55);
}

/* GSAP pin sırasında iç sarmalayıcı transform'u için */
.gsap-on .hero-in, .gsap-on .journey-sec > .wrap, .gsap-on .saha-sec > .wrap,
.gsap-on .finance-sec > .wrap, .gsap-on .brand-sec > .wrap { will-change: transform, opacity; }

/* ═══ Sticky-stack takeover (yalnız GSAP + ≥900px: body.story-on) ═ */
@media (min-width: 900px) {
    .story-on main.page > section { position: sticky; }

    .story-on main.page > section:not(.hero)::before {
        content: '';
        position: absolute;
        inset: 0;
        z-index: -1;
        background: rgba(7, 9, 15, .97);
        border-top: 1px solid var(--glass-brd);
        border-radius: 28px 28px 0 0;
        box-shadow: 0 -40px 90px rgba(0, 0, 0, .55);
    }

    .story-on .footer {
        position: relative;
        z-index: 99;
        background: var(--bg0);
    }
}

/* ═══ Flicker fix: story modunda backdrop-filter kapat ═══════════
   Scrub transform'u + backdrop-filter Chrome'da sürekli titreme yapar.
   Sheet zeminleri zaten opak — blur görsel olarak fark yaratmıyor. */
@media (min-width: 900px) {
    .story-on .glass,
    .story-on .btn-ghost,
    .story-on .edge-wrap > .glass,
    .story-on .edge-wrap > form.glass {
        backdrop-filter: none;
        -webkit-backdrop-filter: none;
    }

    .story-on .glass { background: rgba(255, 255, 255, .045); }

    .story-on .edge-wrap > .glass,
    .story-on .edge-wrap > form.glass { background: rgba(13, 16, 26, .92); }
}

.pack-badge { z-index: 3; }

/* Render fix: transform'lu sarmalayıcı içinde blur filtreli reveal
   Chrome'da içeriği yok edip geri getiriyor — story modunda blur'suz reveal */
@media (min-width: 900px) {
    .story-on .rv { filter: none; transition: opacity .7s, transform .7s var(--ease-out); }
    .story-on .rv.in { filter: none; }
}

/* ═══ Chromium stabilite: dönen @property conic animasyonları kapalı ═
   --a rotasyonu transform'lu ortamda titreme + katman düşmesi (boş kart)
   yapıyor. Halo/çerçeveler statik gradyan olarak kalır. */
.edge-wrap { animation: none; }
.phone-wrap { animation: phone-float 7s ease-in-out infinite; }
.btn-primary::before { animation: none; }
.brand-chip.active::before { animation: none; }

/* ═══ Profesyonel kart vurgusu (statik, titremesiz) ═══════════── */
.pack-hero-wrap {
    padding: 2px;
    background: linear-gradient(135deg, rgba(139, 124, 255, .85), rgba(52, 225, 196, .75));
    box-shadow: 0 0 70px rgba(139, 124, 255, .28), 0 18px 60px rgba(0, 0, 0, .5);
}

.glow-card::before { border-radius: inherit; }

.pack-hero.glow-card { overflow: visible; }

/* ═══ Scrub performansı: tüm bölüm sarmalayıcıları GPU katmanında ═ */
@media (min-width: 900px) {
    .story-on main.page > section > .wrap,
    .story-on .hero-in {
        will-change: transform, opacity;
        transform: translateZ(0);
    }

    .story-on .pack, .story-on .quote-form, .story-on .edge-wrap { transform: translateZ(0); }
    .story-on .pack-hero-wrap { transform: scale(1.06) translateZ(0); }
}

/* ═══ Paketler + Teklif: hikâye dışı, normal akış ═══════════════
   Akordiyon yüksekliği değiştirdiği için sticky-stack'e giremezler. */
@media (min-width: 900px) {
    .story-on main.page > section.packs-sec,
    .story-on main.page > section.close-sec {
        position: relative;
    }
}

/* ═══ Stabilite: reveal'lardan blur kaldırıldı (Chromium repaint churn) ═
   Sticky-stack takeover da JS'te kaldırıldı; bölümler normal akışta.
   Reveal artık yalnız opacity + translate — hiçbir koşulda zıplama yok. */
.rv { filter: none !important; transform: translateY(26px); transition: opacity .7s var(--ease-out), transform .7s var(--ease-out); }
.rv.in { transform: none; }

/* ═══════════════════════════════════════════════════════════════
   MOBİL DÜZELTMELER (en sonda — kaynak sırasında kazanır)
   ═══════════════════════════════════════════════════════════════ */

/* Yatay scroll güvencesi: html + body iki eksende de kırp */
html { overflow-x: hidden; }
body { overflow-x: hidden; max-width: 100%; }

@media (max-width: 1080px) {
    /* Saha fazları: masaüstü pin-dimming'i iptal — hepsi net okunur */
    .saha-pin .saha-card {
        opacity: 1 !important;
        filter: none !important;
        transform: none !important;
        will-change: auto;
    }
}

@media (max-width: 900px) {
    /* Header altı boşluk makul */
    .hero { padding-top: 5.5rem; }

    /* Yatay taşma kaynakları */
    .marquee-tilt { transform: none; }              /* rotate köşe taşması */
    main.page, main.page > section { max-width: 100%; overflow-x: clip; }

    /* Uzun Türkçe kelimeler satırı taşırmasın */
    h1, h2, h3, p, li, .mono-tag { overflow-wrap: break-word; word-break: break-word; }

    /* Print Agent akış şeması mobilde dikey — taşma yok */
    .pa-diagram { flex-direction: column; align-items: stretch; }
    .pa-out { width: 100%; }

    /* Kokpit taşmasın */
    .cockpit, .scene { max-width: 100%; }
}

@media (max-width: 640px) {
    .hero { padding-top: 5rem; }
    .hero-h1 { font-size: clamp(2rem, 8.5vw, 2.8rem); }
    /* Bento & paket kartları tek kolon zaten; ekstra taşma kilidi */
    .bento, .packs, .saha-grid, .finance-grid { max-width: 100%; }
}
