/* =====================================================================
   Gece Atlası — Gökyüzü Planlayıcı
   Palet: bg #15102B · surface #211A3D · ink #F1ECFF · accent #E84FB0 · accent-2 #7C5CFF
   ===================================================================== */

:root {
  --bg: #15102B;
  --bg-2: #100B22;
  --surface: #211A3D;
  --surface-2: #2A2150;
  --surface-3: #322861;
  --ink: #F1ECFF;
  --ink-soft: #B7AEDC;
  --ink-faint: #8278B0;
  --accent: #E84FB0;
  --accent-2: #7C5CFF;
  --accent-soft: rgba(232, 79, 176, 0.16);
  --indigo-soft: rgba(124, 92, 255, 0.18);
  --line: rgba(241, 236, 255, 0.12);
  --line-strong: rgba(241, 236, 255, 0.22);
  --star: #FFF4D6;
  --header-h: 76px;
  --radius: 16px;
  --radius-sm: 10px;
  --maxw: 1180px;
  --ease: cubic-bezier(.2, .7, .2, 1);
  --ease-2: cubic-bezier(.4, 0, .2, 1);
  interpolate-size: allow-keywords;
}

* { box-sizing: border-box; }

html {
  scroll-behavior: smooth;
  -webkit-text-size-adjust: 100%;
}
@media (prefers-reduced-motion: reduce) { html { scroll-behavior: auto; } }

html, body {
  overflow-x: hidden;
  max-width: 100vw;
  margin: 0;
}

body {
  background:
    radial-gradient(1200px 700px at 80% -10%, rgba(124, 92, 255, 0.20), transparent 60%),
    radial-gradient(900px 600px at 10% 5%, rgba(232, 79, 176, 0.12), transparent 55%),
    var(--bg);
  color: var(--ink);
  font-family: system-ui, -apple-system, "Segoe UI", Roboto, sans-serif;
  font-weight: 400;
  font-size: 17px;
  line-height: 1.65;
  letter-spacing: 0;
  -webkit-font-smoothing: antialiased;
  word-break: break-word;
  overflow-wrap: anywhere;
}

h1, h2, h3, h4, h5 {
  font-family: "Trebuchet MS", "Segoe UI", Tahoma, sans-serif;
  font-weight: 700;
  line-height: 1.12;
  margin: 0 0 .5em;
  letter-spacing: -0.012em;
}
h1 { font-size: clamp(2.3rem, 5.6vw, 4.4rem); }
h2 { font-size: clamp(1.7rem, 3.4vw, 2.7rem); }
h3 { font-size: clamp(1.2rem, 2vw, 1.55rem); }
p { margin: 0 0 1rem; }
a { color: var(--accent); text-decoration: none; transition: color .24s var(--ease-2); }
a:hover { color: var(--accent-2); }
img { max-width: 100%; height: auto; display: block; }
strong, b { font-weight: 600; }

::selection { background: var(--accent); color: #fff; }

.container {
  width: 100%;
  max-width: var(--maxw);
  margin-inline: auto;
  padding-left: clamp(16px, 4vw, 32px);
  padding-right: clamp(16px, 4vw, 32px);
}

.eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-size: .8rem;
  font-weight: 600;
  letter-spacing: .18em;
  text-transform: uppercase;
  color: var(--accent);
}
.eyebrow::before {
  content: "";
  width: 22px; height: 1px;
  background: linear-gradient(90deg, var(--accent), transparent);
}

.section { padding: clamp(56px, 9vw, 110px) 0; position: relative; }
.section-head { max-width: 660px; margin-bottom: clamp(28px, 5vw, 52px); }
.section-head p { color: var(--ink-soft); font-size: 1.08rem; }
.lead { font-size: 1.12rem; color: var(--ink-soft); }

:where(a, button, input, select, textarea, summary):focus-visible {
  outline: 2px solid var(--accent);
  outline-offset: 2px;
  border-radius: 4px;
}

.skip-link {
  position: absolute;
  left: 12px; top: -60px;
  background: var(--accent);
  color: #fff;
  padding: 10px 16px;
  border-radius: 8px;
  z-index: 2000;
  transition: top .2s var(--ease);
}
.skip-link:focus { top: 12px; color: #fff; }

/* ============================ Buttons ============================ */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 9px;
  font: inherit;
  font-weight: 600;
  font-size: .98rem;
  padding: 13px 24px;
  border-radius: 999px;
  border: 1px solid transparent;
  cursor: pointer;
  transition: transform .22s var(--ease), background .24s var(--ease-2), color .24s var(--ease-2), box-shadow .24s var(--ease-2), border-color .24s;
  text-align: center;
  position: relative;
  overflow: hidden;
}
.btn-primary {
  background: linear-gradient(135deg, var(--accent), var(--accent-2));
  color: #fff;
  box-shadow: 0 12px 30px -14px rgba(232, 79, 176, 0.7);
}
.btn-primary:hover, .btn-primary:focus-visible {
  color: #fff;
  transform: translateY(-2px);
  box-shadow: 0 18px 40px -14px rgba(124, 92, 255, 0.8);
}
.btn-ghost {
  background: transparent;
  color: var(--ink);
  border-color: var(--line-strong);
}
.btn-ghost:hover, .btn-ghost:focus-visible {
  background: var(--surface-2);
  color: var(--ink);
  border-color: var(--accent);
  transform: translateY(-2px);
}
.btn-block { width: 100%; }
.btn .arr { transition: transform .24s var(--ease); }
.btn:hover .arr { transform: translateX(4px); }

