/* ============================================================
   Gökkira — Teleskop Kiralama  ·  styles.css
   Palet: temiz + elektrik mavi
   ============================================================ */

:root {
  --bg: #F6F8FB;
  --surface: #FFFFFF;
  --surface-2: #EEF3FA;
  --ink: #0E1726;
  --ink-soft: #46566B;
  --ink-faint: #7A8AA0;
  --accent: #1463FF;
  --accent-press: #0C46BF;
  --accent-2: #00C2A8;
  --accent-2-deep: #029E8A;
  --line: #DDE5F0;
  --line-strong: #C3D0E2;
  --halo: rgba(20, 99, 255, 0.16);
  --halo-2: rgba(0, 194, 168, 0.18);
  --header-h: 72px;
  --maxw: 1320px;
  --radius: 14px;
  --radius-sm: 10px;
  --shadow-sm: 0 2px 10px -6px rgba(14, 23, 38, 0.22);
  --shadow-md: 0 14px 34px -22px rgba(14, 23, 38, 0.40);
  --shadow-lift: 0 22px 46px -24px rgba(20, 99, 255, 0.42);
  --ease: cubic-bezier(.2, .7, .2, 1);
  --ease-2: cubic-bezier(.4, 0, .2, 1);
  interpolate-size: allow-keywords;
}

* { box-sizing: border-box; }

html {
  scroll-behavior: smooth;
  -webkit-text-size-adjust: 100%;
}
@media (prefers-reduced-motion: reduce) { html { scroll-behavior: auto; } }

html, body {
  overflow-x: hidden;
  max-width: 100vw;
  margin: 0;
}

body {
  background: var(--bg);
  color: var(--ink);
  font-family: system-ui, -apple-system, "Segoe UI", Roboto, Arial, sans-serif;
  font-weight: 400;
  font-size: 16px;
  line-height: 1.62;
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
}

h1, h2, h3, h4 {
  font-family: "Helvetica Neue", Helvetica, Arial, sans-serif;
  font-weight: 800;
  letter-spacing: -0.03em;
  line-height: 1.06;
  color: var(--ink);
  margin: 0 0 .5em;
  overflow-wrap: break-word;
  word-break: keep-all;
}

p { margin: 0 0 1em; overflow-wrap: anywhere; }

a { color: var(--accent); text-decoration: none; transition: color 200ms var(--ease-2); }
a:hover { color: var(--accent-press); }

img { max-width: 100%; height: auto; display: block; }

.tnum { font-variant-numeric: tabular-nums; }

ul, ol { margin: 0 0 1em; padding-left: 1.2em; }

.container {
  width: 100%;
  max-width: var(--maxw);
  margin-inline: auto;
  padding-inline: clamp(16px, 3.5vw, 40px);
}

