:root {
  interpolate-size: allow-keywords;
  --bg: #111318;
  --surface: #1C1F26;
  --surface-2: #252931;
  --ink: #EAEEF3;
  --ink-soft: #9DA5B4;
  --accent: #00D4FF;
  --accent-2: #FF3B7A;
  --line: rgba(0,212,255,0.18);
  --line-strong: rgba(0,212,255,0.35);
  --header-h: 72px;
  --container: 1240px;
  --pad: clamp(1rem,3vw,2.5rem);
  scroll-behavior: smooth;
}

@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
}

*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }

html, body { overflow-x: hidden; max-width: 100vw; margin: 0; }

body {
  font-family: 'IBM Plex Sans', sans-serif;
  font-weight: 400;
  font-size: clamp(15px, 1vw + 12px, 17px);
  line-height: 1.65;
  color: var(--ink);
  background: var(--bg);
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

h1, h2, h3, h4, h5, h6 {
  font-family: 'IBM Plex Sans', sans-serif;
  font-weight: 600;
  line-height: 1.18;
  letter-spacing: -0.012em;
  color: var(--ink);
}

h1 { font-size: clamp(2.4rem, 5vw, 4.2rem); }
h2 { font-size: clamp(1.8rem, 3.5vw, 2.8rem); }
h3 { font-size: clamp(1.2rem, 2vw, 1.6rem); }
h4 { font-size: clamp(1rem, 1.5vw, 1.2rem); }

.mono, .stat-val, .metric-val, .price-val, code {
  font-family: 'IBM Plex Mono', monospace;
  font-weight: 400;
}

a {
  color: var(--accent);
  text-decoration: none;
  transition: color 240ms cubic-bezier(.4,0,.2,1);
}
a:hover { color: var(--accent-2); }

img { max-width: 100%; height: auto; display: block; }

.container {
  width: 100%;
  max-width: var(--container);
  margin: 0 auto;
  padding-left: clamp(16px, 4vw, 32px);
  padding-right: clamp(16px, 4vw, 32px);
}

/* ======== SKIP LINK ======== */
.skip-link {
  position: absolute;
  top: -100%;
  left: 16px;
  background: var(--accent);
  color: var(--bg);
  padding: 8px 16px;
  border-radius: 0 0 6px 6px;
  font-weight: 600;
  z-index: 10000;
  transition: top 200ms;
}
.skip-link:focus { top: 0; }

/* ======== HEADER ======== */
.site-header {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 1080;
  background: rgba(17, 19, 24, 0.92);
  backdrop-filter: blur(8px);
  -webkit-backdrop-filter: blur(8px);
  transition: background 240ms ease, box-shadow 240ms ease, padding 240ms ease;
  height: var(--header-h);
}

.site-header.scrolled {
  background: rgba(17,19,24,0.98);
  box-shadow: 0 8px 24px -16px rgba(0,0,0,.18);
}

.header__inner {
  max-width: var(--container);
  margin: 0 auto;
  padding: 0 clamp(16px, 4vw, 32px);
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 100%;
}

.logo {
  display: flex;
  align-items: center;
  gap: 8px;
  text-decoration: none;
  color: var(--ink);
  z-index: 1100;
}
.logo:hover { color: var(--accent); }

.logo__mark {
  font-family: 'IBM Plex Mono', monospace;
  font-size: 1.1rem;
  color: var(--accent);
  border: 1px dashed var(--accent);
  padding: 4px 8px;
  border-radius: 4px;
  line-height: 1;
}

.logo__text {
  font-family: 'IBM Plex Sans', sans-serif;
  font-weight: 600;
  font-size: 1.25rem;
  letter-spacing: -0.01em;
}

/* Desktop nav */
.nav-desktop {
  display: none;
  align-items: center;
  gap: clamp(16px, 2vw, 28px);
}

@media (min-width: 1024px) {
  .nav-desktop { display: flex; }
}

.nav-desktop a {
  color: var(--ink-soft);
  font-size: 0.9rem;
  font-weight: 400;
  letter-spacing: 0.01em;
  position: relative;
  padding: 4px 0;
  transition: color 240ms cubic-bezier(.4,0,.2,1);
}

.nav-desktop a::after {
  content: '';
  position: absolute;
  bottom: -2px;
  left: 0;
  width: 0;
  height: 2px;
  background: var(--accent);
  transition: width 280ms cubic-bezier(.2,.7,.2,1);
}

.nav-desktop a:hover { color: var(--ink); }
.nav-desktop a:hover::after { width: 100%; }
.nav-desktop a.is-active { color: var(--accent); }
.nav-desktop a.is-active::after { width: 100%; }

.nav-desktop .nav-cta {
  background: var(--accent);
  color: var(--bg);
  padding: 8px 20px;
  border-radius: 6px;
  font-weight: 600;
  font-size: 0.88rem;
  letter-spacing: 0.02em;
  border: 1px solid var(--accent);
  transition: background 240ms, color 240ms, border-color 240ms;
}
.nav-desktop .nav-cta::after { display: none; }
.nav-desktop .nav-cta:hover {
  background: var(--accent-2);
  color: #fff;
  border-color: var(--accent-2);
}
.nav-desktop .nav-cta.is-active { color: var(--bg); }

/* ======== NAV TOGGLE (hamburger) ======== */
.nav-toggle {
  display: flex;
  flex-direction: column;
  justify-content: center;
  gap: 5px;
  width: 40px;
  height: 40px;
  background: none;
  border: none;
  cursor: pointer;
  z-index: 1100;
  padding: 8px;
}

@media (min-width: 1024px) {
  .nav-toggle { display: none; }
}

.nav-toggle span {
  display: block;
  width: 24px;
  height: 2.5px;
  background: var(--ink);
  border-radius: 2px;
  transition: transform 280ms cubic-bezier(.2,.7,.2,1), opacity 200ms, background 200ms;
  transform-origin: center;
  box-shadow: 0 0 4px rgba(234,238,243,0.25);
}

.nav-toggle:hover span,
.nav-toggle:focus-visible span {
  background: var(--accent);
  box-shadow: 0 0 8px rgba(0,212,255,0.4);
}

.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);
}

/* ======== DRAWER ======== */
.drawer-backdrop {
  position: fixed;
  inset: 0;
  background: rgba(0,0,0,0.55);
  z-index: 1040;
  opacity: 0;
  pointer-events: none;
  transition: opacity 240ms;
}
.drawer-backdrop.is-open {
  opacity: 1;
  pointer-events: auto;
}

.drawer {
  position: fixed;
  top: 0; right: 0; bottom: 0;
  width: min(360px, 92vw);
  background: var(--surface);
  z-index: 1050;
  transform: translateX(100%);
  transition: transform 320ms cubic-bezier(.2,.7,.2,1);
  padding: calc(var(--header-h) + 24px) 28px 32px;
  display: flex;
  flex-direction: column;
  gap: 4px;
  overflow-y: auto;
}
.drawer.is-open { transform: translateX(0); }

.drawer a {
  display: block;
  color: var(--ink-soft);
  padding: 14px 0;
  font-size: 1.05rem;
  border-bottom: 1px solid var(--line);
  transition: color 200ms, padding-left 200ms;
}
.drawer a:hover {
  color: var(--accent);
  padding-left: 8px;
}
.drawer a.is-active { color: var(--accent); }

.drawer__cta {
  margin-top: 20px;
  display: block;
  text-align: center;
  background: var(--accent);
  color: var(--bg) !important;
  padding: 14px 24px !important;
  border-radius: 8px;
  font-weight: 600;
  border: none !important;
  transition: background 240ms, color 240ms !important;
}
.drawer__cta:hover {
  background: var(--accent-2) !important;
  color: #fff !important;
  padding-left: 24px !important;
}

