:root {
  --bg: #F4F2FF;
  --surface: #FFFFFF;
  --surface-2: #EDE9FF;
  --ink: #1E1B3A;
  --ink-soft: #5B5775;
  --accent: #7C3AED;
  --accent-2: #06B6D4;
  --line: rgba(30,27,58,0.12);
  --line-strong: rgba(30,27,58,0.22);
  --header-h: 76px;
  --container: 1320px;
  --radius: 16px;
  --radius-sm: 10px;
  --c1: #EF4444;
  --c2: #F97316;
  --c3: #EAB308;
  --c4: #22C55E;
  --c5: #06B6D4;
  --c6: #6366F1;
  --c7: #A855F7;
  interpolate-size: allow-keywords;
}

*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }

html {
  scroll-behavior: smooth;
  font-size: 16px;
  -webkit-text-size-adjust: 100%;
  overflow-x: hidden;
  max-width: 100vw;
}
@media (prefers-reduced-motion: reduce) { html { scroll-behavior: auto; } }

body {
  font-family: system-ui, -apple-system, 'Segoe UI', Roboto, sans-serif;
  font-weight: 400;
  color: var(--ink);
  background: var(--bg);
  line-height: 1.65;
  overflow-x: hidden;
  max-width: 100vw;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}
body.overflow-hidden { overflow: hidden; }

html.no-js .reveal { opacity: 1; transform: none; }

a { color: var(--accent); text-decoration: none; transition: color 240ms; }
a:hover { color: var(--ink); }

img, svg { max-width: 100%; height: auto; display: block; }
img { object-fit: cover; }

button, input, select, textarea {
  font-family: inherit;
  font-size: inherit;
  color: inherit;
  border: none;
  outline: none;
  background: none;
}
button { cursor: pointer; }

ul, ol { list-style: none; }

h1, h2, h3, h4, h5, h6 {
  font-weight: 800;
  line-height: 1.15;
  letter-spacing: -0.012em;
}
h1 { font-size: clamp(2.5rem, 6vw, 4.5rem); }
h2 { font-size: clamp(1.75rem, 4vw, 2.75rem); }
h3 { font-size: clamp(1.25rem, 2.5vw, 1.75rem); }
h4 { font-size: clamp(1.1rem, 2vw, 1.35rem); }

.mono {
  font-family: 'Consolas', 'Monaco', 'Courier New', monospace;
  font-weight: 500;
}

.eyebrow {
  font-size: 0.8rem;
  font-weight: 600;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--accent);
  display: inline-block;
  margin-bottom: 12px;
}

.skip-link {
  position: fixed;
  top: -100%;
  left: 16px;
  background: var(--accent);
  color: var(--surface);
  padding: 10px 20px;
  border-radius: 0 0 8px 8px;
  z-index: 10000;
  font-weight: 600;
  transition: top 200ms;
}
.skip-link:focus {
  top: 0;
  color: var(--surface);
}

.container {
  width: 100%;
  max-width: var(--container);
  margin: 0 auto;
  padding-inline: clamp(16px, 4vw, 32px);
}

.section-pad {
  padding-top: clamp(72px, 10vw, 128px);
  padding-bottom: clamp(72px, 10vw, 128px);
}

.section-header {
  text-align: center;
  margin-bottom: clamp(36px, 5vw, 56px);
}
.section-header h2 { margin-bottom: 12px; }
.section-header p { color: var(--ink-soft); font-size: 0.95rem; max-width: 560px; margin: 0 auto; }

.btn-primary {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: var(--accent);
  color: var(--surface);
  padding: 15px 32px;
  border-radius: 12px;
  font-weight: 600;
  font-size: 1rem;
  transition: background 240ms cubic-bezier(.4,0,.2,1), color 240ms, transform 240ms, box-shadow 240ms;
  position: relative;
  line-height: 1.3;
}
.btn-primary::after {
  content: '\2192';
  display: inline-block;
  transition: transform 240ms;
}
.btn-primary:hover, .btn-primary:focus-visible {
  background: var(--ink);
  color: var(--surface);
  transform: translateY(-2px);
  box-shadow: 0 10px 28px rgba(124,58,237,0.22);
}
.btn-primary:hover::after { transform: translateX(4px); }
.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);
  border: 1.5px solid var(--line-strong);
  padding: 13px 28px;
  border-radius: 12px;
  font-weight: 600;
  font-size: 1rem;
  transition: background 240ms, color 240ms, border-color 240ms, transform 240ms;
  line-height: 1.3;
}
.btn-ghost:hover, .btn-ghost:focus-visible {
  background: var(--surface);
  color: var(--accent);
  border-color: var(--accent);
  transform: translateY(-2px);
}
.btn-ghost:focus-visible {
  outline: 2px solid var(--accent);
  outline-offset: 2px;
}

*:focus-visible {
  outline: 2px solid var(--accent);
  outline-offset: 2px;
}

/* ── Header ── */
.site-header {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 1080;
  height: var(--header-h);
  background: rgba(244,242,255,0.88);
  transition: background 240ms ease, box-shadow 240ms ease, height 240ms ease;
  display: flex;
  align-items: center;
}
.site-header.scrolled {
  background: rgba(244,242,255,0.97);
  box-shadow: 0 8px 24px -16px rgba(0,0,0,0.18);
  height: 64px;
}

.scroll-progress {
  position: absolute;
  bottom: 0;
  left: 0;
  height: 2px;
  width: 0;
  background: linear-gradient(to right, var(--accent), var(--accent-2));
  transition: none;
  z-index: 10;
  pointer-events: none;
}
.header-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  width: 100%;
  max-width: var(--container);
  margin: 0 auto;
  padding: 0 clamp(16px, 4vw, 32px);
}

.logo {
  font-weight: 800;
  font-size: 1.35rem;
  color: var(--ink);
  text-decoration: none;
  display: flex;
  align-items: center;
  gap: 10px;
  z-index: 1100;
  flex-shrink: 0;
}
.logo:hover { color: var(--accent); }
.logo svg { width: 32px; height: 32px; }

.nav-desktop {
  display: flex;
  align-items: center;
  gap: clamp(20px, 2.5vw, 36px);
}
.nav-desktop a {
  color: var(--ink);
  font-size: 0.92rem;
  font-weight: 500;
  position: relative;
  padding: 4px 0;
  transition: color 240ms;
}
.nav-desktop a::after {
  content: '';
  position: absolute;
  bottom: -2px; left: 0;
  width: 0; height: 2px;
  background: var(--accent);
  transition: width 280ms cubic-bezier(.4,0,.2,1);
  border-radius: 1px;
}
.nav-desktop a:hover { color: var(--accent); }
.nav-desktop a:hover::after, .nav-desktop a.is-active::after { width: 100%; }
.nav-desktop a.is-active { color: var(--accent); }

.nav-desktop .nav-cta {
  background: var(--accent);
  color: var(--surface);
  padding: 10px 22px;
  border-radius: 10px;
  font-weight: 600;
  transition: background 240ms, color 240ms, transform 200ms;
}
.nav-desktop .nav-cta::after { display: none; }
.nav-desktop .nav-cta:hover {
  background: var(--ink);
  color: var(--surface);
  transform: translateY(-1px);
}

.nav-toggle {
  display: none;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  gap: 5px;
  min-width: 44px;
  min-height: 44px;
  z-index: 1100;
  cursor: pointer;
  background: var(--surface-2);
  border: 1.5px solid var(--line);
  border-radius: 8px;
  padding: 6px;
  transition: background 200ms, border-color 200ms;
}
.nav-toggle span {
  display: block;
  width: 22px;
  height: 2.5px;
  background: var(--ink);
  border-radius: 2px;
  transition: transform 300ms cubic-bezier(.2,.7,.2,1), opacity 200ms, background 200ms;
  transform-origin: center;
}
.nav-toggle[aria-expanded="true"] span:nth-child(1) { transform: translateY(7.5px) rotate(45deg); }
.nav-toggle[aria-expanded="true"] span:nth-child(2) { opacity: 0; }
.nav-toggle[aria-expanded="true"] span:nth-child(3) { transform: translateY(-7.5px) rotate(-45deg); }

