/* ============================================================
   Sıfır Nokta Apne Kulübü — styles
   Palette: bg #E6F2F1 / surface #FFFFFF / ink #0E1F1E
            accent #0E7C7B / accent-2 #E84393
   ============================================================ */

:root {
  --bg: #E6F2F1;
  --surface: #FFFFFF;
  --surface-2: #F1F8F7;
  --ink: #0E1F1E;
  --ink-soft: #3C5350;
  --ink-faint: #6E827F;
  --accent: #0E7C7B;
  --accent-deep: #0A5A59;
  --accent-2: #E84393;
  --line: rgba(14, 31, 30, 0.12);
  --line-strong: rgba(14, 31, 30, 0.22);
  --deep-1: #1E6F6E;
  --deep-2: #0E3D4A;
  --deep-3: #07212E;
  --header-h: 72px;
  --maxw: 1240px;
  --radius: 14px;
  --ease: cubic-bezier(.2,.7,.2,1);
  --ease-2: cubic-bezier(.4,0,.2,1);

  interpolate-size: allow-keywords;
}

*, *::before, *::after { 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: 'DM Sans', system-ui, -apple-system, Segoe UI, Roboto, sans-serif;
  font-size: 16px;
  line-height: 1.65;
  font-weight: 400;
  -webkit-font-smoothing: antialiased;
}

h1, h2, h3, h4, h5 {
  font-family: 'Outfit', system-ui, sans-serif;
  font-weight: 600;
  line-height: 1.1;
  color: var(--ink);
  margin: 0 0 .5em;
  letter-spacing: -0.012em;
}

p { margin: 0 0 1em; }
a { color: var(--accent); text-decoration: none; }
a:hover { color: var(--accent-deep); }

.mono { font-family: 'DM Mono', ui-monospace, Menlo, Consolas, monospace; }

img { max-width: 100%; height: auto; display: block; }

.container {
  width: 100%;
  max-width: var(--maxw);
  margin: 0 auto;
  padding-inline: clamp(16px, 4vw, 32px);
}

main { padding-top: var(--header-h); }

section { position: relative; }

/* anchored sections clear the fixed header on cross-page jumps */
:where(section[id], main [id]) { scroll-margin-top: calc(var(--header-h) + 16px); }

.eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-family: 'DM Mono', monospace;
  text-transform: uppercase;
  letter-spacing: 0.18em;
  font-size: .72rem;
  color: var(--accent);
  margin: 0 0 14px;
}
.eyebrow::before {
  content: "";
  width: 22px; height: 1px;
  background: var(--accent-2);
}

