/* meren.exe — kişisel site · koyu tema · haki vurgu */
*,
*::before,
*::after {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

:root {
  --bg: #0b0c08;
  --bg-soft: #12140d;
  --panel: rgba(255, 255, 255, 0.04);
  --line: rgba(255, 255, 255, 0.08);
  --text: #f2f3ec;
  --text-dim: #9a9d8e;
  --khaki: #b4bd6a;
  --khaki-soft: rgba(180, 189, 106, 0.14);
  --red: #ff6b6b;
  --font-display: "Space Grotesk", system-ui, sans-serif;
  --font-body: "Inter", system-ui, sans-serif;
  --font-mono: "JetBrains Mono", "Courier New", monospace;
  --radius: 20px;
  --max: 1120px;
}

html {
  scroll-behavior: smooth;
}

body {
  font-family: var(--font-body);
  background: var(--bg);
  color: var(--text);
  line-height: 1.6;
  min-height: 100vh;
  overflow-x: hidden;
  -webkit-font-smoothing: antialiased;
}

.mono {
  font-family: var(--font-mono);
}

/* --- Arka plan katmanları --- */
.bg-glow {
  position: fixed;
  inset: 0;
  z-index: 0;
  pointer-events: none;
  background:
    radial-gradient(60% 40% at 70% 0%, rgba(180, 189, 106, 0.08), transparent 60%),
    radial-gradient(50% 35% at 20% 100%, rgba(180, 189, 106, 0.05), transparent 55%),
    var(--bg);
}

.mesh-bg {
  position: fixed;
  inset: 0;
  z-index: 0;
  pointer-events: none;
  overflow: hidden;
}

.mesh-blob {
  position: absolute;
  border-radius: 50%;
  filter: blur(90px);
  opacity: 0.3;
  animation: meshDrift 42s ease-in-out infinite;
}

.mesh-blob.b1 {
  width: 500px;
  height: 500px;
  background: radial-gradient(circle, rgba(180, 189, 106, 0.22), transparent 70%);
  top: -10%;
  right: -5%;
}

.mesh-blob.b2 {
  width: 400px;
  height: 400px;
  background: radial-gradient(circle, rgba(122, 124, 79, 0.2), transparent 70%);
  bottom: 10%;
  left: -8%;
  animation-delay: -14s;
  animation-duration: 52s;
}

.mesh-blob.b3 {
  width: 350px;
  height: 350px;
  background: radial-gradient(circle, rgba(214, 221, 154, 0.1), transparent 70%);
  top: 40%;
  left: 30%;
  animation-delay: -28s;
  animation-duration: 64s;
}

@keyframes meshDrift {
  0%, 100% { transform: translate(0, 0) scale(1); }
  33% { transform: translate(30px, -40px) scale(1.1); }
  66% { transform: translate(-20px, 30px) scale(0.95); }
}

.noise {
  position: fixed;
  inset: 0;
  z-index: 1;
  pointer-events: none;
  opacity: 0.05;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='120' height='120'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.9' numOctaves='2'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23n)' opacity='0.6'/%3E%3C/svg%3E");
}

.particles {
  position: fixed;
  inset: 0;
  z-index: 0;
  pointer-events: none;
}

.particle {
  position: absolute;
  width: 3px;
  height: 3px;
  border-radius: 50%;
  background: var(--khaki);
  opacity: 0.25;
  animation: drift linear infinite;
}

@keyframes drift {
  from { transform: translateY(0); }
  to   { transform: translateY(-110vh); }
}

/* --- Açılış animasyonu --- */
body.is-booting {
  overflow: hidden;
}

.intro-overlay {
  position: fixed;
  inset: 0;
  z-index: 100;
  display: grid;
  place-items: center;
  gap: 1.25rem;
  grid-auto-flow: row;
  cursor: pointer;
  transition: visibility 0s linear 1.6s;
}

.intro-overlay.done {
  visibility: hidden;
  pointer-events: none;
}

.intro-panel {
  position: absolute;
  top: 0;
  bottom: 0;
  width: 50.5%;
  background: var(--bg);
  transition: transform 0.95s cubic-bezier(0.76, 0, 0.24, 1) 0.4s;
  z-index: -1;
}

.intro-panel-l { left: 0; }
.intro-panel-r { right: 0; }

.intro-overlay.done .intro-panel-l { transform: translateX(-102%); }
.intro-overlay.done .intro-panel-r { transform: translateX(102%); }

.intro-overlay.done .intro-brand,
.intro-overlay.done .intro-loader,
.intro-overlay.done .intro-skip {
  opacity: 0;
  transition: opacity 0.35s ease;
}

.intro-brand,
.intro-loader {
  transition: opacity 0.35s ease;
}

.intro-brand {
  position: relative;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 1.1rem;
  opacity: 0;
  transform: scale(0.92);
  animation: logoIn 0.9s cubic-bezier(0.2, 0.8, 0.2, 1) forwards;
}

.intro-ring {
  position: absolute;
  top: 44px;
  left: 50%;
  width: 340px;
  height: 340px;
  transform: translate(-50%, -50%);
  border-radius: 50%;
  border: 1.5px solid rgba(180, 189, 106, 0.45);
  box-shadow:
    0 0 30px -8px rgba(180, 189, 106, 0.4),
    inset 0 0 30px -12px rgba(180, 189, 106, 0.3);
  animation:
    ringExpand 2.4s ease-out forwards,
    ringPulse 2s ease-in-out 0.6s infinite;
  pointer-events: none;
}

.intro-ring::before {
  content: "";
  position: absolute;
  inset: -20px;
  border-radius: 50%;
  border: 1px dashed rgba(180, 189, 106, 0.35);
  animation: ringSpin 14s linear infinite;
}

.intro-ring::after {
  content: "";
  position: absolute;
  inset: 16px;
  border-radius: 50%;
  border: 1px dotted rgba(180, 189, 106, 0.3);
  animation: ringSpin 9s linear infinite reverse;
}

.intro-arc {
  position: absolute;
  top: 44px;
  left: 50%;
  width: 340px;
  height: 340px;
  transform: translate(-50%, -50%);
  border-radius: 50%;
  background: conic-gradient(
    from 0deg,
    transparent 0deg,
    rgba(180, 189, 106, 0.9) 45deg,
    transparent 90deg
  );
  -webkit-mask: radial-gradient(farthest-side, transparent calc(100% - 4px), #000 calc(100% - 3px));
  mask: radial-gradient(farthest-side, transparent calc(100% - 4px), #000 calc(100% - 3px));
  animation: arcSpin 2.6s linear infinite;
  pointer-events: none;
}

@keyframes arcSpin {
  from { transform: translate(-50%, -50%) rotate(0deg); }
  to   { transform: translate(-50%, -50%) rotate(360deg); }
}

@keyframes ringSpin {
  to { transform: rotate(360deg); }
}

@keyframes ringPulse {
  0%, 100% {
    box-shadow:
      0 0 24px -8px rgba(180, 189, 106, 0.35),
      inset 0 0 24px -12px rgba(180, 189, 106, 0.25);
  }
  50% {
    box-shadow:
      0 0 48px -6px rgba(180, 189, 106, 0.6),
      inset 0 0 38px -10px rgba(180, 189, 106, 0.45);
  }
}

@keyframes ringExpand {
  0%   { transform: translate(-50%, -50%) scale(0.55); opacity: 0; }
  35%  { opacity: 1; }
  100% { transform: translate(-50%, -50%) scale(1.15); opacity: 0.5; }
}

@keyframes logoIn {
  to {
    opacity: 1;
    transform: scale(1);
  }
}

.intro-text {
  font-size: clamp(2.6rem, 8vw, 4.4rem);
  font-weight: 600;
  letter-spacing: -0.02em;
  color: var(--khaki);
  text-shadow: 0 0 24px rgba(180, 189, 106, 0.35);
  min-height: 1.2em;
}

.intro-cursor {
  animation: blink 0.8s step-end infinite;
}

@keyframes blink {
  50% { opacity: 0; }
}

.intro-tag {
  font-size: 0.8rem;
  letter-spacing: 0.3em;
  text-transform: uppercase;
  color: var(--text-dim);
  opacity: 0;
  animation: introTagIn 0.9s cubic-bezier(0.19, 1, 0.22, 1) 1.1s forwards;
}

@keyframes introTagIn {
  from { opacity: 0; transform: translateY(10px); letter-spacing: 0.55em; }
  to   { opacity: 1; transform: translateY(0); letter-spacing: 0.3em; }
}

.intro-loader {
  display: flex;
  align-items: center;
  gap: 0.9rem;
  opacity: 0;
  animation: fadeIn 0.5s ease 0.7s forwards;
}

.intro-loader-label {
  display: flex;
  align-items: center;
  justify-content: flex-end;
  gap: 0.55rem;
  min-width: 170px;
  font-size: 0.68rem;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--text-dim);
}

.intro-loader-label::before {
  content: "";
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: var(--khaki);
  flex-shrink: 0;
  animation: blinkDot 1s ease-in-out infinite;
}

@keyframes blinkDot {
  0%, 100% { opacity: 1; box-shadow: 0 0 8px var(--khaki); }
  50%      { opacity: 0.25; box-shadow: none; }
}

.intro-progress {
  width: 180px;
  height: 2px;
  border-radius: 2px;
  background: rgba(255, 255, 255, 0.08);
  overflow: hidden;
}

.intro-progress-fill {
  position: relative;
  display: block;
  height: 100%;
  width: 0%;
  background: var(--khaki);
  box-shadow: 0 0 10px rgba(180, 189, 106, 0.5);
  overflow: hidden;
}

.intro-progress-fill::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.7), transparent);
  animation: fillShine 1.1s linear infinite;
}

