:root {
  --bg: #f1f4f6;
  --surface: #ffffff;
  --surface-strong: #f7f9fa;
  --text: #1d2932;
  --ink: #17232c;
  --muted: #5c6973;
  --line: #d4dce2;
  --line-strong: #8896a1;
  --brand: #0a6b5d;
  --brand-dark: #075449;
  --brand-deep: #05392f;
  --brand-soft: #e5f2ee;
  --accent: #b84f0a;
  --accent-dark: #973f06;
  --accent-soft: #fff0e7;
  --danger: #b42318;
  --danger-soft: #fee2e2;
  --shade: #07151a;
  --shadow: 0 16px 40px rgba(21, 33, 42, 0.1);
  --shadow-card: 0 8px 22px rgba(21, 33, 42, 0.05);
  --radius: 18px;
  --wrap: 1240px;
  --slide-ms: 7000ms;
}

* { box-sizing: border-box; }
[hidden] { display: none !important; }
html { scroll-behavior: smooth; scroll-padding-top: 88px; }
body {
  margin: 0;
  color: var(--text);
  background: var(--bg);
  font-family: "Segoe UI Variable", "Segoe UI", Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  line-height: 1.5;
  overflow-x: clip;
}
::selection { background: color-mix(in srgb, var(--brand) 22%, transparent); color: var(--ink); }
a { color: inherit; }
:focus-visible { outline: 3px solid var(--accent); outline-offset: 3px; border-radius: 6px; }
img { display: block; max-width: 100%; }
svg.i { width: 20px; height: 20px; flex: 0 0 auto; fill: none; stroke: currentColor; stroke-width: 2; stroke-linecap: round; stroke-linejoin: round; }
.wrap { width: min(100% - 32px, var(--wrap)); margin-inline: auto; }
.skip { position: absolute; left: 16px; top: -60px; z-index: 50; padding: 10px 14px; border-radius: 10px; background: var(--ink); color: #fff; font-weight: 800; }
.skip:focus { top: 12px; }
.sr-only { position: absolute; width: 1px; height: 1px; padding: 0; margin: -1px; overflow: hidden; clip: rect(0,0,0,0); white-space: nowrap; border: 0; }

/* Buttons */
.btn {
  display: inline-flex; align-items: center; justify-content: center; gap: 8px;
  min-height: 48px; padding: 0 20px;
  border: 1px solid transparent; border-radius: 10px;
  font: inherit; font-size: .9375rem; font-weight: 850; text-decoration: none;
  cursor: pointer; transition: background-color .18s ease, border-color .18s ease, transform .18s ease, box-shadow .18s ease;
}
.btn:active { transform: translateY(1px); }
.btn-accent { background: var(--accent); color: #fff; box-shadow: 0 8px 18px color-mix(in srgb, var(--accent) 28%, transparent); }
.btn-accent:hover { background: var(--accent-dark); }
.btn-brand { background: var(--brand); color: #fff; }
.btn-brand:hover { background: var(--brand-dark); }
.btn-ghost { border-color: var(--line); background: var(--surface); color: var(--ink); }
.btn-ghost:hover { border-color: var(--brand); color: var(--brand-dark); }
.btn-light { background: #fff; color: #075e51; }
.btn-light:hover { background: var(--brand-soft); }

/* Header */
.site-header {
  position: sticky; top: 0; z-index: 30;
  border-bottom: 1px solid var(--line);
  background: color-mix(in srgb, var(--surface) 94%, transparent);
  backdrop-filter: saturate(1.4) blur(10px);
}
.site-header .wrap { display: flex; align-items: center; gap: 16px; min-height: 72px; }
.logo { display: inline-flex; flex-direction: column; text-decoration: none; }
.logo img { width: auto; height: 48px; }
.status-pill {
  display: inline-flex; align-items: center; gap: 8px;
  padding: 6px 12px; border: 1px solid color-mix(in srgb, var(--brand) 28%, var(--line));
  border-radius: 999px; background: var(--brand-soft); color: var(--brand-dark);
  font-size: .8125rem; font-weight: 800; white-space: nowrap;
}
.status-dot { position: relative; width: 8px; height: 8px; border-radius: 50%; background: var(--brand); }
.status-dot::after { content: ""; position: absolute; inset: -4px; border-radius: 50%; border: 2px solid var(--brand); opacity: 0; animation: ping 2.4s cubic-bezier(.16,1,.3,1) infinite; }
@keyframes ping { 0% { transform: scale(.6); opacity: .7; } 100% { transform: scale(1.6); opacity: 0; } }
.header-actions { display: flex; align-items: center; gap: 10px; margin-left: auto; }

/* Hero */
.hero {
  padding: clamp(16px, 2.4vw, 32px) 0 clamp(28px, 4vw, 56px);
  background:
    radial-gradient(circle at 10% 0, color-mix(in srgb, var(--brand) 10%, transparent), transparent 32rem),
    radial-gradient(circle at 100% 40%, color-mix(in srgb, var(--accent) 6%, transparent), transparent 26rem),
    var(--bg);
}
.hero-grid { display: grid; grid-template-columns: minmax(0, 1.62fr) minmax(360px, 1fr); gap: clamp(14px, 1.6vw, 24px); align-items: start; }

.showcase {
  position: relative; overflow: hidden; align-self: stretch; display: flex; flex-direction: column;
  border: 1px solid var(--line); border-radius: var(--radius);
  background: var(--surface); box-shadow: var(--shadow);
}
.carousel { position: relative; flex: 1 1 auto; min-height: clamp(420px, 44vw, 600px); overflow: hidden; }
.slide { position: absolute; inset: 0; opacity: 0; visibility: hidden; transition: opacity .7s cubic-bezier(.16,1,.3,1), visibility 0s linear .7s; }
.slide.is-active { opacity: 1; visibility: visible; transition: opacity .7s cubic-bezier(.16,1,.3,1), visibility 0s; }
/* Görsel slayt süresince sola kayar; kayma bitince sıradaki slayta geçilir (süre --slide-ms = JS ms). */
.slide > img { position: absolute; inset: 0; width: 100%; height: 100%; object-fit: cover; object-position: 0% 50%; }
.slide.is-active > img { animation: slide-pan var(--slide-ms) linear forwards; }
.showcase.is-paused .slide.is-active > img { animation-play-state: paused; }
@keyframes slide-pan { from { object-position: 0% 50%; } to { object-position: 100% 50%; } }
.slide-shade { position: absolute; inset: 0; background: linear-gradient(90deg, color-mix(in srgb, var(--shade) 92%, transparent) 0%, color-mix(in srgb, var(--shade) 70%, transparent) 44%, transparent 80%); }
.slide-copy {
  position: relative; z-index: 1;
  display: flex; flex-direction: column; align-items: flex-start; justify-content: center;
  width: min(64%, 660px); height: 100%;
  padding: clamp(28px, 5vw, 72px) clamp(24px, 5vw, 72px) clamp(64px, 6vw, 88px);
  color: #fff;
}
.slide-tag {
  margin: 0 0 14px; padding: 6px 11px; border-radius: 999px;
  background: color-mix(in srgb, var(--brand) 68%, #fff); color: #061714;
  font-size: .75rem; font-weight: 950; letter-spacing: .045em; text-transform: uppercase;
}
.slide h1, .slide h2 { max-width: 15ch; margin: 0; color: #fff; font-size: clamp(2rem, 3.9vw, 3.75rem); line-height: 1.03; letter-spacing: -.045em; text-wrap: balance; }
.slide p.lede { max-width: 52ch; margin: 16px 0 22px; color: #eef6f4; font-size: clamp(.9375rem, 1.25vw, 1.0625rem); line-height: 1.6; }
.slide-copy > * { transform: translateY(10px); opacity: 0; transition: transform .8s cubic-bezier(.16,1,.3,1), opacity .8s cubic-bezier(.16,1,.3,1); }
.slide.is-active .slide-copy > * { transform: none; opacity: 1; }
.slide.is-active .slide-copy > :nth-child(2) { transition-delay: .06s; }
.slide.is-active .slide-copy > :nth-child(3) { transition-delay: .12s; }
.slide.is-active .slide-copy > :nth-child(4) { transition-delay: .18s; }

.carousel-status { position: absolute; z-index: 4; top: 14px; right: 14px; display: flex; gap: 8px; }
.chip-dark {
  display: inline-flex; align-items: center; justify-content: center; gap: 6px; min-width: 44px; min-height: 44px; padding: 0 12px;
  border: 1px solid color-mix(in srgb, #fff 55%, transparent); border-radius: 999px;
  background: color-mix(in srgb, var(--shade) 76%, transparent); color: #fff;
  font: inherit; font-size: .75rem; font-weight: 900; cursor: pointer;
}
.chip-dark svg.i { width: 14px; height: 14px; }
.arrow {
  position: absolute; z-index: 4; top: 50%; display: grid; place-items: center; width: 48px; height: 48px;
  border: 1px solid var(--line); border-radius: 50%; background: var(--surface); color: var(--ink);
  box-shadow: var(--shadow); cursor: pointer; transform: translateY(-50%); transition: transform .18s ease;
}
.arrow:hover { transform: translateY(-50%) scale(1.06); }
.arrow.prev { left: 14px; } .arrow.next { right: 14px; }

/* Section rail = carousel navigation with timing */
.rail { display: grid; grid-template-columns: repeat(6, minmax(0, 1fr)); border-top: 1px solid var(--line); background: var(--surface); }
.rail button {
  position: relative; display: flex; align-items: center; gap: 10px; min-height: 68px; padding: 12px 14px;
  border: 0; border-right: 1px solid var(--line); background: transparent; color: var(--muted);
  font: inherit; font-size: .8125rem; font-weight: 800; line-height: 1.25; text-align: left; cursor: pointer;
  transition: color .2s ease, background-color .2s ease;
}
.rail button:last-child { border-right: 0; }
.rail button:hover { background: var(--surface-strong); color: var(--ink); }
.rail button .ico { display: grid; place-items: center; width: 34px; height: 34px; border-radius: 10px; background: var(--surface-strong); color: var(--brand); transition: background-color .2s ease, color .2s ease; }
.rail button .ico svg.i { width: 18px; height: 18px; }
.rail button[aria-current="true"] { color: var(--ink); background: color-mix(in srgb, var(--brand-soft) 60%, var(--surface)); }
.rail button[aria-current="true"] .ico { background: var(--brand); color: #fff; }
.rail .bar { position: absolute; left: 0; right: 0; top: -1px; height: 3px; background: transparent; overflow: hidden; }
.rail .bar i { display: block; width: 100%; height: 100%; background: var(--brand); transform: scaleX(0); transform-origin: left; }
.rail button[aria-current="true"] .bar i { animation: fill var(--slide-ms) linear forwards; }
.showcase.is-paused .rail button[aria-current="true"] .bar i { animation-play-state: paused; }
@keyframes fill { to { transform: scaleX(1); } }

/* Signup panel */
.signup {
  position: sticky; top: 92px;
  border: 1px solid var(--line); border-radius: var(--radius);
  background: var(--surface); box-shadow: var(--shadow); overflow: hidden;
}
.signup-head { padding: 22px 24px 18px; border-bottom: 1px solid var(--line); background: linear-gradient(180deg, var(--brand-soft), var(--surface)); }
.signup-head h2 { margin: 0 0 6px; color: var(--ink); font-size: 1.5rem; line-height: 1.15; letter-spacing: -.025em; }
.signup-head p { margin: 0; color: var(--muted); font-size: .875rem; line-height: 1.55; }
form.signup-form { display: grid; gap: 16px; padding: 20px 24px 24px; }
.field { display: grid; gap: 6px; }
.field > label, .legend { color: var(--ink); font-size: .8125rem; font-weight: 850; }
.legend { margin: 0 0 8px; padding: 0; }
.opt { color: var(--muted); font-weight: 600; }
.row2 { display: grid; grid-template-columns: 1fr 1fr; gap: 12px; }
input[type="text"], input[type="email"], select {
  width: 100%; min-height: 48px; padding: 0 14px;
  border: 1px solid var(--line-strong); border-radius: 10px; background: var(--surface); color: var(--ink);
  font: inherit; font-size: .9375rem; transition: border-color .15s ease, box-shadow .15s ease;
}
select { appearance: none; padding-right: 40px; background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='16' height='16' fill='none' stroke='%235c6973' stroke-width='2' stroke-linecap='round' stroke-linejoin='round'%3E%3Cpath d='m4 6 4 4 4-4'/%3E%3C/svg%3E"); background-repeat: no-repeat; background-position: right 14px center; }
input::placeholder { color: #6b7780; }
input:hover, select:hover { border-color: var(--ink); }
input:focus, select:focus { outline: none; border-color: var(--brand); box-shadow: 0 0 0 3px color-mix(in srgb, var(--brand) 22%, transparent); }
input:focus-visible, select:focus-visible { outline: 2px solid var(--accent); outline-offset: 2px; }
.field.has-error input, .field.has-error select { border-color: var(--danger); }
.err { display: none; align-items: center; gap: 6px; color: var(--danger); font-size: .8125rem; font-weight: 700; }
.has-error > .err, fieldset.has-error .err { display: flex; }
fieldset { margin: 0; padding: 0; border: 0; min-width: 0; }

.who { display: grid; grid-template-columns: repeat(3, minmax(0, 1fr)); gap: 8px; }
.tile { position: relative; }
.tile input { position: absolute; opacity: 0; pointer-events: none; }
.tile label {
  display: flex; align-items: center; gap: 10px; min-height: 52px; padding: 10px 12px;
  border: 1px solid var(--line); border-radius: 12px; background: var(--surface); color: var(--ink);
  font-size: .8125rem; font-weight: 800; line-height: 1.25; cursor: pointer; transition: border-color .15s ease, background-color .15s ease, box-shadow .15s ease;
}
.tile label svg.i { color: var(--brand); width: 18px; height: 18px; }
.tile label:hover { border-color: var(--brand); }
.tile input:checked + label { border-color: var(--brand); background: var(--brand-soft); box-shadow: inset 0 0 0 1px var(--brand); }
.tile input:focus-visible + label { outline: 3px solid var(--accent); outline-offset: 2px; }

.reveal { display: grid; gap: 12px; padding: 14px; border-radius: 12px; background: var(--surface-strong); border: 1px dashed var(--line-strong); animation: open .35s cubic-bezier(.16,1,.3,1); }
@keyframes open { from { opacity: 0; transform: translateY(-4px); } }

.path { display: grid; gap: 8px; }
.path label {
  display: grid; grid-template-columns: auto 1fr; gap: 4px 12px; align-items: start; padding: 12px 14px;
  border: 1px solid var(--line); border-radius: 12px; cursor: pointer; transition: border-color .15s ease, background-color .15s ease;
}
.path label:hover { border-color: var(--brand); }
.path input { width: 20px; height: 20px; margin: 2px 0 0; accent-color: var(--brand); grid-row: span 2; }
.path .opt { font-weight: 600; }
.path strong { color: var(--ink); font-size: .875rem; }
.path span { color: var(--muted); font-size: .8125rem; line-height: 1.45; }
.path label:has(input:checked) { border-color: var(--brand); background: color-mix(in srgb, var(--brand-soft) 70%, var(--surface)); }

.consent { display: grid; grid-template-columns: auto 1fr; gap: 10px; align-items: start; color: var(--text); font-size: .8125rem; line-height: 1.5; }
.consent input { width: 20px; height: 20px; margin: 0; accent-color: var(--brand); }
.consent a { color: var(--brand-dark); font-weight: 800; text-underline-offset: 3px; }
.submit { width: 100%; min-height: 52px; font-size: 1rem; }
.submit[aria-busy="true"] { opacity: .75; cursor: progress; }
.turnstile { min-height: 65px; }
.turnstile:empty { display: none; }
.form-error { display: flex; gap: 8px; margin: 0; padding: 12px 14px; border: 1px solid var(--danger); border-radius: 10px; background: var(--danger-soft); color: var(--danger); font-size: .875rem; font-weight: 700; line-height: 1.45; }
.fine { display: flex; gap: 8px; margin: 0; color: var(--muted); font-size: .75rem; line-height: 1.5; }
.fine svg.i { width: 14px; height: 14px; margin-top: 2px; color: var(--brand); }

.done { padding: 28px 24px 26px; text-align: left; }
.done-mark { display: grid; place-items: center; width: 56px; height: 56px; margin-bottom: 16px; border-radius: 16px; background: var(--brand); color: #fff; }
.done-mark svg.i { width: 28px; height: 28px; stroke-width: 2.5; }
.done h2 { margin: 0 0 8px; color: var(--ink); font-size: 1.5rem; letter-spacing: -.025em; }
.done p { margin: 0 0 16px; color: var(--muted); font-size: .9375rem; }
.done ol { display: grid; gap: 10px; margin: 0 0 20px; padding: 0; list-style: none; counter-reset: s; }
.done li { display: grid; grid-template-columns: 28px 1fr; gap: 10px; align-items: start; font-size: .875rem; }
.done li::before { counter-increment: s; content: counter(s); display: grid; place-items: center; width: 28px; height: 28px; border-radius: 50%; background: var(--brand-soft); color: var(--brand-dark); font-weight: 900; font-size: .8125rem; }

/* Platform map */
.section { padding: clamp(56px, 7vw, 104px) 0; }
.section-head { display: grid; grid-template-columns: minmax(0, 1.1fr) minmax(0, 1fr); gap: 32px; align-items: end; margin-bottom: clamp(28px, 4vw, 48px); }
.section-head h2 { margin: 0; color: var(--ink); font-size: clamp(1.9rem, 3.4vw, 3rem); line-height: 1.05; letter-spacing: -.04em; text-wrap: balance; }
.section-head p { margin: 0; color: var(--muted); font-size: 1.0625rem; line-height: 1.65; max-width: 56ch; }
.map { display: grid; grid-template-columns: repeat(4, minmax(0, 1fr)); border-top: 2px solid var(--ink); }
.map-col { padding: 24px 24px 8px 0; border-right: 1px solid var(--line); }
.map-col + .map-col { padding-left: 24px; }
.map-col:last-child { border-right: 0; }
.map-col h3 { display: flex; align-items: center; gap: 10px; margin: 0 0 10px; color: var(--ink); font-size: 1.125rem; letter-spacing: -.015em; }
.map-col h3 svg.i { color: var(--brand); }
.map-col > p { margin: 0 0 16px; color: var(--muted); font-size: .9375rem; line-height: 1.6; }
.map-col ul { display: grid; gap: 0; margin: 0; padding: 0; list-style: none; }
.map-col li { display: flex; justify-content: space-between; gap: 12px; padding: 11px 0; border-top: 1px solid var(--line); font-size: .875rem; font-weight: 700; color: var(--text); }
.map-col li b { color: var(--brand-dark); font-weight: 900; font-variant-numeric: tabular-nums; white-space: nowrap; }

/* Audiences */
.audiences { display: grid; grid-template-columns: 1fr 1fr; gap: 0; overflow: hidden; border-radius: 22px; box-shadow: var(--shadow); }
.aud { padding: clamp(28px, 4vw, 56px); }
.aud h3 { margin: 0 0 12px; font-size: clamp(1.5rem, 2.4vw, 2.125rem); line-height: 1.1; letter-spacing: -.035em; }
.aud > p { margin: 0 0 24px; font-size: 1rem; line-height: 1.65; max-width: 48ch; }
.aud ul { display: grid; gap: 14px; margin: 0 0 28px; padding: 0; list-style: none; }
.aud li { display: grid; grid-template-columns: 22px 1fr; gap: 12px; font-size: .9375rem; line-height: 1.55; }
.aud li svg.i { width: 20px; height: 20px; margin-top: 2px; }
.aud-people { background: var(--brand-deep); color: #d9ece7; background-image: radial-gradient(circle at 0 100%, color-mix(in srgb, var(--brand) 55%, transparent), transparent 26rem); }
.aud-people h3 { color: #fff; }
.aud-people li svg.i { color: #7fd3bf; }
.aud-people li strong { color: #fff; }
.aud-biz { background: var(--surface); }
.aud-biz h3 { color: var(--ink); }
.aud-biz > p { color: var(--muted); }
.aud-biz li svg.i { color: var(--brand); }
.aud-biz li strong { color: var(--ink); }
.aud ul.types { display: flex; flex-wrap: wrap; gap: 6px; margin: -8px 0 28px; padding: 0; list-style: none; }
.aud ul.types li { display: inline-flex; padding: 6px 10px; border: 1px solid var(--line); border-radius: 999px; background: var(--surface-strong); color: var(--text); font-size: .75rem; font-weight: 800; }

/* Timeline */
.steps { position: relative; display: grid; grid-template-columns: repeat(3, minmax(0, 1fr)); gap: clamp(16px, 3vw, 40px); margin: 0; padding: 0; list-style: none; }
.steps::before { content: ""; position: absolute; left: 28px; right: 28px; top: 27px; height: 2px; background: repeating-linear-gradient(90deg, var(--line-strong) 0 8px, transparent 8px 14px); }
.steps li { position: relative; }
.step-num { position: relative; display: grid; place-items: center; width: 56px; height: 56px; margin-bottom: 18px; border-radius: 50%; border: 2px solid var(--brand); background: var(--bg); color: var(--brand-dark); }
.steps li:first-child .step-num { background: var(--brand); color: #fff; }
.steps h3 { margin: 0 0 8px; color: var(--ink); font-size: 1.1875rem; letter-spacing: -.02em; }
.steps p { margin: 0; color: var(--muted); font-size: .9375rem; line-height: 1.6; max-width: 36ch; }

/* FAQ */
.faq-grid { display: grid; grid-template-columns: minmax(0, .8fr) minmax(0, 1.2fr); gap: clamp(24px, 5vw, 80px); }
.faq-grid h2 { margin: 0 0 12px; color: var(--ink); font-size: clamp(1.9rem, 3.4vw, 3rem); line-height: 1.05; letter-spacing: -.04em; }
.faq-grid > div > p { margin: 0; color: var(--muted); font-size: 1rem; line-height: 1.65; }
.faq-grid > div > p a { color: var(--brand-dark); font-weight: 800; text-underline-offset: 3px; }
.faq { border-top: 2px solid var(--ink); }
.faq details { border-bottom: 1px solid var(--line); }
.faq summary { display: flex; align-items: center; justify-content: space-between; gap: 16px; min-height: 64px; padding: 16px 0; color: var(--ink); font-size: 1.0625rem; font-weight: 850; list-style: none; cursor: pointer; }
.faq summary::-webkit-details-marker { display: none; }
.faq summary .plus { position: relative; flex: 0 0 auto; width: 32px; height: 32px; border: 1px solid var(--line); border-radius: 50%; transition: transform .25s cubic-bezier(.16,1,.3,1), background-color .2s ease; }
.faq summary .plus::before, .faq summary .plus::after { content: ""; position: absolute; left: 50%; top: 50%; width: 12px; height: 2px; background: var(--ink); transform: translate(-50%, -50%); }
.faq summary .plus::after { transform: translate(-50%, -50%) rotate(90deg); }
.faq details[open] summary .plus { transform: rotate(45deg); background: var(--brand-soft); }
.faq details p { margin: 0 0 20px; color: var(--text); font-size: .9375rem; line-height: 1.7; max-width: 64ch; }

/* Closing band */
.close-band { position: relative; overflow: hidden; border-radius: 22px; color: #fff; }
.close-band > img { position: absolute; inset: 0; width: 100%; height: 100%; object-fit: cover; }
.close-band::before { content: ""; position: absolute; inset: 0; z-index: 1; background: linear-gradient(90deg, color-mix(in srgb, var(--brand-deep) 94%, transparent), color-mix(in srgb, var(--brand-deep) 72%, transparent) 55%, color-mix(in srgb, var(--brand-deep) 20%, transparent)); }
.close-inner { position: relative; z-index: 2; display: flex; flex-wrap: wrap; align-items: center; justify-content: space-between; gap: 24px; padding: clamp(32px, 5vw, 64px); }
.close-inner h2 { margin: 0 0 8px; max-width: 20ch; font-size: clamp(1.75rem, 3vw, 2.625rem); line-height: 1.08; letter-spacing: -.035em; }
.close-inner p { margin: 0; max-width: 52ch; color: #d9ece7; }

/* Footer */
.site-footer { margin-top: clamp(48px, 6vw, 88px); padding: 28px 0 36px; border-top: 1px solid var(--line); background: var(--surface); color: var(--muted); font-size: .8125rem; }
.site-footer .wrap { display: flex; flex-wrap: wrap; align-items: center; justify-content: space-between; gap: 12px 24px; }
.site-footer nav { display: flex; flex-wrap: wrap; gap: 6px 20px; }
.site-footer a { color: var(--text); font-weight: 700; text-underline-offset: 3px; }
.site-footer .footer-login { display: none; }
.site-footer .footer-login a { display: inline-flex; align-items: center; gap: 6px; }

/* Responsive */
@media (max-width: 1080px) {
  .hero-grid { grid-template-columns: 1fr; }
  .signup { position: static; }
  .showcase { align-self: start; }
  .carousel { flex: none; height: clamp(420px, 60vw, 560px); min-height: 0; }
  .map { grid-template-columns: 1fr 1fr; }
  .map-col:nth-child(2) { border-right: 0; }
  .map-col:nth-child(3) { padding-left: 0; border-top: 1px solid var(--line); }
  .map-col:nth-child(4) { border-top: 1px solid var(--line); }
}
@media (max-width: 760px) {
  .status-pill { display: none; }
  .header-actions .btn-ghost { display: none; }
  .site-footer .footer-login { display: flex; }
  .carousel { height: 520px; }
  .slide-shade { background: linear-gradient(0deg, color-mix(in srgb, var(--shade) 94%, transparent) 0%, color-mix(in srgb, var(--shade) 70%, transparent) 55%, color-mix(in srgb, var(--shade) 15%, transparent) 100%); }
  .slide-copy { width: 100%; justify-content: flex-end; padding: 24px 20px 28px; }
  .slide h1, .slide h2 { font-size: 2rem; }
  .arrow { top: 36px; transform: none; width: 44px; height: 44px; }
  .arrow:hover { transform: scale(1.06); }
  .arrow.prev { left: 12px; } .arrow.next { left: 64px; right: auto; }
  .rail { display: flex; overflow-x: auto; scroll-snap-type: x mandatory; scrollbar-width: none; }
  .rail::-webkit-scrollbar { display: none; }
  .rail button { flex: 0 0 auto; min-width: 150px; scroll-snap-align: start; }
  .signup-head, form.signup-form, .done { padding-left: 18px; padding-right: 18px; }
  .row2 { grid-template-columns: 1fr; }
  .section-head { grid-template-columns: 1fr; gap: 12px; }
  .map { grid-template-columns: 1fr; }
  .map-col, .map-col + .map-col { padding: 22px 0 6px; border-right: 0; border-top: 1px solid var(--line); }
  .map-col:first-child { border-top: 0; }
  .audiences { grid-template-columns: 1fr; }
  .steps { grid-template-columns: 1fr; gap: 28px; }
  .steps::before { left: 27px; right: auto; top: 28px; bottom: 28px; width: 2px; height: auto; background: repeating-linear-gradient(180deg, var(--line-strong) 0 8px, transparent 8px 14px); }
  .steps li { display: grid; grid-template-columns: 56px 1fr; gap: 0 16px; }
  .step-num { margin: 0; grid-row: span 2; }
  .faq-grid { grid-template-columns: 1fr; }
}
@media (max-width: 480px) {
  .who { grid-template-columns: 1fr; }
}
@media (prefers-reduced-motion: reduce) {
  .slide > img, .slide.is-active > img { animation: none !important; object-position: 50% 50% !important; }
  *, *::before, *::after { animation-duration: .01ms !important; animation-iteration-count: 1 !important; transition-duration: .01ms !important; scroll-behavior: auto !important; }
}

/* Ön kayıt aydınlatma metni */
.legal { max-width: 760px; padding: clamp(32px, 5vw, 64px) 0 16px; }
.legal h1 { margin: 0 0 12px; color: var(--ink); font-size: clamp(1.9rem, 3.4vw, 2.75rem); line-height: 1.08; letter-spacing: -.035em; }
.legal-lede { margin: 0 0 28px; color: var(--muted); font-size: 1.0625rem; line-height: 1.65; }
.legal h2 { margin: 32px 0 8px; color: var(--ink); font-size: 1.1875rem; letter-spacing: -.015em; }
.legal p, .legal li { color: var(--text); font-size: .9375rem; line-height: 1.7; }
.legal ul { margin: 0; padding-left: 20px; }
.legal a { color: var(--brand-dark); font-weight: 700; text-underline-offset: 3px; }
.legal-date { margin-top: 32px; color: var(--muted) !important; font-size: .8125rem !important; }
.site-footer nav a + a { margin-left: 0; }