.skip-link {
  position: absolute;
  left: 12px; top: -56px;
  z-index: 2000;
  background: var(--ink);
  color: #fff;
  padding: 10px 16px;
  border-radius: 10px;
  transition: top 180ms var(--ease);
}
.skip-link:focus { top: 12px; color: #fff; }

:where(a, button, input, select, textarea, summary, [tabindex]):focus-visible {
  outline: 2px solid var(--accent);
  outline-offset: 2px;
  border-radius: 4px;
}

/* ============================================================
   HEADER
   ============================================================ */
.site-header {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 1080;
  height: var(--header-h);
  display: flex;
  align-items: center;
  background: rgba(246, 248, 251, 0.92);
  -webkit-backdrop-filter: saturate(140%) blur(10px);
  backdrop-filter: saturate(140%) blur(10px);
  border-bottom: 1px solid transparent;
  transition: background 240ms var(--ease), box-shadow 240ms var(--ease),
              height 240ms var(--ease), border-color 240ms var(--ease);
}
.site-header.is-scrolled {
  background: rgba(255, 255, 255, 0.98);
  box-shadow: 0 8px 24px -16px rgba(14, 23, 38, 0.18);
  border-color: var(--line);
  height: 62px;
}
.header-inner {
  width: 100%;
  max-width: var(--maxw);
  margin-inline: auto;
  padding-inline: clamp(16px, 3.5vw, 40px);
  display: flex;
  align-items: center;
  gap: 18px;
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 11px;
  font-family: "Helvetica Neue", Helvetica, Arial, sans-serif;
  font-weight: 800;
  letter-spacing: -0.03em;
  font-size: 1.18rem;
  color: var(--ink);
  margin-right: auto;
}
.brand:hover { color: var(--ink); }
.brand .mark {
  width: 34px; height: 34px;
  flex: none;
  display: grid;
  place-items: center;
}
.brand .mark svg { width: 34px; height: 34px; display: block; }
.brand b { font-weight: 800; }
.brand .brand-sub {
  font-family: system-ui, sans-serif;
  font-weight: 600;
  font-size: .62rem;
  letter-spacing: .16em;
  text-transform: uppercase;
  color: var(--accent);
  margin-left: 1px;
}

.nav-desktop {
  display: none;
  align-items: center;
  gap: clamp(12px, 1.3vw, 22px);
}
.nav-desktop a {
  position: relative;
  font-size: .92rem;
  font-weight: 600;
  color: var(--ink-soft);
  padding: 6px 2px;
}
.nav-desktop a::after {
  content: "";
  position: absolute;
  left: 0; right: 0; bottom: -2px;
  height: 2px;
  background: var(--accent);
  border-radius: 2px;
  transform: scaleX(0);
  transform-origin: left;
  transition: transform 220ms var(--ease);
}
.nav-desktop a:hover { color: var(--ink); }
.nav-desktop a:hover::after,
.nav-desktop a.is-active::after { transform: scaleX(1); }
.nav-desktop a.is-active { color: var(--ink); }

.nav-cta {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: var(--accent);
  color: #fff;
  font-weight: 700;
  font-size: .92rem;
  padding: 10px 18px;
  border-radius: 999px;
  box-shadow: 0 10px 24px -14px var(--halo);
}
.nav-desktop .nav-cta::after { display: none; }
.nav-desktop .nav-cta { color: #fff; }
.nav-desktop .nav-cta:hover,
.nav-cta:hover,
.nav-cta:focus-visible {
  background: var(--accent-press);
  color: #fff;
}

.nav-toggle {
  position: relative;
  z-index: 1100;
  display: inline-flex;
  flex-direction: column;
  justify-content: center;
  gap: 5px;
  width: 46px; height: 46px;
  margin-left: auto;
  padding: 0 10px;
  background: var(--surface);
  border: 1px solid var(--line-strong);
  border-radius: 12px;
  box-shadow: var(--shadow-sm);
  cursor: pointer;
  transition: border-color 200ms var(--ease), box-shadow 200ms var(--ease), background 200ms var(--ease);
}
.nav-toggle:hover, .nav-toggle:focus-visible { border-color: var(--accent); box-shadow: 0 8px 20px -12px var(--halo); }
.nav-toggle[aria-expanded="true"] { border-color: var(--accent); }
.nav-toggle span {
  display: block;
  height: 2.5px;
  width: 100%;
  background: var(--ink);
  border-radius: 2px;
  transition: transform 280ms var(--ease), opacity 200ms var(--ease);
}
.nav-toggle[aria-expanded="true"] span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
.nav-toggle[aria-expanded="true"] span:nth-child(2) { opacity: 0; }
.nav-toggle[aria-expanded="true"] span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }

@media (min-width: 1100px) {
  .nav-desktop { display: flex; }
  .nav-toggle { display: none; }
}

/* ============================================================
   DRAWER
   ============================================================ */
.drawer-backdrop {
  position: fixed;
  inset: 0;
  z-index: 1040;
  background: rgba(8, 14, 26, 0.55);
  opacity: 0;
  visibility: hidden;
  transition: opacity 240ms var(--ease), visibility 240ms var(--ease);
}
.drawer-backdrop.is-open { opacity: 1; visibility: visible; }

.drawer {
  position: fixed;
  top: 0; right: 0; bottom: 0;
  z-index: 1050;
  width: min(360px, 92vw);
  background: var(--surface);
  border-left: 1px solid var(--line);
  box-shadow: -24px 0 60px -30px rgba(14, 23, 38, 0.5);
  transform: translateX(100%);
  transition: transform 320ms var(--ease);
  display: flex;
  flex-direction: column;
  padding: calc(var(--header-h) + 16px) 26px 28px;
  overflow-y: auto;
}
.drawer.is-open { transform: translateX(0); }
.drawer .drawer-eyebrow {
  font-size: .68rem;
  letter-spacing: .2em;
  text-transform: uppercase;
  color: var(--accent);
  font-weight: 700;
  margin-bottom: 14px;
}
.drawer a {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 14px 4px;
  font-size: 1.08rem;
  font-weight: 600;
  color: var(--ink);
  border-bottom: 1px solid var(--line);
}
.drawer a:hover { color: var(--accent); }
.drawer a.is-active { color: var(--accent); }
.drawer .drawer-cta {
  margin-top: 22px;
  justify-content: center;
  background: var(--accent);
  color: #fff;
  border-radius: 999px;
  border: 0;
}
.drawer .drawer-cta:hover { background: var(--accent-press); color: #fff; }

/* ============================================================
   BUTTONS
   ============================================================ */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 9px;
  font-family: inherit;
  font-weight: 700;
  font-size: .98rem;
  line-height: 1;
  padding: 14px 24px;
  border-radius: 999px;
  border: 1px solid transparent;
  cursor: pointer;
  transition: background 200ms var(--ease), color 200ms var(--ease),
              transform 200ms var(--ease), box-shadow 200ms var(--ease),
              border-color 200ms var(--ease);
}
.btn svg { width: 18px; height: 18px; flex: none; }

.btn-primary {
  background: var(--accent);
  color: #fff;
  box-shadow: 0 16px 34px -18px var(--halo);
}
.btn-primary:hover, .btn-primary:focus-visible {
  background: var(--accent-press);
  color: #fff;
  transform: translateY(-2px);
  box-shadow: 0 22px 44px -18px var(--halo);
}
.btn-primary:active { transform: translateY(0); }

.btn-ghost {
  background: var(--surface);
  color: var(--ink);
  border-color: var(--line-strong);
}
.btn-ghost:hover, .btn-ghost:focus-visible {
  background: var(--surface-2);
  color: var(--ink);
  border-color: var(--accent);
  transform: translateY(-2px);
}

.btn-teal {
  background: var(--accent-2);
  color: #04332D;
}
.btn-teal:hover, .btn-teal:focus-visible {
  background: var(--accent-2-deep);
  color: #fff;
  transform: translateY(-2px);
}

/* tema mikro-etkileşimi: hover'da mercekten geçen yıldız ışığı süpürmesi */
.btn-primary, .btn-teal { position: relative; overflow: hidden; }
.btn-primary > *, .btn-teal > * { position: relative; z-index: 1; }
.btn-primary::after, .btn-teal::after {
  content: "";
  position: absolute;
  top: 0; left: -130%;
  width: 55%; height: 100%;
  background: linear-gradient(100deg, transparent, rgba(255,255,255,.42), transparent);
  transform: skewX(-18deg);
  pointer-events: none;
  z-index: 0;
}
.btn-primary:hover::after, .btn-primary:focus-visible::after,
.btn-teal:hover::after, .btn-teal:focus-visible::after {
  animation: starlight-sweep 760ms var(--ease);
}
@keyframes starlight-sweep { from { left: -130%; } to { left: 150%; } }
@media (prefers-reduced-motion: reduce) {
  .btn-primary::after, .btn-teal::after { display: none; }
}

/* ============================================================
   MAIN / SECTION
   ============================================================ */
main { padding-top: var(--header-h); }

.section { padding: clamp(54px, 7vw, 96px) 0; }
.section-tight { padding: clamp(38px, 5vw, 64px) 0; }

.eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-size: .72rem;
  font-weight: 700;
  letter-spacing: .2em;
  text-transform: uppercase;
  color: var(--accent);
  margin-bottom: 14px;
}
.eyebrow::before {
  content: "";
  width: 22px; height: 1px;
  background: var(--accent);
}