.skip-link {
  position: absolute;
  left: -9999px;
  top: 0;
  background: var(--ink);
  color: #fff;
  padding: 10px 16px;
  z-index: 2000;
  border-radius: 0 0 8px 0;
}
.skip-link:focus { left: 0; color: #fff; }

a:focus-visible, button:focus-visible, input:focus-visible,
select:focus-visible, textarea:focus-visible, summary:focus-visible {
  outline: 2px solid var(--accent);
  outline-offset: 2px;
}

/* ============================================================
   HEADER
   ============================================================ */
.site-header {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 1080;
  height: var(--header-h);
  background: rgba(230, 242, 241, 0.92);
  backdrop-filter: saturate(140%) blur(8px);
  border-bottom: 1px solid transparent;
  transition: background .24s var(--ease), box-shadow .24s var(--ease), height .24s var(--ease);
}
.site-header.is-scrolled {
  background: rgba(255, 255, 255, 0.97);
  box-shadow: 0 8px 24px -16px rgba(0,0,0,.28);
  border-bottom-color: var(--line);
}
.header-inner {
  height: 100%;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 18px;
}
.brand {
  display: inline-flex;
  align-items: center;
  gap: 11px;
  font-family: 'Outfit', sans-serif;
  font-weight: 600;
  font-size: 1.06rem;
  color: var(--ink);
  letter-spacing: -0.01em;
}
.brand:hover { color: var(--ink); }
.brand-badge {
  width: 38px; height: 38px;
  flex: 0 0 38px;
  border-radius: 50%;
  background: radial-gradient(circle at 35% 30%, var(--accent) 0%, var(--accent-deep) 70%);
  display: grid;
  place-items: center;
  box-shadow: inset 0 0 0 2px rgba(255,255,255,.25), 0 4px 12px -6px var(--accent-deep);
}
.brand-badge svg { width: 22px; height: 22px; }
.brand small {
  display: block;
  font-family: 'DM Mono', monospace;
  font-size: .58rem;
  letter-spacing: .14em;
  text-transform: uppercase;
  color: var(--ink-faint);
  font-weight: 400;
}

.nav-desktop {
  display: none;
  align-items: center;
  gap: 26px;
}
.nav-desktop a {
  position: relative;
  font-size: .92rem;
  color: var(--ink-soft);
  font-weight: 500;
  padding: 6px 0;
}
.nav-desktop a::after {
  content: "";
  position: absolute;
  left: 0; bottom: -2px;
  width: 0; height: 2px;
  background: var(--accent-2);
  transition: width .26s var(--ease);
}
.nav-desktop a:hover { color: var(--ink); }
.nav-desktop a:hover::after,
.nav-desktop a.is-active::after { width: 100%; }
.nav-desktop a.is-active { color: var(--accent); }

.nav-cta {
  display: inline-flex;
  align-items: center;
  gap: 7px;
  background: var(--ink);
  color: #fff;
  padding: 10px 20px;
  border-radius: 999px;
  font-weight: 600;
  font-size: .9rem;
  transition: background .2s var(--ease), color .2s var(--ease), transform .2s var(--ease);
}
.nav-desktop .nav-cta::after { display: none; }
.nav-desktop .nav-cta:hover,
.nav-cta:hover, .nav-cta:focus-visible {
  background: var(--accent);
  color: #fff;
  transform: translateY(-2px);
}

/* hamburger */
.nav-toggle {
  position: relative;
  z-index: 1100;
  width: 46px; height: 46px;
  border: 1px solid var(--line-strong);
  border-radius: 12px;
  background: var(--surface);
  display: inline-flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 5px;
  cursor: pointer;
  padding: 0;
}
.nav-toggle span {
  display: block;
  width: 20px; height: 2px;
  background: var(--ink);
  border-radius: 2px;
  transition: transform .3s var(--ease), opacity .2s 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: 1024px) {
  .nav-desktop { display: flex; }
  .nav-toggle { display: none; }
}

/* drawer */
.drawer {
  position: fixed;
  top: 0; right: 0; bottom: 0;
  width: min(360px, 92vw);
  background: var(--surface);
  z-index: 1050;
  transform: translateX(100%);
  transition: transform .32s cubic-bezier(.2,.7,.2,1);
  padding: calc(var(--header-h) + 18px) 26px 28px;
  display: flex;
  flex-direction: column;
  gap: 4px;
  box-shadow: -20px 0 50px -30px rgba(0,0,0,.5);
}
.drawer.is-open { transform: translateX(0); }
.drawer a {
  font-family: 'Outfit', sans-serif;
  font-size: 1.18rem;
  font-weight: 600;
  color: var(--ink);
  padding: 14px 6px;
  border-bottom: 1px solid var(--line);
}
.drawer a:hover, .drawer a.is-active { color: var(--accent); }
.drawer .nav-cta {
  margin-top: 18px;
  justify-content: center;
  font-size: 1rem;
  border-bottom: none;
}
.drawer .nav-cta:hover { color: #fff; }
.drawer-backdrop {
  position: fixed;
  inset: 0;
  background: rgba(7, 33, 46, 0.55);
  z-index: 1040;
  opacity: 0;
  visibility: hidden;
  transition: opacity .24s var(--ease), visibility .24s var(--ease);
}
.drawer-backdrop.is-open { opacity: 1; visibility: visible; }

/* ============================================================
   BUTTONS
   ============================================================ */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 9px;
  font-family: 'Outfit', sans-serif;
  font-weight: 600;
  font-size: .96rem;
  padding: 14px 26px;
  border-radius: 999px;
  border: 1px solid transparent;
  cursor: pointer;
  transition: background .2s var(--ease), color .2s var(--ease),
              transform .2s var(--ease), box-shadow .2s var(--ease);
}
.btn-primary {
  background: var(--accent);
  color: #fff;
  box-shadow: 0 14px 30px -16px var(--accent-deep);
}
.btn-primary:hover, .btn-primary:focus-visible {
  background: var(--accent-deep);
  color: #fff;
  transform: translateY(-2px);
}
.btn-primary::after {
  content: "→";
  transition: transform .22s var(--ease);
}
.btn-primary:hover::after { transform: translateX(4px); }
.btn-ghost {
  background: transparent;
  color: var(--ink);
  border-color: var(--line-strong);
}
.btn-ghost:hover, .btn-ghost:focus-visible {
  background: var(--surface);
  color: var(--accent);
  border-color: var(--accent);
  transform: translateY(-2px);
}
.btn-pink {
  background: var(--accent-2);
  color: #fff;
}
.btn-pink:hover, .btn-pink:focus-visible {
  background: #cf2f7e;
  color: #fff;
  transform: translateY(-2px);
}

/* ============================================================
   HERO
   ============================================================ */
.hero {
  position: relative;
  overflow: hidden;
  background: linear-gradient(180deg, #cfe9e7 0%, var(--bg) 100%);
}
.hero-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: clamp(28px, 5vw, 56px);
  align-items: center;
  padding: clamp(40px, 7vw, 84px) 0 clamp(48px, 7vw, 88px);
}
@media (min-width: 980px) {
  .hero-grid { grid-template-columns: 1.05fr 0.95fr; }
}
.hero-copy h1 {
  font-size: clamp(2.6rem, 6.4vw, 4.5rem);
  line-height: 1.02;
  margin-bottom: 18px;
}
.hero-copy h1 .hl {
  color: var(--accent);
  position: relative;
}
.hero-sub {
  font-size: clamp(1.04rem, 2.1vw, 1.22rem);
  color: var(--ink-soft);
  max-width: 36ch;
  margin-bottom: 26px;
}
.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
  margin-bottom: 26px;
}
.trust-strip {
  display: flex;
  flex-wrap: wrap;
  gap: 10px 18px;
  padding-top: 8px;
}
.trust-strip span {
  display: inline-flex;
  align-items: center;
  gap: 7px;
  font-size: .82rem;
  color: var(--ink-soft);
  font-weight: 500;
}
.trust-strip svg { width: 17px; height: 17px; color: var(--accent); flex: 0 0 17px; }

/* hero kinetic word stagger */
.hero-copy h1 .word {
  display: inline-block;
  opacity: 0;
  transform: translateY(22px);
  animation: heroWord .7s var(--ease) forwards;
}
.no-js .hero-copy h1 .word { opacity: 1; transform: none; animation: none; }
@keyframes heroWord { to { opacity: 1; transform: none; } }
@media (prefers-reduced-motion: reduce) {
  .hero-copy h1 .word { opacity: 1; transform: none; animation: none; }
}

