:root {
  color-scheme: dark;
  --bg: #07100f;
  --panel: #101b18;
  --text: #f4f7f2;
  --muted: #b5c2bd;
  --line: rgba(255, 255, 255, 0.15);
  --accent: #ffd36a;
  --accent-2: #35d0b2;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  background: var(--bg);
  color: var(--text);
  font-family: Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  line-height: 1.5;
}

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

.site-header {
  position: fixed;
  z-index: 20;
  top: 0;
  left: 0;
  right: 0;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  padding: 18px clamp(18px, 4vw, 56px);
  background: rgba(7, 16, 15, 0.78);
  border-bottom: 1px solid var(--line);
  backdrop-filter: blur(18px);
}

.brand {
  display: flex;
  align-items: center;
  gap: 12px;
  min-width: min(420px, 48vw);
}

.brand-mark {
  display: grid;
  place-items: center;
  width: 42px;
  height: 42px;
  flex: 0 0 42px;
  border: 1px solid rgba(255, 211, 106, 0.55);
  border-radius: 8px;
  background: rgba(255, 211, 106, 0.13);
  color: var(--accent);
  font-weight: 800;
}

.brand strong,
.brand small {
  display: block;
}

.brand strong {
  font-size: 15px;
}

.brand small {
  margin-top: 2px;
  color: var(--muted);
  font-size: 12px;
}

.language-nav {
  display: flex;
  align-items: center;
  justify-content: flex-end;
  gap: 8px;
  overflow-x: auto;
  scrollbar-width: thin;
}

.lang-button {
  flex: 0 0 auto;
  min-height: 34px;
  padding: 7px 11px;
  border: 1px solid var(--line);
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.06);
  color: var(--muted);
  cursor: pointer;
  font: inherit;
  font-size: 13px;
  white-space: nowrap;
}

.lang-button:hover,
.lang-button.is-active {
  border-color: rgba(255, 211, 106, 0.72);
  color: var(--text);
  background: rgba(255, 211, 106, 0.13);
}

.hero {
  position: relative;
  min-height: 92vh;
  display: grid;
  align-items: center;
  overflow: hidden;
  padding: 128px clamp(20px, 5vw, 72px) 68px;
}

.hero-image,
.hero-overlay {
  position: absolute;
  inset: 0;
}

.hero-image {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.hero-overlay {
  background:
    linear-gradient(90deg, rgba(7, 16, 15, 0.96), rgba(7, 16, 15, 0.7) 44%, rgba(7, 16, 15, 0.2)),
    linear-gradient(0deg, rgba(7, 16, 15, 0.98), transparent 34%);
}

.hero-content {
  position: relative;
  z-index: 1;
  width: min(760px, 100%);
}

.status {
  display: inline-flex;
  align-items: center;
  min-height: 30px;
  margin: 0 0 18px;
  padding: 5px 11px;
  border: 1px solid rgba(53, 208, 178, 0.5);
  border-radius: 999px;
  color: #aef6e8;
  background: rgba(53, 208, 178, 0.1);
  font-size: 13px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.08em;
}

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

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

.hero-copy {
  max-width: 650px;
  margin-bottom: 34px;
  color: var(--muted);
  font-size: clamp(17px, 2vw, 22px);
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
}

.primary-action,
.secondary-action {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 48px;
  padding: 12px 18px;
  border-radius: 8px;
  font-weight: 750;
}

.primary-action {
  background: var(--accent);
  color: #1d1606;
}

.secondary-action {
  border: 1px solid var(--line);
  background: rgba(255, 255, 255, 0.06);
}

.intro-section,
.markets-section,
.closing-section {
  padding: 72px clamp(20px, 5vw, 72px);
}

.section-heading {
  display: grid;
  grid-template-columns: minmax(160px, 0.42fr) minmax(0, 1fr);
  gap: 24px;
  margin-bottom: 32px;
}

.section-heading p {
  color: var(--accent);
  font-weight: 750;
}

.section-heading h2,
.closing-section h2 {
  max-width: 900px;
  font-size: clamp(30px, 4vw, 54px);
  line-height: 1.05;
  letter-spacing: 0;
}

.intro-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 1px;
  background: var(--line);
  border: 1px solid var(--line);
}

.intro-grid article {
  min-height: 260px;
  padding: 28px;
  background: var(--panel);
}

.intro-grid span {
  color: var(--accent-2);
  font-weight: 800;
}

.intro-grid h3 {
  margin: 42px 0 14px;
  font-size: 24px;
}

.intro-grid p,
.closing-section p {
  color: var(--muted);
}

.markets-section {
  background: #f2f0e8;
  color: #101714;
}

.markets-section .section-heading p {
  color: #336d61;
}

.market-list {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
}

.market-list span {
  display: inline-flex;
  align-items: center;
  min-height: 44px;
  padding: 9px 14px;
  border: 1px solid rgba(16, 23, 20, 0.18);
  border-radius: 8px;
  background: rgba(255, 255, 255, 0.58);
  font-weight: 700;
}

.closing-section {
  min-height: 420px;
  display: grid;
  align-content: center;
  border-top: 1px solid var(--line);
}

.closing-section p:not(.status) {
  max-width: 760px;
  font-size: 18px;
}

.site-footer {
  display: flex;
  justify-content: space-between;
  gap: 18px;
  padding: 24px clamp(20px, 5vw, 72px);
  border-top: 1px solid var(--line);
  color: var(--muted);
  font-size: 14px;
}

@media (max-width: 900px) {
  .site-header {
    align-items: flex-start;
    flex-direction: column;
    gap: 14px;
  }

  .brand {
    min-width: 0;
    width: 100%;
  }

  .language-nav {
    justify-content: flex-start;
    width: 100%;
    padding-bottom: 3px;
  }

  .hero {
    min-height: 88vh;
    padding-top: 190px;
  }

  .section-heading,
  .intro-grid {
    grid-template-columns: 1fr;
  }

  .intro-grid article {
    min-height: 220px;
  }
}

@media (max-width: 560px) {
  .brand small {
    font-size: 11px;
  }

  .hero {
    min-height: 92vh;
    padding-top: 208px;
  }

  h1 {
    font-size: 40px;
  }

  .primary-action,
  .secondary-action {
    width: 100%;
  }

  .site-footer {
    flex-direction: column;
  }
}