.section-head { max-width: 680px; margin-bottom: clamp(26px, 4vw, 44px); }
.section-head h2 { font-size: clamp(1.9rem, 4.2vw, 3rem); }
.section-head p { color: var(--ink-soft); font-size: 1.06rem; margin-bottom: 0; }
.section-head.center { margin-inline: auto; text-align: center; }
.section-head.center .eyebrow { justify-content: center; }

/* ============================================================
   HERO — split asymmetric
   ============================================================ */
.hero {
  position: relative;
  padding: clamp(34px, 5vw, 64px) 0 clamp(48px, 6vw, 80px);
  overflow: hidden;
}
.hero-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: clamp(30px, 4vw, 54px);
  align-items: center;
}
@media (min-width: 980px) {
  .hero-grid { grid-template-columns: 0.92fr 1.08fr; }
}
.hero-copy { position: relative; z-index: 2; max-width: 560px; }
.hero h1 {
  font-size: clamp(2.6rem, 7.2vw, 4.5rem);
  letter-spacing: -0.045em;
  margin-bottom: 18px;
}
.hero h1 .glow { color: var(--accent); }
.hero-sub {
  font-size: clamp(1.05rem, 2vw, 1.28rem);
  color: var(--ink-soft);
  max-width: 480px;
  margin-bottom: 26px;
}
.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-bottom: 28px;
}
.trust-strip {
  display: flex;
  flex-wrap: wrap;
  gap: 10px 18px;
}
.trust-strip li {
  list-style: none;
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-size: .88rem;
  font-weight: 600;
  color: var(--ink-soft);
}
.trust-strip svg { width: 18px; height: 18px; color: var(--accent-2-deep); flex: none; }

.hero-stats {
  display: flex;
  flex-wrap: wrap;
  gap: clamp(18px, 3vw, 40px);
  margin-top: 30px;
  padding-top: 24px;
  border-top: 1px solid var(--line);
}
.hero-stats .stat { min-width: 92px; }
.hero-stats .stat b {
  font-family: "Helvetica Neue", Helvetica, Arial, sans-serif;
  font-weight: 800;
  font-size: clamp(1.7rem, 3.4vw, 2.4rem);
  letter-spacing: -0.03em;
  color: var(--ink);
  display: block;
  line-height: 1;
}
.hero-stats .stat span {
  font-size: .82rem;
  color: var(--ink-faint);
  font-weight: 600;
}

/* hero preview grid (right side) */
.hero-preview {
  position: relative;
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 14px;
}
.hp-card {
  position: relative;
  background: var(--surface);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  padding: 16px 16px 18px;
  box-shadow: var(--shadow-sm);
  overflow: hidden;
}
.hp-card:nth-child(1) { transform: translateY(-10px); }
.hp-card:nth-child(4) { transform: translateY(-10px); }
.hp-card .hp-img {
  position: relative;
  aspect-ratio: 4 / 3;
  border-radius: 10px;
  overflow: hidden;
  margin-bottom: 12px;
  background: var(--surface-2);
}
.hp-card .hp-img img {
  width: 100%; height: 100%;
  object-fit: cover;
  clip-path: circle(140% at 50% 50%);
}
.hp-card.aperture-in .hp-img img {
  animation: aperture-reveal 1100ms var(--ease) both;
}
@keyframes aperture-reveal {
  from { clip-path: circle(0% at 50% 55%); }
  to   { clip-path: circle(140% at 50% 50%); }
}
.hp-card .hp-tag {
  font-size: .68rem;
  font-weight: 700;
  letter-spacing: .08em;
  text-transform: uppercase;
  color: var(--accent);
}
.hp-card .hp-name { font-weight: 800; font-size: .98rem; letter-spacing: -0.02em; }
.hp-card .hp-price { font-size: .86rem; color: var(--ink-soft); }
.hp-card .hp-price b { color: var(--ink); }

.hero-orbit {
  position: absolute;
  top: -60px; right: -70px;
  width: 320px; height: 320px;
  pointer-events: none;
  opacity: .5;
  z-index: 0;
}
.hero-orbit .orbit-ring {
  position: absolute; inset: 0;
  border: 1px dashed var(--line-strong);
  border-radius: 50%;
  animation: orbit 42s linear infinite;
}
.hero-orbit .orbit-dot {
  position: absolute;
  top: -5px; left: 50%;
  width: 10px; height: 10px;
  margin-left: -5px;
  border-radius: 50%;
  background: var(--accent-2);
  box-shadow: 0 0 12px var(--halo-2);
}
@keyframes orbit { to { transform: rotate(360deg); } }

/* ============================================================
   FILTER / VITRIN GRID
   ============================================================ */
.filter-bar {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-bottom: clamp(22px, 3vw, 36px);
}
.filter-chip {
  font-family: inherit;
  font-size: .9rem;
  font-weight: 600;
  color: var(--ink-soft);
  background: var(--surface);
  border: 1px solid var(--line-strong);
  padding: 9px 18px;
  border-radius: 999px;
  cursor: pointer;
  transition: background 180ms var(--ease), color 180ms var(--ease),
              border-color 180ms var(--ease), transform 180ms var(--ease);
}
.filter-chip:hover { border-color: var(--accent); color: var(--ink); transform: translateY(-1px); }
.filter-chip[aria-pressed="true"] {
  background: var(--accent);
  color: #fff;
  border-color: var(--accent);
}

.product-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(240px, 1fr));
  gap: clamp(14px, 1.8vw, 22px);
}

.product-card {
  position: relative;
  background: var(--surface);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  padding: 16px;
  box-shadow: var(--shadow-sm);
  transition: transform 240ms var(--ease), box-shadow 240ms var(--ease),
              border-color 240ms var(--ease);
  /* corner notch (köşe çentiği) */
  clip-path: polygon(0 0, calc(100% - 20px) 0, 100% 20px, 100% 100%, 0 100%);
}
.product-card.is-hidden { display: none; }
.product-card:hover {
  transform: translateY(-6px);
  box-shadow: var(--shadow-lift);
  border-color: var(--line-strong);
}
.product-card .pc-media {
  position: relative;
  aspect-ratio: 4 / 3;
  border-radius: 10px;
  overflow: hidden;
  background: var(--surface-2);
  margin-bottom: 14px;
}
.product-card .pc-media img {
  width: 100%; height: 100%;
  object-fit: cover;
  transition: transform 500ms var(--ease);
}
.product-card:hover .pc-media img { transform: scale(1.05); }

