:root {
  color-scheme: light;
  --navy-950: #001225;
  --navy-900: #001d3d;
  --navy-800: #002849;
  --blue-700: #0f4c81;
  --gold-500: #d4af37;
  --gold-400: #e0b050;
  --copper-600: #a66a22;
  --sand-100: #f4f1ea;
  --sand-50: #fbfaf7;
  --white: #ffffff;
  --ink: #102033;
  --muted: #5f6874;
  --red-600: #c9122b;
  --line: rgba(16, 32, 51, 0.14);
  --shadow: 0 22px 50px rgba(0, 18, 37, 0.18);
  --glass-light: rgba(255, 255, 255, 0.68);
  --glass-dark: rgba(0, 18, 37, 0.42);
  --glass-border-light: rgba(255, 255, 255, 0.62);
  --glass-border-dark: rgba(255, 255, 255, 0.18);
  font-family: Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

html[lang="pl"] [data-lang="en"],
html[lang="en"] [data-lang="pl"] {
  display: none !important;
}

body {
  margin: 0;
  background: var(--sand-50);
  color: var(--ink);
  overflow-x: hidden;
}

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

a {
  color: inherit;
}

.site-header {
  position: sticky;
  z-index: 20;
  top: 0;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  min-height: 74px;
  padding: 12px 48px;
  background: linear-gradient(180deg, rgba(0, 18, 37, 0.82), rgba(0, 18, 37, 0.64));
  color: var(--white);
  border-bottom: 1px solid rgba(212, 175, 55, 0.28);
  backdrop-filter: blur(18px);
  -webkit-backdrop-filter: blur(18px);
  box-shadow: 0 14px 34px rgba(0, 18, 37, 0.16);
}

.brand-mark {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  text-decoration: none;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.12em;
  white-space: nowrap;
}

.brand-mark img {
  width: 74px;
  height: 48px;
  border-radius: 4px;
  object-fit: contain;
  background: rgba(255, 255, 255, 0.88);
  padding: 3px;
  box-shadow: inset 0 0 0 1px rgba(0, 18, 37, 0.08);
}

.brand-mark strong {
  color: var(--gold-400);
}

.site-nav {
  display: flex;
  justify-content: center;
  gap: 26px;
  color: rgba(255, 255, 255, 0.78);
  font-size: 0.94rem;
}

.site-nav a {
  text-decoration: none;
}

.site-nav a:hover {
  color: var(--white);
}

.language-switch {
  display: inline-flex;
  gap: 4px;
  padding: 3px;
  border: 1px solid rgba(255, 255, 255, 0.22);
  border-radius: 6px;
  background: rgba(255, 255, 255, 0.08);
  backdrop-filter: blur(14px);
  -webkit-backdrop-filter: blur(14px);
}

.language-switch button {
  min-width: 40px;
  min-height: 34px;
  border: 0;
  border-radius: 4px;
  background: transparent;
  color: rgba(255, 255, 255, 0.72);
  font: inherit;
  font-weight: 700;
  cursor: pointer;
}

.language-switch button[aria-pressed="true"] {
  background: var(--gold-500);
  color: var(--navy-950);
}

.hero {
  position: relative;
  isolation: isolate;
  min-height: 86svh;
  display: grid;
  align-items: center;
  overflow: hidden;
  background-image:
    linear-gradient(90deg, rgba(0, 18, 37, 0.95), rgba(0, 18, 37, 0.84) 44%, rgba(0, 18, 37, 0.42)),
    url("/assets/cyprus-pl-hub-brand-banner.jpg");
  background-size: cover;
  background-position: center;
  color: var(--white);
}

.hero::after {
  content: "";
  position: absolute;
  inset: auto 0 0 0;
  height: 10px;
  background: linear-gradient(90deg, transparent, var(--gold-500), transparent);
  opacity: 0.8;
}

.hero__shade {
  position: absolute;
  inset: 0;
  z-index: -1;
  background:
    linear-gradient(180deg, rgba(0, 18, 37, 0.1), rgba(0, 18, 37, 0.5)),
    radial-gradient(circle at 15% 30%, rgba(212, 175, 55, 0.18), transparent 28%);
}

.hero__content {
  width: calc(100% - 64px);
  max-width: 1120px;
  margin: 0 auto;
  padding: 70px 0 84px;
}

.hero__logo {
  width: 260px;
  height: auto;
  margin: 18px 0 24px;
  object-fit: contain;
  filter: drop-shadow(0 20px 28px rgba(0, 0, 0, 0.34));
}

.eyebrow {
  margin: 0 0 16px;
  color: var(--gold-400);
  font-size: 0.78rem;
  font-weight: 800;
  letter-spacing: 0.18em;
  line-height: 1.6;
  text-transform: uppercase;
}

.eyebrow span,
.site-footer span {
  display: inline-block;
  width: 5px;
  height: 5px;
  margin: 0 9px 2px;
  border-radius: 50%;
  background: currentColor;
}

.eyebrow--dark {
  color: var(--copper-600);
}

h1 {
  max-width: 800px;
  margin: 0;
  font-size: 4rem;
  line-height: 1.02;
  letter-spacing: 0;
  overflow-wrap: break-word;
}

h2 {
  margin: 0;
  font-size: 2.45rem;
  line-height: 1.12;
  letter-spacing: 0;
}

h3 {
  margin: 0;
  font-size: 1.2rem;
  line-height: 1.25;
  letter-spacing: 0;
}

p {
  line-height: 1.7;
}

.hero__lead {
  max-width: 720px;
  margin: 24px 0 0;
  color: rgba(255, 255, 255, 0.84);
  font-size: 1.16rem;
}

.hero__actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-top: 34px;
}

