/* Giyra — getgiyra.com
   Palet ve tipografi uygulamanın kendi token tablosundan alındı (README §Design
   Tokens). Site tek bir görünüme bağlı: marka sabah ışığı, krem zemin. Karanlık
   tema yok — bu bir eksiklik değil, marka kararı. */

:root {
  --cream:        #FAF5EE;
  --ivory:        #F3EBE0;
  --rose:         #E0658F;
  --rose-dark:    #C9527D;
  --pink-bubble:  #FFE1EA;
  --ink:          #4A3F37;
  --ink-2:        #7D6F63;
  --ink-3:        #97836F;
  --border:       #F0E6D8;
  --sage:         #9BAA8F;

  --shadow-card:  0 24px 50px -26px rgba(74, 63, 55, .35);
  --shadow-soft:  0 14px 28px -20px rgba(74, 63, 55, .45);
  --shadow-cta:   0 14px 26px -12px rgba(224, 101, 143, .8);

  --r-card:   28px;
  --r-panel:  20px;
  --r-button: 20px;

  --display: "Quicksand", ui-rounded, "Avenir Next", system-ui, sans-serif;
  --body:    "Nunito Sans", -apple-system, BlinkMacSystemFont, "Segoe UI", system-ui, sans-serif;
}

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

html { -webkit-text-size-adjust: 100%; }