/* lens diaphragm motif — opens on hover */
.diaphragm {
  position: absolute;
  top: 10px; right: 10px;
  width: 30px; height: 30px;
  z-index: 2;
}
.diaphragm svg { width: 30px; height: 30px; display: block; }
.diaphragm .blade {
  transform-origin: 15px 15px;
  transition: transform 420ms var(--ease), opacity 420ms var(--ease);
}
.product-card:hover .diaphragm .blade { transform: rotate(40deg) scale(.62); opacity: .9; }

.pc-level {
  display: inline-block;
  font-size: .66rem;
  font-weight: 700;
  letter-spacing: .08em;
  text-transform: uppercase;
  padding: 3px 9px;
  border-radius: 999px;
  margin-bottom: 8px;
}
.lvl-baslangic { background: rgba(0,194,168,.14); color: var(--accent-2-deep); }
.lvl-orta { background: rgba(20,99,255,.12); color: var(--accent); }
.lvl-ileri { background: rgba(14,23,38,.08); color: var(--ink); }

.product-card h3 { font-size: 1.06rem; letter-spacing: -0.025em; margin-bottom: 6px; }
.product-card .pc-desc { font-size: .88rem; color: var(--ink-soft); margin-bottom: 12px; }
.product-card .pc-foot {
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
  gap: 10px;
  padding-top: 12px;
  border-top: 1px solid var(--line);
}
.product-card .pc-price b {
  font-family: "Helvetica Neue", Helvetica, Arial, sans-serif;
  font-weight: 800;
  font-size: 1.15rem;
  letter-spacing: -0.02em;
}
.product-card .pc-price span { font-size: .78rem; color: var(--ink-faint); display: block; }
.product-card .pc-link {
  font-size: .84rem;
  font-weight: 700;
  color: var(--accent);
  display: inline-flex;
  align-items: center;
  gap: 5px;
  white-space: nowrap;
}
.product-card .pc-link svg { width: 15px; height: 15px; transition: transform 200ms var(--ease); }
.product-card:hover .pc-link svg { transform: translateX(3px); }

.price-note {
  margin-top: 18px;
  font-size: .82rem;
  color: var(--ink-faint);
}

/* ============================================================
   LEVEL GUIDE (seviye-rehberi)
   ============================================================ */
.level-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 18px;
}
@media (min-width: 760px) { .level-grid { grid-template-columns: repeat(3, 1fr); } }

.level-card {
  position: relative;
  background: var(--surface);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  padding: 26px 24px 28px;
  box-shadow: var(--shadow-sm);
  overflow: hidden;
  transition: transform 240ms var(--ease), box-shadow 240ms var(--ease);
}
.level-card:hover { transform: translateY(-6px); box-shadow: var(--shadow-lift); }
.level-card .lc-icon {
  width: 50px; height: 50px;
  display: grid; place-items: center;
  border-radius: 14px;
  background: var(--surface-2);
  margin-bottom: 16px;
}
.level-card .lc-icon svg { width: 26px; height: 26px; color: var(--accent); }
.level-card.tier-2 .lc-icon svg { color: var(--accent-2-deep); }
.level-card h3 { font-size: 1.3rem; }
.level-card .lc-meta {
  font-size: .8rem;
  font-weight: 700;
  letter-spacing: .04em;
  text-transform: uppercase;
  color: var(--accent);
  margin-bottom: 12px;
  display: block;
}
.level-card ul { list-style: none; padding: 0; margin: 14px 0 0; }
.level-card li {
  position: relative;
  padding: 7px 0 7px 26px;
  font-size: .92rem;
  color: var(--ink-soft);
  border-top: 1px solid var(--line);
}
.level-card li:first-child { border-top: 0; }
.level-card li::before {
  content: "";
  position: absolute;
  left: 0; top: 13px;
  width: 12px; height: 12px;
  border-radius: 50%;
  border: 2px solid var(--accent-2);
}

/* ============================================================
   RENTAL FLOW STRIP (nasil-calisir) — vertical timeline
   ============================================================ */
.flow {
  position: relative;
  display: grid;
  gap: 0;
}
.flow-step {
  position: relative;
  display: grid;
  grid-template-columns: 56px 1fr;
  gap: 20px;
  padding: 0 0 32px;
}
.flow-step:last-child { padding-bottom: 0; }
.flow-rail {
  position: relative;
  display: flex;
  flex-direction: column;
  align-items: center;
}
.flow-num {
  width: 46px; height: 46px;
  flex: none;
  display: grid; place-items: center;
  border-radius: 50%;
  background: var(--accent);
  color: #fff;
  font-family: "Helvetica Neue", Helvetica, Arial, sans-serif;
  font-weight: 800;
  font-size: 1.1rem;
  box-shadow: 0 12px 24px -14px var(--halo);
  z-index: 2;
}
.flow-step:not(:last-child) .flow-rail::after {
  content: "";
  position: absolute;
  top: 46px; bottom: -32px;
  width: 2px;
  background: linear-gradient(var(--line-strong), var(--line));
}
.flow-body {
  background: var(--surface);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  padding: 20px 22px;
  box-shadow: var(--shadow-sm);
  transition: transform 240ms var(--ease), box-shadow 240ms var(--ease);
}
.flow-step:hover .flow-body { transform: translateY(-3px); box-shadow: var(--shadow-md); }
.flow-body .fb-when {
  font-size: .74rem;
  font-weight: 700;
  letter-spacing: .08em;
  text-transform: uppercase;
  color: var(--accent-2-deep);
  margin-bottom: 6px;
  display: block;
}
.flow-body h3 { font-size: 1.16rem; margin-bottom: 6px; }
.flow-body p { font-size: .94rem; color: var(--ink-soft); margin: 0; }

/* ============================================================
   PACKAGES (pricing tiers)
   ============================================================ */
.pkg-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 20px;
}
@media (min-width: 820px) { .pkg-grid { grid-template-columns: repeat(3, 1fr); } }