@media (max-width: 1024px) {
  .nav-desktop { display: none; }
  .nav-toggle { display: flex; }
}

/* ── 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) 32px 32px;
  display: flex;
  flex-direction: column;
  gap: 0;
  overflow-y: auto;
}
.drawer.is-open { transform: translateX(0); }

.drawer a {
  display: block;
  color: var(--ink);
  font-size: 1.1rem;
  font-weight: 600;
  padding: 14px 0;
  border-bottom: 1px solid var(--line);
  transition: color 200ms, padding-left 200ms;
}
.drawer a:hover, .drawer a.is-active {
  color: var(--accent);
  padding-left: 8px;
}
.drawer .nav-cta-mobile {
  margin-top: 24px;
  background: var(--accent);
  color: var(--surface);
  text-align: center;
  border-radius: 12px;
  border-bottom: none;
  padding: 16px;
}
.drawer .nav-cta-mobile:hover {
  background: var(--ink);
  color: var(--surface);
}


/* ── Main ── */
main { padding-top: var(--header-h); }
section[id] { scroll-margin-top: calc(var(--header-h) + 16px); }

.cta-card {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  text-align: center;
  min-height: 280px;
}
.cta-card h3 { margin-bottom: 12px; }
.cta-card p { color: var(--ink-soft); margin-bottom: 24px; font-size: 0.95rem; max-width: 340px; }

/* ── Hero ── */
.hero {
  min-height: min(calc(100vh - var(--header-h)), 820px);
  display: flex;
  align-items: center;
  position: relative;
  overflow: hidden;
  background:
    radial-gradient(ellipse 80% 50% at 70% 25%, rgba(124,58,237,0.07), transparent),
    radial-gradient(ellipse 60% 40% at 15% 80%, rgba(6,182,212,0.05), transparent),
    var(--bg);
  padding: clamp(48px, 8vw, 96px) 0;
}
.hero > .container {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: clamp(32px, 5vw, 64px);
  align-items: center;
}
.hero::after {
  content: '';
  position: absolute;
  inset: 0;
  background-image: radial-gradient(circle at 1px 1px, rgba(124,58,237,0.04) 1px, transparent 0);
  background-size: 28px 28px;
  pointer-events: none;
}

.hero-content {
  position: relative;
  z-index: 2;
  text-align: left;
  max-width: 600px;
}
.hero-visual {
  position: relative;
  z-index: 2;
  display: flex;
  flex-direction: column;
  gap: 24px;
}
.hero-visual > img {
  border-radius: var(--radius);
  box-shadow: 0 16px 48px rgba(124,58,237,0.12);
  width: 100%;
  max-height: 320px;
  object-fit: cover;
  transition: transform 600ms cubic-bezier(.2,.7,.2,1), box-shadow 600ms;
}
.hero-visual > img:hover {
  transform: translateY(-4px) scale(1.01);
  box-shadow: 0 24px 56px rgba(124,58,237,0.18);
}

.hero__title {
  font-size: clamp(2.25rem, 5vw, 4.5rem);
  line-height: 1.08;
  margin-bottom: 20px;
  min-height: 1.2em;
}
.char-reveal {
  display: inline-block;
  opacity: 0;
  transform: translateY(32px);
  animation: charIn 480ms cubic-bezier(.2,.7,.2,1) forwards;
}
@keyframes charIn {
  to { opacity: 1; transform: none; }
}

.hero__sub {
  font-size: clamp(1rem, 2vw, 1.2rem);
  color: var(--ink-soft);
  max-width: 540px;
  margin: 0 0 28px;
  line-height: 1.6;
}

.hero__cta {
  margin-bottom: 24px;
}

.trust-strip {
  display: flex;
  flex-wrap: wrap;
  justify-content: flex-start;
  gap: 12px;
  margin-bottom: 0;
}
.trust-badge {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  background: rgba(255,255,255,0.7);
  border: 1px solid var(--line);
  padding: 7px 14px;
  border-radius: 100px;
  font-size: 0.78rem;
  font-weight: 500;
  color: var(--ink-soft);
  backdrop-filter: blur(8px);
  -webkit-backdrop-filter: blur(8px);
}
.trust-badge svg { width: 16px; height: 16px; flex-shrink: 0; }

.hero-content > img {
  display: none;
}

.hero-preview {
  position: relative;
  z-index: 2;
  max-width: 720px;
  margin: 0 auto;
}
.hero-preview-card {
  background: rgba(255,255,255,0.72);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  border-radius: 20px;
  padding: clamp(24px, 4vw, 40px);
  position: relative;
  display: grid;
  grid-template-columns: 1fr auto;
  gap: clamp(20px, 3vw, 40px);
  align-items: center;
  overflow: hidden;
}
.hero-preview-card::before {
  content: '';
  position: absolute;
  inset: 0;
  border-radius: inherit;
  padding: 1.5px;
  background: linear-gradient(135deg, rgba(124,58,237,0.35), rgba(6,182,212,0.2));
  -webkit-mask: linear-gradient(#fff 0 0) content-box, linear-gradient(#fff 0 0);
  -webkit-mask-composite: xor;
  mask-composite: exclude;
  pointer-events: none;
}

.preview-steps {
  display: flex;
  flex-direction: column;
  gap: 14px;
}
.preview-step {
  display: flex;
  align-items: center;
  gap: 12px;
  font-size: 0.92rem;
  color: var(--ink-soft);
}
.preview-step-num {
  width: 32px;
  height: 32px;
  border-radius: 50%;
  background: var(--surface-2);
  color: var(--accent);
  font-weight: 800;
  font-size: 0.85rem;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  transition: background 300ms, color 300ms;
}
.preview-step:nth-child(1) .preview-step-num {
  background: var(--accent);
  color: var(--surface);
}

.hero-chakra-wrap {
  width: clamp(100px, 16vw, 160px);
  flex-shrink: 0;
  animation: medFloat 6s ease-in-out infinite;
}

/* ── Stats Band ── */
.stats-band {
  background: var(--ink);
  color: var(--surface);
  padding: clamp(36px, 5vw, 56px) 0;
  position: relative;
}
.stats-band::before {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, rgba(124,58,237,0.12), rgba(6,182,212,0.08));
  pointer-events: none;
}
.stats-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: clamp(16px, 3vw, 32px);
  position: relative;
  z-index: 1;
  text-align: center;
}
.stat-item { padding: 8px; }
.stat-num {
  font-family: 'Consolas', 'Monaco', 'Courier New', monospace;
  font-weight: 500;
  font-size: clamp(2rem, 4vw, 3rem);
  color: var(--accent-2);
  line-height: 1.1;
  margin-bottom: 6px;
}
.stat-label {
  font-size: 0.85rem;
  opacity: 0.75;
  font-weight: 400;
}

/* ── Planner ── */
.planner-section {
  background: var(--bg);
  position: relative;
}

.planner-layout {
  display: grid;
  grid-template-columns: 1fr 200px;
  gap: clamp(24px, 4vw, 48px);
  align-items: start;
}