/* shooting-star streak on primary CTA hover */
.btn-primary::after {
  content: "";
  position: absolute;
  top: -40%; left: -30%;
  width: 40%; height: 200%;
  background: linear-gradient(115deg, transparent, rgba(255,255,255,.55), transparent);
  transform: translateX(-180%) rotate(8deg);
  pointer-events: none;
}
.btn-primary:hover::after { animation: streak .7s var(--ease) forwards; }
@keyframes streak { to { transform: translateX(360%) rotate(8deg); } }

/* ============================ Header ============================ */
.site-header {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 1080;
  height: var(--header-h);
  display: flex;
  align-items: center;
  background: rgba(21, 16, 43, 0.92);
  border-bottom: 1px solid transparent;
  backdrop-filter: blur(10px);
  transition: background .24s var(--ease-2), box-shadow .24s var(--ease-2), height .24s var(--ease-2), border-color .24s;
}
.site-header.scrolled {
  background: rgba(16, 11, 34, 0.98);
  box-shadow: 0 8px 28px -18px rgba(0, 0, 0, 0.7);
  border-bottom-color: var(--line);
  height: 64px;
}
.header-inner {
  width: 100%;
  max-width: var(--maxw);
  margin-inline: auto;
  padding-left: clamp(16px, 4vw, 32px);
  padding-right: clamp(16px, 4vw, 32px);
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
}
.brand {
  display: inline-flex;
  align-items: center;
  gap: 11px;
  font-family: "Trebuchet MS", sans-serif;
  font-weight: 700;
  font-size: 1.18rem;
  color: var(--ink);
  letter-spacing: -0.01em;
}
.brand:hover { color: var(--ink); }
.brand .badge { width: 34px; height: 34px; flex: 0 0 auto; }
.brand .badge svg { width: 100%; height: 100%; display: block; }