@keyframes fillShine {
  from { transform: translateX(-100%); }
  to   { transform: translateX(100%); }
}

.intro-pct {
  min-width: 40px;
  font-size: 0.75rem;
  letter-spacing: 0.15em;
  color: var(--text-dim);
  font-variant-numeric: tabular-nums;
}

.intro-skip {
  position: absolute;
  bottom: 3%;
  right: 2.5%;
  font-size: 0.65rem;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: rgba(242, 243, 236, 0.3);
  opacity: 0;
  animation: fadeIn 0.6s ease 1.6s forwards;
}

@keyframes fadeIn {
  to { opacity: 1; }
}

/* Giriş koreografisi */
body.is-booting .nav,
body.is-booting .hero-item {
  opacity: 0;
  transform: translateY(28px);
  transition: none;
}

body:not(.is-booting) .nav,
body:not(.is-booting) .hero-item {
  opacity: 1;
  transform: translateY(0);
  transition: opacity 0.8s ease, transform 0.8s cubic-bezier(0.2, 0.8, 0.2, 1);
}

body:not(.is-booting) .nav { transition-delay: 0.05s; }
body:not(.is-booting) .hero-item:nth-child(1) { transition-delay: 0.15s; }
body:not(.is-booting) .hero-item:nth-child(2) { transition-delay: 0.25s; }
body:not(.is-booting) .hero-item:nth-child(3) { transition-delay: 0.35s; }
body:not(.is-booting) .hero-item:nth-child(4) { transition-delay: 0.45s; }
body:not(.is-booting) .hero-item:nth-child(5) { transition-delay: 0.55s; }