.planner-widget {
  background: rgba(255,255,255,0.82);
  backdrop-filter: blur(16px);
  -webkit-backdrop-filter: blur(16px);
  border-radius: 20px;
  padding: clamp(24px, 4vw, 40px);
  position: relative;
  overflow: hidden;
  min-height: 420px;
}
.planner-widget::before {
  content: '';
  position: absolute;
  inset: 0;
  border-radius: inherit;
  padding: 1.5px;
  background: linear-gradient(135deg, rgba(124,58,237,0.3), rgba(6,182,212,0.18));
  -webkit-mask: linear-gradient(#fff 0 0) content-box, linear-gradient(#fff 0 0);
  -webkit-mask-composite: xor;
  mask-composite: exclude;
  pointer-events: none;
}

.planner-steps-indicator {
  display: flex;
  align-items: center;
  gap: 0;
  margin-bottom: 32px;
  position: relative;
  z-index: 2;
}
.step-dot-wrap {
  display: flex;
  align-items: center;
  gap: 0;
  flex: 1;
}
.step-dot-wrap:last-child { flex: 0; }
.step-dot {
  width: 36px;
  height: 36px;
  border-radius: 50%;
  background: var(--surface-2);
  color: var(--ink-soft);
  font-weight: 800;
  font-size: 0.85rem;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  transition: background 360ms, color 360ms, box-shadow 360ms;
  position: relative;
}
.step-dot.is-active {
  background: var(--accent);
  color: var(--surface);
  box-shadow: 0 0 0 4px rgba(124,58,237,0.18);
}
.step-dot.is-done {
  background: var(--accent-2);
  color: var(--surface);
}
.step-line {
  flex: 1;
  height: 2px;
  background: var(--line);
  transition: background 400ms;
}
.step-line.is-filled { background: var(--accent-2); }

.steps-viewport {
  position: relative;
  overflow: hidden;
  min-height: 300px;
}
.step-panel {
  position: absolute;
  inset: 0;
  transform: translateX(100%);
  opacity: 0;
  transition: transform 460ms cubic-bezier(.2,.7,.2,1), opacity 320ms ease;
  pointer-events: none;
  z-index: 1;
}
.step-panel.is-active {
  position: relative;
  transform: translateX(0);
  opacity: 1;
  pointer-events: auto;
  z-index: 2;
}
.step-panel.is-prev {
  transform: translateX(-100%);
  opacity: 0;
}

.step-title {
  font-size: 1.15rem;
  font-weight: 800;
  margin-bottom: 20px;
  color: var(--ink);
}

.goal-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 14px;
}
.goal-card {
  background: var(--surface);
  border: 1.5px solid var(--line);
  border-radius: var(--radius-sm);
  padding: 18px 16px;
  cursor: pointer;
  transition: border-color 240ms, box-shadow 240ms, transform 240ms, background 240ms;
  text-align: center;
}
.goal-card svg {
  width: 40px;
  height: 40px;
  margin: 0 auto 10px;
  color: var(--accent);
  transition: transform 300ms;
}
.goal-card:hover {
  border-color: var(--accent);
  transform: translateY(-3px);
  box-shadow: 0 8px 24px rgba(124,58,237,0.1);
}
.goal-card:hover svg { transform: scale(1.1); }
.goal-card.is-selected {
  border-color: var(--accent);
  background: var(--surface-2);
  box-shadow: 0 0 0 3px rgba(124,58,237,0.12);
}
.goal-card h4 { font-size: 0.95rem; margin-bottom: 4px; }
.goal-card p { font-size: 0.78rem; color: var(--ink-soft); line-height: 1.4; }

.level-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 14px;
}
.level-card {
  background: var(--surface);
  border: 1.5px solid var(--line);
  border-radius: var(--radius-sm);
  padding: 22px 16px;
  cursor: pointer;
  text-align: center;
  transition: border-color 240ms, box-shadow 240ms, transform 240ms, background 240ms;
}
.level-card:hover {
  border-color: var(--accent);
  transform: translateY(-3px);
  box-shadow: 0 8px 24px rgba(124,58,237,0.1);
}
.level-card.is-selected {
  border-color: var(--accent);
  background: var(--surface-2);
  box-shadow: 0 0 0 3px rgba(124,58,237,0.12);
}
.level-card .level-icon {
  font-size: 1.8rem;
  margin-bottom: 8px;
  display: block;
}
.level-card h4 { font-size: 0.95rem; margin-bottom: 4px; }
.level-card p { font-size: 0.78rem; color: var(--ink-soft); }

.step-back {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  margin-top: 18px;
  font-size: 0.85rem;
  color: var(--ink-soft);
  cursor: pointer;
  background: none;
  border: none;
  transition: color 200ms;
}
.step-back:hover { color: var(--accent); }

.plan-output { padding: 8px 0; }
.plan-grid {
  display: grid;
  gap: 10px;
}
.plan-day {
  display: grid;
  grid-template-columns: 90px 1fr auto auto;
  gap: 12px;
  align-items: center;
  background: var(--surface);
  border: 1px solid var(--line);
  border-radius: var(--radius-sm);
  padding: 14px 16px;
  font-size: 0.88rem;
  transition: border-color 240ms, transform 240ms;
}
.plan-day:hover {
  border-color: var(--accent);
  transform: translateY(-2px);
}
.plan-day-name {
  font-weight: 700;
  color: var(--accent);
}
.plan-day-type { color: var(--ink); font-weight: 500; }
.plan-day-format {
  font-family: 'Consolas', 'Monaco', 'Courier New', monospace;
  font-size: 0.72rem;
  font-weight: 500;
  padding: 3px 8px;
  border-radius: 4px;
  background: var(--surface-2);
  color: var(--accent);
}
.plan-day-format.online {
  background: rgba(6,182,212,0.1);
  color: var(--accent-2);
}
.plan-day-dur {
  font-size: 0.78rem;
  color: var(--ink-soft);
}
.plan-restart {
  margin-top: 16px;
  text-align: center;
}

.planner-chakra-col {
  display: flex;
  align-items: center;
  justify-content: center;
  padding-top: 60px;
  position: sticky;
  top: calc(var(--header-h) + 20px);
}

/* ── Chakra SVG ── */
.chakra-silhouette { color: var(--ink-soft); }
.chakra-silhouette .body-line {
  fill: none;
  stroke: currentColor;
  stroke-width: 1.2;
  stroke-linecap: round;
  stroke-linejoin: round;
  opacity: 0.5;
}
.chakra-silhouette .chakra {
  fill: rgba(124,58,237,0.08);
  stroke: none;
  transition: fill 600ms ease, filter 600ms ease;
}
.chakra-silhouette .energy-line {
  fill: none;
  stroke-width: 1.5;
  stroke-dasharray: 4 6;
  opacity: 0.3;
  transition: opacity 600ms;
}

.planner[data-step="2"] .c1 { fill: var(--c1); filter: drop-shadow(0 0 6px var(--c1)); }
.planner[data-step="2"] .c2 { fill: var(--c2); filter: drop-shadow(0 0 6px var(--c2)); }
.planner[data-step="2"] .energy-line { opacity: 0.4; }

.planner[data-step="3"] .c1 { fill: var(--c1); filter: drop-shadow(0 0 6px var(--c1)); }
.planner[data-step="3"] .c2 { fill: var(--c2); filter: drop-shadow(0 0 6px var(--c2)); }
.planner[data-step="3"] .c3 { fill: var(--c3); filter: drop-shadow(0 0 6px var(--c3)); }
.planner[data-step="3"] .c4 { fill: var(--c4); filter: drop-shadow(0 0 6px var(--c4)); }
.planner[data-step="3"] .c5 { fill: var(--c5); filter: drop-shadow(0 0 6px var(--c5)); }
.planner[data-step="3"] .energy-line { opacity: 0.7; }

.planner.is-complete .c1 { fill: var(--c1); filter: drop-shadow(0 0 8px var(--c1)); }
.planner.is-complete .c2 { fill: var(--c2); filter: drop-shadow(0 0 8px var(--c2)); }
.planner.is-complete .c3 { fill: var(--c3); filter: drop-shadow(0 0 8px var(--c3)); }
.planner.is-complete .c4 { fill: var(--c4); filter: drop-shadow(0 0 8px var(--c4)); }
.planner.is-complete .c5 { fill: var(--c5); filter: drop-shadow(0 0 8px var(--c5)); }
.planner.is-complete .c6 { fill: var(--c6); filter: drop-shadow(0 0 8px var(--c6)); }
.planner.is-complete .c7 { fill: var(--c7); filter: drop-shadow(0 0 8px var(--c7)); }
.planner.is-complete .energy-line { opacity: 1; }

