/* Roadta — marketing landing page
   Implemented from the Claude Design handoff (project/Roadta Landing.dc.html). */

/* ---------- Tokens ---------- */
:root {
  --navy-950: #07142A;
  --navy-900: #0A1B33;
  --navy-975: #050E1E;
  --paper: #F4F6FB;
  --white: #ffffff;
  --text-dark: #0A1B33;
  --text-light: #E8EEF9;

  --blue: #1F5CFF;
  --blue-hover: #2F6BFF;
  --blue-soft: #34D2FF;
  --purple: #C13BE8;
  --purple-soft: #7A45E8;
  --purple-light: #C99BFF;
  --red: #E4453F;
  --red-soft: #FF6B6B;
  --teal: #0C90B8;
  --orange: #C4741A;
  --orange-soft: #FFA94D;
  --green: #12946A;
  --green-soft: #3DDC97;

  --font-display: 'Sora', system-ui, sans-serif;
  --font-body: 'Manrope', system-ui, sans-serif;

  --container: 1200px;
}

/* ---------- Reset / base ---------- */
* { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
  margin: 0;
  background: var(--navy-950);
  color: var(--text-light);
  font-family: var(--font-body);
  -webkit-font-smoothing: antialiased;
  overflow-x: hidden;
}
img { display: block; max-width: 100%; }
a { color: var(--blue); text-decoration: none; }
a:hover { color: #7FA6FF; }
button { font: inherit; }
.container {
  max-width: var(--container);
  margin: 0 auto;
  padding: 0 28px;
}
.visually-hidden {
  position: absolute; width: 1px; height: 1px; padding: 0; margin: -1px;
  overflow: hidden; clip: rect(0,0,0,0); white-space: nowrap; border: 0;
}

@keyframes floaty { 0%, 100% { transform: translateY(0); } 50% { transform: translateY(-14px); } }
@keyframes pulse { 0% { opacity: .55; transform: scale(1); } 70% { opacity: 0; transform: scale(2.4); } 100% { opacity: 0; } }
@keyframes dash { to { stroke-dashoffset: -320; } }

/* ---------- Buttons ---------- */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-weight: 700;
  font-size: 16px;
  padding: 16px 30px;
  border-radius: 14px;
  border: none;
  cursor: pointer;
  transition: background-color .15s ease;
}
.btn-primary {
  background: var(--blue);
  color: #fff;
  box-shadow: 0 14px 40px rgba(31, 92, 255, .4);
}
.btn-primary:hover { background: var(--blue-hover); color: #fff; }
.btn-secondary {
  border: 1px solid rgba(255, 255, 255, .2);
  color: #fff;
  background: rgba(255, 255, 255, .04);
  font-weight: 600;
}
.btn-secondary:hover { background: rgba(255, 255, 255, .1); color: #fff; }
.btn-nav {
  background: var(--blue);
  color: #fff;
  font-weight: 700;
  font-size: 14.5px;
  padding: 11px 20px;
  border-radius: 999px;
  box-shadow: 0 8px 24px rgba(31, 92, 255, .35);
}
.btn-nav:hover { background: var(--blue-hover); color: #fff; }

/* ---------- Header ---------- */
.site-header {
  position: sticky;
  top: 0;
  z-index: 50;
  backdrop-filter: blur(18px);
  background: rgba(7, 20, 42, .78);
  border-bottom: 1px solid rgba(255, 255, 255, .08);
}
.header-inner {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 10px 28px;
  padding: 14px 28px;
}
.brand {
  display: flex;
  align-items: center;
  gap: 11px;
  color: #fff;
}
.brand-icon {
  width: 36px;
  height: 36px;
  border-radius: 11px;
  box-shadow: 0 6px 18px rgba(120, 60, 255, .35);
}
.brand-name {
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 19px;
  letter-spacing: -.02em;
}
.primary-nav {
  display: flex;
  gap: 26px;
  margin-left: 12px;
  flex-wrap: wrap;
  font-size: 14.5px;
  font-weight: 500;
}
.primary-nav a { color: rgba(232, 238, 249, .72); }
.primary-nav a:hover { color: #fff; }
.header-cta { margin-left: auto; display: flex; align-items: center; gap: 14px; }

/* ---------- Section heading helpers ---------- */
.eyebrow {
  font-size: 12.5px;
  font-weight: 700;
  letter-spacing: .14em;
  margin-bottom: 14px;
}
.section-title {
  font-family: var(--font-display);
  font-weight: 700;
  font-size: clamp(30px, 3.4vw, 44px);
  line-height: 1.12;
  letter-spacing: -.03em;
  margin: 0 0 16px;
  text-wrap: balance;
}
.section-lead {
  font-size: 17px;
  line-height: 1.6;
  margin: 0;
}

/* ---------- Hero ---------- */
.hero {
  position: relative;
  padding: 88px 28px 96px;
  background:
    radial-gradient(1100px 520px at 78% 8%, rgba(64, 86, 255, .32), transparent 62%),
    radial-gradient(760px 440px at 8% 78%, rgba(193, 59, 232, .20), transparent 60%),
    var(--navy-950);
}
.hero-gridlines {
  position: absolute;
  inset: 0;
  background-image:
    linear-gradient(rgba(255, 255, 255, .04) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255, 255, 255, .04) 1px, transparent 1px);
  background-size: 68px 68px;
  mask-image: radial-gradient(900px 600px at 50% 30%, #000, transparent 80%);
  pointer-events: none;
}
.hero-route {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  opacity: .5;
  pointer-events: none;
}
.hero-route path { animation: dash 9s linear infinite; }
.hero-grid {
  position: relative;
  max-width: var(--container);
  margin: 0 auto;
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(min(400px, 100%), 1fr));
  gap: 56px;
  align-items: center;
}
.badge {
  display: inline-flex;
  align-items: center;
  gap: 9px;
  padding: 7px 14px 7px 9px;
  border: 1px solid rgba(255, 255, 255, .14);
  border-radius: 999px;
  background: rgba(255, 255, 255, .05);
  font-size: 13px;
  font-weight: 600;
  color: rgba(232, 238, 249, .85);
  margin-bottom: 26px;
}
.badge-dot { position: relative; display: inline-flex; width: 8px; height: 8px; }
.badge-dot::before, .badge-dot::after {
  content: '';
  position: absolute;
  inset: 0;
  border-radius: 99px;
  background: var(--green-soft);
}
.badge-dot::before { animation: pulse 2.2s ease-out infinite; }
.hero-title {
  font-family: var(--font-display);
  font-weight: 800;
  font-size: clamp(40px, 4.7vw, 66px);
  line-height: 1.04;
  letter-spacing: -.035em;
  margin: 0 0 22px;
  color: #fff;
  text-wrap: balance;
}
.hero-title-gradient {
  background: linear-gradient(96deg, #FF6B6B, #C13BE8 42%, #34D2FF);
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
}
.hero-lead {
  font-size: 18.5px;
  line-height: 1.6;
  color: rgba(232, 238, 249, .68);
  max-width: 520px;
  margin: 0 0 34px;
  text-wrap: pretty;
}
.hero-actions { display: flex; flex-wrap: wrap; gap: 14px; margin-bottom: 30px; }
.store-badges { display: flex; flex-wrap: wrap; gap: 12px; margin-bottom: 34px; }
.store-badge {
  display: flex;
  align-items: center;
  gap: 10px;
  border: 1px solid rgba(255, 255, 255, .14);
  border-radius: 12px;
  padding: 9px 16px;
  background: rgba(255, 255, 255, .03);
}
.store-badge-copy { font-size: 13.5px; line-height: 1.15; color: rgba(232, 238, 249, .85); }
.store-badge-tag { display: block; font-size: 10.5px; letter-spacing: .09em; color: rgba(232, 238, 249, .5); }
.hero-stats {
  display: flex;
  flex-wrap: wrap;
  gap: 34px;
  padding-top: 26px;
  border-top: 1px solid rgba(255, 255, 255, .09);
}
.hero-stat-value { font-family: var(--font-display); font-weight: 700; font-size: 24px; color: #fff; }
.hero-stat-label { font-size: 13px; color: rgba(232, 238, 249, .5); margin-top: 3px; }

.hero-phones {
  position: relative;
  display: flex;
  justify-content: center;
  align-items: flex-end;
  min-height: 600px;
}
.hero-phones-glow {
  position: absolute;
  width: 420px;
  height: 420px;
  border-radius: 999px;
  background: radial-gradient(circle, rgba(64, 86, 255, .45), transparent 65%);
  filter: blur(30px);
}
.phone-shot {
  position: relative;
  border-radius: 30px;
  box-shadow: 0 40px 80px rgba(0, 0, 0, .55);
  border: 1px solid rgba(255, 255, 255, .12);
}
.phone-shot--side { width: 216px; }
.phone-shot--left { transform: translate(58px, 26px) rotate(-7deg); }
.phone-shot--right { transform: translate(-58px, 26px) rotate(7deg); }
.phone-shot--center {
  z-index: 2;
  width: 290px;
  border-radius: 38px;
  box-shadow: 0 50px 100px rgba(0, 0, 0, .6);
  border: 1px solid rgba(255, 255, 255, .16);
  animation: floaty 7s ease-in-out infinite;
}

/* ---------- Journey (Roadta ne yapar?) ---------- */
.journey-section { background: var(--paper); color: var(--text-dark); padding: 96px 28px; }
.journey-intro { max-width: 660px; margin-bottom: 52px; }
.journey-intro .eyebrow { color: var(--blue); }
.journey-intro .section-lead { color: rgba(10, 27, 51, .62); }
.journey-track {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(min(196px, 100%), 1fr));
}
.journey-item { --accent: #1F5CFF; }
.journey-item-line {
  position: relative;
  height: 2px;
  background: color-mix(in srgb, var(--accent) 22%, transparent);
  margin-bottom: 26px;
}
.journey-item-line::before {
  content: '';
  position: absolute;
  left: 0;
  top: -5px;
  width: 12px;
  height: 12px;
  border-radius: 99px;
  background: var(--accent);
  box-shadow: 0 0 0 5px var(--paper);
}
.journey-item--last .journey-item-line::after {
  content: '';
  position: absolute;
  right: 0;
  top: -5px;
  width: 12px;
  height: 12px;
  border-radius: 99px;
  border: 2px solid var(--accent);
  background: var(--paper);
  box-sizing: border-box;
}
.journey-item-body { padding: 0 26px 0 0; }
.journey-item-tag {
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 11.5px;
  letter-spacing: .13em;
  color: var(--accent);
  margin-bottom: 10px;
}
.journey-item h3 {
  font-family: var(--font-display);
  font-size: 17.5px;
  font-weight: 600;
  margin: 0 0 8px;
  letter-spacing: -.01em;
}
.journey-item p { margin: 0; font-size: 14.5px; line-height: 1.55; color: rgba(10, 27, 51, .6); }

/* ---------- Canlı yolculuk ---------- */
.live-section {
  background: var(--navy-900);
  padding: 104px 28px;
  position: relative;
  overflow: hidden;
}
.live-section .hero-gridlines {
  background-image:
    linear-gradient(rgba(255, 255, 255, .035) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255, 255, 255, .035) 1px, transparent 1px);
  mask-image: radial-gradient(800px 500px at 20% 40%, #000, transparent 75%);
}
.live-grid {
  position: relative;
  max-width: var(--container);
  margin: 0 auto;
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(min(330px, 100%), 1fr));
  gap: 64px;
  align-items: center;
}
.live-section .eyebrow { color: var(--blue-soft); }
.live-section .section-title { color: #fff; }
.live-section .section-lead { color: rgba(232, 238, 249, .66); font-size: 17.5px; line-height: 1.62; max-width: 480px; margin-bottom: 34px; }
.live-facts { display: flex; flex-direction: column; gap: 14px; max-width: 470px; }
.live-fact {
  display: flex;
  gap: 14px;
  align-items: flex-start;
  background: rgba(255, 255, 255, .045);
  border: 1px solid rgba(255, 255, 255, .09);
  border-radius: 16px;
  padding: 18px 20px;
}
.live-fact-value { font-family: var(--font-display); font-weight: 700; font-size: 15px; min-width: 52px; }
.live-fact-copy { font-size: 14.5px; line-height: 1.5; color: rgba(232, 238, 249, .7); }
.live-phones { display: flex; justify-content: center; align-items: flex-start; gap: 22px; flex-wrap: wrap; }
.live-phone-map { width: 270px; border-radius: 34px; box-shadow: 0 40px 90px rgba(0, 0, 0, .55); border: 1px solid rgba(255, 255, 255, .14); }
.live-phone-line { width: 240px; border-radius: 32px; margin-top: 52px; box-shadow: 0 40px 90px rgba(0, 0, 0, .5); border: 1px solid rgba(255, 255, 255, .12); }

/* ---------- Veri şeffaflığı (trust) ---------- */
.trust-section { background: var(--navy-950); padding: 88px 28px; border-top: 1px solid rgba(255, 255, 255, .07); }
.trust-grid { max-width: var(--container); margin: 0 auto; display: grid; grid-template-columns: repeat(auto-fit, minmax(min(300px, 100%), 1fr)); gap: 40px; align-items: start; }
.trust-section .eyebrow { color: var(--green-soft); }
.trust-section .section-title { color: #fff; font-size: clamp(26px, 2.8vw, 36px); line-height: 1.15; margin-bottom: 14px; }
.trust-section .section-lead { color: rgba(232, 238, 249, .6); max-width: 400px; }
.trust-cards { display: flex; flex-direction: column; gap: 14px; }
.trust-card { border-radius: 16px; padding: 20px 22px; }
.trust-card-head { display: flex; align-items: center; gap: 9px; margin-bottom: 9px; flex-wrap: wrap; }
.trust-card-label { font-family: var(--font-display); font-weight: 700; font-size: 12.5px; letter-spacing: .12em; }
.trust-card-dot { width: 8px; height: 8px; border-radius: 99px; }
.trust-card p { margin: 0; font-size: 15px; line-height: 1.55; }
.trust-card--live { border: 1px solid rgba(61, 220, 151, .35); background: rgba(61, 220, 151, .07); }
.trust-card--live .trust-card-dot { background: var(--green-soft); box-shadow: 0 0 10px rgba(61, 220, 151, .8); }
.trust-card--live .trust-card-label { color: var(--green-soft); }
.trust-card--live p { color: rgba(232, 238, 249, .72); }
.trust-card--predicted { border: 1px dashed rgba(255, 169, 77, .45); background: rgba(255, 169, 77, .05); }
.trust-card--predicted .trust-card-dot { border: 2px solid var(--orange-soft); box-sizing: border-box; }
.trust-card--predicted .trust-card-label { color: var(--orange-soft); }
.trust-card--predicted p { color: rgba(232, 238, 249, .72); }
.trust-card--offline { border: 1px dashed rgba(255, 255, 255, .18); background: rgba(255, 255, 255, .03); }
.trust-card--offline .trust-card-dot { border: 2px solid rgba(232, 238, 249, .45); box-sizing: border-box; }
.trust-card--offline .trust-card-label { color: rgba(232, 238, 249, .6); }
.trust-card--offline p { color: rgba(232, 238, 249, .62); }
.trust-card-status {
  font-size: 11px;
  font-weight: 700;
  letter-spacing: .06em;
  color: rgba(232, 238, 249, .5);
  border: 1px solid rgba(255, 255, 255, .16);
  border-radius: 99px;
  padding: 3px 9px;
}

/* ---------- İniş uyarısı ---------- */
.alert-section { background: var(--white); color: var(--text-dark); padding: 104px 28px; }
.alert-intro { max-width: 680px; margin-bottom: 56px; }
.alert-intro .eyebrow { color: var(--red); }
.alert-intro .section-lead { color: rgba(10, 27, 51, .62); font-size: 17px; line-height: 1.62; }
.alert-steps { display: grid; grid-template-columns: repeat(auto-fit, minmax(min(260px, 100%), 1fr)); gap: 34px; }
.alert-step { display: flex; flex-direction: column; gap: 22px; }
.alert-step img { width: 100%; max-width: 300px; border-radius: 32px; border: 1px solid rgba(10, 27, 51, .08); }
.alert-step--1 img, .alert-step--3 img { box-shadow: 0 24px 60px rgba(10, 27, 51, .18); }
.alert-step--2 img { box-shadow: 0 30px 70px rgba(228, 69, 63, .28); }
.alert-step-copy { max-width: 320px; }
.alert-step-tag {
  display: inline-block;
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 12px;
  border-radius: 99px;
  padding: 4px 11px;
  margin-bottom: 10px;
  border: 1px solid;
}
.alert-step--1 .alert-step-tag { color: var(--blue); border-color: rgba(31, 92, 255, .3); }
.alert-step--2 .alert-step-tag { color: var(--red); border-color: rgba(228, 69, 63, .3); }
.alert-step--3 .alert-step-tag { color: var(--green); border-color: rgba(18, 148, 106, .3); }
.alert-step-copy h3 { font-family: var(--font-display); font-size: 19px; font-weight: 600; margin: 0 0 7px; }
.alert-step-copy p { margin: 0; font-size: 14.5px; line-height: 1.55; color: rgba(10, 27, 51, .6); }

/* ---------- Yolculukta (interactive) ---------- */
.ontrip-section { background: var(--paper); color: var(--text-dark); padding: 104px 28px; }
.ontrip-grid {
  max-width: var(--container);
  margin: 0 auto;
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(min(330px, 100%), 1fr));
  gap: 64px;
  align-items: center;
}
.ontrip-phone-wrap { display: flex; justify-content: center; }
.ontrip-phone { position: relative; }
.ontrip-phone-glow {
  position: absolute;
  inset: -30px;
  border-radius: 60px;
  background: linear-gradient(150deg, rgba(31, 92, 255, .16), rgba(193, 59, 232, .14));
  filter: blur(20px);
}
.ontrip-phone-frame {
  position: relative;
  width: 300px;
  border-radius: 36px;
  box-shadow: 0 34px 80px rgba(10, 27, 51, .22);
  border: 1px solid rgba(10, 27, 51, .08);
  overflow: hidden;
  display: block;
}
.ontrip-screen {
  display: block;
  width: 300px;
  transition: opacity .35s;
  opacity: 0;
}
.ontrip-screen.is-active { opacity: 1; }
/* The base (Keşfet) screen stays in normal flow so it gives the phone
   frame its height; every other state stacks on top of it. */
.ontrip-screen--overlay-img { position: absolute; inset: 0; }
.ontrip-overlay {
  position: absolute;
  inset: 0;
  background: #fff;
  display: flex;
  flex-direction: column;
  font-size: 12px;
  transition: opacity .35s;
  opacity: 0;
}
.ontrip-overlay.is-active { opacity: 1; }
.ontrip-statusbar { height: 34px; display: flex; align-items: center; justify-content: center; position: relative; flex: none; }
.ontrip-statusbar-time { position: absolute; left: 20px; font-weight: 700; font-size: 12px; color: var(--text-dark); }
.ontrip-statusbar-pill { width: 76px; height: 20px; border-radius: 99px; background: #0A0A0A; }
.ontrip-titlebar { background: var(--navy-900); padding: 12px 18px 14px; flex: none; }
.ontrip-titlebar-row { display: flex; align-items: center; gap: 9px; }
.ontrip-titlebar-back { color: rgba(255, 255, 255, .6); font-size: 15px; }
.ontrip-titlebar-title { font-family: var(--font-display); font-weight: 700; font-size: 15px; color: #7FA6FF; }
.ontrip-titlebar-sub { font-size: 11px; color: rgba(232, 238, 249, .55); margin-left: 18px; margin-top: 2px; }
.ontrip-tabs { display: flex; gap: 16px; padding: 11px 18px 0; border-bottom: 1px solid rgba(10, 27, 51, .08); flex: none; }
.ontrip-tabs span { font-size: 12px; color: rgba(10, 27, 51, .45); padding-bottom: 8px; }
.ontrip-tabs span.is-current { font-weight: 700; color: var(--blue); border-bottom: 2px solid var(--blue); }
.ontrip-body { padding: 16px 18px; display: flex; flex-direction: column; gap: 14px; overflow: hidden; }
.ontrip-podcast-cover { width: 74px; height: 74px; border-radius: 14px; background: linear-gradient(150deg, #3B4C6B, #22314A); flex: none; }
.ontrip-podcast-row { display: flex; gap: 12px; align-items: center; }
.ontrip-podcast-title { font-family: var(--font-display); font-weight: 600; font-size: 14px; color: var(--text-dark); line-height: 1.25; }
.ontrip-podcast-meta { font-size: 11px; color: rgba(10, 27, 51, .5); margin-top: 5px; }
.ontrip-progress { height: 4px; border-radius: 9px; background: rgba(10, 27, 51, .1); position: relative; }
.ontrip-progress-fill { position: absolute; left: 0; top: 0; bottom: 0; border-radius: 9px; background: var(--blue); }
.ontrip-progress-times { display: flex; justify-content: space-between; font-size: 10.5px; color: rgba(10, 27, 51, .45); margin-top: 6px; }
.ontrip-transport { display: flex; align-items: center; justify-content: center; gap: 22px; }
.ontrip-skip { font-size: 11px; font-weight: 700; color: rgba(10, 27, 51, .55); }
.ontrip-play { width: 44px; height: 44px; border-radius: 99px; background: var(--blue); display: grid; place-items: center; }
.ontrip-eyebrow-mini { font-size: 10px; font-weight: 700; letter-spacing: .12em; color: rgba(10, 27, 51, .4); }
.ontrip-list { display: flex; flex-direction: column; gap: 9px; }
.ontrip-list-row { display: flex; justify-content: space-between; align-items: center; border: 1px solid rgba(10, 27, 51, .09); border-radius: 12px; padding: 11px 13px; }
.ontrip-list-title { font-size: 12.5px; font-weight: 600; color: var(--text-dark); }
.ontrip-list-sub { font-size: 10.5px; color: rgba(10, 27, 51, .5); margin-top: 2px; }
.ontrip-list-time { font-size: 10.5px; font-weight: 700; color: var(--blue); }
.ontrip-footnote { font-size: 10.5px; color: rgba(10, 27, 51, .45); text-align: center; }
.ontrip-card { border: 1px solid rgba(10, 27, 51, .09); border-radius: 14px; padding: 14px; }
.ontrip-card-row { display: flex; gap: 12px; }
.ontrip-book-cover { width: 44px; height: 62px; border-radius: 6px; background: linear-gradient(150deg, #3B4C6B, #22314A); flex: none; }
.ontrip-book-title { font-family: var(--font-display); font-weight: 600; font-size: 13.5px; color: var(--text-dark); line-height: 1.3; }
.ontrip-book-meta { font-size: 10.5px; color: rgba(10, 27, 51, .5); margin-top: 4px; }
.ontrip-book-pill { display: inline-block; margin-top: 8px; font-size: 10.5px; font-weight: 700; color: var(--blue); background: rgba(31, 92, 255, .09); border-radius: 99px; padding: 3px 9px; }
.ontrip-card .ontrip-progress { margin-top: 13px; }
.ontrip-study-card { display: flex; flex-direction: column; gap: 10px; }
.ontrip-study-row { display: flex; justify-content: space-between; align-items: center; }
.ontrip-study-title { font-family: var(--font-display); font-weight: 600; font-size: 13px; color: var(--text-dark); }
.ontrip-study-ready { font-size: 10.5px; font-weight: 700; color: var(--green); }
.ontrip-study-item { display: flex; align-items: center; gap: 9px; font-size: 12px; color: rgba(10, 27, 51, .62); }
.ontrip-checkbox { width: 14px; height: 14px; border-radius: 4px; border: 1.5px solid rgba(10, 27, 51, .25); flex: none; }
.ontrip-summary { background: rgba(31, 92, 255, .06); border-radius: 14px; padding: 13px 14px; }
.ontrip-summary-title { font-size: 12px; font-weight: 600; color: var(--text-dark); }
.ontrip-summary-sub { font-size: 10.5px; color: rgba(10, 27, 51, .5); margin-top: 3px; }
.ontrip-tabbar { margin-top: auto; border-top: 1px solid rgba(10, 27, 51, .08); display: flex; justify-content: space-around; padding: 9px 0 17px; flex: none; font-size: 9.5px; color: rgba(10, 27, 51, .42); }

.ontrip-section .eyebrow { color: #A32ECC; }
.ontrip-section .section-lead { color: rgba(10, 27, 51, .62); font-size: 17px; line-height: 1.62; max-width: 500px; margin-bottom: 30px; }
.option-cards { display: grid; grid-template-columns: repeat(auto-fit, minmax(min(190px, 100%), 1fr)); gap: 14px; }
.option-card {
  background: #fff;
  border: 1px solid rgba(10, 27, 51, .08);
  border-radius: 16px;
  padding: 20px;
  cursor: pointer;
  transition: border-color .2s, box-shadow .2s;
  text-align: left;
  font-family: inherit;
  color: inherit;
}
.option-card.is-active {
  border-color: var(--blue);
  box-shadow: 0 10px 30px rgba(31, 92, 255, .14);
}
.option-card-head { display: flex; align-items: center; gap: 8px; margin-bottom: 6px; }
.option-card-dot { width: 7px; height: 7px; border-radius: 99px; background: rgba(10, 27, 51, .18); }
.option-card.is-active .option-card-dot { background: var(--blue); }
.option-card-head span:last-child { font-family: var(--font-display); font-weight: 600; font-size: 16px; }
.option-card p { margin: 0; font-size: 14px; line-height: 1.5; color: rgba(10, 27, 51, .58); }
.ontrip-hint { margin: 16px 0 0; font-size: 13px; color: rgba(10, 27, 51, .45); }

/* ---------- Şehir rehberi ---------- */
.guide-section { background: var(--navy-900); padding: 104px 28px; }
.guide-grid {
  max-width: var(--container);
  margin: 0 auto;
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(min(330px, 100%), 1fr));
  gap: 64px;
  align-items: center;
}
.guide-section .eyebrow { color: var(--orange-soft); }
.guide-section .section-title { color: #fff; }
.guide-section .section-lead { color: rgba(232, 238, 249, .66); font-size: 17.5px; line-height: 1.62; max-width: 500px; margin-bottom: 30px; }
.tag-list { display: flex; flex-wrap: wrap; gap: 10px; }
.tag {
  border: 1px solid rgba(255, 255, 255, .16);
  color: rgba(232, 238, 249, .8);
  border-radius: 99px;
  padding: 9px 17px;
  font-size: 14px;
  font-weight: 500;
}
.guide-phone-wrap { display: flex; justify-content: center; }
.guide-phone { width: 300px; border-radius: 36px; box-shadow: 0 40px 90px rgba(0, 0, 0, .5); border: 1px solid rgba(255, 255, 255, .14); }

/* ---------- Sosyal + Oyunlar ---------- */
.social-section { background: var(--navy-900); padding: 0 28px 104px; }
.social-grid {
  max-width: var(--container);
  margin: 0 auto;
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(min(320px, 100%), 1fr));
  gap: 22px;
}
.social-card {
  border: 1px solid rgba(255, 255, 255, .1);
  border-radius: 28px;
  padding: 40px;
  display: flex;
  flex-direction: column;
  gap: 26px;
}
.social-card--social { background: linear-gradient(160deg, rgba(255, 255, 255, .07), rgba(255, 255, 255, .03)); }
.social-card--games { background: linear-gradient(160deg, rgba(193, 59, 232, .16), rgba(31, 92, 255, .1)); }
.social-card .eyebrow { margin-bottom: 12px; }
.social-card--social .eyebrow { color: var(--red-soft); }
.social-card--games .eyebrow { color: var(--purple-light); }
.social-card h3 {
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 28px;
  line-height: 1.15;
  letter-spacing: -.02em;
  margin: 0 0 12px;
  color: #fff;
}
.social-card p { margin: 0; font-size: 15.5px; line-height: 1.6; color: rgba(232, 238, 249, .65); }
.social-card--social > div:first-child p { margin: 0 0 16px; }
.privacy-note {
  display: flex;
  gap: 11px;
  align-items: flex-start;
  border: 1px solid rgba(255, 255, 255, .12);
  border-radius: 14px;
  padding: 14px 16px;
  background: rgba(255, 255, 255, .04);
}
.privacy-note svg { flex: none; margin-top: 1px; }
.privacy-note p { margin: 0; font-size: 14px; line-height: 1.55; color: rgba(232, 238, 249, .62); }
.social-card img { width: 250px; border-radius: 30px; align-self: center; box-shadow: 0 30px 70px rgba(0, 0, 0, .5); border: 1px solid rgba(255, 255, 255, .12); }

/* ---------- Profil ---------- */
.profile-section { background: var(--paper); color: var(--text-dark); padding: 104px 28px; }
.profile-grid {
  max-width: var(--container);
  margin: 0 auto;
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(min(330px, 100%), 1fr));
  gap: 64px;
  align-items: center;
}
.profile-phone-wrap { display: flex; justify-content: center; }
.profile-phone { width: 300px; border-radius: 36px; box-shadow: 0 34px 80px rgba(10, 27, 51, .2); border: 1px solid rgba(10, 27, 51, .08); }
.profile-section .eyebrow { color: var(--green); }
.profile-section .section-lead { color: rgba(10, 27, 51, .62); font-size: 17px; line-height: 1.62; max-width: 500px; margin-bottom: 30px; }
.profile-list { display: flex; flex-direction: column; gap: 12px; max-width: 460px; }
.profile-row { display: flex; gap: 12px; align-items: baseline; }
.profile-row-label { font-family: var(--font-display); font-weight: 600; font-size: 15px; color: var(--text-dark); min-width: 96px; }
.profile-row-copy { font-size: 14.5px; line-height: 1.5; color: rgba(10, 27, 51, .6); }
.profile-disclaimer { margin: 10px 0 0; font-size: 13px; color: rgba(10, 27, 51, .42); }

/* ---------- Nasıl çalışır ---------- */
.how-section { background: var(--navy-950); padding: 104px 28px; }
.how-intro { max-width: 620px; margin-bottom: 56px; }
.how-intro .eyebrow { color: var(--blue-soft); }
.how-intro .section-title { color: #fff; margin: 0; }
.how-steps { display: grid; grid-template-columns: repeat(auto-fit, minmax(min(230px, 100%), 1fr)); gap: 20px; }
.how-step { border-top: 2px solid var(--line); padding-top: 22px; }
.how-step-num { font-family: var(--font-display); font-weight: 700; font-size: 13px; color: var(--num); margin-bottom: 12px; }
.how-step h3 { font-family: var(--font-display); font-size: 19px; font-weight: 600; color: #fff; margin: 0 0 8px; }
.how-step p { margin: 0; font-size: 14.5px; line-height: 1.55; color: rgba(232, 238, 249, .6); }

/* ---------- FAQ ---------- */
.faq-section { background: var(--white); color: var(--text-dark); padding: 104px 28px; }
.faq-section .container { max-width: 900px; }
.faq-title { font-family: var(--font-display); font-weight: 700; font-size: clamp(30px, 3.4vw, 44px); line-height: 1.12; letter-spacing: -.03em; margin: 0 0 40px; text-align: center; }
.faq-list { display: flex; flex-direction: column; gap: 12px; }
.faq-item { border: 1px solid rgba(10, 27, 51, .1); border-radius: 16px; padding: 20px 24px; background: #FAFBFD; }
.faq-item summary {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 20px;
  cursor: pointer;
  font-family: var(--font-display);
  font-weight: 600;
  font-size: 17px;
  list-style: none;
}
.faq-item summary::-webkit-details-marker { display: none; }
.faq-plus { font-size: 22px; font-weight: 400; color: var(--blue); transition: transform .2s; }
.faq-item[open] .faq-plus { transform: rotate(45deg); }
.faq-item p { margin: 14px 0 0; font-size: 15.5px; line-height: 1.6; color: rgba(10, 27, 51, .62); }

/* ---------- Beta CTA ---------- */
.cta-section {
  position: relative;
  overflow: hidden;
  background:
    radial-gradient(800px 420px at 50% 0%, rgba(64, 86, 255, .4), transparent 65%),
    linear-gradient(180deg, var(--navy-900), var(--navy-950));
  padding: 110px 28px;
}
.cta-section .hero-gridlines { mask-image: radial-gradient(700px 380px at 50% 40%, #000, transparent 75%); }
.cta-inner { position: relative; max-width: 760px; margin: 0 auto; text-align: center; }
.cta-icon { width: 64px; height: 64px; border-radius: 19px; margin: 0 auto 26px; box-shadow: 0 18px 50px rgba(120, 60, 255, .45); }
.cta-title {
  font-family: var(--font-display);
  font-weight: 800;
  font-size: clamp(32px, 4vw, 52px);
  line-height: 1.08;
  letter-spacing: -.035em;
  margin: 0 0 18px;
  color: #fff;
  text-wrap: balance;
}
.cta-lead { font-size: 18px; line-height: 1.6; color: rgba(232, 238, 249, .66); margin: 0 0 34px; }

.cta-form { display: flex; flex-wrap: wrap; gap: 12px; justify-content: center; max-width: 520px; margin: 0 auto 16px; }
.cta-form input[type="email"] {
  flex: 1 1 260px;
  background: rgba(255, 255, 255, .07);
  border: 1px solid rgba(255, 255, 255, .18);
  border-radius: 14px;
  padding: 16px 18px;
  color: #fff;
  font-family: var(--font-body);
  font-size: 16px;
  outline: none;
}
.cta-form input[type="email"]::placeholder { color: rgba(232, 238, 249, .45); }
.cta-form input[type="email"]:focus { border-color: rgba(255, 255, 255, .4); }
.cta-form input[type="email"].has-error { border-color: var(--red-soft); }
.cta-honeypot { position: absolute; left: -9999px; width: 1px; height: 1px; overflow: hidden; }
.cta-disclaimer { font-size: 13px; color: rgba(232, 238, 249, .42); margin: 0; }
.cta-status {
  min-height: 20px;
  font-size: 14px;
  font-weight: 600;
  margin: 0 0 14px;
}
.cta-status[data-state="success"] { color: var(--green-soft); }
.cta-status[data-state="error"] { color: var(--red-soft); }
.btn-primary:disabled { opacity: .6; cursor: default; }

/* ---------- Footer ---------- */
.site-footer { background: var(--navy-975); padding: 64px 28px 36px; border-top: 1px solid rgba(255, 255, 255, .07); }
.footer-grid {
  max-width: var(--container);
  margin: 0 auto;
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(min(210px, 100%), 1fr));
  gap: 44px;
}
.footer-brand { max-width: 280px; }
.footer-brand-row { display: flex; align-items: center; gap: 11px; margin-bottom: 14px; }
.footer-brand-icon { width: 34px; height: 34px; border-radius: 10px; }
.footer-brand-name { font-family: var(--font-display); font-weight: 700; font-size: 18px; color: #fff; letter-spacing: -.02em; }
.footer-brand p { margin: 0 0 18px; font-size: 14px; line-height: 1.6; color: rgba(232, 238, 249, .45); }
.footer-social { display: flex; gap: 10px; }
.footer-social a {
  width: 34px;
  height: 34px;
  border-radius: 10px;
  border: 1px solid rgba(255, 255, 255, .14);
  display: grid;
  place-items: center;
  color: rgba(232, 238, 249, .6);
  font-size: 12px;
  font-weight: 600;
}
.footer-col { display: flex; flex-direction: column; gap: 11px; }
.footer-heading { font-size: 12px; font-weight: 700; letter-spacing: .12em; color: rgba(232, 238, 249, .4); margin-bottom: 5px; }
.footer-col a { font-size: 14.5px; color: rgba(232, 238, 249, .68); }
.footer-col a:hover { color: #fff; }
.footer-download { display: flex; flex-direction: column; gap: 12px; }
.footer-download a {
  border: 1px solid rgba(255, 255, 255, .14);
  border-radius: 12px;
  padding: 11px 16px;
  font-size: 14px;
  font-weight: 600;
  color: rgba(232, 238, 249, .8);
}
.footer-bottom {
  max-width: var(--container);
  margin: 44px auto 0;
  padding-top: 24px;
  border-top: 1px solid rgba(255, 255, 255, .07);
  display: flex;
  flex-wrap: wrap;
  gap: 18px;
  justify-content: space-between;
  font-size: 13px;
  color: rgba(232, 238, 249, .38);
}
.footer-legal { display: flex; gap: 22px; }
.footer-legal a { color: rgba(232, 238, 249, .5); }
.footer-legal a:hover { color: #fff; }

/* ---------- Tablet-portrait-only composition fixes ----------
   iPad Mini / standard iPad portrait (~768-820px) sit in a gap where the
   auto-fit grids below would otherwise fit 2 of 3 (alert-steps) or 3 of 4
   (option-cards) items, stranding the last item alone with dead space
   beside it. Scoped narrowly to that band + portrait orientation only, so
   phone (incl. landscape, which overlaps this width) and desktop/tablet-
   landscape layouts are untouched. */
@media (min-width: 700px) and (max-width: 900px) and (orientation: portrait) {
  .alert-steps {
    grid-template-columns: repeat(3, 1fr);
  }
  .option-cards {
    grid-template-columns: repeat(2, 1fr);
  }
}

/* ---------- Reduced motion ----------
   Turns off the decorative floaty/pulse/dash animations and instant-jumps
   scroll + transitions for anyone with the OS-level reduce-motion setting
   on. Purely behavioral — no visual/layout change for anyone else. */
@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
  *, *::before, *::after {
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: 0.01ms !important;
    scroll-behavior: auto !important;
  }
}

/* ---------- Legal pages (gizlilik / kullanım koşulları / kvkk) ----------
   Minimal static content pages, built from the same tokens/type/color
   system as the rest of the site. Not part of the approved marketing
   page — new, separate templates for gizlilik.html / kullanim-kosullari.html / kvkk.html. */
.legal-hero { background: var(--white); color: var(--text-dark); padding: 56px 28px 8px; }
.legal-hero .container { max-width: 760px; }
.legal-back {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  font-size: 14px;
  font-weight: 600;
  color: var(--blue);
  margin-bottom: 28px;
}
.legal-updated { font-size: 13.5px; color: rgba(10, 27, 51, .48); margin: 0 0 8px; }
.legal-title {
  font-family: var(--font-display);
  font-weight: 700;
  font-size: clamp(28px, 3.4vw, 40px);
  line-height: 1.14;
  letter-spacing: -.03em;
  margin: 0 0 16px;
}
.legal-lead { font-size: 16.5px; line-height: 1.6; color: rgba(10, 27, 51, .62); margin: 0 0 8px; }
.legal-body { background: var(--white); color: var(--text-dark); padding: 8px 28px 96px; }
.legal-body .container { max-width: 760px; }
.legal-body h2 {
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 21px;
  letter-spacing: -.01em;
  margin: 36px 0 12px;
}
.legal-body p { font-size: 16px; line-height: 1.68; color: rgba(10, 27, 51, .66); margin: 0 0 14px; }
.legal-body ul { margin: 0 0 14px; padding-left: 20px; }
.legal-body li { font-size: 16px; line-height: 1.68; color: rgba(10, 27, 51, .66); margin-bottom: 8px; }
.legal-note {
  border: 1px solid rgba(31, 92, 255, .25);
  background: rgba(31, 92, 255, .06);
  border-radius: 14px;
  padding: 18px 20px;
  font-size: 14.5px;
  line-height: 1.6;
  color: var(--text-dark);
  margin: 28px 0;
}
.legal-note strong { font-family: var(--font-display); }
.legal-footer-back { padding: 8px 0 40px; }
.legal-footer-back a {
  font-size: 14.5px;
  font-weight: 600;
  color: var(--blue);
}
