: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);
  color: var(--white);
  background:
    linear-gradient(90deg, rgba(18, 32, 54, .94) 0%, rgba(28, 44, 70, .86) 48%, rgba(18, 32, 54, .72) 100%),
    url('../img/slider.png') center / cover no-repeat;
}

.hero::before {
  position: absolute;
  inset: 0;
  content: '';
  opacity: .65;
  background-image: linear-gradient(rgba(51, 205, 221, .07) 1px, transparent 1px), linear-gradient(90deg, rgba(51, 205, 221, .07) 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: var(--cyan);
}

.hero-copy h1 em {
  position: relative;
  color: var(--white);
  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(--sage);
  font-size: 1.05rem;
}

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

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

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

.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;
}

.inovatech-journey {
  position: relative;
  overflow: hidden;
  background: var(--white);
}

.inovatech-journey::before {
  position: absolute;
  top: -180px;
  right: -160px;
  width: 480px;
  height: 480px;
  content: '';
  border: 1px solid rgba(51, 205, 221, .14);
  border-radius: 50%;
  box-shadow: 0 0 0 60px rgba(51, 205, 221, .035), 0 0 0 120px rgba(51, 205, 221, .025);
  pointer-events: none;
}

.inovatech-journey__intro {
  position: relative;
  z-index: 1;
  display: grid;
  gap: var(--s2);
  align-items: end;
  margin-bottom: var(--s4);
}

.inovatech-journey__intro h2 {
  margin-bottom: 0;
  font-size: clamp(2.3rem, 6vw, 4.5rem);
  line-height: 1;
  letter-spacing: -.055em;
  text-wrap: balance;
}

.inovatech-journey__intro > p {
  max-width: 560px;
  color: var(--muted);
}

.inovatech-roadmap {
  position: relative;
  display: grid;
  gap: 0;
  margin: 0;
  padding: var(--s3);
  overflow: hidden;
  color: var(--white);
  background-color: var(--navy);
  background-image: linear-gradient(rgba(51, 205, 221, .045) 1px, transparent 1px), linear-gradient(90deg, rgba(51, 205, 221, .045) 1px, transparent 1px);
  background-size: 32px 32px;
  border: 1px solid rgba(51, 205, 221, .28);
  border-radius: var(--radius-lg);
  box-shadow: 0 28px 70px rgba(18, 32, 54, .2), inset 0 1px 0 rgba(255, 255, 255, .08);
  list-style: none;
}

.inovatech-roadmap::before {
  position: absolute;
  top: 50px;
  bottom: 50px;
  left: 49px;
  width: 2px;
  content: '';
  background: linear-gradient(var(--cyan), rgba(51, 205, 221, .22));
}

.inovatech-roadmap__step {
  position: relative;
  min-width: 0;
}

.inovatech-roadmap__step:not(:last-child) {
  padding-bottom: var(--s1);
}

.inovatech-roadmap__step a {
  display: grid;
  grid-template-columns: 52px minmax(0, 1fr);
  gap: var(--s2);
  align-items: start;
  padding: 12px;
  border: 1px solid transparent;
  border-radius: var(--radius);
  transition: transform .22s ease, background-color .22s ease, border-color .22s ease;
}

.inovatech-roadmap__step a:hover {
  transform: translateX(5px);
  background: rgba(211, 244, 241, .07);
  border-color: rgba(51, 205, 221, .26);
}

.inovatech-roadmap__marker {
  position: relative;
  z-index: 1;
  display: grid;
  width: 52px;
  height: 52px;
  place-items: center;
  color: var(--navy);
  background: var(--cyan);
  border: 6px solid var(--navy);
  border-radius: 50%;
  box-shadow: 0 0 0 1px rgba(51, 205, 221, .5), 0 0 24px rgba(51, 205, 221, .25);
  font-size: .68rem;
  font-weight: 800;
  letter-spacing: .05em;
}

.inovatech-roadmap__content {
  display: block;
  min-width: 0;
  padding: 5px 0 var(--s2);
}

.inovatech-roadmap__content h3 {
  margin-bottom: 4px;
  font-size: 1rem;
  letter-spacing: -.025em;
}

.inovatech-roadmap__content p {
  margin-bottom: 10px;
  color: var(--sage);
  font-size: .75rem;
  line-height: 1.55;
}

.inovatech-roadmap__link {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  color: var(--cyan);
  font-size: .62rem;
  font-weight: 800;
  letter-spacing: .08em;
  text-transform: uppercase;
}

.inovatech-roadmap__step--final .inovatech-roadmap__marker {
  color: var(--white);
  background: var(--teal-ink);
  box-shadow: 0 0 0 1px rgba(211, 244, 241, .55), 0 0 30px rgba(51, 205, 221, .35);
}

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

.feature-card {
  position: relative;
  min-height: 260px;
  padding: var(--s4) var(--s4) 104px;
  overflow: hidden;
  background-position: center;
  background-repeat: no-repeat;
  background-size: cover;
  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: linear-gradient(rgba(28, 44, 70, .78), rgba(28, 44, 70, .78)), url('../img/robotech.jpg') center / cover no-repeat;
}

.feature-card--cyan {
  background: linear-gradient(rgba(51, 205, 221, .76), rgba(51, 205, 221, .76)), url('../img/protech.jpg') center / cover no-repeat;
}

.feature-card--ice {
  background: linear-gradient(rgba(211, 244, 241, .82), rgba(211, 244, 241, .82)), url('../img/aitech.jpg') center / cover no-repeat;
}

.feature-card--outline {
  background: linear-gradient(rgba(247, 249, 250, .78), rgba(247, 249, 250, .78)), url('../img/dronetech.jpg') center / cover no-repeat;
  border: 1px solid var(--teal);
}