.planner.is-complete .chakra { animation: chakraPulse 2.4s ease-in-out infinite; }
.planner.is-complete .c1 { animation-delay: 0ms; }
.planner.is-complete .c2 { animation-delay: 150ms; }
.planner.is-complete .c3 { animation-delay: 300ms; }
.planner.is-complete .c4 { animation-delay: 450ms; }
.planner.is-complete .c5 { animation-delay: 600ms; }
.planner.is-complete .c6 { animation-delay: 750ms; }
.planner.is-complete .c7 { animation-delay: 900ms; }

/* ── Nasil ── */
.nasil-section { background: var(--surface); }
.nasil-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: clamp(20px, 3vw, 32px);
}
.nasil-card {
  background: var(--bg);
  border-radius: var(--radius);
  padding: clamp(28px, 4vw, 40px) clamp(20px, 3vw, 28px);
  text-align: center;
  position: relative;
  transition: transform 300ms cubic-bezier(.2,.7,.2,1), box-shadow 300ms;
}
.nasil-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 16px 40px rgba(124,58,237,0.1);
}
.nasil-icon {
  width: 56px;
  height: 56px;
  margin: 0 auto 18px;
  background: linear-gradient(135deg, var(--accent), var(--accent-2));
  border-radius: 14px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--surface);
  transition: transform 300ms;
}
.nasil-card:hover .nasil-icon { transform: scale(1.08) rotate(3deg); }
.nasil-icon svg { width: 28px; height: 28px; }
.nasil-card h3 { font-size: 1.1rem; margin-bottom: 10px; }
.nasil-card p { font-size: 0.9rem; color: var(--ink-soft); line-height: 1.55; }

.nasil-section > .container > img {
  margin-top: clamp(32px, 5vw, 48px);
  border-radius: var(--radius);
  max-height: 380px;
  width: 100%;
  box-shadow: 0 12px 40px rgba(124,58,237,0.08);
}

/* ── Manifesto ── */
.manifesto-section {
  padding: clamp(56px, 8vw, 96px) 0;
  text-align: center;
}
.manifesto-quote {
  font-size: clamp(1.35rem, 3vw, 2rem);
  font-weight: 400;
  font-style: italic;
  line-height: 1.55;
  max-width: 700px;
  margin: 0 auto 16px;
  color: var(--ink);
  position: relative;
}
.manifesto-quote::before {
  content: '\201C';
  font-size: 4rem;
  color: var(--accent);
  opacity: 0.3;
  position: absolute;
  top: -20px;
  left: -16px;
  font-family: Georgia, serif;
  line-height: 1;
}
.manifesto-cite {
  font-size: 0.9rem;
  color: var(--ink-soft);
  font-style: normal;
  font-weight: 600;
}

.manifesto-section img {
  margin-top: clamp(24px, 4vw, 40px);
  border-radius: var(--radius);
  max-height: 340px;
  width: 100%;
  box-shadow: 0 12px 40px rgba(124,58,237,0.06);
}

/* ── FAQ / SSS ── */
.faq-section { background: var(--bg); }
.faq-list {
  max-width: 800px;
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  gap: 10px;
}
.faq-item {
  background: var(--surface);
  border-radius: var(--radius-sm);
  border: 1px solid var(--line);
  overflow: hidden;
  transition: border-color 240ms;
}
.faq-item:hover, .faq-item[open] { border-color: rgba(124,58,237,0.25); }

.faq-item summary {
  cursor: pointer;
  list-style: none;
  padding: 20px clamp(18px, 3vw, 28px);
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 16px;
  font-weight: 600;
  font-size: 0.95rem;
  line-height: 1.4;
  transition: color 200ms;
}
.faq-item summary::-webkit-details-marker { display: none; }
.faq-item summary::marker { display: none; content: ''; }
.faq-item summary:hover { color: var(--accent); }

.faq-chevron {
  width: 20px;
  height: 20px;
  flex-shrink: 0;
  color: var(--accent);
  transition: transform 360ms cubic-bezier(.4,0,.2,1);
}
.faq-item[open] .faq-chevron { transform: rotate(180deg); }

.faq-body {
  height: 0;
  padding: 0 clamp(18px, 3vw, 28px);
  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 {
  font-size: 0.9rem;
  color: var(--ink-soft);
  line-height: 1.65;
}

@media (prefers-reduced-motion: reduce) {
  .faq-body { transition: none; }
}

/* ── Pricing ── */
.pricing-section { background: var(--surface); }
.pricing-header { text-align: center; margin-bottom: clamp(32px, 5vw, 48px); }
.pricing-header h2 { margin-bottom: 12px; }
.pricing-header p { color: var(--ink-soft); font-size: 0.95rem; }

.pricing-slider-wrap {
  max-width: 500px;
  margin: 0 auto 40px;
  text-align: center;
}
.pricing-slider-label {
  font-weight: 600;
  font-size: 1rem;
  margin-bottom: 16px;
  display: block;
}
.pricing-slider-label .slider-val {
  font-family: 'Consolas', 'Monaco', 'Courier New', monospace;
  color: var(--accent);
  font-size: 1.2rem;
}

input[type="range"].pricing-range {
  -webkit-appearance: none;
  appearance: none;
  width: 100%;
  height: 8px;
  border-radius: 4px;
  background: linear-gradient(to right, var(--accent), var(--accent-2));
  outline: none;
  cursor: pointer;
  margin: 8px 0 16px;
}
input[type="range"].pricing-range::-webkit-slider-thumb {
  -webkit-appearance: none;
  width: 28px;
  height: 28px;
  border-radius: 50%;
  background: var(--surface);
  border: 3px solid var(--accent);
  box-shadow: 0 2px 10px rgba(124,58,237,0.28);
  cursor: pointer;
  transition: transform 200ms, box-shadow 200ms;
}
input[type="range"].pricing-range::-webkit-slider-thumb:hover {
  transform: scale(1.15);
  box-shadow: 0 4px 16px rgba(124,58,237,0.35);
}
input[type="range"].pricing-range::-moz-range-thumb {
  width: 28px;
  height: 28px;
  border-radius: 50%;
  background: var(--surface);
  border: 3px solid var(--accent);
  box-shadow: 0 2px 10px rgba(124,58,237,0.28);
  cursor: pointer;
}
.pricing-range-labels {
  display: flex;
  justify-content: space-between;
  font-size: 0.78rem;
  color: var(--ink-soft);
}

.pricing-cards {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: clamp(16px, 2.5vw, 24px);
  align-items: start;
}
.price-card {
  background: var(--bg);
  border: 1.5px solid var(--line);
  border-radius: var(--radius);
  padding: clamp(24px, 3vw, 36px);
  transition: transform 360ms cubic-bezier(.2,.7,.2,1), box-shadow 360ms, border-color 360ms;
  position: relative;
}
.price-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 16px 40px rgba(124,58,237,0.1);
}
.price-card.is-featured {
  border-color: var(--accent);
  background: var(--surface);
  box-shadow: 0 8px 32px rgba(124,58,237,0.12);
  transform: scale(1.03);
}
.price-card.is-featured:hover { transform: scale(1.03) translateY(-4px); }
.price-badge {
  position: absolute;
  top: -12px;
  left: 50%;
  transform: translateX(-50%);
  background: var(--accent);
  color: var(--surface);
  padding: 4px 16px;
  border-radius: 100px;
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.06em;
  text-transform: uppercase;
}
.price-card h3 { font-size: 1.1rem; margin-bottom: 4px; }
.price-card .price-sessions {
  font-size: 0.82rem;
  color: var(--ink-soft);
  margin-bottom: 16px;
}
.price-amount {
  font-family: 'Consolas', 'Monaco', 'Courier New', monospace;
  font-size: clamp(1.8rem, 3.5vw, 2.4rem);
  font-weight: 500;
  color: var(--accent);
  margin-bottom: 4px;
}
.price-period {
  font-size: 0.82rem;
  color: var(--ink-soft);
  margin-bottom: 20px;
}

