/* Muhatapp web — tema uygulama ile uyumlu (#0E0E0E, #00FF85) */
:root {
  --bg: #0e0e0e;
  --bg-elevated: #1a1a1a;
  --surface: #141414;
  --text: #ffffff;
  --muted: #adaaaa;
  --accent: #00ff85;
  --accent-dim: rgba(0, 255, 133, 0.12);
  --border: rgba(255, 255, 255, 0.08);
  --radius: 16px;
  --radius-sm: 12px;
  --font-display: 'Manrope', system-ui, sans-serif;
  --font-body: 'Inter', system-ui, sans-serif;
  --max: 1100px;
}

*,
*::before,
*::after {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  min-height: 100vh;
  font-family: var(--font-body);
  font-size: 16px;
  line-height: 1.6;
  color: var(--text);
  background: var(--bg);
  -webkit-font-smoothing: antialiased;
}

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

a:hover {
  text-decoration: underline;
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 50;
  background: rgba(14, 14, 14, 0.85);
  backdrop-filter: blur(12px);
  border-bottom: 1px solid var(--border);
}

.site-header__inner {
  max-width: var(--max);
  margin: 0 auto;
  padding: 14px 24px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  flex-wrap: wrap;
}

.logo {
  font-family: var(--font-display);
  font-weight: 800;
  font-size: 1.25rem;
  color: var(--text);
  letter-spacing: -0.02em;
}

.logo:hover {
  text-decoration: none;
  color: var(--accent);
}

.site-nav {
  display: flex;
  align-items: center;
  gap: 8px 20px;
  flex-wrap: wrap;
}

.site-nav__legal {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  column-gap: 1rem;
  row-gap: 0.35rem;
}

.site-nav a {
  color: var(--muted);
  font-size: 0.9rem;
  font-weight: 500;
}

.site-nav a:hover,
.site-nav a.is-current {
  color: var(--text);
  text-decoration: none;
}

.lang-switch {
  display: inline-flex;
  border: 1px solid var(--border);
  border-radius: 999px;
  overflow: hidden;
  background: var(--surface);
}

.lang-switch button {
  font-family: var(--font-body);
  font-size: 0.75rem;
  font-weight: 600;
  padding: 8px 14px;
  border: none;
  background: transparent;
  color: var(--muted);
  cursor: pointer;
  letter-spacing: 0.04em;
}

.lang-switch button.is-active {
  background: var(--accent-dim);
  color: var(--accent);
}

.lang-switch button:focus-visible {
  outline: 2px solid var(--accent);
  outline-offset: 2px;
}

/* Dil blokları: [hidden] bazı ortamlarda yalnız attribute olarak kalırsa yine gizlensin */
.lang-tr[hidden],
.lang-en[hidden] {
  display: none !important;
}

main {
  max-width: var(--max);
  margin: 0 auto;
  padding: 0 24px 80px;
}

.hero {
  padding: 72px 0 56px;
  position: relative;
}

.hero__glow {
  position: absolute;
  width: 420px;
  height: 420px;
  top: -120px;
  right: -80px;
  background: radial-gradient(circle, rgba(0, 255, 133, 0.14) 0%, transparent 70%);
  pointer-events: none;
  z-index: 0;
}

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

.hero h1 {
  font-family: var(--font-display);
  font-size: clamp(2rem, 5vw, 2.75rem);
  font-weight: 800;
  line-height: 1.15;
  letter-spacing: -0.03em;
  margin: 0 0 20px;
}

.hero h1 .accent {
  color: var(--accent);
  display: block;
}

.hero__lead {
  font-size: 1.1rem;
  color: var(--muted);
  margin: 0 0 32px;
  line-height: 1.65;
}

.btn-play {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  padding: 14px 24px;
  background: var(--accent);
  color: #003d1f;
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 0.95rem;
  border-radius: var(--radius-sm);
  border: none;
  cursor: pointer;
  text-decoration: none;
  transition: transform 0.15s ease, box-shadow 0.15s ease;
  box-shadow: 0 0 0 0 rgba(0, 255, 133, 0.4);
}

