:root {
  color-scheme: dark;
  --bg: #0b0f10;
  --text: #f5f7f2;
  --muted: #b7c1bd;
  --line: rgba(255, 255, 255, 0.16);
  --panel: rgba(13, 18, 19, 0.82);
  --panel-strong: rgba(17, 24, 25, 0.94);
  --accent: #35d2c4;
  --accent-2: #91a7ff;
  --accent-3: #d8b15b;
  --danger: #e06d66;
  --radius: 8px;
  --shadow: 0 24px 80px rgba(0, 0, 0, 0.36);
  font-family: Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
}

* {
  box-sizing: border-box;
}

html {
  background: var(--bg);
}

body {
  margin: 0;
  background: var(--bg);
  color: var(--text);
  font-size: 15px;
  line-height: 1.5;
}

a {
  color: inherit;
}

.site-shell {
  min-height: 100vh;
  background:
    linear-gradient(180deg, rgba(255,255,255,0.06), transparent 260px),
    linear-gradient(135deg, color-mix(in srgb, var(--accent) 10%, transparent), transparent 46%),
    linear-gradient(315deg, color-mix(in srgb, var(--accent-2) 9%, transparent), transparent 52%),
    var(--bg);
}

.theme-tcc { --accent: #35d2c4; --accent-2: #8fa7ff; --accent-3: #d8b15b; }
.theme-cyrcys { --accent: #70d36b; --accent-2: #34bfe0; --accent-3: #f0c861; }
.theme-stllc { --accent: #d7d1c4; --accent-2: #6fb8c8; --accent-3: #b59b6a; }
.theme-worldwide { --accent: #61d6c7; --accent-2: #65a4ff; --accent-3: #8bd17c; }
.theme-design { --accent: #cbbba0; --accent-2: #7dc8c0; --accent-3: #f0c861; }
.theme-ji { --accent: #d3c0a3; --accent-2: #9fb8cc; --accent-3: #d77c64; }
.theme-games { --accent: #ffd34f; --accent-2: #55d3ff; --accent-3: #ff7a70; }
.theme-albania { --bg: #071114; --accent: #d94a43; --accent-2: #68bfd6; --accent-3: #dcb866; --muted: #c8d4d2; }

.topbar {
  position: sticky;
  top: 0;
  z-index: 20;
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: space-between;
  gap: 10px 24px;
  min-height: 64px;
  padding: 12px clamp(18px, 5vw, 72px);
  background: rgba(7, 10, 11, 0.74);
  border-bottom: 1px solid var(--line);
  backdrop-filter: blur(16px);
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  text-decoration: none;
  font-weight: 760;
}

.brand-mark {
  width: 32px;
  height: 32px;
  flex: 0 0 auto;
  border: 1px solid color-mix(in srgb, var(--accent) 58%, white 8%);
  border-radius: 8px;
  background:
    radial-gradient(circle at 50% 50%, color-mix(in srgb, var(--accent-3) 92%, white 8%) 0 3px, transparent 4px),
    conic-gradient(from 42deg, var(--accent), var(--accent-2), var(--accent-3), var(--accent));
  box-shadow: 0 0 26px color-mix(in srgb, var(--accent) 26%, transparent);
}

.brand-text {
  color: var(--text);
  font-size: 16px;
  line-height: 1.08;
}

nav {
  display: flex;
  flex-wrap: wrap;
  justify-content: flex-end;
  gap: 6px;
}

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

nav a:hover {
  color: var(--text);
  background: rgba(255, 255, 255, 0.08);
}

.topbar-actions {
  display: flex;
  align-items: center;
  justify-content: flex-end;
  gap: 14px;
}

.language-switch {
  display: inline-flex;
  gap: 2px;
  padding: 3px;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: rgba(255, 255, 255, 0.06);
}

.language-switch a {
  min-width: 34px;
  padding: 6px 8px;
  border-radius: 5px;
  color: var(--muted);
  font-size: 12px;
  font-weight: 780;
  text-align: center;
  text-decoration: none;
}

.language-switch a.active,
.language-switch a:hover {
  background: color-mix(in srgb, var(--accent) 78%, #071010 22%);
  color: #071010;
}

.hero {
  position: relative;
  min-height: min(760px, 84vh);
  display: grid;
  align-items: end;
  background-position: center;
  background-size: cover;
  border-bottom: 1px solid var(--line);
}

.hero.compact {
  min-height: 520px;
}

.hero-scrim {
  position: absolute;
  inset: 0;
  background:
    linear-gradient(90deg, rgba(5, 8, 9, 0.92) 0%, rgba(5, 8, 9, 0.72) 42%, rgba(5, 8, 9, 0.22) 100%),
    linear-gradient(0deg, rgba(5, 8, 9, 0.92), rgba(5, 8, 9, 0.08) 58%);
}

.hero-copy {
  position: relative;
  width: min(860px, calc(100vw - 36px));
  padding: clamp(36px, 8vw, 96px) clamp(18px, 5vw, 72px);
}

.theme-albania .hero {
  min-height: min(780px, 86vh);
  background-position: center 42%;
}

.theme-albania .hero-scrim {
  background:
    linear-gradient(90deg, rgba(4, 12, 15, 0.94) 0%, rgba(4, 12, 15, 0.76) 45%, rgba(4, 12, 15, 0.24) 100%),
    linear-gradient(0deg, rgba(4, 12, 15, 0.94), rgba(4, 12, 15, 0.08) 58%);
}

.theme-albania .topbar {
  background: rgba(3, 11, 14, 0.9);
}

.theme-albania .brand span,
.theme-albania h1,
.theme-albania h2 {
  font-family: Georgia, "Times New Roman", serif;
  font-weight: 700;
}

.theme-albania .brand span {
  font-size: 19px;
  line-height: 1.1;
}

.theme-cyrcys .brand-text,
.theme-cyrcys h1,
.theme-cyrcys h2 {
  font-family: Oxanium, "Space Grotesk", Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  font-weight: 760;
}

.theme-cyrcys .brand-mark {
  border-radius: 6px;
  background:
    linear-gradient(135deg, rgba(255, 255, 255, 0.88), transparent 30%),
    conic-gradient(from 20deg, #70d36b, #34bfe0, #f0c861, #70d36b);
}

.theme-albania nav a {
  color: #eef6f5;
  font-size: 13px;
  font-weight: 760;
}

.theme-albania .hero-copy {
  width: min(780px, calc(100vw - 36px));
  padding-top: clamp(54px, 9vw, 112px);
  padding-bottom: clamp(54px, 9vw, 112px);
}

.theme-albania h1 {
  max-width: 760px;
  font-size: clamp(46px, 5.8vw, 76px);
  line-height: 1.04;
}

.theme-albania .hero-copy p {
  max-width: 650px;
  color: #f4fbfa;
  font-size: clamp(16px, 1.7vw, 20px);
}

.theme-albania .button.primary {
  border-color: #e13f45;
  background: #c91f2c;
  color: #ffffff;
}

.theme-albania .button.secondary {
  background: rgba(255, 255, 255, 0.04);
}

.eyebrow {
  margin: 0 0 12px;
  color: var(--accent);
  font-size: 12px;
  font-weight: 760;
  letter-spacing: 0.04em;
  text-transform: uppercase;
}

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

h1 {
  max-width: 820px;
  margin-bottom: 18px;
  font-size: clamp(44px, 7vw, 86px);
  line-height: 0.98;
  letter-spacing: 0;
}

h2 {
  font-size: clamp(26px, 4vw, 46px);
  line-height: 1.08;
  letter-spacing: 0;
}

h3 {
  font-size: 18px;
  line-height: 1.18;
}

.hero-copy p,
.page-intro p,
.band-copy p,
.inquiry-band > div p,
.footer p {
  color: var(--muted);
  max-width: 760px;
}

.status-row,
.cta-row {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-top: 20px;
}

.status-row span {
  padding: 7px 10px;
  border: 1px solid var(--line);
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.08);
  color: var(--text);
  font-size: 12px;
  font-weight: 700;
}

.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 42px;
  padding: 10px 15px;
  border: 1px solid var(--line);
  border-radius: 7px;
  color: var(--text);
  font-weight: 760;
  text-decoration: none;
  cursor: pointer;
}

.button.primary {
  border-color: color-mix(in srgb, var(--accent) 72%, white 8%);
  background: color-mix(in srgb, var(--accent) 76%, #071010 24%);
  color: #071010;
}

.button.secondary {
  background: rgba(255, 255, 255, 0.09);
}

.page-intro,
.content-band,
.inquiry-band,
.footer {
  width: min(1180px, calc(100vw - 36px));
  margin: 0 auto;
}

.page-intro {
  padding: clamp(42px, 7vw, 84px) 0 22px;
}

.content-band {
  display: grid;
  grid-template-columns: minmax(0, 0.8fr) minmax(0, 1.2fr);
  gap: clamp(20px, 4vw, 48px);
  padding: clamp(28px, 5vw, 58px) 0;
  border-top: 1px solid var(--line);
}

.content-band.kind-media {
  grid-template-columns: minmax(280px, 0.95fr) minmax(0, 1fr);
}

.band-media {
  min-height: 360px;
  border-radius: var(--radius);
  background-position: center;
  background-size: cover;
  box-shadow: var(--shadow);
}

.band-copy {
  align-self: start;
}

.text-link {
  display: inline-flex;
  margin-top: 10px;
  color: var(--accent);
  font-weight: 760;
}

.item-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 12px;
  align-content: start;
}

.item-card {
  min-height: 188px;
  padding: 18px;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: var(--panel);
}

.item-card small {
  display: inline-flex;
  margin-bottom: 18px;
  color: var(--accent-3);
  font-weight: 760;
  text-transform: uppercase;
  letter-spacing: 0.04em;
}

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

.content-band.kind-bilingual,
.content-band.kind-lanes,
.content-band.kind-statement,
.content-band.kind-brief {
  grid-template-columns: 1fr;
}

.content-band.kind-bilingual .band-copy,
.content-band.kind-lanes .band-copy,
.content-band.kind-statement .band-copy,
.content-band.kind-brief .band-copy {
  max-width: 900px;
}

.content-band.kind-bilingual .item-grid,
.content-band.kind-statement .item-grid {
  grid-template-columns: repeat(2, minmax(0, 1fr));
}

.content-band.kind-lanes .item-grid {
  grid-template-columns: repeat(5, minmax(0, 1fr));
}

.content-band.kind-brief .item-grid {
  grid-template-columns: repeat(3, minmax(0, 1fr));
}

.content-band.kind-bilingual .item-card,
.content-band.kind-statement .item-card {
  min-height: 170px;
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.06), rgba(255, 255, 255, 0.025)),
    rgba(255, 255, 255, 0.02);
}

.theme-albania .content-band.kind-lanes .item-card,
.theme-albania .content-band.kind-brief .item-card {
  background: rgba(255, 255, 255, 0.055);
}

.theme-albania .content-band.kind-statement {
  padding-top: clamp(34px, 6vw, 72px);
  padding-bottom: clamp(34px, 6vw, 72px);
}

.theme-albania .page-intro {
  display: none;
}

.theme-albania .content-band {
  width: min(1220px, calc(100vw - 72px));
  border-top: 0;
}

.theme-albania .content-band.kind-bilingual,
.theme-albania .content-band.kind-media,
.theme-albania .content-band.kind-statement,
.theme-albania .content-band.kind-brief {
  background: #f7f6f1;
  box-shadow: 0 0 0 100vmax #f7f6f1;
  clip-path: inset(0 -100vmax);
  color: #071114;
}

.theme-albania .content-band.kind-lanes {
  background: #03161c;
  box-shadow: 0 0 0 100vmax #03161c;
  clip-path: inset(0 -100vmax);
  color: #f7fbfa;
  padding-top: clamp(42px, 6vw, 78px);
  padding-bottom: clamp(42px, 6vw, 78px);
}

.theme-albania .content-band.kind-bilingual .band-copy p,
.theme-albania .content-band.kind-media .band-copy p,
.theme-albania .content-band.kind-statement .band-copy p,
.theme-albania .content-band.kind-brief .band-copy p,
.theme-albania .content-band.kind-bilingual .item-card p,
.theme-albania .content-band.kind-media .item-card p,
.theme-albania .content-band.kind-statement .item-card p,
.theme-albania .content-band.kind-brief .item-card p {
  color: #324244;
}

.theme-albania .content-band.kind-bilingual .item-card,
.theme-albania .content-band.kind-statement .item-card {
  min-height: auto;
  padding: 0 0 0 clamp(18px, 3vw, 36px);
  border: 0;
  border-left: 1px solid rgba(7, 17, 20, 0.18);
  border-radius: 0;
  background: transparent;
}

.theme-albania .content-band.kind-lanes .item-card {
  min-height: 186px;
  padding: 0 18px;
  border: 0;
  border-left: 1px solid rgba(255, 255, 255, 0.16);
  border-radius: 0;
  background: transparent;
}

.theme-albania .content-band.kind-lanes .item-card:first-child {
  padding-left: 0;
  border-left: 0;
}

.theme-albania .content-band.kind-media {
  grid-template-columns: minmax(0, 0.95fr) minmax(320px, 1fr);
}

.theme-albania .content-band.kind-media .band-media {
  order: 2;
  min-height: 390px;
  box-shadow: none;
}

.theme-albania .content-band.kind-media .band-copy {
  order: 1;
}

.theme-albania .content-band.kind-media .item-grid {
  grid-column: 1 / -1;
  order: 3;
  grid-template-columns: repeat(3, minmax(0, 1fr));
}

.theme-albania .content-band.kind-media .item-card,
.theme-albania .content-band.kind-brief .item-card {
  background: rgba(7, 17, 20, 0.035);
}

.theme-albania .inquiry-band,
.theme-albania .footer {
  background: #03161c;
  box-shadow: 0 0 0 100vmax #03161c;
  clip-path: inset(0 -100vmax);
  border-top-color: rgba(255, 255, 255, 0.14);
}

.inquiry-band {
  display: grid;
  grid-template-columns: minmax(0, 0.72fr) minmax(320px, 1fr);
  gap: clamp(24px, 5vw, 56px);
  padding: clamp(34px, 6vw, 76px) 0;
  border-top: 1px solid var(--line);
}

form {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 12px;
  padding: 18px;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: var(--panel-strong);
}

label {
  display: grid;
  gap: 6px;
  color: var(--muted);
  font-size: 13px;
  font-weight: 700;
}

input,
select,
textarea {
  width: 100%;
  min-height: 42px;
  padding: 10px 11px;
  border: 1px solid var(--line);
  border-radius: 6px;
  background: rgba(255, 255, 255, 0.08);
  color: var(--text);
  font: inherit;
}

textarea {
  min-height: 112px;
  resize: vertical;
}

label:has(textarea),
.check,
.turnstile-slot,
form button {
  grid-column: 1 / -1;
}

.check {
  display: flex;
  align-items: flex-start;
  gap: 10px;
}

.check input {
  width: auto;
  min-height: auto;
  margin-top: 4px;
}

.turnstile-slot {
  min-height: 65px;
}

.hidden-field {
  position: absolute;
  left: -9999px;
}

.footer {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  gap: 18px;
  padding: 28px 0 44px;
  border-top: 1px solid var(--line);
}

.footer p {
  max-width: 620px;
  margin: 0;
  font-size: 13px;
}

@media (max-width: 900px) {
  .content-band,
  .content-band.kind-media,
  .inquiry-band {
    grid-template-columns: 1fr;
  }

  .theme-albania .content-band {
    width: min(1180px, calc(100vw - 36px));
  }

  .theme-albania .content-band.kind-media {
    grid-template-columns: 1fr;
  }

  .theme-albania .content-band.kind-media .band-media {
    order: 1;
  }

  .theme-albania .content-band.kind-media .band-copy {
    order: 2;
  }

  .theme-albania .content-band.kind-media .item-grid {
    grid-template-columns: 1fr 1fr;
  }

  .theme-albania .content-band.kind-lanes .item-card:nth-child(odd) {
    padding-left: 0;
    border-left: 0;
  }

  .item-grid,
  .content-band.kind-lanes .item-grid,
  .content-band.kind-brief .item-grid {
    grid-template-columns: 1fr 1fr;
  }
}

@media (max-width: 620px) {
  nav {
    justify-content: flex-start;
  }

  .hero {
    min-height: 720px;
  }

  h1 {
    font-size: 42px;
  }

  .item-grid,
  .content-band.kind-bilingual .item-grid,
  .content-band.kind-lanes .item-grid,
  .content-band.kind-statement .item-grid,
  .content-band.kind-brief .item-grid,
  form {
    grid-template-columns: 1fr;
  }

  .theme-albania .brand span {
    font-size: 17px;
  }

  .theme-albania .content-band.kind-bilingual .item-card,
  .theme-albania .content-band.kind-lanes .item-card,
  .theme-albania .content-band.kind-statement .item-card {
    padding-left: 0;
    border-left: 0;
  }

  .theme-albania .content-band.kind-media .item-grid {
    grid-template-columns: 1fr;
  }

  .band-media {
    min-height: 240px;
  }
}