.price-list { margin-bottom: 20px; }
.price-list li {
  display: flex;
  align-items: flex-start;
  gap: 8px;
  font-size: 0.88rem;
  padding: 5px 0;
  line-height: 1.4;
}
.price-list li svg {
  width: 16px;
  height: 16px;
  flex-shrink: 0;
  margin-top: 2px;
}
.price-list .included svg { color: var(--accent-2); }
.price-list .excluded {
  color: var(--ink-soft);
  opacity: 0.7;
}
.price-list .excluded svg { color: var(--ink-soft); }

.pricing-disclaimer {
  text-align: center;
  margin-top: 28px;
  font-size: 0.82rem;
  color: var(--ink-soft);
  font-style: italic;
}

/* ── Contact ── */
.contact-section { background: var(--bg); }
.contact-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: clamp(32px, 5vw, 56px);
  align-items: start;
}
.contact-info h2 { margin-bottom: 16px; }
.contact-info > p {
  color: var(--ink-soft);
  margin-bottom: 28px;
  font-size: 0.95rem;
}
.contact-channels {
  display: grid;
  grid-template-columns: auto 1fr;
  gap: 14px;
  align-items: start;
}
.contact-ch-icon {
  width: 20px; height: 20px;
  color: var(--accent);
  transition: color 240ms, transform 240ms;
  margin-top: 2px;
}
.contact-ch-row {
  display: contents;
  cursor: default;
}
.contact-ch-row:hover .contact-ch-icon {
  color: var(--accent-2);
  transform: scale(1.1);
}
.contact-ch-text {
  font-size: 0.9rem;
  line-height: 1.5;
  transition: transform 240ms;
  overflow-wrap: anywhere;
  word-break: break-word;
}
.contact-ch-row:hover .contact-ch-text { transform: translateX(4px); }
.contact-ch-text strong {
  display: block;
  font-weight: 600;
  font-size: 0.82rem;
  color: var(--ink-soft);
  margin-bottom: 2px;
}

.contact-form-card {
  background: var(--surface);
  border-radius: var(--radius);
  padding: clamp(24px, 4vw, 36px);
  border: 1px solid var(--line);
}

/* ── Forms ── */
.field {
  margin-bottom: 18px;
}
.field label {
  display: block;
  font-size: 0.85rem;
  font-weight: 600;
  margin-bottom: 6px;
  color: var(--ink);
}
.field input[type="text"],
.field input[type="email"],
.field input[type="tel"],
.field select,
.field textarea {
  display: block;
  width: 100%;
  padding: 12px 16px;
  border: 1.5px solid var(--line);
  border-radius: var(--radius-sm);
  background: var(--bg);
  font-size: 0.92rem;
  transition: border-color 240ms, box-shadow 240ms;
  color: var(--ink);
}
.field input:focus, .field select:focus, .field textarea:focus {
  border-color: var(--accent);
  box-shadow: 0 0 0 3px rgba(124,58,237,0.1);
  outline: none;
}
.field textarea { resize: vertical; min-height: 100px; }
.field select {
  appearance: none;
  -webkit-appearance: none;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='7'%3E%3Cpath d='M1 1l5 5 5-5' fill='none' stroke='%235B5775' stroke-width='1.5' stroke-linecap='round'/%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-position: right 14px center;
  padding-right: 36px;
}

.field-checkbox {
  display: flex;
  align-items: flex-start;
  gap: 10px;
}
.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);
  cursor: pointer;
  flex-shrink: 0;
}
.field-checkbox label {
  font-size: 0.82rem;
  font-weight: 400;
  color: var(--ink-soft);
  line-height: 1.45;
  margin-bottom: 0;
  cursor: pointer;
}

.form-submit {
  margin-top: 8px;
}
.form-submit .btn-primary {
  width: 100%;
  justify-content: center;
}

/* ── Testimonials ── */
.testimonials-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: clamp(20px, 3vw, 28px);
}
.testimonial-card {
  background: var(--surface);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  padding: clamp(24px, 3vw, 32px);
  transition: transform 300ms cubic-bezier(.2,.7,.2,1), box-shadow 300ms;
}
.testimonial-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 12px 32px rgba(124,58,237,0.08);
}
.testimonial-card:nth-child(odd) { margin-top: 20px; }
.testimonial-text {
  font-size: 0.92rem;
  line-height: 1.65;
  color: var(--ink);
  margin-bottom: 16px;
  font-style: italic;
}
.testimonial-author {
  font-size: 0.82rem;
  color: var(--ink-soft);
  font-weight: 600;
}

/* ── Team ── */
.team-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
  gap: clamp(20px, 3vw, 28px);
}
.team-card {
  background: var(--surface);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  padding: clamp(24px, 3vw, 32px);
  transition: transform 300ms, box-shadow 300ms;
}
.team-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 12px 32px rgba(124,58,237,0.08);
}
.team-avatar {
  width: 72px;
  height: 72px;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--accent), var(--accent-2));
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--surface);
  font-size: 1.5rem;
  font-weight: 800;
  margin-bottom: 16px;
}
.team-card h3 { font-size: 1.05rem; margin-bottom: 2px; }
.team-card .team-role {
  font-size: 0.82rem;
  color: var(--accent);
  font-weight: 600;
  margin-bottom: 12px;
}
.team-card .team-bio {
  font-size: 0.88rem;
  color: var(--ink-soft);
  line-height: 1.6;
}

/* ── Process Timeline ── */
.process-timeline {
  max-width: 700px;
  margin: 0 auto;
  position: relative;
  padding-left: 40px;
}
.process-timeline::before {
  content: '';
  position: absolute;
  left: 15px;
  top: 0;
  bottom: 0;
  width: 2px;
  background: linear-gradient(to bottom, var(--accent), var(--accent-2));
  border-radius: 1px;
}
.process-step {
  position: relative;
  padding-bottom: clamp(28px, 4vw, 44px);
}
.process-step::before {
  content: attr(data-step);
  position: absolute;
  left: -40px;
  top: 0;
  width: 32px;
  height: 32px;
  border-radius: 50%;
  background: var(--accent);
  color: var(--surface);
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 800;
  font-size: 0.82rem;
  box-shadow: 0 0 0 4px var(--bg);
}
.process-step h4 {
  font-size: 1rem;
  margin-bottom: 4px;
}
.process-step .process-time {
  font-family: 'Consolas', 'Monaco', 'Courier New', monospace;
  font-size: 0.72rem;
  color: var(--accent-2);
  font-weight: 500;
  margin-bottom: 8px;
}
.process-step p {
  font-size: 0.88rem;
  color: var(--ink-soft);
  line-height: 1.55;
}

/* ── Footer ── */
.site-footer {
  background: var(--ink);
  color: rgba(255,255,255,0.8);
  padding: clamp(48px, 7vw, 80px) 0 0;
}
.footer-grid {
  display: grid;
  grid-template-columns: 1.4fr 1fr 1fr 1.2fr;
  gap: clamp(24px, 4vw, 48px);
  margin-bottom: clamp(36px, 5vw, 56px);
}
.footer-brand p {
  font-size: 0.88rem;
  line-height: 1.6;
  margin-top: 12px;
  opacity: 0.75;
}
.footer-social {
  display: flex;
  gap: 12px;
  margin-top: 18px;
}
.footer-social a {
  width: 36px; height: 36px;
  border-radius: 8px;
  background: rgba(255,255,255,0.08);
  display: flex;
  align-items: center;
  justify-content: center;
  color: rgba(255,255,255,0.7);
  transition: background 240ms, color 240ms, transform 200ms;
}
.footer-social a:hover {
  background: var(--accent);
  color: var(--surface);
  transform: translateY(-2px);
}
.footer-social a svg { width: 18px; height: 18px; }

