:root {
  --navy: #1c2c46;
  --navy-2: #122036;
  --cyan: #33cddd;
  --teal: #71a1a8;
  --teal-ink: #557b83;
  --sage: #c8d6d3;
  --ice: #d3f4f1;
  --paper: #f7f9fa;
  --white: #fff;
  --ink: #1c2c46;
  --muted: #52637b;
  --line: rgba(28, 44, 70, .15);
  --shadow: 0 20px 55px rgba(28, 44, 70, .11);
  --glow-cyan: 0 0 0 1px rgba(51, 205, 221, .28), 0 18px 48px rgba(51, 205, 221, .18);
  --glow-cyan-strong: 0 0 0 1px rgba(51, 205, 221, .48), 0 16px 44px rgba(51, 205, 221, .3);
  --radius-sm: 8px;
  --radius: 16px;
  --radius-lg: 24px;
  --s1: 8px;
  --s2: 16px;
  --s3: 24px;
  --s4: 32px;
  --s5: 48px;
  --s6: 64px;
  --s7: 96px;
  --container: 1200px;
}

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

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  overflow-x: hidden;
  color: var(--ink);
  background: var(--white);
  font-family: 'Montserrat', Arial, sans-serif;
  font-size: 16px;
  line-height: 1.65;
  -webkit-font-smoothing: antialiased;
}

body.menu-open,
body.modal-open {
  overflow: hidden;
}

img,
svg {
  display: block;
  max-width: 100%;
}

a {
  color: inherit;
  text-decoration: none;
}

button,
input,
select,
textarea {
  font: inherit;
}

button {
  color: inherit;
}

p,
h1,
h2,
h3 {
  margin-top: 0;
}

p:last-child {
  margin-bottom: 0;
}

::selection {
  color: var(--navy);
  background: var(--cyan);
}

.sr-only {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  white-space: nowrap;
  border: 0;
}

:focus-visible {
  outline: 3px solid var(--cyan);
  outline-offset: 3px;
}

.container {
  width: min(calc(100% - 32px), var(--container));
  margin-inline: auto;
}

.section {
  padding-block: var(--s6);
}

.section--paper {
  background: var(--paper);
}

.section--navy {
  position: relative;
  overflow: hidden;
  isolation: isolate;
  color: var(--white);
  background: var(--navy);
}

