* {
  box-sizing: border-box;
}

body {
  min-height: 100vh;
  min-height: 100svh;
  margin: 0;
  background: #05090a;
  color: #effdf9;
  font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  line-height: 1.55;
}

a {
  color: #62efcf;
}

main {
  width: 100%;
  min-height: 100vh;
  min-height: 100svh;
  display: flex;
  flex-direction: column;
  background:
    linear-gradient(180deg, rgba(10, 47, 43, 0.84) 0%, rgba(5, 9, 10, 0.96) 48%, #05090a 100%),
    #05090a;
}

.nav {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
  max-width: 1120px;
  margin: 0 auto;
  padding: 28px 24px;
}

.brand {
  color: #f8fffc;
  font-size: 25px;
  font-weight: 800;
  letter-spacing: 0;
  text-decoration: none;
}

.links {
  display: flex;
  gap: 18px;
  font-size: 15px;
}

.nav-tools {
  display: flex;
  align-items: center;
  gap: 22px;
  flex-wrap: wrap;
  justify-content: flex-end;
}

.links a {
  color: #cae2dd;
  text-decoration: none;
}

.links a[aria-current="page"] {
  color: #fff0b7;
}

.links a:hover,
.brand:hover {
  color: #fff0b7;
}

.locale-control {
  position: relative;
}

.locale-switcher {
  position: relative;
}

.locale-switcher summary {
  min-height: 38px;
  display: inline-flex;
  align-items: center;
  gap: 8px;
  border: 1px solid rgba(98, 239, 207, 0.22);
  border-radius: 8px;
  padding: 6px 10px;
  color: #effdf9;
  background: rgba(4, 16, 14, 0.58);
  cursor: pointer;
  font-size: 14px;
  font-weight: 800;
  list-style: none;
  white-space: nowrap;
}

.locale-switcher summary::-webkit-details-marker {
  display: none;
}

.language-icon,
.chevron-icon {
  width: 1.08em;
  height: 1.08em;
  flex: 0 0 auto;
  fill: none;
  stroke: currentColor;
  stroke-linecap: round;
  stroke-linejoin: round;
  stroke-width: 2;
}

.chevron-icon {
  transition: transform 160ms ease;
}

.locale-switcher[open] .chevron-icon {
  transform: rotate(180deg);
}

.locale-menu-list {
  position: absolute;
  z-index: 20;
  top: calc(100% + 8px);
  right: 0;
  width: min(248px, calc(100vw - 40px));
  max-height: min(360px, 60vh);
  overflow-y: auto;
  display: grid;
  gap: 4px;
  border: 1px solid rgba(98, 239, 207, 0.26);
  border-radius: 8px;
  padding: 6px;
  background: rgba(4, 16, 14, 0.98);
  box-shadow: 0 22px 52px rgba(0, 0, 0, 0.38);
}

.locale-switcher:not([open]) .locale-menu-list {
  display: none;
}

.locale-menu-list a {
  min-height: 36px;
  display: inline-flex;
  align-items: center;
  padding: 7px 10px;
  border-radius: 6px;
  color: #cae2dd;
  font-size: 14px;
  font-weight: 800;
  text-decoration: none;
  white-space: nowrap;
}

.locale-menu-list a:hover,
.locale-menu-list .active-locale {
  color: #04100e;
  background: #fff0b7;
}

.hero {
  min-height: 62svh;
  display: grid;
  grid-template-columns: minmax(0, 0.9fr) minmax(320px, 1.1fr);
  align-items: center;
  gap: 46px;
  max-width: 1120px;
  margin: 0 auto;
  padding: 20px 24px 48px;
}

.hero-copy {
  max-width: 540px;
}

.eyebrow {
  margin: 0 0 14px;
  color: #ffcf66;
  font-size: 13px;
  font-weight: 800;
  letter-spacing: 0;
  text-transform: uppercase;
}

h1 {
  margin: 0 0 20px;
  font-size: clamp(52px, 10vw, 106px);
  line-height: 0.95;
  letter-spacing: 0;
}

h2 {
  margin: 0 0 10px;
  color: #f7fff9;
  font-size: 24px;
  letter-spacing: 0;
}

.lead,
.hero p,
.content p,
.content li,
.band p {
  color: #c9dfda;
}

.lead,
.hero p {
  font-size: 21px;
}

.hero img {
  width: 100%;
  border: 1px solid rgba(98, 239, 207, 0.28);
  border-radius: 8px;
  box-shadow: 0 26px 86px rgba(11, 229, 180, 0.18);
}

.actions {
  display: flex;
  gap: 14px;
  flex-wrap: wrap;
  margin-top: 30px;
}

.button {
  display: inline-flex;
  min-height: 46px;
  align-items: center;
  border: 1px solid rgba(98, 239, 207, 0.56);
  border-radius: 8px;
  padding: 10px 18px;
  color: #04100e;
  background: #62efcf;
  text-decoration: none;
  font-weight: 800;
  transition: background 160ms ease, border-color 160ms ease, transform 160ms ease;
}

.button-secondary {
  color: #effdf9;
  background: rgba(6, 27, 24, 0.72);
}

.button:hover {
  border-color: #fff0b7;
  background: #fff0b7;
  transform: translateY(-1px);
}

.button-secondary:hover {
  color: #04100e;
}

.band {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 54px;
  max-width: 1120px;
  margin: 0 auto;
  padding: 46px 24px 70px;
  border-top: 1px solid rgba(98, 239, 207, 0.18);
}

.content {
  width: 100%;
  flex: 0 0 auto;
  max-width: 840px;
  margin: 0 auto;
  padding: 40px 24px 44px;
}

.content h1 {
  font-size: clamp(46px, 9vw, 84px);
}

.content h2 {
  margin-top: 42px;
  color: #9dfce2;
}

.content ul {
  padding-left: 22px;
}

.section-title,
.contact-line,
.status-line,
.privacy-line,
.icon-list li {
  display: flex;
  align-items: flex-start;
  gap: 10px;
}

.section-title {
  align-items: center;
}

.icon,
.inline-icon {
  width: 1.08em;
  height: 1.08em;
  flex: 0 0 auto;
  stroke: currentColor;
  stroke-width: 2;
  fill: none;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.inline-icon {
  margin-top: 0.22em;
}

.icon-list {
  display: grid;
  gap: 10px;
  margin: 12px 0 0;
  padding-left: 0;
  list-style: none;
}

.icon-list li {
  margin: 0;
}

.icon-list strong {
  color: #effdf9;
}

.footer {
  flex: 0 0 auto;
  width: 100%;
  max-width: 1120px;
  margin: auto auto 0;
  padding: 26px 24px 34px;
  color: #86a19a;
  font-size: 14px;
  text-align: center;
}

@media (max-width: 820px) {
  .nav {
    align-items: flex-start;
    padding: 24px 20px;
  }

  .nav-tools {
    width: 100%;
    justify-content: flex-start;
  }

  .hero {
    min-height: auto;
    grid-template-columns: 1fr;
    padding: 36px 20px 58px;
  }

  .band {
    grid-template-columns: 1fr;
    gap: 28px;
    padding: 38px 20px 58px;
  }

  .content {
    padding: 34px 20px 42px;
  }
}