/* hero pool / breath module */
.pool {
  position: relative;
  border-radius: 22px;
  overflow: hidden;
  min-height: clamp(340px, 46vw, 480px);
  background:
    linear-gradient(180deg, #2aa3a0 0%, var(--accent) 22%, var(--deep-2) 78%, var(--deep-3) 100%);
  box-shadow: 0 40px 80px -40px rgba(7,33,46,.6), inset 0 0 0 1px rgba(255,255,255,.08);
  isolation: isolate;
}
.pool-badge {
  position: absolute;
  top: 16px; left: 16px;
  z-index: 6;
  display: inline-flex;
  align-items: center;
  gap: 9px;
  background: rgba(7, 33, 46, 0.42);
  backdrop-filter: blur(4px);
  border: 1px solid rgba(255,255,255,.22);
  color: #eafffd;
  padding: 8px 14px;
  border-radius: 999px;
  font-family: 'DM Mono', monospace;
  font-size: .68rem;
  letter-spacing: .12em;
  text-transform: uppercase;
}
.pool-badge .dot {
  width: 8px; height: 8px;
  border-radius: 50%;
  background: var(--accent-2);
  box-shadow: 0 0 0 0 rgba(232,67,147,.6);
  animation: livePulse 2.4s var(--ease-2) infinite;
}
@keyframes livePulse {
  0% { box-shadow: 0 0 0 0 rgba(232,67,147,.55); }
  70% { box-shadow: 0 0 0 9px rgba(232,67,147,0); }
  100% { box-shadow: 0 0 0 0 rgba(232,67,147,0); }
}

/* caustics */
.pool .caustics {
  position: absolute;
  inset: -20%;
  z-index: 1;
  pointer-events: none;
  mix-blend-mode: soft-light;
  opacity: .32;
  background:
    radial-gradient(60px 30px at 20% 18%, rgba(255,255,255,.9), transparent 60%),
    radial-gradient(80px 40px at 70% 30%, rgba(255,255,255,.7), transparent 60%),
    radial-gradient(50px 28px at 45% 55%, rgba(255,255,255,.7), transparent 60%),
    radial-gradient(70px 36px at 80% 70%, rgba(255,255,255,.6), transparent 60%),
    radial-gradient(46px 24px at 30% 80%, rgba(255,255,255,.6), transparent 60%);
  animation: causticShift 14s ease-in-out infinite alternate;
}
@keyframes causticShift {
  0% { transform: translate3d(0,0,0) scale(1); }
  50% { transform: translate3d(3%, 2%, 0) scale(1.08); }
  100% { transform: translate3d(-2%, 4%, 0) scale(1.04); }
}

/* god rays */
.pool .rays {
  position: absolute;
  inset: 0;
  z-index: 1;
  pointer-events: none;
  opacity: .35;
  background: repeating-linear-gradient(110deg,
    rgba(255,255,255,.0) 0px,
    rgba(255,255,255,.0) 26px,
    rgba(214,255,252,.16) 34px,
    rgba(255,255,255,.0) 52px);
  animation: rayDrift 16s linear infinite;
}
@keyframes rayDrift {
  0% { background-position: 0 0; }
  100% { background-position: 220px 0; }
}

/* bubbles */
.pool .bubbles { position: absolute; inset: 0; z-index: 2; pointer-events: none; }
.pool .bubble {
  position: absolute;
  bottom: -24px;
  border-radius: 50%;
  background: radial-gradient(circle at 30% 30%, rgba(255,255,255,.9), rgba(255,255,255,.18) 60%, transparent 70%);
  box-shadow: inset 0 0 4px rgba(255,255,255,.5);
  opacity: 0;
  animation: rise var(--dur, 9s) linear infinite;
  animation-delay: var(--delay, 0s);
}
@keyframes rise {
  0% { transform: translateY(0) translateX(0); opacity: 0; }
  10% { opacity: .8; }
  50% { transform: translateY(-46vmin) translateX(var(--wob, 10px)); }
  90% { opacity: .5; }
  100% { transform: translateY(-92vmin) translateX(calc(var(--wob, 10px) * -1)); opacity: 0; }
}

/* breath pacer + chronometer module */
.breath {
  position: absolute;
  inset: 0;
  z-index: 4;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 14px;
  text-align: center;
  color: #eafffd;
}
.breath-ring {
  position: relative;
  width: clamp(140px, 30vw, 188px);
  height: clamp(140px, 30vw, 188px);
  display: grid;
  place-items: center;
}
.breath-ring .pacer {
  position: absolute;
  inset: 0;
  border-radius: 50%;
  border: 2px solid rgba(234,255,253,.55);
  box-shadow: 0 0 40px rgba(42,163,160,.6), inset 0 0 30px rgba(234,255,253,.18);
  animation: breathe 11s ease-in-out infinite;
}
@keyframes breathe {
  0%   { transform: scale(.82); opacity: .55; }
  36%  { transform: scale(1.12); opacity: 1; }     /* inhale 4s */
  60%  { transform: scale(1.12); opacity: 1; }     /* hold */
  100% { transform: scale(.82); opacity: .55; }    /* exhale */
}
.breath-time {
  font-family: 'DM Mono', monospace;
  font-size: clamp(1.7rem, 4.6vw, 2.5rem);
  font-weight: 500;
  letter-spacing: .04em;
  color: #fff;
  text-shadow: 0 2px 18px rgba(7,33,46,.6);
}
.breath-label {
  font-family: 'DM Mono', monospace;
  font-size: .66rem;
  letter-spacing: .2em;
  text-transform: uppercase;
  color: rgba(234,255,253,.85);
}
.breath-target {
  font-family: 'DM Mono', monospace;
  font-size: .72rem;
  letter-spacing: .08em;
  color: rgba(234,255,253,.7);
}
/* pulse line */
.pulse-wrap {
  width: 78%;
  max-width: 280px;
  height: 38px;
  overflow: hidden;
}
.pulse-wrap svg { width: 100%; height: 100%; }
.pulse-line {
  stroke: var(--accent-2);
  stroke-width: 2.4;
  fill: none;
  filter: drop-shadow(0 0 5px rgba(232,67,147,.6));
  stroke-dasharray: 600;
  stroke-dashoffset: 600;
  animation: pulseDraw 11s linear infinite;
}
@keyframes pulseDraw {
  0% { stroke-dashoffset: 600; }
  100% { stroke-dashoffset: 0; }
}
@media (prefers-reduced-motion: reduce) {
  .pool .caustics, .pool .rays, .pool .bubble,
  .breath-ring .pacer, .pulse-line, .pool-badge .dot {
    animation: none !important;
  }
  .breath-ring .pacer { transform: scale(1); opacity: .8; }
  .pulse-line { stroke-dashoffset: 0; }
}

/* ============================================================
   SECTION HEADINGS
   ============================================================ */
.section { padding: clamp(48px, 8vw, 96px) 0; }
.section-band {
  background: linear-gradient(160deg, var(--deep-2) 0%, var(--deep-3) 100%);
  color: #eafffd;
}
.section-band h2, .section-band h3 { color: #fff; }
.section-band .eyebrow { color: #74e3df; }

.section-head { max-width: 60ch; margin-bottom: clamp(28px, 4vw, 44px); }
.section-head.center { margin-left: auto; margin-right: auto; text-align: center; }
.section-head h2 {
  font-size: clamp(1.9rem, 4.2vw, 2.9rem);
  margin-bottom: 14px;
}
.section-head p {
  color: var(--ink-soft);
  font-size: 1.05rem;
  margin: 0;
}
.section-band .section-head p { color: rgba(234,255,253,.78); }

/* ============================================================
   STATS / counters
   ============================================================ */
.stats {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 14px;
}
@media (min-width: 720px) { .stats { grid-template-columns: repeat(4, 1fr); } }
.stat {
  background: var(--surface);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  padding: 22px 20px;
  text-align: center;
}
.stat .num {
  font-family: 'DM Mono', monospace;
  font-size: clamp(1.8rem, 4vw, 2.5rem);
  font-weight: 500;
  color: var(--accent);
  line-height: 1;
}
.stat .lbl {
  font-size: .82rem;
  color: var(--ink-soft);
  margin-top: 8px;
}

/* ============================================================
   PANO — session cards
   ============================================================ */
.pano-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 18px;
}
@media (min-width: 640px) { .pano-grid { grid-template-columns: repeat(2, 1fr); } }
@media (min-width: 1040px) { .pano-grid { grid-template-columns: repeat(3, 1fr); } }

.session-card {
  position: relative;
  background: var(--surface);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  padding: 22px;
  display: flex;
  flex-direction: column;
  gap: 12px;
  min-width: 0;
  overflow: hidden;
  transition: transform .26s var(--ease), box-shadow .26s var(--ease), border-color .26s var(--ease);
}
.session-card::before {
  content: "";
  position: absolute;
  inset: auto -40% -60% auto;
  width: 160px; height: 160px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(14,124,123,.1), transparent 70%);
  opacity: 0;
  transition: opacity .3s var(--ease);
}
.session-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 26px 50px -30px rgba(7,33,46,.45);
  border-color: rgba(14,124,123,.4);
}
.session-card:hover::before { opacity: 1; }
.session-top {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 10px;
}
.session-day {
  font-family: 'DM Mono', monospace;
  font-size: .72rem;
  letter-spacing: .12em;
  text-transform: uppercase;
  color: var(--ink-faint);
}
.status-tag {
  font-family: 'DM Mono', monospace;
  font-size: .68rem;
  letter-spacing: .06em;
  text-transform: uppercase;
  padding: 4px 10px;
  border-radius: 999px;
  font-weight: 500;
  white-space: nowrap;
}
.status-tag.acik { background: rgba(14,124,123,.12); color: var(--accent-deep); }
.status-tag.dolu { background: rgba(232,67,147,.12); color: #b02a6e; }
.status-tag.az   { background: rgba(214,140,0,.14); color: #9a6500; }
.session-card h3 {
  font-size: 1.28rem;
  margin: 0;
  overflow-wrap: break-word;
  word-break: keep-all;
}
.session-time {
  font-family: 'DM Mono', monospace;
  font-size: .92rem;
  color: var(--accent);
}
.session-desc { font-size: .92rem; color: var(--ink-soft); margin: 0; }
.session-meta {
  display: flex;
  flex-wrap: wrap;
  gap: 8px 14px;
  margin-top: auto;
  padding-top: 8px;
  border-top: 1px solid var(--line);
}
.session-meta span {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  font-size: .8rem;
  color: var(--ink-soft);
}
.session-meta svg { width: 15px; height: 15px; color: var(--accent); flex: 0 0 15px; }

/* feature mini-icons grid */
.feat-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 16px;
}
@media (min-width: 720px) { .feat-grid { grid-template-columns: repeat(3, 1fr); } }
.feat {
  display: grid;
  grid-template-columns: auto 1fr;
  grid-template-rows: auto auto;
  column-gap: 14px;
  align-items: start;
  background: var(--surface);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  padding: 22px;
  min-width: 0;
  transition: transform .24s var(--ease), box-shadow .24s var(--ease);
}
.feat:hover { transform: translateY(-4px); box-shadow: 0 22px 44px -28px rgba(7,33,46,.4); }
.feat-icon {
  grid-row: 1 / 3;
  width: 46px; height: 46px;
  border-radius: 12px;
  background: var(--surface-2);
  display: grid; place-items: center;
  color: var(--accent);
  transition: background .24s var(--ease), color .24s var(--ease);
}
.feat:hover .feat-icon { background: var(--accent); color: #fff; }
.feat-icon svg { width: 24px; height: 24px; }
.feat h3 { font-size: 1.1rem; margin: 0 0 4px; }
.feat p { font-size: .9rem; color: var(--ink-soft); margin: 0; min-width: 0; overflow-wrap: break-word; }

/* ============================================================
   RECORDS TABLE
   ============================================================ */
.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: 12px;
}
.table-scroll > table { margin: 0 !important; min-width: 480px; width: 100%; }
:where(*:has(> .table-scroll), *:has(> * > .table-scroll), *:has(> * > * > .table-scroll)) { min-width: 0; }

table {
  border-collapse: collapse;
  width: 100%;
  font-size: .92rem;
}
thead th {
  background: var(--surface-2);
  text-align: left;
  font-family: 'Outfit', sans-serif;
  font-weight: 600;
  font-size: .76rem;
  letter-spacing: .06em;
  text-transform: uppercase;
  color: var(--ink-soft);
  padding: 14px 16px;
  border-bottom: 1px solid var(--line);
}
tbody td {
  padding: 14px 16px;
  border-bottom: 1px solid var(--line);
  color: var(--ink);
}
tbody tr:last-child td { border-bottom: none; }
.section-band .table-scroll {
  border-color: rgba(255,255,255,.16);
  background: rgba(255,255,255,.04);
}
.section-band thead th {
  background: rgba(255,255,255,.06);
  color: #9fe7e3;
  border-bottom-color: rgba(255,255,255,.16);
}
.section-band tbody td {
  color: #eafffd;
  border-bottom-color: rgba(255,255,255,.1);
}
.rec-time {
  font-family: 'DM Mono', monospace;
  font-weight: 500;
  color: var(--accent-2);
}
.section-band .rec-time { color: #ff8ec2; }
.rec-rank {
  font-family: 'DM Mono', monospace;
  color: #74e3df;
  font-size: .9rem;
}
.rec-rank.gold { color: #ffd47a; }

/* depth gauge */
.gauge-row {
  display: grid;
  grid-template-columns: 1fr;
  gap: 18px;
  margin-bottom: 36px;
}
@media (min-width: 720px) { .gauge-row { grid-template-columns: repeat(3, 1fr); } }
.gauge {
  display: flex;
  align-items: center;
  gap: 16px;
  background: rgba(255,255,255,.05);
  border: 1px solid rgba(255,255,255,.14);
  border-radius: var(--radius);
  padding: 20px;
}
.gauge svg { width: 64px; height: 64px; flex: 0 0 64px; }
.gauge .track { stroke: rgba(255,255,255,.14); stroke-width: 6; fill: none; }
.gauge .arc {
  stroke: var(--accent-2);
  stroke-width: 6; fill: none;
  stroke-linecap: round;
  stroke-dasharray: 163;
  stroke-dashoffset: 163;
  transition: stroke-dashoffset 1.4s var(--ease);
}
.gauge.is-in .arc { stroke-dashoffset: var(--arc, 50); }
.gauge .g-num {
  font-family: 'DM Mono', monospace;
  font-size: 1.7rem;
  color: #fff;
  line-height: 1;
}
.gauge .g-lbl { font-size: .82rem; color: rgba(234,255,253,.75); margin-top: 5px; }

/* ============================================================
   MEMBERSHIP / pricing
   ============================================================ */
.price-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 18px;
}
@media (min-width: 720px) { .price-grid { grid-template-columns: repeat(3, 1fr); } }
.price-card {
  position: relative;
  background: var(--surface);
  border: 1px solid var(--line);
  border-radius: 18px;
  padding: 28px 24px;
  display: flex;
  flex-direction: column;
  min-width: 0;
  transition: transform .26s var(--ease), box-shadow .26s var(--ease), border-color .26s var(--ease);
}
.price-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 30px 60px -34px rgba(7,33,46,.45);
}
.price-card.featured {
  border-color: var(--accent);
  box-shadow: 0 24px 50px -30px rgba(14,124,123,.5);
}
.price-card.featured::before {
  content: "En çok tercih edilen";
  position: absolute;
  top: -12px; left: 24px;
  background: var(--accent-2);
  color: #fff;
  font-family: 'DM Mono', monospace;
  font-size: .64rem;
  letter-spacing: .08em;
  text-transform: uppercase;
  padding: 5px 12px;
  border-radius: 999px;
}
.price-card h3 { font-size: 1.3rem; margin: 0 0 4px; }
.price-card .ptag { font-size: .86rem; color: var(--ink-faint); margin-bottom: 16px; }
.price-amount {
  display: flex;
  align-items: baseline;
  gap: 6px;
  margin-bottom: 4px;
}
.price-amount .amt {
  font-family: 'DM Mono', monospace;
  font-size: 2.3rem;
  font-weight: 500;
  color: var(--ink);
  line-height: 1;
}
.price-amount .cur { font-family: 'DM Mono', monospace; font-size: 1.1rem; color: var(--accent); }
.price-note { font-size: .76rem; color: var(--ink-faint); margin-bottom: 18px; }
.price-list { list-style: none; margin: 0 0 22px; padding: 0; display: grid; gap: 10px; }
.price-list li {
  display: grid;
  grid-template-columns: 20px 1fr;
  gap: 10px;
  font-size: .9rem;
  color: var(--ink-soft);
  align-items: start;
}
.price-list li svg { width: 18px; height: 18px; margin-top: 2px; }
.price-list li.yes svg { color: var(--accent); }
.price-list li.no { color: var(--ink-faint); }
.price-list li.no svg { color: var(--ink-faint); }
.price-card .btn { margin-top: auto; width: 100%; }

/* ============================================================
   RULES / safety
   ============================================================ */
.rules-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 16px;
}
@media (min-width: 640px) { .rules-grid { grid-template-columns: repeat(2, 1fr); } }
.rule {
  display: grid;
  grid-template-columns: auto 1fr;
  column-gap: 16px;
  align-items: start;
  background: var(--surface);
  border: 1px solid var(--line);
  border-left: 3px solid var(--accent);
  border-radius: var(--radius);
  padding: 20px 22px;
  min-width: 0;
}
.rule-num {
  font-family: 'DM Mono', monospace;
  font-size: 1.1rem;
  color: var(--accent-2);
}
.rule h3 { font-size: 1.05rem; margin: 0 0 5px; }
.rule p { font-size: .9rem; color: var(--ink-soft); margin: 0; min-width: 0; overflow-wrap: break-word; }