.nav-desktop { display: none; }
@media (min-width: 1024px) {
  .nav-desktop {
    display: flex;
    align-items: center;
    gap: clamp(18px, 2.4vw, 34px);
  }
  .nav-desktop a {
    position: relative;
    color: var(--ink-soft);
    font-weight: 600;
    font-size: .96rem;
    padding: 6px 2px;
  }
  .nav-desktop a:not(.nav-cta)::after {
    content: "";
    position: absolute;
    left: 0; bottom: -2px;
    width: 0; height: 2px;
    background: linear-gradient(90deg, var(--accent), var(--accent-2));
    transition: width .26s var(--ease);
  }
  .nav-desktop a:not(.nav-cta):hover { color: var(--ink); }
  .nav-desktop a:not(.nav-cta):hover::after,
  .nav-desktop a.is-active:not(.nav-cta)::after { width: 100%; }
  .nav-desktop a.is-active:not(.nav-cta) { color: var(--ink); }
  .nav-desktop .nav-cta {
    background: linear-gradient(135deg, var(--accent), var(--accent-2));
    color: #fff;
    padding: 9px 18px;
    border-radius: 999px;
  }
  .nav-desktop .nav-cta::after { display: none; }
  .nav-desktop .nav-cta:hover { color: #fff; transform: translateY(-1px); box-shadow: 0 10px 24px -12px rgba(232,79,176,.8); }
}

/* hamburger */
.nav-toggle {
  display: inline-flex;
  flex-direction: column;
  justify-content: center;
  gap: 5px;
  width: 44px; height: 44px;
  padding: 10px;
  background: transparent;
  border: 1px solid var(--line-strong);
  border-radius: 10px;
  cursor: pointer;
  z-index: 1100;
  position: relative;
}
@media (min-width: 1024px) { .nav-toggle { display: none; } }
.nav-toggle span {
  display: block;
  height: 2px;
  width: 100%;
  background: var(--ink);
  border-radius: 2px;
  transition: transform .3s var(--ease), opacity .2s var(--ease-2);
  transform-origin: center;
}
.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 {
  position: fixed;
  top: 0; right: 0; bottom: 0;
  width: min(360px, 92vw);
  background: var(--bg-2);
  border-left: 1px solid var(--line);
  z-index: 1050;
  transform: translateX(100%);
  transition: transform .32s var(--ease);
  display: flex;
  flex-direction: column;
  padding: calc(var(--header-h) + 14px) 28px 32px;
  overflow-y: auto;
}
.drawer.is-open { transform: translateX(0); }
.drawer a {
  display: block;
  color: var(--ink);
  font-family: "Trebuchet MS", sans-serif;
  font-weight: 700;
  font-size: 1.3rem;
  padding: 14px 0;
  border-bottom: 1px solid var(--line);
}
.drawer a:hover, .drawer a.is-active { color: var(--accent); }
.drawer .drawer-cta {
  margin-top: 22px;
  border: none;
  text-align: center;
  background: linear-gradient(135deg, var(--accent), var(--accent-2));
  color: #fff;
  border-radius: 999px;
  font-size: 1rem;
}
.drawer .drawer-cta:hover { color: #fff; }
.drawer-backdrop {
  position: fixed;
  inset: 0;
  background: rgba(0, 0, 0, 0.55);
  z-index: 1040;
  opacity: 0;
  visibility: hidden;
  transition: opacity .24s var(--ease-2), visibility .24s;
}
.drawer-backdrop.is-open { opacity: 1; visibility: visible; }

main { padding-top: var(--header-h); }

/* ============================ Starfield / hero ============================ */
.hero {
  position: relative;
  overflow: hidden;
  padding: clamp(48px, 8vw, 96px) 0 clamp(56px, 9vw, 104px);
  isolation: isolate;
}
.starfield {
  position: absolute;
  inset: -10% 0 0 0;
  z-index: -2;
  pointer-events: none;
}
.starfield .layer {
  position: absolute;
  inset: 0;
  background-repeat: repeat;
  will-change: transform;
}
/* gentle, offset twinkle so the sky breathes (parallax uses transform → no conflict) */
.layer.s1 { animation: sky-twinkle 7s ease-in-out infinite alternate; }
.layer.s2 { animation: sky-twinkle 5.5s ease-in-out -2s infinite alternate; }
.layer.s3 { animation: sky-twinkle 9s ease-in-out -4s infinite alternate; }
@keyframes sky-twinkle { from { opacity: .72; } to { opacity: 1; } }
.layer.s1 {
  background-image:
    radial-gradient(1.4px 1.4px at 20% 30%, rgba(255,244,214,.9), transparent),
    radial-gradient(1.2px 1.2px at 70% 60%, rgba(255,244,214,.7), transparent),
    radial-gradient(1.6px 1.6px at 40% 80%, rgba(255,244,214,.85), transparent),
    radial-gradient(1.3px 1.3px at 85% 20%, rgba(255,244,214,.75), transparent);
  background-size: 320px 320px;
}
.layer.s2 {
  background-image:
    radial-gradient(1px 1px at 15% 50%, rgba(183,174,220,.8), transparent),
    radial-gradient(1px 1px at 55% 25%, rgba(183,174,220,.7), transparent),
    radial-gradient(1.1px 1.1px at 80% 75%, rgba(183,174,220,.75), transparent);
  background-size: 220px 220px;
}
.layer.s3 {
  background-image:
    radial-gradient(.8px .8px at 30% 65%, rgba(124,92,255,.7), transparent),
    radial-gradient(.8px .8px at 65% 40%, rgba(232,79,176,.6), transparent);
  background-size: 160px 160px;
}
.hero::before {
  /* ambient orbital glow */
  content: "";
  position: absolute;
  top: -20%; right: -10%;
  width: 520px; height: 520px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(124,92,255,.28), transparent 62%);
  z-index: -2;
  filter: blur(8px);
}
.hero-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: clamp(34px, 5vw, 60px);
  align-items: center;
}
@media (min-width: 980px) {
  .hero-grid { grid-template-columns: 1.05fr .95fr; }
}
.hero-copy h1 { margin-bottom: .35em; }
.hero-copy .hero-sub {
  font-size: clamp(1.05rem, 2vw, 1.28rem);
  color: var(--ink-soft);
  max-width: 46ch;
  margin-bottom: 1.6em;
}
.hero-actions { display: flex; flex-wrap: wrap; gap: 14px; margin-bottom: 28px; }
.trust-strip {
  display: flex;
  flex-wrap: wrap;
  gap: 10px 16px;
  list-style: none;
  margin: 0; padding: 0;
}
.trust-strip li {
  display: inline-flex;
  align-items: center;
  gap: 7px;
  font-size: .86rem;
  color: var(--ink-soft);
  font-weight: 600;
}
.trust-strip svg { width: 16px; height: 16px; color: var(--accent); flex: 0 0 auto; }

/* hero title kinetic */
.hero-copy h1 .w {
  display: inline-block;
  opacity: 0;
  transform: translateY(20px);
  animation: wordIn .7s var(--ease) forwards;
}
.no-js .hero-copy h1 .w { opacity: 1; transform: none; }
@keyframes wordIn { to { opacity: 1; transform: none; } }