.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 48px;
  padding: 0 22px;
  border: 1px solid transparent;
  border-radius: 6px;
  font-weight: 800;
  text-decoration: none;
  cursor: pointer;
  transition: transform 160ms ease, border-color 160ms ease, background 160ms ease;
}

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

.button--primary {
  background: linear-gradient(180deg, var(--gold-400), var(--gold-500));
  color: var(--navy-950);
  box-shadow: 0 12px 26px rgba(212, 175, 55, 0.24);
}

.button--ghost {
  border-color: rgba(255, 255, 255, 0.42);
  background: rgba(255, 255, 255, 0.12);
  color: var(--white);
  backdrop-filter: blur(16px);
  -webkit-backdrop-filter: blur(16px);
}

.button--ghost:hover {
  border-color: var(--gold-500);
}

.hero__signals {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 16px;
  max-width: 900px;
  margin: 44px 0 0;
}

.hero__signals div {
  min-height: 126px;
  padding: 18px;
  border: 1px solid var(--glass-border-dark);
  border-radius: 8px;
  background:
    linear-gradient(145deg, rgba(255, 255, 255, 0.12), rgba(255, 255, 255, 0.03)),
    var(--glass-dark);
  box-shadow: 0 18px 44px rgba(0, 18, 37, 0.2);
  backdrop-filter: blur(22px) saturate(130%);
  -webkit-backdrop-filter: blur(22px) saturate(130%);
}

.hero__signals dt {
  margin-bottom: 10px;
  color: var(--gold-400);
  font-size: 1.28rem;
  font-weight: 900;
}

.hero__signals dd {
  margin: 0;
  color: rgba(255, 255, 255, 0.82);
  line-height: 1.55;
}

.section {
  padding: 92px 0;
}

.section--sand {
  background:
    radial-gradient(circle at 14% 12%, rgba(212, 175, 55, 0.15), transparent 34%),
    linear-gradient(180deg, rgba(255, 255, 255, 0.72), transparent),
    var(--sand-100);
}

.section--white {
  background:
    linear-gradient(180deg, rgba(244, 241, 234, 0.56), rgba(255, 255, 255, 0.86)),
    var(--white);
}

.section--navy {
  background:
    linear-gradient(90deg, rgba(0, 18, 37, 0.96), rgba(0, 40, 73, 0.96)),
    url("/assets/cyprus-pl-hub-launch-square.jpg");
  background-size: cover;
  background-position: center right;
  color: var(--white);
}

.section__inner {
  width: calc(100% - 64px);
  max-width: 1120px;
  margin: 0 auto;
}

.section__heading {
  display: grid;
  grid-template-columns: 0.9fr 1.1fr;
  gap: 56px;
  align-items: end;
  margin-bottom: 42px;
}

.section__heading p:last-child {
  margin: 0;
  color: var(--muted);
  font-size: 1.06rem;
}

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

.feature-card {
  min-height: 330px;
  padding: 28px;
  border: 1px solid var(--glass-border-light);
  border-radius: 8px;
  background:
    linear-gradient(145deg, rgba(255, 255, 255, 0.84), rgba(255, 255, 255, 0.46)),
    var(--glass-light);
  box-shadow: 0 18px 38px rgba(16, 32, 51, 0.08);
  backdrop-filter: blur(18px) saturate(130%);
  -webkit-backdrop-filter: blur(18px) saturate(130%);
}

.feature-card__number {
  display: inline-grid;
  place-items: center;
  width: 52px;
  height: 52px;
  margin-bottom: 30px;
  border: 1px solid rgba(212, 175, 55, 0.55);
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.42);
  color: var(--copper-600);
  font-weight: 900;
  box-shadow: inset 0 0 0 1px rgba(255, 255, 255, 0.42);
}

.feature-card p {
  margin: 18px 0 0;
  color: var(--muted);
}

.insight {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 64px;
  align-items: center;
}

.insight__text {
  padding-left: 32px;
  border-left: 2px solid rgba(212, 175, 55, 0.72);
}

.insight__text p {
  margin: 0;
  color: rgba(255, 255, 255, 0.82);
  font-size: 1.08rem;
}

.partner-layout {
  display: grid;
  grid-template-columns: 1.05fr 0.95fr;
  gap: 54px;
  align-items: start;
}

.partner-copy > p {
  color: var(--muted);
  font-size: 1.08rem;
}

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