/* ======== MAIN ======== */
main { padding-top: var(--header-h); }

section {
  padding: clamp(48px, 8vw, 96px) 0;
}

/* ======== EYEBROW ======== */
.eyebrow {
  font-family: 'IBM Plex Mono', monospace;
  font-size: 0.82rem;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--accent);
  margin-bottom: 12px;
  display: inline-flex;
  align-items: center;
  gap: 8px;
}

.eyebrow::before {
  content: '//';
  opacity: 0.5;
}

/* ======== SECTION HEADING ======== */
.section-head {
  margin-bottom: clamp(32px, 5vw, 56px);
}

.section-head p {
  color: var(--ink-soft);
  max-width: 580px;
  margin-top: 12px;
}

/* ======== HERO ======== */
.hero {
  min-height: calc(100vh - var(--header-h));
  display: flex;
  align-items: center;
  padding: clamp(40px, 8vw, 80px) 0;
  position: relative;
  overflow: hidden;
}

.hero__grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 40px;
  align-items: center;
}

@media (min-width: 768px) {
  .hero__grid {
    grid-template-columns: 60% 40%;
    gap: 32px;
  }
}

.hero__content { position: relative; z-index: 2; }

.hero h1 {
  margin-bottom: 20px;
  line-height: 1.08;
}

.hero h1 .accent-word {
  color: var(--accent);
  position: relative;
  display: inline-block;
}

.hero__sub {
  font-size: clamp(1rem, 1.2vw, 1.15rem);
  color: var(--ink-soft);
  max-width: 520px;
  margin-bottom: 32px;
  line-height: 1.7;
}

/* Hero ticker dashboard */
.hero__dashboard {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 12px;
  margin-bottom: 36px;
}

@media (min-width: 480px) {
  .hero__dashboard { grid-template-columns: repeat(4, 1fr); }
}

.ticker-box {
  background: var(--surface);
  border: 1px dashed var(--line-strong);
  border-radius: 6px;
  padding: 16px 14px;
  text-align: center;
  position: relative;
  overflow: hidden;
}

.ticker-box::before {
  content: '';
  position: absolute;
  top: 0; left: 0;
  width: 100%;
  height: 2px;
  background: linear-gradient(90deg, transparent, var(--accent), transparent);
  animation: scan-line 3s ease-in-out infinite;
}

@keyframes scan-line {
  0%, 100% { transform: translateX(-100%); opacity: 0.6; }
  50% { transform: translateX(100%); opacity: 1; }
}

.ticker-box .stat-val {
  font-size: clamp(1.4rem, 2.5vw, 1.8rem);
  color: var(--accent);
  display: block;
  line-height: 1.2;
  margin-bottom: 4px;
}

.ticker-box .stat-label {
  font-size: 0.72rem;
  color: var(--ink-soft);
  text-transform: uppercase;
  letter-spacing: 0.08em;
  line-height: 1.3;
}

/* Compact hero for sub-pages */
.hero--compact {
  min-height: auto !important;
  padding: clamp(48px, 8vw, 80px) 0;
}

/* Hero CTA area */
.hero__actions {
  display: flex;
  flex-wrap: wrap;
  gap: 16px;
  align-items: center;
  margin-bottom: 28px;
}

/* Trust strip */
.trust-strip {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-top: 8px;
}

.trust-badge {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  font-size: 0.78rem;
  color: var(--ink-soft);
  padding: 6px 12px;
  background: var(--surface);
  border-radius: 20px;
  border: 1px solid var(--line);
}

.trust-badge svg {
  width: 14px;
  height: 14px;
  stroke: var(--accent);
  fill: none;
  stroke-width: 1.5;
  flex-shrink: 0;
}

/* Hero SVG court */
.hero__visual {
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
  max-height: 480px;
  overflow: hidden;
  border-radius: 8px;
}

@media (max-width: 767px) {
  .hero__visual {
    max-height: 280px;
  }
}

.hero__court-svg {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 70%;
  max-width: 260px;
  height: auto;
  max-height: 90%;
  filter: drop-shadow(0 0 30px rgba(0,212,255,0.12));
  pointer-events: none;
}

.hero__court-svg .court-line {
  stroke: var(--accent);
  fill: none;
  stroke-dasharray: 4 2;
  opacity: 0.5;
}

.hero__court-svg .court-solid {
  stroke: var(--accent);
  fill: none;
  opacity: 0.7;
}

.hero__court-svg .net-line {
  stroke: var(--accent-2);
  stroke-width: 2;
  opacity: 0.8;
}

.hero__court-svg .data-dot {
  fill: var(--accent);
}

.hero__court-svg .heat-zone {
  fill: var(--accent-2);
  opacity: 0.08;
}

/* Court line draw animation */
@keyframes draw-court {
  to { stroke-dashoffset: 0; }
}

.court-draw {
  stroke-dasharray: 600;
  stroke-dashoffset: 600;
  animation: draw-court 2.4s cubic-bezier(.2,.7,.2,1) forwards;
}

/* Data point pulse */
@keyframes data-pulse {
  0%, 100% { r: 3; opacity: 0.9; }
  50% { r: 6; opacity: 0.3; }
}

/* Glitch flicker for accent elements */
@keyframes glitch-flicker {
  0%, 90%, 100% { color: var(--accent); text-shadow: none; }
  92% { color: var(--accent-2); text-shadow: -1px 0 var(--accent); }
  94% { color: var(--accent); text-shadow: 1px 0 var(--accent-2); }
  96% { color: var(--accent-2); text-shadow: none; }
  98% { color: var(--accent); text-shadow: -1px 0 var(--accent-2); }
}

.glitch-text {
  animation: glitch-flicker 4s ease-in-out infinite;
}

@media (prefers-reduced-motion: reduce) {
  .glitch-text { animation: none; }
  .court-draw { stroke-dashoffset: 0; animation: none; }
  .ticker-box::before { animation: none; }
}

/* ======== BUTTONS ======== */
.btn-primary {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: var(--accent);
  color: var(--bg);
  padding: 14px 28px;
  border-radius: 8px;
  font-family: 'IBM Plex Sans', sans-serif;
  font-weight: 600;
  font-size: 0.95rem;
  border: 2px solid var(--accent);
  cursor: pointer;
  transition: background 240ms cubic-bezier(.4,0,.2,1), color 240ms, border-color 240ms, transform 180ms;
  text-decoration: none;
  line-height: 1.2;
}
.btn-primary:hover, .btn-primary:focus-visible {
  background: var(--accent-2);
  color: #fff;
  border-color: var(--accent-2);
  transform: translateY(-2px);
}
.btn-primary:focus-visible {
  outline: 2px solid var(--accent);
  outline-offset: 2px;
}

.btn-ghost {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: transparent;
  color: var(--ink);
  padding: 14px 28px;
  border-radius: 8px;
  font-family: 'IBM Plex Sans', sans-serif;
  font-weight: 600;
  font-size: 0.95rem;
  border: 1px dashed var(--line-strong);
  cursor: pointer;
  transition: background 240ms, color 240ms, border-color 240ms, transform 180ms;
  text-decoration: none;
  line-height: 1.2;
}
.btn-ghost:hover, .btn-ghost:focus-visible {
  background: var(--surface);
  color: var(--ink);
  border-color: var(--accent);
}
.btn-ghost:focus-visible {
  outline: 2px solid var(--accent);
  outline-offset: 2px;
}

/* ======== ANALYSIS PROCESS ======== */
.analysis-steps {
  display: grid;
  grid-template-columns: 1fr;
  gap: 24px;
}

@media (min-width: 640px) {
  .analysis-steps { grid-template-columns: repeat(2, 1fr); }
}
@media (min-width: 1024px) {
  .analysis-steps { grid-template-columns: repeat(4, 1fr); }
}