.footer-col h4 {
  color: var(--surface);
  font-size: 0.92rem;
  margin-bottom: 16px;
  letter-spacing: 0.04em;
}
.footer-col a {
  display: block;
  color: rgba(255,255,255,0.65);
  font-size: 0.85rem;
  padding: 4px 0;
  transition: color 200ms, padding-left 200ms;
}
.footer-col a:hover {
  color: var(--surface);
  padding-left: 4px;
}

.footer-contact-item {
  display: flex;
  align-items: flex-start;
  gap: 10px;
  margin-bottom: 12px;
  font-size: 0.85rem;
  line-height: 1.5;
  overflow-wrap: anywhere;
  word-break: break-word;
}
.footer-contact-item svg {
  width: 16px; height: 16px;
  flex-shrink: 0;
  margin-top: 3px;
  color: var(--accent-2);
}

.footer-bottom {
  border-top: 1px solid rgba(255,255,255,0.1);
  padding: 20px 0;
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  align-items: center;
  gap: 12px;
  font-size: 0.78rem;
  opacity: 0.6;
}

.footer-logo {
  font-weight: 800;
  font-size: 1.15rem;
  color: var(--surface);
  text-decoration: none;
  display: flex;
  align-items: center;
  gap: 8px;
}
.footer-logo:hover { color: var(--accent-2); }
.footer-logo svg { width: 28px; height: 28px; }

/* ── Cookie Banner ── */
.cookie-banner {
  position: fixed;
  bottom: 16px;
  left: 16px;
  right: 16px;
  max-width: 520px;
  margin: 0 auto;
  background: var(--surface);
  border-radius: var(--radius);
  padding: 20px 24px;
  box-shadow: 0 12px 40px rgba(0,0,0,0.18);
  border: 1px solid var(--line);
  z-index: 9999;
  transform: translateY(140%);
  opacity: 0;
  transition: transform 280ms cubic-bezier(.2,.7,.2,1), opacity 240ms;
}
.cookie-banner.is-visible {
  transform: translateY(0);
  opacity: 1;
}
@media (min-width: 640px) {
  .cookie-banner { left: 24px; right: auto; max-width: 420px; }
}

.cookie-banner h3 {
  font-size: 0.95rem;
  margin-bottom: 8px;
}
.cookie-banner p {
  font-size: 0.82rem;
  color: var(--ink-soft);
  line-height: 1.5;
  margin-bottom: 16px;
}
.cookie-banner p a { text-decoration: underline; }
.cookie-btns {
  display: flex;
  gap: 8px;
  flex-wrap: wrap;
}
.cookie-btns button {
  flex: 1;
  min-width: 100px;
  min-height: 44px;
  padding: 10px 16px;
  border-radius: 8px;
  font-weight: 600;
  font-size: 0.82rem;
  cursor: pointer;
  transition: background 200ms, color 200ms;
}
.cookie-accept {
  background: var(--accent);
  color: var(--surface);
}
.cookie-accept:hover { background: var(--ink); color: var(--surface); }
.cookie-reject {
  background: var(--bg);
  color: var(--ink);
  border: 1px solid var(--line);
}
.cookie-reject:hover { background: var(--surface-2); color: var(--ink); }
.cookie-settings {
  background: transparent;
  color: var(--ink-soft);
  border: 1px solid var(--line);
}
.cookie-settings:hover { background: var(--bg); color: var(--ink); }

/* ── Glass Utility ── */
.glass {
  background: rgba(255,255,255,0.72);
  backdrop-filter: blur(16px);
  -webkit-backdrop-filter: blur(16px);
  border: 1.5px solid rgba(124,58,237,0.12);
  border-radius: var(--radius);
  box-shadow: inset 0 1px 0 rgba(255,255,255,0.5), 0 8px 32px rgba(124,58,237,0.06);
}

/* ── Table Scroll ── */
.table-scroll {
  display: block;
  width: 100%;
  max-width: 100%;
  min-width: 0;
  overflow-x: auto;
  -webkit-overflow-scrolling: touch;
  margin: 18px 0;
  border: 1px solid var(--line);
  border-radius: 6px;
}
.table-scroll > table {
  margin: 0 !important;
  min-width: 480px;
  width: 100%;
}
:where(*:has(> .table-scroll), *:has(> * > .table-scroll), *:has(> * > * > .table-scroll)) { min-width: 0; }

table {
  border-collapse: collapse;
  width: 100%;
}
th, td {
  padding: 12px 16px;
  text-align: left;
  font-size: 0.88rem;
  border-bottom: 1px solid var(--line);
}
th {
  font-weight: 700;
  background: var(--surface-2);
  font-size: 0.82rem;
  color: var(--ink);
}
td { color: var(--ink-soft); }
tr:last-child td { border-bottom: none; }

/* ── Reveal ── */
.reveal {
  opacity: 0;
  transform: translateY(28px);
  transition: opacity 600ms cubic-bezier(.2,.7,.2,1), transform 600ms cubic-bezier(.2,.7,.2,1);
  animation: revealFallback 700ms cubic-bezier(.22,.61,.36,1) forwards;
  animation-delay: calc(var(--i, 0) * 100ms + 600ms);
}
.reveal.is-in {
  opacity: 1;
  transform: none;
  animation: none;
}
.reveal[style*="--i"] {
  transition-delay: calc(var(--i, 0) * 80ms);
}
@keyframes revealFallback {
  from { opacity: 0; transform: translateY(28px); }
  to { opacity: 1; transform: none; }
}

@media (prefers-reduced-motion: reduce) {
  .reveal { opacity: 1 !important; transform: none !important; transition: none !important; animation: none !important; }
  .char-reveal { opacity: 1 !important; transform: none !important; animation: none !important; }
}
html.no-js .reveal { opacity: 1; transform: none; animation: none; }
html.no-js .char-reveal { opacity: 1; transform: none; animation: none; }

/* ── Niche Animations ── */
@keyframes breathe {
  0%, 100% { transform: scale(1); }
  50% { transform: scale(1.035); }
}

@keyframes chakraPulse {
  0%, 100% { filter: drop-shadow(0 0 6px currentColor); }
  50% { filter: drop-shadow(0 0 14px currentColor); }
}

@keyframes energyFlow {
  0% { stroke-dashoffset: 200; }
  100% { stroke-dashoffset: 0; }
}

@keyframes medFloat {
  0%, 100% { transform: translateY(0); }
  50% { transform: translateY(-8px); }
}

@keyframes lotusReveal {
  0% { transform: scale(0.7) rotate(-15deg); opacity: 0; }
  100% { transform: scale(1) rotate(0); opacity: 0.08; }
}

.breathing { animation: breathe 5s ease-in-out infinite; }

.energy-line-anim {
  stroke-dasharray: 200;
  stroke-dashoffset: 200;
  animation: energyFlow 4s ease-in-out infinite alternate;
}

.lotus-deco {
  position: absolute;
  width: 300px; height: 300px;
  opacity: 0;
  animation: lotusReveal 1.2s ease forwards;
  pointer-events: none;
}

@media (prefers-reduced-motion: reduce) {
  .breathing, .hero-chakra-wrap, .energy-line-anim { animation: none; }
  .lotus-deco { opacity: 0.08; animation: none; }
}

/* ── Page Heroes ── */
.page-hero {
  padding: clamp(48px, 8vw, 80px) 0 clamp(36px, 5vw, 56px);
  text-align: center;
  background:
    radial-gradient(ellipse 70% 50% at 50% 50%, rgba(124,58,237,0.06), transparent),
    var(--bg);
}
.page-hero .eyebrow { margin-bottom: 12px; }
.page-hero h1 { margin-bottom: 12px; font-size: clamp(2rem, 5vw, 3.2rem); }
.page-hero p { color: var(--ink-soft); max-width: 560px; margin: 0 auto; font-size: 0.95rem; }

