/* ================================================================
   FIYONK — Profil Doğrulama bottom sheet
   402 × 874. Light + amber. Anasayfa arka planı + modal sheet.
   ================================================================ */

:root {
  --slate-950: #020618;
  --slate-700: #314158;
  --slate-600: #45556c;
  --slate-500: #62748e;
  --slate-400: #90a1b9;
  --slate-300: #cad5e2;
  --slate-200: #e2e8f0;
  --slate-100: #f1f5f9;
  --slate-50:  #f8fafc;
  --amber-500: #ffb900;
  --amber-600: #fe9a00;
  --amber-soft: #fff5d6;
  --amber-pale: #fffaeb;
  --green-500: #00c950;
  --white: #ffffff;

  --stage-bg: #e7eaf0;
  --font: "Inter", -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, sans-serif;
}

* { box-sizing: border-box; }
html, body {
  margin: 0;
  padding: 0;
  background: var(--stage-bg);
  color: var(--slate-950);
  font-family: var(--font);
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}
button {
  background: none; border: 0; color: inherit;
  font: inherit; cursor: pointer; padding: 0;
}

/* ----------------------------------------------------------------
   Stage / phone
---------------------------------------------------------------- */
.stage {
  min-height: 100vh;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 32px 24px;
}
.phone {
  position: relative;
  width: 402px;
  height: 874px;
  overflow: hidden;
  background: var(--white);
  isolation: isolate;
}

/* ----------------------------------------------------------------
   Status bar
---------------------------------------------------------------- */
.status-bar {
  position: absolute;
  top: 0; left: 0; right: 0;
  height: 62px;
  z-index: 60;
  padding: 18px 28px 0;
  display: flex;
  align-items: center;
  justify-content: space-between;
  color: var(--slate-950);
  font-size: 17px;
  font-weight: 600;
  background: var(--white);
  pointer-events: none;
}
.status-bar__icons { display: flex; align-items: center; gap: 6px; }

/* ----------------------------------------------------------------
   Background — Anasayfa mockup
---------------------------------------------------------------- */
.bg-page {
  position: absolute;
  inset: 62px 0 0 0;
  background: var(--white);
  z-index: 1;
}
.bg-header {
  height: 48px;
  padding: 0 16px;
  display: flex;
  align-items: center;
  justify-content: space-between;
}
.bg-logo {
  font-size: 22px;
  font-weight: 800;
  letter-spacing: -0.6px;
  color: var(--slate-950);
}
.bg-actions { display: flex; align-items: center; gap: 6px; }
.bg-coin {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: var(--white);
  border: 1px solid var(--slate-200);
  padding: 8px 14px 8px 10px;
  border-radius: 999px;
  font-size: 14px;
  font-weight: 700;
  color: var(--slate-950);
}
.bg-btn {
  position: relative;
  width: 40px; height: 40px;
  border: 1px solid var(--slate-200);
  border-radius: 999px;
  background: var(--white);
  display: inline-flex;
  align-items: center;
  justify-content: center;
}
.bg-btn__dot {
  position: absolute;
  top: 9px; right: 10px;
  width: 8px; height: 8px;
  border-radius: 999px;
  background: #ef4444;
  border: 2px solid var(--white);
}

/* Stories */
.stories {
  padding: 16px 12px 14px;
  display: flex;
  gap: 4px;
  overflow: hidden;
}
.story {
  flex: 0 0 auto;
  width: 70px;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 6px;
}
.story__circle {
  position: relative;
  width: 58px;
  height: 58px;
  border-radius: 999px;
  border: 2px solid var(--amber-500);
  padding: 2px;
  overflow: hidden;
  background: var(--white);
}
.story__circle img {
  width: 100%;
  height: 100%;
  border-radius: 999px;
  object-fit: cover;
  display: block;
}
.story__circle--add {
  background: var(--amber-500);
  border-color: var(--amber-500);
  display: flex;
  align-items: center;
  justify-content: center;
}
.story__online {
  position: absolute;
  bottom: 2px;
  right: 2px;
  width: 12px;
  height: 12px;
  border-radius: 999px;
  background: var(--green-500);
  border: 2px solid var(--white);
}
.story__name {
  font-size: 12px;
  font-weight: 600;
  color: var(--slate-700);
  letter-spacing: -0.1px;
}