/* ============================ Planner tool ============================ */
.tool-card {
  background: linear-gradient(160deg, var(--surface-2), var(--surface));
  border: 1px solid var(--line-strong);
  border-radius: 22px;
  padding: clamp(20px, 3vw, 30px);
  box-shadow: 0 30px 70px -40px rgba(0, 0, 0, 0.85), inset 0 1px 0 rgba(255,255,255,.04);
  position: relative;
  transition: transform .26s var(--ease), box-shadow .26s var(--ease-2), border-color .26s;
}
.tool-card:hover {
  transform: translateY(-6px);
  border-color: var(--accent);
  box-shadow: 0 42px 84px -42px rgba(124, 92, 255, 0.7), inset 0 1px 0 rgba(255,255,255,.05);
}
.tool-card .tool-head {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
  margin-bottom: 18px;
}
.tool-card .tool-head h2 { font-size: 1.25rem; margin: 0; }
.tool-card .tool-head .tag {
  font-size: .72rem;
  font-weight: 600;
  letter-spacing: .12em;
  text-transform: uppercase;
  color: var(--accent-2);
  border: 1px solid var(--line);
  padding: 4px 10px;
  border-radius: 999px;
}
.tool-controls { display: grid; gap: 16px; margin-bottom: 22px; }
.ctrl label {
  display: block;
  font-size: .82rem;
  font-weight: 600;
  letter-spacing: .04em;
  color: var(--ink-soft);
  margin-bottom: 7px;
}
.ctrl select,
.ctrl input[type="date"] {
  width: 100%;
  font: inherit;
  font-size: .98rem;
  color: var(--ink);
  background: var(--bg-2);
  border: 1px solid var(--line-strong);
  border-radius: var(--radius-sm);
  padding: 12px 14px;
  transition: border-color .2s var(--ease-2), box-shadow .2s;
}
.ctrl select:focus,
.ctrl input[type="date"]:focus {
  border-color: var(--accent);
  box-shadow: 0 0 0 3px var(--accent-soft);
  outline: none;
}
.ctrl input[type="date"] { color-scheme: dark; }

/* date slider with live moon */
.slider-row .slider-val {
  float: right;
  font-weight: 600;
  color: var(--accent);
  font-variant-numeric: tabular-nums;
}
input[type="range"].date-slider {
  -webkit-appearance: none;
  appearance: none;
  width: 100%;
  height: 6px;
  border-radius: 999px;
  background: linear-gradient(90deg, var(--accent), var(--accent-2));
  outline: none;
  margin: 8px 0 2px;
}
input[type="range"].date-slider::-webkit-slider-thumb {
  -webkit-appearance: none;
  appearance: none;
  width: 22px; height: 22px;
  border-radius: 50%;
  background: var(--star);
  border: 3px solid var(--accent);
  cursor: pointer;
  box-shadow: 0 0 14px rgba(255, 244, 214, .6);
}
input[type="range"].date-slider::-moz-range-thumb {
  width: 18px; height: 18px;
  border-radius: 50%;
  background: var(--star);
  border: 3px solid var(--accent);
  cursor: pointer;
}

/* result panel */
.tool-results { display: grid; gap: 14px; }
.result-card {
  background: var(--bg-2);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  padding: 18px 18px 16px;
  transform-style: preserve-3d;
  transition: transform .24s var(--ease), box-shadow .24s var(--ease-2), border-color .24s;
}
.result-card:hover {
  transform: translateY(-4px);
  border-color: var(--line-strong);
  box-shadow: 0 22px 44px -30px rgba(124, 92, 255, 0.65);
}
.result-card.flip { animation: cardflip .55s var(--ease); }
@keyframes cardflip {
  0% { transform: rotateX(0); }
  45% { transform: rotateX(-90deg); opacity: .25; }
  55% { transform: rotateX(90deg); opacity: .25; }
  100% { transform: rotateX(0); opacity: 1; }
}
.result-card .rc-label {
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: .76rem;
  font-weight: 600;
  letter-spacing: .1em;
  text-transform: uppercase;
  color: var(--ink-faint);
  margin-bottom: 8px;
}
.result-card .rc-label svg { width: 16px; height: 16px; color: var(--accent); }
.result-card .rc-value { font-family: "Trebuchet MS", sans-serif; font-weight: 700; font-size: 1.35rem; }
.result-card .rc-sub { font-size: .9rem; color: var(--ink-soft); margin-top: 4px; }

/* moon disk */
.moon-block {
  display: grid;
  grid-template-columns: 96px 1fr;
  gap: 16px;
  align-items: center;
}
.moon-disk { width: 96px; height: 96px; }
.moon-disk svg { width: 100%; height: 100%; display: block; filter: drop-shadow(0 0 18px rgba(255,244,214,.25)); }

/* planet list */
.planet-list { list-style: none; margin: 6px 0 0; padding: 0; display: grid; gap: 9px; }
.planet-list li {
  display: grid;
  grid-template-columns: auto 1fr auto;
  align-items: center;
  gap: 12px;
  padding: 9px 12px;
  background: var(--surface);
  border: 1px solid var(--line);
  border-radius: var(--radius-sm);
}
.planet-list .pdot {
  width: 14px; height: 14px; border-radius: 50%; flex: 0 0 auto;
  box-shadow: 0 0 10px currentColor;
}
.planet-list .pname { font-weight: 600; }
.planet-list .pwhen { font-size: .82rem; color: var(--ink-soft); text-align: right; }
.planet-list .empty { grid-template-columns: 1fr; color: var(--ink-faint); }