/* ── Policy/Legal Pages ── */
.legal-content {
  max-width: 800px;
  margin: 0 auto;
  padding: clamp(36px, 6vw, 64px) 0;
}
.legal-content h2 {
  font-size: 1.35rem;
  margin: 36px 0 12px;
}
.legal-content h3 {
  font-size: 1.1rem;
  margin: 24px 0 10px;
}
.legal-content p {
  font-size: 0.9rem;
  color: var(--ink-soft);
  line-height: 1.7;
  margin-bottom: 14px;
}
.legal-content ul {
  margin: 10px 0 18px 20px;
}
.legal-content ul li {
  font-size: 0.9rem;
  color: var(--ink-soft);
  line-height: 1.6;
  padding: 3px 0;
  list-style: disc;
}

/* ── Thank You ── */
.thankyou-section {
  min-height: 60vh;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  padding: 64px 0;
}
.thankyou-content h1 { margin-bottom: 16px; font-size: clamp(1.8rem, 4vw, 2.8rem); }
.thankyou-content p {
  color: var(--ink-soft);
  margin-bottom: 28px;
  font-size: 1rem;
}

/* ── 404 ── */
.error-section {
  min-height: 60vh;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  padding: 64px 0;
}
.error-code {
  font-family: 'Consolas', 'Monaco', 'Courier New', monospace;
  font-size: clamp(5rem, 15vw, 10rem);
  font-weight: 500;
  color: var(--accent);
  opacity: 0.2;
  line-height: 1;
  margin-bottom: 8px;
}

/* ── Sitemap Page ── */
.sitemap-content {
  padding: clamp(36px, 6vw, 64px) 0;
  max-width: 700px;
  margin: 0 auto;
}
.sitemap-content h2 {
  font-size: 1.2rem;
  margin: 28px 0 12px;
  color: var(--accent);
}
.sitemap-content ul { margin-left: 20px; }
.sitemap-content li {
  list-style: disc;
  padding: 4px 0;
}
.sitemap-content li a { font-size: 0.92rem; }

/* ── Contact Page ── */
.iletisim-channels-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: clamp(16px, 2.5vw, 24px);
  margin-bottom: clamp(36px, 5vw, 56px);
}
.channel-card {
  background: var(--surface);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  padding: clamp(20px, 3vw, 28px);
  display: grid;
  grid-template-columns: auto 1fr;
  gap: 14px;
  align-items: start;
  transition: border-color 240ms, transform 240ms, box-shadow 240ms;
}
.channel-card:hover {
  border-color: rgba(124,58,237,0.25);
  transform: translateY(-3px);
  box-shadow: 0 8px 24px rgba(124,58,237,0.06);
}
.channel-card svg {
  width: 22px;
  height: 22px;
  color: var(--accent);
  margin-top: 2px;
  transition: color 240ms cubic-bezier(.4,0,.2,1), transform 240ms;
}
.channel-card:hover svg {
  color: var(--accent-2);
  transform: scale(1.08);
}
.channel-card strong {
  display: block;
  font-size: 0.82rem;
  color: var(--ink-soft);
  margin-bottom: 4px;
}
.channel-card span, .channel-card a {
  font-size: 0.92rem;
  line-height: 1.5;
  overflow-wrap: anywhere;
  word-break: break-word;
}

/* ── Cancellation Table (hakkimizda) ── */
.cancel-tiers {
  display: grid;
  gap: 10px;
  margin: 16px 0;
}
.cancel-tier {
  display: grid;
  grid-template-columns: 140px 1fr;
  gap: 12px;
  align-items: center;
  background: var(--surface);
  border: 1px solid var(--line);
  border-radius: var(--radius-sm);
  padding: 14px 18px;
  font-size: 0.88rem;
}
.cancel-tier-label {
  font-weight: 700;
  font-family: 'Consolas', 'Monaco', 'Courier New', monospace;
  font-size: 0.82rem;
  color: var(--accent);
}

/* ── Hero CSS-only entrance (JS-independent) ── */
.hero .reveal {
  animation: heroReveal 700ms cubic-bezier(.22,.61,.36,1) forwards;
  animation-delay: calc(var(--i, 0) * 120ms + 300ms);
}
.hero .hero-preview {
  animation: heroReveal 800ms cubic-bezier(.22,.61,.36,1) forwards;
  animation-delay: 800ms;
}
.hero-visual {
  opacity: 0;
  animation: heroVisualIn 900ms cubic-bezier(.22,.61,.36,1) forwards;
  animation-delay: 400ms;
}
.hero-visual > img {
  opacity: 0;
  animation: heroReveal 700ms cubic-bezier(.22,.61,.36,1) forwards;
  animation-delay: 500ms;
}
@keyframes heroReveal {
  from { opacity: 0; transform: translateY(24px); }
  to { opacity: 1; transform: none; }
}
@keyframes heroVisualIn {
  from { opacity: 0; transform: translateX(32px); }
  to { opacity: 1; transform: none; }
}

/* Page-hero entrance (no JS dependency) */
.page-hero .eyebrow,
.page-hero h1,
.page-hero p {
  opacity: 0;
  animation: heroReveal 600ms cubic-bezier(.22,.61,.36,1) forwards;
}
.page-hero .eyebrow { animation-delay: 100ms; }
.page-hero h1 { animation-delay: 200ms; }
.page-hero p { animation-delay: 350ms; }

html.no-js .page-hero .eyebrow,
html.no-js .page-hero h1,
html.no-js .page-hero p { opacity: 1; animation: none; }
html.no-js .hero-visual,
html.no-js .hero-visual > img { opacity: 1; animation: none; }

/* ── Yoga-themed hover micro-effects ── */
.goal-card:hover, .level-card:hover {
  box-shadow: 0 12px 32px rgba(124,58,237,0.14), 0 0 0 1px rgba(124,58,237,0.08);
}
.nasil-card {
  transition: transform 400ms cubic-bezier(.16,1,.3,1), box-shadow 400ms cubic-bezier(.16,1,.3,1);
}
.nasil-card:hover {
  transform: translateY(-8px);
  box-shadow: 0 20px 52px rgba(124,58,237,0.14), inset 0 1px 0 rgba(255,255,255,0.6);
}
.nasil-card:hover .nasil-icon {
  transform: scale(1.1) rotate(4deg);
  box-shadow: 0 8px 20px rgba(124,58,237,0.25);
}
.nasil-icon { transition: transform 400ms cubic-bezier(.16,1,.3,1), box-shadow 400ms; }

.price-card {
  transition: transform 400ms cubic-bezier(.16,1,.3,1), box-shadow 400ms, border-color 360ms;
}
.price-card:hover {
  box-shadow: 0 24px 56px rgba(124,58,237,0.14);
}
.team-card {
  transition: transform 400ms cubic-bezier(.16,1,.3,1), box-shadow 400ms;
}
.team-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 16px 40px rgba(124,58,237,0.12);
}
.team-card:hover .team-avatar {
  transform: scale(1.05);
  box-shadow: 0 6px 20px rgba(124,58,237,0.2);
}
.team-avatar { transition: transform 400ms cubic-bezier(.16,1,.3,1), box-shadow 400ms; }

.testimonial-card {
  position: relative;
  transition: transform 400ms cubic-bezier(.16,1,.3,1), box-shadow 400ms;
}
.testimonial-card::before {
  content: '';
  position: absolute;
  left: 0;
  top: 0;
  bottom: 0;
  width: 3px;
  background: linear-gradient(to bottom, var(--accent), var(--accent-2));
  border-radius: 3px;
  opacity: 0;
  transition: opacity 300ms;
}
.testimonial-card:hover::before { opacity: 1; }
.testimonial-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 16px 40px rgba(124,58,237,0.10);
}
.channel-card {
  transition: border-color 300ms cubic-bezier(.16,1,.3,1), transform 300ms cubic-bezier(.16,1,.3,1), box-shadow 300ms;
}
.channel-card:hover {
  box-shadow: 0 12px 32px rgba(124,58,237,0.10);
}
.faq-item {
  transition: border-color 240ms, box-shadow 300ms;
}
.faq-item:hover {
  box-shadow: 0 6px 20px rgba(124,58,237,0.08);
}
.cancel-tier:hover {
  border-color: rgba(124,58,237,0.25);
  transform: translateY(-2px);
  box-shadow: 0 8px 24px rgba(124,58,237,0.08);
}
.cancel-tier { transition: border-color 300ms cubic-bezier(.16,1,.3,1), transform 300ms cubic-bezier(.16,1,.3,1), box-shadow 300ms; }

