:root {
  color-scheme: light dark;
  --canvas: #f7f7fb;
  --surface: rgba(255, 255, 255, 0.82);
  --surface-solid: #ffffff;
  --ink: #191a26;
  --muted: #5f6276;
  --line: rgba(33, 35, 58, 0.12);
  --brand: #6558d9;
  --brand-strong: #5042c4;
  --brand-soft: #ece9ff;
  --accent: #117d8b;
  --shadow: 0 22px 70px rgba(50, 45, 105, 0.12);
  --radius-large: 28px;
  --radius-medium: 18px;
  --content: 1120px;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  min-width: 320px;
  margin: 0;
  color: var(--ink);
  background:
    radial-gradient(circle at 12% 4%, rgba(101, 88, 217, 0.16), transparent 32rem),
    radial-gradient(circle at 92% 18%, rgba(17, 125, 139, 0.12), transparent 30rem),
    var(--canvas);
  font-family: -apple-system, BlinkMacSystemFont, "SF Pro Text", "Segoe UI", sans-serif;
  font-size: 17px;
  line-height: 1.65;
  -webkit-font-smoothing: antialiased;
}

a {
  color: var(--brand-strong);
  text-decoration-thickness: 0.08em;
  text-underline-offset: 0.2em;
}

a:hover {
  text-decoration-thickness: 0.13em;
}

a:focus-visible,
button:focus-visible {
  outline: 3px solid color-mix(in srgb, var(--brand) 72%, white);
  outline-offset: 4px;
  border-radius: 4px;
}

.skip-link {
  position: fixed;
  z-index: 100;
  top: 12px;
  left: 12px;
  padding: 10px 14px;
  color: white;
  background: var(--brand-strong);
  border-radius: 10px;
  transform: translateY(-160%);
}

.skip-link:focus {
  transform: translateY(0);
}

.site-header {
  position: sticky;
  z-index: 20;
  top: 0;
  border-bottom: 1px solid var(--line);
  background: color-mix(in srgb, var(--canvas) 82%, transparent);
  backdrop-filter: blur(18px) saturate(1.2);
  -webkit-backdrop-filter: blur(18px) saturate(1.2);
}

.nav-shell,
.page-shell,
.footer-shell {
  width: min(calc(100% - 40px), var(--content));
  margin-inline: auto;
}

.nav-shell {
  display: flex;
  min-height: 72px;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 11px;
  color: var(--ink);
  font-size: 1.05rem;
  font-weight: 750;
  letter-spacing: -0.02em;
  text-decoration: none;
}

.brand-icon {
  display: block;
  width: 34px;
  height: 34px;
  border-radius: 9px;
  box-shadow: 0 8px 20px rgba(80, 66, 196, 0.24);
}

.hero-app-icon {
  width: 76px;
  height: 76px;
  margin: -5px 0 24px;
  border-radius: 20px;
  box-shadow: 0 14px 34px rgba(16, 28, 70, 0.28);
}

.site-nav {
  display: flex;
  align-items: center;
  gap: 22px;
  font-size: 0.92rem;
}

.site-nav a {
  color: var(--muted);
  text-decoration: none;
}

.site-nav a:hover,
.site-nav a[aria-current="page"] {
  color: var(--ink);
}

.language-link {
  display: inline-flex;
  align-items: center;
  min-height: 36px;
  padding: 3px 12px;
  border: 1px solid var(--line);
  border-radius: 999px;
  background: var(--surface);
}

main {
  overflow: hidden;
}

.hero {
  display: grid;
  min-height: 620px;
  align-items: center;
  padding-block: 96px 82px;
}

.hero-grid {
  display: grid;
  grid-template-columns: minmax(0, 1.25fr) minmax(290px, 0.75fr);
  align-items: center;
  gap: clamp(48px, 8vw, 96px);
}

.eyebrow {
  margin: 0 0 16px;
  color: var(--brand-strong);
  font-size: 0.78rem;
  font-weight: 760;
  letter-spacing: 0.13em;
  text-transform: uppercase;
}

h1,
h2,
h3 {
  margin-block: 0;
  line-height: 1.12;
  letter-spacing: -0.035em;
}

h1 {
  max-width: 780px;
  font-size: clamp(2.75rem, 7vw, 5.5rem);
  font-weight: 760;
}

h2 {
  font-size: clamp(2rem, 4vw, 3.25rem);
  font-weight: 720;
}

h3 {
  font-size: 1.18rem;
  font-weight: 700;
}

.hero-copy,
.page-intro {
  max-width: 760px;
  margin-block: 24px 0;
  color: var(--muted);
  font-size: clamp(1.08rem, 2vw, 1.3rem);
}

