@import url('https://fonts.googleapis.com/css2?family=Cormorant+Garamond:wght@500;600&family=Inter:wght@400;500;600&display=swap');

:root {
  --bg: #0b0c0d;
  --bg-raised: #141517;
  --ink: #e8e4dc;
  --ink-dim: #a6a19a;
  --accent: #b8925a;
  --border: #26282b;
  --font-display: 'Cormorant Garamond', serif;
  --font-sans: 'Inter', sans-serif;
}

* { box-sizing: border-box; margin: 0; padding: 0; }

body {
  background: var(--bg);
  color: var(--ink);
  font-family: var(--font-sans);
  line-height: 1.5;
}

h1, h2, h3 {
  font-family: var(--font-display);
  font-weight: 600;
  color: var(--ink);
}

a { color: var(--accent); text-decoration: none; }
a:hover { text-decoration: underline; }

.site-header, .site-footer {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 1.25rem 1.5rem;
}

.site-header .brand {
  font-family: var(--font-display);
  font-size: 1.4rem;
  letter-spacing: 0.05em;
  text-transform: lowercase;
}

.lang-switch {
  border: 1px solid var(--border);
  border-radius: 4px;
  padding: 0.25rem 0.6rem;
  font-size: 0.8rem;
  color: var(--ink-dim);
}

.hero {
  position: relative;
  min-height: 88vh;
  display: flex;
  align-items: flex-end;
  padding: 2rem 1.5rem 4rem;
  background: radial-gradient(circle at 30% 20%, #1a1a17 0%, #0b0c0d 70%);
  overflow: hidden;
}

.hero__overlay {
  position: absolute;
  inset: 0;
  background:
    linear-gradient(180deg, rgba(11,12,13,0) 0%, rgba(11,12,13,0.9) 100%),
    repeating-linear-gradient(115deg, rgba(184,146,90,0.03) 0px, rgba(184,146,90,0.03) 2px, transparent 2px, transparent 40px);
}

.hero__enso {
  position: absolute;
  top: 50%;
  right: -8%;
  transform: translateY(-50%);
  width: min(75vh, 560px);
  opacity: 0.28;
  pointer-events: none;
}

.hero__content {
  position: relative;
  z-index: 1;
  max-width: 640px;
}

.hero h1 {
  font-size: clamp(2rem, 6vw, 3.4rem);
  line-height: 1.1;
  margin-bottom: 1rem;
}

.hero__sub {
  color: var(--ink-dim);
  font-size: 1.05rem;
  max-width: 46ch;
  margin-bottom: 1rem;
}

.hero__disciplines {
  color: var(--accent);
  font-size: 0.85rem;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  margin-bottom: 2rem;
}

.waitlist-form__row {
  display: flex;
  gap: 0.6rem;
  flex-wrap: wrap;
}

.waitlist-form input[type="email"] {
  flex: 1 1 240px;
  background: var(--bg-raised);
  border: 1px solid var(--border);
  border-radius: 4px;
  padding: 0.85rem 1rem;
  color: var(--ink);
  font-size: 1rem;
}

.waitlist-form input[type="email"]::placeholder { color: var(--ink-dim); }

.waitlist-form button {
  background: var(--accent);
  color: #0b0c0d;
  border: none;
  border-radius: 4px;
  padding: 0.85rem 1.5rem;
  font-weight: 600;
  font-size: 1rem;
  cursor: pointer;
}

.waitlist-form button:hover { opacity: 0.9; }

.form-message-slot { min-height: 1.4rem; margin-top: 0.6rem; }
.form-message { font-size: 0.9rem; }
.form-message--success { color: #9bc27c; }
.form-message--error { color: #d97a6c; }

.problem, .solution, .devices, .social-proof, .cta2 {
  padding: 4rem 1.5rem;
  max-width: 960px;
  margin: 0 auto;
}

.problem h2, .solution h2, .devices h2, .cta2 h2 {
  font-size: 1.8rem;
  text-align: center;
  margin-bottom: 2.5rem;
}

.problem__grid, .solution__grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: 1.5rem;
}

.problem__card, .feature-card {
  background: var(--bg-raised);
  border: 1px solid var(--border);
  border-radius: 8px;
  padding: 1.5rem;
}

.problem__card h3, .feature-card h3 {
  font-size: 1.2rem;
  margin-bottom: 0.5rem;
}

.problem__card p, .feature-card p {
  color: var(--ink-dim);
  font-size: 0.95rem;
}

.social-proof {
  text-align: center;
}

.social-proof__line {
  font-family: var(--font-display);
  font-size: 1.4rem;
  margin-bottom: 0.75rem;
}

.social-proof__link { font-size: 0.95rem; }

.cta2 { text-align: center; }
.cta2 .waitlist-form { max-width: 480px; margin: 0 auto; }

.site-footer {
  border-top: 1px solid var(--border);
  color: var(--ink-dim);
  font-size: 0.85rem;
  flex-wrap: wrap;
  gap: 0.75rem;
}

@media (max-width: 480px) {
  .hero { min-height: 80vh; padding: 1.5rem 1.25rem 3rem; }
  .problem, .solution, .devices, .social-proof, .cta2 { padding: 3rem 1.25rem; }
}

/* --- App (Phase 1) --- */

.app-nav {
  display: flex;
  align-items: center;
  gap: 1rem;
  flex-wrap: wrap;
}

.app-nav a { color: var(--ink-dim); font-size: 0.9rem; }
.app-nav a:hover { color: var(--ink); text-decoration: none; }
.app-nav a.pro-active { color: var(--accent); }

.inline-form { display: inline; }

.link-button {
  background: none;
  border: none;
  color: var(--ink-dim);
  font-family: var(--font-sans);
  font-size: 0.9rem;
  cursor: pointer;
  padding: 0;
}
.link-button:hover { color: var(--ink); }

.app-main {
  max-width: 720px;
  margin: 0 auto;
  padding: 2rem 1.25rem 4rem;
  min-height: 70vh;
}

.app-main h1 { font-size: 1.8rem; margin-bottom: 1.5rem; }

.card {
  background: var(--bg-raised);
  border: 1px solid var(--border);
  border-radius: 8px;
  padding: 1.5rem;
  margin-bottom: 1.25rem;
  display: block;
}

.card h2 { font-size: 1.2rem; margin-bottom: 1rem; }
.card-label {
  font-size: 0.75rem;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  color: var(--ink-dim);
}

.card-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(220px, 1fr));
  gap: 1.25rem;
}

.card-grid .card { margin-bottom: 0; }
a.card:hover { border-color: var(--accent); text-decoration: none; }
a.card h3 { margin-bottom: 0.4rem; }

.muted { color: var(--ink-dim); font-size: 0.92rem; }