/* ── Stagger-reveal tuning ── */
.nasil-card.reveal { animation-delay: calc(var(--i, 0) * 120ms + 600ms); }
.team-card.reveal { animation-delay: calc(var(--i, 0) * 100ms + 600ms); }
.testimonial-card.reveal { animation-delay: calc(var(--i, 0) * 120ms + 600ms); }
.process-step.reveal { animation-delay: calc(var(--i, 0) * 130ms + 600ms); }
.faq-item.reveal { animation-delay: calc(var(--i, 0) * 90ms + 600ms); }
.price-card.reveal { animation-delay: calc(var(--i, 0) * 140ms + 600ms); }

/* ── CTA breathing glow ── */
.btn-primary {
  box-shadow: 0 4px 16px rgba(124,58,237,0.18);
  transition: background 280ms cubic-bezier(.16,1,.3,1), color 240ms, transform 280ms cubic-bezier(.16,1,.3,1), box-shadow 280ms;
}
.hero .btn-primary {
  animation: ctaBreathing 4s ease-in-out infinite 1.4s;
}
@keyframes ctaBreathing {
  0%, 100% { box-shadow: 0 4px 16px rgba(124,58,237,0.18); }
  50% { box-shadow: 0 10px 36px rgba(124,58,237,0.38), 0 0 60px rgba(124,58,237,0.06); }
}

/* ── Yoga aura glow on interactive cards ── */
.goal-card, .level-card {
  position: relative;
}
.goal-card::after, .level-card::after {
  content: '';
  position: absolute;
  inset: -2px;
  border-radius: inherit;
  background: linear-gradient(135deg, rgba(124,58,237,0.12), rgba(6,182,212,0.08));
  opacity: 0;
  transition: opacity 400ms cubic-bezier(.16,1,.3,1);
  z-index: -1;
  filter: blur(12px);
}
.goal-card:hover::after, .level-card:hover::after {
  opacity: 1;
}

/* ── Cookie banner: equalize Reddet vs Kabul Et ── */
.cookie-reject {
  background: var(--surface-2);
  color: var(--ink);
  border: 1.5px solid var(--line-strong);
  font-weight: 700;
}
.cookie-reject:hover {
  background: var(--ink);
  color: var(--surface);
  border-color: var(--ink);
}

/* ── Cookie banner mobile: compact bottom sheet ── */
@media (max-width: 640px) {
  .cookie-banner {
    bottom: 0;
    left: 0;
    right: 0;
    border-radius: var(--radius) var(--radius) 0 0;
    max-width: 100%;
    padding: 16px 20px calc(16px + env(safe-area-inset-bottom, 0px));
  }
  .cookie-btns {
    flex-direction: row;
    flex-wrap: wrap;
  }
  .cookie-btns button {
    flex: 1 1 auto;
    min-width: 0;
    padding: 12px 10px;
    font-size: 0.85rem;
  }
}

/* ── Nav toggle: ensure hamburger visibility ── */
.nav-toggle:hover {
  background: var(--accent);
  border-color: var(--accent);
}
.nav-toggle:hover span {
  background: var(--surface);
}
.nav-toggle:focus-visible {
  outline: 2px solid var(--accent);
  outline-offset: 2px;
}

@media (prefers-reduced-motion: reduce) {
  .hero .reveal,
  .hero .hero-preview,
  .hero-visual,
  .hero-visual > img,
  .page-hero .eyebrow,
  .page-hero h1,
  .page-hero p,
  .reveal {
    animation: none !important;
    opacity: 1 !important;
    transform: none !important;
  }
  .hero .btn-primary {
    animation: none !important;
  }
  .goal-card::after, .level-card::after,
  .testimonial-card::before {
    display: none;
  }
}

/* ── Responsive ── */
@media (max-width: 1280px) {
  .footer-grid { grid-template-columns: 1.2fr 1fr 1fr 1fr; }
}

@media (max-width: 1024px) {
  .hero > .container { grid-template-columns: 1fr 1fr; gap: clamp(24px, 4vw, 40px); }
  .planner-layout { grid-template-columns: 1fr; }
  .planner-chakra-col {
    display: none;
  }
  .pricing-cards { grid-template-columns: 1fr 1fr; }
  .price-card:last-child { grid-column: 1 / -1; max-width: 400px; margin: 0 auto; }
  .contact-grid { grid-template-columns: 1fr; }
  .testimonials-grid { grid-template-columns: 1fr 1fr; }
  .footer-grid { grid-template-columns: 1fr 1fr; gap: 32px; }
}

@media (max-width: 768px) {
  :root { --header-h: 64px; }
  .hero > .container { grid-template-columns: 1fr; }
  .hero-content { text-align: center; max-width: none; }
  .hero__sub { margin-inline: auto; }
  .hero__cta { display: flex; justify-content: center; }
  .trust-strip { justify-content: center; }
  .hero__title { font-size: clamp(2rem, 7vw, 3.2rem); }
  .hero-visual > img { max-height: 240px; }
  .nasil-grid { grid-template-columns: 1fr; max-width: 460px; margin: 0 auto; }
  .pricing-cards { grid-template-columns: 1fr; max-width: 400px; margin: 0 auto; }
  .price-card:last-child { max-width: none; }
  .price-card.is-featured { transform: none; }
  .price-card.is-featured:hover { transform: translateY(-4px); }
  .testimonials-grid { grid-template-columns: 1fr; }
  .testimonial-card:nth-child(odd) { margin-top: 0; }
  .stats-grid { grid-template-columns: 1fr 1fr; }
  .hero-preview-card { grid-template-columns: 1fr; }
  .hero-chakra-wrap { display: none; }
  .footer-grid { grid-template-columns: 1fr; gap: 28px; }
  .footer-bottom { flex-direction: column; text-align: center; }
}

@media (max-width: 640px) {
  .goal-grid { grid-template-columns: 1fr; }
  .level-grid { grid-template-columns: 1fr; }
  .plan-day { grid-template-columns: 1fr 1fr; gap: 6px 12px; }
  .plan-day-name { grid-column: 1 / -1; }
  .trust-strip { gap: 8px; }
  .trust-badge { font-size: 0.72rem; padding: 5px 10px; }
  .cancel-tier { grid-template-columns: 1fr; gap: 4px; }
  .iletisim-channels-grid { grid-template-columns: 1fr; }
}

@media (max-width: 480px) {
  body { font-size: 15px; }
  .cookie-banner { bottom: 0; left: 0; right: 0; border-radius: var(--radius) var(--radius) 0 0; max-width: 100%; padding: 16px 16px calc(16px + env(safe-area-inset-bottom, 0px)); }
  .cookie-btns { flex-direction: row; }
  .cookie-btns button { min-width: 0; flex: 1; padding: 12px 8px; }
}

@media (max-width: 390px) {
  .hero__title { font-size: 1.85rem; }
  .stats-grid { gap: 12px; }
  .stat-num { font-size: 1.6rem; }
  .nasil-card { padding: 20px 16px; }
  .price-card { padding: 20px 16px; }
}

@media (max-width: 360px) {
  .container { padding-left: 14px; padding-right: 14px; }
  .hero__title { font-size: 1.7rem; }
  .planner-widget { padding: 18px 14px; }
}

/* ── Print ── */
@media print {
  .site-header, .drawer, .drawer-backdrop, .cookie-banner, .nav-toggle,
  .skip-link, .hero-preview, .trust-strip { display: none !important; }
  main { padding-top: 0; }
  body { background: #fff; color: #000; }
  a { color: #000; text-decoration: underline; }
  .reveal { opacity: 1 !important; transform: none !important; }
}