.tag-row {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-top: 30px;
}

.tag {
  padding: 7px 13px;
  color: var(--muted);
  border: 1px solid var(--line);
  border-radius: 999px;
  background: var(--surface);
  font-size: 0.86rem;
  font-weight: 620;
}

.hero-panel,
.card,
.policy-card,
.callout {
  border: 1px solid var(--line);
  background: var(--surface);
  box-shadow: var(--shadow);
}

.hero-panel {
  padding: 26px;
  border-radius: var(--radius-large);
  transform: rotate(1.5deg);
}

.window-dots {
  display: flex;
  gap: 7px;
  margin-bottom: 26px;
}

.window-dots span {
  width: 9px;
  height: 9px;
  background: var(--line);
  border-radius: 50%;
}

.flow-list {
  display: grid;
  gap: 12px;
  padding: 0;
  margin: 0;
  list-style: none;
}

.flow-list li {
  display: grid;
  grid-template-columns: 34px 1fr;
  align-items: center;
  gap: 12px;
  padding: 15px;
  border: 1px solid var(--line);
  background: color-mix(in srgb, var(--surface-solid) 76%, transparent);
  border-radius: 14px;
}

.flow-number {
  display: grid;
  width: 34px;
  height: 34px;
  place-items: center;
  color: var(--brand-strong);
  background: var(--brand-soft);
  border-radius: 10px;
  font-size: 0.82rem;
  font-weight: 760;
}

.section {
  padding-block: 92px;
}

.section-tint {
  border-block: 1px solid var(--line);
  background: color-mix(in srgb, var(--surface-solid) 57%, transparent);
}

.section-heading {
  max-width: 760px;
  margin-bottom: 38px;
}

.section-heading p {
  margin-block: 16px 0;
  color: var(--muted);
  font-size: 1.08rem;
}

.card-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 18px;
}

.card {
  padding: 28px;
  border-radius: var(--radius-medium);
  box-shadow: 0 14px 40px rgba(50, 45, 105, 0.07);
}

.card-kicker {
  display: inline-grid;
  width: 34px;
  height: 34px;
  margin-bottom: 20px;
  place-items: center;
  color: var(--brand-strong);
  background: var(--brand-soft);
  border-radius: 10px;
  font-size: 0.83rem;
  font-weight: 800;
}

.card p,
.policy-card p,
.policy-card li {
  color: var(--muted);
}

.card p {
  margin: 12px 0 0;
}

.split {
  display: grid;
  grid-template-columns: minmax(0, 0.75fr) minmax(0, 1.25fr);
  gap: clamp(40px, 8vw, 92px);
}

.check-list {
  display: grid;
  gap: 18px;
  padding: 0;
  margin: 4px 0 0;
  list-style: none;
}

.check-list li {
  position: relative;
  padding-left: 34px;
}

.check-list li::before {
  position: absolute;
  top: 0.16em;
  left: 0;
  display: grid;
  width: 22px;
  height: 22px;
  place-items: center;
  color: white;
  background: var(--accent);
  border-radius: 50%;
  content: "\2713";
  font-size: 0.76rem;
  font-weight: 800;
}

.callout {
  padding: 25px 28px;
  border-left: 4px solid var(--brand);
  border-radius: 10px var(--radius-medium) var(--radius-medium) 10px;
  box-shadow: none;
}

.callout p {
  margin: 0;
}

.turkish-block {
  border-top: 1px solid var(--line);
  background:
    linear-gradient(145deg, rgba(101, 88, 217, 0.07), rgba(17, 125, 139, 0.04)),
    color-mix(in srgb, var(--surface-solid) 50%, transparent);
}

.page-hero {
  padding-block: 80px 54px;
}

.page-hero h1 {
  font-size: clamp(2.5rem, 6vw, 4.6rem);
}

.metadata {
  margin-top: 20px;
  color: var(--muted);
  font-size: 0.9rem;
}

.policy-layout {
  display: grid;
  grid-template-columns: 230px minmax(0, 1fr);
  align-items: start;
  gap: 48px;
  padding-bottom: 96px;
}

.policy-nav {
  position: sticky;
  top: 104px;
  display: grid;
  gap: 7px;
  padding: 18px;
  border: 1px solid var(--line);
  background: var(--surface);
  border-radius: 16px;
  font-size: 0.87rem;
}