.btn-play:hover {
  text-decoration: none;
  transform: translateY(-1px);
  box-shadow: 0 8px 28px rgba(0, 255, 133, 0.25);
}

.btn-play svg {
  flex-shrink: 0;
}

.features {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
  gap: 20px;
  margin-top: 56px;
}

.feature-card {
  background: var(--bg-elevated);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 28px;
  transition: border-color 0.2s ease;
}

.feature-card:hover {
  border-color: rgba(0, 255, 133, 0.25);
}

.feature-card__icon {
  width: 44px;
  height: 44px;
  border-radius: 12px;
  background: var(--accent-dim);
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 16px;
  color: var(--accent);
}

.feature-card h2 {
  font-family: var(--font-display);
  font-size: 1.1rem;
  font-weight: 700;
  margin: 0 0 10px;
}

.feature-card p {
  margin: 0;
  font-size: 0.95rem;
  color: var(--muted);
  line-height: 1.6;
}

.legal-page {
  padding: 40px 0 60px;
}

.legal-page h1 {
  font-family: var(--font-display);
  font-size: 1.75rem;
  font-weight: 800;
  margin: 0 0 8px;
  letter-spacing: -0.02em;
}

.legal-updated {
  font-size: 0.9rem;
  color: var(--muted);
  margin: 0 0 32px;
}

.legal-body section {
  margin-bottom: 28px;
}

.legal-body h2 {
  font-family: var(--font-display);
  font-size: 1rem;
  font-weight: 700;
  color: var(--text);
  margin: 0 0 10px;
  line-height: 1.4;
}

.legal-body p {
  margin: 0;
  font-size: 0.95rem;
  color: var(--muted);
  line-height: 1.65;
}

.delete-list {
  margin: 0;
  padding: 0;
  list-style: none;
}

.delete-list li {
  position: relative;
  margin: 0 0 22px;
  padding-left: 1.35rem;
  font-size: 0.95rem;
  color: var(--muted);
  line-height: 1.65;
}

.delete-list li:last-child {
  margin-bottom: 0;
}

.delete-list li::before {
  content: '';
  position: absolute;
  left: 0;
  top: 0.55em;
  width: 7px;
  height: 7px;
  border-radius: 50%;
  background: var(--accent);
}

.delete-list strong {
  color: var(--text);
  font-weight: 600;
}

.delete-list a {
  font-weight: 600;
}

.site-footer {
  margin-top: auto;
  border-top: 1px solid var(--border);
  padding: 32px 24px;
  background: var(--surface);
}

.site-footer__inner {
  max-width: var(--max);
  margin: 0 auto;
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
}

.site-footer p {
  margin: 0;
  font-size: 0.85rem;
  color: var(--muted);
}

.site-footer nav {
  display: flex;
  gap: 20px;
  flex-wrap: wrap;
}

.site-footer nav.site-footer__legal {
  gap: 0.35rem 1rem;
}

.site-footer a {
  font-size: 0.85rem;
  color: var(--muted);
}

.site-footer a:hover {
  color: var(--accent);
}

.layout-footer-push {
  min-height: 100vh;
  display: flex;
  flex-direction: column;
}

.layout-footer-push main {
  flex: 1;
}

@media (max-width: 520px) {
  .site-header__inner {
    padding: 12px 16px;
  }

  main {
    padding-left: 16px;
    padding-right: 16px;
  }

  .hero {
    padding-top: 48px;
  }
}

/* ---- Hesap silme sayfası ---- */
.delete-account-page {
  padding-top: 28px;
  padding-bottom: 72px;
}

.delete-page {
  position: relative;
  max-width: 900px;
  margin: 0 auto;
}

.delete-page__glow {
  position: absolute;
  border-radius: 50%;
  pointer-events: none;
  z-index: 0;
}

.delete-page__glow--1 {
  width: min(400px, 95vw);
  height: min(400px, 95vw);
  top: -140px;
  right: -120px;
  background: radial-gradient(circle, rgba(0, 255, 133, 0.16) 0%, transparent 68%);
}