.badge {
  display: inline-block;
  font-size: 0.7rem;
  text-transform: uppercase;
  letter-spacing: 0.06em;
  border-radius: 3px;
  padding: 0.15rem 0.45rem;
  margin-bottom: 0.6rem;
}
.badge--free { background: #1d2b1a; color: #9bc27c; }
.badge--pro { background: #2b2214; color: var(--accent); }

.kata-discipline {
  display: inline-block;
  margin-top: 0.6rem;
  font-size: 0.8rem;
  color: var(--ink-dim);
}

.streak-block {
  text-align: center;
  padding: 2rem 0 2.5rem;
}

.streak-number {
  display: block;
  font-family: var(--font-display);
  font-size: 4.5rem;
  line-height: 1;
  color: var(--accent);
}

.streak-label {
  color: var(--ink-dim);
  font-size: 0.9rem;
  text-transform: uppercase;
  letter-spacing: 0.1em;
}

.practice-form label,
.auth-card label {
  display: block;
  margin-bottom: 0.9rem;
  font-size: 0.85rem;
  color: var(--ink-dim);
}

.practice-form input,
.practice-form select,
.auth-card input {
  display: block;
  width: 100%;
  margin-top: 0.3rem;
  background: var(--bg);
  border: 1px solid var(--border);
  border-radius: 4px;
  padding: 0.65rem 0.8rem;
  color: var(--ink);
  font-size: 1rem;
  font-family: var(--font-sans);
}

.practice-form__row {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(140px, 1fr));
  gap: 0.9rem;
}

.practice-form button,
.auth-card button,
.button {
  display: inline-block;
  background: var(--accent);
  color: #0b0c0d;
  border: none;
  border-radius: 4px;
  padding: 0.75rem 1.4rem;
  font-weight: 600;
  font-size: 0.95rem;
  font-family: var(--font-sans);
  cursor: pointer;
  margin-top: 0.4rem;
}
.button:hover { text-decoration: none; opacity: 0.9; }

.button--outline {
  background: transparent;
  color: var(--accent);
  border: 1px solid var(--accent);
}

.log-list { list-style: none; }
.log-list li {
  display: flex;
  gap: 0.9rem;
  flex-wrap: wrap;
  padding: 0.6rem 0;
  border-bottom: 1px solid var(--border);
  font-size: 0.9rem;
}
.log-list li:last-child { border-bottom: none; }
.log-date { color: var(--ink-dim); font-variant-numeric: tabular-nums; }
.log-minutes { color: var(--accent); }
.log-notes { color: var(--ink-dim); flex-basis: 100%; }

.auth-card {
  max-width: 400px;
  margin: 3rem auto;
  background: var(--bg-raised);
  border: 1px solid var(--border);
  border-radius: 8px;
  padding: 2rem;
}
.auth-card h1 { font-size: 1.6rem; margin-bottom: 1.2rem; }
.auth-alt { margin-top: 1.2rem; font-size: 0.9rem; color: var(--ink-dim); }

.billing-card { max-width: 480px; }
.billing-buttons { display: flex; gap: 0.8rem; flex-wrap: wrap; margin: 1.2rem 0; }

.upsell {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  flex-wrap: wrap;
}

.day-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(52px, 1fr));
  gap: 0.5rem;
  margin-top: 2rem;
}