/* timeline (process) */
.timeline {
  position: relative;
  margin: 0;
  padding: 0;
  list-style: none;
}
.timeline::before {
  content: "";
  position: absolute;
  left: 19px; top: 8px; bottom: 8px;
  width: 2px;
  background: linear-gradient(var(--accent), rgba(14,124,123,.15));
}
.timeline li {
  position: relative;
  padding: 0 0 28px 56px;
}
.timeline li:last-child { padding-bottom: 0; }
.timeline .tdot {
  position: absolute;
  left: 8px; top: 2px;
  width: 24px; height: 24px;
  border-radius: 50%;
  background: var(--surface);
  border: 2px solid var(--accent);
  display: grid; place-items: center;
  font-family: 'DM Mono', monospace;
  font-size: .72rem;
  color: var(--accent);
  font-weight: 500;
}
.timeline .tstep { font-family: 'DM Mono', monospace; font-size: .72rem; color: var(--accent-2); letter-spacing: .08em; text-transform: uppercase; }
.timeline h3 { font-size: 1.12rem; margin: 4px 0 6px; }
.timeline p { font-size: .92rem; color: var(--ink-soft); margin: 0; }

/* ============================================================
   TESTIMONIALS
   ============================================================ */
.testi-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 18px;
}
@media (min-width: 760px) { .testi-grid { grid-template-columns: repeat(2, 1fr); } }
@media (min-width: 1080px) { .testi-grid { grid-template-columns: repeat(3, 1fr); } }
.testi {
  background: var(--surface);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  padding: 24px;
  display: flex;
  flex-direction: column;
  gap: 14px;
  min-width: 0;
}
.testi:nth-child(3n+2) { transform: translateY(0); }
@media (min-width: 1080px) { .testi:nth-child(3n+2) { margin-top: 22px; } }
.testi-quote { font-size: .96rem; color: var(--ink); margin: 0; line-height: 1.6; }
.testi-foot { margin-top: auto; }
.testi-name { font-family: 'Outfit', sans-serif; font-weight: 600; font-size: .96rem; }
.testi-meta { font-family: 'DM Mono', monospace; font-size: .74rem; color: var(--ink-faint); }
.stars { color: var(--accent-2); letter-spacing: 2px; font-size: .85rem; }