/* ============================ Generic cards ============================ */
.grid { display: grid; gap: clamp(16px, 2.4vw, 24px); }
.grid-3 { grid-template-columns: repeat(auto-fit, minmax(260px, 1fr)); }
.grid-2 { grid-template-columns: repeat(auto-fit, minmax(300px, 1fr)); }

.card {
  background: var(--surface);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  padding: clamp(20px, 2.6vw, 28px);
  min-width: 0;
  transition: transform .26s var(--ease), box-shadow .26s var(--ease-2), border-color .26s;
}
.card:hover {
  transform: translateY(-6px);
  border-color: var(--line-strong);
  box-shadow: 0 24px 50px -34px rgba(124, 92, 255, 0.7);
}
.card .ico {
  width: 46px; height: 46px;
  display: grid; place-items: center;
  border-radius: 12px;
  background: var(--indigo-soft);
  margin-bottom: 14px;
  color: var(--accent);
}
.card .ico svg { width: 24px; height: 24px; }
.card h3 { margin-bottom: .4em; }
.card p { color: var(--ink-soft); font-size: .97rem; margin: 0; }
.card .step-num {
  font-family: "Trebuchet MS", sans-serif;
  font-size: .8rem;
  font-weight: 700;
  color: var(--accent-2);
  letter-spacing: .14em;
}

/* tonight band */
.band {
  background:
    radial-gradient(700px 300px at 90% 0%, rgba(124,92,255,.22), transparent 60%),
    linear-gradient(180deg, var(--bg-2), var(--surface));
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
}

/* ============================ Timeline (nasil-okunur) ============================ */
.timeline { position: relative; margin-top: 18px; padding-left: 6px; }
.timeline::before {
  content: "";
  position: absolute;
  left: 17px; top: 8px; bottom: 8px;
  width: 2px;
  background: linear-gradient(180deg, var(--accent), var(--accent-2), transparent);
}
.tl-item {
  position: relative;
  padding: 0 0 26px 56px;
}
.tl-item:last-child { padding-bottom: 0; }
.tl-item .dot {
  position: absolute;
  left: 8px; top: 2px;
  width: 22px; height: 22px;
  border-radius: 50%;
  background: var(--bg);
  border: 2px solid var(--accent);
  display: grid; place-items: center;
  color: var(--accent);
}
.tl-item .dot svg { width: 12px; height: 12px; }
.tl-item h3 { font-size: 1.12rem; margin-bottom: .25em; }
.tl-item p { color: var(--ink-soft); margin: 0; font-size: .96rem; }
.tl-item .when {
  display: inline-block;
  font-size: .74rem;
  font-weight: 600;
  letter-spacing: .08em;
  text-transform: uppercase;
  color: var(--accent-2);
  margin-bottom: 4px;
}