.step-card {
  background: var(--surface);
  border: 1px dashed var(--line-strong);
  border-radius: 8px;
  padding: 28px 24px;
  position: relative;
  transition: transform 300ms cubic-bezier(.2,.7,.2,1), box-shadow 300ms;
}
.step-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 16px 40px -12px rgba(0,212,255,0.12);
}

.step-card__num {
  font-family: 'IBM Plex Mono', monospace;
  font-size: 0.72rem;
  color: var(--accent);
  text-transform: uppercase;
  letter-spacing: 0.12em;
  margin-bottom: 16px;
  display: flex;
  align-items: center;
  gap: 8px;
}

.step-card__num::before {
  content: '';
  width: 24px;
  height: 1px;
  background: var(--accent);
  opacity: 0.4;
}

.step-card__icon {
  width: 44px;
  height: 44px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: rgba(0,212,255,0.08);
  border-radius: 8px;
  margin-bottom: 16px;
}

.step-card__icon svg {
  width: 22px;
  height: 22px;
  stroke: var(--accent);
  fill: none;
  stroke-width: 1.5;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.step-card h3 { margin-bottom: 8px; }
.step-card p { color: var(--ink-soft); font-size: 0.92rem; }

/* Arrow connector between steps on desktop */
@media (min-width: 1024px) {
  .step-card:not(:last-child)::after {
    content: '→';
    position: absolute;
    right: -16px;
    top: 50%;
    transform: translateY(-50%);
    color: var(--accent);
    font-family: 'IBM Plex Mono', monospace;
    font-size: 1.2rem;
    opacity: 0.5;
    z-index: 2;
  }
}

/* ======== METRICS GRID ======== */
.metrics-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 16px;
}

@media (min-width: 480px) {
  .metrics-grid { grid-template-columns: repeat(2, 1fr); }
}
@media (min-width: 1024px) {
  .metrics-grid { grid-template-columns: repeat(3, 1fr); }
}

.metric-card {
  background: var(--surface);
  border: 1px solid var(--line);
  border-radius: 8px;
  padding: 24px;
  position: relative;
  overflow: hidden;
  transition: transform 300ms cubic-bezier(.2,.7,.2,1), box-shadow 300ms, border-color 300ms;
}

.metric-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 16px 40px -12px rgba(0,212,255,0.12);
  border-color: var(--accent);
}

.metric-card::before {
  content: '';
  position: absolute;
  top: 0; left: 0;
  width: 100%;
  height: 3px;
  background: linear-gradient(90deg, var(--accent), var(--accent-2));
  opacity: 0;
  transition: opacity 300ms;
}
.metric-card:hover::before { opacity: 1; }

.metric-card__header {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  margin-bottom: 16px;
}

.metric-card__icon {
  width: 40px;
  height: 40px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: rgba(0,212,255,0.08);
  border-radius: 8px;
  flex-shrink: 0;
}

.metric-card__icon svg {
  width: 20px;
  height: 20px;
  stroke: var(--accent);
  fill: none;
  stroke-width: 1.5;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.metric-card__tag {
  font-family: 'IBM Plex Mono', monospace;
  font-size: 0.68rem;
  color: var(--accent-2);
  padding: 3px 8px;
  background: rgba(255,59,122,0.08);
  border-radius: 4px;
  text-transform: uppercase;
  letter-spacing: 0.06em;
}

.metric-card h3 { font-size: 1rem; margin-bottom: 6px; }
.metric-card p { color: var(--ink-soft); font-size: 0.88rem; line-height: 1.55; }

.metric-card__data {
  margin-top: 16px;
  padding-top: 12px;
  border-top: 1px dashed var(--line);
  display: flex;
  align-items: baseline;
  gap: 6px;
}

.metric-val {
  font-size: 1.6rem;
  color: var(--accent);
  line-height: 1;
}

.metric-unit {
  font-family: 'IBM Plex Mono', monospace;
  font-size: 0.75rem;
  color: var(--ink-soft);
}

/* ======== TECHNOLOGY SPECS ======== */
.tech-list {
  display: grid;
  grid-template-columns: 1fr;
  gap: 2px;
}

.tech-item {
  display: grid;
  grid-template-columns: auto 1fr auto;
  gap: 16px;
  align-items: center;
  padding: 20px 24px;
  background: var(--surface);
  border-left: 3px solid var(--line);
  transition: border-color 280ms, background 280ms, transform 200ms;
}

.tech-item:first-child { border-radius: 8px 8px 0 0; }
.tech-item:last-child { border-radius: 0 0 8px 8px; }

.tech-item:hover {
  border-left-color: var(--accent);
  background: var(--surface-2);
}

.tech-item__icon {
  width: 36px;
  height: 36px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: rgba(0,212,255,0.06);
  border-radius: 6px;
}

.tech-item__icon svg {
  width: 18px;
  height: 18px;
  stroke: var(--accent);
  fill: none;
  stroke-width: 1.5;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.tech-item__info h4 { font-size: 0.95rem; margin-bottom: 2px; }
.tech-item__info p { color: var(--ink-soft); font-size: 0.84rem; }

.tech-item__spec {
  font-family: 'IBM Plex Mono', monospace;
  font-size: 0.78rem;
  color: var(--accent);
  padding: 4px 10px;
  background: rgba(0,212,255,0.06);
  border: 1px dashed var(--line-strong);
  border-radius: 4px;
  white-space: nowrap;
}

/* ======== PROTOCOL TIMELINE ======== */
.timeline {
  position: relative;
  padding-left: 40px;
  max-width: 720px;
}

.timeline::before {
  content: '';
  position: absolute;
  left: 16px;
  top: 0;
  bottom: 0;
  width: 1px;
  background: linear-gradient(180deg, var(--accent), var(--accent-2), var(--accent));
  opacity: 0.3;
}

.timeline-item {
  position: relative;
  padding-bottom: 40px;
}
.timeline-item:last-child { padding-bottom: 0; }

.timeline-item::before {
  content: '';
  position: absolute;
  left: -28px;
  top: 6px;
  width: 10px;
  height: 10px;
  border-radius: 50%;
  background: var(--accent);
  border: 2px solid var(--bg);
  box-shadow: 0 0 0 3px rgba(0,212,255,0.2);
}

.timeline-item__time {
  font-family: 'IBM Plex Mono', monospace;
  font-size: 0.75rem;
  color: var(--accent-2);
  text-transform: uppercase;
  letter-spacing: 0.08em;
  margin-bottom: 6px;
}

.timeline-item h3 { margin-bottom: 6px; font-size: 1.1rem; }
.timeline-item p { color: var(--ink-soft); font-size: 0.92rem; }

/* Radar pulse on timeline dots */
@keyframes radar-pulse {
  0% { box-shadow: 0 0 0 3px rgba(0,212,255,0.2); }
  50% { box-shadow: 0 0 0 8px rgba(0,212,255,0); }
  100% { box-shadow: 0 0 0 3px rgba(0,212,255,0.2); }
}

.timeline-item::before {
  animation: radar-pulse 3s ease-in-out infinite;
  animation-delay: calc(var(--i, 0) * 0.5s);
}

@media (prefers-reduced-motion: reduce) {
  .timeline-item::before { animation: none; }
}

/* ======== PRICING 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: 8px;
}

.table-scroll > table {
  margin: 0 !important;
  min-width: 580px;
  width: 100%;
}

:where(*:has(> .table-scroll), *:has(> * > .table-scroll), *:has(> * > * > .table-scroll)) { min-width: 0; }

table {
  width: 100%;
  border-collapse: collapse;
  font-size: 0.92rem;
}

thead th {
  background: var(--surface-2);
  padding: 14px 20px;
  text-align: left;
  font-weight: 600;
  font-size: 0.85rem;
  text-transform: uppercase;
  letter-spacing: 0.06em;
  color: var(--ink-soft);
  border-bottom: 2px solid var(--line-strong);
  white-space: nowrap;
}

tbody td {
  padding: 16px 20px;
  border-bottom: 1px solid var(--line);
  vertical-align: top;
}

tbody tr { transition: background 200ms; }
tbody tr:hover { background: rgba(0,212,255,0.03); }
tbody tr:last-child td { border-bottom: none; }

.price-val {
  font-size: 1.15rem;
  color: var(--accent);
  white-space: nowrap;
}

.price-note {
  font-family: 'IBM Plex Mono', monospace;
  font-size: 0.75rem;
  color: var(--ink-soft);
  margin-top: 16px;
}

.dahil-list, .haric-list {
  font-size: 0.88rem;
  line-height: 1.6;
}

.dahil-list li::before { content: '✓ '; color: var(--accent); }
.haric-list li::before { content: '— '; color: var(--accent-2); }
.dahil-list, .haric-list { list-style: none; }

/* ======== TESTIMONIALS ======== */
.testimonials-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 20px;
}

@media (min-width: 768px) {
  .testimonials-grid {
    grid-template-columns: 1fr 1fr;
  }
}

@media (min-width: 1024px) {
  .testimonials-grid {
    grid-template-columns: 1fr 1.2fr 0.8fr;
  }
}

.testimonial-card {
  background: var(--surface);
  border: 1px solid var(--line);
  border-radius: 10px;
  padding: 28px 24px;
  position: relative;
  transition: transform 300ms cubic-bezier(.2,.7,.2,1), box-shadow 300ms;
}

.testimonial-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 12px 32px -8px rgba(0,212,255,0.1);
}

