/*
Theme Name: Kode Fit
Theme URI: https://kodefit.com
Description: Coming-soon placeholder for kodefit.com.
Author: Kode Pro
Author URI: https://kodepro.com
Version: 1.0.0
Requires at least: 6.0
Tested up to: 6.7
Requires PHP: 8.0
License: Proprietary
Text Domain: kode-fit-theme
*/

@font-face {
  font-family: 'Inter Tight';
  src: url('assets/fonts/InterTight-Latin.woff2') format('woff2');
  font-weight: 100 900;
  font-style: normal;
  font-display: swap;
}

:root {
  --bg: #0a0a0a;
  --fg: #ffffff;
  --accent: #d31212;
  --muted: rgba(255, 255, 255, 0.72);
  --hairline: rgba(255, 255, 255, 0.25);
  --footer: rgba(255, 255, 255, 0.45);
}

*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }

html, body {
  background: var(--bg);
  color: var(--fg);
  font-family: 'Inter Tight', system-ui, -apple-system, sans-serif;
  -webkit-font-smoothing: antialiased;
  min-height: 100dvh;
}

body {
  display: flex;
  flex-direction: column;
  padding: 28px;
}

.kf-page {
  flex: 1;
  display: flex;
  align-items: center;
  justify-content: flex-start;
}

.kf-content { max-width: 620px; }

.kf-mark {
  width: 36px;
  height: 4px;
  background: var(--accent);
  border-radius: 2px;
  margin-bottom: 18px;
}

.kf-word {
  font-weight: 800;
  font-size: clamp(56px, 11vw, 144px);
  letter-spacing: -0.045em;
  line-height: 0.92;
  color: var(--fg);
  margin: 0;
}

.kf-lede {
  margin-top: 22px;
  font-weight: 400;
  font-size: 15px;
  line-height: 1.55;
  max-width: 32ch;
  color: var(--muted);
}
.kf-lede strong { color: var(--fg); font-weight: 600; }

.kf-login {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  margin-top: 18px;
  padding-bottom: 4px;
  font-size: 11px;
  letter-spacing: 0.04em;
  color: rgba(255, 255, 255, 0.85);
  border-bottom: 1px solid var(--hairline);
  text-decoration: none;
  width: fit-content;
}
.kf-login:hover { color: var(--fg); border-bottom-color: rgba(255, 255, 255, 0.5); }
.kf-login .arrow { color: var(--accent); }

.kf-footer {
  display: flex;
  justify-content: space-between;
  align-items: flex-end;
  font-size: 8px;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--footer);
}

@media (max-width: 600px) {
  .kf-page { align-items: flex-start; padding-top: 8vh; }
  .kf-footer {
    flex-direction: column;
    gap: 8px;
    align-items: flex-start;
    margin-top: 32px;
  }
}