/* notes / news */
.notes { display: grid; gap: 12px; }
.note {
  display: grid;
  grid-template-columns: auto 1fr;
  gap: 16px;
  align-items: baseline;
  padding: 16px 0;
  border-bottom: 1px solid var(--line);
}
.note:last-child { border-bottom: none; }
.note time {
  font-family: 'DM Mono', monospace;
  font-size: .76rem;
  color: var(--accent);
  white-space: nowrap;
}
.note p { margin: 0; font-size: .94rem; color: var(--ink-soft); }
.note strong { color: var(--ink); font-weight: 600; }

/* ============================================================
   FAQ
   ============================================================ */
.faq { max-width: 820px; margin: 0 auto; }
.faq-item {
  background: var(--surface);
  border: 1px solid var(--line);
  border-radius: 12px;
  margin-bottom: 12px;
  overflow: hidden;
}
.faq-item summary {
  list-style: none;
  cursor: pointer;
  padding: 18px clamp(18px,3vw,24px);
  font-family: 'Outfit', sans-serif;
  font-weight: 600;
  font-size: 1.02rem;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 14px;
}
.faq-item summary::-webkit-details-marker { display: none; }
.faq-item summary .chev {
  flex: 0 0 20px;
  width: 20px; height: 20px;
  transition: transform .32s var(--ease);
  color: var(--accent);
}
.faq-item[open] summary .chev { transform: rotate(180deg); }
.faq-item > .answer {
  height: 0;
  padding: 0 clamp(18px, 3vw, 24px);
  overflow: hidden;
  transition: height .36s var(--ease-2), padding-block-end .36s var(--ease-2);
}
.faq-item[open] > .answer {
  height: auto;
  padding-block-end: 22px;
}
.faq-item > .answer p { margin: 0; color: var(--ink-soft); font-size: .94rem; }
@media (prefers-reduced-motion: reduce) {
  .faq-item > .answer { transition: none; }
}