.feature-card--navy-outline {
  color: var(--white);
  background: linear-gradient(rgba(18, 32, 54, .8), rgba(18, 32, 54, .8)), url('../img/ideatech.jpg') center / cover no-repeat;
  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__count {
  display: inline-flex;
  width: fit-content;
  margin-bottom: 8px;
  padding: 5px 9px;
  color: var(--teal-ink);
  background: rgba(255, 255, 255, .54);
  border: 1px solid rgba(18, 32, 54, .1);
  border-radius: 999px;
  font-size: .62rem;
  font-weight: 700;
  letter-spacing: .08em;
  text-transform: uppercase;
}

.feature-card--dark .feature-card__count,
.feature-card--navy-outline .feature-card__count {
  color: var(--cyan);
  background: rgba(18, 32, 54, .54);
  border-color: rgba(51, 205, 221, .28);
}

.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__levels {
  position: absolute;
  right: var(--s4);
  bottom: var(--s4);
  left: var(--s4);
  display: flex;
  flex-direction: column;
  gap: 3px;
  padding-top: 12px;
  border-top: 1px solid rgba(18, 32, 54, .2);
}

.feature-card__levels small {
  color: var(--muted);
  font-size: .58rem;
  font-weight: 700;
  letter-spacing: .09em;
  text-transform: uppercase;
}

.feature-card__levels strong {
  font-size: .76rem;
  line-height: 1.35;
}

.feature-card--dark .feature-card__levels,
.feature-card--navy-outline .feature-card__levels {
  border-top-color: rgba(211, 244, 241, .28);
}

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

.season-calendar {
  background: var(--white);
}

.season-calendar__header {
  display: grid;
  gap: var(--s2);
  align-items: end;
  margin-bottom: var(--s4);
}

.season-calendar__header h2 {
  max-width: 680px;
  margin-bottom: 0;
  font-size: clamp(2.3rem, 6vw, 4.5rem);
  line-height: 1;
  letter-spacing: -.055em;
  text-wrap: balance;
}

.season-calendar__summary {
  max-width: 520px;
}

.season-calendar__summary p {
  color: var(--muted);
}

.season-calendar__summary .section-link {
  margin-top: var(--s2);
}

.home-season-timeline {
  position: relative;
  display: grid;
  gap: 0;
  margin: 0;
  padding: var(--s3);
  background: var(--paper);
  border: 1px solid var(--line);
  border-radius: var(--radius-lg);
  list-style: none;
}

.home-season-timeline::before {
  position: absolute;
  top: 34px;
  bottom: 34px;
  left: 29px;
  width: 1px;
  content: '';
  background: var(--line);
}

.season-timeline__item {
  position: relative;
  display: grid;
  grid-template-columns: 12px minmax(0, 1fr);
  column-gap: var(--s2);
  padding-bottom: var(--s4);
}

.season-timeline__item:last-child {
  padding-bottom: 0;
}

.season-timeline__month {
  grid-column: 2;
  margin-bottom: 5px;
  color: var(--teal-ink);
  font-size: .62rem;
  font-weight: 800;
  letter-spacing: .09em;
  text-transform: uppercase;
}

.season-timeline__dot {
  position: relative;
  z-index: 1;
  grid-row: 1 / span 2;
  width: 12px;
  height: 12px;
  margin-top: 3px;
  background: var(--navy);
  border: 3px solid var(--paper);
  border-radius: 50%;
  box-shadow: 0 0 0 1px var(--navy);
}

.season-timeline__content {
  grid-column: 2;
}

.season-timeline__content h3 {
  max-width: 190px;
  margin-bottom: var(--s1);
  font-size: .95rem;
  line-height: 1.35;
  letter-spacing: -.02em;
}

.season-timeline__content time {
  display: block;
  margin-bottom: 10px;
  color: var(--muted);
  font-size: .73rem;
  font-weight: 600;
}

.season-timeline__status {
  display: inline-flex;
  align-items: center;
  gap: 7px;
  color: var(--teal-ink);
  font-size: .58rem;
  font-weight: 800;
  letter-spacing: .08em;
  text-transform: uppercase;
}

.season-timeline__status::before {
  width: 5px;
  height: 5px;
  content: '';
  background: currentColor;
}

.season-timeline__item--confirmed .season-timeline__dot {
  background: var(--cyan);
  box-shadow: 0 0 0 1px var(--teal-ink), 0 0 18px rgba(51, 205, 221, .28);
}

.season-timeline__item--confirmed .season-timeline__status {
  color: var(--navy);
}

.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__content {
  min-width: 0;
}

.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__facts {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 10px;
  margin: 16px 0 0;
}

.turkey-map-detail__facts[hidden] {
  display: none;
}

.turkey-map-detail__facts div {
  min-width: 0;
  padding: 11px 12px;
  background: rgba(211, 244, 241, .055);
  border: 1px solid rgba(211, 244, 241, .14);
  border-radius: var(--radius-sm);
}

.turkey-map-detail__facts dt {
  margin-bottom: 4px;
  color: var(--teal);
  font-size: .7rem;
  font-weight: 800;
  letter-spacing: .055em;
  text-transform: uppercase;
}

.turkey-map-detail__facts dd {
  margin: 0;
  color: var(--ice);
  font-size: .72rem;
  font-weight: 650;
  line-height: 1.35;
}

.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-detail__facts {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

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

@media (max-width: 419px) {
  .turkey-map-detail {
    grid-template-columns: 1fr;
  }

  .turkey-map-detail__facts {
    grid-template-columns: 1fr;
  }
}

.why-inovatech {
  background: var(--paper);
}

.why-inovatech__intro {
  margin-bottom: var(--s5);
}

.why-inovatech__intro h2 {
  max-width: 900px;
  margin: 0;
  font-size: clamp(2.5rem, 7vw, 5rem);
  line-height: .95;
  letter-spacing: -.06em;
}

.why-inovatech__body {
  display: grid;
  gap: var(--s5);
  border-top: 1px solid var(--line);
}

.why-inovatech__statement {
  padding-top: var(--s4);
}

.why-inovatech__statement strong {
  display: block;
  max-width: 700px;
  font-size: clamp(2rem, 5vw, 4.1rem);
  line-height: 1;
  letter-spacing: -.055em;
}

.why-inovatech__statement strong span {
  color: var(--teal-ink);
}

.why-inovatech__statement p {
  max-width: 520px;
  margin: var(--s3) 0 0;
  color: var(--muted);
  font-size: 1rem;
}

.why-inovatech__reasons {
  border-bottom: 1px solid var(--line);
}

.why-inovatech__reasons article {
  display: grid;
  gap: 10px;
  padding-block: var(--s3);
  border-top: 1px solid var(--line);
}

.why-inovatech__reasons h3 {
  margin: 0;
  font-size: clamp(1.25rem, 2.6vw, 1.7rem);
  line-height: 1.2;
  letter-spacing: -.03em;
}

.why-inovatech__reasons p {
  max-width: 600px;
  margin: 0;
  color: var(--muted);
  font-size: .95rem;
}

@media (min-width: 850px) {
  .why-inovatech__body {
    grid-template-columns: .9fr 1.1fr;
    gap: var(--s7);
  }

  .why-inovatech__statement {
    padding-top: var(--s5);
  }

  .why-inovatech__reasons article {
    grid-template-columns: minmax(190px, .8fr) 1.2fr;
    gap: var(--s4);
    align-items: start;
    padding-block: var(--s4);
  }
}

.event-video {
  background: var(--white);
}

.event-video__heading {
  display: grid;
  gap: var(--s3);
  align-items: end;
  margin-bottom: var(--s5);
}

.event-video__heading h2 {
  max-width: 820px;
  margin: 0;
  font-size: clamp(2.4rem, 6.5vw, 4.8rem);
  line-height: .98;
  letter-spacing: -.06em;
}

.event-video__heading > p {
  max-width: 520px;
  margin: 0;
  color: var(--muted);
  font-size: 1rem;
}

.event-video__frame {
  position: relative;
  display: grid;
  width: 100%;
  aspect-ratio: 16 / 9;
  overflow: hidden;
  place-items: center;
  color: var(--white);
  background-color: var(--navy-2);
  background-image: linear-gradient(rgba(51, 205, 221, .045) 1px, transparent 1px), linear-gradient(90deg, rgba(51, 205, 221, .045) 1px, transparent 1px);
  background-size: 40px 40px;
  border: 1px solid rgba(51, 205, 221, .34);
  border-radius: var(--radius);
}

.event-video__frame iframe {
  width: 100%;
  height: 100%;
  border: 0;
}

.event-video__status {
  position: absolute;
  top: clamp(16px, 3vw, 28px);
  left: clamp(16px, 3vw, 28px);
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: .72rem;
  letter-spacing: .08em;
  text-transform: uppercase;
}

.event-video__status span {
  color: var(--sage);
  font-weight: 650;
}

.event-video__status strong {
  padding: 4px 8px;
  color: var(--navy);
  background: var(--cyan);
  border-radius: 999px;
  font-size: inherit;
}

.event-video__message {
  display: grid;
  max-width: 520px;
  gap: 10px;
  place-items: center;
  padding: var(--s3);
  text-align: center;
}

.event-video__play {
  display: grid;
  width: 58px;
  height: 58px;
  margin-bottom: var(--s1);
  place-items: center;
  color: var(--navy);
  background: var(--cyan);
  border-radius: 50%;
  box-shadow: 0 0 0 10px rgba(51, 205, 221, .1);
}

.event-video__play svg {
  margin-left: 4px;
}

.event-video__message > strong {
  font-size: clamp(1.35rem, 3vw, 2.2rem);
  line-height: 1.1;
  letter-spacing: -.035em;
}

.event-video__message p {
  margin: 0;
  color: var(--sage);
  font-size: .9rem;
}

@media (max-width: 479px) {
  .event-video__status {
    display: none;
  }
}

@media (min-width: 640px) {
  .event-video__play {
    width: 72px;
    height: 72px;
    margin-bottom: var(--s2);
  }
}

@media (min-width: 800px) {
  .event-video__heading {
    grid-template-columns: 1.2fr .8fr;
  }

  .event-video__heading > p {
    justify-self: end;
  }
}

.partner-showcase {
  overflow: hidden;
  background: var(--paper);
}

.partner-showcase__heading {
  max-width: 820px;
  margin: 0 auto var(--s5);
  text-align: center;
}

.partner-showcase__heading .section-kicker {
  justify-content: center;
}

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

.partner-showcase__heading p {
  margin: 0;
  color: var(--muted);
  font-size: 1rem;
}

.partner-marquee {
  position: relative;
  width: 100%;
  overflow: hidden;
  border-block: 1px solid var(--line);
  mask-image: linear-gradient(90deg, transparent, #000 6%, #000 94%, transparent);
}

.partner-marquee__track {
  display: flex;
  width: max-content;
  padding-block: var(--s3);
  will-change: transform;
  animation: partner-scroll 34s linear infinite;
  backface-visibility: hidden;
}

.partner-marquee:hover .partner-marquee__track {
  animation-play-state: paused;
}

.partner-marquee__group {
  display: flex;
  flex: none;
  gap: var(--s2);
  padding-right: var(--s2);
}

.partner-logo-slot {
  display: grid;
  width: clamp(170px, 18vw, 230px);
  height: 112px;
  flex: none;
  place-content: center;
  padding: var(--s2);
  text-align: center;
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: var(--radius-sm);
}

.partner-logo-slot span,
.partner-logo-slot strong {
  display: block;
}

.partner-logo-slot span {
  color: var(--teal-ink);
  font-size: .72rem;
  font-weight: 750;
  letter-spacing: .055em;
  text-transform: uppercase;
}

.partner-logo-slot strong {
  margin-top: 5px;
  color: var(--navy);
  font-size: .9rem;
}

.partner-showcase__action {
  display: flex;
  justify-content: center;
  margin-top: var(--s5);
}

@keyframes partner-scroll {
  from { transform: translate3d(0, 0, 0); }
  to { transform: translate3d(-50%, 0, 0); }
}

@media (prefers-reduced-motion: reduce) {
  .partner-marquee {
    overflow-x: auto;
    mask-image: none;
  }

  .partner-marquee__track {
    animation: none !important;
  }

  .partner-marquee__group:last-child {
    display: none;
  }
}

.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;
}

.cta-band--home .cta-band__copy {
  max-width: 900px;
}

.cta-band--home h2 {
  font-size: clamp(1.65rem, 3vw, 2.7rem);
  line-height: 1.05;
  letter-spacing: -.045em;
}

.cta-band--home .cta-band__copy p {
  max-width: 680px;
  margin: var(--s3) 0 0;
  color: rgba(18, 32, 54, .78);
  font-size: clamp(1rem, 2vw, 1.2rem);
  font-weight: 600;
  line-height: 1.65;
}

.cta-band__actions {
  display: flex;
  flex-wrap: wrap;
  gap: var(--s2);
}

.cta-band--home .button--outline-dark {
  border-color: rgba(18, 32, 54, .42);
}

.cta-band--home .button--outline-dark:hover {
  color: var(--white);
  border-color: var(--navy);
  background: var(--navy);
}

.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__icon {
  width: 48px;
  height: 48px;
  box-sizing: border-box;
  padding: 8px;
  color: var(--navy);
  background: var(--cyan);
  border-radius: var(--radius-sm);
  transition: color .2s ease, background .2s ease;
}

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

.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__specification {
  display: grid;
  gap: 5px;
  margin-top: var(--s2);
  padding: 12px var(--s2);
  color: var(--muted);
  background: var(--paper);
  border: 1px dashed var(--line);
  border-radius: var(--radius-sm);
}

.competition-card__specification small {
  font-size: .56rem;
  font-weight: 700;
  letter-spacing: .05em;
  text-transform: uppercase;
}

.competition-card__specification > span {
  font-size: .68rem;
  font-weight: 700;
}

.competition-card__specification.is-available {
  background: rgba(51, 205, 221, .08);
  border-color: rgba(51, 205, 221, .48);
}

.competition-card__specification button {
  display: grid;
  grid-template-columns: auto 1fr auto;
  align-items: center;
  gap: var(--s1);
  padding: 0;
  color: var(--teal-ink);
  text-align: left;
  background: transparent;
  border: 0;
  cursor: pointer;
}

.competition-card__specification button strong {
  color: var(--navy);
  font-size: .72rem;
}

.competition-card__specification button span {
  overflow: hidden;
  font-size: .62rem;
  font-weight: 600;
  text-overflow: ellipsis;
  white-space: nowrap;
}

.competition-card__specification button:hover strong {
  color: var(--teal-ink);
}

.competition-card__actions {
  display: grid;
  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(--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--details: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-specification {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: var(--s2);
  margin-bottom: var(--s3);
  padding: var(--s2);
  background: var(--paper);
  border: 1px dashed var(--line);
  border-radius: var(--radius-sm);
}

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

.modal-specification small {
  margin-bottom: 3px;
  color: var(--muted);
  font-size: .58rem;
  font-weight: 700;
  text-transform: uppercase;
}

.modal-specification strong {
  font-size: .72rem;
}

.modal-specification.is-available {
  background: rgba(51, 205, 221, .08);
  border-color: rgba(51, 205, 221, .48);
}

.modal-specification button {
  display: inline-flex;
  flex: 0 0 auto;
  align-items: center;
  gap: 7px;
  padding: 9px 12px;
  color: var(--navy);
  background: var(--cyan);
  border: 0;
  border-radius: var(--radius-sm);
  font-size: .66rem;
  font-weight: 800;
  cursor: pointer;
}

.modal-specification button[hidden] {
  display: none;
}

.spec-reader-modal {
  width: min(calc(100% - 24px), 1080px);
  height: min(calc(100% - 24px), 900px);
  max-width: none;
  max-height: none;
  padding: 0;
  color: var(--navy);
  background: var(--paper);
  border: 0;
  border-radius: var(--radius-lg);
  box-shadow: 0 30px 80px rgba(18, 32, 54, .4);
}

.spec-reader-modal::backdrop {
  background: rgba(7, 20, 38, .82);
}

.spec-reader-modal__inner {
  display: grid;
  grid-template-rows: auto minmax(0, 1fr) auto;
  height: 100%;
}

.spec-reader-modal__header {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  gap: var(--s3);
  padding: var(--s3);
  background: var(--white);
  border-bottom: 1px solid var(--line);
}

.spec-reader-modal__header > div > span {
  color: var(--teal-ink);
  font-size: .62rem;
  font-weight: 800;
  letter-spacing: .08em;
  text-transform: uppercase;
}

.spec-reader-modal__header h2 {
  margin: 4px 0 2px;
  font-size: clamp(1.2rem, 3vw, 1.8rem);
  line-height: 1.15;
}

.spec-reader-modal__header p {
  margin: 0;
  color: var(--muted);
  font-size: .7rem;
}

.spec-reader-modal__viewport {
  position: relative;
  min-height: 0;
  margin: var(--s2);
  overflow: hidden;
  background: #e6eaee;
  border: 1px solid var(--line);
  border-radius: var(--radius-sm);
}

.spec-reader-modal__viewport > span {
  position: absolute;
  inset: 0;
  display: grid;
  place-items: center;
  color: var(--muted);
  font-size: .75rem;
  font-weight: 700;
}

.spec-reader-modal__viewport > span[hidden],
.spec-reader-modal__viewport iframe[hidden] {
  display: none;
}

.spec-reader-modal__viewport iframe {
  width: 100%;
  height: 100%;
  background: var(--white);
  border: 0;
}

.spec-reader-modal__footer {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: var(--s2);
  padding: var(--s2) var(--s3);
  background: var(--white);
  border-top: 1px solid var(--line);
}

.spec-reader-modal__footer a,
.spec-reader-modal__footer button {
  display: inline-flex;
  min-height: 40px;
  align-items: center;
  justify-content: center;
  gap: 7px;
  padding: 8px 12px;
  border-radius: var(--radius-sm);
  font-size: .66rem;
  font-weight: 800;
}

.spec-reader-modal__footer a {
  color: var(--navy);
  background: var(--cyan);
}

.spec-reader-modal__footer button {
  color: var(--navy);
  background: var(--white);
  border: 1px solid var(--line);
  cursor: pointer;
}

.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;
}

/* Referanstaki detay akışı, sitenin mevcut görsel sistemiyle uygulanır. */
.competition-detail-modal {
  width: min(calc(100% - 24px), 900px);
  max-width: none;
  max-height: min(920px, calc(100vh - 24px));
  overflow-y: auto;
  background: var(--paper);
  border: 1px solid rgba(51, 205, 221, .3);
  border-radius: var(--radius-lg);
}

.competition-detail-modal__inner {
  padding: 0;
}

.modal-detail-hero {
  position: relative;
  overflow: hidden;
  padding: clamp(28px, 5vw, 48px);
  color: var(--white);
  background:
    radial-gradient(circle at 88% 14%, rgba(51, 205, 221, .2), transparent 28%),
    linear-gradient(135deg, var(--navy-2), var(--navy));
}

.modal-detail-hero::after {
  position: absolute;
  right: -90px;
  bottom: -120px;
  width: 310px;
  aspect-ratio: 1;
  content: '';
  border: 1px solid rgba(51, 205, 221, .18);
  border-radius: 50%;
  pointer-events: none;
}

.competition-detail-modal .modal-top {
  position: relative;
  z-index: 1;
  align-items: flex-start;
  margin-bottom: var(--s4);
}

.modal-detail-eyebrow {
  display: inline-flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 8px;
  padding: 6px 10px;
  color: var(--cyan);
  background: rgba(51, 205, 221, .1);
  border: 1px solid rgba(51, 205, 221, .3);
  border-radius: 999px;
  font-size: .64rem;
  font-weight: 800;
  letter-spacing: .07em;
  text-transform: uppercase;
}

.modal-detail-eyebrow i {
  color: var(--sage);
  font-style: normal;
}

.competition-detail-modal .modal-close {
  position: relative;
  z-index: 2;
  flex: 0 0 auto;
  color: var(--white);
  background: rgba(255, 255, 255, .08);
  border: 1px solid rgba(255, 255, 255, .2);
  border-radius: 50%;
}

.competition-detail-modal .modal-close:hover {
  color: var(--navy);
  background: var(--cyan);
  border-color: var(--cyan);
}

.competition-detail-modal h2 {
  position: relative;
  z-index: 1;
  max-width: 700px;
  margin: 0 0 var(--s2);
  color: var(--white);
  font-size: clamp(2rem, 5vw, 3.4rem);
  line-height: 1.02;
  letter-spacing: -.045em;
}

.modal-detail-tagline {
  position: relative;
  z-index: 1;
  display: block;
  margin-bottom: var(--s2);
  color: var(--cyan);
  font-size: clamp(.9rem, 2vw, 1.05rem);
}

.competition-detail-modal .modal-detail-hero > p {
  position: relative;
  z-index: 1;
  max-width: 650px;
  margin: 0;
  color: var(--sage);
  font-size: .8rem;
}

.modal-detail-facts {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: var(--s1);
  margin: var(--s4) 0;
}

.modal-detail-facts > div {
  min-width: 0;
  padding: 12px;
  background: rgba(255, 255, 255, .07);
  border: 1px solid rgba(255, 255, 255, .12);
  border-radius: var(--radius-sm);
}

.modal-detail-facts dt,
.modal-detail-facts dd {
  margin: 0;
}

.modal-detail-facts dt {
  margin-bottom: 4px;
  color: var(--sage);
  font-size: .57rem;
  font-weight: 700;
  letter-spacing: .05em;
  text-transform: uppercase;
}

.modal-detail-facts dt span {
  color: var(--cyan);
}

.modal-detail-facts dd {
  overflow-wrap: anywhere;
  color: var(--white);
  font-size: .68rem;
  font-weight: 700;
  line-height: 1.4;
}

.modal-detail-actions {
  position: relative;
  z-index: 1;
  display: flex;
  flex-wrap: wrap;
  gap: var(--s1);
}

.modal-detail-actions button {
  border: 0;
  cursor: pointer;
}

.modal-detail-actions .button--outline {
  color: var(--white);
  background: transparent;
  border: 1px solid rgba(255, 255, 255, .4);
}

.modal-detail-actions .button--outline:hover {
  color: var(--navy);
  background: var(--white);
}

.modal-detail-actions button:disabled {
  color: rgba(255, 255, 255, .55);
  background: rgba(255, 255, 255, .05);
  border-color: rgba(255, 255, 255, .16);
  cursor: not-allowed;
  opacity: 1;
  transform: none;
}

.modal-detail-video {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: var(--s2);
  margin: var(--s3) var(--s3) 0;
  padding: var(--s3);
  color: var(--navy);
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  box-shadow: var(--shadow);
}

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

.modal-detail-video span {
  color: var(--teal-ink);
  font-size: .68rem;
  font-weight: 800;
}

.modal-detail-video i {
  display: inline-grid;
  width: 30px;
  height: 30px;
  margin-right: 7px;
  place-items: center;
  color: var(--navy);
  background: var(--cyan);
  border-radius: 50%;
  font-size: .58rem;
  font-style: normal;
}

.modal-detail-nav {
  position: sticky;
  z-index: 3;
  top: 0;
  display: flex;
  margin: var(--s2) var(--s3) 0;
  overflow-x: auto;
  padding: 0 var(--s1);
  background: rgba(255, 255, 255, .96);
  border: 1px solid var(--line);
  border-radius: var(--radius-sm);
  box-shadow: 0 8px 24px rgba(28, 44, 70, .1);
  backdrop-filter: blur(10px);
  scrollbar-width: thin;
}

.modal-detail-nav a {
  flex: 0 0 auto;
  padding: 13px 10px;
  color: var(--muted);
  border-bottom: 2px solid transparent;
  font-size: .61rem;
  font-weight: 700;
  white-space: nowrap;
}

.modal-detail-nav a:hover {
  color: var(--teal-ink);
  border-bottom-color: var(--cyan);
}

.modal-detail-content {
  display: grid;
  gap: var(--s2);
  padding: var(--s2) var(--s3) var(--s3);
}

.modal-detail-section-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: var(--s2);
}

.modal-detail-section {
  scroll-margin-top: 70px;
  padding: var(--s3);
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: var(--radius);
}

.modal-detail-section > span,
.modal-detail-section > div > span {
  color: var(--teal-ink);
  font-size: .59rem;
  font-weight: 800;
  letter-spacing: .08em;
  text-transform: uppercase;
}

.modal-detail-section h3 {
  margin: var(--s1) 0;
  color: var(--navy);
  font-size: 1rem;
  line-height: 1.3;
}

.competition-detail-modal .modal-detail-section p {
  margin: 0;
  color: var(--muted);
  font-size: .72rem;
}

.competition-detail-modal .modal-detail-section p + p {
  margin-top: 6px;
}

.competition-detail-modal .modal-specification {
  display: block;
  margin: 0;
  padding: var(--s3);
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: var(--radius);
}

.competition-detail-modal .modal-specification.is-available {
  background: rgba(51, 205, 221, .08);
  border-color: rgba(51, 205, 221, .48);
}

.competition-detail-modal .modal-specification strong {
  color: var(--muted);
  font-size: .7rem;
  line-height: 1.55;
}

.modal-detail-note {
  background: var(--ice);
  border-color: rgba(51, 205, 221, .4);
  border-left: 4px solid var(--cyan);
}

@media (max-width: 640px) {
  .competition-detail-modal {
    width: calc(100% - 16px);
    max-height: calc(100vh - 16px);
    border-radius: var(--radius);
  }

  .modal-detail-hero {
    padding: var(--s3);
  }

  .competition-detail-modal .modal-top {
    margin-bottom: var(--s3);
  }

  .modal-detail-facts {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    margin-block: var(--s3);
  }

  .modal-detail-actions .button {
    flex: 1 1 180px;
  }

  .modal-detail-video {
    display: grid;
    margin-inline: var(--s2);
    padding: var(--s2);
  }

  .modal-detail-nav {
    margin-inline: var(--s2);
  }

  .modal-detail-content {
    padding-inline: var(--s2);
  }

  .modal-detail-section-grid {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 420px) {
  .modal-detail-facts {
    grid-template-columns: 1fr;
  }
}

.application-modal {
  width: min(calc(100% - 24px), 880px);
  max-width: none;
  max-height: min(920px, calc(100vh - 24px));
  overflow-y: auto;
  background: var(--paper);
}

.application-shell {
  min-height: 620px;
}

.application-header {
  padding: var(--s4);
  color: var(--white);
  background:
    radial-gradient(circle at 90% 0, rgba(51, 205, 221, .18), transparent 32%),
    var(--navy);
}

.application-header__top {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  gap: var(--s3);
}

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

.application-brand strong {
  color: var(--white);
}

.application-modal .application-header h2 {
  margin: 0;
  color: var(--white);
  font-size: clamp(1.8rem, 4vw, 2.8rem);
  line-height: 1.05;
}

.application-header .modal-close {
  flex: 0 0 auto;
  color: var(--white);
  background: rgba(255, 255, 255, .08);
  border: 1px solid rgba(255, 255, 255, .18);
}

.application-progress {
  display: grid;
  grid-template-columns: repeat(5, minmax(0, 1fr));
  gap: 0;
  margin: var(--s4) 0 0;
  padding: 0;
  list-style: none;
}

.application-progress li {
  position: relative;
  display: grid;
  justify-items: start;
  gap: 7px;
  color: rgba(255, 255, 255, .55);
}

.application-progress li:not(:last-child)::after {
  position: absolute;
  z-index: 0;
  top: 14px;
  right: 8px;
  left: 38px;
  height: 1px;
  content: '';
  background: rgba(255, 255, 255, .18);
}

.application-progress li > span {
  position: relative;
  z-index: 1;
  display: grid;
  width: 29px;
  height: 29px;
  place-items: center;
  background: var(--navy);
  border: 2px solid rgba(255, 255, 255, .35);
  border-radius: 50%;
  font-size: .62rem;
  font-weight: 800;
}

.application-progress li strong {
  font-size: .62rem;
  line-height: 1.2;
}

.application-progress li.is-active,
.application-progress li.is-complete {
  color: var(--white);
}

.application-progress li.is-active > span {
  color: var(--navy);
  background: var(--cyan);
  border-color: var(--cyan);
  box-shadow: 0 0 0 5px rgba(51, 205, 221, .13);
}

.application-progress li.is-complete > span {
  color: var(--navy);
  background: var(--ice);
  border-color: var(--ice);
}

.application-progress li.is-complete:not(:last-child)::after {
  background: var(--cyan);
}

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

.application-step[hidden] {
  display: none;
}

.application-step__heading {
  display: flex;
  align-items: center;
  gap: var(--s2);
  margin-bottom: var(--s4);
}

.application-step__heading > span {
  display: grid;
  width: 46px;
  height: 46px;
  flex: 0 0 auto;
  place-items: center;
  color: var(--navy);
  background: var(--cyan);
  border-radius: 50%;
  font-size: .9rem;
  font-weight: 800;
}

.application-step__heading small {
  display: block;
  color: var(--teal-ink);
  font-size: .59rem;
  font-weight: 800;
  letter-spacing: .08em;
  text-transform: uppercase;
}

.application-step__heading h3 {
  margin: 2px 0 0;
  color: var(--navy);
  font-size: clamp(1.45rem, 3vw, 2rem);
  line-height: 1.1;
}

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

.selected-competition .category-tag {
  display: inline-flex;
  margin-bottom: var(--s3);
}

.selected-competition label {
  display: block;
  margin-bottom: 5px;
  color: var(--sage);
  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.45rem);
  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(--s4);
}

.application-step__actions {
  display: flex;
  flex-wrap: wrap;
  justify-content: flex-end;
  gap: var(--s1);
  padding-top: var(--s3);
  border-top: 1px solid var(--line);
}

.application-step__actions .button {
  border: 1px solid transparent;
  cursor: pointer;
}

.application-step__actions .button--outline-dark {
  background: transparent;
  border-color: var(--line);
}

.student-list {
  display: grid;
  gap: var(--s1);
  margin-bottom: var(--s2);
}

.student-row {
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto;
  align-items: end;
  gap: var(--s1);
}

.student-remove-button {
  display: grid;
  width: 44px;
  height: 44px;
  place-items: center;
  margin-bottom: 0;
  color: var(--navy);
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: var(--radius-sm);
  font-size: 1.1rem;
  cursor: pointer;
}

.student-remove-button:hover {
  color: #a63c31;
  background: #fff0eb;
  border-color: rgba(166, 60, 49, .25);
}

.student-add-button {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 9px 12px;
  color: var(--teal-ink);
  background: transparent;
  border: 1px dashed var(--teal);
  border-radius: var(--radius-sm);
  font-size: .7rem;
  font-weight: 800;
  cursor: pointer;
}

.student-add-button span {
  display: grid;
  width: 22px;
  height: 22px;
  place-items: center;
  color: var(--navy);
  background: var(--cyan);
  border-radius: 50%;
}

.student-add-button:hover {
  background: var(--ice);
  border-color: var(--cyan);
}

.application-summary {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: var(--s1);
  margin-bottom: var(--s3);
}

.application-summary > div {
  display: grid;
  gap: 5px;
  padding: var(--s2);
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: var(--radius-sm);
}

.application-summary span {
  color: var(--teal-ink);
  font-size: .58rem;
  font-weight: 800;
  letter-spacing: .06em;
  text-transform: uppercase;
}

.application-summary strong {
  overflow-wrap: anywhere;
  color: var(--navy);
  font-size: .8rem;
}

.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 {
  border: 0;
  cursor: pointer;
}

.application-modal .form-status {
  margin: var(--s3) 0 0;
}

.application-modal .form-fineprint {
  margin: var(--s3) 0 0;
  color: var(--muted);
  font-size: .62rem;
  text-align: center;
}

.application-success {
  display: grid;
  gap: var(--s1);
  margin-top: var(--s3);
  padding: var(--s3);
  color: var(--navy);
  background: #e9f8ef;
  border: 1px solid rgba(25, 166, 92, .28);
  border-left: 4px solid #19a65c;
  border-radius: var(--radius);
}

.application-success[hidden] {
  display: none;
}

.application-success > span {
  color: #147047;
  font-size: .6rem;
  font-weight: 800;
  letter-spacing: .08em;
  text-transform: uppercase;
}

.application-success > strong {
  font-size: 1.05rem;
}

.application-success p {
  margin: 0;
  color: var(--muted);
  font-size: .72rem;
}

.application-success > div {
  display: flex;
  align-items: center;
  gap: var(--s2);
  width: max-content;
  padding: 9px 12px;
  background: var(--white);
  border: 1px solid rgba(25, 166, 92, .22);
  border-radius: var(--radius-sm);
}

.application-success code {
  color: #147047;
  font-size: .82rem;
  font-weight: 800;
}

.application-success .button {
  width: max-content;
  margin-top: var(--s1);
}

.application-submit:disabled {
  cursor: not-allowed;
  opacity: .55;
}

@media (max-width: 640px) {
  .application-modal {
    width: calc(100% - 16px);
    max-height: calc(100vh - 16px);
  }

  .application-header,
  .application-modal form {
    padding: var(--s3);
  }

  .application-progress li strong {
    max-width: 58px;
    overflow: hidden;
    font-size: .54rem;
    text-overflow: ellipsis;
  }

  .application-progress li:not(:last-child)::after {
    right: 5px;
    left: 34px;
  }

  .application-summary {
    grid-template-columns: 1fr;
  }

  .application-step__actions .button {
    flex: 1 1 160px;
  }
}

.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);
}

