/* ============================================================
   SportClub — coming-soon landing
   Light theme only, no DS runtime needed. Tokens distilled from
   ../landing/tokens/ — just the ones this page actually uses.
   ============================================================ */

/* ----- Fonts ------------------------------------------------ */
@font-face {
  font-family: "Bebas Neue";
  src: url("./assets/fonts/BebasNeue-Bold.ttf") format("truetype");
  font-weight: 700;
  font-style: normal;
  font-display: swap;
}
@font-face {
  font-family: "TT Supermolot Neue";
  src: url("./assets/fonts/TTSupermolotNeue-Regular.ttf") format("truetype");
  font-weight: 400;
  font-style: normal;
  font-display: swap;
}
@font-face {
  font-family: "TT Supermolot Neue";
  src: url("./assets/fonts/TTSupermolotNeue-Medium.ttf") format("truetype");
  font-weight: 500;
  font-style: normal;
  font-display: swap;
}
@font-face {
  font-family: "TT Supermolot Neue";
  src: url("./assets/fonts/TTSupermolotNeue-Bold.ttf") format("truetype");
  font-weight: 700;
  font-style: normal;
  font-display: swap;
}

/* ----- Tokens (light surface) ------------------------------- */
:root {
  --accent:         #FF0000;
  --accent-hover:   #E00000;
  --bg-page:        #FFFFFF;
  --surface-card:   #FFFFFF;
  --surface-tint:   #F6F6F7;
  --text-primary:   #0A0A0B;
  --text-secondary: #26262B;
  --text-muted:     #5C5C66;
  --border-subtle:  #ECECEF;
  --border-strong:  #B4B4BD;

  --font-display: "Bebas Neue", "Oswald", "Anton", sans-serif;
  --font-body:    "TT Supermolot Neue", "Inter", system-ui, sans-serif;

  --ease-out: cubic-bezier(.22, .61, .36, 1);
  --dur-base: 200ms;
}

/* ----- Reset / base ----------------------------------------- */
*, *::before, *::after { box-sizing: border-box; }
html, body { margin: 0; padding: 0; }

body {
  font-family: var(--font-body);
  font-weight: 400;
  font-size: 16px;
  line-height: 1.5;
  color: var(--text-primary);
  background: var(--bg-page);
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
  min-height: 100vh;
  display: flex;
  flex-direction: column;
}

a { color: var(--accent); text-decoration: none; }
a:hover { color: var(--accent-hover); }
::selection { background: var(--accent); color: #fff; }

:focus-visible {
  outline: 2px solid var(--accent);
  outline-offset: 3px;
  border-radius: 4px;
}

/* ----- Page shell ------------------------------------------- */
.page {
  width: 100%;
  max-width: 1120px;
  margin: 0 auto;
  padding: clamp(24px, 4vw, 40px) clamp(20px, 4vw, 40px);
  display: flex;
  flex-direction: column;
  flex: 1 0 auto;
}

.page__top {
  display: flex;
  align-items: center;
  margin-bottom: clamp(40px, 10vh, 110px);
}

.page__logo {
  height: clamp(38px, 4.5vw, 52px);
  width: auto;
  display: block;
}

/* ----- Hero ------------------------------------------------- */
.hero {
  max-width: 760px;
  display: flex;
  flex-direction: column;
}

.hero__kicker {
  font-family: var(--font-body);
  font-weight: 700;
  font-size: 12px;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--accent);
  margin: 0 0 16px;
  display: inline-flex;
  align-items: center;
  gap: 14px;
}

.hero__kicker::before {
  content: "";
  display: inline-block;
  width: 32px;
  height: 3px;
  background: var(--accent);
}

.hero__title {
  font-family: var(--font-display);
  font-weight: 700;
  text-transform: uppercase;
  line-height: 0.9;
  letter-spacing: 0.03em;
  font-size: clamp(54px, 9.5vw, 116px);
  margin: 0 0 28px;
  color: var(--text-primary);
}