body.is-booting .hero-visual {
  opacity: 0;
  transform: scale(1.05);
  transition: none;
}

body:not(.is-booting) .hero-visual {
  opacity: 1;
  transform: scale(1);
  transition: opacity 1.4s ease 0.6s, transform 1.4s cubic-bezier(0.19, 1, 0.22, 1) 0.6s;
}

body:not(.is-booting) .eyebrow.hero-item {
  animation: trackIn 1.5s cubic-bezier(0.19, 1, 0.22, 1) 0.3s backwards;
}

@keyframes trackIn {
  from { letter-spacing: 0.5em; }
  to   { letter-spacing: 0.22em; }
}

/* --- Nav --- */
.nav {
  position: sticky;
  top: 0;
  z-index: 20;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  max-width: var(--max);
  margin: 0 auto;
  padding: 1rem 1.25rem;
  backdrop-filter: blur(14px);
  background: rgba(11, 12, 8, 0.55);
  border-bottom: 1px solid var(--line);
}

.brand {
  display: flex;
  align-items: center;
  gap: 0.65rem;
  text-decoration: none;
}

.brand-text {
  font-size: 1.2rem;
  font-weight: 600;
  color: var(--text);
  letter-spacing: -0.02em;
}

.brand-dot {
  color: var(--khaki);
}

.nav-links {
  display: flex;
  gap: 1.25rem;
  align-items: center;
  font-size: 0.95rem;
}

.nav-links a {
  color: var(--text-dim);
  text-decoration: none;
  transition: color 0.2s;
}

.nav-links a:hover {
  color: var(--text);
}

.nav-cta {
  border: 1px solid var(--line);
  padding: 0.4rem 0.9rem;
  border-radius: 999px;
  color: var(--text) !important;
  background: var(--panel);
  transition: border-color 0.2s, background 0.2s;
}

.nav-cta:hover {
  border-color: rgba(180, 189, 106, 0.5);
  background: var(--khaki-soft);
}

/* --- Yerleşim --- */
main {
  position: relative;
  z-index: 2;
  max-width: var(--max);
  margin: 0 auto;
  padding: 0 1.25rem 4rem;
}

.eyebrow {
  font-family: var(--font-mono);
  font-size: 0.8rem;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--khaki);
  margin-bottom: 0.9rem;
}

h1, h2, h3 {
  font-family: var(--font-display);
  line-height: 1.15;
  letter-spacing: -0.02em;
}

h1 {
  font-size: clamp(2.6rem, 7vw, 4.6rem);
  font-weight: 600;
  margin-bottom: 1.25rem;
}

h2 {
  font-size: clamp(1.8rem, 4vw, 2.6rem);
  font-weight: 600;
}

.accent-text {
  color: var(--khaki);
}

.section-head {
  text-align: center;
  max-width: 640px;
  margin: 5.5rem auto 2.75rem;
}

.section-sub {
  color: var(--text-dim);
  margin-top: 0.75rem;
}

.center {
  text-align: center;
  margin-top: 2.5rem;
}

/* --- Hero --- */
.hero {
  display: grid;
  grid-template-columns: 1.05fr 0.95fr;
  gap: 3rem;
  align-items: center;
  min-height: 78vh;
  padding: 3rem 0 2rem;
  position: relative;
}