/* ============================================================
   CTA band + form
   ============================================================ */
.cta-band {
  background: linear-gradient(150deg, var(--accent) 0%, var(--accent-deep) 60%, var(--deep-2) 100%);
  color: #fff;
  border-radius: 24px;
  padding: clamp(32px, 5vw, 56px);
  position: relative;
  overflow: hidden;
}
.cta-band h2 { color: #fff; font-size: clamp(1.7rem, 3.6vw, 2.5rem); }
.cta-band p { color: rgba(234,255,253,.85); max-width: 52ch; }

/* form */
.form-card {
  background: var(--surface);
  border: 1px solid var(--line);
  border-radius: 18px;
  padding: clamp(24px, 4vw, 40px);
}
.form-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 18px;
}
@media (min-width: 680px) { .form-grid { grid-template-columns: repeat(2, 1fr); } }
.field { display: flex; flex-direction: column; gap: 7px; min-width: 0; }
.field.full { grid-column: 1 / -1; }
.field label, .field > span {
  font-size: .86rem;
  font-weight: 600;
  color: var(--ink);
  font-family: 'Outfit', sans-serif;
}
.field input,
.field select,
.field textarea {
  width: 100%;
  font: inherit;
  font-size: .96rem;
  color: var(--ink);
  background: var(--surface-2);
  border: 1px solid var(--line);
  border-radius: 10px;
  padding: 13px 15px;
  transition: border-color .2s var(--ease), background .2s var(--ease), box-shadow .2s var(--ease);
}
.field textarea { min-height: 130px; resize: vertical; }
.field input:focus,
.field select:focus,
.field textarea:focus {
  border-color: var(--accent);
  background: #fff;
  box-shadow: 0 0 0 3px rgba(14,124,123,.12);
  outline: none;
}
.field.kvkk {
  flex-direction: row;
  align-items: flex-start;
  gap: 11px;
}
.field.kvkk label {
  font-weight: 400;
  font-family: 'DM Sans', sans-serif;
  font-size: .88rem;
  color: var(--ink-soft);
  line-height: 1.5;
}
.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);
}
.form-card .btn { margin-top: 4px; }
@media (min-width: 680px) { .form-submit { grid-column: 1 / -1; } .form-submit .btn { width: auto; } }
.form-submit .btn { width: 100%; }