/* ============================ Pricing ============================ */
.price-grid { grid-template-columns: repeat(auto-fit, minmax(280px, 1fr)); align-items: stretch; }
.price-card {
  display: flex;
  flex-direction: column;
  background: var(--surface);
  border: 1px solid var(--line);
  border-radius: 20px;
  padding: clamp(22px, 2.6vw, 30px);
  min-width: 0;
  transition: transform .26s var(--ease), box-shadow .26s var(--ease-2), border-color .26s;
}
.price-card:hover { transform: translateY(-6px); box-shadow: 0 26px 56px -36px rgba(232,79,176,.6); }
.price-card.featured {
  border-color: var(--accent);
  background: linear-gradient(170deg, var(--surface-2), var(--surface));
  box-shadow: 0 24px 60px -36px rgba(124,92,255,.6);
}
.price-card .tier {
  font-size: .78rem;
  font-weight: 600;
  letter-spacing: .14em;
  text-transform: uppercase;
  color: var(--accent-2);
}
.price-card.featured .tier { color: var(--accent); }
.price-card .ribbon {
  align-self: flex-start;
  font-size: .72rem;
  font-weight: 700;
  background: linear-gradient(135deg, var(--accent), var(--accent-2));
  color: #fff;
  padding: 4px 12px;
  border-radius: 999px;
  margin-bottom: 12px;
}
.price-card .amount {
  font-family: "Trebuchet MS", sans-serif;
  font-weight: 700;
  font-size: clamp(2rem, 4vw, 2.6rem);
  margin: 10px 0 2px;
  font-variant-numeric: tabular-nums;
}
.price-card .amount small { font-size: .9rem; font-weight: 600; color: var(--ink-soft); }
.price-card .per { font-size: .85rem; color: var(--ink-faint); margin-bottom: 16px; }
.price-card ul { list-style: none; margin: 0 0 20px; padding: 0; display: grid; gap: 10px; }
.price-card li { display: grid; grid-template-columns: 20px 1fr; gap: 10px; align-items: start; font-size: .95rem; color: var(--ink-soft); }
.price-card li svg { width: 18px; height: 18px; margin-top: 2px; flex: 0 0 auto; }
.price-card li.inc svg { color: #4FD3A6; }
.price-card li.exc { color: var(--ink-faint); }
.price-card li.exc svg { color: var(--ink-faint); }
.price-card .btn { margin-top: auto; }
.price-note { font-size: .82rem; color: var(--ink-faint); margin-top: 18px; }

/* ============================ Stats ============================ */
.stats { display: grid; grid-template-columns: repeat(auto-fit, minmax(150px, 1fr)); gap: 18px; margin-top: 8px; }
.stat { text-align: center; padding: 18px 10px; border: 1px solid var(--line); border-radius: var(--radius); background: var(--surface); }
.stat .num { font-family: "Trebuchet MS", sans-serif; font-weight: 700; font-size: clamp(1.9rem, 4vw, 2.6rem); color: var(--ink); font-variant-numeric: tabular-nums; }
.stat .lbl { font-size: .85rem; color: var(--ink-soft); }

/* ============================ Testimonials ============================ */
.testi-grid { grid-template-columns: repeat(auto-fit, minmax(280px, 1fr)); }
.testi {
  background: var(--surface);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  padding: 24px;
  min-width: 0;
  transition: transform .26s var(--ease), box-shadow .26s var(--ease-2), border-color .26s;
}
.testi:hover {
  transform: translateY(-6px);
  border-color: var(--line-strong);
  box-shadow: 0 24px 50px -34px rgba(124, 92, 255, 0.6);
}
.testi .quote { font-size: 1rem; color: var(--ink); margin-bottom: 16px; }
.testi .meta { font-size: .85rem; color: var(--ink-soft); border-top: 1px solid var(--line); padding-top: 12px; }
.testi .meta strong { color: var(--ink); font-weight: 600; }
.stars { color: var(--accent); letter-spacing: 2px; font-size: .85rem; margin-bottom: 10px; }

/* ============================ FAQ ============================ */
.faq-list { display: grid; gap: 12px; max-width: 820px; }
.faq-item {
  background: var(--surface);
  border: 1px solid var(--line);
  border-radius: var(--radius-sm);
  overflow: hidden;
}
.faq-item summary {
  cursor: pointer;
  list-style: none;
  padding: 18px clamp(18px, 3vw, 24px);
  font-family: "Trebuchet MS", sans-serif;
  font-weight: 700;
  font-size: 1.04rem;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 14px;
}
.faq-item summary::-webkit-details-marker { display: none; }
.faq-item summary .chev {
  width: 22px; height: 22px;
  flex: 0 0 auto;
  transition: transform .3s 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;
  color: var(--ink-soft);
  transition: height .36s var(--ease-2), padding-block-end .36s var(--ease-2);
}
.faq-item[open] > .answer { height: auto; padding-block-end: 22px; }
@media (prefers-reduced-motion: reduce) { .faq-item > .answer { transition: none; } }

/* ============================ Forms ============================ */
.form-card {
  background: var(--surface);
  border: 1px solid var(--line);
  border-radius: 20px;
  padding: clamp(22px, 3vw, 34px);
  transition: box-shadow .26s var(--ease-2), border-color .26s var(--ease-2);
}
.form-card:hover {
  border-color: var(--line-strong);
  box-shadow: 0 28px 58px -38px rgba(124, 92, 255, 0.55);
}
.form-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 16px; }
.field { display: flex; flex-direction: column; min-width: 0; }
.field.full { grid-column: 1 / -1; }
.field > span { font-size: .85rem; font-weight: 600; color: var(--ink-soft); margin-bottom: 6px; }
.field > span em { color: var(--accent); font-style: normal; font-weight: 700; }
.field input,
.field select,
.field textarea {
  font: inherit;
  font-size: .98rem;
  color: var(--ink);
  background: var(--bg-2);
  border: 1px solid var(--line-strong);
  border-radius: var(--radius-sm);
  padding: 12px 14px;
  transition: border-color .2s var(--ease-2), box-shadow .2s;
}
.field textarea { min-height: 130px; resize: vertical; }
.field input:focus,
.field select:focus,
.field textarea:focus {
  border-color: var(--accent);
  box-shadow: 0 0 0 3px var(--accent-soft);
  outline: none;
}
.field select { color-scheme: dark; }
.field.kvkk {
  flex-direction: row;
  align-items: flex-start;
  gap: 10px;
  font-size: .9rem;
  color: var(--ink-soft);
}
.field input[type="checkbox"] {
  appearance: auto;
  -webkit-appearance: auto;
  width: 18px; height: 18px;
  min-width: 18px; min-height: 18px;
  padding: 0; border: 0; margin: 3px 0 0;
  accent-color: var(--accent);
}