/* Card */
.bg-card {
  position: relative;
  margin: 6px 12px 0;
  height: 360px;
  border-radius: 20px;
  overflow: hidden;
  background: var(--slate-200);
}
.bg-card__img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}
.bg-card__pill {
  position: absolute;
  top: 14px;
  left: 14px;
  background: rgba(2, 6, 24, 0.55);
  backdrop-filter: blur(8px);
  -webkit-backdrop-filter: blur(8px);
  color: var(--white);
  font-size: 12px;
  font-weight: 600;
  padding: 6px 12px;
  border-radius: 999px;
}

/* ----------------------------------------------------------------
   Scrim
---------------------------------------------------------------- */
.scrim {
  position: absolute;
  inset: 62px 0 0 0;
  z-index: 2;
  background: rgba(248, 250, 252, 0.55);
  backdrop-filter: blur(4px);
  -webkit-backdrop-filter: blur(4px);
}

/* ----------------------------------------------------------------
   Bottom sheet
---------------------------------------------------------------- */
.sheet {
  position: absolute;
  left: 0; right: 0; bottom: 0;
  z-index: 10;
  background: var(--white);
  border-top-left-radius: 28px;
  border-top-right-radius: 28px;
  padding: 12px 20px 22px;
  box-shadow: 0 -24px 60px rgba(2, 6, 24, 0.16);
}
.sheet__handle {
  width: 40px;
  height: 4px;
  border-radius: 999px;
  background: var(--slate-200);
  margin: 0 auto 18px;
}

/* Hero illustration */
.hero {
  position: relative;
  width: 110px;
  height: 110px;
  margin: 8px auto 22px;
}
.hero__art {
  display: block;
  position: relative;
  z-index: 1;
}
.hero__sparkle {
  position: absolute;
  z-index: 2;
  display: inline-flex;
}
.hero__sparkle--tl { top: 2px; left: -6px; }
.hero__sparkle--tr { top: 10px; right: -2px; }
.hero__sparkle--bl { bottom: 14px; left: -8px; }

/* Title + body */
.sheet__title {
  margin: 0 0 10px;
  text-align: center;
  font-size: 22px;
  font-weight: 800;
  color: var(--slate-950);
  letter-spacing: -0.5px;
}
.sheet__body {
  margin: 0 6px 22px;
  text-align: center;
  font-size: 14px;
  line-height: 1.5;
  font-weight: 500;
  color: var(--slate-500);
  letter-spacing: -0.1px;
}

/* Features card */
.features {
  background: var(--slate-50);
  border: 1px solid var(--slate-100);
  border-radius: 18px;
  padding: 4px 14px;
  margin-bottom: 18px;
}
.feature {
  display: flex;
  align-items: center;
  gap: 14px;
  padding: 14px 0;
}
.feature__icon {
  width: 36px;
  height: 36px;
  border-radius: 10px;
  background: var(--amber-pale);
  display: inline-flex;
  align-items: center;
  justify-content: center;
  flex: 0 0 auto;
}
.feature__body {
  display: flex;
  flex-direction: column;
  min-width: 0;
}
.feature__title {
  font-size: 14px;
  font-weight: 700;
  color: var(--slate-950);
  letter-spacing: -0.2px;
  margin-bottom: 2px;
}
.feature__sub {
  font-size: 13px;
  font-weight: 500;
  color: var(--slate-500);
}
.feature__divider {
  height: 1px;
  background: var(--slate-100);
}

/* CTA + skip */
.sheet__cta {
  width: 100%;
  height: 52px;
  border-radius: 999px;
  background: var(--amber-500);
  color: var(--slate-950);
  font-size: 15px;
  font-weight: 700;
  letter-spacing: -0.1px;
  margin-bottom: 6px;
  transition: background-color .15s ease;
}
.sheet__cta:hover { background: var(--amber-600); }
.sheet__cta:active { transform: translateY(1px); }

.sheet__skip {
  width: 100%;
  height: 40px;
  font-size: 14px;
  font-weight: 600;
  color: var(--slate-700);
  letter-spacing: -0.1px;
}
.sheet__skip:hover { color: var(--slate-950); }