/* ============================================================
   CONTACT page
   ============================================================ */
.contact-hero {
  background: linear-gradient(160deg, var(--deep-2), var(--deep-3));
  color: #fff;
  min-height: 240px;
  display: flex;
  align-items: center;
  padding: clamp(40px,6vw,72px) 0;
}
.contact-hero h1 { color: #fff; font-size: clamp(2.1rem, 5vw, 3.4rem); }
.contact-hero p { color: rgba(234,255,253,.82); max-width: 50ch; margin: 0; }
.contact-hero .eyebrow { color: #74e3df; }

.channel-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
  gap: 16px;
}
.channel {
  background: var(--surface);
  border: 1px solid var(--line);
  border-radius: 14px;
  padding: 22px;
  display: flex;
  flex-direction: column;
  gap: 8px;
  min-width: 0;
  opacity: 0;
  transform: translateY(28px);
  transition: opacity .6s var(--ease) calc(var(--i,0) * 80ms), transform .6s var(--ease) calc(var(--i,0) * 80ms), box-shadow .24s var(--ease), border-color .24s var(--ease);
}
.channel.is-in { opacity: 1; transform: none; }
.no-js .channel { opacity: 1; transform: none; }
.channel:hover {
  transform: translateY(-3px);
  box-shadow: 0 24px 44px -28px rgba(7,33,46,.4);
  border-color: rgba(14,124,123,.35);
}
.channel-icon {
  width: 48px; height: 48px;
  border-radius: 12px;
  background: var(--surface-2);
  display: grid; place-items: center;
  color: var(--accent);
}
.channel-icon svg { width: 24px; height: 24px; }
.channel h3 { font-size: 1.02rem; margin: 4px 0 0; }
.channel a { font-weight: 600; color: var(--ink); word-break: break-word; }
.channel a:hover { color: var(--accent); }
.channel span.sub { font-size: .82rem; color: var(--ink-faint); }

.hours-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(150px, 1fr));
  gap: 10px;
}
.hour-cell {
  background: var(--surface);
  border: 1px solid var(--line);
  border-radius: 10px;
  padding: 14px 16px;
  display: flex;
  flex-direction: column;
  gap: 3px;
}
.hour-cell.today { border-color: var(--accent); background: var(--surface-2); }
.hour-cell .d { font-weight: 600; font-size: .86rem; }
.hour-cell .t { font-family: 'DM Mono', monospace; font-size: .84rem; color: var(--ink-soft); font-variant-numeric: tabular-nums; }
.hour-cell.today .t { color: var(--accent); }

/* ============================================================
   FOOTER
   ============================================================ */