.day-cell {
  display: flex;
  align-items: center;
  justify-content: center;
  aspect-ratio: 1;
  border-radius: 6px;
  border: 1px solid var(--border);
  font-variant-numeric: tabular-nums;
  font-size: 0.95rem;
}
.day-cell--done { background: #1d2b1a; color: #9bc27c; border-color: #2a3d25; }
.day-cell--current { border-color: var(--accent); color: var(--accent); }
.day-cell--locked { color: #4a4c50; }
a.day-cell:hover { text-decoration: none; border-color: var(--accent); }

.video-frame {
  position: relative;
  aspect-ratio: 16 / 9;
  margin: 1.5rem 0;
  border-radius: 8px;
  overflow: hidden;
  border: 1px solid var(--border);
}
.video-frame iframe {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  border: 0;
}

.video-placeholder {
  aspect-ratio: 16 / 9;
  margin: 1.5rem 0;
  border-radius: 8px;
  border: 1px dashed var(--border);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--ink-dim);
}

.program-banner .button { margin-top: 0.8rem; }
.day-content { margin: 1.2rem 0 1.6rem; line-height: 1.7; }
.program-day h1 { margin-top: 0.4rem; }

/* --- Kata sekmeleri --- */

.tabs {
  display: flex;
  gap: 0.5rem;
  flex-wrap: wrap;
  margin-bottom: 1.5rem;
}

.tab {
  border: 1px solid var(--border);
  border-radius: 999px;
  padding: 0.35rem 0.95rem;
  font-size: 0.85rem;
  color: var(--ink-dim);
}
.tab:hover { text-decoration: none; color: var(--ink); border-color: var(--accent); }
.tab--active { color: var(--accent); border-color: var(--accent); }

/* --- Profil & topluluk --- */

.profile-card textarea {
  display: block;
  width: 100%;
  margin-top: 0.3rem;
  background: var(--bg);
  border: 1px solid var(--border);
  border-radius: 4px;
  padding: 0.65rem 0.8rem;
  color: var(--ink);
  font-size: 1rem;
  font-family: var(--font-sans);
  resize: vertical;
}

.profile-card select,
.auth-card select {
  display: block;
  width: 100%;
  margin-top: 0.3rem;
  background: var(--bg);
  border: 1px solid var(--border);
  border-radius: 4px;
  padding: 0.65rem 0.8rem;
  color: var(--ink);
  font-size: 1rem;
  font-family: var(--font-sans);
}

.field-hint {
  display: block;
  margin-top: 0.3rem;
  font-size: 0.78rem;
  color: var(--ink-dim);
}

.checkbox-label {
  display: flex !important;
  align-items: center;
  gap: 0.6rem;
  color: var(--ink) !important;
  font-size: 0.95rem !important;
}
.checkbox-label input { width: auto !important; margin: 0 !important; }

.profile-page { max-width: 640px; margin: 0 auto; }
.profile-header h1 { margin-bottom: 0.2rem; }
.profile-header .muted { margin-bottom: 0.6rem; }
.profile-joined { display: inline-block; margin-left: 0.8rem; font-size: 0.85rem; }
.profile-bio { margin: 1.2rem 0; line-height: 1.7; }

.stats-row {
  display: flex;
  gap: 1rem;
  margin: 1.8rem 0;
}

.stat {
  flex: 1;
  background: var(--bg-raised);
  border: 1px solid var(--border);
  border-radius: 8px;
  padding: 1rem;
  text-align: center;
}

.stat-number {
  display: block;
  font-family: var(--font-display);
  font-size: 1.9rem;
  color: var(--accent);
  font-variant-numeric: tabular-nums;
}

.stat-label {
  font-size: 0.75rem;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  color: var(--ink-dim);
}

.heatmap {
  display: flex;
  gap: 3px;
  overflow-x: auto;
  /* tooltip hücrenin üstünde açılır; scroll kabı kesmesin diye üstten pay */
  padding: 2.4rem 0 0.4rem;
}

.hm-week { display: flex; flex-direction: column; gap: 3px; }

.hm-cell {
  position: relative;
  width: 13px;
  height: 13px;
  border-radius: 2px;
  background: #1a1c1e;
  flex-shrink: 0;
  outline: none;
}
.hm-1 { background: #33291a; }
.hm-2 { background: #5c4526; }
.hm-3 { background: #8a6a35; }
.hm-4 { background: var(--accent); }
.hm-future { background: transparent; }

.hm-cell[data-tip]:hover::after,
.hm-cell[data-tip]:focus::after {
  content: attr(data-tip);
  position: absolute;
  bottom: 18px;
  left: 50%;
  transform: translateX(-50%);
  background: #1c1e21;
  border: 1px solid var(--border);
  border-radius: 4px;
  padding: 0.3rem 0.55rem;
  font-size: 0.75rem;
  color: var(--ink);
  white-space: nowrap;
  z-index: 20;
  pointer-events: none;
}
.hm-cell[data-tip]:hover,
.hm-cell[data-tip]:focus { box-shadow: 0 0 0 1px var(--ink-dim); }
.hm-week:first-child .hm-cell::after { left: 0; transform: none; }
.hm-week:last-child .hm-cell::after { left: auto; right: 0; transform: none; }

.search-form {
  display: flex;
  gap: 0.6rem;
  margin: 1.5rem 0 2rem;
  max-width: 480px;
}

.search-form input {
  flex: 1;
  background: var(--bg-raised);
  border: 1px solid var(--border);
  border-radius: 4px;
  padding: 0.7rem 0.9rem;
  color: var(--ink);
  font-size: 1rem;
  font-family: var(--font-sans);
}

.search-form button {
  background: var(--accent);
  color: #0b0c0d;
  border: none;
  border-radius: 4px;
  padding: 0.7rem 1.3rem;
  font-weight: 600;
  font-family: var(--font-sans);
  cursor: pointer;
}

.person-bio { margin-top: 0.5rem; font-size: 0.85rem; }

.card-icon {
  width: 34px;
  height: 34px;
  color: var(--accent);
  fill: none;
  stroke: currentColor;
  stroke-width: 1.5;
  stroke-linecap: round;
  stroke-linejoin: round;
  margin-bottom: 0.9rem;
  display: block;
}

.footer-links {
  display: flex;
  gap: 1.2rem;
  flex-wrap: wrap;
}

/* --- Admin --- */

.admin-section { margin: 2rem 0 0.8rem; font-size: 1.3rem; }

.admin-row {
  display: flex;
  align-items: center;
  gap: 0.8rem;
  flex-wrap: wrap;
  padding: 0.6rem 0;
  border-bottom: 1px solid var(--border);
}

.admin-row__title {
  flex: 0 0 260px;
  font-size: 0.92rem;
}

.admin-row input[type="url"] {
  flex: 1 1 260px;
  background: var(--bg-raised);
  border: 1px solid var(--border);
  border-radius: 4px;
  padding: 0.5rem 0.7rem;
  color: var(--ink);
  font-size: 0.9rem;
  font-family: var(--font-sans);
}

.admin-row button {
  background: var(--accent);
  color: #0b0c0d;
  border: none;
  border-radius: 4px;
  padding: 0.5rem 1rem;
  font-weight: 600;
  cursor: pointer;
}

.admin-health {
  list-style: none;
  padding: 0;
  display: grid;
  gap: 0.5rem;
}

.admin-links {
  padding-left: 1.2rem;
}

.admin-links li {
  margin: 0.3rem 0;
}

.admin-table {
  width: 100%;
  border-collapse: collapse;
  margin: 1rem 0;
  font-size: 0.88rem;
}

.admin-table th,
.admin-table td {
  text-align: left;
  padding: 0.5rem 0.7rem;
  border-bottom: 1px solid var(--border);
}

/* --- Mobil menü --- */

.header-right {
  display: flex;
  align-items: center;
  gap: 0.75rem;
}

.nav-toggle {
  display: none;
  flex-direction: column;
  justify-content: center;
  gap: 4px;
  background: none;
  border: 1px solid var(--border);
  border-radius: 4px;
  padding: 9px 8px;
  cursor: pointer;
}

.nav-toggle span {
  display: block;
  width: 18px;
  height: 2px;
  background: var(--ink);
}

@media (max-width: 760px) {
  .site-header { position: relative; }

  .nav-toggle { display: flex; }

  .app-nav {
    display: none;
    position: absolute;
    top: 100%;
    left: 0;
    right: 0;
    flex-direction: column;
    align-items: flex-start;
    gap: 0;
    background: var(--bg-raised);
    border-top: 1px solid var(--border);
    border-bottom: 1px solid var(--border);
    padding: 0.5rem 1.5rem;
    z-index: 50;
  }

  .app-nav--open { display: flex; }

  .app-nav a,
  .app-nav .inline-form { width: 100%; }

  .app-nav a,
  .app-nav .link-button {
    display: block;
    padding: 0.8rem 0;
    font-size: 1rem;
    width: 100%;
    text-align: left;
  }

  .stats-row { gap: 0.6rem; }
  .stat { padding: 0.75rem 0.5rem; }
  .stat-number { font-size: 1.5rem; }

  .app-main { padding: 1.5rem 1rem 3rem; }
  .auth-card { margin: 1.5rem auto; padding: 1.5rem; }
}

/* ---- Cihaz mockup bölümü (telefon + bilgisayar) ---- */

.devices { text-align: center; }

.devices__sub {
  color: var(--ink-dim);
  max-width: 52ch;
  margin: 0 auto 2.5rem;
}

.devices__stage {
  display: flex;
  align-items: flex-end;
  justify-content: center;
  gap: 2.5rem;
  flex-wrap: wrap;
}

.device { margin: 0; }

.device__label {
  color: var(--ink-dim);
  font-size: 0.85rem;
  margin-top: 1rem;
}

.device__screen {
  background: var(--bg);
  border: 1px solid var(--border);
  overflow: hidden;
}

.device--laptop .device__screen {
  width: min(420px, 80vw);
  aspect-ratio: 16 / 10;
  border-radius: 8px 8px 0 0;
  border-bottom: none;
}

.device--laptop__base {
  height: 12px;
  width: calc(min(420px, 80vw) * 1.12);
  margin: 0 auto;
  background: var(--bg-raised);
  border: 1px solid var(--border);
  border-radius: 0 0 10px 10px;
}

.device--phone .device__screen {
  width: 150px;
  aspect-ratio: 9 / 18;
  border-radius: 20px;
  border-width: 4px;
  border-color: #1c1e21;
}

.mock-ui {
  height: 100%;
  display: flex;
  flex-direction: column;
  gap: 0.6rem;
  padding: 0.7rem 0.8rem;
  text-align: left;
}

.mock-ui__topbar {
  border-bottom: 1px solid var(--border);
  padding-bottom: 0.35rem;
}

.mock-ui__brand {
  font-family: var(--font-display);
  color: var(--accent);
  font-size: 0.8rem;
}

.mock-ui__streak { display: flex; align-items: baseline; gap: 0.4rem; }

.mock-ui__streak-num {
  font-family: var(--font-display);
  font-size: 1.6rem;
  color: var(--ink);
}

.mock-ui__streak-label {
  color: var(--ink-dim);
  font-size: 0.6rem;
}

.mock-ui__heatmap {
  display: grid;
  grid-template-columns: repeat(7, 1fr);
  gap: 3px;
}

.mock-ui__heatmap--wide { grid-template-columns: repeat(16, 1fr); }

.mock-ui__heatmap i {
  aspect-ratio: 1;
  border-radius: 2px;
  background: var(--accent);
  opacity: 0.15;
}

.mock-ui__heatmap i:nth-child(2n) { opacity: 0.45; }
.mock-ui__heatmap i:nth-child(3n) { opacity: 0.75; }
.mock-ui__heatmap i:nth-child(5n) { opacity: 0.3; }
.mock-ui__heatmap i:nth-child(7n) { opacity: 1; }

.mock-ui__rows { display: flex; flex-direction: column; gap: 5px; margin-top: auto; }

.mock-ui__rows i {
  height: 9px;
  border-radius: 3px;
  background: var(--bg-raised);
  border: 1px solid var(--border);
}

.mock-ui__rows i:first-child { width: 85%; }
.mock-ui__rows i:nth-child(2) { width: 70%; }
.mock-ui__rows i:last-child { width: 78%; }

.mock-ui__button {
  margin-top: auto;
  background: var(--accent);
  color: #0b0c0d;
  border-radius: 4px;
  text-align: center;
  font-size: 0.6rem;
  font-weight: 600;
  padding: 0.4rem 0.3rem;
}

.devices__note {
  color: var(--ink-dim);
  font-size: 0.9rem;
  margin-top: 2.5rem;
}

/* ---- Rozetler ---- */

.achievement-grid {
  display: flex;
  flex-wrap: wrap;
  gap: 0.75rem;
}

.achievement {
  display: flex;
  align-items: center;
  gap: 0.55rem;
  border: 1px solid var(--border);
  border-radius: 6px;
  padding: 0.5rem 0.8rem 0.5rem 0.55rem;
  background: var(--bg);
}

.achievement__num {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-width: 2rem;
  height: 2rem;
  padding: 0 0.3rem;
  border-radius: 50%;
  font-family: var(--font-display);
  font-size: 0.95rem;
  background: var(--accent);
  color: #0b0c0d;
}

.achievement--sessions .achievement__num {
  background: transparent;
  border: 1.5px solid var(--accent);
  color: var(--accent);
}

.achievement__label {
  font-size: 0.8rem;
  color: var(--ink);
  white-space: nowrap;
}

.achievement--locked { opacity: 0.35; }
.achievement--locked .achievement__num {
  background: var(--bg-raised);
  border: 1px solid var(--border);
  color: var(--ink-dim);
}

/* ---- Kuşaklar ---- */

.belt-hint { margin-bottom: 1rem; }

.belt-rack {
  display: flex;
  flex-wrap: wrap;
  gap: 1rem 1.25rem;
  margin-bottom: 1.25rem;
}

.belt {
  position: relative;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0.25rem;
  cursor: default;
  outline: none;
  transition: transform 0.25s ease;
}

.belt svg {
  width: 64px;
  height: 40px;
  overflow: visible;
}

.belt__band, .belt__knot, .belt__strap {
  stroke: #000;
  stroke-width: 1;
  transition: filter 0.25s ease;
}

.belt__label {
  font-size: 0.72rem;
  color: var(--ink-dim);
  white-space: nowrap;
}

/* Kuşak renkleri */
.belt--white  .belt__band, .belt--white  .belt__knot, .belt--white  .belt__strap { fill: #ede9df; }
.belt--yellow .belt__band, .belt--yellow .belt__knot, .belt--yellow .belt__strap { fill: #dcb63f; }
.belt--orange .belt__band, .belt--orange .belt__knot, .belt--orange .belt__strap { fill: #cd7c36; }
.belt--green  .belt__band, .belt--green  .belt__knot, .belt--green  .belt__strap { fill: #5c8a55; }
.belt--blue   .belt__band, .belt--blue   .belt__knot, .belt--blue   .belt__strap { fill: #47679c; }
.belt--brown  .belt__band, .belt--brown  .belt__knot, .belt--brown  .belt__strap { fill: #6f4a2a; }
.belt--black  .belt__band, .belt--black  .belt__knot, .belt--black  .belt__strap { fill: #191a1c; stroke: #3a3d42; }

/* Düğüm bandın önünde dursun diye hafif koyulaştır */
.belt__knot { filter: brightness(0.82); }

/* Kilitli kuşak: silüet */
.belt--locked .belt__band, .belt--locked .belt__knot, .belt--locked .belt__strap {
  fill: transparent;
  stroke: var(--border);
  stroke-dasharray: 3 2;
}
.belt--locked .belt__label { opacity: 0.5; }

/* Hover / focus: kalk, parla */
.belt:hover, .belt:focus-visible {
  transform: translateY(-6px);
}
.belt:hover svg, .belt:focus-visible svg { animation: belt-sway 0.5s ease; }
.belt:hover .belt__label, .belt:focus-visible .belt__label { color: var(--ink); }

@keyframes belt-sway {
  0%   { transform: rotate(0deg); }
  30%  { transform: rotate(-4deg); }
  60%  { transform: rotate(3deg); }
  100% { transform: rotate(0deg); }
}

/* Kazanılmış siyah kuşak: altın ışıltı — hedefin kendisi */
.belt--black:not(.belt--locked) svg {
  filter: drop-shadow(0 0 6px rgba(184, 146, 90, 0.55));
}

/* ---- Tooltip (kuşak + rozet ortak) ---- */

[data-tip] { position: relative; }

[data-tip]::after {
  content: attr(data-tip);
  position: absolute;
  bottom: calc(100% + 8px);
  left: 50%;
  transform: translateX(-50%) translateY(4px);
  background: var(--bg-raised);
  border: 1px solid var(--accent);
  border-radius: 4px;
  color: var(--ink);
  font-size: 0.72rem;
  line-height: 1.3;
  padding: 0.35rem 0.6rem;
  white-space: nowrap;
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.2s ease, transform 0.2s ease;
  z-index: 10;
}

[data-tip]:hover::after, [data-tip]:focus-visible::after {
  opacity: 1;
  transform: translateX(-50%) translateY(0);
}

/* Rozet çipleri de hover'da tepki versin */
.achievement {
  cursor: default;
  outline: none;
  transition: transform 0.2s ease, border-color 0.2s ease;
}
.achievement:hover, .achievement:focus-visible {
  transform: translateY(-3px);
  border-color: var(--accent);
}

@media (prefers-reduced-motion: reduce) {
  .belt, .achievement, [data-tip]::after { transition: none; }
  .belt:hover svg { animation: none; }
}

/* Topluluk kartındaki mini kuşak */
.belt--mini {
  flex-direction: row;
  gap: 0.45rem;
  margin-top: 0.6rem;
}
.belt--mini svg { width: 40px; height: 25px; }
.belt--mini .belt__label { font-size: 0.78rem; }
.belt--mini:hover, .belt--mini:focus-visible { transform: translateY(-3px); }

/* ---- Hesap ayarları / hukuki sayfalar ---- */

.section-divider {
  border: none;
  border-top: 1px solid var(--border);
  margin: 2rem 0;
}

.auth-card h2 { font-size: 1.2rem; margin-bottom: 1rem; }

.danger-title { color: #d97a6c; }

.danger-button {
  background: transparent;
  border: 1px solid #d97a6c;
  color: #d97a6c;
  border-radius: 4px;
  padding: 0.65rem 1.2rem;
  font-size: 0.95rem;
  cursor: pointer;
}
.danger-button:hover { background: #d97a6c; color: #0b0c0d; }

.legal-page {
  max-width: 680px;
  margin: 0 auto;
  padding: 2rem 1.25rem 4rem;
}
.legal-page h1 { font-size: 1.8rem; margin-bottom: 0.5rem; }
.legal-page h2 { font-size: 1.15rem; margin: 1.75rem 0 0.5rem; }
.legal-page p, .legal-page li { color: var(--ink-dim); font-size: 0.95rem; }
.legal-page ul { padding-left: 1.25rem; margin: 0.5rem 0; }

/* E-posta doğrulama banner'ı */
.verify-banner {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 1rem;
  flex-wrap: wrap;
  background: #2b2214;
  color: var(--accent);
  font-size: 0.85rem;
  padding: 0.5rem 1rem;
  border-bottom: 1px solid var(--border);
}
.verify-banner .link-button { color: var(--accent); text-decoration: underline; font-size: 0.85rem; }

/* Haftalık özet + kata hızlı kayıt */
.week-stats { display: flex; gap: 2rem; flex-wrap: wrap; }
.week-stats .stat-number { font-size: 2rem; }
.stat-number--text { font-size: 1.2rem !important; line-height: 2.4rem; }
.week-compare { margin-top: 0.75rem; font-size: 0.85rem; }

.kata-log-card { margin-top: 1.5rem; }
.kata-log-form { display: flex; align-items: flex-end; gap: 1rem; flex-wrap: wrap; }
.kata-log-form label { font-size: 0.85rem; color: var(--ink-dim); }
.kata-log-form input {
  display: block; width: 90px; margin-top: 0.3rem;
  background: var(--bg); border: 1px solid var(--border); border-radius: 4px;
  padding: 0.55rem 0.7rem; color: var(--ink); font-size: 1rem;
}
.kata-log-form button {
  background: var(--accent); color: #0b0c0d; border: none; border-radius: 4px;
  padding: 0.65rem 1.2rem; font-weight: 600; cursor: pointer;
}

/* ---- Branş rehberi ---- */

.guide-page { max-width: 760px; margin: 0 auto; }
.guide-breadcrumb { font-size: 0.85rem; margin-bottom: 0.5rem; }
.guide-intro { color: var(--ink-dim); margin: 0.75rem 0 1.5rem; line-height: 1.65; }
.guide-section-title {
  font-size: 1.4rem;
  margin: 2.25rem 0 1rem;
  padding-bottom: 0.4rem;
  border-bottom: 1px solid var(--border);
}
.guide-item__head {
  display: flex;
  align-items: baseline;
  justify-content: space-between;
  gap: 1rem;
  flex-wrap: wrap;
}
.guide-item__head h3 { margin-bottom: 0.25rem; }
.guide-jp { color: var(--ink-dim); font-size: 0.9rem; font-weight: 400; margin-left: 0.3rem; }
.guide-item__body { display: flex; gap: 1.25rem; align-items: flex-start; }
.guide-item__text { flex: 1; }
.guide-item__text p { color: var(--ink-dim); font-size: 0.95rem; }
.guide-diagram {
  width: 130px;
  flex-shrink: 0;
  background: var(--bg);
  border: 1px solid var(--border);
  border-radius: 6px;
}
.guide-steps { margin-top: 0.75rem; }
.guide-steps summary {
  cursor: pointer;
  color: var(--accent);
  font-size: 0.9rem;
}
.guide-steps ol { margin: 0.75rem 0 0 1.25rem; color: var(--ink-dim); font-size: 0.92rem; }
.guide-steps li { margin-bottom: 0.35rem; }
.guide-techlist dt { color: var(--ink); font-weight: 600; font-size: 0.95rem; margin-top: 0.9rem; }
.guide-techlist dd { color: var(--ink-dim); font-size: 0.92rem; margin: 0.2rem 0 0 0; }
.guide-cta { text-align: center; margin-top: 2rem; }
.guide-cta p { color: var(--ink-dim); margin-bottom: 1rem; }

@media (max-width: 540px) {
  .guide-item__body { flex-direction: column; }
  .guide-diagram { width: 160px; align-self: center; }
}

/* ---- Hareket / canlılık ---- */

/* Scroll'da belirme */
.reveal { opacity: 0; transform: translateY(20px); transition: opacity 0.6s ease, transform 0.6s ease; }
.reveal--in { opacity: 1; transform: none; }

/* Enso açılışta fırçayla çizilir */
.hero__enso circle {
  stroke-dashoffset: 1010;
  animation: enso-draw 2s ease-out 0.3s forwards;
}
.hero__enso line {
  opacity: 0;
  animation: enso-line 0.7s ease 2.1s forwards;
}
@keyframes enso-draw { to { stroke-dashoffset: 0; } }
@keyframes enso-line { to { opacity: 0.55; } }

/* Hero metni alttan süzülür */
.hero__content > * {
  opacity: 0;
  animation: rise-in 0.7s ease forwards;
}
.hero__content h1 { animation-delay: 0.15s; }
.hero__content .hero__sub { animation-delay: 0.35s; }
.hero__content .hero__disciplines { animation-delay: 0.55s; }
.hero__content .waitlist-form { animation-delay: 0.75s; }
@keyframes rise-in { from { opacity: 0; transform: translateY(16px); } to { opacity: 1; transform: none; } }

/* Seri sayısı "kiai" ile gelir */
.streak-number { animation: pop-in 0.55s cubic-bezier(0.2, 1.6, 0.4, 1) both; }
@keyframes pop-in { from { opacity: 0; transform: scale(0.6); } to { opacity: 1; transform: scale(1); } }

/* Bölüm başlıklarında fırça çizgisi */
.problem h2, .solution h2, .devices h2, .cta2 h2, .guide-section-title {
  position: relative;
}
.problem h2::after, .solution h2::after, .devices h2::after, .cta2 h2::after {
  content: "";
  display: block;
  width: 56px;
  height: 3px;
  margin: 0.6rem auto 0;
  border-radius: 2px;
  background: linear-gradient(90deg, transparent, var(--accent), transparent);
}

/* Kartlar nefes alır */
.problem__card, .feature-card {
  transition: transform 0.25s ease, border-color 0.25s ease, box-shadow 0.25s ease;
}
.problem__card:hover, .feature-card:hover {
  transform: translateY(-4px);
  border-color: var(--accent);
  box-shadow: 0 8px 28px rgba(184, 146, 90, 0.12);
}
a.card { transition: transform 0.22s ease, border-color 0.22s ease, box-shadow 0.22s ease; }
a.card:hover { transform: translateY(-3px); box-shadow: 0 6px 22px rgba(184, 146, 90, 0.1); }

/* Butonlarda ışıma */
.waitlist-form button, .button, .kata-log-form button {
  transition: box-shadow 0.25s ease, opacity 0.2s ease, transform 0.15s ease;
}
.waitlist-form button:hover, .button:hover, .kata-log-form button:hover {
  box-shadow: 0 0 18px rgba(184, 146, 90, 0.45);
}
.waitlist-form button:active, .button:active { transform: scale(0.97); }

/* Marka nefesi */
.brand { transition: text-shadow 0.3s ease; }
.brand:hover { text-shadow: 0 0 14px rgba(184, 146, 90, 0.6); }

/* Isı haritası hücreleri dalga gibi dolar (yalnız ilk boyama) */
@media (prefers-reduced-motion: no-preference) {
  .heatmap i, .heatmap td { animation: cell-in 0.4s ease both; }
}
@keyframes cell-in { from { opacity: 0; } to { opacity: 1; } }

@media (prefers-reduced-motion: reduce) {
  .hero__enso circle, .hero__enso line, .hero__content > *, .streak-number { animation: none; opacity: 1; }
  .hero__enso circle { stroke-dashoffset: 0; }
  .hero__enso line { opacity: 0.55; }
}

/* ---- Rehber okunabilirlik ---- */
.guide-toc {
  display: flex;
  gap: 0.75rem;
  flex-wrap: wrap;
  margin-bottom: 1.5rem;
}
.guide-toc a {
  border: 1px solid var(--border);
  border-radius: 999px;
  padding: 0.35rem 0.9rem;
  font-size: 0.85rem;
  color: var(--ink-dim);
  transition: border-color 0.2s ease, color 0.2s ease;
}
.guide-toc a:hover { border-color: var(--accent); color: var(--accent); text-decoration: none; }

.guide-program { border-left: 3px solid var(--accent); }
.guide-program ol { margin: 0.5rem 0 0 1.25rem; color: var(--ink-dim); font-size: 0.95rem; }
.guide-program li { margin-bottom: 0.5rem; }

.guide-todo-note {
  margin-top: 0.75rem;
  font-size: 0.85rem;
  color: var(--accent);
  border: 1px dashed var(--border);
  border-radius: 6px;
  padding: 0.5rem 0.75rem;
}

/* Takip butonu + akış */
.follow-form { margin-top: 0.9rem; }
.follow-button {
  background: var(--accent);
  color: #0b0c0d;
  border: 1px solid var(--accent);
  border-radius: 4px;
  padding: 0.5rem 1.2rem;
  font-weight: 600;
  font-size: 0.9rem;
  cursor: pointer;
  transition: box-shadow 0.25s ease, background 0.2s ease, color 0.2s ease;
}
.follow-button:hover { box-shadow: 0 0 14px rgba(184, 146, 90, 0.45); }
.follow-button--active { background: transparent; color: var(--accent); }
.feed-card .log-list a { font-weight: 600; }

/* ---- Canlılık turu 2: korlar, kanji, parlama ---- */

/* Hero'da süzülen kor tanecikleri (mürekkep/tütsü hissi) */
.hero__embers { position: absolute; inset: 0; overflow: hidden; pointer-events: none; }
.hero__embers i {
  position: absolute;
  bottom: -12px;
  width: 5px;
  height: 5px;
  border-radius: 50%;
  background: var(--accent);
  filter: blur(1px);
  opacity: 0;
  animation: ember-rise linear infinite;
}
.hero__embers i:nth-child(1) { left: 8%;  animation-duration: 11s; animation-delay: 0s; }
.hero__embers i:nth-child(2) { left: 22%; animation-duration: 14s; animation-delay: 3s; width: 3px; height: 3px; }
.hero__embers i:nth-child(3) { left: 37%; animation-duration: 12s; animation-delay: 6s; }
.hero__embers i:nth-child(4) { left: 51%; animation-duration: 16s; animation-delay: 1.5s; width: 4px; height: 4px; }
.hero__embers i:nth-child(5) { left: 64%; animation-duration: 10s; animation-delay: 4.5s; width: 3px; height: 3px; }
.hero__embers i:nth-child(6) { left: 76%; animation-duration: 15s; animation-delay: 8s; }
.hero__embers i:nth-child(7) { left: 87%; animation-duration: 13s; animation-delay: 2s; width: 4px; height: 4px; }
.hero__embers i:nth-child(8) { left: 94%; animation-duration: 17s; animation-delay: 5.5s; width: 3px; height: 3px; }

@keyframes ember-rise {
  0%   { transform: translateY(0) translateX(0); opacity: 0; }
  8%   { opacity: 0.7; }
  50%  { transform: translateY(-46vh) translateX(14px); opacity: 0.45; }
  100% { transform: translateY(-92vh) translateX(-10px); opacity: 0; }
}

/* "Yol" — solution bölümünde dev fırça kanjisi */
.solution { position: relative; overflow: hidden; }
.solution__kanji {
  position: absolute;
  top: 50%;
  right: -1rem;
  transform: translateY(-50%) rotate(6deg);
  font-family: var(--font-display);
  font-size: 17rem;
  line-height: 1;
  color: var(--accent);
  opacity: 0.05;
  pointer-events: none;
  user-select: none;
}

/* CTA butonlarında parlayan süpürme (anime "sheen") */
.waitlist-form button, .button {
  position: relative;
  overflow: hidden;
}
.waitlist-form button::after, .button::after {
  content: "";
  position: absolute;
  top: 0;
  left: -80%;
  width: 45%;
  height: 100%;
  background: linear-gradient(105deg, transparent, rgba(255, 255, 255, 0.35), transparent);
  transform: skewX(-20deg);
  transition: left 0.55s ease;
}
.waitlist-form button:hover::after, .button:hover::after { left: 130%; }

/* Kart ikonları hover'da hafif canlanır */
.problem__card .card-icon, .feature-card .card-icon { transition: transform 0.3s ease; }
.problem__card:hover .card-icon, .feature-card:hover .card-icon {
  transform: translateY(-3px) rotate(-4deg) scale(1.08);
}

/* Form başarı mesajı sevinçle gelir */
.form-message--success { animation: pop-in 0.45s cubic-bezier(0.2, 1.6, 0.4, 1) both; }

@media (prefers-reduced-motion: reduce) {
  .hero__embers { display: none; }
  .waitlist-form button::after, .button::after { display: none; }
  .form-message--success { animation: none; }
}

/* ---- Blog ---- */

.blog-head {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  gap: 1rem;
  flex-wrap: wrap;
  margin-bottom: 1.25rem;
}
.blog-head h1 { margin-bottom: 0.35rem; }

.blog-filters { margin: 1rem 0 1.5rem; }
.blog-filter--active { border-color: var(--accent) !important; color: var(--accent) !important; }

.post-list { display: flex; flex-direction: column; gap: 1rem; }
.post-card h3 { font-size: 1.3rem; margin-bottom: 0.4rem; }
.post-excerpt { font-size: 0.95rem; }
.post-meta { color: var(--ink-dim); font-size: 0.85rem; margin-top: 0.6rem; }
.post-discipline { color: var(--accent); }

.blog-post { max-width: 680px; margin: 0 auto; }
.blog-post h1 { font-size: 2.2rem; line-height: 1.15; margin: 0.5rem 0; }
.post-body { margin-top: 1.5rem; }
.post-body p {
  color: var(--ink);
  font-size: 1.05rem;
  line-height: 1.75;
  margin-bottom: 1.1rem;
}
.post-actions { display: flex; gap: 1rem; align-items: center; margin-top: 2rem; }
.blog-form-card { max-width: 680px; }
.blog-form-card textarea { font-size: 1rem; line-height: 1.6; }

/* ---- Masaüstü: mobil kadar canlı ---- */
.hero__vertical { display: none; }

@media (min-width: 900px) {
  /* Hero: dikeyde ortala, tipografiyi büyüt, nefes aç */
  .hero { align-items: center; padding: 2rem 6vw 4rem; }
  .hero h1 { font-size: clamp(3.4rem, 4.6vw, 5rem); }
  .hero__sub { font-size: 1.2rem; max-width: 52ch; }
  .hero__content { max-width: 720px; }
  .hero__enso { right: 2%; opacity: 0.34; }

  /* Dikey "keiko" yazısı — dojo tabelası hissi */
  .hero__vertical {
    display: block;
    position: absolute;
    top: 50%;
    left: 2.2vw;
    transform: translateY(-50%);
    writing-mode: vertical-rl;
    letter-spacing: 0.5em;
    font-size: 0.85rem;
    color: var(--accent);
    opacity: 0.45;
    border-left: 1px solid rgba(184, 146, 90, 0.25);
    padding-left: 0.9rem;
    pointer-events: none;
  }

  /* Bölümler geniş ekranda dar şerit gibi durmasın */
  .problem, .solution, .devices, .social-proof, .cta2 { max-width: 1100px; padding: 5rem 2rem; }
  .problem h2, .solution h2, .devices h2, .cta2 h2 { font-size: 2.2rem; }
  .problem__grid, .solution__grid { gap: 2rem; }
  .problem__card, .feature-card { padding: 2rem; }
  .solution__kanji { font-size: 24rem; right: 0; }
  .devices__stage { gap: 4rem; }
  .device--laptop .device__screen { width: 520px; }
  .device--phone .device__screen { width: 175px; }
  .social-proof__line { font-size: 1.7rem; }

  /* Korlar geniş ekranda biraz daha belirgin */
  .hero__embers i { filter: blur(0.5px); }

  /* App tarafı da genişlesin */
  .app-main { max-width: 840px; }
}

/* Markdown editör + biçimli gövde */
.md-editor { margin-bottom: 0.9rem; }
.editor-label { display: block; font-size: 0.85rem; color: var(--ink-dim); margin-bottom: 0.4rem; }
.md-toolbar {
  display: flex;
  gap: 0.25rem;
  background: var(--bg);
  border: 1px solid var(--border);
  border-bottom: none;
  border-radius: 4px 4px 0 0;
  padding: 0.35rem;
}
.md-toolbar button {
  background: transparent;
  border: 1px solid transparent;
  border-radius: 3px;
  color: var(--ink-dim);
  min-width: 2rem;
  padding: 0.25rem 0.45rem;
  font-size: 0.9rem;
  cursor: pointer;
}
.md-toolbar button:hover { color: var(--accent); border-color: var(--border); background: var(--bg-raised); }
.md-editor textarea {
  display: block; width: 100%;
  border-radius: 0 0 4px 4px !important;
  margin-top: 0 !important;
  background: var(--bg);
  border: 1px solid var(--border);
  padding: 0.75rem 0.9rem;
  color: var(--ink);
  font-size: 1rem;
  line-height: 1.6;
  font-family: var(--font-sans);
}

.post-body h2 { font-size: 1.4rem; margin: 1.75rem 0 0.6rem; }
.post-body h3 { font-size: 1.15rem; margin: 1.4rem 0 0.5rem; }
.post-body ul, .post-body ol { margin: 0 0 1.1rem 1.4rem; color: var(--ink); }
.post-body li { margin-bottom: 0.4rem; line-height: 1.65; }
.post-body blockquote {
  border-left: 3px solid var(--accent);
  padding: 0.35rem 0 0.35rem 1rem;
  margin: 0 0 1.1rem;
  color: var(--ink-dim);
  font-style: italic;
}
.post-body code {
  background: var(--bg);
  border: 1px solid var(--border);
  border-radius: 3px;
  padding: 0.1rem 0.35rem;
  font-size: 0.9em;
}
.post-body hr { border: none; border-top: 1px solid var(--border); margin: 1.5rem 0; }

/* Donma hakkı + haftanın enleri */
.freeze-note {
  display: block;
  margin-top: 0.5rem;
  font-size: 0.78rem;
  color: var(--ink-dim);
  cursor: default;
}
.leaders-card { border-left: 3px solid var(--accent); }
.leaders-list { list-style: none; }
.leaders-list li {
  display: flex;
  align-items: baseline;
  gap: 0.6rem;
  padding: 0.45rem 0;
  border-bottom: 1px solid var(--border);
  font-size: 0.95rem;
}
.leaders-list li:last-child { border-bottom: none; }
.leaders-discipline {
  min-width: 9rem;
  color: var(--accent);
  font-size: 0.85rem;
  text-transform: uppercase;
  letter-spacing: 0.05em;
}
.leaders-minutes { margin-left: auto; color: var(--ink-dim); font-size: 0.85rem; }

/* Kata/Teknik sekmesi + admin alt başlık */
.kind-tabs { margin-top: 0.75rem; }
.kata-kind-badge { margin-left: 0.6rem; }
.kata-empty-note {
  margin-top: 1.5rem;
  padding: 1rem 1.25rem;
  border: 1px dashed var(--border);
  border-radius: 8px;
}
.admin-subsection {
  font-size: 0.95rem;
  color: var(--ink-dim);
  margin: 1rem 0 0.5rem;
}

.guide-tips ul { margin: 0 0 0 1.25rem; color: var(--ink-dim); font-size: 0.95rem; }
.guide-tips li { margin-bottom: 0.7rem; line-height: 1.6; }

/* Waitlist: sıra numarası + davet linki */
.form-position {
  font-size: 0.85rem;
  color: var(--accent);
  margin-top: 0.4rem;
}
.form-referral-label {
  font-size: 0.8rem;
  color: var(--ink-dim);
  margin-top: 0.6rem;
}
.form-referral-input {
  width: 100%;
  margin-top: 0.3rem;
  background: var(--bg);
  border: 1px solid var(--border);
  border-radius: 4px;
  padding: 0.5rem 0.7rem;
  color: var(--ink);
  font-size: 0.85rem;
  cursor: pointer;
}

.longest-streak-note {
  display: block;
  margin-top: 0.35rem;
  font-size: 0.78rem;
  color: var(--accent);
}

.kata-repeat-count {
  font-size: 0.85rem;
  color: var(--accent);
  margin-bottom: 0.75rem;
}

/* Push bildirim butonu */
.push-card { text-align: center; }
.push-btn {
  background: var(--accent);
  color: #0b0c0d;
  border: none;
  border-radius: 4px;
  padding: 0.65rem 1.3rem;
  font-weight: 600;
  font-size: 0.95rem;
  cursor: pointer;
}
.push-btn--active { background: transparent; border: 1px solid var(--accent); color: var(--accent); }
.push-btn:disabled { opacity: 0.6; cursor: default; }
.push-card .field-hint { margin-top: 0.6rem; }
.push-status:empty { display: none; }
.push-status { color: var(--accent); }

/* ---- Avatar ---- */
.profile-avatar {
  border-radius: 50%;
  border: 2px solid var(--border);
  flex-shrink: 0;
}
.profile-header {
  display: flex;
  gap: 1.25rem;
  align-items: flex-start;
}
.profile-header__text { flex: 1; min-width: 0; }
.person-card__avatar {
  border-radius: 50%;
  border: 2px solid var(--border);
  margin-bottom: 0.6rem;
  display: block;
}
.author-avatar {
  border-radius: 50%;
  vertical-align: middle;
  margin-right: 0.35rem;
}

/* ---- Paylaşım: kompakt, satır içi ---- */
.profile-actions {
  display: flex;
  align-items: center;
  gap: 0.6rem;
  flex-wrap: wrap;
  margin-top: 0.75rem;
}
.streak-share {
  display: flex;
  justify-content: center;
  gap: 0.6rem;
  margin-top: 0.9rem;
}
.streak-share-hint { margin-top: 0.6rem; font-size: 0.82rem; }

/* Kompakt ikon butonlar: paylaş + indir (site genelinde tek görünüm) */
.share-controls { display: inline-flex; align-items: center; gap: 0.5rem; }
.share-inline { position: relative; display: inline-flex; }
.icon-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 38px;
  height: 38px;
  border-radius: 50%;
  border: 1px solid var(--border);
  background: transparent;
  cursor: pointer;
  transition: border-color 0.2s ease, box-shadow 0.2s ease;
}
.icon-btn:hover {
  border-color: var(--accent);
  box-shadow: 0 0 12px rgba(184, 146, 90, 0.35);
  text-decoration: none;
}
.icon-btn__svg {
  width: 18px;
  height: 18px;
  fill: none;
  stroke: var(--ink-dim);
  stroke-width: 1.6;
  stroke-linecap: round;
  stroke-linejoin: round;
  transition: stroke 0.2s ease;
}
.icon-btn:hover .icon-btn__svg { stroke: var(--accent); }
.icon-btn .icon-btn__svg circle { fill: var(--ink-dim); stroke: none; }
.icon-btn:hover .icon-btn__svg circle { fill: var(--accent); }

.share-menu {
  display: none;
  flex-direction: column;
  gap: 0.4rem;
  position: absolute;
  top: 100%;
  left: 0;
  margin-top: 0.5rem;
  background: var(--bg-raised);
  border: 1px solid var(--border);
  border-radius: 8px;
  padding: 0.6rem 0.9rem;
  z-index: 20;
  min-width: 150px;
}
.share-menu--open { display: flex; }
.share-menu a { font-size: 0.85rem; color: var(--ink); text-align: left; }
.share-menu a:hover { color: var(--accent); }

@media (max-width: 480px) {
  .profile-header { flex-direction: column; align-items: center; text-align: center; }
}

/* Takipçiler / Takip edilenler */
.follow-lists {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1.5rem;
}
.follow-list-col h2 { font-size: 1.05rem; margin-bottom: 0.75rem; }
.follow-avatars { display: flex; flex-wrap: wrap; gap: 0.5rem; }
.follow-avatar-item {
  display: block;
  border-radius: 50%;
  transition: transform 0.15s ease;
}
.follow-avatar-item:hover { transform: translateY(-2px); }
.follow-avatar-item img { border-radius: 50%; border: 1px solid var(--border); display: block; }

@media (max-width: 560px) {
  .follow-lists { grid-template-columns: 1fr; }
}