.delete-page__glow--2 {
  width: 280px;
  height: 280px;
  bottom: 10%;
  left: -140px;
  background: radial-gradient(circle, rgba(0, 255, 133, 0.08) 0%, transparent 70%);
}

.delete-page__article {
  position: relative;
  z-index: 1;
}

.delete-page__intro {
  margin-bottom: 40px;
}

.delete-page__eyebrow {
  display: inline-block;
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--accent);
  margin: 0 0 14px;
  opacity: 0.95;
}

.delete-account-page h1.delete-page__title {
  font-family: var(--font-display);
  font-size: clamp(1.85rem, 4.2vw, 2.4rem);
  font-weight: 800;
  letter-spacing: -0.03em;
  line-height: 1.12;
  margin: 0 0 18px;
}

.delete-page__lead {
  font-size: 1.06rem;
  color: var(--muted);
  line-height: 1.65;
  margin: 0;
  max-width: 38rem;
}

.delete-page__lead strong {
  color: var(--text);
  font-weight: 600;
}

.delete-page__grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(288px, 1fr));
  gap: 22px;
  margin-bottom: 22px;
}

.delete-card {
  background: linear-gradient(155deg, rgba(28, 28, 28, 0.98) 0%, rgba(18, 18, 18, 0.99) 100%);
  border: 1px solid var(--border);
  border-radius: 20px;
  padding: 28px 24px 24px;
  transition:
    border-color 0.22s ease,
    box-shadow 0.22s ease;
}

.delete-card:hover {
  border-color: rgba(0, 255, 133, 0.2);
  box-shadow: 0 20px 50px rgba(0, 0, 0, 0.4);
}

.delete-card--accent {
  border-color: rgba(0, 255, 133, 0.14);
  background: linear-gradient(155deg, rgba(0, 255, 133, 0.07) 0%, rgba(22, 22, 22, 0.98) 52%, rgba(18, 18, 18, 0.99) 100%);
}

.delete-card__icon {
  width: 50px;
  height: 50px;
  border-radius: 14px;
  background: var(--accent-dim);
  color: var(--accent);
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 18px;
}

.delete-card__title {
  font-family: var(--font-display);
  font-size: 1.22rem;
  font-weight: 700;
  margin: 0 0 10px;
  letter-spacing: -0.02em;
}

.delete-card__text {
  margin: 0 0 20px;
  font-size: 0.93rem;
  color: var(--muted);
  line-height: 1.62;
}

.delete-card__note {
  margin: 20px 0 0;
  font-size: 0.86rem;
  color: var(--muted);
  line-height: 1.55;
  padding-top: 18px;
  border-top: 1px solid var(--border);
}

.delete-card__note strong {
  color: #ff8f8a;
  font-weight: 600;
}

.delete-stepper-scroll {
  margin: 0 -6px;
  padding: 2px 6px 10px;
  overflow-x: auto;
  overflow-y: hidden;
  -webkit-overflow-scrolling: touch;
  scrollbar-width: thin;
  scrollbar-color: rgba(0, 255, 133, 0.35) transparent;
}

.delete-stepper-scroll::-webkit-scrollbar {
  height: 6px;
}

.delete-stepper-scroll::-webkit-scrollbar-thumb {
  background: rgba(0, 255, 133, 0.28);
  border-radius: 999px;
}

.delete-stepper {
  list-style: none;
  margin: 0;
  padding: 0;
  display: flex;
  flex-wrap: nowrap;
  align-items: center;
  gap: 0;
  width: max-content;
  min-height: 42px;
}

.delete-stepper li {
  display: flex;
  align-items: center;
  margin: 0;
  flex-shrink: 0;
}

.delete-stepper li span {
  display: inline-block;
  padding: 9px 13px;
  font-size: 0.82rem;
  font-weight: 500;
  color: var(--text);
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: 10px;
  line-height: 1.3;
  white-space: nowrap;
}

