* {
  box-sizing: border-box;
}

:root {
  --navy: #03101d;
  --navy-2: #071a2a;
  --gold: #e6a83b;
  --white: #f7f8fa;
  --muted: #c4cbd2;
  --line: rgba(255,255,255,.18);
}

html, body {
  margin: 0;
  padding: 0;
  min-height: 100%;
  background: #020a13;
  color: var(--white);
  font-family: Arial, Helvetica, sans-serif;
}

body {
  min-height: 100vh;
}

.page {
  width: 100%;
  max-width: 1500px;
  margin: 0 auto;
  background: var(--navy);
  overflow: hidden;
}

.hero {
  min-height: 720px;
  display: grid;
  grid-template-columns: 55% 45%;
  position: relative;
  background:
    radial-gradient(circle at 58% 28%, rgba(50, 81, 105, .34), transparent 35%),
    linear-gradient(115deg, #061426 0%, #071b2b 48%, #020b15 100%);
}

.visual {
  position: relative;
  overflow: hidden;
  min-height: 720px;
}

.visual::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(90deg, rgba(3,16,29,.02) 35%, rgba(3,16,29,.42) 100%);
  pointer-events: none;
}

.flag-image {
  width: 100%;
  height: 100%;
  min-height: 720px;
  object-fit: cover;
  object-position: left center;
  display: block;
}

.content {
  padding: 76px 7vw 50px 42px;
  display: flex;
  flex-direction: column;
  justify-content: center;
  position: relative;
  z-index: 2;
}

.brand .wm {
  font-size: clamp(60px, 6vw, 94px);
  line-height: .8;
  font-weight: 900;
  letter-spacing: -7px;
  margin-bottom: 25px;
  background: linear-gradient(90deg, #fff 0 48%, var(--gold) 49% 100%);
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
  width: max-content;
}

h1 {
  margin: 0;
  font-size: clamp(36px, 3.3vw, 62px);
  line-height: 1;
  letter-spacing: -1px;
  font-weight: 900;
}

h1 span {
  color: var(--gold);
}

.official {
  margin-top: 18px;
  font-size: 14px;
  letter-spacing: 7px;
  color: #e0e3e6;
}

.gold-line {
  width: 86px;
  height: 3px;
  background: var(--gold);
  margin: 30px 0 24px;
}

.slogan {
  font-size: clamp(21px, 1.7vw, 31px);
  line-height: 1.35;
  margin: 0 0 34px;
  color: #f4f5f6;
}

.slogan span {
  color: var(--gold);
  font-weight: 700;
}

.social-links {
  display: flex;
  flex-direction: column;
  gap: 12px;
  max-width: 620px;
}

.social-links a {
  display: grid;
  grid-template-columns: 58px 1fr 30px;
  align-items: center;
  min-height: 76px;
  padding: 9px 17px;
  border: 1px solid rgba(137, 169, 197, .42);
  border-radius: 17px;
  background: rgba(5, 23, 37, .78);
  color: white;
  text-decoration: none;
  transition: transform .2s, background .2s, border-color .2s;
}

.social-links a:hover {
  transform: translateX(5px);
  background: rgba(12, 39, 59, .95);
  border-color: rgba(230,168,59,.7);
}

.social-links strong {
  display: block;
  font-size: 21px;
  margin-bottom: 4px;
}

.social-links small {
  display: block;
  font-size: 14px;
  color: var(--muted);
}

.social-links b {
  font-size: 38px;
  font-weight: 300;
  text-align: right;
}

.icon {
  width: 43px;
  height: 43px;
  display: grid;
  place-items: center;
  border-radius: 12px;
  color: white;
  font-size: 27px;
  font-weight: 700;
}

.instagram {
  background: linear-gradient(135deg, #feda75, #d62976 48%, #4f5bd5);
}

.facebook {
  background: #1877f2;
}

.whatsapp {
  background: #20c76a;
}

.highlights {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  border-top: 1px solid var(--line);
  background: linear-gradient(90deg, #03111e, #061a2a);
}

.highlights > div {
  min-height: 150px;
  padding: 28px 20px;
  text-align: center;
  border-right: 1px solid var(--line);
}

.highlights > div:last-child {
  border-right: 0;
}

.highlight-icon {
  color: var(--gold);
  font-size: 31px;
  line-height: 1;
  margin-bottom: 10px;
}

.highlights strong {
  display: block;
  font-size: 19px;
  margin-bottom: 6px;
}

.highlights small {
  color: var(--muted);
  font-size: 14px;
  line-height: 1.35;
}

.advertiser {
  padding: 34px 7%;
  background: #020b14;
  border-top: 1px solid rgba(255,255,255,.08);
  color: #dce2e7;
}

.advertiser h2 {
  margin: 0 0 16px;
  color: var(--gold);
  font-size: 19px;
}

.advertiser p {
  margin: 6px 0;
  font-size: 13px;
}

@media (max-width: 900px) {
  .hero {
    grid-template-columns: 1fr;
  }

  .visual,
  .flag-image {
    min-height: 430px;
    height: 430px;
  }

  .content {
    padding: 45px 24px 42px;
  }

  .highlights {
    grid-template-columns: 1fr;
  }

  .highlights > div {
    border-right: 0;
    border-bottom: 1px solid var(--line);
  }

  .highlights > div:last-child {
    border-bottom: 0;
  }
}

@media (max-width: 520px) {
  .visual,
  .flag-image {
    min-height: 300px;
    height: 300px;
  }

  .content {
    padding: 38px 18px;
  }

  .official {
    letter-spacing: 4px;
  }

  .social-links a {
    min-height: 70px;
    grid-template-columns: 50px 1fr 22px;
  }

  .social-links strong {
    font-size: 18px;
  }

  .slogan {
    font-size: 20px;
  }
}