.testimonial-card::before {
  content: '"';
  font-family: 'IBM Plex Sans', sans-serif;
  font-size: 3rem;
  color: var(--accent);
  opacity: 0.25;
  position: absolute;
  top: 12px;
  left: 20px;
  line-height: 1;
}

.testimonial-card blockquote {
  font-size: 0.92rem;
  color: var(--ink);
  line-height: 1.65;
  margin-bottom: 16px;
  padding-top: 8px;
  font-style: italic;
}

.testimonial-card__author {
  display: flex;
  flex-direction: column;
  gap: 2px;
  padding-top: 12px;
  border-top: 1px dashed var(--line);
}

.testimonial-card__name {
  font-weight: 600;
  font-size: 0.88rem;
  color: var(--ink);
}

.testimonial-card__meta {
  font-family: 'IBM Plex Mono', monospace;
  font-size: 0.72rem;
  color: var(--accent);
}

/* ======== FAQ ======== */
.faq-list {
  max-width: 780px;
}

.faq-item {
  border-bottom: 1px solid var(--line);
}
.faq-item:first-child { border-top: 1px solid var(--line); }

.faq-item summary {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 20px 0;
  cursor: pointer;
  font-weight: 600;
  font-size: 1rem;
  color: var(--ink);
  list-style: none;
  transition: color 200ms;
}
.faq-item summary::-webkit-details-marker { display: none; }
.faq-item summary::marker { display: none; content: ''; }

.faq-item summary::after {
  content: '+';
  font-family: 'IBM Plex Mono', monospace;
  font-size: 1.3rem;
  color: var(--accent);
  transition: transform 300ms cubic-bezier(.2,.7,.2,1);
  flex-shrink: 0;
  margin-left: 16px;
}

.faq-item[open] summary::after {
  transform: rotate(45deg);
}

.faq-item summary:hover { color: var(--accent); }

.faq-item > .faq-body {
  height: 0;
  padding: 0 0;
  overflow: hidden;
  transition: height 360ms cubic-bezier(.4,0,.2,1),
              padding-block-end 360ms cubic-bezier(.4,0,.2,1);
}

.faq-item[open] > .faq-body {
  height: auto;
  padding-block-end: 24px;
}

.faq-body p {
  color: var(--ink-soft);
  font-size: 0.92rem;
  line-height: 1.7;
}

@media (prefers-reduced-motion: reduce) {
  .faq-item > .faq-body { transition: none; }
}

/* ======== CTA BAND ======== */
.cta-band {
  background: var(--surface);
  border-top: 1px dashed var(--accent);
  border-bottom: 1px dashed var(--accent);
  text-align: center;
  padding: clamp(40px, 6vw, 72px) 0;
}

.cta-band h2 { margin-bottom: 12px; }
.cta-band p { color: var(--ink-soft); margin-bottom: 28px; max-width: 480px; margin-left: auto; margin-right: auto; }

/* ======== NEWS / SON EKLENENLER ======== */
.news-strip {
  display: flex;
  flex-direction: column;
  gap: 12px;
  max-width: 600px;
}

.news-item {
  display: flex;
  gap: 12px;
  align-items: baseline;
  padding: 8px 0;
  border-bottom: 1px solid var(--line);
}

.news-item__date {
  font-family: 'IBM Plex Mono', monospace;
  font-size: 0.75rem;
  color: var(--accent);
  white-space: nowrap;
  flex-shrink: 0;
}

.news-item__text {
  font-size: 0.9rem;
  color: var(--ink-soft);
}

/* ======== FOOTER ======== */
.site-footer {
  background: var(--surface);
  border-top: 1px solid var(--line);
  padding: clamp(40px, 6vw, 64px) 0 24px;
}

.footer__grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 32px;
  margin-bottom: 40px;
}

@media (min-width: 640px) {
  .footer__grid { grid-template-columns: repeat(2, 1fr); }
}

@media (min-width: 1024px) {
  .footer__grid { grid-template-columns: 1.6fr 1fr 1fr 1fr; }
}

.footer__brand .logo__mark,
.footer__brand .logo__text {
  display: inline;
}

.footer__brand p {
  color: var(--ink-soft);
  font-size: 0.88rem;
  margin-top: 12px;
  line-height: 1.6;
}

.site-footer h4 {
  font-size: 0.82rem;
  text-transform: uppercase;
  letter-spacing: 0.12em;
  color: var(--ink-soft);
  margin-bottom: 16px;
}

.footer__nav a,
.footer__legal a {
  display: block;
  color: var(--ink-soft);
  font-size: 0.88rem;
  padding: 4px 0;
  transition: color 200ms, padding-left 200ms;
}
.footer__nav a:hover,
.footer__legal a:hover {
  color: var(--accent);
  padding-left: 6px;
}

.footer__contact p {
  color: var(--ink-soft);
  font-size: 0.88rem;
  margin-bottom: 4px;
}

.footer__contact a {
  color: var(--ink-soft);
  word-break: break-all;
}
.footer__contact a:hover { color: var(--accent); }

.footer__bottom {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  align-items: center;
  gap: 8px;
  padding-top: 20px;
  border-top: 1px solid var(--line);
  font-size: 0.8rem;
  color: var(--ink-soft);
}