.hero-copy,
.hero-visual {
  position: relative;
  z-index: 1;
}

.hero-headline {
  position: relative;
}

.hl-line {
  display: block;
  overflow: hidden;
  padding-bottom: 0.06em;
  margin-bottom: -0.06em;
}

.hl-inner {
  display: inline-block;
  opacity: 0;
  transform: translateY(115%);
  filter: blur(8px);
  will-change: transform, opacity, filter;
}

body:not(.is-booting) .hl-inner {
  animation: lineReveal 1.3s cubic-bezier(0.19, 1, 0.22, 1) forwards;
}

body:not(.is-booting) .hl-line:nth-child(1) .hl-inner { animation-delay: 0.55s; }
body:not(.is-booting) .hl-line:nth-child(2) .hl-inner { animation-delay: 0.85s; }

@keyframes lineReveal {
  to {
    opacity: 1;
    transform: translateY(0);
    filter: blur(0);
  }
}

.lead {
  font-size: 1.12rem;
  color: var(--text-dim);
  max-width: 520px;
  margin-bottom: 2rem;
}

.lead strong {
  color: var(--text);
  font-weight: 500;
}

.hero-actions {
  display: flex;
  gap: 0.9rem;
  flex-wrap: wrap;
  margin-bottom: 1.75rem;
}

.btn {
  font-family: var(--font-display);
  font-size: 0.95rem;
  font-weight: 500;
  padding: 0.85rem 1.6rem;
  border-radius: 999px;
  text-decoration: none;
  border: 1px solid transparent;
  cursor: pointer;
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  transition: transform 0.2s ease, box-shadow 0.2s ease, background 0.2s ease;
}

.btn-primary {
  background: var(--khaki);
  color: #1c1e12;
  box-shadow: 0 8px 32px rgba(180, 189, 106, 0.22);
}

.btn-primary:hover {
  transform: translateY(-2px);
  box-shadow: 0 12px 40px rgba(180, 189, 106, 0.35);
}

.btn-ghost {
  color: var(--text);
  border-color: var(--line);
  background: var(--panel);
}

.btn-ghost:hover {
  border-color: rgba(180, 189, 106, 0.4);
}

.btn-dot {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: currentColor;
  animation: pulse 1.8s ease-in-out infinite;
}

@keyframes pulse {
  0%, 100% { opacity: 1; transform: scale(1); }
  50%      { opacity: 0.4; transform: scale(0.8); }
}

.btn-pulse {
  position: relative;
  overflow: visible;
}

.btn-pulse::before {
  content: "";
  position: absolute;
  inset: -4px;
  border-radius: 999px;
  border: 2px solid var(--khaki);
  opacity: 0;
  animation: btnRipple 3s ease-out infinite;
}

@keyframes btnRipple {
  0%   { transform: scale(0.95); opacity: 0.6; }
  100% { transform: scale(1.15); opacity: 0; }
}

.hero-badges {
  list-style: none;
  display: flex;
  flex-wrap: wrap;
  gap: 0.5rem;
}

.hero-badges li {
  font-size: 0.8rem;
  color: var(--text-dim);
  border: 1px solid var(--line);
  padding: 0.3rem 0.75rem;
  border-radius: 999px;
  background: var(--panel);
}

/* --- Hero terminal --- */
.hero-visual {
  border: 1px solid var(--line);
  border-radius: calc(var(--radius) + 8px);
  background: var(--bg-soft);
  overflow: hidden;
  position: relative;
}

.terminal-halo {
  position: absolute;
  inset: -3px;
  border-radius: calc(var(--radius) + 10px);
  border: 1px solid rgba(180, 189, 106, 0.15);
  pointer-events: none;
  animation: haloSpin 8s linear infinite;
}

.terminal-halo::before {
  content: "";
  position: absolute;
  top: -1px;
  left: 20%;
  width: 60px;
  height: 2px;
  background: linear-gradient(90deg, transparent, var(--khaki), transparent);
}

@keyframes haloSpin {
  to { transform: rotate(360deg); }
}

.terminal {
  display: flex;
  flex-direction: column;
  min-height: 380px;
}

.terminal-top {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  padding: 0.85rem 1.1rem;
  border-bottom: 1px solid var(--line);
}

.t-dot {
  width: 11px;
  height: 11px;
  border-radius: 50%;
  opacity: 0.8;
}

.terminal-title {
  margin-left: auto;
  font-size: 0.72rem;
  color: var(--text-dim);
}

.terminal-body {
  padding: 1.1rem 1.25rem;
  font-size: 0.85rem;
  line-height: 1.9;
  color: var(--text-dim);
  white-space: pre-wrap;
  word-break: break-word;
}

.terminal-body .t-prompt {
  color: var(--khaki);
}

.terminal-body .t-out {
  color: var(--text);
}