.hero__accent {
  color: var(--accent);
}

.hero__sub {
  font-family: var(--font-body);
  font-size: clamp(16px, 1.5vw, 19px);
  line-height: 1.55;
  color: var(--text-secondary);
  margin: 0;
  max-width: 560px;
}

/* ----- Contacts grid ---------------------------------------- */
.contacts {
  margin-top: clamp(48px, 8vh, 88px);
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
  gap: 14px;
  max-width: 980px;
}

.contact {
  display: flex;
  flex-direction: column;
  gap: 8px;
  padding: 20px 22px;
  background: var(--surface-card);
  border: 1px solid var(--border-subtle);
  border-radius: 8px;
  color: var(--text-primary);
  transition: border-color var(--dur-base) var(--ease-out),
              box-shadow var(--dur-base) var(--ease-out),
              transform var(--dur-base) var(--ease-out);
}

a.contact:hover {
  border-color: var(--accent);
  box-shadow: 0 8px 24px rgba(255, 0, 0, 0.10);
  transform: translateY(-2px);
}

.contact__label {
  font-family: var(--font-body);
  font-weight: 700;
  font-size: 11px;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--accent);
}

.contact__value {
  font-family: var(--font-body);
  font-weight: 500;
  font-size: 17px;
  color: var(--text-primary);
  line-height: 1.35;
}

/* ----- Footer ----------------------------------------------- */
.page__bottom {
  margin-top: clamp(56px, 8vh, 80px);
  padding-top: 22px;
  border-top: 3px solid var(--accent);
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 12px;
}

.footer__line,
.footer__note {
  margin: 0;
  font-family: var(--font-body);
  font-weight: 500;
  font-size: 13px;
  color: var(--text-muted);
  letter-spacing: 0.02em;
}

.footer__note {
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.16em;
  color: var(--text-primary);
}

/* ----- Tablet and below ------------------------------------- */
@media (max-width: 768px) {
  .page__top {
    margin-bottom: 56px;
  }
}

/* ----- Phone (≤ 600 px) ------------------------------------- */
@media (max-width: 600px) {
  .page {
    padding: 22px 18px 18px;
  }
  .page__top {
    margin-bottom: 40px;
  }
  .page__logo {
    height: 38px;
  }

  .hero__kicker {
    font-size: 11px;
    letter-spacing: 0.14em;
    gap: 10px;
    margin-bottom: 14px;
  }
  .hero__kicker::before {
    width: 24px;
    height: 2px;
  }

  .hero__title {
    font-size: clamp(44px, 11vw, 64px);
    letter-spacing: 0.02em;
    margin-bottom: 22px;
  }

  .hero__sub {
    font-size: 16px;
    line-height: 1.5;
  }

  .contacts {
    margin-top: 44px;
    grid-template-columns: 1fr;
    gap: 12px;
  }
  .contact {
    padding: 18px 20px;
  }
  .contact__value {
    font-size: 16px;
  }

  .page__bottom {
    flex-direction: column;
    align-items: flex-start;
    margin-top: 48px;
    padding-top: 18px;
    gap: 6px;
  }
  .footer__note {
    letter-spacing: 0.1em;
    font-size: 12px;
  }
}

/* ----- Very narrow phones (≤ 360 px, e.g. legacy Android) --- */
@media (max-width: 360px) {
  .page {
    padding: 20px 16px 18px;
  }
  .hero__title {
    font-size: 40px;
  }
  .hero__kicker {
    font-size: 11px;
    letter-spacing: 0.12em;
  }
}

/* ----- Touch devices: swap hover for active feedback -------- */
@media (hover: none) {
  a.contact:hover {
    border-color: var(--border-subtle);
    box-shadow: none;
    transform: none;
  }
  a.contact:active {
    border-color: var(--accent);
    transform: scale(0.99);
  }
}