/* ======== 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: 12px;
  padding: 20px 24px;
  transform: translateY(140%);
  opacity: 0;
  transition: transform 280ms cubic-bezier(.2,.7,.2,1), opacity 240ms;
  z-index: 9999;
  box-shadow: 0 16px 48px -12px rgba(0,0,0,.5);
}

@media (min-width: 640px) {
  .cookie-banner {
    left: 24px;
    right: auto;
    max-width: 420px;
  }
}

.cookie-banner.is-visible {
  transform: translateY(0);
  opacity: 1;
}

.cookie-banner h3 {
  font-size: 0.95rem;
  margin-bottom: 6px;
}

.cookie-banner p {
  font-size: 0.84rem;
  color: var(--ink-soft);
  line-height: 1.5;
  margin-bottom: 16px;
}

.cookie-banner p a { text-decoration: underline; }

.cookie-banner__actions {
  display: flex;
  gap: 8px;
  flex-wrap: wrap;
}

.cookie-banner__actions button {
  flex: 1;
  min-width: 90px;
  min-height: 44px;
  padding: 10px 16px;
  border-radius: 6px;
  font-family: 'IBM Plex Sans', sans-serif;
  font-weight: 600;
  font-size: 0.84rem;
  cursor: pointer;
  transition: background 200ms, color 200ms, transform 180ms;
  border: 1px solid var(--line-strong);
  background: transparent;
  color: var(--ink);
}

.cookie-banner__actions button[data-consent="accept"] {
  background: var(--accent);
  color: var(--bg);
  border-color: var(--accent);
}
.cookie-banner__actions button[data-consent="accept"]:hover {
  background: var(--accent-2);
  color: #fff;
  border-color: var(--accent-2);
}
.cookie-banner__actions button[data-consent="reject"] {
  border-color: var(--accent-2);
  color: var(--ink);
  font-weight: 600;
}
.cookie-banner__actions button[data-consent="reject"]:hover {
  background: rgba(255,59,122,0.12);
  border-color: var(--accent-2);
  color: var(--accent-2);
}
.cookie-banner__actions button[data-consent="settings"]:hover {
  background: var(--surface-2);
  color: var(--ink);
}

/* Prevent cookie banner from overlapping footer */

@media (max-width: 640px) {
  .cookie-banner {
    left: 8px;
    right: 8px;
    bottom: 8px;
    padding: 16px;
  }
}

/* ======== REVEAL ANIMATIONS ======== */
.reveal {
  opacity: 0;
  transform: translateY(24px);
  transition: opacity 650ms cubic-bezier(.16,.85,.45,1), transform 650ms cubic-bezier(.16,.85,.45,1);
  transition-delay: calc(var(--i, 0) * 90ms);
}

.reveal.is-in {
  opacity: 1;
  transform: none;
}

@media (prefers-reduced-motion: reduce) {
  .reveal {
    opacity: 1 !important;
    transform: none !important;
    transition: none !important;
  }
}

html.no-js .reveal {
  opacity: 1;
  transform: none;
}

/* Hero-area reveals should be visible immediately */
.hero .reveal {
  opacity: 1;
  transform: none;
  animation: hero-fade-in 700ms cubic-bezier(.16,.85,.45,1) both;
  animation-delay: calc(var(--i, 0) * 100ms);
}

@keyframes hero-fade-in {
  from { opacity: 0; transform: translateY(18px); }
  to { opacity: 1; transform: none; }
}

/* ======== SERVE TRAJECTORY ANIMATION ======== */
@keyframes serve-trail {
  0% { width: 0; opacity: 1; }
  60% { width: 100%; opacity: 0.8; }
  100% { width: 100%; opacity: 0; }
}

.serve-trail {
  position: absolute;
  height: 2px;
  background: linear-gradient(90deg, var(--accent), var(--accent-2), transparent);
  animation: serve-trail 2s cubic-bezier(.2,.7,.2,1) infinite;
  animation-delay: calc(var(--i, 0) * 0.6s);
  border-radius: 2px;
}

@media (prefers-reduced-motion: reduce) {
  .serve-trail { animation: none; display: none; }
}

/* ======== DATA STREAM ANIMATION ======== */
@keyframes data-stream {
  0% { transform: translateY(-100%); opacity: 0; }
  10% { opacity: 1; }
  90% { opacity: 1; }
  100% { transform: translateY(100vh); opacity: 0; }
}

/* Ambient decoration: subtle grid dots */
.section--decorated {
  position: relative;
}

.section--decorated::before {
  content: '';
  position: absolute;
  top: 0;
  right: 0;
  width: 200px;
  height: 200px;
  background-image: radial-gradient(circle, var(--accent) 1px, transparent 1px);
  background-size: 20px 20px;
  opacity: 0.04;
  pointer-events: none;
}

/* ======== CONTACT PAGE ======== */
.contact-hero {
  min-height: 240px;
  display: flex;
  align-items: center;
  padding: clamp(48px, 8vw, 80px) 0;
  background: var(--surface);
  border-bottom: 1px dashed var(--line-strong);
}

.channels-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 16px;
}

@media (min-width: 480px) {
  .channels-grid { grid-template-columns: repeat(2, 1fr); }
}
@media (min-width: 1024px) {
  .channels-grid { grid-template-columns: repeat(3, 1fr); }
}

.channel-card, .contact-card {
  border: 1px solid var(--line);
  border-radius: 12px;
  padding: 24px 20px;
  transition: transform 300ms cubic-bezier(.2,.7,.2,1), box-shadow 300ms, border-color 300ms;
  background: var(--surface);
}

.channel-card:hover, .contact-card:hover {
  transform: translateY(-3px);
  box-shadow: 0 12px 32px -8px rgba(0,212,255,0.1);
  border-color: var(--accent);
}

.channel-card__icon, .contact-card__icon {
  width: 48px;
  height: 48px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: rgba(0,212,255,0.08);
  border-radius: 50%;
  margin-bottom: 14px;
}

.channel-card__icon svg, .contact-card__icon svg {
  width: 22px;
  height: 22px;
  stroke: var(--accent);
  fill: none;
  stroke-width: 1.5;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.channel-card h4, .contact-card h3 { font-size: 0.88rem; color: var(--ink-soft); margin-bottom: 6px; text-transform: uppercase; letter-spacing: 0.08em; }
.channel-card .channel-val, .contact-card a { font-size: 1rem; font-weight: 600; color: var(--ink); word-break: break-all; }
.channel-card .channel-val a, .contact-card a { color: var(--ink); }
.channel-card .channel-val a:hover, .contact-card a:hover { color: var(--accent); }
.channel-card .channel-sub, .contact-card p { font-size: 0.88rem; color: var(--ink-soft); margin-top: 4px; line-height: 1.5; }

/* Hours mini-grid */
.hours-grid {
  display: grid;
  gap: 2px;
  font-variant-numeric: tabular-nums;
}

.hours-row {
  display: flex;
  justify-content: space-between;
  padding: 6px 0;
  font-size: 0.88rem;
  color: var(--ink-soft);
  border-bottom: 1px solid var(--line);
}
.hours-row:last-child { border-bottom: none; }

.hours-row .day { font-weight: 600; color: var(--ink); min-width: 40px; }
.hours-row.is-today { color: var(--accent); }
.hours-row.is-today .day { color: var(--accent); }

/* ======== FORMS ======== */
.form-section {
  max-width: 680px;
}

.form-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 20px;
}

@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 label {
  font-size: 0.84rem;
  font-weight: 600;
  color: var(--ink-soft);
  letter-spacing: 0.02em;
}

.field input[type="text"],
.field input[type="email"],
.field input[type="tel"],
.field select,
.field textarea {
  width: 100%;
  padding: 12px 16px;
  background: var(--bg);
  border: 1px solid var(--line-strong);
  border-radius: 6px;
  color: var(--ink);
  font-family: 'IBM Plex Sans', sans-serif;
  font-size: 0.92rem;
  transition: border-color 240ms, box-shadow 240ms;
  outline: none;
}

.field input:focus,
.field select:focus,
.field textarea:focus {
  border-color: var(--accent);
  box-shadow: 0 0 0 3px rgba(0,212,255,0.12);
}

.field textarea {
  min-height: 120px;
  resize: vertical;
}

.field select {
  cursor: pointer;
  appearance: none;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='16' height='16' viewBox='0 0 24 24' fill='none' stroke='%239DA5B4' stroke-width='2' stroke-linecap='round' stroke-linejoin='round'%3E%3Cpath d='M6 9l6 6 6-6'/%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-position: right 12px center;
  padding-right: 40px;
}