.terminal-body .t-cursor {
  display: inline-block;
  width: 8px;
  height: 1.1em;
  vertical-align: text-bottom;
  background: var(--khaki);
  animation: blink 0.8s step-end infinite;
}

/* --- Kayan şerit --- */
.marquee {
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
  padding: 1rem 0;
  overflow: hidden;
  margin-top: 2rem;
}

.marquee-track {
  display: flex;
  gap: 3rem;
  width: max-content;
  animation: scroll 28s linear infinite;
  font-family: var(--font-display);
  font-size: 0.9rem;
  color: var(--text-dim);
}

.marquee-item {
  white-space: nowrap;
}

.marquee-item::before {
  content: "◆";
  color: var(--khaki);
  margin-right: 1.2rem;
  font-size: 0.6em;
  vertical-align: middle;
}

@keyframes scroll {
  from { transform: translateX(0); }
  to   { transform: translateX(-50%); }
}

/* --- Mentorluk kartları --- */
.feature-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 1rem;
}

.f-card {
  border: 1px solid var(--line);
  border-radius: var(--radius);
  padding: 1.6rem;
  background: var(--panel);
  transition: transform 0.25s ease, border-color 0.25s ease;
}

.f-card:hover {
  transform: translateY(-4px);
  border-color: rgba(180, 189, 106, 0.35);
}

.f-icon {
  width: 44px;
  height: 44px;
  border-radius: 12px;
  display: grid;
  place-items: center;
  color: var(--khaki);
  background: var(--khaki-soft);
  margin-bottom: 1rem;
}

.f-icon svg {
  width: 22px;
  height: 22px;
}

.f-card h3 {
  font-size: 1.15rem;
  margin-bottom: 0.5rem;
}

.f-card p {
  color: var(--text-dim);
  font-size: 0.95rem;
}

/* --- Hakkımda --- */
.about-grid {
  display: grid;
  grid-template-columns: 340px 1fr;
  gap: 3rem;
  align-items: start;
  max-width: 980px;
  margin: 0 auto;
}

.about-photo-wrap {
  position: relative;
}

.about-photo {
  width: 100%;
  height: auto;
  border-radius: var(--radius);
  border: 1px solid rgba(180, 189, 106, 0.4);
  display: block;
  position: relative;
  z-index: 1;
}

.about-photo-ring {
  position: absolute;
  inset: -14px;
  border-radius: calc(var(--radius) + 10px);
  border: 1px dashed rgba(180, 189, 106, 0.3);
  animation: ringSpin 24s linear infinite;
  pointer-events: none;
}

.about-text p {
  color: var(--text-dim);
  margin-bottom: 1.1rem;
}

.about-text .about-lead {
  color: var(--text);
  font-size: 1.08rem;
}

.about-text a {
  color: var(--khaki);
  text-decoration: none;
  border-bottom: 1px solid rgba(180, 189, 106, 0.35);
  transition: border-color 0.2s;
}

.about-text a:hover {
  border-bottom-color: var(--khaki);
}

.about-text strong {
  color: var(--text);
}

/* --- Blog kartları --- */
.post-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(300px, 1fr));
  gap: 1rem;
  max-width: 980px;
  margin: 0 auto;
}

.post-card {
  display: block;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  padding: 1.6rem;
  background: var(--panel);
  text-decoration: none;
  color: var(--text);
  transition: transform 0.25s ease, border-color 0.25s ease;
}

.post-card:hover {
  transform: translateY(-4px);
  border-color: rgba(180, 189, 106, 0.35);
}

.post-date {
  font-size: 0.75rem;
  color: var(--khaki);
  letter-spacing: 0.08em;
}

.post-card h3 {
  font-size: 1.2rem;
  margin: 0.5rem 0;
}

.post-card p {
  color: var(--text-dim);
  font-size: 0.95rem;
  margin-bottom: 1rem;
}

.post-link {
  font-size: 0.85rem;
  color: var(--khaki);
}

/* --- Blog yazısı (prose) --- */
.prose {
  max-width: 720px;
  margin: 0 auto;
  padding: 3rem 0;
}

.prose h1 {
  font-size: clamp(2rem, 5vw, 3rem);
  margin-bottom: 0.5rem;
}

.prose .post-meta {
  font-family: var(--font-mono);
  font-size: 0.8rem;
  color: var(--khaki);
  margin-bottom: 2.5rem;
}

.prose h2 {
  font-size: 1.5rem;
  margin: 2.5rem 0 1rem;
}

.prose p {
  color: var(--text-dim);
  margin-bottom: 1.2rem;
}

.prose ul {
  color: var(--text-dim);
  padding-left: 1.4rem;
  margin-bottom: 1.2rem;
}

.prose li {
  margin-bottom: 0.4rem;
}

.prose a {
  color: var(--khaki);
}

.prose strong {
  color: var(--text);
}