.pkg-card {
  position: relative;
  background: var(--surface);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  padding: 28px 24px 26px;
  box-shadow: var(--shadow-sm);
  display: flex;
  flex-direction: column;
  transition: transform 240ms var(--ease), box-shadow 240ms var(--ease);
}
.pkg-card:hover { transform: translateY(-6px); box-shadow: var(--shadow-lift); }
.pkg-card.featured {
  border-color: var(--accent);
  box-shadow: 0 26px 50px -28px var(--halo);
}
.pkg-card.featured::before {
  content: "En çok seçilen";
  position: absolute;
  top: -12px; left: 24px;
  background: var(--accent);
  color: #fff;
  font-size: .7rem;
  font-weight: 700;
  letter-spacing: .06em;
  padding: 5px 12px;
  border-radius: 999px;
}
.pkg-card h3 { font-size: 1.34rem; margin-bottom: 4px; }
.pkg-card .pkg-for { font-size: .86rem; color: var(--ink-faint); margin-bottom: 16px; }
.pkg-price {
  display: flex;
  align-items: baseline;
  gap: 6px;
  margin-bottom: 4px;
}
.pkg-price b {
  font-family: "Helvetica Neue", Helvetica, Arial, sans-serif;
  font-weight: 800;
  font-size: 2.1rem;
  letter-spacing: -0.03em;
}
.pkg-price span { font-size: .9rem; color: var(--ink-soft); }
.pkg-card .pkg-note { font-size: .78rem; color: var(--ink-faint); margin-bottom: 18px; }
.pkg-card ul { list-style: none; padding: 0; margin: 0 0 8px; }
.pkg-card li {
  position: relative;
  padding: 8px 0 8px 26px;
  font-size: .9rem;
  color: var(--ink-soft);
  border-top: 1px solid var(--line);
}
.pkg-card li.inc::before {
  content: "";
  position: absolute; left: 2px; top: 13px;
  width: 14px; height: 8px;
  border-left: 2px solid var(--accent-2-deep);
  border-bottom: 2px solid var(--accent-2-deep);
  transform: rotate(-45deg);
}
.pkg-card li.exc { color: var(--ink-faint); }
.pkg-card li.exc::before {
  content: "—";
  position: absolute; left: 4px; top: 8px;
  color: var(--ink-faint);
  font-weight: 700;
}
.pkg-card .btn { margin-top: auto; width: 100%; }

/* ============================================================
   ADD-ONS (deneyim-eklentileri)
   ============================================================ */
.addon-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 18px;
}
.addon-card {
  display: grid;
  grid-template-columns: 48px 1fr;
  gap: 16px;
  align-items: start;
  background: var(--surface);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  padding: 22px;
  box-shadow: var(--shadow-sm);
  transition: transform 240ms var(--ease), box-shadow 240ms var(--ease);
}
.addon-card:hover { transform: translateY(-4px); box-shadow: var(--shadow-md); }
.addon-card .ac-icon {
  grid-row: span 2;
  width: 48px; height: 48px;
  display: grid; place-items: center;
  border-radius: 14px;
  background: var(--surface-2);
}
.addon-card .ac-icon svg { width: 24px; height: 24px; color: var(--accent); }
.addon-card h3 { font-size: 1.08rem; margin: 0 0 4px; min-width: 0; }
.addon-card p { font-size: .9rem; color: var(--ink-soft); margin: 0 0 8px; min-width: 0; }
.addon-card .ac-price {
  font-weight: 800;
  font-size: .96rem;
  color: var(--accent);
  font-variant-numeric: tabular-nums;
}

/* ============================================================
   BAND (contrast section)
   ============================================================ */