.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);
}

.kvkk {
  flex-direction: row !important;
  align-items: flex-start;
  gap: 10px !important;
}

.kvkk span {
  font-size: 0.84rem;
  color: var(--ink-soft);
  line-height: 1.5;
}

.btn-submit {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  width: 100%;
  background: var(--accent);
  color: var(--bg);
  padding: 14px 28px;
  border-radius: 8px;
  font-family: 'IBM Plex Sans', sans-serif;
  font-weight: 600;
  font-size: 0.95rem;
  border: 2px solid var(--accent);
  cursor: pointer;
  transition: background 240ms, color 240ms, border-color 240ms, transform 180ms;
}

@media (min-width: 640px) {
  .btn-submit { width: auto; }
}

.btn-submit:hover, .btn-submit:focus-visible {
  background: var(--accent-2);
  color: #fff;
  border-color: var(--accent-2);
  transform: translateY(-2px);
}

.btn-submit:focus-visible {
  outline: 2px solid var(--accent);
  outline-offset: 2px;
}

/* ======== ABOUT PAGE ======== */
.team-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 24px;
}

@media (min-width: 768px) {
  .team-grid { grid-template-columns: repeat(3, 1fr); }
}

.team-card {
  background: var(--surface);
  border: 1px solid var(--line);
  border-radius: 10px;
  padding: 28px 24px;
  transition: transform 300ms cubic-bezier(.2,.7,.2,1), box-shadow 300ms;
}

.team-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 12px 32px -8px rgba(0,212,255,0.1);
}

.team-card__avatar {
  width: 64px;
  height: 64px;
  background: rgba(0,212,255,0.08);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 16px;
  font-family: 'IBM Plex Mono', monospace;
  font-size: 1.2rem;
  color: var(--accent);
  border: 2px dashed var(--line-strong);
}

.team-card h3 { font-size: 1.1rem; margin-bottom: 4px; }
.team-card__role {
  font-family: 'IBM Plex Mono', monospace;
  font-size: 0.78rem;
  color: var(--accent);
  margin-bottom: 12px;
}
.team-card p { color: var(--ink-soft); font-size: 0.88rem; line-height: 1.6; }

/* ======== LEGAL / POLICY PAGES ======== */
.legal-content {
  max-width: 740px;
  margin: 0 auto;
  line-height: 1.7;
  padding-top: clamp(32px, 5vw, 56px);
  padding-bottom: clamp(48px, 8vw, 96px);
}

.legal-content h2 {
  font-size: 1.4rem;
  margin-top: 40px;
  margin-bottom: 16px;
  padding-bottom: 8px;
  border-bottom: 1px dashed var(--line);
}

.legal-content h3 {
  font-size: 1.1rem;
  margin-top: 28px;
  margin-bottom: 12px;
}

.legal-content p {
  color: var(--ink-soft);
  margin-bottom: 16px;
}

.legal-content ul, .legal-content ol {
  color: var(--ink-soft);
  padding-left: 24px;
  margin-bottom: 16px;
}

.legal-content li { margin-bottom: 6px; }

/* ======== THANK YOU PAGE ======== */
.thankyou-section {
  min-height: 60vh;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
}

.thankyou-section h1 { margin-bottom: 16px; }
.thankyou-section p { color: var(--ink-soft); margin-bottom: 32px; max-width: 480px; margin-left: auto; margin-right: auto; }

/* ======== 404 ======== */
.error-section {
  min-height: 60vh;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
}

.error-section .error-code {
  font-family: 'IBM Plex Mono', monospace;
  font-size: clamp(5rem, 12vw, 10rem);
  color: var(--accent);
  line-height: 1;
  opacity: 0.15;
  margin-bottom: -20px;
}

.error-section h1 { margin-bottom: 12px; }
.error-section p { color: var(--ink-soft); margin-bottom: 28px; }

/* ======== SITEMAP PAGE ======== */
.sitemap-list {
  list-style: none;
  max-width: 480px;
}

.sitemap-list li {
  border-bottom: 1px solid var(--line);
}

.sitemap-list a {
  display: block;
  padding: 12px 0;
  color: var(--ink);
  font-size: 0.95rem;
  transition: color 200ms, padding-left 200ms;
}
.sitemap-list a:hover {
  color: var(--accent);
  padding-left: 8px;
}

/* ======== CANCELLATION TIERS ======== */
.cancel-tiers {
  display: grid;
  grid-template-columns: 1fr;
  gap: 12px;
  max-width: 600px;
}

@media (min-width: 640px) {
  .cancel-tiers { grid-template-columns: repeat(3, 1fr); }
}

.cancel-tier {
  background: var(--surface);
  border: 1px solid var(--line);
  border-radius: 8px;
  padding: 20px;
  text-align: center;
}

.cancel-tier__period {
  font-family: 'IBM Plex Mono', monospace;
  font-size: 0.85rem;
  color: var(--accent);
  margin-bottom: 8px;
}

.cancel-tier__action {
  font-size: 0.92rem;
  color: var(--ink);
  font-weight: 600;
}

/* ======== PROCESS STEPS (about/index) ======== */
.process-steps {
  counter-reset: step;
  max-width: 720px;
}

.process-step {
  position: relative;
  padding: 24px 0 24px 56px;
  border-left: 1px dashed var(--line-strong);
  counter-increment: step;
}
.process-step:last-child { border-left-color: transparent; }

.process-step::before {
  content: counter(step, decimal-leading-zero);
  position: absolute;
  left: -16px;
  top: 24px;
  width: 32px;
  height: 32px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: 'IBM Plex Mono', monospace;
  font-size: 0.72rem;
  color: var(--accent);
  background: var(--bg);
  border: 1px dashed var(--accent);
  border-radius: 50%;
}

.process-step__time {
  font-family: 'IBM Plex Mono', monospace;
  font-size: 0.75rem;
  color: var(--accent-2);
  margin-bottom: 4px;
}

.process-step h4 { margin-bottom: 4px; }
.process-step p { color: var(--ink-soft); font-size: 0.9rem; }

/* ======== CAPACITY / AVAILABILITY ======== */
.capacity-badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-family: 'IBM Plex Mono', monospace;
  font-size: 0.82rem;
  color: var(--accent-2);
  padding: 8px 16px;
  background: rgba(255,59,122,0.06);
  border: 1px dashed rgba(255,59,122,0.3);
  border-radius: 6px;
  margin-top: 16px;
}

.capacity-badge__dot {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: var(--accent-2);
  animation: capacity-blink 2s ease-in-out infinite;
}

@keyframes capacity-blink {
  0%, 100% { opacity: 1; }
  50% { opacity: 0.3; }
}

@media (prefers-reduced-motion: reduce) {
  .capacity-badge__dot { animation: none; }
}

/* ======== FOCUS RING ======== */
*:focus-visible {
  outline: 2px solid var(--accent);
  outline-offset: 2px;
}

/* ======== CONTACT FORM ROWS ======== */
.contact-form {
  max-width: 680px;
}

.form-row {
  display: grid;
  grid-template-columns: 1fr;
  gap: 20px;
  margin-bottom: 20px;
}

.form-row--2col {
  grid-template-columns: 1fr;
}

@media (min-width: 640px) {
  .form-row--2col { grid-template-columns: 1fr 1fr; }
}

.form-group {
  display: flex;
  flex-direction: column;
  gap: 6px;
  margin-bottom: 20px;
}

.form-group label {
  font-size: 0.84rem;
  font-weight: 600;
  color: var(--ink-soft);
  letter-spacing: 0.02em;
}

