/* =========================================================
   BASE.CSS
   GLOBAL FOUNDATION

   Resetler
   Root renk sistemi
   Body
   Container
   Genel section yapısı
   Butonlar
   Typography
   Reveal animasyon temeli

   - Renk değişkenleri
- Gölge değişkenleri
- Genel reset
- Body ayarı
- Link, liste, img, button ayarları
- Container sistemi
- Section sistemi
- Başlık stilleri
- Genel butonlar
- Reveal animasyon temeli
========================================================= */

:root {
  --primary: #ff6b6b;
  --purple: #794afa;
  --purple-dark: #453c5c;
  --ink: #0a021c;
  --text: #241a35;
  --muted: #7c899a;
  --line: #e5e8ec;
  --white: #ffffff;
  --gold: #d9aa55;
  --amber: #f59e0b;
  --green: #4d755f;

  --shadow-sm: 0 12px 32px rgba(10, 2, 28, .06);
  --shadow-md: 0 22px 60px rgba(10, 2, 28, .11);
  --shadow-lg: 0 34px 110px rgba(10, 2, 28, .18);

  --ease: cubic-bezier(.2, .8, .2, 1);
}

* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  font-family: "Poppins", sans-serif;
  color: var(--text);
  background:
    radial-gradient(circle at 0 4%, rgba(255,107,107,.08), transparent 360px),
    radial-gradient(circle at 100% 0, rgba(121,74,250,.08), transparent 430px),
    linear-gradient(180deg, #fff 0%, #fbf7ef 52%, #fff 100%);
  overflow-x: hidden;
  line-height: 1.55;
}

body.no-scroll {
  overflow: hidden;
}

a {
  color: inherit;
  text-decoration: none;
}

ul {
  list-style: none;
}

img {
  display: block;
  max-width: 100%;
}

button,
input,
textarea {
  font: inherit;
}

button {
  border: 0;
  cursor: pointer;
  background: transparent;
}

.container {
  width: min(1280px, calc(100% - 36px));
  margin-inline: auto;
}

.section {
  padding: clamp(46px, 5.6vw, 82px) 0;
}

.section-head {
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
  gap: 22px;
  margin-bottom: 26px;
}

.eyebrow {
  color: var(--purple);
  font-weight: 900;
  font-size: 11px;
  letter-spacing: .15em;
  text-transform: uppercase;
}

.section-title {
  margin-top: 7px;
  font-size: clamp(26px, 3.2vw, 46px);
  line-height: 1.06;
  letter-spacing: -.05em;
  color: var(--ink);
  font-weight: 900;
}

.title-mark {
  width: 26px;
  height: 26px;
  display: inline-grid;
  place-items: center;
  border-radius: 50%;
  margin-right: 9px;
  background: linear-gradient(135deg, #ffc1bb, var(--purple));
  box-shadow: 0 0 0 9px rgba(255,107,107,.08);
  vertical-align: middle;
}

.section-desc {
  max-width: 720px;
  margin-top: 10px;
  color: var(--muted);
  font-size: 14px;
}

.btn {
  min-height: 42px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 9px;
  padding: 10px 18px;
  border-radius: 999px;
  font-size: 13px;
  font-weight: 800;
  transition:
    transform .24s var(--ease),
    box-shadow .24s var(--ease),
    background .24s var(--ease),
    color .24s var(--ease);
}

.btn-primary {
  color: #fff;
  background: linear-gradient(135deg, var(--primary), #ff9c55 52%, var(--gold));
  box-shadow: 0 16px 36px rgba(255,107,107,.24);
}

.btn-primary:hover {
  transform: translateY(-3px);
  box-shadow: var(--shadow-lg);
}

.btn-glass {
  color: var(--ink);
  background: rgba(255,255,255,.84);
  backdrop-filter: blur(14px);
  box-shadow: inset 0 0 0 1px rgba(255,255,255,.60);
}

.view-link {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  color: var(--purple);
  font-weight: 800;
  white-space: nowrap;
  transition: .24s var(--ease);
  font-size: 14px;
}

.view-link:hover {
  transform: translateX(5px);
}

[data-reveal] {
  opacity: 0;
  transform: translateY(24px);
  transition: opacity .65s var(--ease), transform .65s var(--ease);
}

[data-reveal].is-visible {
  opacity: 1;
  transform: translateY(0);
}