/* Apple tarzı tema — aurora arka plan, buzlu cam yüzeyler, iOS gruplu form,
   Wallet bileti ve sipariş takibi esinli durum sayfası. Açık/koyu tema. */

:root {
  --bg: #f5f5f7;
  --label: #1d1d1f;
  --label-2: #6e6e73;
  --label-3: #86868b;
  --glass: rgba(255, 255, 255, 0.62);
  --glass-strong: rgba(255, 255, 255, 0.82);
  --glass-border: rgba(255, 255, 255, 0.72);
  --nav: rgba(245, 245, 247, 0.7);
  --hairline: rgba(0, 0, 0, 0.08);
  --field: #ffffff;
  --field-border: #d2d2d7;
  --field-hover: #aeaeb4;
  --fill: rgba(118, 118, 128, 0.12);
  --fill-2: rgba(118, 118, 128, 0.22);
  --seg-active: #ffffff;
  --bubble: #e9e9eb;
  --blue: #0071e3;
  --blue-hover: #0077ed;
  --link: #0066cc;
  --focus: rgba(0, 113, 227, 0.32);
  --red: #ff3b30;
  --orange: #ff9500;
  --green: #34c759;
  --shadow: 0 1px 1px rgba(0, 0, 0, 0.02), 0 20px 50px -22px rgba(40, 20, 80, 0.28);
  --a1: rgba(255, 159, 10, 0.42);
  --a2: rgba(255, 55, 95, 0.32);
  --a3: rgba(94, 92, 230, 0.34);
  --a4: rgba(48, 176, 199, 0.34);
  --grad: linear-gradient(90deg, #ff9f0a 0%, #ff375f 36%, #bf5af2 68%, #5e5ce6 100%);
  --font: -apple-system, BlinkMacSystemFont, "SF Pro Text", "SF Pro Display", "Helvetica Neue", "Segoe UI", Roboto, Arial, sans-serif;
  --mono: ui-monospace, "SF Mono", SFMono-Regular, Menlo, Consolas, monospace;
  --r-card: 26px;
  --r-field: 12px;
  --ease: cubic-bezier(0.25, 0.8, 0.25, 1);
}

@media (prefers-color-scheme: dark) {
  :root {
    --bg: #000000;
    --label: #f5f5f7;
    --label-2: #a1a1a6;
    --label-3: #6e6e73;
    --glass: rgba(28, 28, 30, 0.58);
    --glass-strong: rgba(28, 28, 30, 0.8);
    --glass-border: rgba(255, 255, 255, 0.09);
    --nav: rgba(22, 22, 23, 0.72);
    --hairline: rgba(255, 255, 255, 0.1);
    --field: rgba(44, 44, 46, 0.72);
    --field-border: rgba(255, 255, 255, 0.14);
    --field-hover: rgba(255, 255, 255, 0.28);
    --fill: rgba(118, 118, 128, 0.24);
    --fill-2: rgba(118, 118, 128, 0.36);
    --seg-active: #636366;
    --bubble: #2c2c2e;
    --link: #2997ff;
    --focus: rgba(41, 151, 255, 0.4);
    --red: #ff453a;
    --orange: #ff9f0a;
    --green: #30d158;
    --shadow: 0 1px 1px rgba(0, 0, 0, 0.3), 0 24px 60px -24px rgba(0, 0, 0, 0.8);
    --a1: rgba(255, 120, 20, 0.3);
    --a2: rgba(255, 45, 110, 0.26);
    --a3: rgba(94, 92, 230, 0.34);
    --a4: rgba(20, 160, 200, 0.26);
  }
}

/* ---- Temel ---- */

*, *::before, *::after { box-sizing: border-box; }
[hidden] { display: none !important; }

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

@media (prefers-reduced-motion: no-preference) {
  html { scroll-behavior: smooth; }
}

body {
  margin: 0;
  min-height: 100vh;
  background: var(--bg);
  color: var(--label);
  font: 17px/1.47 var(--font);
  letter-spacing: -0.022em;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

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

.sprite { position: absolute; width: 0; height: 0; overflow: hidden; }

.ico {
  width: 20px;
  height: 20px;
  flex: none;
  fill: none;
  stroke: currentColor;
  stroke-width: 1.8;
  stroke-linecap: round;
  stroke-linejoin: round;
}

:focus-visible { outline: none; box-shadow: 0 0 0 4px var(--focus); }

/* ---- Aurora arka plan ---- */

.aurora {
  position: fixed;
  inset: 0;
  z-index: -1;
  overflow: hidden;
  pointer-events: none;
}

.aurora span {
  position: absolute;
  width: 72vmax;
  height: 72vmax;
  border-radius: 50%;
  will-change: transform;
}

.aurora .b1 { top: -34vmax; left: -22vmax; background: radial-gradient(closest-side, var(--a1), transparent); }
.aurora .b2 { top: -30vmax; right: -26vmax; background: radial-gradient(closest-side, var(--a2), transparent); }
.aurora .b3 { bottom: -40vmax; left: 6vmax; background: radial-gradient(closest-side, var(--a3), transparent); }
.aurora .b4 { bottom: -34vmax; right: -24vmax; background: radial-gradient(closest-side, var(--a4), transparent); }

/* Hareket yalnızca geniş ekranda: telefonda cam bulanıklığını her karede yeniden hesaplatmasın */
@media (prefers-reduced-motion: no-preference) and (min-width: 760px) {
  .aurora span { animation: drift 32s ease-in-out infinite alternate; }
  .aurora .b2 { animation-duration: 38s; animation-direction: alternate-reverse; }
  .aurora .b3 { animation-duration: 44s; }
  .aurora .b4 { animation-duration: 36s; animation-direction: alternate-reverse; }
}

@keyframes drift {
  from { transform: translate3d(0, 0, 0) scale(1); }
  to { transform: translate3d(7vmax, 5vmax, 0) scale(1.14); }
}

/* ---- Cam yüzey ---- */

.glass {
  background: var(--glass);
  -webkit-backdrop-filter: saturate(180%) blur(30px);
  backdrop-filter: saturate(180%) blur(30px);
  border: 1px solid var(--glass-border);
  box-shadow: var(--shadow);
}

/* ---- Üst çubuk ---- */

.nav {
  position: sticky;
  top: 0;
  z-index: 20;
  background: var(--nav);
  -webkit-backdrop-filter: saturate(180%) blur(20px);
  backdrop-filter: saturate(180%) blur(20px);
  border-bottom: 1px solid var(--hairline);
}

.nav__inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  max-width: 1000px;
  height: 52px;
  margin: 0 auto;
  padding: 0 max(20px, env(safe-area-inset-left));
}

.brand {
  display: flex;
  align-items: center;
  gap: 10px;
  color: var(--label);
  font-size: 17px;
  font-weight: 600;
  letter-spacing: -0.02em;
}

.brand:hover { text-decoration: none; }

.brand__icon {
  display: grid;
  place-items: center;
  width: 28px;
  height: 28px;
  border-radius: 7px;
  background: var(--grad);
  color: #fff;
  box-shadow: 0 3px 10px -2px rgba(255, 55, 95, 0.5);
}

.brand__icon .ico { width: 17px; height: 17px; stroke-width: 2; }

/* iOS segmented control */
.seg {
  display: inline-flex;
  padding: 2px;
  border-radius: 9px;
  background: var(--fill);
}

.seg a {
  min-width: 46px;
  padding: 4px 12px;
  border-radius: 7px;
  color: var(--label);
  font-size: 13px;
  font-weight: 600;
  letter-spacing: 0;
  text-align: center;
  transition: background 0.2s var(--ease);
}

.seg a:hover { text-decoration: none; }

.seg a[aria-current] {
  background: var(--seg-active);
  box-shadow: 0 3px 8px rgba(0, 0, 0, 0.12), 0 3px 1px rgba(0, 0, 0, 0.04);
}

/* ---- Sayfa ---- */

.page {
  max-width: 1000px;
  margin: 0 auto;
  padding: 0 20px 24px;
}

/* ---- Hero ---- */

.hero {
  padding: 56px 0 40px;
  text-align: center;
}

.hero .caltile { margin: 0 auto 28px; }

.eyebrow {
  margin: 0 0 6px;
  font-size: clamp(19px, 2.4vw, 24px);
  font-weight: 600;
  letter-spacing: -0.02em;
}

.gradient-text {
  background: var(--grad);
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
}

h1 {
  margin: 0 auto;
  font-size: clamp(48px, 11vw, 88px);
  font-weight: 700;
  line-height: 1.04;
  letter-spacing: -0.045em;
}

.h1--status { font-size: clamp(40px, 8vw, 64px); }

.lede {
  max-width: 32em;
  margin: 20px auto 0;
  color: var(--label-2);
  font-size: clamp(17px, 2.2vw, 21px);
  line-height: 1.42;
  letter-spacing: 0.004em;
}

.cta {
  display: inline-flex;
  align-items: center;
  gap: 1px;
  margin-top: 22px;
  font-size: 19px;
}

.cta .ico { width: 17px; height: 17px; stroke-width: 2.2; transition: transform 0.2s var(--ease); }
.cta:hover .ico { transform: translateX(3px); }

/* Takvim uygulaması ikonu */
.caltile {
  display: flex;
  flex: none;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  width: 60px;
  height: 60px;
  border-radius: 14px;
  background: #fff;
  color: #1d1d1f;
  box-shadow: 0 1px 2px rgba(0, 0, 0, 0.08), 0 10px 24px -10px rgba(0, 0, 0, 0.35);
}

.caltile__top {
  color: #ff3b30;
  font-size: 11px;
  font-weight: 600;
  line-height: 1;
  letter-spacing: 0;
  text-transform: uppercase;
}

.caltile__day {
  margin-top: 1px;
  font-size: 30px;
  font-weight: 400;
  line-height: 1;
  letter-spacing: -0.04em;
}

.caltile--hero {
  width: 108px;
  height: 108px;
  border-radius: 25px;
  box-shadow: 0 1px 2px rgba(0, 0, 0, 0.08), 0 24px 48px -16px rgba(0, 0, 0, 0.35);
}

.caltile--hero .caltile__top { font-size: 14px; }
.caltile--hero .caltile__day { margin-top: 2px; font-size: 58px; font-weight: 300; }

@media (prefers-reduced-motion: no-preference) {
  .caltile--hero { animation: float 7s ease-in-out infinite; }
}

@keyframes float {
  50% { transform: translateY(-7px) rotate(-2.5deg); }
}

/* ---- Nasıl çalışır ---- */

.how {
  display: grid;
  grid-template-columns: 1fr;
  gap: 14px;
  max-width: 940px;
  margin: 0 auto 48px;
}

@media (min-width: 760px) {
  .how { grid-template-columns: repeat(3, 1fr); gap: 18px; }
}

.how__card {
  padding: 22px 22px 24px;
  border-radius: var(--r-card);
}

.how__top { display: flex; align-items: flex-start; justify-content: space-between; }

.how__num {
  color: var(--label-3);
  font-size: 13px;
  font-weight: 600;
  font-variant-numeric: tabular-nums;
}

.how__card h3 {
  margin: 16px 0 4px;
  font-size: 19px;
  font-weight: 600;
  letter-spacing: -0.022em;
}

.how__card p {
  margin: 0;
  color: var(--label-2);
  font-size: 15px;
  line-height: 1.42;
  letter-spacing: -0.012em;
}

/* iOS ayar ikonu karoları */
.tile {
  display: grid;
  flex: none;
  place-items: center;
  width: 34px;
  height: 34px;
  border-radius: 9px;
  background: linear-gradient(180deg, var(--t1), var(--t2));
  color: #fff;
  box-shadow: inset 0 0 0 0.5px rgba(255, 255, 255, 0.22), 0 4px 10px -4px var(--t2);
}

.tile .ico { stroke-width: 2; }

.tile--lg { width: 46px; height: 46px; border-radius: 12px; }
.tile--lg .ico { width: 26px; height: 26px; }

.tile--blue { --t1: #5ab0ff; --t2: #007aff; }
.tile--orange { --t1: #ffb340; --t2: #ff9500; }
.tile--red { --t1: #ff6b5f; --t2: #ff3b30; }
.tile--green { --t1: #5fe07f; --t2: #34c759; }
.tile--purple { --t1: #cf7df0; --t2: #af52de; }
.tile--indigo { --t1: #7d7bf0; --t2: #5856d6; }

/* ---- Form ---- */

.form {
  display: grid;
  gap: 18px;
  max-width: 680px;
  margin: 0 auto;
  scroll-margin-top: 72px;
}

.group {
  padding: 22px 20px 20px;
  border-radius: var(--r-card);
}

@media (min-width: 560px) {
  .group { padding: 26px 26px 24px; }
}

.group__head {
  display: flex;
  align-items: center;
  gap: 14px;
  margin-bottom: 18px;
}

.group__head h2 {
  margin: 0;
  font-size: 21px;
  font-weight: 600;
  line-height: 1.2;
  letter-spacing: -0.022em;
}

.group__head p {
  margin: 2px 0 0;
  color: var(--label-2);
  font-size: 14px;
  letter-spacing: -0.01em;
}

.group__body { display: grid; gap: 12px; }

.opt { color: var(--label-3); font-size: 0.82em; font-weight: 400; }

/* Yüzen etiketli alan */
.fl { position: relative; }

.fl input,
.fl textarea,
.guest-row input {
  display: block;
  width: 100%;
  border: 1px solid var(--field-border);
  border-radius: var(--r-field);
  background: var(--field);
  color: var(--label);
  font: inherit;
  font-size: 17px;
  letter-spacing: -0.022em;
  transition: border-color 0.2s var(--ease), box-shadow 0.2s var(--ease);
  -webkit-appearance: none;
  appearance: none;
}

.fl input { height: 58px; padding: 24px 16px 8px; }

.fl textarea {
  min-height: 132px;
  padding: 28px 16px 12px;
  line-height: 1.4;
  resize: vertical;
}

.fl label {
  position: absolute;
  top: 18px;
  left: 17px;
  right: 16px;
  overflow: hidden;
  color: var(--label-3);
  font-size: 17px;
  line-height: 22px;
  white-space: nowrap;
  text-overflow: ellipsis;
  pointer-events: none;
  transform-origin: 0 0;
  transition: transform 0.2s var(--ease), color 0.2s var(--ease);
}

.fl input::placeholder,
.fl textarea::placeholder { color: transparent; transition: color 0.2s var(--ease); }

.fl input:focus::placeholder,
.fl textarea:focus::placeholder { color: var(--label-3); }

.fl input:focus + label,
.fl input:not(:placeholder-shown) + label,
.fl textarea:focus + label,
.fl textarea:not(:placeholder-shown) + label,
.fl--static label {
  color: var(--label-2);
  transform: translateY(-10px) scale(0.72);
}

.fl input:hover,
.fl textarea:hover,
.guest-row input:hover { border-color: var(--field-hover); }

.fl input:focus,
.fl textarea:focus,
.guest-row input:focus {
  outline: none;
  border-color: var(--blue);
  box-shadow: 0 0 0 4px var(--focus);
}

/* Tarih/saat: iOS'ta ortalanmış değer ve boş yükseklik sorunları */
.fl input[type="date"],
.fl input[type="time"] { min-width: 0; }
.fl input::-webkit-date-and-time-value { text-align: left; }
.fl input::-webkit-calendar-picker-indicator { opacity: 0.55; }

.has-error input,
.has-error textarea { border-color: var(--red); }

.has-error input:focus,
.has-error textarea:focus { border-color: var(--red); box-shadow: 0 0 0 4px rgba(255, 59, 48, 0.24); }

.msg {
  display: flex;
  align-items: flex-start;
  gap: 6px;
  margin: 8px 2px 0;
  color: var(--label-2);
  font-size: 13px;
  letter-spacing: -0.01em;
}

.msg .ico { width: 16px; height: 16px; margin-top: 1px; }
.msg--error { color: var(--red); }

.grid-time {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 12px;
}

.grid-time .fl:first-child { grid-column: 1 / -1; }

@media (min-width: 560px) {
  .grid-time { grid-template-columns: 1.5fr 1fr 1fr; }
  .grid-time .fl:first-child { grid-column: auto; }
}

/* Katılımcılar — iOS düzenleme listesi */
.guests { display: grid; gap: 10px; }

.guest-row {
  display: flex;
  align-items: center;
  gap: 12px;
  transition: opacity 0.18s var(--ease), transform 0.18s var(--ease);
}

.guest-row.is-leaving { opacity: 0; transform: translateX(-12px); }

.guest-row input { flex: 1; min-width: 0; height: 50px; padding: 0 16px; }
.guest-row input::placeholder { color: var(--label-3); }

.round-btn {
  display: grid;
  flex: none;
  place-items: center;
  width: 24px;
  height: 24px;
  padding: 0;
  border: 0;
  border-radius: 50%;
  color: #fff;
  cursor: pointer;
}

.round-btn .ico { width: 16px; height: 16px; stroke-width: 2.8; }
.round-btn--minus { background: var(--red); }
.round-btn--plus { background: var(--green); }
.round-btn--minus:hover { filter: brightness(1.08); }

.add-row {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  margin-top: 12px;
  padding: 6px 0;
  border: 0;
  background: none;
  color: var(--link);
  font: inherit;
  font-size: 17px;
  cursor: pointer;
}

.add-row:hover { text-decoration: underline; }

/* Honeypot: ekran dışında */
.hp { position: absolute; left: -10000px; width: 1px; height: 1px; overflow: hidden; }

/* ---- Butonlar ---- */

.submit {
  display: grid;
  justify-items: center;
  gap: 14px;
  margin-top: 8px;
}

.pill {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  min-height: 48px;
  padding: 0 26px;
  border: 0;
  border-radius: 980px;
  background: var(--blue);
  color: #fff;
  font: inherit;
  font-size: 17px;
  font-weight: 500;
  letter-spacing: -0.022em;
  cursor: pointer;
  transition: background 0.2s var(--ease), transform 0.12s var(--ease), opacity 0.2s;
}

.pill:hover { background: var(--blue-hover); color: #fff; text-decoration: none; }
.pill:active { transform: scale(0.97); }
.pill:disabled { opacity: 0.55; cursor: progress; }
.pill .ico { width: 19px; height: 19px; }

.pill--block {
  width: 100%;
  min-height: 58px;
  font-size: 18px;
  font-weight: 600;
  box-shadow: 0 14px 30px -14px rgba(0, 113, 227, 0.8);
}

.pill--ghost { background: var(--fill); color: var(--label); }
.pill--ghost:hover { background: var(--fill-2); color: var(--label); }

.pill--small { min-height: 34px; padding: 0 14px; font-size: 14px; flex: none; }
.pill--small .ico { width: 16px; height: 16px; }
.pill.is-done { background: var(--green); }

.privacy {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 6px;
  margin: 0;
  color: var(--label-2);
  font-size: 13px;
  text-align: center;
}

.privacy .ico { width: 15px; height: 15px; }

.alert {
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 14px 16px;
  border-radius: 18px;
  font-size: 15px;
  font-weight: 500;
}

/* ---- Durum sayfası ---- */

.hero--status { padding-bottom: 36px; }

.status-icon {
  position: relative;
  display: grid;
  place-items: center;
  width: 92px;
  height: 92px;
  margin: 0 auto 22px;
  border-radius: 50%;
  color: #fff;
  box-shadow: 0 16px 36px -14px var(--sc);
}

.status-icon svg {
  width: 48px;
  height: 48px;
  fill: none;
  stroke: currentColor;
  stroke-width: 2.4;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.status-icon--pending { background: linear-gradient(180deg, #ffb340, #ff9500); --sc: rgba(255, 149, 0, 0.7); }
.status-icon--approved { background: linear-gradient(180deg, #5fe07f, #34c759); --sc: rgba(52, 199, 89, 0.7); }
.status-icon--rejected { background: linear-gradient(180deg, #aeaeb2, #8e8e93); --sc: rgba(0, 0, 0, 0.3); }

.status-icon--pending::after {
  content: "";
  position: absolute;
  inset: 0;
  border: 2px solid #ff9500;
  border-radius: 50%;
  opacity: 0;
}

@media (prefers-reduced-motion: no-preference) {
  .status-icon--pending::after { animation: ring 2.4s ease-out infinite; }
  .status-icon--pending .hand { transform-origin: 12px 12px; animation: spin 8s linear infinite; }
  .status-icon--approved .draw {
    stroke-dasharray: 24;
    stroke-dashoffset: 24;
    animation: draw 0.7s 0.35s cubic-bezier(0.65, 0, 0.35, 1) forwards;
  }
}

@keyframes ring {
  0% { transform: scale(1); opacity: 0.7; }
  100% { transform: scale(1.65); opacity: 0; }
}

@keyframes spin { to { transform: rotate(360deg); } }
@keyframes draw { to { stroke-dashoffset: 0; } }

.st-label {
  margin: 0 0 4px;
  font-size: 19px;
  font-weight: 600;
  letter-spacing: -0.02em;
}

.st-label--pending { color: var(--orange); }
.st-label--approved { color: var(--green); }
.st-label--rejected { color: var(--label-2); }

.stack {
  display: grid;
  gap: 18px;
  max-width: 680px;
  margin: 0 auto;
}

/* Sipariş takibi tarzı adımlar */
.tracker {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  margin: 0;
  padding: 20px 12px 18px;
  border-radius: var(--r-card);
  list-style: none;
}

.step {
  position: relative;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 9px;
  color: var(--label-3);
  font-size: 13px;
  font-weight: 500;
  line-height: 1.25;
  text-align: center;
}

.step::before {
  content: "";
  position: absolute;
  top: 14px;
  right: calc(50% + 20px);
  width: calc(100% - 40px);
  height: 3px;
  border-radius: 2px;
  background: var(--fill-2);
}

.step:first-child::before { display: none; }
.step.done::before, .step.current::before { background: var(--green); }
.step.no::before { background: var(--red); }

.step__dot {
  position: relative;
  display: grid;
  place-items: center;
  width: 30px;
  height: 30px;
  border-radius: 50%;
  background: var(--fill-2);
  color: var(--label-2);
}

.step__dot .ico { width: 17px; height: 17px; stroke-width: 2.4; }

.step.done .step__dot { background: var(--green); color: #fff; }
.step.current .step__dot { background: var(--orange); color: #fff; }
.step.no .step__dot { background: var(--red); color: #fff; }
.step.done, .step.current, .step.no { color: var(--label); font-weight: 600; }

.step.current .step__dot::after {
  content: "";
  position: absolute;
  inset: -5px;
  border: 2px solid var(--orange);
  border-radius: 50%;
  opacity: 0.35;
}

@media (prefers-reduced-motion: no-preference) {
  .step.current .step__dot::after { animation: ring 2.4s ease-out infinite; }
}

/* Wallet bileti */
.pass {
  overflow: hidden;
  border-radius: var(--r-card);
}

.pass__band {
  display: flex;
  align-items: center;
  gap: 16px;
  padding: 22px 20px;
  background: var(--band);
  color: #fff;
}

.pass--pending { --band: linear-gradient(118deg, #ff9f0a 0%, #ff375f 55%, #bf5af2 100%); }
.pass--approved { --band: linear-gradient(118deg, #30d158 0%, #00b3a4 55%, #0a84ff 100%); }
.pass--rejected { --band: linear-gradient(118deg, #8e8e93 0%, #636366 100%); }

.pass__head { min-width: 0; }

.pass__kicker {
  margin: 0;
  font-size: 12px;
  font-weight: 600;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  opacity: 0.85;
}

.pass__band h2 {
  margin: 2px 0 0;
  font-size: 26px;
  font-weight: 700;
  line-height: 1.12;
  letter-spacing: -0.03em;
  overflow-wrap: anywhere;
}

.pass__sub { margin: 3px 0 0; font-size: 15px; opacity: 0.92; overflow-wrap: anywhere; }

.pass__body {
  margin: 0;
  padding: 4px 20px 6px;
  background: var(--glass-strong);
}

.pass__row { padding: 14px 0; border-bottom: 1px solid var(--hairline); }
.pass__row:last-child { border-bottom: 0; }

.pass__row dt {
  display: flex;
  align-items: center;
  gap: 7px;
  color: var(--label-2);
  font-size: 13px;
}

.pass__row dt .ico { width: 16px; height: 16px; }

.pass__row dd {
  margin: 3px 0 0 23px;
  font-weight: 500;
  overflow-wrap: anywhere;
}

.inline-link { display: inline-flex; align-items: center; white-space: nowrap; font-weight: 400; }
.inline-link .ico { width: 15px; height: 15px; stroke-width: 2.2; }

/* iMessage balonu */
.imsg { display: flex; align-items: flex-end; gap: 10px; }

.avatar {
  display: grid;
  flex: none;
  place-items: center;
  width: 36px;
  height: 36px;
  border-radius: 50%;
  background: linear-gradient(180deg, #a5abb8, #858b98);
  color: #fff;
  font-size: 16px;
  font-weight: 600;
}

.imsg__name { margin: 0 0 4px 14px; color: var(--label-2); font-size: 12px; }

.imsg__bubble {
  max-width: 30em;
  margin: 0;
  padding: 10px 15px;
  border-radius: 20px 20px 20px 6px;
  background: var(--bubble);
  color: var(--label);
  font-size: 17px;
  line-height: 1.35;
}

/* Kopyalanabilir link kartı */
.linkcard {
  display: flex;
  align-items: center;
  gap: 14px;
  padding: 16px;
  border-radius: 22px;
}

.linkcard__body { flex: 1; min-width: 0; }
.linkcard__body p { margin: 0; color: var(--label-2); font-size: 13px; }

.linkcard__body code {
  display: block;
  margin-top: 2px;
  overflow: hidden;
  font: 500 14px/1.4 var(--mono);
  text-overflow: ellipsis;
  white-space: nowrap;
}

.actions { display: flex; justify-content: center; padding-top: 4px; }

.pre { white-space: pre-line; }

/* ---- Alt bilgi ---- */

.foot {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  gap: 8px 20px;
  max-width: 1000px;
  margin: 56px auto 0;
  padding: 18px 20px calc(28px + env(safe-area-inset-bottom));
  border-top: 1px solid var(--hairline);
  color: var(--label-2);
  font-size: 12px;
  letter-spacing: -0.01em;
}

.foot__privacy { display: inline-flex; align-items: center; gap: 5px; }
.foot__privacy .ico { width: 14px; height: 14px; }

/* ---- Giriş animasyonları ---- */

@media (prefers-reduced-motion: no-preference) {
  .rise { animation: rise 0.9s cubic-bezier(0.2, 0.8, 0.2, 1) both; }
  .d1 { animation-delay: 0.06s; }
  .d2 { animation-delay: 0.12s; }
  .d3 { animation-delay: 0.18s; }
  .d4 { animation-delay: 0.26s; }
  .d5 { animation-delay: 0.34s; }
  .d6 { animation-delay: 0.42s; }
}

@keyframes rise {
  from { opacity: 0; transform: translateY(22px); }
  to { opacity: 1; transform: none; }
}