.partner-list li {
  position: relative;
  padding-left: 28px;
  color: var(--ink);
  line-height: 1.55;
}

.partner-list li::before {
  content: "";
  position: absolute;
  top: 0.66em;
  left: 0;
  width: 10px;
  height: 10px;
  border-radius: 50%;
  background: var(--gold-500);
  box-shadow: 0 0 0 5px rgba(212, 175, 55, 0.16);
}

.text-link {
  display: inline-block;
  margin-top: 30px;
  color: var(--blue-700);
  font-weight: 800;
}

.notify-panel {
  padding: 34px;
  border: 1px solid rgba(255, 255, 255, 0.18);
  border-radius: 8px;
  background:
    linear-gradient(145deg, rgba(255, 255, 255, 0.12), rgba(255, 255, 255, 0.03)),
    linear-gradient(180deg, rgba(0, 29, 61, 0.84), rgba(0, 18, 37, 0.9)),
    var(--navy-900);
  color: var(--white);
  box-shadow: var(--shadow);
  backdrop-filter: blur(24px) saturate(135%);
  -webkit-backdrop-filter: blur(24px) saturate(135%);
}

.notify-panel p {
  color: rgba(255, 255, 255, 0.78);
}

.notify-form {
  display: grid;
  grid-template-columns: 1fr auto;
  gap: 10px;
  margin-top: 28px;
}

.notify-form input {
  width: 100%;
  min-height: 48px;
  border: 1px solid rgba(255, 255, 255, 0.28);
  border-radius: 6px;
  background: rgba(255, 255, 255, 0.12);
  color: var(--white);
  padding: 0 16px;
  font: inherit;
  backdrop-filter: blur(14px);
  -webkit-backdrop-filter: blur(14px);
}

.notify-form input::placeholder {
  color: rgba(255, 255, 255, 0.62);
}

.notify-form input:focus {
  outline: 2px solid var(--gold-500);
  outline-offset: 2px;
}

.form-status {
  min-height: 28px;
  margin: 16px 0 0;
  color: rgba(255, 255, 255, 0.84);
}

.form-status a {
  color: var(--gold-400);
  font-weight: 800;
}

.site-footer {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  padding: 28px 48px;
  background:
    linear-gradient(180deg, rgba(0, 18, 37, 0.92), rgba(0, 18, 37, 0.98)),
    var(--navy-950);
  color: var(--white);
  border-top: 1px solid rgba(255, 255, 255, 0.1);
}

.site-footer strong {
  text-transform: uppercase;
  letter-spacing: 0.12em;
}

.site-footer p {
  margin: 6px 0 0;
  color: var(--gold-400);
  font-size: 0.82rem;
  font-weight: 800;
  letter-spacing: 0.16em;
  text-transform: uppercase;
}

.site-footer a {
  color: rgba(255, 255, 255, 0.82);
  font-weight: 700;
}

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

@media (max-width: 980px) {
  .site-header {
    padding: 12px 24px;
    gap: 16px;
  }

  .site-nav {
    display: none;
  }

  .hero__content,
  .section__inner {
    width: calc(100% - 40px);
    max-width: 760px;
  }

  h1 {
    font-size: 3rem;
  }

  h2 {
    font-size: 2rem;
  }

  .hero__signals,
  .feature-grid,
  .section__heading,
  .insight,
  .partner-layout {
    grid-template-columns: 1fr;
  }

  .feature-card {
    min-height: auto;
  }

  .insight__text {
    padding-left: 0;
    padding-top: 24px;
    border-left: 0;
    border-top: 2px solid rgba(212, 175, 55, 0.72);
  }
}

@media (max-width: 640px) {
  .site-header {
    min-height: 64px;
    padding: 10px 16px;
  }

  .brand-mark {
    gap: 9px;
    font-size: 0.76rem;
    letter-spacing: 0.08em;
  }

  .brand-mark img {
    width: 58px;
    height: 38px;
  }

  .hero {
    min-height: 88svh;
    background-position: 58% center;
  }

  .hero__content,
  .section__inner {
    width: calc(100% - 48px);
    max-width: 560px;
  }

  .hero__content {
    width: calc(100% - 48px);
    max-width: 320px;
    margin-left: 24px;
    margin-right: auto;
  }

  .hero__content {
    padding: 46px 0 64px;
  }

  .hero__logo {
    width: 190px;
    height: auto;
  }

  h1 {
    font-size: 1.55rem;
    line-height: 1.1;
  }

  h2 {
    font-size: 1.72rem;
  }

  .hero__lead {
    font-size: 0.95rem;
  }

  .hero__actions,
  .notify-form,
  .site-footer {
    display: grid;
    grid-template-columns: 1fr;
  }

  .button {
    width: 100%;
  }

  .hero__signals div {
    min-height: auto;
  }

  .section {
    padding: 64px 0;
  }

  .feature-card,
  .notify-panel {
    padding: 24px;
  }

  .site-footer {
    padding: 26px 20px;
  }
}
