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

@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;
  padding: 82px 20px 48px;
}

.landing-card {
  width: min(100%, 520px);
  text-align: center;
}

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

.landing-copy {
  margin: 0 auto;
  max-width: 420px;
  color: var(--text-soft);
  font-size: clamp(0.96rem, 1.5vw, 1.1rem);
  line-height: 1.48;
  font-weight: 300;
}

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

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

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

.social-title {
  margin: 0 0 18px;
  color: var(--yellow);
  font-size: 1.55rem;
  font-weight: 700;
}

.social-row {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 10px 12px;
  background: rgba(0, 0, 0, 0.08);
}

.social-row a {
  display: inline-flex;
}

.social-link {
  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: 8px;
  border: 1px solid var(--icon-line);
  background: var(--icon-bg);
  color: #ffffff;
}

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

@media (max-width: 640px) {
  .landing-shell {
    padding-top: 72px;
  }

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

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

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

  .social-title {
    font-size: 1.6rem;
  }
}