.delete-stepper span.delete-stepper__final {
  color: var(--accent);
  font-weight: 700;
  border-color: rgba(0, 255, 133, 0.35);
  background: rgba(0, 255, 133, 0.08);
}

.delete-stepper li:not(:last-child)::after {
  content: '';
  width: 6px;
  height: 6px;
  margin: 0 8px;
  border-right: 2px solid var(--muted);
  border-bottom: 2px solid var(--muted);
  transform: rotate(-45deg);
  opacity: 0.45;
  flex-shrink: 0;
}

.delete-mail {
  padding: 18px 16px;
  border-radius: 14px;
  background: rgba(0, 0, 0, 0.32);
  border: 1px solid var(--border);
  margin-bottom: 18px;
}

.delete-mail__label {
  display: block;
  font-size: 0.68rem;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--muted);
  margin-bottom: 8px;
}

.delete-mail__addr {
  font-family: 'SF Mono', ui-monospace, monospace;
  font-size: 0.98rem;
  font-weight: 600;
  word-break: break-all;
  display: block;
  margin-bottom: 14px;
  line-height: 1.45;
}

.delete-mail__addr:hover {
  text-decoration: underline;
}

.delete-mail__btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 12px 22px;
  background: var(--accent);
  color: #003d1f;
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 0.88rem;
  border-radius: 12px;
  text-decoration: none;
  transition:
    transform 0.15s ease,
    box-shadow 0.15s ease;
}

.delete-mail__btn:hover {
  text-decoration: none;
  transform: translateY(-2px);
  box-shadow: 0 8px 26px rgba(0, 255, 133, 0.3);
}

.delete-checklist {
  margin: 0;
  padding: 0;
  list-style: none;
}

.delete-checklist li {
  position: relative;
  padding-left: 1.4rem;
  margin-bottom: 11px;
  font-size: 0.88rem;
  color: var(--muted);
  line-height: 1.52;
}

.delete-checklist li:last-child {
  margin-bottom: 0;
}

.delete-checklist li::before {
  content: '';
  position: absolute;
  left: 2px;
  top: 0.42em;
  width: 9px;
  height: 5px;
  border-left: 2px solid var(--accent);
  border-bottom: 2px solid var(--accent);
  transform: rotate(-52deg);
}

.delete-checklist strong {
  color: var(--text);
  font-weight: 600;
}

.delete-banner {
  display: flex;
  gap: 20px;
  align-items: flex-start;
  padding: 24px 26px;
  border-radius: 18px;
  border: 1px solid rgba(255, 255, 255, 0.07);
  background: linear-gradient(120deg, rgba(255, 255, 255, 0.03) 0%, rgba(255, 255, 255, 0.01) 100%);
}

.delete-banner__icon {
  flex-shrink: 0;
  width: 46px;
  height: 46px;
  border-radius: 12px;
  background: var(--accent-dim);
  color: var(--accent);
  display: flex;
  align-items: center;
  justify-content: center;
}

.delete-banner__title {
  font-family: var(--font-display);
  font-size: 1.05rem;
  font-weight: 700;
  margin: 0 0 10px;
  letter-spacing: -0.02em;
}

.delete-banner__text {
  margin: 0;
  font-size: 0.93rem;
  color: var(--muted);
  line-height: 1.62;
}

@media (max-width: 480px) {
  .delete-stepper-scroll {
    overflow-x: visible;
    margin: 0;
    padding: 0;
  }

  .delete-stepper {
    flex-direction: column;
    align-items: stretch;
    width: auto;
    min-height: 0;
    padding-left: 14px;
    border-left: 2px solid rgba(0, 255, 133, 0.28);
    gap: 12px;
  }

  .delete-stepper li {
    flex-direction: row;
    align-items: center;
  }

  .delete-stepper li:not(:last-child)::after {
    display: none;
  }

  .delete-stepper li span {
    width: 100%;
    text-align: start;
    white-space: normal;
  }

  .delete-banner {
    flex-direction: column;
    padding: 22px 20px;
  }
}
