/* PIN-UP Landing KZ — variant 3 */

:root {
  --bg: #0a0e14;
  --surface: #141b26;
  --ink: #eef2f7;
  --muted: #8b97a8;
  --line: rgba(238, 242, 247, 0.1);
  --red: #ff2a2a;
  --red-deep: #d01818;
  --ice: #7ec8ff;
  --sand: #e8d5a3;
  --radius: 4px;
  --container: 1100px;
  --header-h: 70px;
  --font-display: "Sora", system-ui, sans-serif;
  --font-body: "IBM Plex Sans", system-ui, sans-serif;
  --ease: cubic-bezier(0.25, 0.8, 0.25, 1);
}

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

html {
  scroll-behavior: smooth;
}

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

  *,
  *::before,
  *::after {
    animation: none !important;
    transition: none !important;
  }
}

body {
  margin: 0;
  min-width: 320px;
  font-family: var(--font-body);
  font-size: 1.05rem;
  line-height: 1.65;
  color: var(--ink);
  background: var(--bg);
  -webkit-font-smoothing: antialiased;
}

img {
  display: block;
  max-width: 100%;
  height: auto;
}

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

ul,
ol,
h1,
h2,
h3,
p {
  margin: 0;
  padding: 0;
}

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

.skip-link {
  position: absolute;
  left: 12px;
  top: -48px;
  z-index: 1000;
  padding: 10px 14px;
  background: var(--ice);
  color: #061018;
  font-weight: 700;
  border-radius: var(--radius);
}

.skip-link:focus {
  top: 12px;
}

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

@media (max-width: 480px) {
  .container {
    width: min(100% - 20px, var(--container));
  }
}

/* Header */
.header {
  position: sticky;
  top: 0;
  z-index: 50;
  background: rgba(10, 14, 20, 0.94);
  border-bottom: 1px solid var(--line);
}

.header__nav {
  display: flex;
  align-items: center;
  gap: 12px;
  min-height: var(--header-h);
}

.logo img {
  height: 38px;
  width: auto;
}

.header__right {
  margin-left: auto;
  display: flex;
  align-items: center;
  gap: 10px;
}

.locale {
  display: inline-flex;
  gap: 2px;
  padding: 2px;
  border: 1px solid var(--line);
  border-radius: var(--radius);
}

.locale a {
  min-width: 40px;
  min-height: 32px;
  display: inline-grid;
  place-items: center;
  font-size: 0.8rem;
  font-weight: 700;
  letter-spacing: 0.06em;
  color: var(--muted);
  border-radius: 2px;
}

.locale a.is-active,
.locale a:hover {
  background: rgba(238, 242, 247, 0.08);
  color: var(--ink);
}

.header__actions {
  display: flex;
  gap: 8px;
}

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 42px;
  padding: 10px 18px;
  border-radius: var(--radius);
  border: 1px solid transparent;
  font-family: var(--font-body);
  font-weight: 700;
  cursor: pointer;
  transition:
    background 0.2s var(--ease),
    border-color 0.2s var(--ease),
    color 0.2s var(--ease),
    transform 0.2s var(--ease);
  white-space: nowrap;
}

.btn:hover {
  transform: translateY(-1px);
}

.btn:active {
  transform: none;
}

.btn--primary {
  background: var(--red);
  color: #fff;
}

.btn--primary:hover {
  background: var(--red-deep);
}

.btn--line {
  background: transparent;
  border-color: rgba(238, 242, 247, 0.35);
  color: var(--ink);
}

.btn--line:hover {
  border-color: #fff;
}

.btn--ice {
  background: var(--ice);
  color: #061018;
}

.btn--ice:hover {
  filter: brightness(1.05);
}

.btn--sm {
  min-height: 36px;
  padding: 8px 14px;
  font-size: 0.9rem;
}

.btn--lg {
  min-height: 52px;
  padding: 14px 28px;
  font-size: 1.05rem;
}

/* ===== Main banner (full-bleed, right after header) ===== */
.banner {
  position: relative;
  min-height: clamp(340px, 62vw, 560px);
  display: grid;
  align-items: end;
  isolation: isolate;
  overflow: hidden;
  border-bottom: 1px solid var(--line);
}

.banner__media {
  position: absolute;
  inset: 0;
  z-index: 0;
}

.banner__media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center top;
}

.banner__shade {
  position: absolute;
  inset: 0;
  z-index: 1;
  background:
    linear-gradient(90deg, rgba(10, 14, 20, 0.92) 0%, rgba(10, 14, 20, 0.72) 42%, rgba(10, 14, 20, 0.28) 100%),
    linear-gradient(0deg, rgba(10, 14, 20, 0.95) 0%, rgba(10, 14, 20, 0.15) 55%, rgba(10, 14, 20, 0.45) 100%);
}

