:root {
  --bg: #20262d;
  --panel: transparent;
  --text: #ffffff;
  --text-soft: rgba(255, 255, 255, 0.92);
  --yellow: #ffd11f;
  --yellow-strong: #f0b400;
  --navy: #1c2430;
  --icon-bg: rgba(18, 23, 29, 0.72);
  --icon-line: rgba(255, 255, 255, 0.12);
  --divider: rgba(255, 255, 255, 0.34);
}

@font-face {
  font-family: "Ghino";
  src: url("assets/fonts/GhinoLight.otf") format("opentype");
  font-weight: 300;
  font-style: normal;
}

@font-face {
  font-family: "Ghino";
  src: url("assets/fonts/GhinoBook.otf") format("opentype");
  font-weight: 400;
  font-style: normal;
}

@font-face {
  font-family: "Ghino";
  src: url("assets/fonts/GhinoMedium.otf") format("opentype");
  font-weight: 500;
  font-style: normal;
}

@font-face {
  font-family: "Ghino";
  src: url("assets/fonts/GhinoBold.otf") format("opentype");
  font-weight: 700;
  font-style: normal;
}

* {
  box-sizing: border-box;
}

html,
body {
  min-height: 100%;
}

body {
  margin: 0;
  min-height: 100vh;
  font-family: "Ghino", "Arial", "Helvetica Neue", sans-serif;
  color: var(--text);
  background: var(--bg);
}

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

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

.landing-shell {
  min-height: 100vh;
  display: grid;
  place-items: start center;
  gap: 28px;
  padding: 74px 20px 72px;
}

.landing-intro,
.campaigns-shell {
  width: min(100%, 560px);
  text-align: center;
}

.landing-logo {
  width: min(100%, 192px);
  margin: 0 auto 52px;
}

.landing-copy {
  margin: 0 auto;
  max-width: 430px;
  color: var(--text-soft);
  font-size: clamp(0.98rem, 1.35vw, 1.1rem);
  line-height: 1.38;
  font-weight: 300;
}

.copy-highlight {
  color: var(--yellow);
  font-weight: 700;
}

.cta-button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-width: 182px;
  min-height: 54px;
  margin-top: 24px;
  padding: 0 30px;
  border-radius: 999px;
  background: var(--yellow);
  color: #1a1f25;
  font-size: 0.98rem;
  font-weight: 700;
  letter-spacing: 0.02em;
}

.social-block {
  margin-top: 30px;
}

.social-row {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 8px 0;
}

.social-link {
  display: inline-flex;
  transition: transform 150ms ease, opacity 150ms ease;
}

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

.social-icon {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 46px;
  height: 46px;
  border-radius: 10px;
  border: 1px solid var(--icon-line);
  background: var(--icon-bg);
  color: #ffffff;
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.04);
}

.social-icon svg {
  width: 18px;
  height: 18px;
  fill: currentColor;
}

.campaigns-shell {
  display: grid;
  gap: 22px;
}

.campaign-divider {
  width: min(100%, 440px);
  height: 1px;
  margin: 0 auto;
  background: var(--divider);
}

.campaigns-title {
  margin: 0;
  color: var(--text);
  font-size: clamp(1.65rem, 2.8vw, 2.15rem);
  font-weight: 700;
  letter-spacing: 0.01em;
}

.campaign-card {
  display: grid;
  gap: 18px;
  padding: 28px 24px 26px;
  border-radius: 30px;
  background: var(--yellow);
  box-shadow: 0 6px 0 rgba(11, 17, 22, 0.28);
}

.campaign-card h3 {
  margin: 0;
  color: #1d2531;
  font-size: clamp(1.15rem, 2.3vw, 1.52rem);
  font-weight: 700;
  line-height: 1.28;
}

.campaign-image-link {
  display: block;
}

.campaign-image {
  width: 100%;
  border-radius: 28px;
}

.campaign-button {
  justify-self: center;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-width: 104px;
  min-height: 42px;
  padding: 0 20px;
  border-radius: 999px;
  background: var(--navy);
  color: #ffffff;
  font-size: 0.86rem;
  font-weight: 700;
  letter-spacing: 0.02em;
}

@media (max-width: 640px) {
  .landing-shell {
    gap: 24px;
    padding-top: 56px;
    padding-bottom: 56px;
  }

  .landing-logo {
    width: 160px;
    margin-bottom: 40px;
  }

  .landing-copy {
    font-size: 0.96rem;
  }

  .social-block {
    margin-top: 26px;
  }

  .campaign-divider {
    width: min(100%, 320px);
  }

  .campaign-card {
    padding: 22px 18px 22px;
    border-radius: 24px;
  }

  .campaign-image {
    border-radius: 22px;
  }
}