/* ============================ Contact channel cards ============================ */
.channel-grid { grid-template-columns: repeat(auto-fit, minmax(258px, 1fr)); }
.channel {
  display: block;
  background: var(--surface);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  padding: 22px;
  color: var(--ink);
  min-width: 0;
  transition: transform .24s var(--ease), box-shadow .24s var(--ease-2), border-color .24s;
}
.channel:hover { transform: translateY(-3px); border-color: var(--accent); color: var(--ink); box-shadow: 0 20px 40px -30px rgba(232,79,176,.6); }
.channel .ch-ico {
  width: 48px; height: 48px;
  border-radius: 12px;
  display: grid; place-items: center;
  background: var(--accent-soft);
  color: var(--accent);
  margin-bottom: 14px;
}
.channel .ch-ico svg { width: 24px; height: 24px; }
.channel .ch-name { font-size: .78rem; letter-spacing: .1em; text-transform: uppercase; color: var(--ink-faint); font-weight: 600; }
.channel .ch-val { font-family: "Trebuchet MS", sans-serif; font-weight: 700; font-size: 1.12rem; margin: 4px 0 4px; word-break: break-word; }
.channel .ch-sub { font-size: .85rem; color: var(--ink-soft); }

/* hours */
.hours-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(150px, 1fr)); gap: 10px; }
.hour-card {
  background: var(--surface);
  border: 1px solid var(--line);
  border-radius: var(--radius-sm);
  padding: 12px 14px;
  font-variant-numeric: tabular-nums;
  transition: transform .24s var(--ease), box-shadow .24s var(--ease-2), border-color .24s;
}
.hour-card:hover {
  transform: translateY(-4px);
  border-color: var(--accent);
  box-shadow: 0 18px 38px -28px rgba(232, 79, 176, 0.55);
}
.hour-card.today { border-color: var(--accent); background: var(--surface-2); }
.hour-card .d { font-weight: 600; font-size: .9rem; }
.hour-card .t { font-size: .9rem; color: var(--ink-soft); }

/* ============================ Tables ============================ */
.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: var(--radius-sm);
}
.table-scroll > table { margin: 0 !important; min-width: 480px; width: 100%; border-collapse: collapse; }
:where(*:has(> .table-scroll), *:has(> * > .table-scroll), *:has(> * > * > .table-scroll)) { min-width: 0; }
table th, table td { text-align: left; padding: 12px 16px; border-bottom: 1px solid var(--line); font-size: .94rem; }
table th { color: var(--ink); font-weight: 600; background: var(--surface-2); }
table td { color: var(--ink-soft); }

/* ============================ Doc pages ============================ */
.doc { padding-top: clamp(28px, 5vw, 48px); }
.doc h2 { margin-top: 1.7em; }
.doc h3 { margin-top: 1.35em; }
.doc p, .doc li { color: var(--ink-soft); line-height: 1.75; }
.doc ul, .doc ol { padding-left: 1.3em; }
.doc li { margin-bottom: .5em; }
.page-hero {
  padding: clamp(40px, 7vw, 80px) 0 clamp(24px, 4vw, 40px);
  position: relative;
}
.page-hero .eyebrow { margin-bottom: 14px; }
.page-hero p { color: var(--ink-soft); max-width: 60ch; }

/* ============================ Footer ============================ */
.site-footer {
  background: var(--bg-2);
  border-top: 1px solid var(--line);
  padding: clamp(44px, 6vw, 72px) 0 28px;
  margin-top: 40px;
}
.footer-grid {
  display: grid;
  grid-template-columns: 1.4fr 1fr 1fr;
  gap: clamp(26px, 4vw, 48px);
}
@media (max-width: 760px) { .footer-grid { grid-template-columns: 1fr; } }
.footer-grid h4 { font-size: .85rem; letter-spacing: .1em; text-transform: uppercase; color: var(--ink-faint); margin-bottom: 14px; }
.footer-grid a { color: var(--ink-soft); display: block; padding: 4px 0; font-size: .95rem; }
.footer-grid a:hover { color: var(--accent); }
.footer-grid p { color: var(--ink-soft); font-size: .94rem; }
.footer-brand { display: inline-flex; align-items: center; gap: 10px; font-family: "Trebuchet MS"; font-weight: 700; font-size: 1.15rem; margin-bottom: 12px; }
.footer-brand .badge { width: 30px; height: 30px; }
.footer-bottom {
  margin-top: 36px;
  padding-top: 20px;
  border-top: 1px solid var(--line);
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  gap: 12px;
  font-size: .82rem;
  color: var(--ink-faint);
}
.footer-bottom a { color: var(--ink-faint); }