.band {
  background: var(--ink);
  color: #DCE6F5;
  border-radius: 22px;
  padding: clamp(34px, 5vw, 60px);
  position: relative;
  overflow: hidden;
}
.band h2 { color: #fff; }
.band .eyebrow { color: var(--accent-2); }
.band .eyebrow::before { background: var(--accent-2); }
.band p { color: #AEBED6; }
.band-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 30px;
  align-items: center;
}
@media (min-width: 880px) { .band-grid { grid-template-columns: 1.1fr .9fr; } }
.band-stats {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 22px;
}
.band-stats .bs {
  border: 1px solid rgba(255,255,255,.14);
  border-radius: 14px;
  padding: 20px;
  background: rgba(255,255,255,.03);
}
.band-stats .bs b {
  font-family: "Helvetica Neue", Helvetica, Arial, sans-serif;
  font-weight: 800;
  font-size: clamp(1.7rem, 3.5vw, 2.4rem);
  letter-spacing: -0.03em;
  color: #fff;
  display: block;
  line-height: 1;
  font-variant-numeric: tabular-nums;
}
.band-stats .bs span { font-size: .84rem; color: #9CB0CD; }

/* constellation svg in band */
.constellation { width: 100%; height: auto; max-width: 420px; margin-inline: auto; display: block; }
.constellation line, .constellation polyline {
  stroke: var(--accent-2);
  stroke-width: 1.4;
  fill: none;
  stroke-dasharray: 1;
  stroke-dashoffset: 1;
  opacity: .85;
}
.constellation.is-in line, .constellation.is-in polyline {
  animation: draw-line 1500ms var(--ease) forwards;
}
@keyframes draw-line { to { stroke-dashoffset: 0; } }
.constellation circle {
  fill: #fff;
  opacity: 0;
  transform-box: fill-box;
  transform-origin: center;
}
.constellation.is-in circle {
  animation: star-pop 600ms var(--ease) forwards;
  animation-delay: calc(var(--i, 0) * 110ms + 600ms);
  filter: drop-shadow(0 0 4px var(--halo-2));
}
@keyframes star-pop { from { opacity: 0; transform: scale(.2); } to { opacity: 1; transform: scale(1); } }

/* ============================================================
   FAQ
   ============================================================ */
.faq-list { max-width: 820px; margin-inline: auto; }
.faq-item {
  background: var(--surface);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  margin-bottom: 12px;
  box-shadow: var(--shadow-sm);
  overflow: hidden;
}
.faq-item summary {
  list-style: none;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  padding: 18px clamp(18px, 3vw, 26px);
  font-weight: 700;
  font-size: 1.04rem;
  letter-spacing: -0.01em;
}
.faq-item summary::-webkit-details-marker { display: none; }
.faq-item summary .faq-ico {
  flex: none;
  width: 28px; height: 28px;
  position: relative;
  border-radius: 50%;
  border: 1.6px solid var(--line-strong);
  transition: border-color 240ms var(--ease), transform 360ms var(--ease);
}
.faq-item summary .faq-ico::before,
.faq-item summary .faq-ico::after {
  content: "";
  position: absolute;
  background: var(--accent);
  border-radius: 2px;
  top: 50%; left: 50%;
}
.faq-item summary .faq-ico::before { width: 12px; height: 2px; transform: translate(-50%, -50%); }
.faq-item summary .faq-ico::after { width: 2px; height: 12px; transform: translate(-50%, -50%); transition: transform 360ms var(--ease), opacity 240ms; }
.faq-item[open] summary .faq-ico { border-color: var(--accent); transform: rotate(90deg); }
.faq-item[open] summary .faq-ico::after { opacity: 0; }
.faq-item > .answer {
  height: 0;
  padding: 0 clamp(18px, 3vw, 26px);
  overflow: hidden;
  transition: height 360ms var(--ease-2), padding-block-end 360ms var(--ease-2);
}
.faq-item[open] > .answer {
  height: auto;
  padding-block-end: 22px;
}
.faq-item > .answer p { margin: 0; color: var(--ink-soft); }
@media (prefers-reduced-motion: reduce) {
  .faq-item > .answer { transition: none; }
}

/* ============================================================
   TESTIMONIALS
   ============================================================ */
.testi-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 18px;
}
@media (min-width: 760px) { .testi-grid { grid-template-columns: repeat(3, 1fr); } }
.testi-card {
  background: var(--surface);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  padding: 24px;
  box-shadow: var(--shadow-sm);
  display: flex;
  flex-direction: column;
}
.testi-card .stars { color: var(--accent-2); letter-spacing: 2px; font-size: .9rem; margin-bottom: 10px; }
.testi-card p { font-size: .96rem; color: var(--ink); margin-bottom: 16px; }
.testi-card .who { margin-top: auto; }
.testi-card .who b { display: block; font-size: .94rem; }
.testi-card .who span { font-size: .82rem; color: var(--ink-faint); }

/* ============================================================
   CTA STRIP
   ============================================================ */
.cta-strip {
  background: linear-gradient(120deg, var(--accent), #3d7bff);
  border-radius: 22px;
  padding: clamp(32px, 5vw, 56px);
  color: #fff;
  text-align: center;
}
.cta-strip h2 { color: #fff; font-size: clamp(1.7rem, 4vw, 2.6rem); }
.cta-strip p { color: rgba(255,255,255,.9); max-width: 540px; margin-inline: auto; }
.cta-strip .btn-ghost {
  background: #fff; color: var(--accent); border-color: #fff;
}
.cta-strip .btn-ghost:hover { background: var(--ink); color: #fff; border-color: var(--ink); }
.cta-strip .actions { display: flex; flex-wrap: wrap; gap: 12px; justify-content: center; margin-top: 22px; }

/* ============================================================
   NOTES BLOCK (atölye notları)
   ============================================================ */
.notes-list { display: grid; gap: 12px; max-width: 720px; }
.note-item {
  display: grid;
  grid-template-columns: auto 1fr;
  gap: 16px;
  align-items: baseline;
  padding: 14px 18px;
  background: var(--surface);
  border: 1px solid var(--line);
  border-radius: var(--radius-sm);
}
.note-item time {
  font-size: .8rem;
  font-weight: 700;
  color: var(--accent);
  white-space: nowrap;
  font-variant-numeric: tabular-nums;
}
.note-item span { font-size: .94rem; color: var(--ink-soft); min-width: 0; }

/* ============================================================
   FOOTER
   ============================================================ */
.site-footer {
  background: var(--ink);
  color: #AEBED6;
  padding: clamp(44px, 6vw, 72px) 0 28px;
  margin-top: clamp(40px, 6vw, 80px);
}
.footer-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 32px;
}
@media (min-width: 720px) { .footer-grid { grid-template-columns: 1.4fr 1fr 1fr; } }
@media (min-width: 1000px) { .footer-grid { grid-template-columns: 1.6fr 1fr 1fr 1.2fr; } }
.site-footer h4 { color: #fff; font-size: .9rem; letter-spacing: .04em; text-transform: uppercase; margin-bottom: 16px; }
.site-footer a { color: #AEBED6; }
.site-footer a:hover { color: #fff; }
.footer-brand .brand { color: #fff; margin-bottom: 14px; }
.footer-brand .brand b { color: #fff; }
.footer-brand p { font-size: .9rem; color: #92A6C4; max-width: 300px; }
.footer-links ul { list-style: none; padding: 0; margin: 0; display: grid; gap: 10px; }
.footer-links a { font-size: .92rem; }
.footer-contact div { display: flex; gap: 10px; align-items: flex-start; margin-bottom: 12px; font-size: .9rem; }
.footer-contact svg { width: 17px; height: 17px; color: var(--accent-2); flex: none; margin-top: 3px; }
.footer-contact a, .footer-contact span { word-break: break-word; }
.footer-bottom {
  margin-top: 36px;
  padding-top: 22px;
  border-top: 1px solid rgba(255,255,255,.12);
  display: flex;
  flex-wrap: wrap;
  gap: 12px 24px;
  justify-content: space-between;
  align-items: center;
  font-size: .82rem;
  color: #7E92B0;
}
.footer-bottom .legal-links { display: flex; flex-wrap: wrap; gap: 14px; }

/* ============================================================
   CONTACT PAGE
   ============================================================ */
.page-hero {
  padding: clamp(36px, 5vw, 60px) 0 clamp(20px, 3vw, 36px);
}
.page-hero .eyebrow { margin-bottom: 12px; }
.page-hero h1 { font-size: clamp(2.2rem, 5.5vw, 3.6rem); }
.page-hero p { color: var(--ink-soft); font-size: 1.08rem; max-width: 620px; }

.channel-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
  gap: 16px;
}
.channel-card {
  background: var(--surface);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  padding: 22px;
  box-shadow: var(--shadow-sm);
  transition: transform 240ms var(--ease), box-shadow 240ms var(--ease);
}
.channel-card:hover { transform: translateY(-3px); box-shadow: var(--shadow-md); }
.channel-card .cc-ico {
  width: 48px; height: 48px;
  display: grid; place-items: center;
  border-radius: 14px;
  background: var(--surface-2);
  margin-bottom: 14px;
}
.channel-card .cc-ico svg { width: 24px; height: 24px; color: var(--accent); }
.channel-card h3 { font-size: 1.04rem; margin-bottom: 4px; }
.channel-card a, .channel-card .cc-val {
  display: block;
  font-weight: 700;
  color: var(--ink);
  word-break: break-word;
  margin-bottom: 4px;
}
.channel-card a:hover { color: var(--accent); }
.channel-card .cc-sub { font-size: .84rem; color: var(--ink-faint); }

.hours-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(150px, 1fr));
  gap: 10px;
}
.hours-cell {
  background: var(--surface);
  border: 1px solid var(--line);
  border-radius: var(--radius-sm);
  padding: 14px 16px;
  font-variant-numeric: tabular-nums;
}
.hours-cell.today { border-color: var(--accent); box-shadow: 0 0 0 1px var(--accent) inset; }
.hours-cell b { display: block; font-size: .9rem; margin-bottom: 2px; }
.hours-cell span { font-size: .9rem; color: var(--ink-soft); }

/* ============================================================
   FORM
   ============================================================ */
.form-wrap {
  background: var(--surface);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  padding: clamp(22px, 3.4vw, 38px);
  box-shadow: var(--shadow-sm);
}
.form-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 16px;
}
@media (min-width: 640px) {
  .form-grid { grid-template-columns: 1fr 1fr; }
  .form-grid .field-full { grid-column: 1 / -1; }
}
.field { display: flex; flex-direction: column; gap: 6px; }
.field > span { font-size: .86rem; font-weight: 600; color: var(--ink-soft); }
.field > span em { font-style: normal; font-weight: 400; color: var(--ink-faint); }
.field input,
.field select,
.field textarea {
  font-family: inherit;
  font-size: 1rem;
  color: var(--ink);
  background: var(--bg);
  border: 1px solid var(--line-strong);
  border-radius: 10px;
  padding: 12px 14px;
  width: 100%;
  transition: border-color 200ms var(--ease), box-shadow 200ms var(--ease);
}
.field textarea { min-height: 130px; resize: vertical; }
.field input:focus,
.field select:focus,
.field textarea:focus {
  outline: none;
  border-color: var(--accent);
  box-shadow: 0 0 0 3px var(--halo);
}
.field.kvkk {
  flex-direction: row;
  align-items: flex-start;
  gap: 10px;
  font-size: .9rem;
  color: var(--ink-soft);
}
.field input[type="checkbox"] {
  appearance: auto;
  -webkit-appearance: auto;
  width: 18px; height: 18px;
  min-width: 18px; min-height: 18px;
  padding: 0; border: 0; margin: 2px 0 0;
  accent-color: var(--accent);
}
.field.kvkk a { font-weight: 600; }
.form-wrap .btn { margin-top: 6px; width: 100%; }
@media (min-width: 640px) { .form-wrap .btn-submit { width: auto; } }

/* ============================================================
   TEAM
   ============================================================ */
.team-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 20px;
}
@media (min-width: 760px) { .team-grid { grid-template-columns: repeat(3, 1fr); } }
.team-card {
  background: var(--surface);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  overflow: hidden;
  box-shadow: var(--shadow-sm);
  transition: transform 240ms var(--ease), box-shadow 240ms var(--ease);
}
.team-card:hover { transform: translateY(-5px); box-shadow: var(--shadow-lift); }
.team-card .tc-photo { aspect-ratio: 4 / 4; overflow: hidden; background: var(--surface-2); }
.team-card .tc-photo img { width: 100%; height: 100%; object-fit: cover; }
.team-card .tc-body { padding: 20px 22px 24px; }
.team-card h3 { font-size: 1.16rem; margin-bottom: 2px; }
.team-card .tc-role { font-size: .84rem; font-weight: 700; color: var(--accent); margin-bottom: 12px; }
.team-card p { font-size: .9rem; color: var(--ink-soft); margin: 0; }

/* ============================================================
   PROSE (legal pages)
   ============================================================ */
.prose { max-width: 820px; }
.prose h2 { font-size: clamp(1.4rem, 3vw, 1.9rem); margin-top: 1.8em; }
.prose h3 { font-size: 1.16rem; margin-top: 1.4em; }
.prose p, .prose li { color: var(--ink-soft); }
.prose ul { padding-left: 1.2em; }
.prose li { margin-bottom: .4em; }
.prose .updated { font-size: .86rem; color: var(--ink-faint); }

/* ============================================================
   TABLE SCROLL
   ============================================================ */
.table-scroll {
  display: block; width: 100%; max-width: 100%; min-width: 0;
  overflow-x: auto; -webkit-overflow-scrolling: touch;
  margin: 18px 0;
  border: 1px solid var(--line);
  border-radius: 8px;
}
.table-scroll > table { margin: 0 !important; min-width: 480px; width: 100%; border-collapse: collapse; }
:where(*:has(> .table-scroll), *:has(> * > .table-scroll), *:has(> * > * > .table-scroll)) { min-width: 0; }
.table-scroll th, .table-scroll td {
  text-align: left;
  padding: 12px 16px;
  border-bottom: 1px solid var(--line);
  font-size: .92rem;
}
.table-scroll th { background: var(--surface-2); font-weight: 700; color: var(--ink); }
.table-scroll td { color: var(--ink-soft); }
.table-scroll tr:last-child td { border-bottom: 0; }

/* ============================================================
   THANK YOU / 404
   ============================================================ */
.centered-page {
  min-height: calc(100vh - var(--header-h) - 200px);
  display: grid;
  place-items: center;
  text-align: center;
  padding: clamp(40px, 8vw, 100px) 0;
}
.centered-page .inner { max-width: 560px; }
.centered-page .big-mark {
  width: 88px; height: 88px;
  margin: 0 auto 24px;
  display: grid; place-items: center;
  border-radius: 50%;
  background: rgba(0,194,168,.12);
}
.centered-page .big-mark svg { width: 44px; height: 44px; color: var(--accent-2-deep); }
.centered-page h1 { font-size: clamp(2rem, 5vw, 3.2rem); }
.centered-page p { color: var(--ink-soft); font-size: 1.06rem; }
.error-code {
  font-family: "Helvetica Neue", Helvetica, Arial, sans-serif;
  font-weight: 800;
  font-size: clamp(5rem, 18vw, 11rem);
  letter-spacing: -0.05em;
  color: var(--accent);
  line-height: .9;
  margin-bottom: 8px;
}

/* ============================================================
   REVEAL
   ============================================================ */
.reveal {
  opacity: 0;
  transform: translateY(28px);
  transition: opacity 600ms var(--ease), transform 600ms var(--ease);
  transition-delay: calc(var(--i, 0) * 80ms);
}
.reveal.is-in { opacity: 1; transform: none; }
html.no-js .reveal { opacity: 1; transform: none; }
@media (prefers-reduced-motion: reduce) {
  .reveal { opacity: 1 !important; transform: none !important; transition: none !important; }
  .hero-orbit .orbit-ring, .hp-card.aperture-in .hp-img img,
  .constellation.is-in line, .constellation.is-in circle,
  .twinkle { animation: none !important; }
  .product-card, .level-card, .pkg-card, .channel-card { transition: none; }
}

/* twinkle dots */
.twinkle { animation: twinkle 4s var(--ease-2) infinite; animation-delay: calc(var(--i,0) * 600ms); }
@keyframes twinkle { 0%,100% { opacity: 1; } 50% { opacity: .35; transform: scale(.82); } }

/* ============================================================
   COOKIE BANNER
   ============================================================ */
.cookie-banner {
  position: fixed;
  bottom: 16px; left: 16px; right: 16px;
  max-width: 520px;
  margin: 0 auto;
  background: var(--surface);
  border: 1px solid var(--line-strong);
  border-radius: var(--radius);
  box-shadow: 0 24px 60px -24px rgba(14,23,38,.5);
  padding: 20px 22px;
  z-index: 9999;
  transform: translateY(140%);
  opacity: 0;
  transition: transform 280ms var(--ease), opacity 240ms var(--ease);
}
.cookie-banner.is-visible { transform: translateY(0); opacity: 1; }
.cookie-banner h2 { font-size: 1.04rem; margin-bottom: 6px; }
.cookie-banner p { font-size: .88rem; color: var(--ink-soft); margin-bottom: 14px; }
.cookie-banner p a { font-weight: 600; }
.cookie-actions { display: flex; flex-wrap: wrap; gap: 10px; }
.cookie-actions button {
  font-family: inherit;
  font-weight: 700;
  font-size: .88rem;
  min-height: 44px;
  padding: 10px 18px;
  border-radius: 999px;
  cursor: pointer;
  border: 1px solid var(--line-strong);
  transition: background 180ms var(--ease), color 180ms var(--ease),
              border-color 180ms var(--ease), transform 180ms var(--ease);
}
/* Eşit ağırlık: "Kabul et" ve "Reddet" aynı genişlikte ve aynı vurguda
   (karanlık desen yok — reddetmek kabul etmek kadar kolay). */
.cookie-actions [data-consent="accept"],
.cookie-actions [data-consent="reject"] { flex: 1 1 0; min-width: 130px; }
.cookie-actions [data-consent="accept"] { background: var(--accent); color: #fff; border-color: var(--accent); }
.cookie-actions [data-consent="accept"]:hover { background: var(--accent-press); color: #fff; transform: translateY(-1px); }
.cookie-actions [data-consent="reject"] { background: var(--surface-2); color: var(--ink); border-color: var(--line-strong); box-shadow: var(--shadow-sm); }
.cookie-actions [data-consent="reject"]:hover { background: var(--surface); border-color: var(--accent); color: var(--accent); transform: translateY(-1px); }
.cookie-actions [data-consent="settings"] { flex: 1 1 100%; background: transparent; color: var(--ink-soft); border-color: transparent; }
.cookie-actions [data-consent="settings"]:hover { color: var(--accent); }
@media (min-width: 640px) {
  .cookie-banner { left: 24px; right: auto; max-width: 420px; }
}

/* ============================================================
   UTIL
   ============================================================ */
.mt-s { margin-top: 14px; }
.mt-m { margin-top: 24px; }
.lead { font-size: 1.12rem; color: var(--ink-soft); }
.split-2 { display: grid; gap: 26px; }
@media (min-width: 880px) { .split-2 { grid-template-columns: 1.1fr .9fr; align-items: center; } }
.media-frame {
  position: relative;
  border-radius: 18px;
  overflow: hidden;
  border: 1px solid var(--line);
  box-shadow: var(--shadow-md);
  max-width: clamp(900px, 90%, 1280px);
}
.media-frame img { width: 100%; height: 100%; object-fit: cover; aspect-ratio: 16 / 11; }
.badge-row { display: flex; flex-wrap: wrap; gap: 10px; margin-top: 16px; }
.badge {
  display: inline-flex; align-items: center; gap: 7px;
  font-size: .82rem; font-weight: 600;
  background: var(--surface); border: 1px solid var(--line);
  padding: 7px 13px; border-radius: 999px; color: var(--ink-soft);
}
.badge svg { width: 15px; height: 15px; color: var(--accent-2-deep); }

.scroll-progress{position:fixed;top:0;left:0;height:3px;width:0;background:var(--accent);z-index:9998;transition:width 80ms linear;pointer-events:none}

/* header-cta-padding-guard v1 */
.nav-desktop a.nav-cta, header a.nav-cta, .site-header a.nav-cta {
  padding: 10px 18px;
}

/* drawer-cta-color-guard v1 */
.drawer a.nav-cta, .drawer .nav-cta, .mobile-menu a.nav-cta, nav[class*=mobile] a.nav-cta {
  color: #fff !important;
}