.form-group input[type="text"],
.form-group input[type="email"],
.form-group input[type="tel"],
.form-group select,
.form-group textarea {
  width: 100%;
  padding: 12px 16px;
  background: var(--bg);
  border: 1px solid var(--line-strong);
  border-radius: 6px;
  color: var(--ink);
  font-family: 'IBM Plex Sans', sans-serif;
  font-size: 0.92rem;
  transition: border-color 240ms, box-shadow 240ms;
  outline: none;
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
  border-color: var(--accent);
  box-shadow: 0 0 0 3px rgba(0,212,255,0.12);
}

.form-group textarea {
  min-height: 120px;
  resize: vertical;
}

.form-group select {
  cursor: pointer;
  appearance: none;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='16' height='16' viewBox='0 0 24 24' fill='none' stroke='%239DA5B4' stroke-width='2' stroke-linecap='round' stroke-linejoin='round'%3E%3Cpath d='M6 9l6 6 6-6'/%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-position: right 12px center;
  padding-right: 40px;
}

.form-group--checkbox {
  flex-direction: row;
  align-items: flex-start;
  gap: 10px;
}

.form-group--checkbox 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-group--checkbox label {
  font-size: 0.84rem;
  color: var(--ink-soft);
  line-height: 1.5;
}

/* ======== HOURS LIST (contact page) ======== */
.hours-list {
  list-style: none;
  padding: 0;
  margin: 0;
  font-variant-numeric: tabular-nums;
}

.hours-list li {
  display: flex;
  justify-content: space-between;
  padding: 5px 0;
  font-size: 0.88rem;
  color: var(--ink-soft);
  border-bottom: 1px solid var(--line);
}
.hours-list li:last-child { border-bottom: none; }

.hours-list li .day-name {
  font-weight: 600;
  color: var(--ink);
  min-width: 40px;
}

.hours-list li.is-today { color: var(--accent); }
.hours-list li.is-today .day-name { color: var(--accent); }

/* ======== PRINT ======== */
@media print {
  .site-header, .nav-toggle, .drawer, .drawer-backdrop, .cookie-banner, .skip-link { display: none !important; }
  body { background: #fff; color: #111; }
  main { padding-top: 0; }
  .reveal { opacity: 1 !important; transform: none !important; }
}

/* ======== RESPONSIVE ======== */
@media (max-width: 1024px) {
  :root { --header-h: 64px; }
}

@media (max-width: 640px) {
  :root { --header-h: 60px; }

  .hero__dashboard { grid-template-columns: repeat(2, 1fr); }
  .ticker-box { padding: 12px 10px; }
  .ticker-box .stat-val { font-size: 1.2rem; }
  .ticker-box .stat-label { font-size: 0.68rem; }

  .step-card { padding: 20px 16px; }
  .metric-card { padding: 20px 16px; }
  .metric-card__icon { width: 36px; height: 36px; }
  .metric-card__icon svg { width: 18px; height: 18px; }

  .tech-item { padding: 16px; gap: 12px; grid-template-columns: auto 1fr; }
  .tech-item__spec { display: none; }

  .testimonial-card { padding: 20px 16px; }
  .channel-card { padding: 20px 16px; }
  .channel-card__icon { width: 40px; height: 40px; }
  .channel-card__icon svg { width: 18px; height: 18px; }

  .team-card { padding: 20px 16px; }
}

@media (max-width: 480px) {
  .hero h1 { font-size: 2rem; }

  .hero__actions { flex-direction: column; align-items: stretch; }
  .btn-primary, .btn-ghost { width: 100%; justify-content: center; }

  .trust-strip { gap: 8px; }
  .trust-badge { font-size: 0.72rem; padding: 5px 10px; }

  .metric-card__header { flex-direction: column; gap: 8px; }
}

@media (max-width: 360px) {
  .container { padding-left: 16px; padding-right: 16px; }
  .hero h1 { font-size: 1.8rem; }
}

/* Long text safety */
.footer__contact a,
.channel-val a,
.contact-card a,
.legal-content a,
.legal-content p {
  word-break: break-word;
  overflow-wrap: anywhere;
}

/* Scroll margin for anchor sections */
section[id] {
  scroll-margin-top: calc(var(--header-h) + 16px);
}

/* ======== ENHANCED TENNIS-THEMED MICRO-EFFECTS ======== */

/* Stagger reveal with slight scale for cards */
.step-card.reveal,
.metric-card.reveal,
.team-card.reveal,
.testimonial-card.reveal,
.contact-card.reveal {
  transform: translateY(24px) scale(0.97);
}
.step-card.reveal.is-in,
.metric-card.reveal.is-in,
.team-card.reveal.is-in,
.testimonial-card.reveal.is-in,
.contact-card.reveal.is-in {
  transform: none;
}

/* Card hover: data-glow effect (tennis analytics vibe) */
.metric-card:hover .metric-card__icon,
.step-card:hover .step-card__icon {
  background: rgba(0,212,255,0.15);
  box-shadow: 0 0 16px rgba(0,212,255,0.18);
  transition: background 300ms, box-shadow 300ms;
}

.metric-card:hover .metric-val {
  text-shadow: 0 0 12px rgba(0,212,255,0.35);
  transition: text-shadow 300ms;
}

/* Ticker box hover pulse */
.ticker-box:hover {
  border-color: var(--accent);
  box-shadow: 0 0 20px rgba(0,212,255,0.1);
  transition: border-color 300ms, box-shadow 300ms;
}

/* Timeline item hover highlight */
.timeline-item:hover h3 {
  color: var(--accent);
  transition: color 250ms;
}

/* Process step hover */
.process-step:hover h4 {
  color: var(--accent);
  transition: color 250ms;
}

/* Team card avatar glow on hover */
.team-card:hover .team-card__avatar {
  border-color: var(--accent);
  box-shadow: 0 0 20px rgba(0,212,255,0.15);
  color: var(--ink);
  transition: border-color 300ms, box-shadow 300ms, color 300ms;
}

/* Trust badges hover */
.trust-badge:hover {
  border-color: var(--accent);
  color: var(--ink);
  transition: border-color 250ms, color 250ms;
}

/* Capacity badge subtle pulse */
.capacity-badge:hover {
  border-color: var(--accent-2);
  background: rgba(255,59,122,0.1);
  transition: border-color 250ms, background 250ms;
}

/* Contact card icon hover */
.contact-card:hover .contact-card__icon {
  background: rgba(0,212,255,0.15);
  transform: scale(1.08);
  transition: background 300ms, transform 300ms;
}

/* CTA band glow on hover */
.cta-band .btn-primary:hover {
  box-shadow: 0 0 24px rgba(0,212,255,0.3), 0 8px 24px rgba(0,0,0,0.2);
}

/* FAQ item active accent */
.faq-item[open] summary {
  color: var(--accent);
}

/* Smooth focus transitions */
a:focus-visible,
button:focus-visible {
  transition: outline-offset 150ms ease;
}

/* News item hover */
.news-item:hover .news-item__text {
  color: var(--ink);
  transition: color 200ms;
}

/* Cancel tier hover */
.cancel-tier:hover {
  border-color: var(--accent);
  transform: translateY(-2px);
  transition: border-color 250ms, transform 250ms;
}

/* Testimonial card hover quote glow */
.testimonial-card:hover::before {
  opacity: 0.5;
  color: var(--accent);
  transition: opacity 300ms;
}

/* Reduced motion: disable all custom hovers that use transform */
@media (prefers-reduced-motion: reduce) {
  .step-card.reveal,
  .metric-card.reveal,
  .team-card.reveal,
  .testimonial-card.reveal,
  .contact-card.reveal {
    transform: none;
  }
  .hero .reveal {
    animation: none;
    opacity: 1;
    transform: none;
  }
  .contact-card:hover .contact-card__icon {
    transform: none;
  }
  .cancel-tier:hover {
    transform: none;
  }
}

.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}