.policy-nav strong {
  margin: 0 8px 7px;
  font-size: 0.78rem;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.policy-nav a {
  padding: 6px 8px;
  color: var(--muted);
  border-radius: 7px;
  text-decoration: none;
}

.policy-nav a:hover {
  color: var(--ink);
  background: var(--brand-soft);
}

.policy-content {
  min-width: 0;
}

.policy-card {
  padding: clamp(25px, 5vw, 46px);
  border-radius: var(--radius-large);
}

.policy-card + .policy-card {
  margin-top: 28px;
}

.policy-card h2 {
  margin-top: 50px;
  font-size: clamp(1.45rem, 3vw, 2rem);
  letter-spacing: -0.025em;
}

.policy-card h2:first-child {
  margin-top: 0;
}

.policy-card h3 {
  margin-top: 30px;
}

.policy-card p,
.policy-card ul,
.policy-card ol {
  margin-block: 14px 0;
}

.policy-card li + li {
  margin-top: 8px;
}

.policy-card code {
  padding: 0.15em 0.38em;
  color: var(--ink);
  background: color-mix(in srgb, var(--brand-soft) 68%, transparent);
  border-radius: 5px;
  font-family: "SFMono-Regular", Consolas, "Liberation Mono", monospace;
  font-size: 0.84em;
  overflow-wrap: anywhere;
}

.policy-card .plain-list {
  padding-left: 1.25rem;
}

.notice {
  padding: 18px 20px;
  margin-top: 22px;
  border: 1px solid color-mix(in srgb, var(--accent) 30%, var(--line));
  background: color-mix(in srgb, var(--accent) 7%, var(--surface));
  border-radius: 13px;
}

.notice strong {
  color: var(--ink);
}

.site-footer {
  border-top: 1px solid var(--line);
  background: color-mix(in srgb, var(--surface-solid) 48%, transparent);
}

.footer-shell {
  display: flex;
  min-height: 118px;
  align-items: center;
  justify-content: space-between;
  gap: 26px;
  color: var(--muted);
  font-size: 0.88rem;
}

.footer-links {
  display: flex;
  flex-wrap: wrap;
  gap: 18px;
}

.footer-links a {
  color: var(--muted);
}

@media (prefers-color-scheme: dark) {
  :root {
    --canvas: #11121a;
    --surface: rgba(30, 31, 45, 0.82);
    --surface-solid: #1c1d29;
    --ink: #f4f3fa;
    --muted: #b5b5c3;
    --line: rgba(229, 227, 248, 0.13);
    --brand: #9a8ef8;
    --brand-strong: #b2a9ff;
    --brand-soft: #302c55;
    --accent: #55bdc5;
    --shadow: 0 24px 72px rgba(0, 0, 0, 0.32);
  }
}

@media (max-width: 820px) {
  .site-header {
    position: static;
  }

  .nav-shell {
    align-items: flex-start;
    padding-block: 18px;
  }

  .site-nav {
    flex-wrap: wrap;
    justify-content: flex-end;
    gap: 10px 16px;
  }

  .hero {
    min-height: auto;
    padding-block: 70px;
  }

  .hero-grid,
  .split {
    grid-template-columns: 1fr;
  }

  .hero-panel {
    max-width: 520px;
    transform: none;
  }

  .card-grid {
    grid-template-columns: 1fr;
  }

  .policy-layout {
    grid-template-columns: 1fr;
    gap: 24px;
  }

  .policy-nav {
    position: static;
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .policy-nav strong {
    grid-column: 1 / -1;
  }
}

@media (max-width: 560px) {
  body {
    font-size: 16px;
  }

  .nav-shell,
  .page-shell,
  .footer-shell {
    width: min(calc(100% - 28px), var(--content));
  }

  .nav-shell,
  .footer-shell {
    align-items: flex-start;
    flex-direction: column;
  }

  .brand {
    flex-shrink: 0;
  }

  .site-nav {
    justify-content: flex-start;
  }

  .section {
    padding-block: 70px;
  }

  .page-hero {
    padding-block: 58px 40px;
  }

  .policy-card {
    border-radius: 20px;
  }

  .policy-nav {
    grid-template-columns: 1fr;
  }

  .footer-shell {
    padding-block: 28px;
  }
}

@media (prefers-reduced-motion: reduce) {
  html {
    scroll-behavior: auto;
  }

  *,
  *::before,
  *::after {
    transition-duration: 0.01ms !important;
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
  }
}

@media print {
  .site-header,
  .policy-nav,
  .site-footer,
  .skip-link {
    display: none;
  }

  body {
    color: #000;
    background: #fff;
    font-size: 11pt;
  }

  .page-shell {
    width: 100%;
  }

  .policy-layout {
    display: block;
  }

  .policy-card {
    border: 0;
    box-shadow: none;
  }
}