/* ============================ Cookie banner ============================ */
.cookie-banner {
  position: fixed;
  bottom: 16px; left: 16px; right: 16px;
  max-width: 520px;
  margin: 0 auto;
  background: var(--surface-2);
  border: 1px solid var(--line-strong);
  border-radius: var(--radius);
  padding: 20px 22px;
  z-index: 9999;
  transform: translateY(140%);
  opacity: 0;
  transition: transform .28s var(--ease), opacity .24s;
  box-shadow: 0 24px 60px -24px rgba(0, 0, 0, 0.8);
}
.cookie-banner.is-visible { transform: translateY(0); opacity: 1; }
@media (min-width: 720px) { .cookie-banner { left: 24px; right: auto; max-width: 420px; } }
.cookie-banner h3 { font-size: 1.05rem; margin-bottom: 6px; }
.cookie-banner p { font-size: .88rem; color: var(--ink-soft); margin-bottom: 14px; }
.cookie-actions { display: flex; flex-wrap: wrap; gap: 10px; }
.cookie-actions button {
  font: inherit; font-weight: 600; font-size: .88rem;
  padding: 10px 16px; min-height: 44px;
  border-radius: 999px; cursor: pointer; flex: 1 1 auto;
  border: 1px solid var(--line-strong);
  transition: background .22s var(--ease-2), color .22s, transform .2s;
}
.cookie-actions [data-consent="accept"] { background: linear-gradient(135deg, var(--accent), var(--accent-2)); color: #fff; border-color: transparent; }
.cookie-actions [data-consent="accept"]:hover { transform: translateY(-2px); color: #fff; box-shadow: 0 12px 26px -14px rgba(232,79,176,.8); }
/* reject carries equal visual weight to accept (consent symmetry) */
.cookie-actions [data-consent="reject"] { background: var(--surface-3); color: var(--ink); border-color: var(--line-strong); }
.cookie-actions [data-consent="reject"]:hover { background: var(--surface-2); color: var(--ink); border-color: var(--accent); transform: translateY(-2px); }
.cookie-actions [data-consent="settings"] { background: transparent; color: var(--ink-soft); }
.cookie-actions [data-consent="settings"]:hover { background: var(--surface-3); color: var(--ink); }

/* ============================ Reveal ============================ */
.reveal {
  opacity: 0;
  transform: translateY(28px);
  transition: opacity .6s var(--ease), transform .6s var(--ease);
  transition-delay: calc(var(--i, 0) * 80ms);
}
.reveal.is-in { opacity: 1; transform: none; }
.no-js .reveal { opacity: 1; transform: none; }

/* constellation draw */
.constellation { display: block; width: 100%; height: auto; }
.constellation line, .constellation polyline {
  stroke-dasharray: 600;
  stroke-dashoffset: 600;
}
.constellation.is-in line, .constellation.is-in polyline {
  animation: draw 1.6s var(--ease) forwards;
}
.constellation circle { opacity: 0; }
.constellation.is-in circle { animation: star-pop .5s var(--ease) forwards; animation-delay: calc(.6s + var(--i,0)*.12s); }
@keyframes draw { to { stroke-dashoffset: 0; } }
@keyframes star-pop { to { opacity: 1; } }

/* twinkle on badge stars */
@keyframes twinkle { 0%,100% { opacity: 1; } 50% { opacity: .4; transform: scale(.85); } }

/* ambient orbit */
.orbit-wrap { animation: orbit 48s linear infinite; transform-origin: center; }
@keyframes orbit { to { transform: rotate(360deg); } }

@media (prefers-reduced-motion: reduce) {
  .reveal, .hero-copy h1 .w { opacity: 1 !important; transform: none !important; transition: none !important; animation: none !important; }
  .constellation line, .constellation polyline { stroke-dashoffset: 0 !important; animation: none !important; }
  .constellation circle { opacity: 1 !important; animation: none !important; }
  .orbit-wrap, .layer, .btn-primary::after { animation: none !important; }
  .result-card.flip { animation: none !important; }
}

/* ============================ Responsive ============================ */
@media (max-width: 640px) {
  body { font-size: 16px; }
  .card .ico { width: 40px; height: 40px; }
  .moon-block { grid-template-columns: 80px 1fr; }
  .moon-disk { width: 80px; height: 80px; }
  .form-grid { grid-template-columns: 1fr; }
  .cookie-actions button { flex: 1 1 100%; }
  .hero-actions .btn { flex: 1 1 100%; }
}
@media (max-width: 380px) {
  .planet-list li { grid-template-columns: auto 1fr; }
  .planet-list .pwhen { grid-column: 1 / -1; text-align: left; }
}

/* ---- Content images ---- */
.hero-img {
  display: block;
  width: 100%;
  height: auto;
  margin: 22px 0 4px;
  border-radius: 16px;
  border: 1px solid var(--surface-3);
  box-shadow: 0 18px 50px rgba(0,0,0,.45);
  object-fit: cover;
}
.band-figure {
  margin: 34px 0 0;
}
.band-figure img {
  display: block;
  width: 100%;
  height: auto;
  border-radius: 18px;
  border: 1px solid var(--surface-3);
  box-shadow: 0 18px 50px rgba(0,0,0,.45);
  object-fit: cover;
}
.card-img {
  display: block;
  width: 100%;
  height: auto;
  margin-bottom: 18px;
  border-radius: 14px;
  object-fit: cover;
}
.footer-img {
  display: block;
  width: 100%;
  max-width: 320px;
  height: auto;
  margin: 10px 0 14px;
  border-radius: 12px;
  object-fit: cover;
}

.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: var(--ink) !important;
}