.back-link {
  display: inline-block;
  margin-top: 3rem;
  color: var(--text-dim);
  text-decoration: none;
  font-size: 0.9rem;
  transition: color 0.2s;
}

.back-link:hover {
  color: var(--khaki);
}

/* --- Mentorluk formu --- */
.form-wrap {
  max-width: 620px;
  margin: 0 auto;
  padding: 3rem 0;
}

.form-card {
  border: 1px solid var(--line);
  border-radius: var(--radius);
  padding: 2rem;
  background: var(--panel);
}

.form-card form {
  display: flex;
  flex-direction: column;
  gap: 1.1rem;
}

.form-card label {
  display: block;
  font-size: 0.85rem;
  font-weight: 500;
  margin-bottom: 0.4rem;
  color: var(--text);
}

.form-card input,
.form-card select,
.form-card textarea {
  width: 100%;
  background: var(--bg-soft);
  border: 1px solid var(--line);
  border-radius: 12px;
  padding: 0.8rem 1rem;
  color: var(--text);
  font-family: var(--font-body);
  font-size: 0.95rem;
  outline: none;
  transition: border-color 0.2s;
}

.form-card select {
  appearance: none;
}

.form-card textarea {
  min-height: 140px;
  resize: vertical;
}

.form-card input:focus,
.form-card select:focus,
.form-card textarea:focus {
  border-color: rgba(180, 189, 106, 0.5);
}

.form-card input::placeholder,
.form-card textarea::placeholder {
  color: var(--text-dim);
}

.form-note {
  font-size: 0.78rem;
  color: var(--text-dim);
  opacity: 0.8;
}

/* --- Mentorluk sihirbazı --- */
.wizard {
  scroll-margin-top: 90px;
  max-width: 640px;
  margin: 0 auto;
  border: 1px solid var(--line);
  border-radius: calc(var(--radius) + 4px);
  background: var(--panel);
  padding: 2rem;
  position: relative;
  overflow: hidden;
}

/* İlerleme göstergesi */
.wizard-progress {
  position: relative;
  margin-bottom: 2.25rem;
}

.wp-line {
  position: absolute;
  top: 15px;
  left: 8%;
  right: 8%;
  height: 2px;
  background: var(--line);
  z-index: 0;
}

.wp-fill {
  display: block;
  height: 100%;
  width: 0%;
  background: linear-gradient(90deg, var(--khaki), #d6dd9a);
  box-shadow: 0 0 10px rgba(180, 189, 106, 0.5);
  transition: width 0.6s cubic-bezier(0.4, 0, 0.2, 1);
}

.wp-steps {
  list-style: none;
  display: flex;
  justify-content: space-between;
  position: relative;
  z-index: 1;
}

.wp-step {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0.4rem;
  flex: 1;
}

.wp-dot {
  width: 32px;
  height: 32px;
  border-radius: 50%;
  display: grid;
  place-items: center;
  font-family: var(--font-mono);
  font-size: 0.8rem;
  background: var(--bg-soft);
  border: 1px solid var(--line);
  color: var(--text-dim);
  transition: all 0.4s ease;
}

.wp-step em {
  font-style: normal;
  font-size: 0.68rem;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: var(--text-dim);
  transition: color 0.3s;
}

.wp-step.active .wp-dot {
  background: var(--khaki);
  border-color: var(--khaki);
  color: #1c1e12;
  font-weight: 600;
  box-shadow: 0 0 16px rgba(180, 189, 106, 0.45);
  transform: scale(1.1);
}

.wp-step.active em {
  color: var(--khaki);
}

.wp-step.done .wp-dot {
  background: var(--khaki-soft);
  border-color: rgba(180, 189, 106, 0.5);
  color: var(--khaki);
}

/* Adımlar */
.wstep {
  display: none;
}

.wstep.active {
  display: block;
  animation: stepInR 0.45s cubic-bezier(0.2, 0.8, 0.2, 1) both;
}

.wstep.active.back {
  animation-name: stepInL;
}

@keyframes stepInR {
  from { opacity: 0; transform: translateX(36px); filter: blur(4px); }
  to   { opacity: 1; transform: translateX(0); filter: blur(0); }
}

@keyframes stepInL {
  from { opacity: 0; transform: translateX(-36px); filter: blur(4px); }
  to   { opacity: 1; transform: translateX(0); filter: blur(0); }
}

.wstep h3 {
  font-size: 1.35rem;
  margin-bottom: 0.4rem;
}

.wstep-sub {
  color: var(--text-dim);
  font-size: 0.92rem;
  margin-bottom: 1.5rem;
}

/* Form alanları */
.field {
  margin-bottom: 1.1rem;
}

.field label {
  display: block;
  font-size: 0.85rem;
  font-weight: 500;
  margin-bottom: 0.4rem;
}

.field input,
.field textarea {
  width: 100%;
  background: var(--bg-soft);
  border: 1px solid var(--line);
  border-radius: 12px;
  padding: 0.8rem 1rem;
  color: var(--text);
  font-family: var(--font-body);
  font-size: 0.95rem;
  outline: none;
  transition: border-color 0.2s, box-shadow 0.2s;
}

.field textarea {
  min-height: 150px;
  resize: vertical;
}

.field input:focus,
.field textarea:focus {
  border-color: rgba(180, 189, 106, 0.55);
  box-shadow: 0 0 0 3px rgba(180, 189, 106, 0.12);
}

.field input::placeholder,
.field textarea::placeholder {
  color: var(--text-dim);
}

.field-err {
  display: none;
  font-size: 0.78rem;
  color: var(--red);
  margin-top: 0.35rem;
}

.field.invalid input,
.field.invalid textarea {
  border-color: rgba(255, 107, 107, 0.6);
  animation: shake 0.35s ease;
}

.field.invalid .field-err,
.field-err.show {
  display: block;
  animation: fadeIn 0.3s ease;
}

@keyframes shake {
  0%, 100% { transform: translateX(0); }
  25% { transform: translateX(-6px); }
  75% { transform: translateX(6px); }
}

/* Seçenek kartları */
.opt-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 0.75rem;
}