.site-footer {
  background: var(--deep-3);
  color: #cfeae7;
  padding: clamp(44px, 6vw, 72px) 0 28px;
}
.footer-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 32px;
  margin-bottom: 36px;
}
@media (min-width: 680px) { .footer-grid { grid-template-columns: 1.4fr 1fr 1fr; } }
.footer-brand .brand { color: #fff; }
.footer-brand .brand small { color: #6fb3ae; }
.footer-brand p { color: #8fbdb9; font-size: .9rem; max-width: 34ch; margin-top: 14px; }
.footer-col h4 {
  color: #fff;
  font-size: .82rem;
  text-transform: uppercase;
  letter-spacing: .1em;
  margin-bottom: 14px;
}
.footer-col ul { list-style: none; margin: 0; padding: 0; display: grid; gap: 10px; }
.footer-col a { color: #9fc7c3; font-size: .92rem; }
.footer-col a:hover { color: #fff; }
.footer-col .ico-row {
  display: grid;
  grid-template-columns: auto 1fr;
  gap: 10px;
  align-items: start;
  font-size: .88rem;
  color: #9fc7c3;
}
.footer-col .ico-row svg { width: 17px; height: 17px; color: #4fb3ae; margin-top: 3px; flex: 0 0 17px; }
.footer-col .ico-row a { word-break: break-word; }
.footer-bottom {
  border-top: 1px solid rgba(255,255,255,.1);
  padding-top: 22px;
  display: flex;
  flex-wrap: wrap;
  gap: 10px 20px;
  justify-content: space-between;
  align-items: center;
  font-size: .8rem;
  color: #6fa39f;
}
.footer-bottom a { color: #6fa39f; }
.footer-bottom a:hover { color: #fff; }
.footer-legal { font-family: 'DM Mono', monospace; font-size: .72rem; }

/* ============================================================
   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: 16px;
  box-shadow: 0 30px 70px -30px rgba(7,33,46,.6);
  padding: 22px;
  transform: translateY(140%);
  opacity: 0;
  transition: transform .28s var(--ease), opacity .24s var(--ease);
  z-index: 9999;
}
.cookie-banner.is-visible { transform: translateY(0); opacity: 1; }
@media (min-width: 680px) {
  .cookie-banner { left: 24px; right: auto; max-width: 420px; }
}
.cookie-banner h3 { font-size: 1.08rem; margin: 0 0 8px; }
.cookie-banner p { font-size: .86rem; color: var(--ink-soft); margin: 0 0 16px; }
.cookie-banner p a { color: var(--accent); text-decoration: underline; }
/* equal-width grid keeps "Reddet" the same size/weight as "Tümünü kabul et" */
.cookie-actions { display: grid; grid-template-columns: 1fr 1fr; gap: 10px; }
.cookie-actions button {
  width: 100%;
  min-height: 46px;
  padding: 11px 14px;
  border-radius: 10px;
  font-family: 'Outfit', sans-serif;
  font-weight: 600;
  font-size: .88rem;
  text-align: center;
  cursor: pointer;
  border: 1px solid var(--line-strong);
  transition: background .2s var(--ease), color .2s var(--ease), border-color .2s var(--ease), transform .2s var(--ease);
}
.cookie-actions button:hover { transform: translateY(-1px); }
.cookie-actions [data-consent="settings"] { grid-column: 1 / -1; }
.cookie-actions [data-consent="accept"] { background: var(--accent); color: #fff; border-color: var(--accent); }
.cookie-actions [data-consent="accept"]:hover { background: var(--accent-deep); color: #fff; border-color: var(--accent-deep); }
.cookie-actions [data-consent="reject"] { background: var(--surface); color: var(--ink); border-color: var(--ink); }
.cookie-actions [data-consent="reject"]:hover { background: var(--ink); color: var(--surface); border-color: var(--ink); }
.cookie-actions [data-consent="settings"] { background: var(--surface); color: var(--ink-soft); }
.cookie-actions [data-consent="settings"]:hover { background: var(--surface-2); color: var(--ink); }
@media (prefers-reduced-motion: reduce) {
  .cookie-actions button:hover { transform: none; }
}

/* ============================================================
   DOC / legal pages
   ============================================================ */
.doc-hero {
  background: var(--surface-2);
  padding: clamp(40px,6vw,72px) 0 clamp(28px,4vw,40px);
  border-bottom: 1px solid var(--line);
}
.doc-hero h1 { font-size: clamp(2rem, 4.6vw, 3rem); }
.doc-hero p { color: var(--ink-soft); margin: 0; }
.doc-body { padding: clamp(40px,6vw,72px) 0; }
.doc-body .container { max-width: 760px; }
.doc-body h2 { font-size: 1.5rem; margin: 36px 0 12px; }
.doc-body h3 { font-size: 1.15rem; margin: 24px 0 8px; }
.doc-body p, .doc-body li { color: var(--ink-soft); line-height: 1.75; overflow-wrap: anywhere; }
.doc-body ul, .doc-body ol { padding-left: 22px; margin: 0 0 18px; }
.doc-body li { margin-bottom: 8px; }
.doc-toc {
  background: var(--surface);
  border: 1px solid var(--line);
  border-radius: 12px;
  padding: 20px 24px;
  margin-bottom: 32px;
}
.doc-toc ul { list-style: none; padding: 0; margin: 0; display: grid; gap: 8px; }
.doc-toc a { font-size: .92rem; }

/* sitemap page */
.sitemap-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 24px;
}
@media (min-width: 680px) { .sitemap-grid { grid-template-columns: repeat(2, 1fr); } }
.sitemap-col { background: var(--surface); border: 1px solid var(--line); border-radius: 12px; padding: 24px; }
.sitemap-col h2 { font-size: 1.2rem; }
.sitemap-col ul { list-style: none; padding: 0; margin: 0; display: grid; gap: 10px; }

/* 404 */
.err-wrap {
  min-height: 64vh;
  display: flex;
  align-items: center;
  text-align: center;
}
.err-wrap .big {
  font-family: 'DM Mono', monospace;
  font-size: clamp(4rem, 16vw, 9rem);
  color: var(--accent);
  line-height: 1;
  margin: 0;
}

/* thank-you */
.thanks-wrap {
  min-height: 62vh;
  display: flex;
  align-items: center;
  text-align: center;
}
.thanks-icon {
  width: 84px; height: 84px;
  margin: 0 auto 22px;
  border-radius: 50%;
  background: radial-gradient(circle at 35% 30%, var(--accent), var(--accent-deep));
  display: grid; place-items: center;
}
.thanks-icon svg { width: 40px; height: 40px; color: #fff; }

/* ============================================================
   REVEAL
   ============================================================ */
.reveal {
  opacity: 0;
  transform: translateY(28px);
  transition: opacity .7s var(--ease), transform .7s var(--ease);
  transition-delay: calc(var(--i, 0) * 70ms);
}
.reveal.is-in { opacity: 1; transform: none; }
@media (prefers-reduced-motion: reduce) {
  .reveal { opacity: 1 !important; transform: none !important; transition: none !important; }
}
.no-js .reveal { opacity: 1; transform: none; }

/* float-up variant */
.float-up { transform: translateY(34px); }

/* utility */
.text-pink { color: var(--accent-2); }
.lead { font-size: 1.12rem; color: var(--ink-soft); }
.divider-gold { height: 2px; background: linear-gradient(90deg, var(--accent), var(--accent-2)); border: 0; margin: 0 0 18px; width: 60px; border-radius: 2px; }
.mt-0 { margin-top: 0; }
.center { text-align: center; }

@media (max-width: 640px) {
  .feat, .session-card, .price-card, .rule, .channel, .testi { padding: 18px; }
  .feat-icon { width: 40px; height: 40px; }
  .feat-icon svg { width: 20px; height: 20px; }
}

.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;
}
