/* ==========================================================================
   AIHEAR — ana stil dosyası
   ========================================================================== */

/* ---------- 1. Tasarım değişkenleri ---------- */
:root {
	--ink-950: #030714;
	--ink-900: #060B1D;
	--ink-850: #0A1128;
	--ink-800: #0D1631;
	--ink-700: #16214A;
	--ink-600: #24305E;

	--brand: #3AA9F9;
	--brand-2: #3A5AF9;
	--ice: #9BD9FF;
	--mint: #34D399;
	--coral: #FF6B81;
	--amber: #F59E0B;

	--text: #0B1330;
	--text-2: #465072;
	--text-3: #6B7594;
	--bg: #FFFFFF;
	--bg-soft: #F4F7FD;
	--line: #E3E8F4;
	--line-dark: rgba(148, 170, 255, .14);

	--grad: linear-gradient(135deg, #3AA9F9 0%, #3A5AF9 100%);
	--grad-text: linear-gradient(100deg, #1F8FE6 0%, #3A5AF9 70%, #6A4DF5 100%);
	--grad-text-dark: linear-gradient(100deg, #B5E4FF 0%, #5CB9FF 45%, #8E9BFF 100%);

	--radius-sm: 10px;
	--radius: 16px;
	--radius-lg: 24px;
	--radius-xl: 32px;
	--shadow-sm: 0 1px 2px rgba(11, 19, 48, .05), 0 2px 10px rgba(11, 19, 48, .04);
	--shadow: 0 14px 34px -14px rgba(11, 19, 48, .22);
	--shadow-lg: 0 34px 70px -28px rgba(11, 19, 48, .35);

	--font: 'Plus Jakarta Sans', system-ui, -apple-system, 'Segoe UI', Roboto, Arial, sans-serif;
	--serif: 'Instrument Serif', Georgia, 'Times New Roman', serif;
	--header-h: 78px;
	--container: 1200px;
	--ease: cubic-bezier(.2, .7, .2, 1);
}

/* ---------- 2. Temel ---------- */
*, *::before, *::after { box-sizing: border-box; }
html { scroll-behavior: smooth; scroll-padding-top: calc(var(--header-h) + 16px); -webkit-text-size-adjust: 100%; }
body {
	margin: 0;
	font-family: var(--font);
	font-size: 17px;
	line-height: 1.7;
	color: var(--text);
	background: var(--bg);
	-webkit-font-smoothing: antialiased;
	-moz-osx-font-smoothing: grayscale;
	text-rendering: optimizeLegibility;
	overflow-x: hidden;
}
img, svg, video { max-width: 100%; height: auto; }
img { display: block; }
a { color: var(--brand-2); text-decoration: none; transition: color .2s; }
h1, h2, h3, h4, h5, h6 { font-weight: 700; line-height: 1.2; color: inherit; }
p { margin: 0 0 1em; }
button { font-family: inherit; }
:focus-visible { outline: 2px solid var(--brand); outline-offset: 3px; border-radius: 6px; }
::selection { background: rgba(58, 169, 249, .25); }

.container { width: min(100% - 40px, var(--container)); margin-inline: auto; }
.container--narrow { max-width: 880px; }
.sr-only { position: absolute !important; width: 1px; height: 1px; padding: 0; margin: -1px; overflow: hidden; clip: rect(0, 0, 0, 0); white-space: nowrap; border: 0; }
.skip-link { position: absolute; left: 16px; top: -60px; z-index: 1000; padding: 10px 16px; border-radius: 10px; background: #fff; color: var(--text); font-weight: 700; }
.skip-link:focus { top: 16px; }
.muted { color: var(--text-3); }
.ico { width: 20px; height: 20px; flex: none; }

/* ---------- 3. Butonlar ve küçük bileşenler ---------- */
.btn {
	display: inline-flex; align-items: center; justify-content: center; gap: 10px;
	height: 48px; padding: 0 22px; border-radius: 999px; border: 1px solid transparent;
	font-size: 15.5px; font-weight: 650; letter-spacing: -.005em; line-height: 1;
	white-space: nowrap; cursor: pointer; text-decoration: none;
	transition: transform .25s var(--ease), box-shadow .25s var(--ease), background-color .25s, color .25s, border-color .25s;
}
.btn .ico { width: 18px; height: 18px; transition: transform .25s var(--ease); }
.btn:hover .ico:last-child { transform: translateX(2px); }
.btn--lg { height: 56px; padding: 0 28px; font-size: 16.5px; }
.btn--sm { height: 40px; padding: 0 16px; font-size: 14px; }
.btn--block { width: 100%; }
.btn--primary { background: var(--grad); color: #fff; box-shadow: 0 12px 26px -12px rgba(58, 90, 249, .75), inset 0 1px 0 rgba(255, 255, 255, .25); }
.btn--primary:hover { color: #fff; transform: translateY(-2px); box-shadow: 0 18px 34px -12px rgba(58, 90, 249, .85), inset 0 1px 0 rgba(255, 255, 255, .25); }
.btn--ghost { background: rgba(255, 255, 255, .06); color: #fff; border-color: rgba(255, 255, 255, .18); -webkit-backdrop-filter: blur(8px); backdrop-filter: blur(8px); }
.btn--ghost:hover { color: #fff; background: rgba(255, 255, 255, .12); border-color: rgba(255, 255, 255, .3); }
.btn--ghost-dark { background: #fff; color: var(--text); border-color: var(--line); }
.btn--ghost-dark:hover { color: var(--brand-2); border-color: #BFCBF0; box-shadow: var(--shadow-sm); }
.btn--light { background: #fff; color: var(--ink-900); box-shadow: 0 14px 30px -14px rgba(3, 7, 20, .6); }
.btn--light:hover { color: var(--brand-2); transform: translateY(-2px); }
.btn--outline-light { color: #fff; border-color: rgba(255, 255, 255, .32); }
.btn--outline-light:hover { color: #fff; background: rgba(255, 255, 255, .1); border-color: rgba(255, 255, 255, .5); }
.btn--text { color: #CFE0FF; padding: 0 10px; }
.btn--text:hover { color: #fff; }
.btn--glow { background: rgba(58, 169, 249, .12); color: #E1F2FF; border-color: rgba(58, 169, 249, .45); box-shadow: 0 0 28px -8px rgba(58, 169, 249, .7); }
.btn--glow:hover { color: #fff; background: rgba(58, 169, 249, .22); }
.btn__play { display: inline-grid; place-items: center; width: 28px; height: 28px; margin-left: -8px; border-radius: 50%; background: #fff; color: var(--ink-900); }
.btn__play .ico { width: 12px; height: 12px; margin-left: 2px; }

.link-btn { display: inline-flex; align-items: center; gap: 6px; padding: 0; border: 0; background: none; color: var(--brand-2); font: inherit; font-size: 14.5px; font-weight: 700; cursor: pointer; }
.link-btn .ico { width: 16px; height: 16px; transition: transform .25s var(--ease); }
.link-btn:hover { color: var(--text); }

.pulse-dot { position: relative; display: inline-block; flex: none; width: 8px; height: 8px; border-radius: 50%; background: var(--brand); }
.pulse-dot::after { content: ""; position: absolute; inset: -4px; border-radius: 50%; border: 2px solid currentColor; color: var(--brand); opacity: 0; animation: pulse 2s infinite; }
.pulse-dot--green { background: var(--mint); }
.pulse-dot--green::after { color: var(--mint); }
.pulse-dot--red { background: #FF4D6D; }
.pulse-dot--red::after { color: #FF4D6D; }
@keyframes pulse { 0% { transform: scale(.6); opacity: .9; } 100% { transform: scale(2); opacity: 0; } }

.tag { display: inline-flex; align-items: center; gap: 6px; height: 26px; padding: 0 11px; border-radius: 999px; background: #EEF3FF; color: var(--brand-2); font-size: 12.5px; font-weight: 700; letter-spacing: .01em; }
.tag .ico { width: 13px; height: 13px; }
.tag--doc, .tag--next { background: #FFF4E5; color: #B45309; }
.tag--star { background: rgba(58, 169, 249, .14); color: #0B6FB8; }
.tag--light { background: rgba(255, 255, 255, .12); color: #fff; }
a.tag:hover { background: var(--brand-2); color: #fff; }

.pill {
	display: inline-flex; align-items: center; gap: 10px; margin: 0;
	padding: 8px 16px 8px 13px; border-radius: 999px;
	border: 1px solid rgba(148, 170, 255, .25); background: rgba(255, 255, 255, .05);
	color: #D3E2FF; font-size: 13.5px; font-weight: 600; letter-spacing: .02em;
	-webkit-backdrop-filter: blur(8px); backdrop-filter: blur(8px);
}

/* ---------- 4. Bölüm yapıları ---------- */
.section { position: relative; padding: clamp(84px, 10vw, 140px) 0; }
.section--tight { padding: clamp(52px, 6vw, 88px) 0; }
.section--soft { background: var(--bg-soft); }
.section--light { background: #fff; }
.section--dark { background: var(--ink-900); color: #E6EDFF; overflow: hidden; }

.section-head { margin-bottom: clamp(40px, 5vw, 64px); }
.section-head--center { text-align: center; }
.section-head--center .section-lead { margin-inline: auto; }
.section-head--split { display: flex; flex-wrap: wrap; align-items: flex-end; justify-content: space-between; gap: 24px 48px; }
.section-head--split .section-lead { max-width: 520px; margin: 0; }

.eyebrow { display: inline-flex; align-items: center; gap: 12px; color: var(--brand-2); font-size: 13px; font-weight: 800; letter-spacing: .18em; text-transform: uppercase; }
.eyebrow::before { content: ""; width: 26px; height: 2px; border-radius: 2px; background: var(--grad); }
.eyebrow--light { color: var(--ice); }
.section-head--center .eyebrow::after { content: ""; width: 26px; height: 2px; border-radius: 2px; background: var(--grad); }

.section-title { margin: 16px 0 0; color: var(--text); font-size: clamp(34px, 4.2vw, 56px); line-height: 1.06; letter-spacing: -.035em; font-weight: 750; }
.section-title--light { color: #fff; }
.section-title--sm { font-size: clamp(26px, 3vw, 36px); margin: 0; }
.section-title em, .hero__title em, .page-hero__title em {
	font-family: var(--serif); font-style: italic; font-weight: 400; font-size: 1.1em; letter-spacing: -.01em;
	padding-right: .06em; background: var(--grad-text); -webkit-background-clip: text; background-clip: text; color: transparent;
}
.section-title--light em, .hero__title em { background-image: var(--grad-text-dark); }
.section-lead { margin: 20px 0 0; max-width: 660px; color: var(--text-2); font-size: clamp(17px, 1.3vw, 19.5px); line-height: 1.7; }
.section-lead--light { color: rgba(214, 225, 255, .74); }

/* Görünür olunca beliren öğeler (yalnızca JS açıkken) */
.js [data-reveal] { opacity: 0; transform: translateY(26px); transition: opacity .9s var(--ease), transform .9s var(--ease); transition-delay: calc(var(--d, 0) * 90ms); }
.js [data-reveal].is-in { opacity: 1; transform: none; }

/* ---------- 5. Üst menü ---------- */
.site-header { position: fixed; inset: 0 0 auto; z-index: 100; height: var(--header-h); isolation: isolate; }
/* Arka plan ayrı katmanda: backdrop-filter doğrudan üst menüye verilirse mobil menü (position: fixed) onun içine hapsolur. */
.site-header::before { content: ""; position: absolute; inset: 0; z-index: -1; border-bottom: 1px solid transparent; transition: background-color .35s, border-color .35s; }
.site-header.is-scrolled::before, .nav-open .site-header::before { background: rgba(6, 11, 29, .93); border-bottom-color: rgba(148, 170, 255, .12); -webkit-backdrop-filter: saturate(1.4) blur(16px); backdrop-filter: saturate(1.4) blur(16px); }
.admin-bar .site-header { top: 32px; }
.site-header__inner { display: flex; align-items: center; gap: 24px; height: 100%; }
.brand { display: inline-flex; align-items: center; flex: none; }
.brand img { width: auto; height: 46px; }

.nav { flex: 1; display: flex; justify-content: center; }
.nav__list { display: flex; align-items: center; gap: 2px; margin: 0; padding: 0; list-style: none; }
.nav__list > li { position: relative; }
.nav__list a { display: flex; align-items: center; gap: 7px; height: 40px; padding: 0 13px; border-radius: 999px; color: rgba(226, 234, 255, .78); font-size: 14.5px; font-weight: 600; white-space: nowrap; transition: color .2s, background-color .2s; }
.nav__list a:hover, .nav__list li.is-current > a, .nav__list li.current-menu-item > a { color: #fff; background: rgba(255, 255, 255, .07); }
.nav__list > .menu-item-has-children > a::after { content: ""; width: 6px; height: 6px; border-right: 1.7px solid currentColor; border-bottom: 1.7px solid currentColor; transform: translateY(-2px) rotate(45deg); opacity: .7; }
.nav__list .sub-menu { position: absolute; left: 50%; top: calc(100% + 12px); min-width: 230px; margin: 0; padding: 8px; list-style: none; border-radius: 18px; background: rgba(10, 17, 40, .97); border: 1px solid rgba(148, 170, 255, .16); box-shadow: 0 30px 60px -20px rgba(0, 0, 0, .6); opacity: 0; visibility: hidden; transform: translate(-50%, 8px); transition: opacity .2s, transform .2s var(--ease), visibility .2s; }
.nav__list .sub-menu::before { content: ""; position: absolute; left: 0; right: 0; top: -14px; height: 14px; }
.nav__list li:hover > .sub-menu, .nav__list li:focus-within > .sub-menu { opacity: 1; visibility: visible; transform: translate(-50%, 0); }
.nav__list .sub-menu a { height: auto; padding: 11px 14px; border-radius: 12px; }
.nav__mobile-extra { display: none; }

.site-header__actions { display: flex; align-items: center; gap: 12px; flex: none; margin-left: auto; }
.lang { display: flex; flex-direction: row-reverse; align-items: center; gap: 2px; padding: 3px; border-radius: 999px; border: 1px solid rgba(148, 170, 255, .2); background: rgba(255, 255, 255, .04); }
.lang a.glink { display: inline-flex; align-items: center; justify-content: center; min-width: 38px; height: 30px; padding: 0 10px; border-radius: 999px; color: #B9C7EC; font-size: 12.5px; font-weight: 800; letter-spacing: .05em; text-decoration: none; }
.lang a.glink img { display: none; }
.lang a.glink[title="English"]::after { content: "EN"; }
.lang a.glink[title="Turkish"]::after { content: "TR"; }
.lang a.glink:hover { color: #fff; background: rgba(255, 255, 255, .08); }
.lang a.glink.is-active { background: #fff; color: var(--ink-900); }
.lang br { display: none; }

.nav-toggle { display: none; place-items: center; width: 46px; height: 46px; border-radius: 14px; border: 1px solid rgba(148, 170, 255, .22); background: rgba(255, 255, 255, .05); color: #fff; cursor: pointer; }
.nav-toggle__bars { position: relative; display: block; width: 20px; height: 14px; }
.nav-toggle__bars span { position: absolute; left: 0; width: 100%; height: 2px; border-radius: 2px; background: currentColor; transition: transform .3s var(--ease), opacity .2s, top .3s var(--ease); }
.nav-toggle__bars span:nth-child(1) { top: 0; }
.nav-toggle__bars span:nth-child(2) { top: 6px; width: 70%; }
.nav-toggle__bars span:nth-child(3) { top: 12px; }
.nav-open .nav-toggle__bars span:nth-child(1) { top: 6px; transform: rotate(45deg); }
.nav-open .nav-toggle__bars span:nth-child(2) { opacity: 0; }
.nav-open .nav-toggle__bars span:nth-child(3) { top: 6px; transform: rotate(-45deg); }

/* ---------- 6. Giriş (hero) ---------- */
.hero { position: relative; isolation: isolate; overflow: hidden; min-height: 100vh; padding: calc(var(--header-h) + clamp(48px, 7vw, 96px)) 0 56px; background: radial-gradient(120% 90% at 50% -10%, #0E1C4D 0%, var(--ink-900) 55%, var(--ink-950) 100%); color: #fff; }
.hero__waves { position: absolute; inset: 0; z-index: -1; width: 100%; height: 100%; }
.hero__grid { position: absolute; inset: 0; z-index: -2; background-image: linear-gradient(rgba(255, 255, 255, .045) 1px, transparent 1px), linear-gradient(90deg, rgba(255, 255, 255, .045) 1px, transparent 1px); background-size: 64px 64px; -webkit-mask-image: radial-gradient(ellipse 75% 60% at 50% 25%, #000 30%, transparent 100%); mask-image: radial-gradient(ellipse 75% 60% at 50% 25%, #000 30%, transparent 100%); }
.hero__glow { position: absolute; z-index: -2; border-radius: 50%; filter: blur(10px); pointer-events: none; }
.hero__glow--a { width: 780px; height: 780px; left: -260px; top: -300px; background: radial-gradient(circle, rgba(58, 90, 249, .5), transparent 62%); animation: drift 16s ease-in-out infinite alternate; }
.hero__glow--b { width: 640px; height: 640px; right: -200px; top: 12%; background: radial-gradient(circle, rgba(58, 169, 249, .38), transparent 62%); animation: drift 20s ease-in-out infinite alternate-reverse; }
@keyframes drift { to { transform: translate(60px, 40px) scale(1.08); } }

.hero__inner { display: grid; grid-template-columns: minmax(0, 1.05fr) minmax(0, .95fr); gap: clamp(40px, 5vw, 72px); align-items: center; }
.hero__title { margin: 24px 0 0; font-size: clamp(42px, 5.6vw, 76px); line-height: 1.02; letter-spacing: -.045em; font-weight: 750; }
.hero__company { display: block; margin-bottom: 20px; color: var(--ice); font-size: clamp(14px, 1.2vw, 16px); font-weight: 700; letter-spacing: .22em; text-transform: uppercase; }
.hero__lead { margin: 26px 0 0; max-width: 560px; color: rgba(222, 232, 255, .76); font-size: clamp(17px, 1.35vw, 20px); line-height: 1.65; }
.hero__actions { display: flex; flex-wrap: wrap; align-items: center; gap: 12px; margin-top: 36px; }
.hero__partners { display: flex; flex-wrap: wrap; align-items: center; gap: 14px 24px; margin-top: 52px; }
.hero__partners-label { color: #7F90C2; font-size: 12.5px; font-weight: 700; letter-spacing: .16em; text-transform: uppercase; }
.hero__partners ul { display: flex; align-items: center; gap: 28px; margin: 0; padding: 0; list-style: none; }
.hero__partners img { width: auto; height: 38px; opacity: .8; transition: opacity .3s; }
.hero__partners img:hover { opacity: 1; }

.hero__visual { position: relative; }
.device { position: relative; padding: 14px; border-radius: 24px; background: linear-gradient(180deg, rgba(24, 36, 80, .78), rgba(9, 15, 36, .9)); border: 1px solid rgba(148, 170, 255, .22); box-shadow: 0 50px 90px -34px rgba(0, 0, 0, .7), 0 0 90px -24px rgba(58, 169, 249, .45), inset 0 1px 0 rgba(255, 255, 255, .06); -webkit-backdrop-filter: blur(16px); backdrop-filter: blur(16px); transform: perspective(1600px) rotateY(-9deg) rotateX(4deg); transition: transform .8s var(--ease); }
.hero__visual:hover .device { transform: perspective(1600px) rotateY(-3deg) rotateX(1deg); }
.device__bar { display: flex; align-items: center; gap: 12px; padding: 4px 6px 12px; color: #B9C7EC; font-size: 12.5px; }
.device__dots { display: inline-flex; gap: 6px; }
.device__dots i { width: 10px; height: 10px; border-radius: 50%; background: #FF6B81; opacity: .85; }
.device__dots i:nth-child(2) { background: #FBBF24; }
.device__dots i:nth-child(3) { background: #34D399; }
.device__name { color: #E6EDFF; font-weight: 700; }
.device__status { display: inline-flex; align-items: center; gap: 8px; margin-left: auto; padding: 4px 11px; border-radius: 999px; background: rgba(52, 211, 153, .1); color: #8FF0C8; font-weight: 700; }
.device__tabs { display: flex; gap: 6px; padding: 0 6px 10px; }
.device__tabs span { padding: 5px 11px; border-radius: 8px; color: #8394C4; font-size: 12px; font-weight: 700; }
.device__tabs .is-active { background: rgba(58, 169, 249, .16); color: #D2EBFF; }
.device__chart { padding: 12px 10px 8px; border-radius: 16px; background: rgba(3, 7, 20, .6); border: 1px solid rgba(148, 170, 255, .12); }
.audiogram { display: block; width: 100%; height: auto; overflow: visible; }
.audiogram__grid line { stroke: rgba(148, 170, 255, .15); stroke-width: 1; }
.audiogram__grid line.minor { stroke: rgba(148, 170, 255, .06); }
.audiogram__grid text { fill: #7082B6; font-family: var(--font); font-size: 9.5px; font-weight: 700; }
.audiogram__normal { fill: rgba(52, 211, 153, .07); }
.audiogram__sweep { opacity: 0; }
.audiogram__line { fill: none; stroke-width: 2; stroke-linejoin: round; stroke-linecap: round; stroke-dasharray: 620; stroke-dashoffset: 620; }
.audiogram__line--r { stroke: var(--coral); filter: drop-shadow(0 0 6px rgba(255, 107, 129, .55)); }
.audiogram__line--l { stroke: var(--brand); filter: drop-shadow(0 0 6px rgba(58, 169, 249, .55)); }
.audiogram__pt { opacity: 0; transform: scale(.3); transform-box: fill-box; transform-origin: center; }
.audiogram__pt circle { fill: rgba(255, 107, 129, .14); stroke: var(--coral); stroke-width: 2.2; }
.audiogram__pt path { fill: none; stroke: var(--brand); stroke-width: 2.4; stroke-linecap: round; }
.is-playing .audiogram__pt { animation: agPop .55s cubic-bezier(.2, .9, .3, 1.4) forwards; animation-delay: calc(var(--i) * .7s + .3s); }
.is-playing .audiogram__pt--l { animation-delay: calc(var(--i) * .7s + .62s); }
.is-playing .audiogram__line--r { animation: agDraw 4.9s linear .3s forwards; }
.is-playing .audiogram__line--l { animation: agDraw 4.9s linear .62s forwards; }
.is-playing .audiogram__sweep { opacity: 1; animation: agSweep 4.9s linear .3s forwards; }
.is-done .audiogram__sweep { opacity: 0; transition: opacity .5s; }
@keyframes agPop { to { opacity: 1; transform: none; } }
@keyframes agDraw { to { stroke-dashoffset: 0; } }
@keyframes agSweep { from { transform: translateX(23px); } to { transform: translateX(299px); } }
.device__legend { display: flex; gap: 16px; padding: 8px 6px 2px; color: #9AAAD6; font-size: 11.5px; font-weight: 600; }
.device__legend i { display: inline-block; width: 14px; height: 3px; margin-right: 5px; border-radius: 2px; vertical-align: middle; }
.device__legend .lg-r { background: var(--coral); }
.device__legend .lg-l { background: var(--brand); }
.device__legend .muted { margin-left: auto; color: #6A7BAE; }
.device__readouts { display: grid; grid-template-columns: repeat(3, 1fr); gap: 10px; margin-top: 12px; }
.device__readouts div { padding: 10px 12px; border-radius: 12px; background: rgba(255, 255, 255, .04); border: 1px solid rgba(148, 170, 255, .12); }
.device__readouts span { display: block; color: #7F90C2; font-size: 11px; font-weight: 700; letter-spacing: .08em; text-transform: uppercase; }
.device__readouts strong { display: block; margin-top: 2px; color: #fff; font-size: 17px; font-variant-numeric: tabular-nums; letter-spacing: -.01em; }
.device__ai { display: flex; align-items: center; gap: 12px; margin-top: 12px; padding: 12px 14px; border-radius: 14px; background: linear-gradient(90deg, rgba(58, 90, 249, .22), rgba(58, 169, 249, .08)); border: 1px solid rgba(58, 169, 249, .25); }
.device__ai-icon { display: grid; place-items: center; width: 32px; height: 32px; border-radius: 10px; background: var(--grad); color: #fff; flex: none; }
.device__ai-icon .ico { width: 17px; height: 17px; }
.device__ai-text { flex: 1; color: #DCE8FF; font-size: 13.5px; font-weight: 600; }
.device__ai-bar { position: relative; width: 84px; height: 5px; border-radius: 5px; background: rgba(255, 255, 255, .1); overflow: hidden; flex: none; }
.device__ai-bar i { position: absolute; inset: 0 auto 0 0; width: 0; border-radius: inherit; background: var(--grad); }
.is-playing .device__ai-bar i { animation: aiBar 5.4s linear .3s forwards; }
.is-done .device__ai-bar i { width: 100%; background: var(--mint); animation: none; }
.is-done .device__ai-icon { background: linear-gradient(135deg, #34D399, #10B981); }
@keyframes aiBar { to { width: 100%; } }

.float-card { position: absolute; display: flex; align-items: center; gap: 12px; padding: 12px 16px 12px 12px; border-radius: 16px; background: rgba(12, 20, 46, .82); border: 1px solid rgba(148, 170, 255, .22); box-shadow: 0 24px 50px -20px rgba(0, 0, 0, .6); -webkit-backdrop-filter: blur(12px); backdrop-filter: blur(12px); color: #fff; animation: float 6s ease-in-out infinite; }
.float-card strong { display: block; font-size: 14px; }
.float-card small { display: block; color: #9AAAD6; font-size: 12px; }
.float-card__icon { display: grid; place-items: center; width: 36px; height: 36px; border-radius: 11px; background: var(--grad); flex: none; }
.float-card__icon .ico { width: 18px; height: 18px; }
.float-card__icon--green { background: linear-gradient(135deg, #34D399, #10B981); }
.float-card--a { left: 4%; top: -74px; }
.float-card--b { right: 2%; bottom: -74px; animation-delay: -3s; }
@keyframes float { 50% { transform: translateY(-10px); } }

.stats { display: grid; grid-template-columns: repeat(4, 1fr); margin: clamp(56px, 7vw, 88px) 0 0; border-radius: 24px; background: rgba(255, 255, 255, .035); border: 1px solid rgba(148, 170, 255, .14); -webkit-backdrop-filter: blur(10px); backdrop-filter: blur(10px); }
.stat { padding: 26px 28px; }
.stat + .stat { border-left: 1px solid rgba(148, 170, 255, .12); }
.stat__value { display: flex; align-items: baseline; gap: 6px; font-size: clamp(30px, 3vw, 44px); font-weight: 800; line-height: 1.1; letter-spacing: -.035em; font-variant-numeric: tabular-nums; background: linear-gradient(180deg, #fff 30%, #A9C6FF); -webkit-background-clip: text; background-clip: text; color: transparent; }
.stat__value small { font-size: .42em; font-weight: 700; letter-spacing: 0; -webkit-text-fill-color: #8EA3D8; }
.stat__label { margin: 6px 0 0; color: #9DAEDB; font-size: 14px; line-height: 1.5; }

/* ---------- 7. Yatırımcı duyuruları ---------- */
.duyurular__grid { display: grid; grid-template-columns: minmax(0, 1fr) 370px; gap: 32px; align-items: start; }
.duyuru-list { display: flex; flex-direction: column; gap: 16px; }
.duyuru { display: grid; grid-template-columns: 92px minmax(0, 1fr); gap: 24px; padding: 28px; border-radius: var(--radius-lg); background: #fff; border: 1px solid var(--line); box-shadow: var(--shadow-sm); transition: box-shadow .3s, border-color .3s; }
.duyuru:hover { border-color: #CFD9F4; box-shadow: var(--shadow); }
.duyuru__date { display: flex; flex-direction: column; align-items: center; justify-content: center; height: 92px; border-radius: 20px; background: linear-gradient(160deg, #EEF4FF, #E0E9FF); color: var(--brand-2); text-align: center; }
.duyuru__day { font-size: 34px; font-weight: 800; line-height: 1; letter-spacing: -.04em; }
.duyuru__month { margin-top: 6px; color: #5A6DB5; font-size: 11.5px; font-weight: 800; letter-spacing: .08em; text-transform: uppercase; }
.duyuru__meta { display: flex; flex-wrap: wrap; align-items: center; gap: 10px; margin: 0 0 6px; color: var(--text-3); font-size: 13.5px; font-weight: 700; }
.duyuru__title { margin: 0 0 10px; font-size: 20px; line-height: 1.35; letter-spacing: -.015em; }
.duyuru__title a { color: var(--text); }
.duyuru__title a:hover { color: var(--brand-2); }
.duyuru__body { color: var(--text-2); font-size: 15.5px; line-height: 1.75; }
.duyuru__body p:last-child { margin-bottom: 0; }
.duyuru--long:not(.is-open) .duyuru__body { max-height: 7.2em; overflow: hidden; -webkit-mask-image: linear-gradient(#000 50%, transparent); mask-image: linear-gradient(#000 50%, transparent); }
.duyuru__actions { display: flex; flex-wrap: wrap; align-items: center; gap: 12px 20px; margin-top: 16px; }
.duyuru__actions .btn .ico { width: 16px; height: 16px; }
.when-open { display: none; }
.is-open .when-open { display: inline; }
.is-open .when-closed { display: none; }
.duyuru.is-open .duyuru__toggle .ico { transform: rotate(180deg); }
.empty { padding: 28px; border-radius: 20px; background: var(--bg-soft); color: var(--text-3); }

.ir-card { position: sticky; top: calc(var(--header-h) + 24px); overflow: hidden; padding: 28px; border-radius: var(--radius-lg); background: linear-gradient(165deg, var(--ink-700), var(--ink-900) 70%); color: #E6EDFF; box-shadow: var(--shadow-lg); }
.ir-card::before { content: ""; position: absolute; width: 260px; height: 260px; right: -110px; top: -120px; border-radius: 50%; background: radial-gradient(circle, rgba(58, 169, 249, .45), transparent 65%); pointer-events: none; }
.ir-card__head { position: relative; display: flex; align-items: center; gap: 14px; margin-bottom: 22px; }
.ir-card__head h3 { margin: 0; color: #fff; font-size: 19px; }
.ir-card__head p { margin: 0; color: #9FB0DC; font-size: 13.5px; }
.ir-card__icon { display: grid; place-items: center; width: 50px; height: 50px; border-radius: 15px; background: var(--grad); color: #fff; box-shadow: 0 12px 24px -10px rgba(58, 90, 249, .9); flex: none; }
.ir-card__icon .ico { width: 24px; height: 24px; }
.ir-card__text { color: #B9C7EC; font-size: 15px; }
.ir-links { position: relative; display: flex; flex-direction: column; gap: 8px; margin: 0 0 20px; padding: 0; list-style: none; }
.ir-links a { display: flex; align-items: center; gap: 14px; padding: 13px 14px; border-radius: 15px; background: rgba(255, 255, 255, .04); border: 1px solid rgba(148, 170, 255, .12); color: #E6EDFF; transition: background-color .25s, border-color .25s, transform .25s var(--ease); }
.ir-links a:hover { background: rgba(58, 169, 249, .12); border-color: rgba(58, 169, 249, .4); transform: translateX(3px); }
.ir-links strong { display: block; color: #fff; font-size: 14.5px; line-height: 1.35; }
.ir-links small { display: block; color: #93A4D4; font-size: 12.5px; line-height: 1.4; }
.ir-links__icon { display: grid; place-items: center; width: 40px; height: 40px; border-radius: 12px; background: rgba(58, 169, 249, .14); color: #8FD0FF; flex: none; }
.ir-links__icon .ico { width: 19px; height: 19px; }
.ir-links__arrow { width: 16px !important; height: 16px !important; margin-left: auto; color: #7D8FC4; }
.ir-card .btn + .btn { margin-top: 10px; }
.ir-card .btn--ghost-dark { background: transparent; color: #fff; border-color: rgba(255, 255, 255, .2); }

/* ---------- 8. Ürün: Otonom Odyometre ---------- */
.product, .app, .press { overflow: hidden; }
.product__grid { display: grid; grid-template-columns: minmax(0, 1fr) minmax(0, 1.12fr); gap: clamp(40px, 5vw, 72px); align-items: center; }
.product__subhead { display: flex; align-items: center; gap: 12px; margin: 0 0 20px; color: var(--text-3); font-size: 13.5px; font-weight: 800; letter-spacing: .1em; text-transform: uppercase; }
.dot { display: inline-block; width: 8px; height: 8px; border-radius: 50%; }
.dot--warn { background: var(--amber); box-shadow: 0 0 0 5px rgba(245, 158, 11, .16); }
.problem-list { display: flex; flex-direction: column; gap: 14px; margin: 0; padding: 0; list-style: none; }
.problem { display: flex; gap: 18px; padding: 22px 24px; border-radius: var(--radius-lg); background: var(--bg-soft); border: 1px solid var(--line); transition: background-color .3s, box-shadow .3s; }
.problem:hover { background: #fff; box-shadow: var(--shadow); }
.problem__icon { display: grid; place-items: center; width: 48px; height: 48px; border-radius: 15px; background: #fff; color: #D97706; box-shadow: var(--shadow-sm); flex: none; }
.problem h4 { margin: 0 0 6px; font-size: 17.5px; letter-spacing: -.01em; }
.problem p { margin: 0; color: var(--text-2); font-size: 15.5px; line-height: 1.7; }
.product__visual { position: relative; }
.product__visual::before { content: ""; position: absolute; inset: -8% -6% -10% 10%; z-index: -1; border-radius: 48px; background: radial-gradient(circle at 70% 30%, rgba(58, 169, 249, .28), transparent 60%), radial-gradient(circle at 20% 80%, rgba(58, 90, 249, .22), transparent 60%); }
.window { overflow: hidden; border-radius: 18px; background: #fff; border: 1px solid var(--line); box-shadow: 0 50px 90px -34px rgba(11, 19, 48, .45); }
.window__bar { display: flex; align-items: center; gap: 7px; height: 40px; padding: 0 16px; border-bottom: 1px solid var(--line); background: #F2F5FC; color: var(--text-3); font-size: 12.5px; font-weight: 600; }
.window__bar i { width: 11px; height: 11px; border-radius: 50%; background: #FF6B81; }
.window__bar i:nth-child(2) { background: #FBBF24; }
.window__bar i:nth-child(3) { background: #34D399; }
.window__bar span { margin-left: 10px; }
.window img { width: 100%; }
.product__badge { position: absolute; left: -30px; bottom: -34px; display: flex; align-items: center; gap: 14px; padding: 10px 20px 10px 10px; border-radius: 20px; background: #fff; border: 1px solid var(--line); box-shadow: var(--shadow-lg); }
.product__badge img { width: 92px; height: auto; border-radius: 12px; }
.product__badge strong { display: block; font-size: 15px; }
.product__badge small { display: block; color: var(--text-3); font-size: 13px; }

.solution { position: relative; overflow: hidden; display: grid; grid-template-columns: auto minmax(0, 1fr) auto; gap: 28px 36px; align-items: center; margin-top: clamp(64px, 7vw, 96px); padding: clamp(28px, 4vw, 44px); border-radius: var(--radius-xl); background: radial-gradient(120% 160% at 0% 0%, #1D3A9B 0%, var(--ink-900) 58%); color: #E6EDFF; box-shadow: var(--shadow-lg); }
.solution::after { content: ""; position: absolute; right: -80px; top: -80px; width: 320px; height: 320px; border-radius: 50%; background: repeating-radial-gradient(circle, rgba(255, 255, 255, .07) 0 1px, transparent 1px 22px); pointer-events: none; }
.solution__icon { display: grid; place-items: center; width: 68px; height: 68px; border-radius: 22px; background: var(--grad); color: #fff; box-shadow: 0 0 50px rgba(58, 169, 249, .55); }
.solution__icon .ico { width: 32px; height: 32px; }
.solution__text p { margin: 10px 0 0; color: #fff; font-size: clamp(18px, 1.6vw, 22px); font-weight: 500; line-height: 1.5; }
.solution__points { position: relative; display: flex; flex-direction: column; gap: 10px; margin: 0; padding: 0; list-style: none; }
.solution__points li { display: flex; align-items: center; gap: 10px; font-size: 15px; font-weight: 700; white-space: nowrap; }
.solution__points .ico { width: 22px; height: 22px; padding: 4px; border-radius: 50%; background: rgba(52, 211, 153, .18); color: #6EE7B7; }

/* ---------- 9. Biz Kimiz ---------- */
.about__bg { position: absolute; inset: 0; pointer-events: none; background: radial-gradient(55% 60% at 95% 5%, rgba(58, 90, 249, .3), transparent 60%), radial-gradient(45% 55% at 0% 100%, rgba(58, 169, 249, .2), transparent 60%); }
.about__grid { position: relative; display: grid; grid-template-columns: minmax(0, 1fr) minmax(0, 1fr); gap: clamp(40px, 5vw, 72px); align-items: center; }
.about__lead { margin: 26px 0 18px; color: #fff; font-size: clamp(19px, 1.6vw, 23px); font-weight: 600; line-height: 1.5; }
.about__copy p:not(.about__lead) { color: rgba(214, 225, 255, .74); }
.facts { display: grid; grid-template-columns: repeat(3, 1fr); gap: 12px; margin: 18px 0 0; padding: 0; list-style: none; }
.facts li { padding: 16px; border-radius: 18px; background: rgba(255, 255, 255, .04); border: 1px solid rgba(148, 170, 255, .14); }
.facts__k { display: block; color: var(--ice); font-size: 12px; font-weight: 800; letter-spacing: .1em; text-transform: uppercase; }
.facts__v { display: block; margin-top: 6px; color: #DFE7FF; font-size: 14px; line-height: 1.45; }
.journey { position: relative; display: flex; flex-wrap: wrap; justify-content: center; gap: 10px; margin: clamp(48px, 6vw, 72px) 0 0; padding: 0; list-style: none; }
.journey li { padding: 10px 18px; border-radius: 999px; background: rgba(255, 255, 255, .035); border: 1px solid rgba(148, 170, 255, .2); color: #CDD9FB; font-size: 14px; font-weight: 600; }

/* ---------- 10. Video bileşeni ---------- */
.video { position: relative; overflow: hidden; aspect-ratio: 16 / 9; border-radius: var(--radius-lg); background: #000; box-shadow: 0 34px 70px -26px rgba(0, 0, 0, .55); }
.video__btn { position: absolute; inset: 0; display: block; width: 100%; padding: 0; border: 0; background: none; cursor: pointer; }
.video__btn img { width: 100%; height: 100%; object-fit: cover; transition: transform .7s var(--ease); }
.video__btn:hover img { transform: scale(1.04); }
.video__shade { position: absolute; inset: 0; background: linear-gradient(180deg, rgba(3, 7, 20, .05), rgba(3, 7, 20, .78)); }
.video__play { position: absolute; left: 50%; top: 50%; display: grid; place-items: center; width: 80px; height: 80px; border-radius: 50%; background: rgba(255, 255, 255, .96); color: var(--brand-2); box-shadow: 0 0 0 12px rgba(255, 255, 255, .16), 0 22px 44px rgba(0, 0, 0, .45); transform: translate(-50%, -50%); transition: transform .35s var(--ease), box-shadow .35s; }
.video__play .ico { width: 30px; height: 30px; margin-left: 4px; }
.video__btn:hover .video__play { transform: translate(-50%, -50%) scale(1.08); box-shadow: 0 0 0 18px rgba(255, 255, 255, .14), 0 22px 44px rgba(0, 0, 0, .45); }
.video__title { position: absolute; left: 24px; right: 24px; bottom: 20px; color: #fff; font-size: 15px; font-weight: 700; text-align: left; text-shadow: 0 2px 14px rgba(0, 0, 0, .55); }
.video iframe { position: absolute; inset: 0; width: 100%; height: 100%; border: 0; }
.video--glow { box-shadow: 0 0 0 1px rgba(148, 170, 255, .22), 0 44px 90px -30px rgba(58, 169, 249, .5); }
.video--xl .video__play { width: 100px; height: 100px; }
.video--xl .video__play .ico { width: 36px; height: 36px; }
.video--xl .video__title { font-size: clamp(16px, 1.6vw, 22px); left: 32px; bottom: 28px; }

/* ---------- 11. Yol haritası ---------- */
.timeline { position: relative; display: grid; grid-template-columns: 1fr 1fr; column-gap: 104px; row-gap: 0; max-width: 1040px; margin: 0 auto; padding: 0; list-style: none; }
.timeline::before { content: ""; position: absolute; left: 50%; top: 0; bottom: 0; width: 2px; transform: translateX(-50%); background: linear-gradient(180deg, transparent 0, var(--brand) 3%, var(--brand-2) 82%, #CBD5F0 90%, transparent 100%); }
.timeline__item { position: relative; padding-bottom: 22px; }
.timeline__item.is-right { margin-top: 72px; margin-bottom: -72px; }
.timeline__node { position: absolute; top: 20px; z-index: 1; display: grid; place-items: center; width: 32px; height: 32px; border-radius: 50%; background: #fff; border: 2px solid var(--brand); color: var(--brand-2); }
.timeline__node .ico { width: 15px; height: 15px; }
.is-left .timeline__node { right: -68px; }
.is-right .timeline__node { left: -68px; }
.is-done .timeline__node { background: var(--grad); border-color: transparent; color: #fff; box-shadow: 0 0 0 6px rgba(58, 169, 249, .16); }
.is-next .timeline__node { border-style: dashed; border-color: var(--amber); color: #D97706; }
.timeline__card { position: relative; padding: 20px 24px; border-radius: 20px; background: #fff; border: 1px solid var(--line); box-shadow: var(--shadow-sm); transition: transform .35s var(--ease), box-shadow .35s; }
.timeline__card:hover { transform: translateY(-3px); box-shadow: var(--shadow); }
.is-left .timeline__card { text-align: right; }
.timeline__card::before { content: ""; position: absolute; top: 30px; width: 12px; height: 12px; background: inherit; border: inherit; transform: rotate(45deg); }
.is-left .timeline__card::before { right: -7px; border-left: 0; border-bottom: 0; }
.is-right .timeline__card::before { left: -7px; border-right: 0; border-top: 0; }
.is-highlight .timeline__card { background: linear-gradient(160deg, var(--ink-700), var(--ink-900)); border-color: transparent; box-shadow: 0 24px 44px -18px rgba(58, 90, 249, .6); }
.timeline__date { color: var(--brand-2); font-size: 13px; font-weight: 800; letter-spacing: .08em; text-transform: uppercase; }
.timeline__text { margin: 6px 0 0; color: var(--text); font-size: 16px; font-weight: 650; line-height: 1.45; }
.is-highlight .timeline__date { color: var(--ice); }
.is-highlight .timeline__text { color: #fff; }
.timeline .tag { margin-top: 10px; }
.is-highlight .tag--star { background: rgba(155, 217, 255, .16); color: var(--ice); }
.timeline--compact { display: block; max-width: none; }
.timeline--compact::before { left: 15px; }
.timeline--compact .timeline__item { margin: 0; padding: 0 0 18px 48px; }
.timeline--compact .timeline__item::before { content: ""; position: absolute; left: 8px; top: 6px; width: 16px; height: 16px; border-radius: 50%; background: var(--grad); }

/* ---------- 12. Yatırım ---------- */
.invest { overflow: hidden; background: linear-gradient(135deg, #081650 0%, #1432A8 46%, #1C6FDC 100%); color: #fff; }
.invest__bg { position: absolute; inset: 0; pointer-events: none; background: repeating-radial-gradient(circle at 88% 12%, rgba(255, 255, 255, .06) 0 1px, transparent 1px 46px); -webkit-mask-image: radial-gradient(circle at 88% 12%, #000, transparent 70%); mask-image: radial-gradient(circle at 88% 12%, #000, transparent 70%); }
.invest__grid { position: relative; display: grid; grid-template-columns: minmax(0, 1.1fr) minmax(0, .9fr); gap: clamp(40px, 5vw, 72px); align-items: center; }
.invest__big { display: flex; align-items: baseline; gap: 14px; margin: 14px 0 6px; font-size: clamp(92px, 12vw, 168px); font-weight: 800; line-height: .9; letter-spacing: -.06em; font-variant-numeric: tabular-nums; background: linear-gradient(180deg, #fff 35%, rgba(255, 255, 255, .35)); -webkit-background-clip: text; background-clip: text; color: transparent; }
.invest__big small { font-size: 18px; font-weight: 700; letter-spacing: .16em; text-transform: uppercase; -webkit-text-fill-color: #CFE0FF; }
.invest .section-title { margin-bottom: 22px; font-size: clamp(28px, 3.2vw, 42px); }
.invest__copy p { color: rgba(235, 242, 255, .86); }
.invest__copy a:not(.btn) { color: #fff; text-decoration: underline; text-decoration-color: rgba(255, 255, 255, .45); text-underline-offset: 3px; overflow-wrap: anywhere; }
.invest__highlight { color: #fff !important; font-size: 19px; font-weight: 700; }
.invest__actions { display: flex; flex-wrap: wrap; gap: 12px; margin-top: 30px; }
.cobrand { display: grid; grid-template-columns: 1fr auto 1fr; align-items: center; gap: 18px; padding: 36px 32px 26px; border-radius: 30px; background: #fff; color: var(--text); box-shadow: 0 44px 90px -34px rgba(3, 7, 20, .7); transition: transform .35s var(--ease); }
.cobrand:hover { transform: translateY(-4px); }
.cobrand__logo img { width: 100%; height: auto; max-height: 96px; object-fit: contain; }
.cobrand__x { color: #A2ADCB; }
.cobrand__x .ico { width: 18px; height: 18px; }
.cobrand__caption { grid-column: 1 / -1; margin: 10px 0 0; color: var(--text-3); font-size: 12.5px; font-weight: 800; letter-spacing: .12em; text-align: center; text-transform: uppercase; }
.invest__numbers { display: grid; grid-template-columns: 1fr 1fr; gap: 14px; margin: 16px 0 0; }
.invest__numbers div { padding: 20px 22px; border-radius: 22px; background: rgba(255, 255, 255, .1); border: 1px solid rgba(255, 255, 255, .18); -webkit-backdrop-filter: blur(10px); backdrop-filter: blur(10px); }
.invest__numbers dt { font-size: clamp(22px, 2.2vw, 30px); font-weight: 800; letter-spacing: -.02em; }
.invest__numbers dd { margin: 2px 0 0; color: #CFE0FF; font-size: 14px; }
.reports { position: relative; display: grid; grid-template-columns: 250px minmax(0, 1fr); gap: 44px; align-items: center; margin-top: clamp(64px, 7vw, 96px); padding: clamp(28px, 4vw, 48px); border-radius: var(--radius-xl); background: #fff; color: var(--text); box-shadow: 0 44px 90px -34px rgba(3, 7, 20, .6); scroll-margin-top: calc(var(--header-h) + 24px); }
.reports__art img { width: 100%; max-width: 230px; margin: auto; }
.reports__title { margin: 12px 0 14px; font-size: clamp(24px, 2.4vw, 32px); letter-spacing: -.02em; }
.reports__copy p { color: var(--text-2); font-size: 16px; }
.reports__copy p a { font-weight: 700; }

/* ---------- 13. DuyBul uygulaması ---------- */
.app__grid { display: grid; grid-template-columns: minmax(0, .9fr) minmax(0, 1.1fr); gap: clamp(48px, 6vw, 88px); align-items: center; }
.app__visual { position: relative; isolation: isolate; }
.app__visual::before { content: ""; position: absolute; inset: 7% -5% -5% 9%; z-index: -1; border-radius: 44px; background: var(--grad); opacity: .2; transform: rotate(4deg); }
.app__frame { overflow: hidden; border: 8px solid #fff; border-radius: 34px; box-shadow: 0 50px 90px -34px rgba(11, 19, 48, .45); transform: rotate(-2.5deg); transition: transform .6s var(--ease); }
.app__visual:hover .app__frame { transform: rotate(0); }
.app__platforms { position: absolute; right: -20px; bottom: 32px; display: flex; flex-direction: column; gap: 8px; }
.app__platforms span { display: inline-flex; align-items: center; gap: 8px; padding: 10px 15px; border-radius: 14px; background: #fff; box-shadow: var(--shadow); font-size: 14px; font-weight: 700; }
.app__platforms .ico { width: 18px; height: 18px; color: var(--brand-2); }
.app__kicker { margin: 12px 0 20px; color: var(--text-3); font-size: 14px; font-weight: 800; letter-spacing: .14em; text-transform: uppercase; }
.app__copy > p { color: var(--text-2); }
.skills-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 12px; margin: 26px 0; padding: 0; list-style: none; }
.skills-grid li { display: flex; flex-direction: column; gap: 12px; padding: 18px; border-radius: 20px; background: var(--bg-soft); border: 1px solid var(--line); font-size: 15px; font-weight: 700; line-height: 1.35; }
.skills-grid span { display: grid; place-items: center; width: 42px; height: 42px; border-radius: 13px; background: #fff; color: var(--brand-2); box-shadow: var(--shadow-sm); }
.app__actions { display: flex; flex-wrap: wrap; align-items: center; gap: 12px; margin-top: 24px; }
.store-btn { display: inline-flex; align-items: center; gap: 11px; height: 52px; padding: 0 20px 0 16px; border-radius: 15px; background: var(--ink-900); color: #fff; transition: transform .25s var(--ease), background-color .25s; }
.store-btn:hover { color: #fff; background: var(--ink-700); transform: translateY(-2px); }
.store-btn .ico { width: 22px; height: 22px; }
.store-btn span { display: flex; flex-direction: column; font-size: 15px; font-weight: 700; line-height: 1.15; }
.store-btn small { color: #AAB6D8; font-size: 11px; font-weight: 600; }

/* ---------- 14. Teknolojiler ---------- */
.tech { background: radial-gradient(90% 70% at 50% 0%, #0E1C4D 0%, var(--ink-900) 60%); }
.tech__grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 20px; }
.tech-card { position: relative; overflow: hidden; padding: 36px 30px 34px; border-radius: 26px; background: linear-gradient(180deg, rgba(255, 255, 255, .055), rgba(255, 255, 255, .02)); border: 1px solid rgba(148, 170, 255, .14); transition: transform .4s var(--ease), background .4s; }
.tech-card::before { content: ""; position: absolute; inset: 0; padding: 1px; border-radius: inherit; background: linear-gradient(160deg, rgba(58, 169, 249, .7), transparent 38%, transparent 62%, rgba(58, 90, 249, .7)); -webkit-mask: linear-gradient(#000 0 0) content-box, linear-gradient(#000 0 0); -webkit-mask-composite: xor; mask-composite: exclude; opacity: 0; transition: opacity .4s; pointer-events: none; }
.tech-card:hover { transform: translateY(-6px); background: linear-gradient(180deg, rgba(58, 169, 249, .09), rgba(255, 255, 255, .02)); }
.tech-card:hover::before { opacity: 1; }
.tech-card__num { position: absolute; right: 26px; top: 16px; color: rgba(148, 170, 255, .2); font-family: var(--serif); font-size: 56px; font-style: italic; line-height: 1; }
.tech-card__icon { display: grid; place-items: center; width: 58px; height: 58px; border-radius: 18px; background: var(--grad); color: #fff; box-shadow: 0 14px 30px -12px rgba(58, 169, 249, .85); }
.tech-card__icon .ico { width: 27px; height: 27px; }
.tech-card__title { margin: 26px 0 12px; color: #fff; font-size: 20px; letter-spacing: -.01em; }
.tech-card p { margin: 0; color: rgba(214, 225, 255, .72); font-size: 15.5px; line-height: 1.75; }

/* ---------- 15. Basın ---------- */
.press { background: radial-gradient(80% 60% at 50% 0%, #E9F0FF, #fff 70%); }
.press__video { position: relative; max-width: 1000px; margin: 0 auto; }
.press__badge { position: absolute; left: 26px; top: -18px; z-index: 2; display: inline-flex; align-items: center; gap: 9px; padding: 9px 16px; border-radius: 999px; background: var(--ink-900); color: #fff; font-size: 13px; font-weight: 700; box-shadow: var(--shadow); }

/* ---------- 16. Haberler ---------- */
.chips { display: flex; flex-wrap: wrap; gap: 8px; margin-bottom: 34px; }
.chip { display: inline-flex; align-items: center; gap: 8px; height: 42px; padding: 0 18px; border-radius: 999px; border: 1px solid var(--line); background: #fff; color: var(--text-2); font: inherit; font-size: 14.5px; font-weight: 650; cursor: pointer; transition: border-color .2s, color .2s, background-color .2s; }
.chip:hover { border-color: #B9C8F0; color: var(--text); }
.chip.is-active { background: var(--ink-900); border-color: var(--ink-900); color: #fff; }
.chip__count { font-size: 12px; opacity: .6; }
.news-grid { display: grid; grid-template-columns: repeat(3, minmax(0, 1fr)); gap: 24px; }
.news-card { display: flex; overflow: hidden; border-radius: 24px; background: #fff; border: 1px solid var(--line); transition: transform .4s var(--ease), box-shadow .4s, border-color .4s; }
.news-card.is-hidden { display: none; }
.news-card:hover { transform: translateY(-6px); border-color: transparent; box-shadow: var(--shadow-lg); }
.news-card__link { display: flex; flex-direction: column; width: 100%; color: inherit; }
.news-card__media { position: relative; overflow: hidden; aspect-ratio: 16 / 10; background: linear-gradient(135deg, #DFE8FF, #EEF3FF); }
.news-card__media img { width: 100%; height: 100%; object-fit: cover; transition: transform .7s var(--ease); }
.news-card:hover .news-card__media img { transform: scale(1.05); }
.news-card__placeholder { position: absolute; inset: 0; display: grid; place-items: center; background: radial-gradient(circle at 30% 30%, #E6EEFF, #C9D8FF); color: var(--brand-2); }
.news-card__placeholder .ico { width: 54px; height: 54px; opacity: .55; }
.news-card__cat { position: absolute; left: 14px; top: 14px; padding: 6px 12px; border-radius: 999px; background: rgba(6, 11, 29, .74); color: #fff; font-size: 12px; font-weight: 700; -webkit-backdrop-filter: blur(6px); backdrop-filter: blur(6px); }
.news-card__body { display: flex; flex: 1; flex-direction: column; padding: 22px 24px 26px; }
.news-card__meta { margin: 0 0 8px; color: var(--text-3); font-size: 13px; font-weight: 700; }
.news-card__title { display: -webkit-box; margin: 0 0 10px; overflow: hidden; font-size: 18px; line-height: 1.4; letter-spacing: -.01em; -webkit-line-clamp: 3; -webkit-box-orient: vertical; }
.news-card__excerpt { display: -webkit-box; margin: 0 0 18px; overflow: hidden; color: var(--text-2); font-size: 15px; line-height: 1.65; -webkit-line-clamp: 3; -webkit-box-orient: vertical; }
.news-card__more { display: inline-flex; align-items: center; gap: 8px; margin-top: auto; color: var(--brand-2); font-size: 14.5px; font-weight: 700; }
.news-card__more .ico { width: 16px; height: 16px; transition: transform .3s var(--ease); }
.news-card:hover .news-card__more .ico { transform: translateX(4px); }
.news__more { margin-top: 44px; text-align: center; }
.news__more.is-done { display: none; }

/* ---------- 17. Destekçiler ---------- */
.supporters { background: radial-gradient(70% 60% at 50% 100%, #0E1C4D 0%, var(--ink-900) 60%); }
.supporters__grid { display: grid; grid-template-columns: repeat(6, minmax(0, 1fr)); gap: 20px; }
.support-card { grid-column: span 2; padding: 30px; border-radius: 26px; background: rgba(255, 255, 255, .035); border: 1px solid rgba(148, 170, 255, .14); transition: transform .4s var(--ease), background-color .4s, border-color .4s; }
.supporters__grid .support-card:nth-child(4) { grid-column: 2 / span 2; }
.supporters__grid .support-card:nth-child(5) { grid-column: 4 / span 2; }
.support-card:hover { transform: translateY(-5px); background: rgba(255, 255, 255, .06); border-color: rgba(58, 169, 249, .35); }
.support-card__logo { display: flex; align-items: center; height: 80px; margin-bottom: 18px; }
.support-card__logo img { width: auto; max-width: 210px; max-height: 70px; object-fit: contain; }
.support-card__title { margin: 0 0 12px; color: #fff; font-size: 19px; letter-spacing: -.01em; }
.support-card__text p { margin: 0 0 10px; color: rgba(214, 225, 255, .72); font-size: 15px; line-height: 1.7; }

/* ---------- 18. Ekip ---------- */
.team__grid { display: grid; grid-template-columns: repeat(2, minmax(0, 340px)); justify-content: center; gap: 28px; }
.team__group { display: flex; align-items: center; gap: 18px; margin: clamp(56px, 6vw, 80px) auto 30px; max-width: 708px; color: var(--text-3); font-size: 13.5px; font-weight: 800; letter-spacing: .16em; text-transform: uppercase; }
.team__group::before, .team__group::after { content: ""; flex: 1; height: 1px; background: var(--line); }
.person { overflow: hidden; border-radius: 28px; background: #fff; border: 1px solid var(--line); box-shadow: var(--shadow-sm); transition: transform .4s var(--ease), box-shadow .4s; }
.person:hover { transform: translateY(-6px); box-shadow: var(--shadow-lg); }
.person__photo { overflow: hidden; aspect-ratio: 1 / 1; background: linear-gradient(160deg, #E7EEFF, #CFDCFF); }
.person__photo img { width: 100%; height: 100%; object-fit: cover; transition: transform .7s var(--ease); }
.person:hover .person__photo img { transform: scale(1.04); }
.person__body { padding: 22px 26px 26px; }
.person__name { margin: 0; font-size: 20px; letter-spacing: -.015em; }
.person__role { margin: 4px 0 0; color: var(--text-3); font-size: 14.5px; font-weight: 600; line-height: 1.45; }
.person__more { margin-top: 14px; }

.modal { width: calc(100% - 32px); max-width: 920px; padding: 0; border: 0; border-radius: 30px; color: var(--text); box-shadow: 0 50px 110px rgba(3, 7, 20, .55); }
.modal::backdrop { background: rgba(3, 7, 20, .66); -webkit-backdrop-filter: blur(6px); backdrop-filter: blur(6px); }
.modal[open] { animation: modalIn .35s var(--ease); }
@keyframes modalIn { from { opacity: 0; transform: translateY(16px) scale(.98); } }
.modal__inner { position: relative; display: grid; grid-template-columns: 280px minmax(0, 1fr); gap: 34px; max-height: calc(100vh - 64px); padding: 34px; overflow: auto; }
.modal__close { position: absolute; right: 18px; top: 18px; display: grid; place-items: center; width: 42px; height: 42px; border-radius: 50%; border: 1px solid var(--line); background: #fff; color: var(--text); cursor: pointer; transition: background-color .2s; }
.modal__close:hover { background: var(--bg-soft); }
.modal__side img { width: 100%; margin-bottom: 20px; border-radius: 22px; }
.modal__title { margin: 0; padding-right: 48px; font-size: 30px; letter-spacing: -.025em; }
.modal .rich { margin-top: 18px; font-size: 16px; }
.skill { margin-bottom: 14px; }
.skill__head { display: flex; justify-content: space-between; margin-bottom: 6px; font-size: 13.5px; font-weight: 700; }
.skill__bar { height: 8px; overflow: hidden; border-radius: 99px; background: #E8EEFB; }
.skill__bar span { display: block; height: 100%; border-radius: inherit; background: var(--grad); }

/* ---------- 19. S.S.S. ---------- */
.faq-section__grid { display: grid; grid-template-columns: minmax(0, .8fr) minmax(0, 1.2fr); gap: clamp(40px, 5vw, 72px); align-items: start; }
.faq-section__head .btn { margin-top: 28px; }
.faq__item { margin-bottom: 12px; overflow: hidden; border-radius: 22px; background: #fff; border: 1px solid var(--line); transition: box-shadow .3s; }
.faq__item[open] { box-shadow: var(--shadow); }
.faq__item summary { display: flex; align-items: center; justify-content: space-between; gap: 16px; padding: 24px 26px; font-size: 18px; font-weight: 700; list-style: none; cursor: pointer; }
.faq__item summary::-webkit-details-marker { display: none; }
.faq__item summary .ico { width: 30px; height: 30px; padding: 6px; border-radius: 50%; background: var(--bg-soft); color: var(--brand-2); transition: transform .3s var(--ease), background .3s, color .3s; }
.faq__item[open] summary .ico { transform: rotate(45deg); background: var(--grad); color: #fff; }
.faq__answer { padding: 0 26px 24px; color: var(--text-2); }
.faq__answer p { margin: 0; }

/* ---------- 20. İletişim ---------- */
.contact { background: linear-gradient(180deg, #fff, var(--bg-soft)); }
.contact__grid { display: grid; grid-template-columns: minmax(0, 1fr) minmax(0, 1fr); gap: clamp(40px, 5vw, 64px); align-items: start; }
.contact-cards { display: grid; grid-template-columns: 1fr 1fr; gap: 14px; margin: 34px 0 0; padding: 0; list-style: none; }
.contact-cards a { display: flex; align-items: center; gap: 14px; height: 100%; padding: 18px; border-radius: 22px; background: #fff; border: 1px solid var(--line); color: var(--text); transition: transform .3s var(--ease), box-shadow .3s, border-color .3s; }
.contact-cards a:hover { transform: translateY(-3px); border-color: #BFCBF0; box-shadow: var(--shadow); }
.contact-cards__icon { display: grid; place-items: center; width: 48px; height: 48px; border-radius: 15px; background: #EEF3FF; color: var(--brand-2); flex: none; }
.contact-cards__icon--wa { background: #E7F9EE; color: #16A34A; }
.contact-cards small { display: block; color: var(--text-3); font-size: 12.5px; font-weight: 700; }
.contact-cards strong { display: block; font-size: 15px; line-height: 1.35; }
.form-card { position: relative; overflow: hidden; padding: clamp(28px, 4vw, 40px); border-radius: 30px; background: linear-gradient(165deg, var(--ink-700), var(--ink-900) 65%); color: #E6EDFF; box-shadow: var(--shadow-lg); }
.form-card::before { content: ""; position: absolute; width: 340px; height: 340px; right: -140px; top: -160px; border-radius: 50%; background: radial-gradient(circle, rgba(58, 169, 249, .4), transparent 65%); pointer-events: none; }
.form-card__title { position: relative; margin: 0 0 6px; color: #fff; font-size: 24px; letter-spacing: -.015em; }
.form-card__text { position: relative; margin: 0 0 24px; color: #9FB0DC; font-size: 15px; }
.form-card .wpcf7 { position: relative; }
.form-card .input-field { position: relative; margin-bottom: 14px; }
.form-card .wpcf7-form-control-wrap { display: block; }
.form-card input[type="text"], .form-card input[type="email"], .form-card input[type="tel"], .form-card textarea { width: 100%; height: 58px; padding: 24px 16px 8px; border-radius: 16px; border: 1px solid rgba(148, 170, 255, .24); background: rgba(255, 255, 255, .05); color: #fff; font: inherit; font-size: 15.5px; outline: none; transition: border-color .2s, background-color .2s, box-shadow .2s; }
.form-card textarea { height: 150px; padding-top: 30px; resize: vertical; }
.form-card input:focus, .form-card textarea:focus { border-color: var(--brand); background: rgba(255, 255, 255, .08); box-shadow: 0 0 0 4px rgba(58, 169, 249, .18); }
.form-card .input-title { position: absolute; left: 17px; top: 18px; color: #8FA0CF; font-size: 15px; pointer-events: none; transition: top .2s var(--ease), font-size .2s, color .2s; }
.form-card .input-field:focus-within .input-title, .form-card .input-field.has-value .input-title { top: 8px; color: var(--ice); font-size: 11.5px; font-weight: 700; letter-spacing: .04em; }
.form-card button[type="submit"], .form-card .wpcf7-submit { width: 100%; height: 56px; margin-top: 6px; border: 0; border-radius: 999px; background: var(--grad); color: #fff; font-size: 16px; font-weight: 700; cursor: pointer; box-shadow: 0 14px 30px -12px rgba(58, 90, 249, .9); transition: transform .25s var(--ease); }
.form-card button[type="submit"]:hover { transform: translateY(-2px); }
.form-card .wpcf7-not-valid-tip { margin-top: 6px; color: #FDA4AF; font-size: 13px; }
.form-card .wpcf7-response-output { margin: 16px 0 0 !important; padding: 12px 16px !important; border-radius: 14px; border: 1px solid rgba(148, 170, 255, .3) !important; color: #E6EDFF; font-size: 14.5px; }
.form-card .wpcf7 form.sent .wpcf7-response-output { border-color: rgba(52, 211, 153, .6) !important; background: rgba(52, 211, 153, .1); }
.form-card .wpcf7 form.invalid .wpcf7-response-output, .form-card .wpcf7 form.failed .wpcf7-response-output { border-color: rgba(253, 164, 175, .6) !important; }
.form-card .wpcf7-spinner { position: absolute; right: 16px; margin: 0; }

/* ---------- 21. Kayan logolar ---------- */
.logos { padding: 60px 0 64px; background: var(--ink-950); border-top: 1px solid rgba(148, 170, 255, .08); }
.logos__title { margin: 0 0 30px; color: #7D8FC4; font-size: 13px; font-weight: 800; letter-spacing: .22em; text-align: center; text-transform: uppercase; }
.marquee { overflow: hidden; -webkit-mask-image: linear-gradient(90deg, transparent, #000 12%, #000 88%, transparent); mask-image: linear-gradient(90deg, transparent, #000 12%, #000 88%, transparent); }
.marquee__track { display: flex; align-items: center; gap: 80px; width: max-content; animation: marquee 42s linear infinite; }
.marquee:hover .marquee__track { animation-play-state: paused; }
.marquee__item img { width: auto; height: 52px; opacity: .72; transition: opacity .3s; }
.marquee__item img:hover { opacity: 1; }
@keyframes marquee { to { transform: translateX(-50%); } }

/* ---------- 22. Alt bilgi ---------- */
.site-footer { position: relative; padding: 40px 0 104px; background: var(--ink-950); color: #B8C4E6; }
.footer-cta { position: relative; overflow: hidden; display: flex; flex-wrap: wrap; align-items: center; justify-content: space-between; gap: 28px; margin-bottom: 72px; padding: clamp(32px, 4vw, 52px) clamp(28px, 4vw, 56px); border-radius: var(--radius-xl); background: linear-gradient(120deg, #1432A8 0%, #1C6FDC 60%, #3AA9F9 100%); color: #fff; box-shadow: 0 40px 80px -40px rgba(58, 169, 249, .6); }
.footer-cta::after { content: ""; position: absolute; right: -60px; bottom: -160px; width: 420px; height: 420px; border-radius: 50%; background: repeating-radial-gradient(circle, rgba(255, 255, 255, .09) 0 1px, transparent 1px 26px); pointer-events: none; }
.footer-cta__text, .footer-cta__actions { position: relative; }
.footer-cta__title { margin: 12px 0 6px; color: #fff; font-size: clamp(28px, 3vw, 42px); letter-spacing: -.025em; }
.footer-cta__text p { margin: 0; color: #DBE7FF; font-size: 17px; }
.footer-cta__actions { display: flex; flex-wrap: wrap; gap: 12px; }
.footer-grid { display: grid; grid-template-columns: 1.6fr 1fr 1fr 1fr 1.35fr; gap: 40px; padding-bottom: 52px; border-bottom: 1px solid rgba(148, 170, 255, .1); }
.brand--footer img { width: auto; height: 54px; }
.footer-brand__tag { margin: 18px 0 8px; color: #fff; font-weight: 700; }
.footer-brand__text { max-width: 340px; color: #8E9BC2; font-size: 14.5px; line-height: 1.7; }
.social { display: flex; gap: 10px; margin: 22px 0 0; padding: 0; list-style: none; }
.social a { display: grid; place-items: center; width: 42px; height: 42px; border-radius: 13px; background: rgba(255, 255, 255, .05); border: 1px solid rgba(148, 170, 255, .14); color: #CFD9F7; transition: background .25s, color .25s, border-color .25s, transform .25s var(--ease); }
.social a:hover { background: var(--grad); border-color: transparent; color: #fff; transform: translateY(-2px); }
.social .ico { width: 18px; height: 18px; }
.footer-col__title { margin: 6px 0 18px; color: #fff; font-size: 13px; font-weight: 800; letter-spacing: .14em; text-transform: uppercase; }
.footer-col ul { display: flex; flex-direction: column; gap: 11px; margin: 0; padding: 0; list-style: none; }
.footer-col a { color: #9AA8CF; font-size: 15px; }
.footer-col a:hover { color: #fff; }
.footer-contact li { display: flex; align-items: flex-start; gap: 10px; font-size: 15px; line-height: 1.5; }
.footer-contact .ico { width: 18px; height: 18px; margin-top: 3px; color: var(--brand); }
.footer-bottom { display: flex; flex-wrap: wrap; justify-content: space-between; gap: 14px 24px; padding-top: 28px; color: #7383AD; font-size: 14px; }
.footer-bottom p { margin: 0; }
.footer-bottom__links { display: flex; flex-wrap: wrap; gap: 24px; margin: 0; padding: 0; list-style: none; }
.footer-bottom__links a { display: inline-flex; align-items: center; gap: 6px; color: #9AA8CF; }
.footer-bottom__links a:hover { color: #fff; }
.footer-bottom__links .ico { width: 15px; height: 15px; }

/* ---------- 23. İç sayfalar ---------- */
.page-hero { position: relative; isolation: isolate; overflow: hidden; padding: calc(var(--header-h) + clamp(56px, 7vw, 96px)) 0 clamp(56px, 6vw, 88px); background: var(--ink-900); color: #fff; }
.page-hero__bg { position: absolute; inset: 0; z-index: -1; background: radial-gradient(50% 90% at 88% 0%, rgba(58, 90, 249, .5), transparent 60%), radial-gradient(40% 70% at 0% 100%, rgba(58, 169, 249, .28), transparent 60%); }
.page-hero__bg::after { content: ""; position: absolute; inset: 0; background-image: linear-gradient(rgba(255, 255, 255, .04) 1px, transparent 1px), linear-gradient(90deg, rgba(255, 255, 255, .04) 1px, transparent 1px); background-size: 56px 56px; -webkit-mask-image: linear-gradient(180deg, #000, transparent 90%); mask-image: linear-gradient(180deg, #000, transparent 90%); }
.page-hero__title { max-width: 920px; margin: 16px 0 0; font-size: clamp(34px, 4.6vw, 62px); line-height: 1.06; letter-spacing: -.035em; }
.page-hero--article .page-hero__title { max-width: 1000px; font-size: clamp(28px, 3.4vw, 48px); line-height: 1.15; }
.page-hero__lead { max-width: 700px; margin: 18px 0 0; color: rgba(222, 232, 255, .76); font-size: clamp(17px, 1.4vw, 20px); }
.page-hero__meta { display: flex; flex-wrap: wrap; align-items: center; gap: 12px 22px; margin-top: 24px; color: #B9C7EC; font-size: 14.5px; font-weight: 600; }
.page-hero__meta span { display: inline-flex; align-items: center; gap: 8px; }
.page-hero__meta .ico { width: 16px; height: 16px; }
.crumbs { display: flex; flex-wrap: wrap; align-items: center; gap: 10px; margin-bottom: 24px; color: #8EA0D0; font-size: 13.5px; font-weight: 600; }
.crumbs a { color: #B9C7EC; }
.crumbs a:hover { color: #fff; }

.rich { color: #28324F; font-size: 17.5px; line-height: 1.8; }
.rich > *:first-child { margin-top: 0; }
.rich h1, .rich h2, .rich h3, .rich h4, .rich h5 { color: var(--text); letter-spacing: -.02em; }
.rich h2 { margin: 1.6em 0 .6em; font-size: clamp(24px, 2.4vw, 32px); line-height: 1.25; }
.rich h3 { margin: 1.5em 0 .5em; font-size: 23px; }
.rich h4, .rich h5 { margin: 1.4em 0 .5em; font-size: 19px; }
.rich p { margin: 0 0 1.2em; }
.rich a:not(.btn) { color: var(--brand-2); text-decoration: underline; text-decoration-thickness: 1px; text-underline-offset: 3px; word-break: break-word; }
.rich img { height: auto; margin: 1.4em auto; border-radius: 18px; }
.rich ul, .rich ol { margin: 0 0 1.2em; padding-left: 1.3em; }
.rich li { margin-bottom: .4em; }
.rich blockquote { margin: 1.6em 0; padding: 20px 26px; border-left: 4px solid var(--brand); border-radius: 0 16px 16px 0; background: var(--bg-soft); font-size: 19px; }
.rich figure { margin: 1.6em 0; }
.rich figcaption { margin-top: 8px; color: var(--text-3); font-size: 14px; text-align: center; }
.rich iframe { max-width: 100%; border: 0; border-radius: 16px; }
.rich table { width: 100%; border-collapse: collapse; margin: 0 0 1.4em; font-size: 15.5px; }
.rich th, .rich td { padding: 10px 12px; border: 1px solid var(--line); text-align: left; }
.rich ul.btns { display: flex; flex-wrap: wrap; gap: 12px; margin: 1.6em 0; padding: 0; list-style: none; }
.rich ul.btns li { margin: 0; }
.rich .btn:not([class*="btn--"]) { background: var(--grad); color: #fff; text-decoration: none; box-shadow: 0 12px 26px -12px rgba(58, 90, 249, .75); }
.rich .btn:not([class*="btn--"]):hover { transform: translateY(-2px); color: #fff; }
.rich center { display: block; }
.page-content .section-bg-muscari.banner-tokensale { display: none !important; }
.page-content .vc_row { margin-left: 0; margin-right: 0; }
.page-content .vc_empty_space { height: 12px !important; }
.page-content > .vc_row:first-of-type, .page-content > .vc_section + .vc_row { padding-top: 0 !important; }
.page-content .wpb_single_image img { border-radius: 22px; box-shadow: var(--shadow); }
.legacy-heading { margin: 8px 0 28px; text-align: center; }
.legacy-heading .eyebrow { justify-content: center; }
.legacy-heading__title { margin: 10px 0 0; font-size: clamp(26px, 3vw, 38px); letter-spacing: -.025em; }
.legacy-btn { margin: 1.4em 0; }
.legacy-countdown { padding: 16px 20px; border-radius: 16px; background: var(--bg-soft); }
.doc-cta { margin-top: 2em; }
.back-link { margin-top: 32px; font-weight: 700; }
.back-link a { color: var(--text-2); }

.article-layout { display: grid; grid-template-columns: minmax(0, 1fr) 320px; gap: clamp(40px, 5vw, 64px); align-items: start; }
.article__cover { margin: 0 0 40px; overflow: hidden; border-radius: 26px; box-shadow: var(--shadow-lg); }
.article__cover img { width: 100%; }
.article__tags { display: flex; flex-wrap: wrap; gap: 8px; margin-top: 32px; }
.share { display: flex; flex-wrap: wrap; align-items: center; gap: 10px; margin: 36px 0; padding: 18px 0; border-top: 1px solid var(--line); border-bottom: 1px solid var(--line); }
.share__label { margin-right: 6px; color: var(--text-3); font-size: 13px; font-weight: 800; letter-spacing: .12em; text-transform: uppercase; }
.share a, .share button { display: inline-grid; place-items: center; width: 42px; height: 42px; border-radius: 13px; border: 1px solid var(--line); background: #fff; color: var(--text-2); cursor: pointer; transition: color .2s, border-color .2s; }
.share a:hover, .share button:hover { color: var(--brand-2); border-color: #BFCBF0; }
.share .ico { width: 18px; height: 18px; }
.share .share__copy { display: inline-flex; gap: 8px; width: auto; padding: 0 16px; font-size: 14px; font-weight: 700; }
.post-nav { display: grid; grid-template-columns: 1fr 1fr; gap: 16px; }
.post-nav__item { padding: 20px 22px; border-radius: 20px; border: 1px solid var(--line); background: #fff; color: var(--text); transition: box-shadow .3s, border-color .3s; }
.post-nav__item:hover { border-color: #BFCBF0; box-shadow: var(--shadow); color: var(--text); }
.post-nav__item small { display: block; margin-bottom: 6px; color: var(--text-3); font-size: 12px; font-weight: 800; letter-spacing: .08em; text-transform: uppercase; }
.post-nav__item span { display: -webkit-box; overflow: hidden; font-weight: 700; line-height: 1.4; -webkit-line-clamp: 2; -webkit-box-orient: vertical; }
.post-nav__item--next { text-align: right; }
.article-aside { position: sticky; top: calc(var(--header-h) + 24px); display: flex; flex-direction: column; gap: 16px; }
.aside-card { padding: 26px; border-radius: 24px; background: var(--bg-soft); border: 1px solid var(--line); }
.aside-card--cta { background: linear-gradient(165deg, var(--ink-700), var(--ink-900) 70%); border: 0; color: #DCE6FF; }
.aside-card--cta h3 { margin: 16px 0 8px; color: #fff; font-size: 20px; }
.aside-card--cta p { color: #A9B8E2; font-size: 15px; }
.aside-card__icon { display: grid; place-items: center; width: 48px; height: 48px; border-radius: 15px; background: var(--grad); color: #fff; }
.aside-widgets .widget { margin-bottom: 16px; padding: 24px; border-radius: 22px; background: var(--bg-soft); border: 1px solid var(--line); font-size: 15px; }
.widget__title { margin: 0 0 12px; font-size: 13px; font-weight: 800; letter-spacing: .12em; text-transform: uppercase; color: var(--text-3); }
.widget ul { margin: 0; padding: 0; list-style: none; }
.widget li { padding: 9px 0; border-bottom: 1px solid var(--line); line-height: 1.45; }
.widget li:last-child { border-bottom: 0; }
.widget a { color: var(--text); font-weight: 600; }
.widget a:hover { color: var(--brand-2); }
.widget .search-form { max-width: none; }
.cta-widget { text-align: center; }
.cta-widget .cta-head { margin: 0 0 6px; font-size: 18px; }
.cta-widget .btn { margin-top: 10px; background: var(--grad); color: #fff; }

.profile { display: grid; grid-template-columns: 320px minmax(0, 1fr); gap: clamp(32px, 5vw, 64px); align-items: start; }
.profile__photo img { width: 100%; margin-bottom: 22px; border-radius: 26px; box-shadow: var(--shadow-lg); }

.search-form { position: relative; display: flex; align-items: center; gap: 10px; max-width: 540px; margin: 0 auto; padding: 6px 6px 6px 18px; border-radius: 999px; background: #fff; border: 1px solid var(--line); box-shadow: var(--shadow-sm); }
.search-form__icon { width: 18px; height: 18px; color: var(--text-3); }
.search-form__input { flex: 1; min-width: 0; border: 0; outline: 0; background: transparent; color: var(--text); font: inherit; font-size: 15.5px; }
.search-bar { margin-bottom: 40px; }
.pagination .nav-links { display: flex; flex-wrap: wrap; justify-content: center; gap: 8px; margin-top: 52px; }
.pagination .page-numbers { display: inline-grid; place-items: center; min-width: 46px; height: 46px; padding: 0 16px; border-radius: 14px; border: 1px solid var(--line); background: #fff; color: var(--text); font-weight: 700; }
.pagination .page-numbers.current { background: var(--ink-900); border-color: var(--ink-900); color: #fff; }
.pagination .page-numbers:hover:not(.current) { border-color: #BFCBF0; }
.empty-state { max-width: 560px; margin: 0 auto; text-align: center; }
.empty-state__icon { display: inline-grid; place-items: center; width: 64px; height: 64px; margin-bottom: 12px; border-radius: 20px; background: #fff; color: var(--brand-2); box-shadow: var(--shadow); }
.empty-state h2 { margin: 0 0 10px; }
.empty-state p { color: var(--text-2); }

.comments { margin-top: 48px; }
.comments__title { font-size: 24px; }
.comments__list { padding-left: 0; list-style: none; }
.comments__list .comment-body { margin-bottom: 16px; padding: 18px 20px; border-radius: 18px; background: var(--bg-soft); }
.comments__list .avatar { float: left; margin-right: 12px; border-radius: 50%; }
.comment-form input[type="text"], .comment-form input[type="email"], .comment-form input[type="url"], .comment-form textarea { width: 100%; padding: 12px 14px; border-radius: 14px; border: 1px solid var(--line); font: inherit; }

.notfound { position: relative; isolation: isolate; overflow: hidden; display: grid; place-items: center; min-height: 100vh; padding: calc(var(--header-h) + 48px) 0 80px; background: var(--ink-900); color: #fff; text-align: center; }
.notfound__bg { position: absolute; inset: 0; z-index: -1; background: radial-gradient(50% 60% at 50% 30%, rgba(58, 90, 249, .45), transparent 70%), repeating-radial-gradient(circle at 50% 42%, rgba(255, 255, 255, .05) 0 1px, transparent 1px 44px); }
.notfound__code { margin: 0; font-size: clamp(120px, 22vw, 260px); font-weight: 800; line-height: .9; letter-spacing: -.07em; background: linear-gradient(180deg, #fff 20%, rgba(255, 255, 255, .06)); -webkit-background-clip: text; background-clip: text; color: transparent; }
.notfound__title { margin: 10px 0 12px; font-size: clamp(26px, 3vw, 40px); letter-spacing: -.025em; }
.notfound__text { max-width: 560px; margin: 0 auto; color: rgba(222, 232, 255, .74); }
.notfound__actions { display: flex; flex-wrap: wrap; justify-content: center; gap: 12px; margin: 32px 0 36px; }

/* WordPress hizalama sınıfları */
.alignleft { float: left; margin: .4em 1.4em 1em 0; }
.alignright { float: right; margin: .4em 0 1em 1.4em; }
.aligncenter { margin-left: auto; margin-right: auto; }
.wp-caption { max-width: 100%; }
.wp-caption-text { color: var(--text-3); font-size: 14px; text-align: center; }

/* ---------- 24. Duyarlı tasarım ---------- */
@media (max-width: 1240px) {
	.site-header__cta { display: none; }
}

@media (max-width: 1080px) {
	:root { --header-h: 70px; }
	.brand img { height: 40px; }
	.nav-toggle { display: grid; }
	.nav { position: fixed; inset: var(--header-h) 0 0 0; z-index: 99; display: flex; flex-direction: column; justify-content: flex-start; padding: 20px 20px 40px; overflow-y: auto; background: var(--ink-900); opacity: 0; visibility: hidden; transform: translateY(-10px); transition: opacity .3s, transform .3s var(--ease), visibility .3s; }
	.admin-bar .nav { top: calc(var(--header-h) + 46px); }
	.nav-open .nav { opacity: 1; visibility: visible; transform: none; }
	.nav-open { overflow: hidden; }
	.nav__list { flex-direction: column; align-items: stretch; gap: 2px; }
	.nav__list a { height: auto; padding: 14px 16px; border-radius: 14px; font-size: 19px; }
	.nav__list > .menu-item-has-children > a::after { display: none; }
	.nav__list .sub-menu { position: static; min-width: 0; padding: 0 0 6px 14px; background: transparent; border: 0; box-shadow: none; opacity: 1; visibility: visible; transform: none; }
	.nav__list .sub-menu a { padding: 10px 16px; color: #9FB0DC; font-size: 16px; }
	.nav__mobile-extra { display: flex; flex-direction: column; gap: 14px; margin-top: 26px; padding-top: 26px; border-top: 1px solid rgba(148, 170, 255, .12); }
	.nav__contact { display: inline-flex; align-items: center; gap: 10px; color: #CFD9F7; font-weight: 600; }
	.nav__contact .ico { color: var(--brand); }

	.hero { min-height: 0; }
	.hero__inner { grid-template-columns: 1fr; }
	.hero__visual { max-width: 620px; margin: 0 auto; width: 100%; }
	.device, .hero__visual:hover .device { transform: none; }
	.float-card--a { top: -30px; left: 12px; }
	.float-card--b { bottom: -30px; right: 12px; }
	.duyurular__grid, .product__grid, .about__grid, .invest__grid, .app__grid, .contact__grid, .faq-section__grid, .article-layout { grid-template-columns: 1fr; }
	.ir-card, .article-aside { position: static; }
	.product__visual { max-width: 720px; }
	.app__visual { max-width: 520px; margin: 0 auto; }
	.news-grid { grid-template-columns: repeat(2, minmax(0, 1fr)); }
	.supporters__grid { grid-template-columns: repeat(2, minmax(0, 1fr)); }
	.support-card, .supporters__grid .support-card:nth-child(4), .supporters__grid .support-card:nth-child(5) { grid-column: auto; }
	.supporters__grid .support-card:nth-child(5) { grid-column: 1 / -1; }
	.footer-grid { grid-template-columns: 1fr 1fr 1fr; }
	.footer-brand { grid-column: 1 / -1; }
	.solution { grid-template-columns: auto minmax(0, 1fr); }
	.solution__points { grid-column: 1 / -1; flex-direction: row; flex-wrap: wrap; gap: 10px 24px; }
}

@media (max-width: 900px) {
	.stats { grid-template-columns: 1fr 1fr; }
	.stat:nth-child(3) { border-left: 0; }
	.stat:nth-child(n+3) { border-top: 1px solid rgba(148, 170, 255, .12); }
	.tech__grid { grid-template-columns: 1fr; }
	.timeline { grid-template-columns: 1fr; padding-left: 52px; }
	.timeline::before { left: 16px; transform: none; }
	.timeline__item.is-right { margin: 0; }
	.is-left .timeline__node, .is-right .timeline__node { left: -52px; right: auto; }
	.is-left .timeline__card { text-align: left; }
	.is-left .timeline__card::before, .is-right .timeline__card::before { left: -7px; right: auto; border: inherit; border-right: 0; border-top: 0; }
	.reports { grid-template-columns: 1fr; text-align: left; }
	.reports__art img { max-width: 180px; margin: 0; }
	.facts { grid-template-columns: 1fr; }
	.modal__inner { grid-template-columns: 1fr; }
	.modal__side img { max-width: 240px; }
	.profile { grid-template-columns: 1fr; }
	.profile__photo img { max-width: 320px; }
}

@media (max-width: 782px) {
	.admin-bar .site-header { top: 46px; }
}

@media (max-width: 680px) {
	body { font-size: 16.5px; }
	.container { width: min(100% - 32px, var(--container)); }
	.site-header__actions { gap: 8px; }
	.lang a.glink { min-width: 34px; padding: 0 8px; }
	.hero__title { font-size: clamp(36px, 10.5vw, 48px); }
	.hero__actions .btn--lg { height: 52px; padding: 0 22px; font-size: 15.5px; }
	.hero__partners ul { gap: 18px; }
	.hero__partners img { height: 30px; }
	.float-card { display: none; }
	.device { padding: 10px; border-radius: 20px; }
	.device__name { display: none; }
	.device__readouts strong { font-size: 15px; }
	.stat { padding: 20px 18px; }
	.stat__label { font-size: 13px; }
	.duyuru { grid-template-columns: 1fr; gap: 14px; padding: 22px; }
	.duyuru__date { flex-direction: row; gap: 8px; width: max-content; height: auto; padding: 8px 14px; border-radius: 12px; }
	.duyuru__day { font-size: 18px; }
	.duyuru__month { margin-top: 0; }
	.duyuru__meta time { display: none; }
	.duyuru__meta:not(:has(.tag)) { display: none; }
	.product__badge { left: 12px; bottom: -26px; }
	.product__badge img { width: 64px; }
	.solution { grid-template-columns: 1fr; }
	.skills-grid { grid-template-columns: 1fr; }
	.skills-grid li { flex-direction: row; align-items: center; }
	.app__platforms { right: 8px; }
	.news-grid, .supporters__grid, .contact-cards, .post-nav { grid-template-columns: 1fr; }
	.team__grid { grid-template-columns: minmax(0, 360px); }
	.cobrand { padding: 26px 20px 20px; }
	.invest__numbers { grid-template-columns: 1fr 1fr; }
	.footer-grid { grid-template-columns: 1fr 1fr; gap: 32px; }
	.footer-col--contact { grid-column: 1 / -1; }
	.footer-cta__actions, .footer-cta__actions .btn { width: 100%; }
	.video__play { width: 64px; height: 64px; }
	.video__title { font-size: 13.5px; left: 16px; right: 16px; bottom: 14px; }
	.press__badge { left: 14px; }
	.modal__inner { padding: 24px; }
	.post-nav__item--next { text-align: left; }
	.marquee__track { gap: 56px; }
	.marquee__item img { height: 42px; }
}

@media (max-width: 420px) {
	.site-header__actions .lang { display: none; }
	.footer-grid { grid-template-columns: 1fr; }
	.invest__big { font-size: 84px; }
}

@media (prefers-reduced-motion: reduce) {
	html { scroll-behavior: auto; }
	*, *::before, *::after { animation-duration: .001ms !important; animation-iteration-count: 1 !important; transition-duration: .001ms !important; }
	.js [data-reveal] { opacity: 1; transform: none; }
	.marquee__track { animation: none; }
}

@media print {
	.site-header, .site-footer, .hero__waves, .float-card, .logos { display: none !important; }
	.hero, .page-hero, .section--dark { background: #fff !important; color: #000 !important; }
}