.opt-grid .opt-card:last-child:nth-child(odd) {
  grid-column: 1 / -1;
}

.opt-card {
  position: relative;
  border: 1px solid var(--line);
  border-radius: 14px;
  padding: 1rem 1.1rem;
  background: var(--bg-soft);
  cursor: pointer;
  display: flex;
  flex-direction: column;
  gap: 0.15rem;
  transition: transform 0.2s ease, border-color 0.2s ease, background 0.2s ease;
}

.opt-card:hover {
  transform: translateY(-2px);
  border-color: rgba(180, 189, 106, 0.35);
}

.opt-card input {
  position: absolute;
  opacity: 0;
  pointer-events: none;
}

.opt-icon {
  font-size: 1.3rem;
  margin-bottom: 0.35rem;
}

.opt-card strong {
  font-size: 0.95rem;
  color: var(--text);
}

.opt-card small {
  color: var(--text-dim);
  font-size: 0.78rem;
}

.opt-card.selected {
  border-color: var(--khaki);
  background: var(--khaki-soft);
  box-shadow: 0 0 20px rgba(180, 189, 106, 0.15);
  animation: optPop 0.3s cubic-bezier(0.2, 0.8, 0.2, 1);
}

.opt-card.selected strong {
  color: var(--khaki);
}

@keyframes optPop {
  0% { transform: scale(0.97); }
  60% { transform: scale(1.02); }
  100% { transform: scale(1); }
}

/* Özet */
.summary {
  display: flex;
  flex-direction: column;
  gap: 0.6rem;
}

.summary > div {
  display: flex;
  gap: 1rem;
  border: 1px solid var(--line);
  border-radius: 12px;
  padding: 0.7rem 1rem;
  background: var(--bg-soft);
  animation: stepInR 0.4s ease both;
}

.summary > div:nth-child(2) { animation-delay: 0.06s; }
.summary > div:nth-child(3) { animation-delay: 0.12s; }
.summary > div:nth-child(4) { animation-delay: 0.18s; }
.summary > div:nth-child(5) { animation-delay: 0.24s; }

.summary dt {
  font-family: var(--font-mono);
  font-size: 0.72rem;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  color: var(--khaki);
  min-width: 80px;
  padding-top: 0.15rem;
}

.summary dd {
  color: var(--text);
  font-size: 0.92rem;
  word-break: break-word;
}

.summary-msg {
  flex-direction: column;
  gap: 0.3rem;
}

/* Gezinme butonları */
.wizard-nav {
  display: flex;
  justify-content: space-between;
  gap: 0.75rem;
  margin-top: 2rem;
}

#wNext,
#wSubmit {
  margin-left: auto;
}

/* Gönder butonu — yükleniyor */
.submit-spinner {
  display: none;
  width: 16px;
  height: 16px;
  border: 2px solid rgba(28, 30, 18, 0.35);
  border-top-color: #1c1e12;
  border-radius: 50%;
  animation: spin 0.7s linear infinite;
}

@keyframes spin {
  to { transform: rotate(360deg); }
}

#wSubmit.loading {
  pointer-events: none;
  opacity: 0.85;
}

#wSubmit.loading .submit-spinner {
  display: inline-block;
}

/* Başarı ekranı */
.wizard-success {
  text-align: center;
  padding: 2rem 0 1rem;
  animation: fadeIn 0.5s ease;
}

.wizard-success h3 {
  font-size: 1.5rem;
  margin: 1.25rem 0 0.5rem;
}

.wizard-success p {
  color: var(--text-dim);
  max-width: 420px;
  margin: 0 auto 1.5rem;
}

.wizard-success a:not(.btn) {
  color: var(--khaki);
}