/* form-reveal-opacity-fix */
main form.reveal, .form-section form.reveal, .contact-form.reveal, form[id*='iletisim'].reveal, form[class*='contact'].reveal { opacity: 1 !important; transform: none !important; translate: none !important; }
main form, .form-section form, .contact-form, form[id*='iletisim'], form[class*='contact'] { opacity: 1 !important; }

/* consent-checkbox-inline-fix */
main form label.checkbox, main form .form-checkbox, main form .consent, main form .kvkk, .contact-form label.checkbox, .contact-form .checkbox-group { display: flex !important; flex-direction: row !important; align-items: flex-start !important; gap: 10px !important; font-size: 14px !important; line-height: 1.5 !important; flex-wrap: nowrap !important; }
main form label.checkbox span, main form label.checkbox a, main form .form-checkbox span, main form .form-checkbox a, .contact-form label.checkbox span, .contact-form label.checkbox a { display: inline !important; flex: 1 1 auto; }
main form label.checkbox input[type='checkbox'], main form .form-checkbox input[type='checkbox'] { flex-shrink: 0 !important; width: 18px !important; height: 18px !important; margin-top: 3px !important; }

/* iletisim-form-responsive-guard v2 */
main form, .form-section form, .contact-form, .iletisim-form, form#contact-form, form[id*="iletisim"], form[class*="iletisim"], form[class*="contact"] {
  display: block;
  max-width: 720px;
  margin: 24px auto;
  padding: clamp(20px, 4vw, 36px);
  background: var(--surface, rgba(255,255,255,0.04));
  border: 1px solid var(--line, rgba(127,127,127,0.18));
  border-radius: 16px;
  box-shadow: 0 8px 32px -12px rgba(0,0,0,0.25);
  box-sizing: border-box;
}
main form .form-grid,
main form > .grid,
.contact-form .form-grid,
form[class*="contact"] .form-grid,
form[class*="iletisim"] .form-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 14px 18px;
  width: 100%;
}
@media (max-width: 640px) {
  main form .form-grid,
  main form > .grid,
  .contact-form .form-grid,
  form[class*="contact"] .form-grid,
  form[class*="iletisim"] .form-grid {
    grid-template-columns: 1fr;
  }
}
main form .form-grid > .field-full,
main form .form-grid > .col-full,
main form .form-grid > [class*="full"] {
  grid-column: 1 / -1;
}
main form .field, main form label,
.contact-form .field, .contact-form label {
  display: flex;
  flex-direction: column;
  gap: 6px;
  width: 100%;
}
main form input[type="text"],
main form input[type="email"],
main form input[type="tel"],
main form input[type="number"],
main form input[type="date"],
main form input[type="url"],
main form input[type="search"],
main form input:not([type]),
main form select,
main form textarea,
.contact-form input:not([type=checkbox]):not([type=radio]):not([type=submit]):not([type=hidden]),
.contact-form select,
.contact-form textarea {
  width: 100%;
  box-sizing: border-box;
  padding: 12px 14px;
  min-height: 44px;
  font-size: 16px;
  line-height: 1.4;
  font-family: inherit;
  border: 1px solid var(--line, rgba(127,127,127,0.22));
  border-radius: 10px;
  background: var(--input-bg, rgba(0,0,0,0.04));
  color: inherit;
  appearance: none;
  -webkit-appearance: none;
}
main form textarea, .contact-form textarea {
  min-height: 120px;
  resize: vertical;
}
main form input:focus, main form select:focus, main form textarea:focus,
.contact-form input:focus, .contact-form select:focus, .contact-form textarea:focus {
  outline: 2px solid var(--accent, #5a8dee);
  outline-offset: 1px;
  border-color: transparent;
}
main form .checkbox, main form label.checkbox,
.contact-form .checkbox {
  flex-direction: row;
  align-items: flex-start;
  gap: 10px;
  font-size: 14px;
  line-height: 1.5;
}
main form input[type="checkbox"], main form input[type="radio"],
.contact-form input[type="checkbox"], .contact-form input[type="radio"] {
  width: 18px;
  height: 18px;
  min-width: 18px;
  margin-top: 2px;
  flex-shrink: 0;
  accent-color: var(--accent, #5a8dee);
}
main form button[type="submit"],
main form input[type="submit"],
main form .btn-submit,
.contact-form button[type="submit"],
.contact-form .btn-submit {
  width: 100%;
  min-height: 48px;
  padding: 14px 28px;
  background: var(--accent, #5a8dee);
  color: #fff;
  font-weight: 700;
  font-size: 15px;
  letter-spacing: 0;
  border: none;
  border-radius: 10px;
  cursor: pointer;
  margin-top: 8px;
  transition: filter 200ms ease, transform 120ms ease;
}
@media (min-width: 640px) {
  main form button[type="submit"],
  main form input[type="submit"],
  .contact-form button[type="submit"] {
    width: auto;
    min-width: 220px;
    display: block;
    margin-left: auto;
    margin-right: auto;
  }
}
main form button[type="submit"]:hover,
.contact-form button[type="submit"]:hover {
  filter: brightness(1.05);
}
main form button[type="submit"]:active,
.contact-form button[type="submit"]:active {
  transform: translateY(1px);
}


/* contacts-grid-v2 */
/* Contact cards in responsive grid */
.contact-grid, .contacts-grid, .iletisim-grid, .contact-cards, .contact-cards-grid,
.contact-list, main .contact-wrap, section[id*="iletisim"] > .container > div:has(> .contact-card) {
  display: grid !important;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr)) !important;
  gap: 20px !important;
  width: 100%;
  max-width: 1100px;
  margin: 0 auto;
  padding: 8px 16px;
  box-sizing: border-box;
}
@media (min-width: 1024px) {
  .contact-grid, .contacts-grid, .iletisim-grid, .contact-cards, .contact-cards-grid {
    grid-template-columns: repeat(3, 1fr) !important;
  }
}
@media (max-width: 720px) {
  .contact-grid, .contacts-grid, .iletisim-grid, .contact-cards, .contact-cards-grid {
    grid-template-columns: 1fr !important;
  }
}
.contact-card { min-height: 0; box-sizing: border-box; }

/* Checkbox row alignment — override .field-checkbox column layout */
form .field.field-checkbox,
form .field-checkbox,
form .checkbox-field,
form .form-field--checkbox,
form .form-row--checkbox,
form .kvkk-field,
form .consent-field,
.contact-form .field.field-checkbox {
  display: flex !important;
  flex-direction: row !important;
  flex-wrap: nowrap !important;
  align-items: flex-start !important;
  gap: 10px !important;
  width: 100%;
}
form .field.field-checkbox > input[type="checkbox"],
form .field-checkbox > input[type="checkbox"],
form .checkbox-field > input[type="checkbox"],
form .kvkk-field > input[type="checkbox"],
form .consent-field > input[type="checkbox"] {
  flex-shrink: 0 !important;
  width: 18px !important;
  height: 18px !important;
  margin: 3px 0 0 0 !important;
  accent-color: var(--accent, currentColor);
}
form .field.field-checkbox > label,
form .field-checkbox > label,
form .checkbox-field > label,
form .kvkk-field > label,
form .consent-field > label {
  flex: 1 1 auto !important;
  font-size: 14px !important;
  line-height: 1.45 !important;
  margin: 0 !important;
  display: inline !important;
  cursor: pointer;
}
form .field.field-checkbox > label a,
form .field-checkbox > label a {
  text-decoration: underline;
}

/* field-full inside form grid spans both columns */
form .form-grid > .field-full,
form .form-grid > .field.field-full,
form .form-grid > .col-full,
form .form-grid > .full,
form .form-grid > [class*="--full"] {
  grid-column: 1 / -1;
}