.faq-page {
  scroll-margin-top: var(--s7);
}

.faq-page-grid {
  display: grid;
  gap: var(--s6);
}

.faq-aside {
  align-self: start;
  padding: var(--s4);
  color: var(--white);
  background: var(--navy);
  border: 1px solid rgba(51, 205, 221, .24);
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow);
}

.faq-aside h2 {
  margin: var(--s2) 0 var(--s4);
  font-size: clamp(1.7rem, 4vw, 2.7rem);
  line-height: 1.08;
  letter-spacing: -.045em;
}

.faq-aside dl {
  margin: 0;
}

.faq-aside dl div {
  padding: var(--s2) 0;
  border-top: 1px solid rgba(255, 255, 255, .16);
}

.faq-aside dt {
  color: var(--teal);
  font-size: .67rem;
  font-weight: 700;
  letter-spacing: .08em;
  text-transform: uppercase;
}

.faq-aside dd {
  margin: var(--s1) 0 0;
  font-size: .83rem;
  font-weight: 600;
  line-height: 1.55;
}

.faq-aside > p {
  margin-top: var(--s3);
  color: var(--sage);
  font-size: .72rem;
}

.faq-list-panel .faq {
  max-width: none;
}

.faq-list-panel .faq__question {
  font-size: clamp(.9rem, 2vw, 1.03rem);
  line-height: 1.5;
}

.faq-search {
  margin-bottom: var(--s4);
  padding: var(--s3);
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: var(--radius-lg);
  box-shadow: 0 16px 40px rgba(28, 44, 70, .08);
}

.faq-search label {
  display: block;
  margin-bottom: var(--s1);
  color: var(--navy);
  font-size: .7rem;
  font-weight: 800;
  letter-spacing: .07em;
  text-transform: uppercase;
}

.faq-search__field {
  display: flex;
  align-items: center;
  gap: var(--s2);
  padding: 0 var(--s2);
  background: var(--paper);
  border: 1px solid var(--line);
  border-radius: var(--radius-sm);
  transition: border-color .2s ease, box-shadow .2s ease;
}

.faq-search__field:focus-within {
  border-color: var(--cyan);
  box-shadow: 0 0 0 3px rgba(51, 205, 221, .18);
}

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

.faq-search__field input {
  width: 100%;
  min-height: 52px;
  padding: 0;
  color: var(--navy);
  background: transparent;
  border: 0;
  outline: 0;
}

.faq-search__status {
  margin-top: var(--s1);
  color: var(--muted);
  font-size: .7rem;
}

.faq-empty {
  padding: var(--s5) var(--s3);
  text-align: center;
  background: var(--white);
  border: 1px dashed var(--teal);
  border-radius: var(--radius-lg);
}

.faq-empty strong,
.faq-empty span {
  display: block;
}

.faq-empty span {
  margin-top: var(--s1);
  color: var(--muted);
  font-size: .78rem;
}

.faq__answer p + p {
  margin-top: var(--s2);
}

.faq__answer ul {
  display: grid;
  gap: var(--s1);
  margin: 0;
  padding-left: 20px;
}

.faq__answer li::marker {
  color: var(--teal-ink);
}

.faq-benefits {
  grid-template-columns: 1fr;
}

.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;
  }

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

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

  .inovatech-journey__intro {
    grid-template-columns: 1.15fr .85fr;
  }

  .inovatech-journey__intro > p {
    justify-self: end;
    margin-bottom: 5px;
  }

  .season-calendar__header {
    grid-template-columns: 1.15fr .85fr;
  }

  .season-calendar__summary {
    justify-self: end;
  }

  .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;
  }

  .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;
  }

  .faq-benefits {
    grid-template-columns: repeat(2, 1fr);
    column-gap: var(--s4);
  }

  .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: 1fr;
    align-items: center;
  }

  .inovatech-roadmap {
    grid-template-columns: repeat(6, minmax(0, 1fr));
    gap: var(--s1);
    padding: 36px var(--s3) var(--s3);
  }

  .inovatech-roadmap::before {
    top: 61px;
    right: calc(var(--s3) + (100% - 48px) / 12);
    bottom: auto;
    left: calc(var(--s3) + (100% - 48px) / 12);
    width: auto;
    height: 2px;
    background: linear-gradient(90deg, var(--cyan), rgba(51, 205, 221, .32));
  }

  .inovatech-roadmap__step:not(:last-child) {
    padding-bottom: 0;
  }

  .inovatech-roadmap__step a {
    display: flex;
    flex-direction: column;
    gap: 14px;
    align-items: center;
    height: 100%;
    padding: 0 2px 8px;
    text-align: center;
  }

  .inovatech-roadmap__step a:hover {
    transform: translateY(-6px);
  }

  .inovatech-roadmap__marker {
    flex: 0 0 52px;
  }

  .inovatech-roadmap__content {
    display: flex;
    width: 100%;
    min-height: 184px;
    flex-direction: column;
    align-items: center;
    padding: 18px 9px 14px;
    background: rgba(211, 244, 241, .055);
    border: 1px solid rgba(211, 244, 241, .12);
    border-radius: 12px;
  }

  .inovatech-roadmap__content p {
    margin-bottom: var(--s2);
  }

  .inovatech-roadmap__link {
    margin-top: auto;
  }

  .inovatech-roadmap__step--final .inovatech-roadmap__content {
    background: rgba(51, 205, 221, .1);
    border-color: rgba(51, 205, 221, .35);
  }

  .home-season-timeline {
    grid-template-columns: repeat(6, minmax(0, 1fr));
    padding: var(--s4);
  }

  .home-season-timeline::before {
    top: 68px;
    right: var(--s4);
    bottom: auto;
    left: var(--s4);
    width: auto;
    height: 1px;
  }

  .season-timeline__item,
  .season-timeline__item:last-child {
    display: block;
    min-width: 0;
    min-height: 190px;
    padding: 0 var(--s2) 0 0;
    border-right: 1px solid var(--line);
  }

  .season-timeline__item:not(:first-child) {
    padding-left: var(--s2);
  }

  .season-timeline__item:last-child {
    padding-right: 0;
    border-right: 0;
  }

  .season-timeline__month {
    display: block;
    margin-bottom: 14px;
    white-space: nowrap;
  }

  .season-timeline__dot {
    display: block;
    width: 10px;
    height: 10px;
    margin: 0 0 20px;
  }

  .season-timeline__content h3 {
    min-height: 2.7em;
  }

  .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);
  }

  .faq-page-grid {
    grid-template-columns: minmax(260px, .68fr) minmax(0, 1.32fr);
    gap: var(--s7);
  }

  .faq-aside {
    position: sticky;
    top: 120px;
  }

  .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;
  }
}

/* Bilgi mimarisi için ek gezinme bileşenleri.
   Renk, tipografi ve yüzeyler mevcut tasarım sistemini kullanır. */
.site-header {
  color: var(--ink);
  background: rgba(255, 255, 255, .96);
  border-bottom-color: transparent;
}

.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);
}

.site-header .brand-logo,
.site-footer .brand-logo {
  filter: none;
}

.nav-wrap {
  height: 72px;
}

.nav-actions {
  display: none;
  align-items: center;
  gap: var(--s1);
}

.nav-login {
  padding: 10px 14px;
  color: var(--navy);
  border: 1px solid var(--line);
  border-radius: var(--radius-sm);
  font-size: .7rem;
  font-weight: 700;
}

.nav-group {
  position: relative;
}

.nav-group__trigger {
  display: flex;
  align-items: center;
  gap: 6px;
}

.nav-group__trigger span {
  color: var(--cyan);
  font-size: .8rem;
}

.nav-dropdown {
  position: absolute;
  top: calc(100% - 4px);
  left: 50%;
  display: grid;
  visibility: hidden;
  width: 250px;
  padding: var(--s1);
  transform: translate(-50%, 10px);
  opacity: 0;
  color: var(--ink);
  background: var(--white);
  border: 1px solid rgba(51, 205, 221, .28);
  border-radius: var(--radius);
  box-shadow: 0 24px 56px rgba(7, 20, 38, .24);
  transition: opacity .18s ease, transform .18s ease, visibility .18s ease;
}

.nav-group:hover .nav-dropdown,
.nav-group:focus-within .nav-dropdown {
  visibility: visible;
  transform: translate(-50%, 0);
  opacity: 1;
}

.desktop-nav .nav-dropdown a {
  padding: 10px 12px;
  border-radius: var(--radius-sm);
  color: var(--muted);
  font-size: .72rem;
}

.desktop-nav .nav-dropdown a::after {
  display: none;
}

.desktop-nav .nav-dropdown a:hover {
  color: var(--navy);
  background: var(--ice);
}

.menu-toggle {
  color: var(--navy);
  background: var(--ice);
}

.mobile-menu {
  inset: 104px 0 0;
  overflow-y: auto;
  color: var(--ink);
}

.mobile-nav-group {
  border-bottom: 1px solid var(--line);
}

.mobile-nav-group summary {
  padding-block: 14px;
  font-size: 1.1rem;
  font-weight: 800;
  cursor: pointer;
}

.mobile-nav-group div {
  display: grid;
  padding: 0 0 var(--s2) var(--s2);
}

.mobile-menu nav .mobile-nav-group a {
  padding-block: 8px;
  border: 0;
  color: var(--muted);
  font-size: .88rem;
}

.mobile-menu__actions {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: var(--s1);
}

.button--outline-dark {
  color: var(--navy);
  border-color: var(--line);
}

.footer-badge {
  display: inline-flex;
  margin-top: var(--s2);
  padding: 8px 12px;
  color: var(--cyan);
  border: 1px solid rgba(51, 205, 221, .3);
  border-radius: var(--radius-sm);
  font-size: .65rem;
  font-weight: 700;
}

.site-footer .footer-grid {
  align-items: start;
}

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

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

.compact-heading h2 {
  margin: 0 0 var(--s2);
  font-size: clamp(2rem, 4.5vw, 3.25rem);
  line-height: 1.08;
  letter-spacing: -.04em;
}

.compact-heading p {
  color: var(--muted);
}

.compact-heading--center {
  margin-inline: auto;
  text-align: center;
}

.compact-heading--center .section-kicker {
  justify-content: center;
}

.launch-hero {
  position: relative;
  overflow: hidden;
  min-height: 620px;
  padding-block: var(--s6);
  color: var(--white);
  background:
    linear-gradient(90deg, rgba(5, 13, 29, .97) 0%, rgba(6, 20, 47, .9) 48%, rgba(6, 20, 47, .35) 100%),
    url('../img/robotech.jpg') 68% center / cover no-repeat;
}

.launch-hero::after {
  position: absolute;
  inset: 0;
  content: '';
  pointer-events: none;
  background-image: linear-gradient(rgba(51, 205, 221, .05) 1px, transparent 1px), linear-gradient(90deg, rgba(51, 205, 221, .05) 1px, transparent 1px);
  background-size: 48px 48px;
  mask-image: linear-gradient(90deg, #000, transparent 72%);
}

.launch-hero__grid {
  position: relative;
  z-index: 1;
  display: grid;
  min-height: 500px;
  align-items: center;
}

.launch-hero__copy {
  max-width: 690px;
}

.launch-hero .eyebrow {
  color: var(--cyan);
}

.launch-hero h1 {
  margin: var(--s2) 0 var(--s3);
  font-size: clamp(2.7rem, 7vw, 5.4rem);
  line-height: .98;
  letter-spacing: -.06em;
}

.launch-hero h1 span {
  color: var(--cyan);
}

.launch-hero p {
  max-width: 620px;
  color: var(--sage);
  font-size: 1.02rem;
}

.launch-hero__actions {
  display: flex;
  flex-wrap: wrap;
  gap: var(--s2);
  margin-top: var(--s4);
}

.launch-hero__meta {
  display: flex;
  flex-wrap: wrap;
  gap: var(--s1) var(--s2);
  margin-top: var(--s4);
  color: var(--sage);
  font-size: .75rem;
  font-weight: 700;
}

.launch-hero__meta span::after {
  margin-left: var(--s2);
  color: var(--cyan);
  content: '•';
}

.launch-hero__signal {
  display: none;
}

.event-rail {
  position: relative;
  z-index: 5;
  display: grid;
  margin-top: -34px;
  background: var(--white);
  border: 1px solid rgba(51, 205, 221, .2);
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow);
}

.event-rail a {
  display: flex;
  min-height: 72px;
  align-items: center;
  gap: 12px;
  padding: var(--s2);
  border-bottom: 1px solid var(--line);
}