.banner__content {
  position: relative;
  z-index: 2;
  padding: 48px 0 44px;
  max-width: 720px;
}

.banner__label {
  display: inline-block;
  margin-bottom: 14px;
  padding: 6px 10px;
  border-left: 3px solid var(--red);
  background: rgba(10, 14, 20, 0.45);
  font-size: 0.78rem;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--sand);
}

.banner__title {
  font-family: var(--font-display);
  font-size: clamp(1.9rem, 4.8vw, 3.35rem);
  font-weight: 800;
  line-height: 1.08;
  letter-spacing: -0.03em;
  text-wrap: balance;
}

.banner__text {
  margin-top: 14px;
  max-width: 54ch;
  color: rgba(238, 242, 247, 0.86);
  font-size: clamp(1rem, 1.5vw, 1.12rem);
}

.banner__cta {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-top: 22px;
}

@media (max-width: 768px) {
  .banner {
    min-height: 420px;
    align-items: center;
  }

  .banner__shade {
    background:
      linear-gradient(180deg, rgba(10, 14, 20, 0.55) 0%, rgba(10, 14, 20, 0.88) 48%, rgba(10, 14, 20, 0.98) 100%);
  }

  .banner__content {
    padding: 36px 0 32px;
  }
}

/* Content sections */
.section {
  padding: 48px 0 10px;
}

.section__title {
  font-family: var(--font-display);
  font-size: clamp(1.4rem, 2.6vw, 1.95rem);
  font-weight: 750;
  letter-spacing: -0.02em;
  line-height: 1.2;
  margin-bottom: 12px;
}

.section__lead {
  color: var(--muted);
  max-width: 68ch;
  margin-bottom: 20px;
}

.section__subtitle {
  font-family: var(--font-display);
  font-size: 1.12rem;
  font-weight: 700;
  margin: 28px 0 12px;
}

.rail {
  display: grid;
  gap: 1px;
  background: var(--line);
  border: 1px solid var(--line);
  border-radius: 8px;
  overflow: hidden;
  margin-bottom: 20px;
}

.rail__item {
  background: var(--surface);
  padding: 18px 20px;
}

.rail__item h3 {
  font-family: var(--font-display);
  font-size: 1.02rem;
  font-weight: 700;
  margin-bottom: 6px;
}

.rail__item p {
  color: var(--muted);
  font-size: 0.98rem;
}

@media (min-width: 800px) {
  .rail {
    grid-template-columns: repeat(2, 1fr);
  }
}

.list {
  display: grid;
  gap: 8px;
  margin: 0 0 16px;
  padding-left: 1.15rem;
}

.list li::marker {
  color: var(--red);
}

.note {
  margin: 18px 0;
  padding: 16px 18px;
  border-top: 2px solid var(--sand);
  background: rgba(232, 213, 163, 0.06);
  color: var(--muted);
  max-width: 72ch;
}

.actions {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin: 18px 0 6px;
}

.table-wrap {
  width: 100%;
  overflow-x: auto;
  margin: 0 0 18px;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: var(--surface);
}

.table {
  width: 100%;
  border-collapse: collapse;
  min-width: 280px;
}

.table th,
.table td {
  padding: 12px 14px;
  text-align: left;
  vertical-align: top;
  border-bottom: 1px solid var(--line);
}

.table th {
  font-size: 0.78rem;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--sand);
  background: rgba(238, 242, 247, 0.03);
}

.table tr:last-child td {
  border-bottom: 0;
}

.table td:first-child {
  font-weight: 600;
}

.columns {
  display: grid;
  gap: 20px;
}

@media (min-width: 800px) {
  .columns {
    grid-template-columns: 1fr 1fr;
    gap: 28px;
  }
}

/* Footer */
.footer {
  margin-top: 52px;
  padding: 28px 0 36px;
  border-top: 1px solid var(--line);
  background: #070a0f;
}

.footer__grid {
  display: grid;
  gap: 18px;
}

.footer__brand {
  display: flex;
  align-items: center;
  gap: 12px;
  font-family: var(--font-display);
  font-weight: 800;
}

.footer__brand img {
  height: 32px;
  width: auto;
}

.footer__copy,
.footer__disclaimer,
.cookies-note {
  color: var(--muted);
  font-size: 0.9rem;
  margin-top: 8px;
  max-width: 62ch;
}

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

@media (min-width: 768px) {
  .footer__grid {
    grid-template-columns: 1.4fr auto;
  }

  .footer__cta {
    justify-content: flex-end;
  }
}

@media (max-width: 480px) {
  .header__actions .btn--line {
    display: none;
  }

  .logo img {
    height: 32px;
  }

  .section {
    padding: 36px 0 6px;
  }
}

@media (max-width: 320px) {
  .container {
    width: min(100% - 16px, var(--container));
  }
}