.section--navy::before {
  position: absolute;
  z-index: 0;
  inset: 0;
  content: '';
  opacity: .32;
  background-image: linear-gradient(rgba(51, 205, 221, .055) 1px, transparent 1px), linear-gradient(90deg, rgba(51, 205, 221, .055) 1px, transparent 1px);
  background-size: 48px 48px;
  mask-image: linear-gradient(115deg, transparent 4%, #000 42%, transparent 88%);
}

.section--navy > .container {
  position: relative;
  z-index: 1;
}

.section-kicker {
  display: flex;
  align-items: center;
  gap: 12px;
  margin-bottom: var(--s2);
  color: var(--teal-ink);
  font-size: .75rem;
  font-weight: 700;
  letter-spacing: .14em;
  text-transform: uppercase;
}

.section-kicker::before {
  width: 32px;
  height: 2px;
  content: '';
  background: currentColor;
  box-shadow: 0 0 12px currentColor;
}

.section-kicker--cyan {
  color: var(--cyan);
}

.section-heading {
  max-width: 760px;
  margin-bottom: var(--s5);
}

.section-heading h2 {
  margin-bottom: var(--s2);
  font-size: clamp(2rem, 5.5vw, 3.75rem);
  line-height: 1.06;
  letter-spacing: -.045em;
}

.section-heading p {
  max-width: 650px;
  color: var(--muted);
  font-size: 1.02rem;
}

.section--navy .section-heading p {
  color: var(--sage);
}

.eyebrow {
  display: inline-flex;
  align-items: center;
  gap: var(--s1);
  color: var(--teal-ink);
  font-size: .75rem;
  font-weight: 700;
  letter-spacing: .14em;
  text-transform: uppercase;
}

.eyebrow::before {
  width: 8px;
  height: 8px;
  content: '';
  background: var(--cyan);
  border-radius: 50%;
  box-shadow: 0 0 0 5px rgba(51, 205, 221, .16);
}

.button {
  position: relative;
  display: inline-flex;
  overflow: hidden;
  isolation: isolate;
  min-height: 48px;
  align-items: center;
  justify-content: center;
  gap: 10px;
  padding: 12px 20px;
  border: 1px solid transparent;
  border-radius: var(--radius-sm);
  font-weight: 700;
  line-height: 1.2;
  transition: transform .2s ease, background .2s ease, border-color .2s ease, color .2s ease, box-shadow .2s ease;
}

.button::after {
  position: absolute;
  z-index: 0;
  top: -120%;
  left: -35%;
  width: 24%;
  height: 340%;
  content: '';
  transform: rotate(18deg);
  opacity: 0;
  background: rgba(255, 255, 255, .42);
  transition: left .45s ease, opacity .2s ease;
  pointer-events: none;
}

.button:hover {
  transform: translateY(-2px);
}

.button:hover::after {
  left: 118%;
  opacity: 1;
}

.button--cyan {
  color: var(--navy);
  background: var(--cyan);
  box-shadow: 0 8px 0 rgba(18, 32, 54, .12), 0 0 24px rgba(51, 205, 221, .28);
}

.button--cyan:hover {
  background: #65dce7;
  box-shadow: 0 5px 0 rgba(18, 32, 54, .12), 0 0 34px rgba(51, 205, 221, .42);
}

.button--navy {
  color: var(--white);
  background: var(--navy);
  box-shadow: 0 12px 28px rgba(18, 32, 54, .2), 0 0 0 1px rgba(51, 205, 221, .14);
}

.button--navy:hover {
  background: var(--navy-2);
  box-shadow: 0 16px 36px rgba(18, 32, 54, .26), 0 0 24px rgba(51, 205, 221, .2);
}

.button--outline {
  color: var(--white);
  border-color: rgba(255, 255, 255, .45);
}

.button--outline:hover {
  border-color: var(--cyan);
  color: var(--cyan);
}

.skip-link {
  position: fixed;
  z-index: 1000;
  top: var(--s2);
  left: var(--s2);
  padding: var(--s1) var(--s2);
  transform: translateY(-200%);
  color: var(--navy);
  background: var(--cyan);
  border-radius: var(--radius-sm);
  font-weight: 700;
}

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

.signal-bar {
  color: var(--white);
  background: var(--navy-2);
}

.signal-bar__inner {
  display: flex;
  min-height: 32px;
  align-items: center;
  gap: var(--s1);
  font-size: .65rem;
  font-weight: 700;
  letter-spacing: .08em;
  text-transform: uppercase;
}

.signal-bar i {
  width: 3px;
  height: 3px;
  background: var(--cyan);
  border-radius: 50%;
}

.signal-bar__status {
  display: none;
  margin-left: auto;
  color: var(--sage);
}

.site-header {
  position: sticky;
  z-index: 100;
  top: 0;
  background: rgba(255, 255, 255, .96);
  border-bottom: 1px solid transparent;
  transition: border-color .2s ease, box-shadow .2s ease;
}

.site-header.is-scrolled {
  border-color: var(--line);
  box-shadow: 0 10px 30px rgba(28, 44, 70, .08), 0 1px 0 rgba(51, 205, 221, .18);
}

.nav-wrap {
  display: flex;
  height: 72px;
  align-items: center;
  justify-content: space-between;
  gap: var(--s3);
}

.brand {
  display: inline-flex;
  align-items: center;
  flex: 0 0 auto;
  line-height: 1;
}

.brand-logo {
  width: clamp(142px, 17vw, 174px);
  height: auto;
}

.desktop-nav,
.nav-cta {
  display: none;
}

.menu-toggle {
  display: grid;
  width: 44px;
  height: 44px;
  place-items: center;
  padding: 0;
  color: var(--navy);
  background: var(--ice);
  border: 0;
  border-radius: var(--radius-sm);
  cursor: pointer;
}

.mobile-menu {
  position: fixed;
  z-index: 99;
  inset: 104px 0 0;
  padding: var(--s4) var(--s2);
  background: var(--white);
}

.mobile-menu nav {
  display: grid;
  margin-bottom: var(--s4);
}

.mobile-menu nav a {
  padding-block: var(--s2);
  border-bottom: 1px solid var(--line);
  font-size: 1.5rem;
  font-weight: 700;
}

.mobile-menu nav a[aria-current] {
  color: var(--teal-ink);
}

.hero {
  position: relative;
  overflow: hidden;
  padding-block: var(--s5) var(--s6);
  background: var(--paper);
}

.hero::before {
  position: absolute;
  inset: 0;
  content: '';
  opacity: .5;
  background-image: linear-gradient(rgba(28, 44, 70, .055) 1px, transparent 1px), linear-gradient(90deg, rgba(28, 44, 70, .055) 1px, transparent 1px);
  background-size: 32px 32px;
  mask-image: linear-gradient(to right, #000, transparent 72%);
}

.hero::after {
  position: absolute;
  top: 4%;
  right: -12%;
  width: min(52vw, 720px);
  aspect-ratio: 1;
  content: '';
  opacity: .75;
  background: radial-gradient(circle, rgba(51, 205, 221, .17), transparent 66%);
  pointer-events: none;
}

.hero-grid {
  position: relative;
  z-index: 1;
  display: grid;
  gap: var(--s5);
}

.hero-copy h1 {
  max-width: 780px;
  margin: var(--s3) 0;
  font-size: clamp(2.1rem, 9.2vw, 7rem);
  font-weight: 800;
  line-height: .93;
  letter-spacing: -.07em;
}

.hero-copy h1 span {
  display: block;
  color: #648f97;
}

.hero-copy h1 em {
  position: relative;
  color: var(--navy);
  font-style: normal;
}

.hero-copy h1 em::after {
  position: absolute;
  bottom: 2px;
  left: 0;
  width: 100%;
  height: 8px;
  content: '';
  z-index: -1;
  background: var(--cyan);
}

.hero-lead {
  max-width: 600px;
  margin-bottom: var(--s4);
  color: var(--muted);
  font-size: 1.05rem;
}

.hero-action {
  display: flex;
  align-items: center;
  gap: var(--s3);
}

.hero-note {
  display: none;
  max-width: 200px;
  color: var(--muted);
  font-size: .72rem;
  line-height: 1.5;
}

.hero-stage {
  position: relative;
  min-height: 420px;
  padding: var(--s3);
  overflow: hidden;
  color: var(--white);
  background-color: var(--navy);
  background-image: linear-gradient(rgba(51, 205, 221, .04) 1px, transparent 1px), linear-gradient(90deg, rgba(51, 205, 221, .04) 1px, transparent 1px);
  background-size: 24px 24px;
  border: 1px solid rgba(51, 205, 221, .34);
  border-radius: var(--radius-lg) var(--radius-lg) 80px var(--radius-lg);
  box-shadow: 0 30px 70px rgba(18, 32, 54, .2), 0 0 42px rgba(51, 205, 221, .13);
}

.stage-head {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding-bottom: var(--s2);
  color: var(--sage);
  border-bottom: 1px solid rgba(255, 255, 255, .14);
  font-size: .68rem;
  font-weight: 700;
  letter-spacing: .12em;
  text-transform: uppercase;
}

.stage-live {
  display: flex;
  align-items: center;
  gap: 7px;
}

.stage-live i {
  width: 7px;
  height: 7px;
  background: var(--cyan);
  border-radius: 50%;
  box-shadow: 0 0 0 5px rgba(51, 205, 221, .14);
  animation: signal-pulse 2.4s ease-in-out infinite;
}

.stage-map {
  position: absolute;
  inset: 80px 20px 40px;
}

.stage-map svg {
  width: 100%;
  height: 100%;
}

.stage-network {
  overflow: visible;
}

.stage-route line {
  stroke: rgba(211, 244, 241, .35);
  stroke-width: 1.5;
  stroke-dasharray: 5 7;
}

.stage-route circle {
  fill: var(--cyan);
  stroke: rgba(51, 205, 221, .18);
  stroke-width: 12;
  filter: drop-shadow(0 0 8px rgba(51, 205, 221, .75));
}

.stage-route text {
  fill: var(--navy);
  font-family: 'Montserrat', Arial, sans-serif;
  font-size: 11px;
  font-weight: 800;
  text-anchor: middle;
  dominant-baseline: central;
}

.stage-center {
  position: absolute;
  top: 50%;
  left: 50%;
  display: grid;
  width: 100px;
  height: 100px;
  place-items: center;
  transform: translate(-50%, -50%);
  color: var(--white);
  background: var(--navy-2);
  border: 1px solid var(--cyan);
  border-radius: 28px;
  box-shadow: 0 0 0 12px rgba(51, 205, 221, .07), 0 0 34px rgba(51, 205, 221, .28);
  text-align: center;
}

.stage-center b {
  display: block;
  color: var(--cyan);
  font-size: 1.5rem;
}

.stage-center span {
  font-size: .58rem;
  font-weight: 700;
  line-height: 1.3;
  letter-spacing: .08em;
  text-transform: uppercase;
}

.fact-rail {
  position: relative;
  display: grid;
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
}

.fact {
  display: grid;
  grid-template-columns: 72px 1fr;
  gap: var(--s2);
  align-items: center;
  padding-block: var(--s3);
  border-bottom: 1px solid var(--line);
}

.fact:last-child {
  border-bottom: 0;
}

.fact strong {
  color: var(--navy);
  font-size: 2.8rem;
  line-height: 1;
  letter-spacing: -.06em;
}

.fact span {
  max-width: 180px;
  color: var(--muted);
  font-size: .77rem;
  font-weight: 600;
  line-height: 1.5;
}

.answer-section {
  padding-block: var(--s5) 0;
}

.answer-panel {
  display: grid;
  gap: var(--s4);
  padding: var(--s4);
  background: var(--ice);
  border-left: 6px solid var(--cyan);
  border-radius: var(--radius);
  box-shadow: 0 18px 46px rgba(51, 205, 221, .1);
}

.answer-panel h2 {
  margin: 0;
  font-size: clamp(1.8rem, 5vw, 3rem);
  line-height: 1.05;
  letter-spacing: -.04em;
}

.answer-panel__content > p {
  color: var(--muted);
}

.answer-panel__content > p strong {
  color: var(--navy);
}

.answer-panel dl {
  display: grid;
  gap: var(--s1);
  margin: var(--s3) 0 0;
}

.answer-panel dl div {
  display: grid;
  grid-template-columns: minmax(105px, .65fr) 1.35fr;
  gap: var(--s2);
  padding-top: var(--s1);
  border-top: 1px solid rgba(28, 44, 70, .14);
}

.answer-panel dt,
.answer-panel dd {
  margin: 0;
  font-size: .72rem;
}

.answer-panel dt {
  color: var(--teal-ink);
  font-weight: 700;
}

.answer-panel dd {
  color: var(--navy);
  font-weight: 600;
}

.journey {
  display: grid;
  gap: var(--s3);
  counter-reset: step;
}

.journey-step {
  position: relative;
  padding: var(--s4);
  overflow: hidden;
  background: var(--paper);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  counter-increment: step;
  transition: transform .2s ease, border-color .2s ease, box-shadow .2s ease;
}

.journey-step:hover {
  transform: translateY(-5px);
  border-color: var(--cyan);
  box-shadow: var(--shadow), 0 0 0 1px rgba(51, 205, 221, .22), 0 0 28px rgba(51, 205, 221, .12);
}

.journey-step::after {
  position: absolute;
  top: -20px;
  right: 12px;
  content: '0' counter(step);
  color: rgba(28, 44, 70, .06);
  font-size: 6rem;
  font-weight: 800;
  line-height: 1;
}

.journey-step:nth-child(2) {
  background: var(--ice);
}

.journey-step:nth-child(3) {
  color: var(--white);
  background: var(--navy);
}

.journey-step .step-icon {
  display: grid;
  width: 48px;
  height: 48px;
  place-items: center;
  margin-bottom: var(--s4);
  color: var(--navy);
  background: var(--cyan);
  border-radius: 14px;
}

.journey-step h3 {
  margin-bottom: var(--s1);
  font-size: 1.35rem;
}

.journey-step p {
  color: var(--muted);
  font-size: .9rem;
}

.journey-step:nth-child(3) p {
  color: var(--sage);
}

.featured-grid {
  display: grid;
  gap: var(--s2);
}

.feature-card {
  position: relative;
  min-height: 260px;
  padding: var(--s4);
  overflow: hidden;
  border-radius: var(--radius);
  border: 1px solid transparent;
  transition: transform .25s ease, border-color .25s ease, box-shadow .25s ease;
}

.feature-card:hover {
  transform: translateY(-5px);
  border-color: rgba(51, 205, 221, .58);
  box-shadow: var(--glow-cyan);
}

.feature-card--dark {
  color: var(--white);
  background: var(--navy);
}

.feature-card--cyan {
  background: var(--cyan);
}

.feature-card--ice {
  background: var(--ice);
}

.feature-card--outline {
  border: 1px solid var(--teal);
}

.feature-card--navy-outline {
  color: var(--white);
  background: var(--navy-2);
  border-color: rgba(51, 205, 221, .35);
}

.feature-card__icon {
  width: 56px;
  height: 56px;
  margin-bottom: var(--s5);
  color: var(--teal-ink);
  filter: drop-shadow(0 0 10px rgba(51, 205, 221, .22));
}

.feature-card--dark .feature-card__icon {
  color: var(--cyan);
}

.feature-card--navy-outline .feature-card__icon {
  color: var(--cyan);
}

.feature-card > small {
  display: block;
  margin-bottom: 5px;
  color: var(--teal-ink);
  font-size: .62rem;
  font-weight: 700;
  letter-spacing: .08em;
  text-transform: uppercase;
}

.feature-card--dark > small,
.feature-card--navy-outline > small {
  color: var(--cyan);
}

.feature-card h3 {
  max-width: 320px;
  margin-bottom: var(--s1);
  font-size: 1.45rem;
  letter-spacing: -.03em;
}

.feature-card p {
  max-width: 350px;
  color: var(--muted);
  font-size: .85rem;
}

.feature-card--dark p {
  color: var(--sage);
}

.feature-card--navy-outline p {
  color: var(--sage);
}

.affiliate-statement {
  margin-top: var(--s2);
  padding-left: var(--s2);
  color: var(--navy);
  border-left: 3px solid var(--cyan);
}

.feature-card__line {
  position: absolute;
  right: 0;
  bottom: 30px;
  width: 35%;
  height: 1px;
  background: currentColor;
  opacity: .25;
}

.section-link {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  margin-top: var(--s4);
  font-weight: 700;
}

.section-link:hover {
  color: var(--teal-ink);
}

.regions-layout {
  display: grid;
  gap: var(--s5);
  align-items: center;
}

.regions-copy h2 {
  margin-bottom: var(--s3);
  font-size: clamp(2.4rem, 6vw, 4.6rem);
  line-height: 1;
  letter-spacing: -.055em;
}

.regions-copy p {
  color: var(--sage);
}

.regions-list {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: var(--s1);
  margin-top: var(--s4);
}

.regions-list span {
  padding: 10px 12px;
  color: var(--ice);
  border: 1px solid rgba(211, 244, 241, .2);
  border-radius: var(--radius-sm);
  font-size: .72rem;
  font-weight: 600;
}

.regions-visual {
  display: block;
  min-width: 0;
}

.turkey-map-card {
  overflow: hidden;
  background-color: var(--navy);
  background-image: linear-gradient(rgba(51, 205, 221, .035) 1px, transparent 1px), linear-gradient(90deg, rgba(51, 205, 221, .035) 1px, transparent 1px);
  background-size: 24px 24px;
  border: 1px solid rgba(51, 205, 221, .36);
  border-radius: var(--radius-lg);
  box-shadow: 0 28px 70px rgba(7, 21, 37, .24), 0 0 38px rgba(51, 205, 221, .14), inset 0 1px 0 rgba(255, 255, 255, .08);
}

.turkey-map-toolbar {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 18px 22px;
  color: var(--ice);
  border-bottom: 1px solid rgba(51, 205, 221, .24);
  font-size: .67rem;
  font-weight: 800;
  letter-spacing: .08em;
  text-transform: uppercase;
}

.turkey-map-toolbar span {
  display: inline-flex;
  align-items: center;
  gap: 9px;
}

.turkey-map-toolbar i {
  width: 8px;
  height: 8px;
  background: var(--cyan);
  border-radius: 50%;
  box-shadow: 0 0 0 5px rgba(51, 205, 221, .14);
  animation: signal-pulse 2.4s ease-in-out infinite;
}

.turkey-map-toolbar small {
  color: var(--sage);
  font-size: inherit;
  font-weight: 600;
  letter-spacing: .04em;
  text-transform: none;
}

.turkey-map {
  display: block;
  width: 100%;
  padding: clamp(12px, 2vw, 24px) 14px 0;
  overflow: visible;
}

.turkey-map__region {
  stroke: var(--navy);
  stroke-width: 4;
  stroke-linecap: round;
  stroke-linejoin: round;
  vector-effect: non-scaling-stroke;
  cursor: pointer;
  outline: none;
  transition: fill .18s ease, filter .18s ease, opacity .18s ease;
}

.turkey-map__region[data-region="marmara"] { fill: #37cedb; }
.turkey-map__region[data-region="ege"] { fill: #6bd5d1; }
.turkey-map__region[data-region="akdeniz"] { fill: #2caebc; }
.turkey-map__region[data-region="ic-anadolu"] { fill: #5ec4cb; }
.turkey-map__region[data-region="karadeniz"] { fill: #9bded9; }
.turkey-map__region[data-region="dogu-anadolu"] { fill: #438fa1; }
.turkey-map__region[data-region="guneydogu-anadolu"] { fill: #71bcb5; }

.turkey-map__region:hover,
.turkey-map__region:focus-visible,
.turkey-map__region.is-active {
  fill: var(--white);
  filter: url(#map-region-shadow);
}

.turkey-map__region:focus-visible {
  stroke: var(--cyan);
  stroke-width: 7;
}

.turkey-map__labels {
  fill: var(--white);
  stroke: var(--navy);
  stroke-width: 4px;
  stroke-linejoin: round;
  paint-order: stroke fill;
  font-size: 23px;
  font-weight: 800;
  letter-spacing: .035em;
  text-anchor: middle;
  pointer-events: none;
}

.turkey-map__labels text {
  transition: fill .18s ease, stroke .18s ease;
}

.turkey-map__labels text.is-active {
  fill: var(--navy);
  stroke: var(--white);
}

.turkey-map-detail {
  display: grid;
  grid-template-columns: auto 1fr;
  gap: 18px;
  margin: 0 22px;
  padding: 20px 0 18px;
  color: var(--white);
  border-top: 1px solid rgba(211, 244, 241, .16);
}

.turkey-map-detail__number {
  display: grid;
  width: 54px;
  height: 54px;
  place-items: center;
  color: var(--navy);
  background: var(--cyan);
  border-radius: 50%;
  font-size: 1rem;
  font-weight: 800;
  box-shadow: 0 0 0 6px rgba(51, 205, 221, .1), 0 0 24px rgba(51, 205, 221, .38);
}

.turkey-map-detail__eyebrow {
  display: block;
  margin-bottom: 5px;
  color: var(--cyan);
  font-size: .62rem;
  font-weight: 800;
  letter-spacing: .1em;
  text-transform: uppercase;
}

.turkey-map-detail h3 {
  margin-bottom: 6px;
  font-size: clamp(1.25rem, 2.4vw, 1.7rem);
}

.turkey-map-detail p {
  color: var(--sage);
  font-size: .78rem;
}

.turkey-map-detail__meta {
  display: flex;
  flex-wrap: wrap;
  gap: 5px 10px;
  margin-top: 10px;
  font-size: .68rem;
}

.turkey-map-detail__meta span {
  color: var(--teal);
  font-weight: 800;
  text-transform: uppercase;
}

.turkey-map-detail__meta strong {
  color: var(--ice);
  font-weight: 600;
}

.turkey-map-detail small {
  display: block;
  margin-top: 9px;
  color: rgba(211, 244, 241, .65);
  font-size: .66rem;
}

.turkey-map-hint {
  margin: 0;
  padding: 0 22px 18px;
  color: rgba(211, 244, 241, .55);
  font-size: .62rem;
}

@media (max-width: 639px) {
  .turkey-map-toolbar {
    padding-inline: 16px;
  }

  .turkey-map-toolbar small {
    display: none;
  }

  .turkey-map {
    padding-inline: 6px;
  }

  .turkey-map__labels {
    font-size: 30px;
    letter-spacing: 0;
  }

  .turkey-map-detail {
    gap: 13px;
    margin-inline: 16px;
  }

  .turkey-map-detail__number {
    width: 46px;
    height: 46px;
  }

  .turkey-map-hint {
    padding-inline: 16px;
  }
}

.cta-band {
  position: relative;
  overflow: hidden;
  padding-block: var(--s6);
  background: var(--cyan);
}

.cta-band::before {
  position: absolute;
  inset: 0;
  content: '';
  opacity: .2;
  background-image: linear-gradient(rgba(28, 44, 70, .16) 1px, transparent 1px), linear-gradient(90deg, rgba(28, 44, 70, .16) 1px, transparent 1px);
  background-size: 32px 32px;
  pointer-events: none;
}

.cta-band::after {
  position: absolute;
  top: -65%;
  right: -10%;
  width: 420px;
  height: 420px;
  content: '';
  border: 70px solid rgba(28, 44, 70, .08);
  border-radius: 50%;
}

.cta-band__inner {
  position: relative;
  z-index: 1;
  display: grid;
  gap: var(--s4);
  align-items: end;
}

.cta-band h2 {
  max-width: 800px;
  margin: 0;
  font-size: clamp(2.3rem, 7vw, 5rem);
  line-height: .98;
  letter-spacing: -.06em;
}

.page-hero {
  position: relative;
  overflow: hidden;
  padding-block: var(--s6);
  color: var(--white);
  background-color: var(--navy);
  background-image: linear-gradient(rgba(51, 205, 221, .04) 1px, transparent 1px), linear-gradient(90deg, rgba(51, 205, 221, .04) 1px, transparent 1px);
  background-size: 40px 40px;
  border-bottom: 1px solid rgba(51, 205, 221, .2);
}

.page-hero::after {
  position: absolute;
  right: -10%;
  bottom: -70%;
  width: 520px;
  height: 520px;
  content: '';
  border: 1px solid rgba(51, 205, 221, .25);
  border-radius: 50%;
  box-shadow: 0 0 0 70px rgba(51, 205, 221, .03), 0 0 0 140px rgba(51, 205, 221, .025);
}

.page-hero__inner {
  position: relative;
  z-index: 1;
  display: grid;
  gap: var(--s4);
}

.page-hero__inner > *,
.catalog-overview > *,
.catalog-tools > * {
  min-width: 0;
}

.page-hero h1 {
  max-width: 950px;
  margin: var(--s2) 0 0;
  font-size: clamp(3rem, 10vw, 6.5rem);
  line-height: .95;
  letter-spacing: -.065em;
}

.page-hero h1 span {
  color: var(--cyan);
  text-shadow: 0 0 28px rgba(51, 205, 221, .22);
}

.page-hero__side {
  max-width: 500px;
  color: var(--sage);
}

.page-hero__side a {
  display: inline-flex;
  align-items: center;
  gap: var(--s1);
  margin-top: var(--s3);
  color: var(--cyan);
  font-size: .72rem;
  font-weight: 700;
}

.page-hero__side a:hover {
  color: var(--white);
}

.page-hero .eyebrow {
  color: var(--teal);
}

.catalog-overview {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: var(--s1);
  margin-bottom: var(--s5);
}

.catalog-overview article {
  min-height: 144px;
  padding: var(--s2);
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: var(--radius);
}

.catalog-overview article:first-child {
  color: var(--white);
  background: var(--navy);
  border-color: var(--navy);
  box-shadow: var(--glow-cyan);
}

.catalog-overview span,
.catalog-overview small {
  display: block;
  color: var(--muted);
  font-size: .62rem;
  font-weight: 600;
}

.catalog-overview article:first-child span,
.catalog-overview article:first-child small {
  color: var(--sage);
}

.catalog-overview strong {
  display: block;
  margin-top: var(--s1);
  color: var(--navy);
  font-size: 2.7rem;
  line-height: 1;
  letter-spacing: -.06em;
}

.catalog-overview article:first-child strong {
  color: var(--cyan);
}

.category-selector {
  scroll-margin-top: var(--s7);
  padding: var(--s4);
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: var(--radius-lg);
}

.category-selector__heading,
.competition-browser__heading {
  display: grid;
  gap: var(--s2);
  margin-bottom: var(--s4);
}

.category-selector__heading h2,
.competition-browser__heading h2 {
  margin-bottom: 0;
  font-size: clamp(1.8rem, 5vw, 3rem);
  line-height: 1.08;
  letter-spacing: -.045em;
}

.category-selector__heading > p,
.competition-browser__heading p {
  max-width: 580px;
  color: var(--muted);
  font-size: .82rem;
}

.category-brand-grid {
  display: grid;
  gap: var(--s2);
}

.category-brand-card {
  position: relative;
  display: grid;
  min-width: 0;
  grid-template-columns: auto 1fr;
  gap: var(--s2);
  padding: var(--s3);
  overflow: hidden;
  text-align: left;
  background: var(--paper);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  cursor: pointer;
  transition: transform .2s ease, color .2s ease, background .2s ease, border-color .2s ease, box-shadow .2s ease;
}

.category-brand-card::after {
  position: absolute;
  right: -40px;
  bottom: -72px;
  width: 150px;
  height: 150px;
  content: '';
  border: 1px solid rgba(51, 205, 221, .24);
  border-radius: 50%;
  box-shadow: 0 0 0 24px rgba(51, 205, 221, .04), 0 0 0 48px rgba(51, 205, 221, .025);
  pointer-events: none;
}

.category-brand-card:hover,
.category-brand-card[aria-pressed="true"] {
  transform: translateY(-4px);
  color: var(--white);
  background: var(--navy);
  border-color: var(--navy);
  box-shadow: var(--glow-cyan);
}

.category-brand-card__code {
  display: grid;
  width: 48px;
  height: 48px;
  place-items: center;
  color: var(--navy);
  background: var(--cyan);
  border-radius: var(--radius-sm);
  font-family: Consolas, monospace;
  font-size: .75rem;
  font-weight: 700;
}

.category-brand-card__body {
  min-width: 0;
}

.category-brand-card__body small,
.category-brand-card__body strong,
.category-brand-card__body > span {
  display: block;
}

.category-brand-card__body small {
  margin-bottom: 3px;
  color: var(--teal-ink);
  font-size: .6rem;
  font-weight: 700;
  letter-spacing: .08em;
  text-transform: uppercase;
}

.category-brand-card:hover .category-brand-card__body small,
.category-brand-card[aria-pressed="true"] .category-brand-card__body small {
  color: var(--cyan);
}

.category-brand-card__body strong {
  margin-bottom: var(--s1);
  font-size: 1.45rem;
  line-height: 1.1;
  letter-spacing: -.04em;
}

.category-brand-card__body > span {
  color: var(--muted);
  font-size: .72rem;
  line-height: 1.55;
}

.category-brand-card:hover .category-brand-card__body > span,
.category-brand-card[aria-pressed="true"] .category-brand-card__body > span {
  color: var(--sage);
}

.category-brand-card__count,
.category-brand-card__arrow {
  position: relative;
  z-index: 1;
  grid-column: 2;
}

.category-brand-card__count {
  color: var(--teal-ink);
  font-family: Consolas, monospace;
  font-size: 1rem;
  font-weight: 700;
}

.category-brand-card__count small {
  font-family: 'Montserrat', Arial, sans-serif;
  font-size: .58rem;
  text-transform: uppercase;
}

.category-brand-card__arrow {
  display: flex;
  align-items: center;
  gap: var(--s1);
  color: var(--navy);
  font-size: .68rem;
  font-weight: 700;
}

.category-brand-card:hover .category-brand-card__count,
.category-brand-card:hover .category-brand-card__arrow,
.category-brand-card[aria-pressed="true"] .category-brand-card__count,
.category-brand-card[aria-pressed="true"] .category-brand-card__arrow {
  color: var(--cyan);
}

.competition-browser {
  scroll-margin-top: var(--s7);
  margin-top: var(--s5);
  padding-top: var(--s5);
  border-top: 1px solid var(--line);
}

.competition-browser[hidden] {
  display: none;
}

.category-change {
  display: inline-flex;
  width: fit-content;
  align-items: center;
  gap: var(--s1);
  padding: 10px 14px;
  color: var(--navy);
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: 999px;
  font-size: .7rem;
  font-weight: 700;
  cursor: pointer;
}

.category-change:hover {
  border-color: var(--cyan);
  box-shadow: 0 0 0 3px rgba(51, 205, 221, .12);
}

.catalog-tools {
  display: grid;
  gap: var(--s3);
  margin-bottom: var(--s4);
}

.catalog-filter-stack,
.filter-group {
  display: grid;
  gap: var(--s1);
}

.filter-group > span {
  color: var(--teal-ink);
  font-size: .62rem;
  font-weight: 700;
  letter-spacing: .08em;
  text-transform: uppercase;
}

.search-box {
  position: relative;
}

.search-box svg {
  position: absolute;
  top: 50%;
  left: var(--s2);
  transform: translateY(-50%);
  color: var(--teal-ink);
}

.search-box input {
  width: 100%;
  height: 56px;
  padding: 0 var(--s2) 0 50px;
  color: var(--navy);
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: var(--radius-sm);
}

.search-box input:focus {
  border-color: var(--cyan);
  outline: 3px solid rgba(51, 205, 221, .2);
}

.filters {
  display: flex;
  gap: var(--s1);
  padding-bottom: var(--s1);
  overflow-x: auto;
  scrollbar-width: thin;
}

.filter-button {
  flex: 0 0 auto;
  padding: 9px 14px;
  color: var(--muted);
  background: transparent;
  border: 1px solid var(--line);
  border-radius: 999px;
  font-size: .72rem;
  font-weight: 700;
  cursor: pointer;
  transition: background .2s ease, border-color .2s ease;
}

.filter-button:hover,
.filter-button[aria-pressed="true"] {
  color: var(--navy);
  background: var(--cyan);
  border-color: var(--cyan);
}

.catalog-status {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: var(--s2);
  margin-bottom: var(--s3);
  color: var(--muted);
  font-size: .75rem;
}

.catalog-status span:first-child {
  font-weight: 700;
}

.catalog-status span:last-child {
  display: none;
}

.competition-grid {
  display: grid;
  gap: var(--s2);
}

.catalog-empty {
  display: grid;
  gap: 4px;
  padding: var(--s4);
  color: var(--muted);
  background: var(--white);
  border: 1px dashed var(--teal);
  border-radius: var(--radius);
}

.catalog-empty strong {
  color: var(--navy);
}

.catalog-text-index {
  margin-top: var(--s4);
  padding: var(--s3);
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: var(--radius);
}

.catalog-text-index summary {
  color: var(--navy);
  font-size: .82rem;
  font-weight: 700;
  cursor: pointer;
}

.catalog-text-index > p {
  margin: var(--s2) 0;
  color: var(--muted);
  font-size: .72rem;
}

.catalog-text-index ol {
  display: grid;
  grid-template-columns: 1fr;
  gap: 0 var(--s3);
  margin: var(--s2) 0 0;
  padding-left: var(--s3);
}

.catalog-text-index li {
  padding: 7px 0;
  color: var(--muted);
  border-bottom: 1px solid var(--line);
  font-size: .7rem;
}

.catalog-text-index li strong {
  color: var(--navy);
}

.catalog-text-index li span {
  float: right;
  margin-left: var(--s2);
  color: var(--teal-ink);
  font-size: .62rem;
  font-weight: 600;
}

.competition-card {
  position: relative;
  display: flex;
  min-height: 390px;
  flex-direction: column;
  padding: var(--s3);
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  transition: transform .2s ease, border-color .2s ease, box-shadow .2s ease;
}

.competition-card::before {
  position: absolute;
  top: -1px;
  right: -1px;
  width: 42px;
  height: 42px;
  content: '';
  opacity: .24;
  border-top: 2px solid var(--cyan);
  border-right: 2px solid var(--cyan);
  border-radius: 0 var(--radius) 0 0;
  transition: width .22s ease, height .22s ease, opacity .22s ease;
  pointer-events: none;
}

.competition-card:hover {
  transform: translateY(-5px);
  border-color: var(--teal);
  box-shadow: var(--shadow), 0 0 30px rgba(51, 205, 221, .13);
}

.competition-card:hover::before {
  width: 62px;
  height: 62px;
  opacity: 1;
}

.competition-card__top {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: var(--s4);
}

.category-tag {
  padding: 5px 9px;
  color: var(--navy);
  background: var(--ice);
  border-radius: 5px;
  font-size: .65rem;
  font-weight: 700;
}

.card-code {
  color: var(--teal-ink);
  font-family: Consolas, monospace;
  font-size: .7rem;
}

.competition-card h3 {
  margin-bottom: var(--s2);
  font-size: 1.3rem;
  line-height: 1.25;
  letter-spacing: -.03em;
}

.competition-card p {
  color: var(--muted);
  font-size: .8rem;
  line-height: 1.65;
}

.competition-card__meta {
  display: flex;
  flex-wrap: wrap;
  gap: 6px;
  margin-top: auto;
  padding-top: var(--s3);
}

.competition-card__meta span {
  padding: 4px 7px;
  color: var(--muted);
  background: var(--paper);
  border-radius: 4px;
  font-size: .6rem;
  font-weight: 600;
}

.competition-card__meta .status-tag--first {
  color: #185c42;
  background: #e0f4ea;
}

.competition-card__meta .status-tag--next {
  color: #725315;
  background: #fff1ce;
}

.competition-card__fee {
  display: flex;
  align-items: end;
  justify-content: space-between;
  gap: var(--s1);
  margin-top: var(--s2);
  padding: var(--s2) 0 0;
  border-top: 1px solid var(--line);
}

.competition-card__fee small {
  max-width: 90px;
  color: var(--muted);
  font-size: .56rem;
  font-weight: 600;
  line-height: 1.35;
}

.competition-card__fee strong {
  color: var(--navy);
  font-size: .72rem;
  white-space: nowrap;
}

.competition-card__fee strong span {
  color: var(--teal-ink);
  font-size: .62rem;
}

.competition-card__actions {
  display: grid;
  grid-template-columns: .85fr 1.15fr;
  gap: var(--s1);
  margin-top: var(--s2);
  padding-top: var(--s2);
  border-top: 1px solid var(--line);
}

.competition-card__actions button {
  display: flex;
  min-height: 42px;
  align-items: center;
  justify-content: center;
  gap: 7px;
  width: 100%;
  padding: 9px 10px;
  color: var(--navy);
  border-radius: 7px;
  font-size: .66rem;
  font-weight: 700;
  cursor: pointer;
  transition: transform .2s ease, background .2s ease, border-color .2s ease;
}

.card-action--details {
  background: var(--white);
  border: 1px solid var(--line);
}

.card-action--apply {
  background: var(--cyan);
  border: 1px solid var(--cyan);
  box-shadow: 0 0 18px rgba(51, 205, 221, .18);
}

.competition-card__actions button:hover {
  transform: translateY(-2px);
  color: var(--teal-ink);
}

.card-action--apply:hover {
  color: var(--navy) !important;
  background: #65dce7;
  box-shadow: 0 0 26px rgba(51, 205, 221, .34);
}

@keyframes signal-pulse {
  0%, 100% { box-shadow: 0 0 0 5px rgba(51, 205, 221, .12), 0 0 8px rgba(51, 205, 221, .22); }
  50% { box-shadow: 0 0 0 8px rgba(51, 205, 221, .04), 0 0 18px rgba(51, 205, 221, .68); }
}

.competition-modal {
  width: min(calc(100% - 32px), 620px);
  padding: 0;
  color: var(--navy);
  background: var(--white);
  border: 0;
  border-radius: var(--radius-lg);
  box-shadow: 0 30px 80px rgba(18, 32, 54, .35);
}

.competition-modal::backdrop {
  background: rgba(18, 32, 54, .76);
}

.modal-inner {
  padding: var(--s4);
}

.modal-top {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: var(--s4);
}

.modal-close {
  display: grid;
  width: 40px;
  height: 40px;
  place-items: center;
  padding: 0;
  background: var(--ice);
  border: 0;
  border-radius: var(--radius-sm);
  cursor: pointer;
}

.competition-modal h2 {
  margin-bottom: var(--s2);
  font-size: 2rem;
  line-height: 1.1;
}

.competition-modal p {
  color: var(--muted);
}

.modal-meta {
  display: grid;
  grid-template-columns: 1fr;
  gap: var(--s1);
  margin-block: var(--s4);
}

.modal-meta div {
  padding: var(--s2);
  background: var(--paper);
  border-radius: var(--radius-sm);
}

.modal-meta small {
  display: block;
  margin-bottom: 4px;
  color: var(--teal-ink);
  font-size: .6rem;
  font-weight: 700;
  text-transform: uppercase;
}

.modal-meta strong {
  font-size: .8rem;
}

.modal-evaluation {
  margin-bottom: var(--s3);
  padding: var(--s3);
  color: var(--white);
  background: var(--navy);
  border-radius: var(--radius);
}

.modal-evaluation > span {
  display: block;
  margin-bottom: var(--s1);
  color: var(--cyan);
  font-size: .62rem;
  font-weight: 700;
  letter-spacing: .08em;
  text-transform: uppercase;
}

.modal-evaluation p {
  color: var(--ice);
  font-size: .78rem;
}

.modal-proposal {
  display: grid;
  gap: var(--s1);
  margin-bottom: var(--s3);
}

.modal-proposal > div {
  padding: var(--s2);
  background: var(--paper);
  border: 1px solid var(--line);
  border-radius: var(--radius-sm);
}

.modal-proposal small,
.modal-proposal strong {
  display: block;
}

.modal-proposal small {
  margin-bottom: 4px;
  color: var(--teal-ink);
  font-size: .58rem;
  font-weight: 700;
  text-transform: uppercase;
}

.modal-proposal strong {
  color: var(--navy);
  font-size: .74rem;
}

.modal-proposal strong span {
  color: var(--teal-ink);
}

.modal-note {
  padding: var(--s2);
  color: var(--muted);
  background: var(--ice);
  border-left: 4px solid var(--cyan);
  font-size: .72rem;
}

.modal-apply-button {
  width: 100%;
  margin-top: var(--s3);
  border: 0;
  cursor: pointer;
}

.application-modal {
  width: min(calc(100% - 32px), 760px);
  max-height: min(880px, calc(100vh - 32px));
  overflow-y: auto;
}

.application-modal .section-kicker {
  margin-bottom: var(--s2);
}

.application-modal h2 {
  max-width: 560px;
}

.selected-competition {
  margin-block: var(--s4);
  padding: var(--s3);
  background: var(--navy);
  border-radius: var(--radius);
}

.selected-competition label {
  display: block;
  margin-bottom: 5px;
  color: var(--teal);
  font-size: .62rem;
  font-weight: 700;
  letter-spacing: .08em;
  text-transform: uppercase;
}

.selected-competition input {
  width: 100%;
  padding: 0;
  color: var(--white);
  background: transparent;
  border: 0;
  font-size: clamp(1.05rem, 3vw, 1.4rem);
  font-weight: 700;
  text-overflow: ellipsis;
}

.selected-competition input:focus {
  outline: 0;
}

.selected-competition > div {
  display: flex;
  flex-wrap: wrap;
  gap: 6px;
  margin-top: var(--s2);
}

.selected-competition > div span {
  padding: 4px 7px;
  color: var(--ice);
  background: rgba(211, 244, 241, .1);
  border-radius: 4px;
  font-size: .62rem;
  font-weight: 600;
}

.application-form-grid {
  margin-bottom: var(--s3);
}

.optional-label {
  color: var(--muted);
  font-weight: 500;
}

.team-logo-upload {
  display: grid;
  gap: var(--s2);
}

.team-logo-field input[type="file"] {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  white-space: nowrap;
  border: 0;
}

.team-logo-picker {
  display: flex !important;
  min-height: 88px;
  align-items: center;
  gap: var(--s2);
  margin: 0 !important;
  padding: var(--s2);
  color: var(--navy);
  background: var(--paper);
  border: 1px dashed var(--teal);
  border-radius: var(--radius-sm);
  cursor: pointer;
  transition: border-color .2s ease, background .2s ease;
}

.team-logo-picker:hover {
  background: var(--ice);
  border-color: var(--cyan);
}

.team-logo-picker svg {
  flex: 0 0 auto;
  color: var(--teal-ink);
}

.team-logo-picker span,
.team-logo-picker strong,
.team-logo-picker small {
  display: block;
}

.team-logo-picker strong {
  font-size: .75rem;
}

.team-logo-picker small,
.field-hint {
  color: var(--muted);
  font-size: .62rem;
  font-weight: 500;
}

.team-logo-preview {
  display: grid;
  min-height: 160px;
  place-items: center;
  gap: var(--s1);
  padding: var(--s2);
  color: var(--teal-ink);
  background-color: var(--white);
  background-image: linear-gradient(45deg, var(--paper) 25%, transparent 25%), linear-gradient(-45deg, var(--paper) 25%, transparent 25%), linear-gradient(45deg, transparent 75%, var(--paper) 75%), linear-gradient(-45deg, transparent 75%, var(--paper) 75%);
  background-position: 0 0, 0 8px, 8px -8px, -8px 0;
  background-size: 16px 16px;
  border: 1px solid var(--line);
  border-radius: var(--radius-sm);
  font-size: .6rem;
  font-weight: 700;
  text-transform: uppercase;
}

.team-logo-preview[hidden] {
  display: none;
}

.team-logo-preview img {
  width: min(180px, 100%);
  height: 112px;
  object-fit: contain;
}

.consent-field {
  display: flex;
  align-items: flex-start;
  gap: 10px;
  padding: var(--s2);
  background: var(--ice);
  border-radius: var(--radius-sm);
  color: var(--muted);
  font-size: .7rem;
  font-weight: 600;
  cursor: pointer;
}

.consent-field input {
  width: 18px;
  height: 18px;
  flex: 0 0 auto;
  margin: 1px 0 0;
  accent-color: var(--navy);
}

.application-submit {
  width: 100%;
  border: 0;
  cursor: pointer;
}

.guide-flow {
  display: grid;
  gap: var(--s3);
}

.guide-step {
  padding-top: var(--s3);
  border-top: 2px solid var(--cyan);
}

.guide-step span {
  color: var(--teal-ink);
  font-size: .7rem;
  font-weight: 800;
  letter-spacing: .04em;
  text-transform: uppercase;
}

.guide-step h3 {
  margin: var(--s2) 0 var(--s1);
}

.guide-step p {
  color: var(--muted);
  font-size: .85rem;
}

.manifesto {
  display: grid;
  gap: var(--s5);
  align-items: start;
}

.manifesto-quote {
  margin: 0;
  font-size: clamp(2rem, 6vw, 4rem);
  font-weight: 700;
  line-height: 1.08;
  letter-spacing: -.045em;
}

.manifesto-quote span {
  color: #648f97;
}

.manifesto-copy {
  padding-top: var(--s3);
  border-top: 1px solid var(--line);
}

.manifesto-copy p {
  color: var(--muted);
}

.principles {
  display: grid;
  gap: var(--s2);
}

.principle {
  padding: var(--s3);
  border: 1px solid rgba(211, 244, 241, .18);
  border-radius: var(--radius);
}

.principle span {
  display: block;
  margin-bottom: var(--s3);
  color: var(--cyan);
  font-size: .7rem;
  font-weight: 800;
  letter-spacing: .04em;
  text-transform: uppercase;
}

.principle h3 {
  margin-bottom: var(--s1);
}

.principle p {
  color: var(--sage);
  font-size: .83rem;
}

.model-grid {
  display: grid;
  gap: var(--s2);
}

.model-card {
  padding: var(--s4);
  background: var(--paper);
  border-radius: var(--radius);
}

.model-card:first-child {
  background: var(--ice);
}

.model-card:last-child {
  color: var(--white);
  background: var(--navy);
}

.model-card small {
  color: var(--teal-ink);
  font-size: .65rem;
  font-weight: 700;
  letter-spacing: .1em;
  text-transform: uppercase;
}

.model-card h3 {
  margin: var(--s3) 0 var(--s2);
  font-size: 1.5rem;
}

.model-card p {
  color: var(--muted);
  font-size: .85rem;
}

.model-card:last-child p {
  color: var(--sage);
}

.model-card:last-child small {
  color: var(--teal);
}

.model-card ul {
  margin: var(--s3) 0 0;
  padding: 0;
  list-style: none;
}

.model-card li {
  padding: 8px 0;
  border-top: 1px solid var(--line);
  font-size: .78rem;
}

.model-card:last-child li {
  border-color: rgba(255, 255, 255, .15);
}

.contact-layout {
  display: grid;
  gap: var(--s5);
}

.contact-intro h2 {
  margin-bottom: var(--s2);
  font-size: clamp(2rem, 6vw, 4rem);
  line-height: 1.05;
  letter-spacing: -.05em;
}

.contact-intro>p {
  color: var(--muted);
}

.contact-channel {
  display: flex;
  gap: var(--s2);
  margin-top: var(--s4);
  padding-top: var(--s3);
  border-top: 1px solid var(--line);
}

.contact-channel svg {
  flex: 0 0 auto;
  color: var(--teal-ink);
}

.contact-channel small {
  display: block;
  color: var(--teal-ink);
  font-weight: 700;
  text-transform: uppercase;
}

.contact-channel p {
  font-size: .8rem;
}

.contact-form {
  padding: var(--s3);
  background: var(--paper);
  border: 1px solid var(--line);
  border-radius: var(--radius-lg);
}

.form-grid {
  display: grid;
  gap: var(--s2);
}

.field label {
  display: block;
  margin-bottom: 6px;
  font-size: .7rem;
  font-weight: 700;
}

.field input,
.field select,
.field textarea {
  width: 100%;
  padding: 12px 14px;
  color: var(--navy);
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: var(--radius-sm);
}

.field textarea {
  min-height: 144px;
  resize: vertical;
}

.field input:focus,
.field select:focus,
.field textarea:focus {
  border-color: var(--cyan);
  outline: 3px solid rgba(51, 205, 221, .18);
}

.field--full {
  grid-column: 1 / -1;
}

.contact-form .button {
  width: 100%;
  margin-top: var(--s2);
  border: 0;
  cursor: pointer;
}

.form-fineprint {
  margin-top: var(--s2);
  color: var(--muted);
  font-size: .63rem;
}

.form-status {
  margin-top: var(--s2);
  padding: var(--s2);
  background: var(--ice);
  border-radius: var(--radius-sm);
  font-size: .72rem;
}

.faq {
  max-width: 900px;
  margin-inline: auto;
}

.faq__item {
  border-top: 1px solid var(--line);
}

.faq__item:last-child {
  border-bottom: 1px solid var(--line);
}

.faq__question {
  display: flex;
  width: 100%;
  align-items: center;
  justify-content: space-between;
  gap: var(--s2);
  padding: var(--s3) 0;
  text-align: left;
  background: transparent;
  border: 0;
  cursor: pointer;
  font-weight: 700;
}

.faq__question span:last-child {
  display: grid;
  width: 28px;
  height: 28px;
  flex: 0 0 auto;
  place-items: center;
  background: var(--ice);
  border-radius: 50%;
  transition: transform .2s ease;
}

.faq__answer {
  display: none;
  max-width: 720px;
  padding-bottom: var(--s3);
  color: var(--muted);
  font-size: .87rem;
}

.faq__item.is-open .faq__answer {
  display: block;
}

.faq__item.is-open .faq__question span:last-child {
  transform: rotate(45deg);
}

.site-footer {
  padding-block: var(--s6) var(--s3);
  color: var(--white);
  background: var(--navy-2);
}

.footer-grid {
  display: grid;
  gap: var(--s5);
}

.brand--footer {
  width: fit-content;
  padding: 8px 10px;
  background: var(--white);
  border-radius: var(--radius-sm);
}

.brand--footer .brand-logo {
  width: 180px;
}

.footer-brand p {
  max-width: 320px;
  margin-top: var(--s3);
  color: var(--sage);
  font-size: .8rem;
}

.footer-grid h2 {
  margin-bottom: var(--s2);
  color: var(--teal);
  font-size: .66rem;
  letter-spacing: .1em;
  text-transform: uppercase;
}

.footer-grid>div:not(:first-child)>a {
  display: block;
  margin-block: var(--s1);
  color: var(--sage);
  font-size: .78rem;
}

.footer-grid>div:not(:first-child)>a:hover {
  color: var(--cyan);
}

.footer-signal {
  padding: var(--s3);
  border: 1px solid rgba(211, 244, 241, .15);
  border-radius: var(--radius);
}

.footer-signal span {
  display: block;
  color: var(--teal);
  font-size: .6rem;
  font-weight: 700;
  text-transform: uppercase;
}

.footer-signal strong {
  display: block;
  margin-block: var(--s1);
}

.footer-signal p {
  color: var(--sage);
  font-size: .7rem;
}

.footer-bottom {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  gap: var(--s1);
  margin-top: var(--s5);
  padding-top: var(--s3);
  color: var(--teal);
  border-top: 1px solid rgba(211, 244, 241, .13);
  font-size: .63rem;
}

[data-reveal] {
  opacity: 0;
  transform: translateY(20px);
  transition: opacity .6s ease var(--delay, 0ms), transform .6s ease var(--delay, 0ms);
}

[data-reveal].is-visible {
  opacity: 1;
  transform: none;
}

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

  *,
  *::before,
  *::after {
    animation-duration: .01ms !important;
    transition-duration: .01ms !important;
  }

  [data-reveal] {
    opacity: 1;
    transform: none;
  }

  .stage-live i,
  .turkey-map-toolbar i {
    animation: none !important;
  }
}

@media (min-width: 640px) {
  .container {
    width: min(calc(100% - 48px), var(--container));
  }

  .answer-panel {
    grid-template-columns: .7fr 1.3fr;
    align-items: start;
  }

  .catalog-text-index ol {
    grid-template-columns: repeat(2, 1fr);
  }

  .category-brand-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .category-brand-card:last-child {
    grid-column: 1 / -1;
  }

  .team-logo-upload {
    grid-template-columns: 1fr 180px;
  }

  .modal-meta {
    grid-template-columns: repeat(3, 1fr);
  }

  .modal-proposal {
    grid-template-columns: repeat(2, 1fr);
  }

  .signal-bar__status {
    display: block;
  }

  .hero-note,
  .catalog-status span:last-child {
    display: block;
  }

  .fact-rail {
    grid-template-columns: repeat(3, 1fr);
  }

  .fact {
    display: block;
    padding: var(--s4);
    border-right: 1px solid var(--line);
    border-bottom: 0;
  }

  .fact:last-child {
    border-right: 0;
  }

  .fact strong,
  .fact span {
    display: block;
  }

  .fact span {
    margin-top: var(--s1);
  }

  .featured-grid,
  .competition-grid,
  .principles,
  .model-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .feature-card:first-child {
    grid-column: span 2;
  }

  .featured-grid--brands .feature-card:last-child {
    grid-column: span 2;
  }

  .guide-flow {
    grid-template-columns: repeat(2, 1fr);
  }

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

  .footer-grid {
    grid-template-columns: 1.5fr 1fr 1fr;
  }

  .footer-signal {
    grid-column: span 3;
  }
}

@media (min-width: 900px) {
  .section {
    padding-block: var(--s7);
  }

  .desktop-nav {
    display: flex;
    align-items: center;
    gap: var(--s4);
    margin-left: auto;
  }

  .desktop-nav a {
    position: relative;
    padding-block: 24px;
    color: var(--muted);
    font-size: .72rem;
    font-weight: 700;
  }

  .desktop-nav a::after {
    position: absolute;
    right: 0;
    bottom: 14px;
    left: 0;
    height: 2px;
    content: '';
    transform: scaleX(0);
    background: var(--cyan);
    transform-origin: left;
    transition: transform .2s ease;
  }

  .desktop-nav a:hover,
  .desktop-nav a[aria-current] {
    color: var(--navy);
  }

  .desktop-nav a:hover::after,
  .desktop-nav a[aria-current]::after {
    transform: scaleX(1);
  }

  .nav-cta {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 10px 14px;
    color: var(--navy);
    background: var(--cyan);
    border-radius: var(--radius-sm);
    font-size: .67rem;
    font-weight: 700;
  }

  .menu-toggle,
  .mobile-menu {
    display: none !important;
  }

  .hero {
    padding-block: var(--s7);
  }

  .hero-grid {
    grid-template-columns: minmax(0, 1.42fr) minmax(360px, .75fr);
    align-items: center;
    gap: var(--s6);
  }

  .hero-stage {
    min-height: 560px;
    transform: translateY(24px);
  }

  .journey {
    grid-template-columns: 1.15fr .85fr 1fr;
    align-items: start;
  }

  .journey-step:nth-child(2) {
    margin-top: var(--s5);
  }

  .journey-step:nth-child(3) {
    margin-top: var(--s2);
  }

  .featured-grid {
    grid-template-columns: 1.25fr .75fr 1fr;
    grid-template-rows: repeat(2, 1fr);
  }

  .featured-grid--brands {
    grid-template-columns: repeat(6, 1fr);
    grid-template-rows: repeat(2, 1fr);
  }

  .featured-grid--brands .feature-card,
  .featured-grid--brands .feature-card:nth-child(2),
  .featured-grid--brands .feature-card:last-child {
    grid-column: span 2;
  }

  .featured-grid--brands .feature-card:first-child {
    grid-row: span 2;
    grid-column: span 2;
  }

  .feature-card:first-child {
    grid-row: span 2;
    grid-column: auto;
    min-height: 560px;
  }

  .feature-card:nth-child(2) {
    grid-column: span 2;
  }

  .feature-card__icon {
    margin-bottom: var(--s7);
  }

  .feature-card:first-child .feature-card__icon {
    margin-bottom: 240px;
  }

  .regions-layout {
    grid-template-columns: .85fr 1.15fr;
    gap: var(--s7);
  }

  .cta-band {
    padding-block: var(--s7);
  }

  .cta-band__inner {
    grid-template-columns: 1fr auto;
  }

  .page-hero {
    padding-block: var(--s7);
  }

  .page-hero__inner {
    grid-template-columns: 1.5fr .5fr;
    align-items: end;
  }

  .catalog-tools {
    grid-template-columns: minmax(280px, .65fr) 1.35fr;
    align-items: start;
  }

  .category-selector__heading,
  .competition-browser__heading {
    grid-template-columns: minmax(0, 1.2fr) minmax(280px, .8fr);
    align-items: end;
  }

  .competition-browser__heading .category-change {
    justify-self: end;
  }

  .category-brand-grid {
    grid-template-columns: repeat(6, 1fr);
  }

  .category-brand-card {
    grid-column: span 2;
  }

  .category-brand-card:nth-child(4),
  .category-brand-card:nth-child(5),
  .category-brand-card:last-child {
    grid-column: span 3;
  }

  .catalog-overview {
    grid-template-columns: 1.35fr repeat(3, 1fr);
    gap: var(--s2);
  }

  .catalog-overview article {
    min-height: 168px;
    padding: var(--s3);
  }

  .competition-grid {
    grid-template-columns: repeat(3, 1fr);
  }

  .guide-flow {
    grid-template-columns: repeat(4, 1fr);
  }

  .manifesto {
    grid-template-columns: 1.3fr .7fr;
  }

  .principles {
    grid-template-columns: repeat(4, 1fr);
  }

  .model-grid {
    grid-template-columns: 1fr 1.25fr 1fr;
  }

  .model-card:nth-child(2) {
    transform: translateY(var(--s4));
  }

  .contact-layout {
    grid-template-columns: .8fr 1.2fr;
    gap: var(--s7);
  }

  .contact-form {
    padding: var(--s4);
  }

  .footer-grid {
    grid-template-columns: 1.6fr .7fr .7fr 1.1fr;
  }

  .footer-signal {
    grid-column: auto;
  }
}

@media (min-width: 1180px) {
  .competition-grid {
    grid-template-columns: repeat(4, 1fr);
  }

  .competition-card:nth-child(7n + 1) {
    grid-column: span 2;
  }

  .competition-card:nth-child(7n + 1) h3 {
    max-width: 420px;
    font-size: 1.65rem;
  }
}