body {
  margin: 0;
  /* Sabah ışığı: ekran degradesinin web karşılığı */
  background:
    linear-gradient(180deg, #f4d4de 0%, #f7e6e3 22%, var(--cream) 52%)
    no-repeat top center / 100% 640px,
    var(--cream);
  color: var(--ink);
  font-family: var(--body);
  font-size: 17px;
  line-height: 1.65;
  -webkit-font-smoothing: antialiased;
}

.wrap { max-width: 940px; margin: 0 auto; padding: 0 22px; }
.narrow { max-width: 700px; }

/* ---- Üst çubuk ---------------------------------------------------------- */
.topbar {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
  padding: 26px 0 0;
}
.brand { display: inline-flex; align-items: center; }
.brand img { height: 30px; width: auto; display: block; }
.brand:focus-visible { outline: 2px solid var(--rose); outline-offset: 6px; border-radius: 6px; }

.topnav { display: flex; gap: 22px; font-size: 15px; }
.topnav a { color: var(--ink-2); text-decoration: none; }
.topnav a:hover { color: var(--rose-dark); }

/* ---- Hero --------------------------------------------------------------- */
.hero { padding: 66px 0 54px; text-align: center; }

h1 {
  font-family: var(--display);
  font-weight: 700;
  font-size: clamp(32px, 6vw, 52px);
  line-height: 1.14;
  letter-spacing: -0.5px;
  margin: 0 auto 18px;
  max-width: 16ch;
  text-wrap: balance;
}

.lede {
  font-size: clamp(17px, 2.2vw, 20px);
  color: var(--ink-2);
  margin: 0 auto 30px;
  max-width: 52ch;
}

.soon {
  display: inline-flex;
  align-items: center;
  gap: 9px;
  font-family: var(--display);
  font-weight: 600;
  font-size: 15px;
  color: var(--ink);
  background: rgba(255, 255, 255, .78);
  border: 1px solid var(--border);
  border-radius: 999px;
  padding: 11px 20px;
}
.soon::before {
  content: "";
  width: 8px; height: 8px;
  border-radius: 50%;
  background: var(--rose);
}

/* ---- Bölümler ----------------------------------------------------------- */
section { padding: 46px 0; }

h2 {
  font-family: var(--display);
  font-weight: 700;
  font-size: clamp(24px, 3.4vw, 31px);
  letter-spacing: -0.3px;
  margin: 0 0 10px;
  text-wrap: balance;
}

h3 {
  font-family: var(--display);
  font-weight: 600;
  font-size: 19px;
  margin: 0 0 6px;
}

.section-lede { color: var(--ink-2); margin: 0 0 30px; max-width: 56ch; }

/* ---- Adımlar ------------------------------------------------------------ */
.steps { display: grid; gap: 16px; grid-template-columns: repeat(3, 1fr); }

.step {
  background: #fff;
  border-radius: var(--r-card);
  box-shadow: var(--shadow-card);
  padding: 26px 24px 28px;
}
.step-no {
  font-family: var(--display);
  font-weight: 700;
  font-size: 14px;
  color: var(--rose);
  display: block;
  margin-bottom: 12px;
}
.step p { margin: 0; color: var(--ink-2); font-size: 15.5px; }

/* ---- Sözler ------------------------------------------------------------- */
.promises { display: grid; gap: 14px; }

.promise {
  display: grid;
  grid-template-columns: 26px 1fr;
  gap: 4px 16px;
  align-items: start;
  background: rgba(255, 255, 255, .72);
  border: 1px solid var(--border);
  border-radius: var(--r-panel);
  padding: 20px 22px;
}
.promise .tick {
  width: 22px; height: 22px;
  border-radius: 50%;
  background: var(--pink-bubble);
  display: grid;
  place-items: center;
  margin-top: 3px;
}
.promise .tick::after {
  content: "";
  width: 8px; height: 5px;
  border-left: 2px solid var(--rose);
  border-bottom: 2px solid var(--rose);
  transform: rotate(-45deg) translate(1px, -1px);
}
.promise h3 { grid-column: 2; }
.promise p { grid-column: 2; margin: 0; color: var(--ink-2); font-size: 15.5px; }

/* ---- Kapanış kartı ------------------------------------------------------ */
.closing {
  background: linear-gradient(180deg, #fff 0%, #fffaf6 100%);
  border-radius: var(--r-card);
  box-shadow: var(--shadow-card);
  padding: 44px 32px;
  text-align: center;
}
.closing h2 { margin-bottom: 8px; }
.closing p { color: var(--ink-2); margin: 0 auto 24px; max-width: 44ch; }

.btn {
  display: inline-block;
  font-family: var(--display);
  font-weight: 600;
  font-size: 16px;
  color: #fff;
  background: var(--rose);
  border-radius: var(--r-button);
  box-shadow: var(--shadow-cta);
  padding: 15px 30px;
  text-decoration: none;
}
.btn:hover { background: var(--rose-dark); }
.btn:focus-visible { outline: 2px solid var(--ink); outline-offset: 3px; }

/* ---- İçerik sayfaları --------------------------------------------------- */
.doc { padding: 44px 0 20px; }
.doc h1 { text-align: left; margin-left: 0; max-width: none; font-size: clamp(28px, 5vw, 40px); }
.doc .updated { color: var(--ink-3); font-size: 15px; margin: 0 0 34px; }

.doc h2 { font-size: 22px; margin: 38px 0 8px; }
.doc p, .doc li { color: var(--ink-2); }
.doc p { margin: 0 0 14px; }
.doc strong { color: var(--ink); font-weight: 700; }
.doc ul { margin: 0 0 18px; padding-left: 22px; }
.doc li { margin-bottom: 7px; }

.callout {
  background: rgba(255, 255, 255, .8);
  border: 1px solid var(--border);
  border-radius: var(--r-panel);
  padding: 20px 24px;
  margin: 22px 0;
}
.callout p:last-child { margin-bottom: 0; }

a { color: var(--rose-dark); }
a:hover { color: var(--rose); }

/* ---- Alt bilgi ---------------------------------------------------------- */
footer {
  border-top: 1px solid var(--border);
  margin-top: 56px;
  padding: 30px 0 60px;
  display: flex;
  flex-wrap: wrap;
  gap: 12px 26px;
  align-items: center;
  justify-content: space-between;
  font-size: 15px;
  color: var(--ink-3);
}
footer nav { display: flex; flex-wrap: wrap; gap: 22px; }
footer a { color: var(--ink-2); text-decoration: none; }
footer a:hover { color: var(--rose-dark); }

/* ---- Duyarlılık --------------------------------------------------------- */
@media (max-width: 760px) {
  .steps { grid-template-columns: 1fr; }
  .hero { padding: 46px 0 38px; }
  body { background-size: 100% 480px; }
}

@media (prefers-reduced-motion: reduce) {
  * { animation: none !important; transition: none !important; }
}