.check-svg {
  width: 84px;
  height: 84px;
}

.check-circle {
  stroke: var(--khaki);
  stroke-width: 2;
  stroke-dasharray: 151;
  stroke-dashoffset: 151;
  animation: drawCircle 0.7s cubic-bezier(0.65, 0, 0.45, 1) forwards;
  filter: drop-shadow(0 0 10px rgba(180, 189, 106, 0.5));
}

.check-path {
  stroke: var(--khaki);
  stroke-width: 3;
  stroke-linecap: round;
  stroke-linejoin: round;
  stroke-dasharray: 40;
  stroke-dashoffset: 40;
  animation: drawCheck 0.45s cubic-bezier(0.65, 0, 0.45, 1) 0.65s forwards;
}

@keyframes drawCircle {
  to { stroke-dashoffset: 0; }
}

@keyframes drawCheck {
  to { stroke-dashoffset: 0; }
}

@media (max-width: 560px) {
  .wizard {
    padding: 1.4rem;
  }

  .wp-step em {
    display: none;
  }

  .opt-grid {
    grid-template-columns: 1fr;
  }
}

/* --- Fiyatlandırma kartları --- */
.pricing-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1rem;
  margin-bottom: 3rem;
}

.price-card {
  border: 1px solid var(--line);
  border-radius: var(--radius);
  padding: 1.6rem;
  background: var(--panel);
  display: flex;
  flex-direction: column;
  transition: transform 0.25s ease, border-color 0.25s ease;
}

.price-card:hover {
  transform: translateY(-4px);
  border-color: rgba(180, 189, 106, 0.35);
}

.price-card.featured {
  border-color: var(--khaki);
  background: linear-gradient(180deg, var(--khaki-soft), var(--panel));
  box-shadow: 0 0 30px rgba(180, 189, 106, 0.12);
  position: relative;
}

.price-tag {
  font-size: 0.68rem;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--khaki);
  border: 1px solid rgba(180, 189, 106, 0.4);
  border-radius: 999px;
  padding: 0.2rem 0.7rem;
  align-self: flex-start;
  margin-bottom: 0.9rem;
}

.price-card h3 {
  font-size: 1.15rem;
  margin-bottom: 0.3rem;
}

.price-amount {
  font-family: var(--font-display);
  font-size: 1.9rem;
  font-weight: 600;
  color: var(--text);
  margin-bottom: 1rem;
}

.price-amount small {
  font-size: 0.45em;
  color: var(--text-dim);
  font-weight: 400;
}

.price-amount s {
  color: var(--text-dim);
  opacity: 0.7;
}

.price-card ul {
  list-style: none;
  margin-bottom: 1.5rem;
  flex: 1;
}

.price-card li {
  color: var(--text-dim);
  font-size: 0.88rem;
  padding: 0.3rem 0 0.3rem 1.4rem;
  position: relative;
}

.price-card li::before {
  content: "✓";
  position: absolute;
  left: 0;
  color: var(--khaki);
}

.price-card .btn {
  justify-content: center;
}

@media (max-width: 860px) {
  .pricing-grid {
    grid-template-columns: 1fr;
  }
}

/* Honeypot: ekranda ve erişilebilirlik ağacında görünmez */
.hp-check {
  position: absolute;
  left: -9999px;
  width: 1px;
  height: 1px;
  opacity: 0;
  overflow: hidden;
}

/* --- Footer --- */
.footer {
  position: relative;
  z-index: 2;
  max-width: var(--max);
  margin: 0 auto;
  padding: 2.5rem 1.25rem 2rem;
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 1rem;
  flex-wrap: wrap;
  font-size: 0.85rem;
  color: var(--text-dim);
  border-top: 1px solid var(--line);
}

.footer-note {
  color: var(--khaki);
}

/* --- Reveal --- */
.reveal {
  opacity: 0;
  transform: translateY(24px);
  transition: opacity 0.7s ease, transform 0.7s ease;
}

.reveal.visible {
  opacity: 1;
  transform: translateY(0);
}

/* --- Responsive --- */
@media (max-width: 860px) {
  .hero {
    grid-template-columns: 1fr;
    gap: 2rem;
    min-height: auto;
  }

  .feature-grid {
    grid-template-columns: 1fr;
  }

  .about-grid {
    grid-template-columns: 1fr;
  }

  .about-photo-wrap {
    max-width: 300px;
    margin: 0 auto;
  }

  .nav-links {
    gap: 0.9rem;
    font-size: 0.85rem;
  }
}

@media (max-width: 520px) {
  .nav-links a:not(.nav-cta) {
    display: none;
  }

  .intro-loader-label {
    min-width: auto;
  }
}

/* --- Reduced motion --- */
@media (prefers-reduced-motion: reduce) {
  *, *::before, *::after {
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: 0.01ms !important;
    scroll-behavior: auto !important;
  }
}