.event-rail a:last-child { border-bottom: 0; }
.event-rail strong { color: #1764ff; font-size: 1.35rem; }
.event-rail span { color: var(--muted); font-size: .68rem; font-weight: 700; text-transform: uppercase; }

.finder-strip {
  display: grid;
  align-items: center;
  gap: var(--s3);
  padding: var(--s4);
  background: #f8fbff;
  border: 1px solid rgba(23, 100, 255, .15);
  border-radius: var(--radius-lg);
}

.finder-strip h2 { margin-bottom: var(--s1); font-size: clamp(1.8rem, 4vw, 2.7rem); line-height: 1.04; }
.finder-strip p { color: var(--muted); font-size: .88rem; }
.finder-levels { display: grid; grid-template-columns: repeat(3, 1fr); gap: var(--s1); }
.finder-levels a { display: grid; min-height: 112px; place-content: center; gap: 6px; padding: var(--s2); text-align: center; background: var(--white); border: 1px solid var(--line); border-radius: var(--radius); transition: transform .2s ease, border-color .2s ease, box-shadow .2s ease; }
.finder-levels a:hover { transform: translateY(-4px); border-color: #1764ff; box-shadow: 0 14px 30px rgba(23, 100, 255, .12); }
.finder-levels span { color: #1764ff; font-size: .7rem; }
.finder-levels strong { font-size: .75rem; text-transform: uppercase; }

.tech-worlds { display: grid; gap: var(--s2); }
.tech-world { position: relative; overflow: hidden; min-height: 240px; padding: var(--s3); background: var(--white); border: 1px solid var(--line); border-radius: var(--radius); transition: transform .25s ease, box-shadow .25s ease; }
.tech-world::after { position: absolute; right: -28px; bottom: -40px; width: 145px; height: 145px; content: ''; opacity: .13; border: 24px solid currentColor; border-radius: 50%; }
.tech-world:hover { transform: translateY(-6px); box-shadow: var(--shadow); }
.tech-world > span { color: var(--muted); font-size: .65rem; font-weight: 700; text-transform: uppercase; }
.tech-world h3 { margin: 56px 0 4px; font-size: 1.5rem; }
.tech-world p { color: var(--muted); font-size: .78rem; }
.tech-world > strong { color: currentColor; font-size: .72rem; text-transform: uppercase; }
.tech-world--robot { color: #1764ff; }.tech-world--ai { color: #7b4ce2; }.tech-world--drone { color: #159a70; }.tech-world--pro { color: #e66722; }.tech-world--idea { color: #d78b00; }
.tech-world h3, .tech-world p, .tech-world > span { color: var(--ink); }

.journey-line { display: grid; gap: var(--s1); margin: 0; padding: 0; list-style: none; }
.journey-line li { position: relative; display: grid; grid-template-columns: 52px 1fr; gap: 2px var(--s2); padding: var(--s2); background: var(--paper); border-left: 3px solid #1764ff; }
.journey-line li > span { grid-row: span 2; color: #1764ff; font-size: 1.3rem; font-weight: 800; }
.journey-line strong { font-size: .85rem; text-transform: uppercase; }
.journey-line small { color: var(--muted); }

.season-region-grid { display: grid; gap: var(--s3); }
.season-card, .region-card { padding: var(--s4); background: var(--white); border: 1px solid var(--line); border-radius: var(--radius-lg); }
.season-card h2 { font-size: clamp(2rem, 4vw, 3rem); }
.season-timeline { display: grid; gap: var(--s1); margin: var(--s4) 0; }
.season-timeline div { display: grid; gap: 4px; padding: var(--s2); background: var(--paper); border-left: 3px solid #1764ff; }
.season-timeline strong { font-size: .72rem; text-transform: uppercase; }
.season-timeline span { color: var(--muted); font-size: .75rem; }
.region-card .turkey-map-detail { display: none; }
.region-card .turkey-map-card { padding: 0; background: transparent; border: 0; box-shadow: none; }
.region-card .turkey-map-toolbar { display: none; }
.region-card .turkey-map { min-height: 260px; }

.outcome-grid { display: grid; gap: var(--s1); }
.outcome-grid article { padding: var(--s3); border-top: 3px solid var(--cyan); background: var(--paper); }
.outcome-grid strong { color: var(--teal-ink); }
.outcome-grid h3 { margin: var(--s3) 0 var(--s1); font-size: 1rem; }
.outcome-grid p { color: var(--muted); font-size: .78rem; }

.experience-grid { display: grid; gap: var(--s3); }
.experience-media { position: relative; overflow: hidden; min-height: 360px; border-radius: var(--radius-lg); }
.experience-media img { width: 100%; height: 100%; object-fit: cover; }
.experience-media::after { position: absolute; inset: 0; content: ''; background: linear-gradient(transparent, rgba(7, 20, 38, .88)); }
.experience-media a { position: absolute; z-index: 1; right: var(--s3); bottom: var(--s3); left: var(--s3); display: flex; align-items: center; gap: var(--s2); font-weight: 800; }
.experience-media a span { display: grid; width: 48px; height: 48px; place-items: center; color: var(--navy); background: var(--white); border-radius: 50%; }
.target-card { padding: var(--s4); color: var(--ink); background: var(--white); border-radius: var(--radius-lg); }
.target-card > span { color: #1764ff; font-size: .72rem; font-weight: 800; letter-spacing: .1em; text-transform: uppercase; }
.target-card h2 { margin: var(--s2) 0 var(--s4); font-size: clamp(2rem, 4vw, 3rem); line-height: 1.05; }
.target-card dl { display: grid; grid-template-columns: 1fr 1fr; gap: var(--s3); }
.target-card dt { font-size: 1.8rem; font-weight: 800; }
.target-card dd { margin: 0; color: var(--muted); font-size: .7rem; text-transform: uppercase; }
.target-card small { display: block; margin-top: var(--s4); color: var(--muted); }
.partner-band { display: grid; align-items: center; gap: var(--s4); padding: var(--s4); border: 1px solid var(--line); border-radius: var(--radius-lg); }
.partner-band h2 { max-width: 780px; font-size: clamp(2rem, 4vw, 3rem); line-height: 1.08; }
.partner-band p { color: var(--muted); }
.final-cta { padding-block: var(--s5); color: var(--white); background: #071426; }
.final-cta__inner { display: grid; align-items: center; gap: var(--s3); }
.final-cta__inner span { color: var(--cyan); font-size: .72rem; font-weight: 800; letter-spacing: .08em; text-transform: uppercase; }
.final-cta__inner h2 { margin: var(--s1) 0 0; font-size: clamp(1.7rem, 4vw, 2.7rem); line-height: 1.08; }
.final-cta__inner > div:last-child { display: flex; flex-wrap: wrap; gap: var(--s2); }

/* Ana sayfa yarışma bulucu */
.home-finder-section {
  position: relative;
  overflow: hidden;
  background:
    radial-gradient(circle at 8% 15%, rgba(51, 205, 221, .14), transparent 24rem),
    linear-gradient(180deg, #f7f9fa 0%, #eef4f6 100%);
}

.home-finder-section::after {
  position: absolute;
  top: 90px;
  right: -130px;
  width: 330px;
  height: 330px;
  content: '';
  border: 1px solid rgba(51, 205, 221, .2);
  border-radius: 50%;
  box-shadow: 0 0 0 42px rgba(51, 205, 221, .035), 0 0 0 92px rgba(51, 205, 221, .025);
  pointer-events: none;
}

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

.home-finder-intro {
  max-width: 800px;
}

.home-finder-intro h2 {
  color: var(--navy);
}

.home-finder {
  overflow: hidden;
  color: var(--white);
  background: var(--navy-2);
  border: 1px solid rgba(28, 44, 70, .22);
  border-radius: 28px;
  box-shadow: 0 28px 70px rgba(18, 32, 54, .16), 0 0 0 8px rgba(255, 255, 255, .65);
}

.home-finder__header {
  display: grid;
  align-items: center;
  gap: var(--s3);
  padding: var(--s3);
  background:
    linear-gradient(rgba(51, 205, 221, .045) 1px, transparent 1px),
    linear-gradient(90deg, rgba(51, 205, 221, .045) 1px, transparent 1px),
    var(--navy);
  background-size: 24px 24px;
  border-bottom: 1px solid rgba(51, 205, 221, .22);
}

.home-finder__header-copy > span {
  display: flex;
  align-items: center;
  gap: 10px;
  margin-bottom: 5px;
  color: var(--cyan);
  font-size: .75rem;
  font-weight: 800;
  letter-spacing: .1em;
  text-transform: uppercase;
}

.home-finder__header-copy i {
  width: 8px;
  height: 8px;
  background: var(--cyan);
  border-radius: 50%;
  box-shadow: 0 0 0 5px rgba(51, 205, 221, .14), 0 0 18px var(--cyan);
}

.home-finder__header-copy h3 {
  margin: 0;
  color: var(--white);
  font-size: clamp(1.25rem, 3vw, 1.8rem);
  line-height: 1.15;
  letter-spacing: -.025em;
}

.home-finder__progress {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  margin: 0;
  padding: 0;
  list-style: none;
}

.home-finder__progress li {
  position: relative;
  display: grid;
  justify-items: center;
  gap: 7px;
  color: rgba(255, 255, 255, .5);
  text-align: center;
  transition: color .2s ease;
}

.home-finder__progress li::before {
  position: absolute;
  top: 16px;
  right: 50%;
  width: 100%;
  height: 1px;
  content: '';
  background: rgba(255, 255, 255, .16);
}

.home-finder__progress li:first-child::before {
  display: none;
}

.home-finder__progress span {
  position: relative;
  z-index: 1;
  display: grid;
  width: 34px;
  height: 34px;
  place-items: center;
  background: var(--navy-2);
  border: 1px solid rgba(255, 255, 255, .22);
  border-radius: 50%;
  font-size: .75rem;
  font-weight: 800;
  transition: color .2s ease, background .2s ease, border-color .2s ease, box-shadow .2s ease;
}

.home-finder__progress strong {
  font-size: .75rem;
  letter-spacing: .04em;
}

.home-finder__progress li.is-current {
  color: var(--white);
}

.home-finder__progress li.is-current::before {
  background: var(--cyan);
}

.home-finder__progress li.is-current span {
  color: var(--navy);
  background: var(--cyan);
  border-color: var(--cyan);
  box-shadow: 0 0 0 5px rgba(51, 205, 221, .14), 0 0 24px rgba(51, 205, 221, .35);
}

.home-finder__progress li.is-complete {
  color: var(--ice);
}

.home-finder__progress li.is-complete::before {
  background: var(--cyan);
}

.home-finder__progress li.is-complete span {
  color: var(--navy);
  background: var(--ice);
  border-color: var(--cyan);
}

.home-finder__steps {
  display: grid;
  gap: 12px;
  padding: 12px;
  background: #e7f0f2;
}

.home-finder__step {
  display: flex;
  min-width: 0;
  flex-direction: column;
  margin: 0;
  padding: var(--s3);
  color: var(--navy);
  background: var(--white);
  border: 0;
  border-radius: 18px;
  box-shadow: 0 8px 24px rgba(18, 32, 54, .055);
}

.home-finder__step-heading {
  display: flex;
  align-items: flex-start;
  gap: 12px;
  margin-bottom: var(--s3);
}

.home-finder__step-heading > span {
  display: grid;
  width: 34px;
  height: 34px;
  flex: 0 0 auto;
  place-items: center;
  color: var(--teal-ink);
  background: var(--ice);
  border-radius: 10px;
  font-size: .7rem;
  font-weight: 800;
}

.home-finder__step-heading > div {
  min-width: 0;
}

.home-finder__step-heading strong {
  display: block;
  color: var(--navy);
  font-size: 1rem;
  line-height: 1.25;
}

.home-finder__step-heading small {
  display: block;
  margin-top: 5px;
  color: var(--muted);
  font-size: .8rem;
  font-weight: 500;
}

.home-finder__choices {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  flex: 1;
  gap: 10px;
}

.home-finder__step:first-child .home-finder__choices {
  grid-template-columns: 1fr;
}

.home-finder__choices button {
  position: relative;
  min-height: 54px;
  padding: 11px 34px 11px 13px;
  color: var(--navy);
  background: var(--paper);
  border: 1px solid var(--line);
  border-radius: 12px;
  cursor: pointer;
  font-size: .875rem;
  font-weight: 700;
  text-align: left;
  transition: transform .2s ease, color .2s ease, background .2s ease, border-color .2s ease, box-shadow .2s ease;
}

.home-finder__choices button:last-child:nth-child(odd) {
  grid-column: 1 / -1;
}

.home-finder__choices button::after {
  position: absolute;
  top: 50%;
  right: 12px;
  display: grid;
  width: 18px;
  height: 18px;
  place-items: center;
  content: '';
  transform: translateY(-50%);
  color: var(--navy);
  border: 1px solid rgba(28, 44, 70, .28);
  border-radius: 50%;
  font-size: .65rem;
  transition: background .2s ease, border-color .2s ease, box-shadow .2s ease;
}

.home-finder__choices button:hover {
  transform: translateY(-2px);
  background: var(--white);
  border-color: var(--teal);
  box-shadow: 0 10px 22px rgba(18, 32, 54, .08);
}

.home-finder__choices button[aria-pressed="true"] {
  color: var(--navy);
  background: var(--ice);
  border-color: var(--cyan);
  box-shadow: inset 0 0 0 1px var(--cyan), 0 10px 24px rgba(51, 205, 221, .14);
}

.home-finder__choices button[aria-pressed="true"]::after {
  content: '✓';
  background: var(--cyan);
  border-color: var(--cyan);
  box-shadow: 0 0 0 4px rgba(51, 205, 221, .12);
}

.home-finder__footer {
  display: grid;
  align-items: center;
  gap: var(--s3);
  padding: var(--s3);
  color: var(--white);
  background: var(--navy-2);
}

.home-finder__summary > span {
  display: block;
  margin-bottom: 5px;
  color: var(--cyan);
  font-size: .7rem;
  font-weight: 800;
  letter-spacing: .1em;
  text-transform: uppercase;
}

.home-finder__summary p {
  max-width: 620px;
  color: var(--sage);
  font-size: .9rem;
  font-weight: 600;
}

.home-finder__actions {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
}

.home-finder__footer .button {
  min-height: 48px;
  font-size: .875rem;
}

.home-finder__footer button:disabled {
  cursor: not-allowed;
  color: rgba(255, 255, 255, .62);
  background: rgba(51, 205, 221, .16);
  border-color: rgba(51, 205, 221, .18);
  opacity: 1;
  transform: none;
  box-shadow: none;
}

.home-finder.is-complete .home-finder__summary p {
  color: var(--white);
}

/* Finder */
.breadcrumb { display: flex; flex-wrap: wrap; gap: 8px; margin-bottom: var(--s4); color: rgba(255,255,255,.68); font-size: .7rem; }
.finder-hero { padding-block: var(--s5); color: var(--white); background: linear-gradient(112deg, #071426 0%, #0d2d63 70%, #1764ff 130%); }
.finder-hero__grid { display: grid; align-items: end; gap: var(--s4); }
.finder-hero h1 { max-width: 700px; margin: var(--s2) 0; font-size: clamp(2.7rem, 7vw, 5rem); line-height: .98; letter-spacing: -.055em; }
.finder-hero h1 span { color: #3b7cff; }
.finder-hero p { max-width: 620px; color: var(--sage); }
.finder-progress { display: grid; grid-template-columns: repeat(4, 1fr); margin: 0; padding: 0; list-style: none; }
.finder-progress li { position: relative; display: grid; gap: 6px; justify-items: center; color: rgba(255,255,255,.55); font-size: .62rem; text-align: center; }
.finder-progress li::before { position: absolute; z-index: 0; top: 14px; left: -50%; width: 100%; height: 1px; content: ''; background: rgba(255,255,255,.28); }
.finder-progress li:first-child::before { display: none; }
.finder-progress span { z-index: 1; display: grid; width: 30px; height: 30px; place-items: center; background: #071426; border: 1px solid rgba(255,255,255,.45); border-radius: 50%; }
.finder-progress .is-active { color: var(--white); }.finder-progress .is-active span { background: #1764ff; border-color: #1764ff; }
.finder-workspace { display: grid; align-items: start; gap: var(--s3); }
.finder-steps { display: grid; gap: var(--s3); }
.finder-step { margin: 0; padding: var(--s3); background: var(--white); border: 1px solid var(--line); border-radius: var(--radius-lg); }
.finder-step legend { padding: 0; font-size: 1.2rem; font-weight: 800; }
.finder-step legend small { display: block; color: #1764ff; font-size: .65rem; letter-spacing: .08em; text-transform: uppercase; }
.choice-grid { display: grid; grid-template-columns: 1fr 1fr; gap: var(--s1); margin-top: var(--s3); }
.choice-grid button { display: grid; min-height: 116px; place-content: center; gap: 8px; padding: var(--s2); color: var(--ink); text-align: center; background: var(--white); border: 1px solid var(--line); border-radius: var(--radius); cursor: pointer; transition: transform .2s ease, border-color .2s ease, background .2s ease; }
.choice-grid button:hover { transform: translateY(-3px); border-color: #1764ff; }
.choice-grid button[aria-pressed="true"] { color: #164dcc; background: #edf4ff; border-color: #1764ff; box-shadow: inset 0 0 0 1px #1764ff; }
.choice-grid button span { color: #1764ff; font-size: .72rem; font-weight: 800; }.choice-grid button strong { font-size: .78rem; }.choice-grid button small { color: var(--muted); font-size: .65rem; }
.finder-summary { position: sticky; top: 132px; padding: var(--s3); color: var(--white); background: #071426; border-radius: var(--radius-lg); }
.finder-summary > span { color: var(--cyan); font-size: .68rem; font-weight: 800; text-transform: uppercase; }
.finder-summary dl { margin-block: var(--s3); }
.finder-summary dl div { padding-block: 12px; border-bottom: 1px solid rgba(255,255,255,.12); }
.finder-summary dt { color: var(--sage); font-size: .65rem; }.finder-summary dd { margin: 4px 0 0; font-weight: 700; }.finder-summary .button { width: 100%; }.finder-summary > small { display: block; margin-top: var(--s2); color: var(--sage); }
.finder-results__heading { display: flex; flex-wrap: wrap; align-items: end; justify-content: space-between; gap: var(--s3); margin-bottom: var(--s4); }
.finder-results__heading h2 { font-size: clamp(2rem, 5vw, 3.5rem); }.finder-results__heading h2 span { color: #1764ff; }
.finder-result-grid { display: grid; gap: var(--s2); }
.finder-result-card { overflow: hidden; background: var(--white); border: 1px solid var(--line); border-radius: var(--radius); }
.finder-result-card__art { height: 160px; background: linear-gradient(rgba(7,20,38,.08), rgba(7,20,38,.35)), url('../img/robotech.jpg') center/cover; }
.finder-result-card__body { padding: var(--s3); }.finder-result-card__match { display: inline-flex; padding: 5px 9px; color: #147047; background: #e8f8ef; border-radius: 999px; font-size: .65rem; font-weight: 800; }.finder-result-card h3 { margin: var(--s2) 0 var(--s1); }.finder-result-card p { color: var(--muted); font-size: .78rem; }.finder-result-card dl { display: flex; flex-wrap: wrap; gap: var(--s1); }.finder-result-card dd { margin: 0; padding: 5px 8px; background: var(--paper); border-radius: 999px; font-size: .62rem; }.finder-result-card dt { display: none; }.finder-result-card a { display: flex; justify-content: center; margin-top: var(--s3); padding: 10px; color: var(--white); background: #1764ff; border-radius: var(--radius-sm); font-size: .72rem; font-weight: 800; }
.match-explainer { margin-top: var(--s3); padding: var(--s3); color: var(--white); background: #0d2d63; border-radius: var(--radius); }.match-explainer p { color: var(--sage); }

/* Detail and resource pages */
.competition-detail-hero { padding-block: var(--s5); color: var(--white); background: #071426; }.competition-detail-hero__grid { display: grid; gap: var(--s4); }.competition-detail-hero h1 { margin: var(--s2) 0; font-size: clamp(2.7rem, 7vw, 5.2rem); line-height: .98; }.competition-detail-hero h2 { color: var(--cyan); font-size: 1.15rem; }.competition-detail-hero p { max-width: 620px; color: var(--sage); }.detail-tags { display: flex; gap: var(--s1); }.detail-tags span { padding: 5px 9px; color: var(--cyan); background: rgba(51,205,221,.1); border: 1px solid rgba(51,205,221,.3); border-radius: 999px; font-size: .66rem; font-weight: 800; text-transform: uppercase; }
.detail-facts { display: grid; grid-template-columns: 1fr 1fr; gap: var(--s2); margin-block: var(--s4); }.detail-facts dt { color: var(--sage); font-size: .62rem; text-transform: uppercase; }.detail-facts dd { margin: 2px 0 0; font-size: .75rem; font-weight: 700; }.detail-hero-image { position: relative; overflow: hidden; min-height: 360px; border-radius: var(--radius-lg); }.detail-hero-image img { width: 100%; height: 100%; object-fit: cover; }.detail-hero-image::after { position: absolute; inset: 0; content: ''; background: linear-gradient(transparent 50%, rgba(7,20,38,.9)); }.detail-hero-image div { position: absolute; z-index: 1; right: var(--s3); bottom: var(--s3); left: var(--s3); display: grid; grid-template-columns: 48px 1fr; gap: 2px var(--s2); }.detail-hero-image div > span { grid-row: span 2; display: grid; width: 48px; height: 48px; place-items: center; color: var(--navy); background: var(--white); border-radius: 50%; }.detail-hero-image small { color: var(--sage); }
.detail-sticky { position: sticky; z-index: 80; top: 76px; overflow-x: auto; background: var(--white); border-bottom: 1px solid var(--line); box-shadow: 0 8px 24px rgba(28,44,70,.08); }.detail-sticky .container { display: flex; min-width: max-content; }.detail-sticky a { padding: 16px; color: var(--muted); font-size: .7rem; font-weight: 700; }.detail-sticky a:hover { color: #1764ff; }
.detail-grid { display: grid; gap: var(--s3); }.info-panel { padding: var(--s3); background: var(--white); border: 1px solid var(--line); border-radius: var(--radius-lg); }.info-panel h2 { font-size: clamp(1.5rem, 3.5vw, 2.3rem); line-height: 1.12; }.info-panel p { color: var(--muted); }.info-panel h3 { margin-top: var(--s4); }.skill-chips { display: flex; flex-wrap: wrap; gap: var(--s1); }.skill-chips span { padding: 7px 10px; color: #1764ff; background: #edf4ff; border-radius: 999px; font-size: .68rem; font-weight: 700; }.how-to-race { display: grid; gap: var(--s1); margin: var(--s4) 0 0; padding: 0; list-style: none; }.how-to-race li { display: flex; align-items: center; gap: var(--s2); padding: var(--s2); background: var(--paper); font-size: .75rem; font-weight: 800; text-transform: uppercase; }.how-to-race span { display: grid; width: 32px; height: 32px; place-items: center; color: var(--white); background: #1764ff; border-radius: 50%; }.rule-grid { display: grid; grid-template-columns: 1fr 1fr; gap: var(--s1); margin: var(--s4) 0; }.rule-grid div { display: grid; gap: 4px; padding: var(--s2); background: var(--paper); }.rule-grid strong { font-size: .67rem; text-transform: uppercase; }.rule-grid span { color: var(--muted); font-size: .7rem; }.track-preview { display: grid; min-height: 220px; place-items: center; padding: var(--s3); color: #101010; background-image: linear-gradient(#dce4ec 1px, transparent 1px), linear-gradient(90deg, #dce4ec 1px, transparent 1px); background-size: 24px 24px; border: 1px solid var(--line); border-radius: var(--radius); }.track-facts { display: grid; grid-template-columns: 1fr 1fr; gap: var(--s1); }.track-facts dt { color: var(--muted); font-size: .65rem; }.track-facts dd { margin: 0; font-weight: 800; }.status-chip { display: inline-flex; padding: 5px 9px; color: #147047; background: #e8f8ef; border-radius: 999px; font-size: .65rem; font-weight: 800; }.spec-card > div { display: flex; flex-wrap: wrap; gap: var(--s1); }.spec-card > small { display: block; margin-top: var(--s3); color: var(--muted); }
.resource-hero, .document-hero, .simple-hero, .system-hero, .region-page-hero { padding-block: var(--s5); color: var(--white); background: #071426; }.resource-hero__grid, .system-hero__grid, .region-page-hero__grid { display: grid; align-items: center; gap: var(--s4); }.resource-hero h1, .document-hero h1, .simple-hero h1, .system-hero h1, .region-page-hero h1 { max-width: 900px; margin: var(--s2) 0; font-size: clamp(2.6rem, 7vw, 5rem); line-height: 1; letter-spacing: -.055em; }.resource-hero h1 span { color: var(--cyan); }.resource-hero p, .document-hero p, .simple-hero p, .system-hero p, .region-page-hero p { max-width: 720px; color: var(--sage); }.resource-hero__art { display: grid; grid-template-columns: auto 1fr; gap: var(--s1) var(--s2); padding: var(--s3); background: rgba(255,255,255,.06); border: 1px solid rgba(51,205,221,.2); border-radius: var(--radius-lg); }.resource-hero__art span { color: var(--cyan); }.resource-hub-grid { display: grid; gap: var(--s2); }.resource-hub-card { display: block; min-height: 250px; padding: var(--s3); background: var(--white); border: 1px solid var(--line); border-radius: var(--radius); transition: transform .2s ease, box-shadow .2s ease; }.resource-hub-card:hover { transform: translateY(-5px); box-shadow: var(--shadow); }.resource-hub-card > span { color: #1764ff; font-size: .65rem; font-weight: 800; text-transform: uppercase; }.resource-hub-card h2 { margin: var(--s5) 0 var(--s1); font-size: 1.45rem; }.resource-hub-card p { color: var(--muted); font-size: .8rem; }.resource-hub-card strong { font-size: .72rem; }.download-grid, .learning-grid { display: grid; gap: var(--s2); }.download-grid article, .learning-grid article { padding: var(--s3); background: var(--white); border: 1px solid var(--line); border-radius: var(--radius); }.download-grid article > span, .learning-grid article > span { color: #1764ff; font-size: .65rem; font-weight: 800; text-transform: uppercase; }.download-grid a { color: #1764ff; font-size: .72rem; font-weight: 800; }.sumo-ring { width: min(100%, 210px); aspect-ratio: 1; margin: var(--s3) auto; background: #111; border: 10px solid #e8edf1; border-radius: 50%; box-shadow: inset 0 0 0 1px #111; }.drone-course { display: flex; min-height: 220px; align-items: center; justify-content: space-around; margin-block: var(--s3); background: var(--paper); border-radius: var(--radius); }.drone-course i { width: 56px; height: 96px; border: 5px solid #1764ff; border-radius: 50%; }.learning-grid article h3 { margin: var(--s4) 0 var(--s1); }.learning-grid article p { color: var(--muted); font-size: .78rem; }
.warning-callout, .info-callout { display: flex; max-width: 840px; align-items: center; gap: var(--s2); margin-top: var(--s4); padding: var(--s2) var(--s3); color: #6c4200; background: #fff4dd; border: 1px solid #e7b348; border-radius: var(--radius); }.warning-callout strong { display: grid; width: 32px; height: 32px; flex: 0 0 auto; place-items: center; border: 2px solid currentColor; border-radius: 50%; }.filter-bar { display: grid; gap: var(--s1); margin-bottom: var(--s3); padding: var(--s2); background: var(--white); border: 1px solid var(--line); border-radius: var(--radius); }.filter-bar label { display: grid; gap: 5px; color: var(--muted); font-size: .62rem; font-weight: 800; text-transform: uppercase; }.filter-bar select, .filter-bar input { width: 100%; min-height: 44px; padding: 8px 10px; color: var(--ink); background: var(--white); border: 1px solid var(--line); border-radius: var(--radius-sm); }.spec-catalog-status { display: flex; flex-wrap: wrap; justify-content: space-between; gap: var(--s1); margin-bottom: var(--s3); color: var(--muted); font-size: .7rem; }.spec-catalog-status strong { color: var(--navy); }.spec-layout { display: grid; align-items: start; gap: var(--s3); }.spec-grid { display: grid; gap: var(--s2); }.spec-list-card { display: flex; min-height: 320px; flex-direction: column; padding: var(--s3); background: var(--white); border: 1px solid var(--line); border-radius: var(--radius); transition: transform .2s ease, box-shadow .2s ease; }.spec-list-card:hover { transform: translateY(-3px); box-shadow: var(--shadow); }.spec-list-card > div:first-child { display: flex; justify-content: space-between; color: #1764ff; font-size: .68rem; font-weight: 800; text-transform: uppercase; }.spec-list-card h2 { margin: var(--s2) 0 3px; font-size: 1.15rem; }.spec-list-card__platform { margin-bottom: var(--s3); color: var(--muted); font-size: .68rem; font-weight: 700; }.spec-list-card dl { display: grid; grid-template-columns: 1fr 1fr; gap: var(--s1); }.spec-list-card dl > div { padding: 9px; background: var(--paper); border-radius: var(--radius-sm); }.spec-list-card dt { color: var(--muted); font-size: .6rem; }.spec-list-card dd { margin: 0; font-size: .7rem; font-weight: 700; }.spec-list-card em { padding: 3px 7px; color: #147047; background: #e8f8ef; border-radius: 999px; font-style: normal; }.spec-list-card footer { display: flex; flex-wrap: wrap; gap: var(--s1); margin-top: auto; padding-top: var(--s3); }.spec-list-card footer a, .spec-list-card footer button { display: inline-flex; align-items: center; gap: 6px; padding: 8px 10px; color: #1764ff; background: var(--white); border: 1px solid rgba(23,100,255,.3); border-radius: var(--radius-sm); font-size: .64rem; font-weight: 800; cursor: pointer; }.spec-list-card footer .spec-download { color: var(--navy); background: var(--cyan); border-color: var(--cyan); }.spec-list-card footer a:hover { transform: translateY(-1px); }.version-panel { position: sticky; top: 132px; padding: var(--s3); background: var(--white); border: 1px solid var(--line); border-radius: var(--radius); }.version-panel > a { display: grid; grid-template-columns: auto auto 1fr; gap: 8px; padding: 12px; border-bottom: 1px solid var(--line); font-size: .67rem; }.version-panel > a span { margin-left: auto; color: var(--muted); }.version-panel > a em { color: #147047; font-style: normal; }.version-panel .is-current { background: #edf4ff; }.version-panel p { color: var(--muted); font-size: .68rem; }.spec-summary-panel dl { display: grid; gap: var(--s1); margin: var(--s3) 0; }.spec-summary-panel dl div { display: flex; justify-content: space-between; padding: 10px 0; border-bottom: 1px solid var(--line); }.spec-summary-panel dt { color: var(--muted); font-size: .68rem; }.spec-summary-panel dd { margin: 0; color: var(--navy); font-size: .72rem; font-weight: 800; }.catalog-empty[hidden] { display: none; }
.rule-update-list { display: grid; gap: var(--s2); }.rule-update-list article { display: grid; gap: var(--s2); padding: var(--s3); background: var(--white); border: 1px solid var(--line); border-radius: var(--radius); }.rule-update-index { display: grid; align-content: start; gap: 5px; }.rule-update-index small, .rule-update-list article > div:nth-child(2) > small { color: #1764ff; font-size: .65rem; font-weight: 700; }.rule-update-index > strong { font-size: 2rem; }.rule-update-index time { color: var(--muted); font-size: .7rem; }.rule-update-index span { width: max-content; padding: 4px 7px; color: #b94a32; background: #fff0eb; border-radius: 999px; font-size: .58rem; font-weight: 800; }.rule-update-index .is-info { color: #147047; background: #e8f8ef; }.rule-update-list h2 { margin: var(--s2) 0; font-size: 1rem; }.rule-update-list p { color: var(--muted); font-size: .76rem; }.rule-update-list article > a { align-self: center; color: #1764ff; font-size: .7rem; font-weight: 800; }

/* System, regions, schools, sponsors and portal */
.system-hero img { width: 100%; max-height: 420px; object-fit: cover; border-radius: var(--radius-lg); }.system-steps { display: grid; gap: var(--s1); margin: 0; padding: 0; list-style: none; }.system-steps li { padding: var(--s3); background: var(--white); border: 1px solid var(--line); border-radius: var(--radius); }.system-steps li > span { display: grid; width: 42px; height: 42px; place-items: center; color: var(--white); background: #1764ff; border-radius: 50%; font-weight: 800; }.system-steps h2 { margin: var(--s4) 0 var(--s1); font-size: 1.1rem; }.system-steps p { color: var(--muted); font-size: .75rem; }.system-stats { display: grid; grid-template-columns: 1fr 1fr; gap: var(--s1); margin-top: var(--s3); }.system-stats div { display: grid; gap: 4px; padding: var(--s3); background: #edf4ff; border-radius: var(--radius); }.system-stats strong { color: #1764ff; font-size: 2rem; }.system-stats span { font-size: .68rem; font-weight: 700; text-transform: uppercase; }.phase-grid { display: grid; align-items: center; gap: var(--s4); }.phase-grid h2 { font-size: clamp(2rem, 5vw, 3.5rem); }.phase-grid li { margin-bottom: var(--s1); color: var(--muted); }.section--navy .phase-grid li { color: var(--sage); }.phase-card { padding: var(--s4); color: var(--white); background: #071426; border-radius: var(--radius-lg); }.phase-card > span { color: var(--cyan); font-size: .7rem; font-weight: 800; text-transform: uppercase; }.phase-card h3 { margin: var(--s3) 0; font-size: clamp(1.7rem, 4vw, 2.6rem); line-height: 1.08; }.phase-card p { color: var(--sage); }.phase-card--light { color: var(--ink); background: var(--white); }.phase-card--light p { color: var(--muted); }
.region-page-hero .turkey-map-detail, .region-page-hero .turkey-map-toolbar, .region-page-hero .turkey-map-hint { display: none; }.region-page-hero .turkey-map-card { padding: 0; background: transparent; border: 0; box-shadow: none; }.region-tabs { display: flex; overflow-x: auto; margin-bottom: var(--s3); border-bottom: 1px solid var(--line); }.region-tabs button { flex: 0 0 auto; padding: 14px 18px; color: var(--muted); background: transparent; border: 0; border-bottom: 3px solid transparent; font-weight: 700; cursor: pointer; }.region-tabs .is-active { color: #1764ff; border-bottom-color: #1764ff; }.region-event-layout { display: grid; align-items: start; gap: var(--s3); }.region-event, .event-aside article { padding: var(--s3); background: var(--white); border: 1px solid var(--line); border-radius: var(--radius); }.region-event__heading { display: flex; flex-wrap: wrap; align-items: center; justify-content: space-between; gap: var(--s2); }.region-event__heading h2 { margin: var(--s1) 0 0; }.region-event__facts { display: grid; grid-template-columns: 1fr 1fr; gap: var(--s1); margin: var(--s3) 0; }.region-event__facts div { padding: var(--s2); background: var(--paper); }.region-event__facts dt { color: var(--muted); font-size: .62rem; }.region-event__facts dd { margin: 0; font-size: .74rem; font-weight: 800; }.region-event > img { width: 100%; max-height: 320px; object-fit: cover; border-radius: var(--radius); }.region-details { display: grid; gap: var(--s3); margin-top: var(--s3); }.region-details ol { padding: 0; list-style: none; }.region-details li { display: flex; gap: var(--s2); padding-block: 8px; border-bottom: 1px solid var(--line); }.region-details time { color: #1764ff; font-weight: 800; }.region-details p { color: var(--muted); }.region-details a { color: #1764ff; font-weight: 800; }.event-aside { display: grid; gap: var(--s2); }.event-aside article:first-child { color: var(--white); background: #0d49bd; }.event-aside li { margin-bottom: 8px; }.event-aside article > a:not(.button) { display: grid; gap: 4px; padding-block: var(--s2); border-bottom: 1px solid var(--line); font-size: .72rem; }.event-aside small { color: var(--muted); }.calendar-strip { display: grid; gap: var(--s1); margin-top: var(--s3); }.calendar-strip article { display: grid; gap: 3px; padding: var(--s2); background: var(--white); border: 1px solid var(--line); border-radius: var(--radius-sm); }.calendar-strip .is-active { color: #1764ff; border-color: #1764ff; }.calendar-strip strong { font-size: .72rem; }.calendar-strip span, .calendar-strip small { color: var(--muted); font-size: .63rem; }
.audience-hero { min-height: 540px; padding-block: var(--s6); color: var(--white); background-position: center; background-size: cover; }.audience-hero--schools { background-image: linear-gradient(90deg, rgba(7,20,38,.96), rgba(7,20,38,.35)), url('../img/ideatech.jpg'); }.audience-hero--sponsors { background-image: linear-gradient(90deg, rgba(7,20,38,.97), rgba(7,20,38,.5)), url('../img/slider.jpg'); }.audience-hero h1 { max-width: 800px; margin: var(--s2) 0; font-size: clamp(2.7rem, 7vw, 5.2rem); line-height: 1; letter-spacing: -.055em; }.audience-hero p { max-width: 620px; color: var(--sage); }.sponsor-metrics { display: grid; grid-template-columns: 1fr 1fr; gap: var(--s1); margin-top: var(--s5); }.sponsor-metrics div { padding: var(--s2); background: rgba(7,20,38,.7); border: 1px solid rgba(255,255,255,.18); border-radius: var(--radius-sm); }.sponsor-metrics strong { display: block; font-size: 1.4rem; }.sponsor-metrics span { color: var(--sage); font-size: .6rem; text-transform: uppercase; }.benefit-grid, .value-grid, .partnership-grid { display: grid; gap: var(--s2); }.benefit-grid article, .value-grid article { padding: var(--s3); text-align: center; background: var(--white); border: 1px solid var(--line); border-radius: var(--radius); }.benefit-grid span, .value-grid span { color: #1764ff; font-weight: 800; }.benefit-grid h3, .value-grid h3 { margin: var(--s4) 0 var(--s1); font-size: .95rem; }.benefit-grid p, .value-grid p { color: var(--muted); font-size: .75rem; }.school-steps { display: grid; gap: var(--s1); margin: 0; padding: 0; list-style: none; }.school-steps li { padding: var(--s3); text-align: center; background: var(--white); border: 1px solid var(--line); border-radius: var(--radius); }.school-steps span { display: grid; width: 42px; height: 42px; place-items: center; margin: 0 auto var(--s3); color: #1764ff; background: #edf4ff; border-radius: 50%; font-weight: 800; }.school-steps p { color: var(--muted); font-size: .72rem; }.school-support { display: grid; gap: var(--s3); margin-top: var(--s4); padding: var(--s3); background: var(--white); border: 1px solid var(--line); border-radius: var(--radius-lg); }.school-support li { margin-bottom: var(--s1); color: var(--muted); }.faq-mini details { padding: var(--s2); border-bottom: 1px solid var(--line); }.faq-mini summary { font-weight: 700; cursor: pointer; }.faq-mini p { color: var(--muted); }.partnership-grid article { overflow: hidden; background: var(--white); border: 1px solid var(--line); border-radius: var(--radius); }.partnership-grid img { width: 100%; height: 180px; object-fit: cover; }.partnership-grid h3, .partnership-grid p { margin-inline: var(--s3); }.partnership-grid h3 { margin-top: var(--s3); }.partnership-grid p { margin-bottom: var(--s3); color: var(--muted); font-size: .75rem; }
.portal-heading { margin-bottom: var(--s4); }.portal-heading h1 { margin: var(--s2) 0; font-size: clamp(2.4rem, 6vw, 4.2rem); }.portal-heading p { color: var(--muted); }.portal-grid { display: grid; align-items: start; gap: var(--s3); }.portal-main, .portal-aside { display: grid; gap: var(--s2); }.process-card, .portal-files, .portal-aside article { padding: var(--s3); background: var(--white); border: 1px solid var(--line); border-radius: var(--radius); }.process-card ol { display: grid; gap: var(--s1); margin: 0; padding: 0; list-style: none; }.process-card li { display: grid; grid-template-columns: 38px 1fr; gap: 2px var(--s2); padding: var(--s2); background: var(--paper); }.process-card li span { grid-row: span 2; display: grid; width: 34px; height: 34px; place-items: center; border: 1px solid var(--line); border-radius: 50%; }.process-card .is-done span { color: var(--white); background: #19a65c; }.process-card .is-current span { color: var(--white); background: #1764ff; }.process-card small { color: var(--muted); }.portal-files > div { display: grid; grid-template-columns: repeat(auto-fit, minmax(170px, 1fr)); gap: var(--s1); }.portal-files a { display: grid; gap: 8px; padding: var(--s2); background: var(--paper); border: 1px solid var(--line); border-radius: var(--radius-sm); }.portal-files span, .portal-aside small { color: var(--muted); font-size: .65rem; }.portal-aside article:first-child { color: var(--white); background: #071426; }.portal-aside article > a:not(.button) { display: grid; gap: 4px; padding-block: var(--s2); border-bottom: 1px solid var(--line); font-size: .72rem; }

/* Hazırlık Merkezi ve teknik şartname kataloğu */
.resource-hub-intro {
  max-width: 760px;
  margin-bottom: var(--s4);
}

.resource-hub-intro h2 {
  margin-bottom: var(--s2);
  font-size: clamp(1.8rem, 4vw, 3rem);
  line-height: 1.12;
  letter-spacing: -.035em;
}

.resource-hub-intro p {
  color: var(--muted);
}

.document-hero--specifications {
  position: relative;
  overflow: hidden;
  padding-block: var(--s4) var(--s5);
  background-color: var(--navy-2);
  background-image:
    linear-gradient(rgba(51, 205, 221, .07) 1px, transparent 1px),
    linear-gradient(90deg, rgba(51, 205, 221, .07) 1px, transparent 1px);
  background-size: 48px 48px;
}

.document-hero--specifications::after {
  position: absolute;
  right: -120px;
  bottom: -240px;
  width: 520px;
  height: 520px;
  content: '';
  border: 1px solid rgba(51, 205, 221, .2);
  border-radius: 50%;
  box-shadow: inset 0 0 0 64px rgba(51, 205, 221, .025), inset 0 0 0 128px rgba(51, 205, 221, .02);
  pointer-events: none;
}

.document-hero--specifications .container {
  position: relative;
  z-index: 1;
}

.document-hero__grid {
  display: grid;
  align-items: end;
  gap: var(--s4);
}

.document-hero--specifications h1 {
  margin-bottom: var(--s2);
  font-size: clamp(2.7rem, 7vw, 4.8rem);
}

.document-hero__version {
  display: grid;
  gap: var(--s1);
  padding: var(--s3);
  background: rgba(7, 20, 38, .76);
  border: 1px solid rgba(51, 205, 221, .28);
  border-radius: var(--radius);
  box-shadow: var(--glow-cyan);
}

.document-hero__version > span {
  color: var(--cyan);
  font-size: .75rem;
  font-weight: 800;
  letter-spacing: .12em;
  text-transform: uppercase;
}

.document-hero__version strong {
  font-size: 1.35rem;
}

.document-hero__version p {
  font-size: .9rem;
}

.document-hero__version a {
  width: fit-content;
  color: var(--cyan);
  font-size: .85rem;
  font-weight: 800;
}

.warning-callout--hero {
  max-width: none;
  margin-top: var(--s3);
  color: #6b4100;
  background: #fff6e4;
  border-color: #f0bd57;
  box-shadow: 0 10px 30px rgba(7, 20, 38, .2);
}

.specification-catalog {
  padding-top: var(--s4);
}

.specification-catalog .filter-bar {
  margin-bottom: var(--s2);
  padding: var(--s2);
  border-color: rgba(28, 44, 70, .12);
  box-shadow: 0 12px 36px rgba(28, 44, 70, .07);
}

.specification-catalog .filter-bar label {
  gap: var(--s1);
  color: var(--navy);
  font-size: .75rem;
  letter-spacing: .04em;
}

.specification-catalog .filter-bar select {
  min-height: 48px;
  padding-inline: 12px 36px;
  background-color: var(--white);
  cursor: pointer;
}

.spec-catalog-status {
  padding-inline: 2px;
  font-size: .8rem;
}

.specification-sidebar {
  display: grid;
  gap: var(--s2);
  margin-bottom: var(--s4);
}

.specification-sidebar .version-panel {
  position: static;
}

.specification-sidebar h2 {
  margin-bottom: var(--s2);
  font-size: 1.25rem;
  line-height: 1.2;
}

.specification-sidebar .version-panel > a {
  display: flex;
  grid-template-columns: none;
  justify-content: space-between;
  margin-top: var(--s2);
  padding: 12px 0 0;
  color: var(--teal-ink);
  border: 0;
  border-top: 1px solid var(--line);
  font-size: .78rem;
  font-weight: 800;
}

.validity-panel {
  border-top: 4px solid #1c9a60;
}

.validity-panel p strong {
  color: #147047;
}

.archive-guide {
  border-top: 4px solid var(--cyan);
}

.spec-list-card {
  min-height: 390px;
  padding: var(--s3);
  border-color: rgba(28, 44, 70, .12);
  box-shadow: 0 8px 28px rgba(28, 44, 70, .055);
}

.spec-list-card:hover {
  border-color: rgba(51, 205, 221, .55);
  box-shadow: var(--glow-cyan);
}

.spec-list-card > .spec-list-card__topline {
  display: flex;
  align-items: center;
  justify-content: space-between;
  color: var(--teal-ink);
  font-size: .75rem;
  font-weight: 800;
  letter-spacing: .06em;
  text-transform: uppercase;
}

.spec-list-card__topline b {
  padding: 5px 9px;
  color: var(--navy);
  background: var(--ice);
  border-radius: 999px;
  font-size: .7rem;
}

.spec-list-card h2 {
  margin: var(--s2) 0 4px;
  font-size: 1.25rem;
  line-height: 1.2;
}

.spec-list-card__platform {
  margin-bottom: var(--s2);
  font-size: .8rem;
}

.spec-list-card dl {
  grid-template-columns: 1fr 1fr;
  gap: var(--s1);
  margin-block: 0 var(--s2);
}

.spec-list-card dl > div {
  min-width: 0;
  padding: 10px 12px;
  background: #f4f7f8;
  border: 1px solid rgba(28, 44, 70, .06);
}

.spec-list-card dt {
  margin-bottom: 2px;
  font-size: .72rem;
}

.spec-list-card dd {
  overflow-wrap: anywhere;
  font-size: .78rem;
  line-height: 1.35;
}

.spec-list-card em {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  padding: 4px 8px;
}

.spec-list-card em i {
  width: 7px;
  height: 7px;
  background: #1c9a60;
  border-radius: 50%;
}

.spec-list-card footer {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: var(--s1);
  padding-top: var(--s1);
}

.spec-list-card footer a,
.spec-list-card footer button {
  min-height: 42px;
  justify-content: center;
  padding: 9px 10px;
  font-size: .72rem;
  line-height: 1.25;
  text-align: center;
  transition: transform .2s ease, border-color .2s ease, background .2s ease, box-shadow .2s ease;
}

.spec-list-card footer .spec-read-online {
  color: var(--navy);
  background: var(--cyan);
  border-color: var(--cyan);
}

.spec-list-card footer .spec-change-link {
  grid-column: 1 / -1;
  color: var(--teal-ink);
}

.spec-list-card footer a:hover,
.spec-list-card footer button:hover {
  transform: translateY(-2px);
  border-color: var(--cyan);
  box-shadow: 0 8px 20px rgba(28, 44, 70, .1);
}

.catalog-empty {
  min-height: 220px;
  place-content: center;
  text-align: center;
}

.spec-archive {
  margin-top: var(--s6);
  padding-top: var(--s5);
  border-top: 1px solid var(--line);
  scroll-margin-top: 120px;
}

.spec-archive__heading {
  display: grid;
  gap: var(--s2);
  margin-bottom: var(--s3);
}

.spec-archive__heading h2 {
  margin-bottom: 0;
  font-size: clamp(2rem, 4vw, 3rem);
  line-height: 1.1;
}

.spec-archive__heading > p {
  max-width: 520px;
  color: var(--muted);
}

.spec-archive__empty {
  display: grid;
  grid-template-columns: auto 1fr;
  gap: var(--s2);
  padding: var(--s3);
  background: var(--white);
  border: 1px dashed rgba(28, 44, 70, .28);
  border-radius: var(--radius);
}

.spec-archive__empty > span {
  display: grid;
  width: 48px;
  height: 48px;
  place-items: center;
  color: var(--navy);
  background: var(--ice);
  border-radius: var(--radius-sm);
}

.spec-archive__empty p {
  max-width: 760px;
  margin-top: 4px;
  color: var(--muted);
}

@media (min-width: 640px) {
  .event-rail { grid-template-columns: repeat(5, 1fr); }
  .event-rail a { justify-content: center; border-right: 1px solid var(--line); border-bottom: 0; }
  .event-rail a:last-child { border-right: 0; }
  .tech-worlds { grid-template-columns: repeat(2, 1fr); }
  .tech-world:first-child { grid-row: span 2; min-height: 496px; }
  .tech-world:first-child h3 { margin-top: 300px; }
  .outcome-grid { grid-template-columns: repeat(2, 1fr); }
  .finder-result-grid, .download-grid, .learning-grid, .benefit-grid, .partnership-grid, .spec-grid { grid-template-columns: repeat(2, 1fr); }
  .choice-grid { grid-template-columns: repeat(3, 1fr); }
  .choice-grid--platform { grid-template-columns: repeat(auto-fit, minmax(120px, 1fr)); }
  .system-stats, .sponsor-metrics { grid-template-columns: repeat(4, 1fr); }
  .calendar-strip { grid-template-columns: repeat(5, 1fr); }
  .value-grid { grid-template-columns: repeat(2, 1fr); }
}

@media (min-width: 900px) {
  .document-hero__grid { grid-template-columns: minmax(0, 1.4fr) minmax(280px, .6fr); }
  .document-hero__version { margin-bottom: var(--s1); }
  .spec-archive__heading { grid-template-columns: minmax(0, 1fr) minmax(320px, .65fr); align-items: end; }
  .site-header .desktop-nav > a,
  .site-header .nav-group__trigger { color: var(--muted); }
  .site-header .desktop-nav > a:hover,
  .site-header .desktop-nav > a[aria-current],
  .site-header .nav-group__trigger:hover,
  .site-header .nav-group__trigger[aria-current] { color: var(--navy); }
  .desktop-nav { gap: 22px; }
  .desktop-nav > a, .nav-group__trigger { font-size: .67rem !important; }
  .nav-actions { display: flex; }
  .nav-cta { display: inline-flex; color: var(--navy); background: var(--cyan); }
  .launch-hero { min-height: 680px; padding-block: var(--s7); }
  .launch-hero__grid { grid-template-columns: minmax(0, 1fr) 180px; }
  .launch-hero__signal { display: grid; width: 170px; height: 170px; place-content: center; justify-self: end; color: var(--sage); border: 2px solid #1764ff; border-radius: 36% 64% 58% 42% / 46% 35% 65% 54%; text-align: center; text-transform: uppercase; box-shadow: inset 0 0 0 10px rgba(23,100,255,.12), 0 0 45px rgba(23,100,255,.28); }
  .launch-hero__signal strong { color: var(--cyan); font-size: 1.15rem; }
  .finder-strip { grid-template-columns: .8fr 1.35fr auto; }
  .tech-worlds { grid-template-columns: repeat(5, 1fr); }
  .tech-world:first-child { grid-row: auto; min-height: 280px; }
  .tech-world:first-child h3 { margin-top: 96px; }
  .tech-world h3 { margin-top: 96px; }
  .journey-line { grid-template-columns: repeat(6, 1fr); }
  .journey-line li { display: flex; min-height: 210px; flex-direction: column; padding: var(--s3) var(--s2); border-top: 3px solid #1764ff; border-left: 0; }
  .journey-line li::after { position: absolute; top: 34px; right: -8px; width: 16px; height: 1px; content: ''; background: #1764ff; }
  .journey-line li:last-child::after { display: none; }
  .journey-line small { margin-top: auto; }
  .season-region-grid { grid-template-columns: .85fr 1.15fr; }
  .outcome-grid { grid-template-columns: repeat(5, 1fr); }
  .experience-grid { grid-template-columns: 1.25fr .75fr; }
  .partner-band, .final-cta__inner { grid-template-columns: 1fr auto; }
  .home-finder__header { grid-template-columns: minmax(0, 1fr) minmax(360px, .8fr); padding: var(--s4); }
  .home-finder__steps { grid-template-columns: repeat(3, 1fr); }
  .home-finder__step { padding: var(--s4) var(--s3); }
  .home-finder__footer { grid-template-columns: minmax(0, 1fr) auto; }
  .finder-hero__grid { grid-template-columns: 1fr .75fr; }
  .finder-workspace { grid-template-columns: minmax(0, 1fr) 290px; }
  .finder-result-grid { grid-template-columns: repeat(3, 1fr); }
  .competition-detail-hero__grid, .resource-hero__grid, .system-hero__grid, .region-page-hero__grid { grid-template-columns: 1fr 1fr; }
  .detail-grid, .phase-grid { grid-template-columns: 1fr 1fr; }
  .resource-hub-grid { grid-template-columns: repeat(3, 1fr); }
  .resource-hub-card--wide { grid-column: span 2; }
  .download-grid { grid-template-columns: repeat(3, 1fr); }
  .learning-grid { grid-template-columns: repeat(5, 1fr); }
  .filter-bar { grid-template-columns: repeat(4, 1fr); }
  .spec-layout { grid-template-columns: minmax(0, 1fr); }
  .specification-sidebar { grid-template-columns: repeat(2, minmax(0, 1fr)); }
  .spec-grid { grid-template-columns: repeat(3, minmax(0, 1fr)); }
  .rule-update-list article { grid-template-columns: 160px minmax(0,1fr) auto; }
  .system-steps, .school-steps { grid-template-columns: repeat(5, 1fr); }
  .system-stats { grid-template-columns: repeat(4, 1fr); }
  .region-event-layout { grid-template-columns: minmax(0,1fr) 300px; }
  .region-details { grid-template-columns: 1fr 1fr; }
  .benefit-grid { grid-template-columns: repeat(5, 1fr); }
  .school-support { grid-template-columns: 1fr 1fr; }
  .value-grid { grid-template-columns: repeat(7, 1fr); }
  .partnership-grid { grid-template-columns: repeat(3, 1fr); }
  .portal-grid { grid-template-columns: minmax(0,1fr) 330px; }
  .process-card ol { grid-template-columns: repeat(5, 1fr); }
  .process-card li { display: flex; min-height: 145px; flex-direction: column; text-align: center; }
  .process-card li span { margin-inline: auto; }
}

@media (min-width: 1180px) {
  .desktop-nav { gap: 26px; }
  .spec-grid { grid-template-columns: repeat(3, minmax(0, 1fr)); }
}

@media (max-width: 899px) {
  .signal-bar__inner { min-height: 32px; overflow: hidden; white-space: nowrap; }
  .launch-hero { background-position: 60% center; }
  .launch-hero::before { position: absolute; inset: 0; content: ''; background: rgba(7,20,38,.35); }
  .detail-sticky { top: 76px; }
}

@media (max-width: 520px) {
  .spec-list-card dl { grid-template-columns: 1fr; }
  .spec-list-card footer { grid-template-columns: 1fr; }
  .spec-list-card footer .spec-change-link { grid-column: auto; }

  .modal-specification {
    align-items: stretch;
    flex-direction: column;
  }

  .modal-specification button {
    justify-content: center;
  }

  .spec-reader-modal {
    width: 100%;
    height: 100%;
    max-height: none;
    border-radius: 0;
  }

  .spec-reader-modal__header {
    padding: var(--s2);
  }

  .spec-reader-modal__viewport {
    margin: var(--s1);
  }

  .spec-reader-modal__footer {
    padding: var(--s1) var(--s2);
  }
}

/* Yeni akış ekranları da sitenin mevcut lacivert–camgöbeği dilini kullanır. */
.finder-hero {
  background: var(--navy);
}

.finder-hero h1 span,
.finder-step legend small,
.choice-grid button span,
.finder-results__heading h2 span,
.resource-hub-card > span,
.download-grid article > span,
.learning-grid article > span,
.download-grid a,
.spec-list-card > div:first-child,
.rule-update-index small,
.rule-update-list article > div:nth-child(2) > small,
.rule-update-list article > a,
.region-details time,
.region-details a,
.benefit-grid span,
.value-grid span {
  color: var(--teal-ink);
}

.finder-progress .is-active span,
.finder-result-card a,
.how-to-race span,
.system-steps li > span,
.process-card .is-current span {
  background: var(--teal-ink);
  border-color: var(--teal-ink);
}

.choice-grid button:hover,
.choice-grid button[aria-pressed="true"],
.region-tabs .is-active,
.calendar-strip .is-active {
  border-color: var(--cyan);
}

.choice-grid button[aria-pressed="true"],
.version-panel .is-current,
.system-stats div,
.school-steps span {
  color: var(--navy);
  background: var(--ice);
}

.finder-summary,
.competition-detail-hero,
.resource-hero,
.document-hero,
.simple-hero,
.system-hero,
.region-page-hero,
.phase-card,
.portal-aside article:first-child,
.match-explainer {
  background: var(--navy-2);
}

.event-aside article:first-child {
  background: var(--navy);
}

.document-hero.document-hero--specifications {
  background-color: var(--navy-2);
  background-image:
    linear-gradient(rgba(51, 205, 221, .07) 1px, transparent 1px),
    linear-gradient(90deg, rgba(51, 205, 221, .07) 1px, transparent 1px);
  background-size: 48px 48px;
}

/* Takım paneli giriş ekranı */
.team-login-page {
  min-height: 760px;
  padding-block: var(--s6);
  color: var(--white);
  background:
    radial-gradient(circle at 12% 18%, rgba(51, 205, 221, .2), transparent 26%),
    linear-gradient(135deg, var(--navy-2), var(--navy));
}

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

.team-login-intro h1 {
  max-width: 700px;
  margin: var(--s2) 0;
  font-size: clamp(2.5rem, 7vw, 5rem);
  line-height: .98;
  letter-spacing: -.055em;
}

.team-login-intro > p {
  max-width: 600px;
  color: var(--sage);
}

.team-login-intro ul {
  display: grid;
  gap: var(--s1);
  margin: var(--s4) 0 0;
  padding: 0;
  list-style: none;
}

.team-login-intro li {
  display: flex;
  align-items: center;
  gap: var(--s2);
  color: var(--sage);
  font-size: .75rem;
  font-weight: 700;
}

.team-login-intro li span {
  color: var(--cyan);
  font-family: Consolas, monospace;
}

.team-login-card {
  padding: clamp(24px, 5vw, 40px);
  color: var(--navy);
  background: var(--white);
  border: 1px solid rgba(51, 205, 221, .3);
  border-radius: var(--radius-lg);
  box-shadow: 0 30px 90px rgba(0, 0, 0, .28);
}

.team-login-card h2 {
  margin: var(--s1) 0;
  font-size: clamp(2rem, 5vw, 3rem);
  line-height: 1;
}

.team-login-card > p {
  margin-bottom: var(--s3);
  color: var(--muted);
  font-size: .76rem;
}

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

.password-field {
  position: relative;
}

.password-field input {
  padding-right: 82px;
}

.password-field button {
  position: absolute;
  top: 50%;
  right: 7px;
  padding: 6px 9px;
  color: var(--teal-ink);
  background: var(--ice);
  border: 0;
  border-radius: 6px;
  font-size: .62rem;
  font-weight: 800;
  cursor: pointer;
  transform: translateY(-50%);
}

.team-login-options {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  gap: var(--s1);
  color: var(--muted);
  font-size: .65rem;
}

.team-login-options label {
  display: flex;
  align-items: center;
  gap: 6px;
}

.team-login-options input {
  accent-color: var(--cyan);
}

.team-login-options a,
.team-login-back {
  color: var(--teal-ink);
  font-weight: 800;
}

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

.team-login-demo {
  margin-top: var(--s3);
  padding: var(--s2);
  background: var(--ice);
  border-left: 4px solid var(--cyan);
  border-radius: var(--radius-sm);
}

.team-login-demo strong {
  font-size: .7rem;
}

.team-login-demo p {
  margin: 3px 0;
  color: var(--muted);
  font-size: .66rem;
}

.team-login-demo code {
  color: var(--teal-ink);
  font-size: .65rem;
  font-weight: 800;
}

.team-login-back {
  display: block;
  margin-top: var(--s3);
  font-size: .66rem;
  text-align: center;
}

/* Takım yönetim paneli */
.team-dashboard {
  padding-block: var(--s4) var(--s7);
  background: var(--paper);
}

.team-dashboard__layout {
  display: grid;
  align-items: start;
  gap: var(--s3);
}

.team-dashboard-sidebar {
  display: grid;
  gap: var(--s2);
  padding: var(--s2);
  color: var(--white);
  background: var(--navy-2);
  border-radius: var(--radius-lg);
}

.team-dashboard-identity {
  display: grid;
  gap: 3px;
  padding: var(--s2);
  background: rgba(255, 255, 255, .06);
  border: 1px solid rgba(255, 255, 255, .1);
  border-radius: var(--radius);
}

.team-dashboard-identity span {
  color: var(--cyan);
  font-size: .58rem;
  font-weight: 800;
  letter-spacing: .08em;
  text-transform: uppercase;
}

.team-dashboard-identity strong {
  overflow: hidden;
  font-size: 1rem;
  text-overflow: ellipsis;
}

.team-dashboard-identity small {
  overflow: hidden;
  color: var(--sage);
  font-size: .6rem;
  text-overflow: ellipsis;
}

.team-dashboard-sidebar nav {
  display: flex;
  gap: 5px;
  overflow-x: auto;
}

.team-dashboard-sidebar nav a {
  display: flex;
  flex: 0 0 auto;
  align-items: center;
  gap: 9px;
  padding: 10px 12px;
  color: var(--sage);
  border-radius: var(--radius-sm);
  font-size: .67rem;
  font-weight: 700;
}

.team-dashboard-sidebar nav a:hover,
.team-dashboard-sidebar nav a.is-active {
  color: var(--navy);
  background: var(--cyan);
}

.team-dashboard-sidebar nav a span {
  display: grid;
  width: 20px;
  place-items: center;
}

.team-dashboard-sidebar > button {
  padding: 10px 12px;
  color: var(--sage);
  background: transparent;
  border: 1px solid rgba(255, 255, 255, .14);
  border-radius: var(--radius-sm);
  font-size: .65rem;
  font-weight: 700;
  cursor: pointer;
}

.team-dashboard-main {
  display: grid;
  min-width: 0;
  gap: var(--s3);
}

.team-dashboard-hero {
  display: grid;
  align-items: end;
  gap: var(--s3);
  padding: clamp(24px, 5vw, 42px);
  color: var(--white);
  background:
    radial-gradient(circle at 92% 15%, rgba(51, 205, 221, .2), transparent 28%),
    var(--navy);
  border-radius: var(--radius-lg);
}

.team-dashboard-hero h1 {
  margin: var(--s1) 0;
  font-size: clamp(2rem, 5vw, 3.5rem);
  line-height: 1;
  letter-spacing: -.05em;
}

.team-dashboard-hero h1 span {
  color: var(--cyan);
}

.team-dashboard-hero p {
  margin: 0;
  color: var(--sage);
  font-size: .78rem;
}

.team-dashboard-hero__status {
  display: grid;
  grid-template-columns: auto 1fr;
  gap: 2px 10px;
  padding: var(--s2);
  background: rgba(255, 255, 255, .07);
  border: 1px solid rgba(255, 255, 255, .14);
  border-radius: var(--radius);
}

.team-dashboard-hero__status i {
  grid-row: span 2;
  width: 10px;
  height: 10px;
  margin-top: 5px;
  background: var(--cyan);
  border-radius: 50%;
  box-shadow: 0 0 0 5px rgba(51, 205, 221, .12);
}

.team-dashboard-hero__status span {
  color: var(--sage);
  font-size: .58rem;
  text-transform: uppercase;
}

.team-dashboard-hero__status strong {
  font-size: .75rem;
}

.team-dashboard-metrics {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: var(--s1);
}

.team-dashboard-metrics article {
  display: grid;
  gap: 3px;
  min-width: 0;
  padding: var(--s2);
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: var(--radius);
}

.team-dashboard-metrics span,
.team-dashboard-metrics small {
  color: var(--muted);
  font-size: .58rem;
}

.team-dashboard-metrics span {
  font-weight: 700;
  text-transform: uppercase;
}

.team-dashboard-metrics strong {
  overflow-wrap: anywhere;
  color: var(--navy);
  font-size: clamp(1.15rem, 3vw, 1.7rem);
}

.team-dashboard-grid {
  display: grid;
  align-items: start;
  gap: var(--s2);
}

.dashboard-card {
  min-width: 0;
  padding: var(--s3);
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: var(--radius);
}

.dashboard-card[id] {
  scroll-margin-top: 130px;
}

.dashboard-card h2 {
  margin: var(--s1) 0 var(--s3);
  color: var(--navy);
  font-size: clamp(1.2rem, 3vw, 1.7rem);
  line-height: 1.15;
}

.dashboard-card h2 small {
  color: var(--teal-ink);
  font-size: .68em;
}

.dashboard-card__heading {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  gap: var(--s2);
}

.dashboard-status {
  flex: 0 0 auto;
  padding: 5px 8px;
  color: #9b5b00;
  background: #fff4dd;
  border-radius: 999px;
  font-size: .57rem;
  font-style: normal;
  font-weight: 800;
}

.dashboard-status--active {
  color: #147047;
  background: #e8f8ef;
}

.dashboard-process {
  display: grid;
  gap: var(--s1);
  margin: 0;
  padding: 0;
  list-style: none;
}

.dashboard-process li {
  display: grid;
  grid-template-columns: 36px 1fr;
  gap: 2px var(--s1);
  padding: 12px;
  background: var(--paper);
  border: 1px solid transparent;
  border-radius: var(--radius-sm);
}

.dashboard-process li > span {
  grid-row: span 2;
  display: grid;
  width: 32px;
  height: 32px;
  place-items: center;
  border: 1px solid var(--line);
  border-radius: 50%;
  font-size: .65rem;
  font-weight: 800;
}

.dashboard-process li strong {
  font-size: .68rem;
}

.dashboard-process li small {
  color: var(--muted);
  font-size: .58rem;
}

.dashboard-process .is-done > span {
  color: var(--white);
  background: #19a65c;
  border-color: #19a65c;
}

.dashboard-process .is-current {
  border-color: rgba(51, 205, 221, .45);
}

.dashboard-process .is-current > span {
  color: var(--navy);
  background: var(--cyan);
  border-color: var(--cyan);
}

.dashboard-callout {
  margin-top: var(--s3);
  padding: var(--s2);
  background: var(--ice);
  border-left: 4px solid var(--cyan);
  border-radius: var(--radius-sm);
}

.dashboard-callout strong {
  font-size: .72rem;
}

.dashboard-callout p,
.dashboard-next-event p,
.dashboard-payment p,
.dashboard-support p {
  margin: 5px 0 0;
  color: var(--muted);
  font-size: .68rem;
}

.dashboard-next-event {
  color: var(--white);
  background: var(--navy-2);
  border-color: var(--navy-2);
}

.dashboard-next-event > strong {
  display: block;
  margin: var(--s4) 0 var(--s1);
  font-size: 1.25rem;
  line-height: 1.2;
}

.dashboard-next-event p {
  color: var(--sage);
}

.dashboard-next-event .button {
  margin-top: var(--s3);
}

.dashboard-text-button {
  flex: 0 0 auto;
  padding: 7px 9px;
  color: var(--teal-ink);
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: var(--radius-sm);
  font-size: .6rem;
  font-weight: 800;
  cursor: pointer;
}

.dashboard-member-list {
  display: grid;
  gap: var(--s1);
  margin: 0;
  padding: 0;
  list-style: none;
}

.dashboard-member-list li {
  display: flex;
  align-items: center;
  gap: var(--s2);
  padding: 12px;
  background: var(--paper);
  border-radius: var(--radius-sm);
}

.dashboard-member-list li > span {
  display: grid;
  width: 36px;
  height: 36px;
  flex: 0 0 auto;
  place-items: center;
  color: var(--navy);
  background: var(--cyan);
  border-radius: 50%;
  font-size: .68rem;
  font-weight: 800;
}

.dashboard-member-list li div {
  display: grid;
}

.dashboard-member-list strong {
  font-size: .7rem;
}

.dashboard-member-list small {
  color: var(--muted);
  font-size: .59rem;
}

.dashboard-team-details dl {
  display: grid;
  gap: var(--s1);
  margin: var(--s3) 0;
}

.dashboard-team-details dl div {
  padding-bottom: var(--s1);
  border-bottom: 1px solid var(--line);
}

.dashboard-team-details dt {
  color: var(--muted);
  font-size: .58rem;
  text-transform: uppercase;
}

.dashboard-team-details dd {
  margin: 3px 0 0;
  overflow-wrap: anywhere;
  font-size: .68rem;
  font-weight: 700;
}

.dashboard-document-list {
  display: grid;
  gap: var(--s1);
}

.dashboard-document-list article {
  display: grid;
  grid-template-columns: auto minmax(0, 1fr) auto;
  gap: var(--s1) var(--s2);
  align-items: center;
  padding: 12px;
  background: var(--paper);
  border-radius: var(--radius-sm);
}

.document-icon {
  display: grid;
  width: 34px;
  height: 34px;
  place-items: center;
  color: var(--teal-ink);
  background: var(--ice);
  border-radius: 50%;
  font-weight: 800;
}

.dashboard-document-list article > div {
  display: grid;
}

.dashboard-document-list strong {
  font-size: .68rem;
}

.dashboard-document-list small {
  color: var(--muted);
  font-size: .58rem;
}

.dashboard-document-list em {
  padding: 4px 7px;
  color: #9b5b00;
  background: #fff4dd;
  border-radius: 999px;
  font-size: .56rem;
  font-style: normal;
  font-weight: 800;
}

.dashboard-document-list em.is-complete {
  color: #147047;
  background: #e8f8ef;
}

.dashboard-document-list button {
  grid-column: 2 / -1;
  justify-self: start;
  padding: 6px 8px;
  color: var(--teal-ink);
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: 6px;
  font-size: .57rem;
  font-weight: 800;
  cursor: pointer;
}

.dashboard-resource-links {
  display: flex;
  flex-wrap: wrap;
  gap: var(--s2);
  margin-top: var(--s3);
}

.dashboard-resource-links a,
.dashboard-calendar + a {
  color: var(--teal-ink);
  font-size: .65rem;
  font-weight: 800;
}

.dashboard-payment {
  margin-bottom: var(--s3);
  padding: var(--s3);
  background: var(--paper);
  border-radius: var(--radius-sm);
}

.dashboard-payment span {
  display: block;
  color: var(--muted);
  font-size: .6rem;
  text-transform: uppercase;
}

.dashboard-payment strong {
  display: block;
  margin-top: 5px;
  font-size: 1.4rem;
}

.dashboard-card button:disabled {
  cursor: not-allowed;
  opacity: .6;
}

.dashboard-calendar {
  display: grid;
  gap: var(--s1);
  margin: 0 0 var(--s3);
  padding: 0;
  list-style: none;
}

.dashboard-calendar li {
  display: grid;
  grid-template-columns: 100px minmax(0, 1fr);
  gap: var(--s2);
  padding: 11px 0;
  border-bottom: 1px solid var(--line);
}

.dashboard-calendar time {
  color: var(--teal-ink);
  font-size: .6rem;
  font-weight: 800;
}

.dashboard-calendar li div {
  display: grid;
}

.dashboard-calendar strong {
  font-size: .67rem;
}

.dashboard-calendar small {
  color: var(--muted);
  font-size: .58rem;
}

.dashboard-checklist {
  display: grid;
  gap: var(--s1);
}

.dashboard-checklist label {
  display: flex;
  align-items: flex-start;
  gap: 10px;
  padding: 11px;
  background: var(--paper);
  border-radius: var(--radius-sm);
  cursor: pointer;
}

.dashboard-checklist input {
  width: 18px;
  height: 18px;
  flex: 0 0 auto;
  accent-color: var(--cyan);
}

.dashboard-checklist span {
  display: grid;
}

.dashboard-checklist strong {
  font-size: .66rem;
}

.dashboard-checklist small {
  color: var(--muted);
  font-size: .57rem;
}

.dashboard-announcements {
  display: grid;
}

.dashboard-announcements a {
  display: grid;
  gap: 4px;
  padding: 12px 0;
  border-bottom: 1px solid var(--line);
}

.dashboard-announcements time,
.dashboard-announcements span {
  color: var(--teal-ink);
  font-size: .57rem;
  font-weight: 800;
}

.dashboard-announcements strong {
  font-size: .68rem;
}

.dashboard-support {
  display: grid;
  align-items: center;
  gap: var(--s3);
  color: var(--white);
  background: var(--navy);
  border-color: var(--navy);
}

.dashboard-support h2 {
  margin-bottom: var(--s1);
  color: var(--white);
}

.dashboard-support p {
  color: var(--sage);
}

.dashboard-support > div:last-child {
  display: flex;
  flex-wrap: wrap;
  gap: var(--s1);
}

.dashboard-support .button--navy {
  color: var(--navy);
  background: var(--cyan);
}

.dashboard-support .button--outline-dark {
  color: var(--white);
  border-color: rgba(255, 255, 255, .3);
}

@media (min-width: 760px) {
  .team-dashboard-hero {
    grid-template-columns: minmax(0, 1fr) 230px;
  }

  .team-dashboard-metrics {
    grid-template-columns: repeat(4, minmax(0, 1fr));
  }

  .team-dashboard-grid {
    grid-template-columns: minmax(0, 1.7fr) minmax(250px, .8fr);
  }

  .dashboard-process {
    grid-template-columns: repeat(5, minmax(0, 1fr));
  }

  .dashboard-process li {
    display: flex;
    min-height: 126px;
    flex-direction: column;
    align-items: center;
    text-align: center;
  }

  .dashboard-document-list article {
    grid-template-columns: auto minmax(0, 1fr) auto auto;
  }

  .dashboard-document-list button {
    grid-column: auto;
  }

  .dashboard-support {
    grid-template-columns: minmax(0, 1fr) auto;
  }
}

@media (min-width: 980px) {
  .team-login-layout {
    grid-template-columns: minmax(0, 1fr) 460px;
  }

  .team-dashboard__layout {
    grid-template-columns: 230px minmax(0, 1fr);
  }

  .team-dashboard-sidebar {
    position: sticky;
    top: 112px;
  }

  .team-dashboard-sidebar nav {
    display: grid;
    overflow: visible;
  }
}

/* Hakkımızda: yarışma ekosistemi anlatısı */
.about-ecosystem-hero {
  position: relative;
  overflow: hidden;
  padding-block: var(--s5);
  color: var(--white);
  background: var(--navy-2);
}

.about-ecosystem-hero::before {
  position: absolute;
  inset: 0;
  content: '';
  opacity: .4;
  background-image:
    linear-gradient(rgba(51, 205, 221, .07) 1px, transparent 1px),
    linear-gradient(90deg, rgba(51, 205, 221, .07) 1px, transparent 1px);
  background-size: 48px 48px;
  mask-image: linear-gradient(105deg, #000, transparent 76%);
}

.about-ecosystem-hero__grid {
  position: relative;
  z-index: 1;
  display: grid;
  align-items: center;
  gap: var(--s4);
}

.about-ecosystem-hero__copy h1 {
  max-width: 820px;
  margin: var(--s2) 0 var(--s3);
  font-size: clamp(2.6rem, 7vw, 5.6rem);
  line-height: .98;
  letter-spacing: -.055em;
}

.about-ecosystem-hero__copy h1 span {
  display: block;
  color: var(--cyan);
}

.about-ecosystem-hero__copy > p {
  max-width: 700px;
  color: var(--sage);
  font-size: 1.02rem;
}

.about-ecosystem-hero__fields {
  display: flex;
  flex-wrap: wrap;
  gap: var(--s1);
  margin-top: var(--s4);
}

.about-ecosystem-hero__fields span {
  padding: 7px 11px;
  color: var(--white);
  background: rgba(255, 255, 255, .06);
  border: 1px solid rgba(51, 205, 221, .32);
  border-radius: 999px;
  font-size: .75rem;
  font-weight: 700;
}

.about-ecosystem-hero__visual {
  position: relative;
  min-height: 360px;
  margin: 0;
  overflow: hidden;
  border: 1px solid rgba(51, 205, 221, .28);
  border-radius: var(--radius-lg);
  box-shadow: var(--glow-cyan);
}

.about-ecosystem-hero__visual::after {
  position: absolute;
  inset: 0;
  content: '';
  background: linear-gradient(180deg, transparent 48%, rgba(7, 20, 38, .88));
}

.about-ecosystem-hero__visual img {
  width: 100%;
  height: 100%;
  min-height: 360px;
  object-fit: cover;
}

.about-ecosystem-hero__visual figcaption {
  position: absolute;
  z-index: 1;
  right: var(--s3);
  bottom: var(--s3);
  left: var(--s3);
  display: grid;
  gap: 2px;
}

.about-ecosystem-hero__visual figcaption strong {
  color: var(--cyan);
  font-size: .8rem;
  letter-spacing: .1em;
  text-transform: uppercase;
}

.about-ecosystem-hero__visual figcaption span {
  font-weight: 700;
}

.about-definition__grid,
.about-organizer__grid {
  display: grid;
  align-items: start;
  gap: var(--s4);
}

.about-definition__lead h2 {
  max-width: 640px;
  margin-bottom: 0;
  font-size: clamp(2.2rem, 5vw, 4rem);
  line-height: 1.05;
  letter-spacing: -.045em;
}

.about-definition__copy {
  padding-top: var(--s4);
  border-top: 1px solid var(--line);
}

.about-definition__copy p {
  color: var(--muted);
  font-size: 1.04rem;
}

.about-definition__copy p:first-child {
  color: var(--navy);
  font-size: 1.18rem;
  font-weight: 600;
}

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

.about-purpose__card {
  display: grid;
  grid-template-columns: auto minmax(0, 1fr);
  gap: var(--s3);
  min-height: 380px;
  padding: var(--s3);
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: var(--radius-lg);
  box-shadow: 0 14px 42px rgba(28, 44, 70, .08);
}

.about-purpose__card > span {
  display: grid;
  width: 48px;
  height: 48px;
  place-items: center;
  color: var(--navy);
  background: var(--cyan);
  border-radius: 50%;
  font-size: .78rem;
  font-weight: 800;
}

.about-purpose__card > div {
  align-self: end;
}

.about-purpose__card small {
  color: var(--teal-ink);
  font-size: .75rem;
  font-weight: 800;
  letter-spacing: .1em;
  text-transform: uppercase;
}

.about-purpose__card h2 {
  margin: var(--s2) 0;
  font-size: clamp(1.65rem, 4vw, 2.5rem);
  line-height: 1.1;
  letter-spacing: -.035em;
}

.about-purpose__card p {
  color: var(--muted);
}

.about-purpose__card--navy {
  color: var(--white);
  background: var(--navy);
  border-color: rgba(51, 205, 221, .24);
  box-shadow: var(--glow-cyan);
}

.about-purpose__card--navy small {
  color: var(--cyan);
}

.about-purpose__card--navy p {
  color: var(--sage);
}

.about-organizer__visual {
  position: relative;
  min-height: 420px;
  margin: 0;
  overflow: hidden;
  border-radius: var(--radius-lg);
}

.about-organizer__visual img {
  width: 100%;
  height: 100%;
  min-height: 420px;
  object-fit: cover;
}

.about-organizer__visual figcaption {
  position: absolute;
  right: var(--s2);
  bottom: var(--s2);
  left: var(--s2);
  padding: var(--s2);
  color: var(--white);
  background: rgba(7, 20, 38, .88);
  border-left: 3px solid var(--cyan);
  font-size: .8rem;
  font-weight: 600;
}

.about-organizer__copy {
  align-self: center;
}

.about-organizer__copy h2 {
  margin-bottom: var(--s3);
  font-size: clamp(2.1rem, 5vw, 3.7rem);
  line-height: 1.05;
  letter-spacing: -.045em;
}

.about-organizer__copy p {
  color: var(--muted);
}

.about-organizer__copy p strong {
  color: var(--navy);
  font-size: 1.05rem;
}

.about-text-link {
  display: inline-flex;
  align-items: center;
  gap: var(--s1);
  margin-top: var(--s2);
  color: var(--teal-ink);
  border-bottom: 1px solid currentColor;
  font-size: .88rem;
  font-weight: 800;
}

.about-text-link:hover {
  color: var(--navy);
}

.about-governance__heading {
  display: grid;
  gap: var(--s3);
  margin-bottom: var(--s5);
}

.about-governance__heading h2 {
  max-width: 760px;
  margin-bottom: 0;
  font-size: clamp(2.2rem, 5vw, 4rem);
  line-height: 1.05;
  letter-spacing: -.045em;
}

.about-governance__heading > p {
  align-self: end;
  color: var(--sage);
}

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

.about-governance__grid article {
  min-height: 280px;
  padding: var(--s3);
  background: rgba(255, 255, 255, .055);
  border: 1px solid rgba(51, 205, 221, .2);
  border-radius: var(--radius);
  transition: transform .2s ease, border-color .2s ease, background .2s ease;
}

.about-governance__grid article:hover {
  transform: translateY(-4px);
  background: rgba(255, 255, 255, .08);
  border-color: var(--cyan);
}

.about-governance__grid article > span {
  color: var(--cyan);
  font-size: .75rem;
  font-weight: 800;
}

.about-governance__grid h3 {
  margin: var(--s5) 0 var(--s2);
  font-size: 1.35rem;
}

.about-governance__grid p {
  color: var(--sage);
}

.about-principles__heading {
  max-width: 820px;
  margin-bottom: var(--s5);
}

.about-principles__heading h2 {
  margin-bottom: 0;
  font-size: clamp(2.1rem, 5vw, 3.8rem);
  line-height: 1.06;
  letter-spacing: -.045em;
}

.about-principles__grid {
  display: grid;
  gap: var(--s1);
}

.about-principles__grid article {
  min-height: 230px;
  padding: var(--s3);
  background: var(--paper);
  border-top: 3px solid var(--navy);
  transition: transform .2s ease, background .2s ease, border-color .2s ease;
}

.about-principles__grid article:hover {
  transform: translateY(-4px);
  background: var(--ice);
  border-color: var(--cyan);
}

.about-principles__grid strong {
  color: var(--teal-ink);
  font-size: .75rem;
  letter-spacing: .1em;
  text-transform: uppercase;
}

.about-principles__grid h3 {
  margin: var(--s4) 0 var(--s1);
  font-size: 1.12rem;
}

.about-principles__grid p {
  color: var(--muted);
  font-size: .88rem;
}

@media (min-width: 700px) {
  .about-purpose__grid { grid-template-columns: repeat(2, minmax(0, 1fr)); }
  .about-governance__grid { grid-template-columns: repeat(3, minmax(0, 1fr)); }
  .about-principles__grid { grid-template-columns: repeat(2, minmax(0, 1fr)); }
}

@media (min-width: 900px) {
  .about-ecosystem-hero { padding-block: var(--s6); }
  .about-ecosystem-hero__grid { grid-template-columns: minmax(0, 1.1fr) minmax(380px, .9fr); }
  .about-ecosystem-hero__visual { min-height: 520px; }
  .about-ecosystem-hero__visual img { min-height: 520px; }
  .about-definition__grid { grid-template-columns: minmax(0, 1.15fr) minmax(360px, .85fr); }
  .about-definition__copy { padding-top: var(--s2); }
  .about-organizer__grid { grid-template-columns: minmax(0, 1.05fr) minmax(380px, .95fr); gap: var(--s5); }
  .about-governance__heading { grid-template-columns: minmax(0, 1.2fr) minmax(320px, .8fr); }
  .about-principles__grid { grid-template-columns: repeat(5, minmax(0, 1fr)); }
}

@media (max-width: 520px) {
  .about-purpose__card { grid-template-columns: 1fr; min-height: 0; }
  .about-purpose__card > div { align-self: auto; }
  .about-ecosystem-hero__visual,
  .about-ecosystem-hero__visual img,
  .about-organizer__visual,
  .about-organizer__visual img { min-height: 320px; }
}

/* Türkiye Finali ve yıllık arşiv */
body:not([data-final-phase="results"]) [data-final-results],
body[data-final-phase="results"] [data-final-before] {
  display: none;
}

.national-final-hero {
  position: relative;
  overflow: hidden;
  min-height: 720px;
  padding-block: var(--s5) var(--s6);
  color: var(--white);
  background:
    linear-gradient(90deg, rgba(7, 20, 38, .98) 0%, rgba(7, 20, 38, .92) 48%, rgba(7, 20, 38, .55) 100%),
    url('../img/slider.png') center / cover no-repeat;
}

.national-final-hero::before {
  position: absolute;
  inset: 0;
  content: '';
  background-image: linear-gradient(rgba(51, 205, 221, .07) 1px, transparent 1px), linear-gradient(90deg, rgba(51, 205, 221, .07) 1px, transparent 1px);
  background-size: 48px 48px;
  mask-image: linear-gradient(90deg, #000, transparent 70%);
}

.national-final-hero__grid {
  position: relative;
  z-index: 1;
  display: grid;
  align-items: end;
  gap: var(--s5);
}

.national-final-hero .breadcrumb {
  margin-bottom: var(--s5);
}

.national-final-hero__edition {
  display: inline-flex;
  padding: 7px 11px;
  color: var(--cyan);
  background: rgba(51, 205, 221, .09);
  border: 1px solid rgba(51, 205, 221, .28);
  border-radius: 999px;
  font-size: .75rem;
  font-weight: 800;
  letter-spacing: .08em;
  text-transform: uppercase;
}

.national-final-hero h1 {
  max-width: 900px;
  margin: var(--s3) 0;
  font-size: clamp(3rem, 7.5vw, 6.4rem);
  line-height: .93;
  letter-spacing: -.065em;
}

.national-final-hero h1 span {
  display: block;
  color: var(--cyan);
}

.national-final-hero__copy > p {
  max-width: 700px;
  color: var(--sage);
  font-size: 1.02rem;
}

.national-final-hero__actions {
  display: flex;
  flex-wrap: wrap;
  gap: var(--s1);
  margin-top: var(--s4);
}

.national-final-hero__stage {
  position: relative;
  display: grid;
  gap: var(--s2);
  overflow: hidden;
  padding: var(--s3);
  color: var(--white);
  background: rgba(7, 20, 38, .88);
  border: 1px solid rgba(51, 205, 221, .38);
  border-radius: var(--radius-lg);
  box-shadow: var(--glow-cyan-strong);
}

.national-final-hero__year {
  position: absolute;
  top: -28px;
  right: -10px;
  color: rgba(255, 255, 255, .055);
  font-size: 7rem;
  font-weight: 800;
  line-height: 1;
  pointer-events: none;
}

.national-final-hero__stage > div {
  position: relative;
  z-index: 1;
  display: grid;
  gap: 3px;
  padding-bottom: var(--s2);
  border-bottom: 1px solid rgba(255, 255, 255, .14);
}

.national-final-hero__stage small {
  color: var(--cyan);
  font-size: .72rem;
  font-weight: 800;
  letter-spacing: .08em;
  text-transform: uppercase;
}

.national-final-hero__stage strong {
  font-size: 1rem;
}

.national-final-hero__stage > a {
  position: relative;
  z-index: 1;
  display: flex;
  justify-content: space-between;
  color: var(--cyan);
  font-size: .8rem;
  font-weight: 800;
}

.national-final-nav {
  position: sticky;
  z-index: 80;
  top: 72px;
  overflow-x: auto;
  background: var(--white);
  border-bottom: 1px solid var(--line);
  box-shadow: 0 8px 28px rgba(28, 44, 70, .08);
}

.national-final-nav .container {
  display: flex;
  width: max-content;
  min-width: 100%;
}

.national-final-nav a {
  flex: 0 0 auto;
  padding: 15px var(--s2);
  color: var(--muted);
  font-size: .75rem;
  font-weight: 800;
}

.national-final-nav a:hover {
  color: var(--navy);
  background: var(--ice);
}

.national-final [id] {
  scroll-margin-top: 140px;
}

.national-final-heading {
  max-width: 800px;
  margin-bottom: var(--s5);
}

.national-final-heading h2 {
  margin-bottom: var(--s2);
  font-size: clamp(2.2rem, 5vw, 4.2rem);
  line-height: 1.04;
  letter-spacing: -.05em;
}

.national-final-heading > p {
  max-width: 680px;
  color: var(--muted);
}

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

.national-final-steps {
  display: grid;
  gap: var(--s2);
  margin: 0;
  padding: 0;
  list-style: none;
}

.national-final-steps li {
  display: grid;
  grid-template-columns: auto minmax(0, 1fr);
  gap: var(--s2);
  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;
}

.national-final-steps li:hover {
  transform: translateY(-4px);
  border-color: var(--cyan);
  box-shadow: var(--glow-cyan);
}

.national-final-steps li > span {
  display: grid;
  width: 44px;
  height: 44px;
  place-items: center;
  color: var(--navy);
  background: var(--cyan);
  border-radius: 50%;
  font-size: .75rem;
  font-weight: 800;
}

.national-final-steps h3 {
  margin-bottom: var(--s1);
  font-size: 1.1rem;
}

.national-final-steps p {
  color: var(--muted);
  font-size: .88rem;
}

.national-final-split {
  display: grid;
  align-items: center;
  gap: var(--s5);
}

.national-final-split .national-final-heading {
  margin-bottom: 0;
}

.national-final-empty {
  display: grid;
  gap: var(--s1);
  padding: var(--s4);
  background: var(--white);
  border: 1px dashed var(--teal);
  border-radius: var(--radius-lg);
}

.national-final-empty > span {
  color: var(--teal-ink);
  font-size: .75rem;
  font-weight: 800;
  letter-spacing: .08em;
  text-transform: uppercase;
}

.national-final-empty > strong {
  font-size: 1.55rem;
}

.national-final-empty p {
  color: var(--muted);
}

.national-final-empty a {
  width: fit-content;
  color: var(--teal-ink);
  font-size: .8rem;
  font-weight: 800;
}

.national-final-fields {
  display: grid;
  gap: var(--s1);
}

.national-final-fields a {
  position: relative;
  display: flex;
  min-height: 230px;
  flex-direction: column;
  overflow: hidden;
  padding: var(--s3);
  color: var(--white);
  background: var(--navy);
  border: 1px solid rgba(51, 205, 221, .2);
  border-radius: var(--radius);
  transition: transform .2s ease, border-color .2s ease, box-shadow .2s ease;
}

.national-final-fields a::after {
  position: absolute;
  right: -36px;
  bottom: -52px;
  width: 140px;
  height: 140px;
  content: '';
  border: 1px solid rgba(51, 205, 221, .2);
  border-radius: 50%;
  box-shadow: inset 0 0 0 28px rgba(51, 205, 221, .035);
}

.national-final-fields a:hover {
  transform: translateY(-5px);
  border-color: var(--cyan);
  box-shadow: var(--glow-cyan);
}

.national-final-fields span {
  color: var(--cyan);
  font-size: .75rem;
  font-weight: 800;
}

.national-final-fields h3 {
  margin: auto 0 4px;
  font-size: 1.3rem;
}

.national-final-fields p {
  position: relative;
  z-index: 1;
  color: var(--sage);
  font-size: .78rem;
}

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

.national-final-schedule__grid .national-final-heading {
  margin-bottom: 0;
}

.national-final-program {
  display: grid;
  gap: var(--s1);
  margin: 0;
  padding: 0;
  list-style: none;
}

.national-final-program li {
  display: grid;
  grid-template-columns: auto minmax(0, 1fr);
  gap: var(--s2);
  align-items: center;
  padding: var(--s2);
  background: rgba(255, 255, 255, .055);
  border: 1px solid rgba(255, 255, 255, .12);
  border-radius: var(--radius-sm);
}

.national-final-program li > span {
  color: var(--cyan);
  font-size: .75rem;
  font-weight: 800;
}

.national-final-program li > div {
  display: grid;
  gap: 2px;
}

.national-final-program small {
  color: var(--sage);
}

.national-final-podium {
  display: grid;
  align-items: end;
  gap: var(--s2);
}

.national-final-podium article {
  display: grid;
  min-height: 230px;
  place-content: end start;
  padding: var(--s3);
  color: var(--white);
  background: var(--navy);
  border-top: 5px solid var(--teal);
  border-radius: var(--radius);
}

.national-final-podium article > span {
  color: var(--cyan);
  font-size: 2.5rem;
  font-weight: 800;
}

.national-final-podium h3 {
  margin: var(--s2) 0 var(--s1);
  font-size: 1.25rem;
}

.national-final-podium p {
  color: var(--sage);
  font-size: .8rem;
}

.national-final-podium .is-champion {
  min-height: 300px;
  background: var(--navy-2);
  border-top-color: var(--cyan);
  box-shadow: var(--glow-cyan-strong);
}

.national-final-guide__grid {
  display: grid;
  align-items: center;
  gap: var(--s5);
}

.national-final-guide__grid h2 {
  margin-bottom: var(--s2);
  font-size: clamp(2.1rem, 5vw, 3.8rem);
  line-height: 1.06;
  letter-spacing: -.045em;
}

.national-final-guide__grid > div:first-child p {
  color: var(--muted);
}

.national-final-guide__card {
  display: grid;
  gap: var(--s1);
  padding: var(--s4);
  color: var(--white);
  background: var(--navy);
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow);
}

.national-final-guide__card > span:first-child {
  color: var(--cyan);
  font-size: .75rem;
  font-weight: 800;
  letter-spacing: .08em;
  text-transform: uppercase;
}

.national-final-guide__card > strong {
  font-size: 1.6rem;
}

.national-final-guide__card ul {
  margin-block: var(--s2);
  padding-left: 20px;
  color: var(--sage);
}

.national-final-guide__disabled {
  display: flex;
  min-height: 48px;
  align-items: center;
  justify-content: center;
  padding: 12px;
  color: var(--sage);
  background: rgba(255, 255, 255, .07);
  border: 1px dashed rgba(255, 255, 255, .3);
  border-radius: var(--radius-sm);
  font-size: .8rem;
  font-weight: 800;
  text-align: center;
}

.national-final-live__frame {
  position: relative;
  display: grid;
  gap: var(--s4);
  min-height: 360px;
  align-content: end;
  overflow: hidden;
  padding: var(--s4);
  color: var(--white);
  background:
    linear-gradient(90deg, rgba(7, 20, 38, .98), rgba(7, 20, 38, .7)),
    url('../img/slider.jpg') center / cover no-repeat;
  border-radius: var(--radius-lg);
}

.national-final-live__frame::after {
  position: absolute;
  right: -80px;
  top: -80px;
  width: 280px;
  height: 280px;
  content: '';
  border: 1px solid rgba(51, 205, 221, .25);
  border-radius: 50%;
  box-shadow: inset 0 0 0 48px rgba(51, 205, 221, .03);
}

.national-final-live__frame > * {
  position: relative;
  z-index: 1;
}

.national-final-live__badge {
  display: inline-flex;
  width: fit-content;
  align-items: center;
  gap: var(--s1);
  color: var(--cyan);
  font-size: .75rem;
  font-weight: 800;
  letter-spacing: .08em;
  text-transform: uppercase;
}

.national-final-live__badge i {
  width: 8px;
  height: 8px;
  background: var(--cyan);
  border-radius: 50%;
  box-shadow: 0 0 16px var(--cyan);
}

.national-final-live h2 {
  margin-bottom: var(--s1);
  font-size: clamp(2rem, 5vw, 3.8rem);
  line-height: 1.05;
}

.national-final-live p {
  max-width: 720px;
  color: var(--sage);
}

.national-final-live__status {
  display: inline-flex;
  width: fit-content;
  padding: 9px 12px;
  color: var(--sage);
  background: rgba(255, 255, 255, .07);
  border: 1px solid rgba(255, 255, 255, .18);
  border-radius: 999px;
  font-size: .75rem;
  font-weight: 800;
}

.national-final-archive-strip {
  padding-block: var(--s4);
  color: var(--white);
  background: var(--navy-2);
  border-top: 1px solid rgba(51, 205, 221, .18);
}

.national-final-archive-strip .container {
  display: grid;
  gap: var(--s3);
}

.national-final-archive-strip div > div {
  display: grid;
  gap: 4px;
}

.national-final-archive-strip div > div span {
  color: var(--cyan);
  font-size: .72rem;
  font-weight: 800;
  letter-spacing: .08em;
  text-transform: uppercase;
}

.national-final-archive-strip nav {
  display: flex;
  flex-wrap: wrap;
  gap: var(--s1);
}

.national-final-archive-strip nav a {
  padding: 9px 12px;
  color: var(--sage);
  border: 1px solid rgba(255, 255, 255, .18);
  border-radius: var(--radius-sm);
  font-size: .78rem;
  font-weight: 800;
}

.national-final-archive-strip nav .is-current {
  color: var(--navy);
  background: var(--cyan);
  border-color: var(--cyan);
}

.national-final-results {
  min-height: 760px;
  padding-block: var(--s7);
  color: var(--white);
  text-align: center;
  background: var(--navy-2);
}

.national-final-results > .container > span {
  color: var(--cyan);
  font-size: .75rem;
  font-weight: 800;
  letter-spacing: .1em;
  text-transform: uppercase;
}

.national-final-results h1 {
  max-width: 900px;
  margin: var(--s3) auto;
  font-size: clamp(3rem, 8vw, 6rem);
  line-height: .95;
  letter-spacing: -.06em;
}

.national-final-results p {
  max-width: 700px;
  margin-inline: auto;
  color: var(--sage);
}

.national-final-results__empty {
  display: grid;
  gap: var(--s1);
  max-width: 680px;
  margin: var(--s5) auto var(--s4);
  padding: var(--s4);
  background: rgba(255, 255, 255, .06);
  border: 1px dashed rgba(51, 205, 221, .45);
  border-radius: var(--radius-lg);
}

.national-final-results__empty span {
  color: var(--sage);
}

.national-final-results > .container > a {
  color: var(--cyan);
  font-weight: 800;
}

.final-archive-hero,
.final-year-placeholder {
  padding-block: var(--s6);
  color: var(--white);
  background: var(--navy-2);
}

.final-archive-hero h1,
.final-year-placeholder h1 {
  max-width: 900px;
  margin: var(--s2) 0;
  font-size: clamp(3rem, 7vw, 5.6rem);
  line-height: .96;
  letter-spacing: -.055em;
}

.final-archive-hero h1 span {
  color: var(--cyan);
}

.final-archive-hero p,
.final-year-placeholder p {
  max-width: 700px;
  color: var(--sage);
}

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

.final-archive-card {
  display: flex;
  min-height: 360px;
  flex-direction: column;
  padding: var(--s4);
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: var(--radius-lg);
  transition: transform .2s ease, border-color .2s ease, box-shadow .2s ease;
}

.final-archive-card:hover {
  transform: translateY(-5px);
  border-color: var(--cyan);
  box-shadow: var(--glow-cyan);
}

.final-archive-card > span {
  color: var(--teal-ink);
  font-size: .75rem;
  font-weight: 800;
  letter-spacing: .08em;
  text-transform: uppercase;
}

.final-archive-card > strong {
  margin-top: auto;
  color: rgba(28, 44, 70, .12);
  font-size: 5.5rem;
  line-height: 1;
}

.final-archive-card h2 {
  margin: var(--s1) 0;
  font-size: 1.7rem;
}

.final-archive-card p {
  color: var(--muted);
}

.final-archive-card em {
  color: var(--teal-ink);
  font-style: normal;
  font-size: .8rem;
  font-weight: 800;
}

.final-archive-card.is-current {
  color: var(--white);
  background: var(--navy);
  border-color: rgba(51, 205, 221, .35);
}

.final-archive-card.is-current > span,
.final-archive-card.is-current em {
  color: var(--cyan);
}

.final-archive-card.is-current > strong {
  color: rgba(51, 205, 221, .15);
}

.final-archive-card.is-current p {
  color: var(--sage);
}

.final-year-placeholder {
  min-height: 720px;
  display: grid;
  align-items: center;
}

.final-year-placeholder__grid {
  display: grid;
  align-items: center;
  gap: var(--s5);
}

.final-year-placeholder__grid > div > div {
  display: flex;
  flex-wrap: wrap;
  gap: var(--s1);
  margin-top: var(--s4);
}

.final-year-placeholder__grid > strong {
  color: rgba(51, 205, 221, .1);
  font-size: clamp(7rem, 22vw, 16rem);
  line-height: .8;
  letter-spacing: -.08em;
}

.signal-bar__inner > a:not(.signal-bar__status) {
  color: inherit;
}

@media (min-width: 700px) {
  .national-final-steps { grid-template-columns: repeat(3, minmax(0, 1fr)); }
  .national-final-fields { grid-template-columns: repeat(3, minmax(0, 1fr)); }
  .national-final-podium { grid-template-columns: repeat(3, minmax(0, 1fr)); }
  .final-archive-grid { grid-template-columns: repeat(2, minmax(0, 1fr)); }
}

@media (min-width: 900px) {
  .national-final-hero__grid { grid-template-columns: minmax(0, 1.35fr) minmax(300px, .65fr); }
  .national-final-split { grid-template-columns: minmax(0, 1.1fr) minmax(360px, .9fr); }
  .national-final-fields { grid-template-columns: repeat(5, minmax(0, 1fr)); }
  .national-final-schedule__grid { grid-template-columns: minmax(0, .85fr) minmax(420px, 1.15fr); }
  .national-final-guide__grid { grid-template-columns: minmax(0, 1.1fr) minmax(360px, .9fr); }
  .national-final-archive-strip .container { grid-template-columns: minmax(0, 1fr) auto; align-items: center; }
  .final-year-placeholder__grid { grid-template-columns: minmax(0, 1.2fr) minmax(320px, .8fr); }
  .final-year-placeholder__grid > strong { justify-self: end; }
}

@media (max-width: 520px) {
  .national-final-hero { min-height: 0; }
  .national-final-hero__actions .button { width: 100%; }
  .national-final-podium .is-champion { min-height: 260px; }
  .national-final-live__frame { min-height: 440px; padding: var(--s3); }
  .final-year-placeholder__grid > div > div .button { width: 100%; }
}
