/*
Theme Name: Compare.to — Hosting
Description: Web hosting comparison subdomain theme for hosting.compare.to
Version: 1.0
Text Domain: compareto-hosting
*/

:root {
  --bg: #F7F8FA;
  --surface: #FFFFFF;
  --line: #E1E5EA;
  --text: #11151A;
  --muted: #5B6470;
  --accent: #2D5FFF;
  --good: #1FAE7A;

  --font-display: "Manrope", Arial, sans-serif;
  --font-body: "Inter", sans-serif;
  --font-mono: "Roboto Mono", "Courier New", monospace;
}

* { box-sizing: border-box; }
html, body { margin: 0; background: var(--bg); color: var(--text); font-family: var(--font-body); line-height: 1.55; }
a { color: inherit; text-decoration: none; }
.wrap { max-width: 1080px; margin: 0 auto; padding: 0 24px; }

.site-header { border-bottom: 1px solid var(--line); padding: 20px 0; background: var(--surface); }
.site-header .wrap { display: flex; justify-content: space-between; align-items: center; }
.site-logo { font-family: var(--font-display); font-weight: 800; font-size: 17px; }
.site-logo span { color: var(--accent); }
.back-link { font-family: var(--font-mono); font-size: 12px; color: var(--muted); }
.back-link:hover { color: var(--accent); }

.hero { padding: 80px 0 48px; }
.hero-eyebrow { font-family: var(--font-mono); font-size: 12px; color: var(--accent); text-transform: uppercase; letter-spacing: 0.08em; margin-bottom: 18px; }
.hero h1 { font-family: var(--font-display); font-size: clamp(34px, 5vw, 54px); line-height: 1.08; font-weight: 800; margin: 0 0 20px; max-width: 18ch; }
.hero p { font-size: 17px; color: var(--muted); max-width: 58ch; margin: 0; }

.table-section { padding: 32px 0 96px; }
.table-head { display: flex; justify-content: space-between; align-items: baseline; margin-bottom: 18px; font-family: var(--font-mono); font-size: 12px; color: var(--muted); text-transform: uppercase; letter-spacing: 0.06em; }

.host-row { background: var(--surface); border: 1px solid var(--line); border-radius: 6px; padding: 24px; margin-bottom: 14px; display: grid; grid-template-columns: 1.3fr 1fr 1.2fr 130px; gap: 20px; align-items: center; }
.host-name { font-family: var(--font-display); font-weight: 800; font-size: 19px; }
.host-tag { display: block; font-family: var(--font-body); font-weight: 400; font-size: 13px; color: var(--muted); margin-top: 4px; }

.uptime-label { font-family: var(--font-mono); font-size: 11px; color: var(--muted); margin-bottom: 6px; text-transform: uppercase; letter-spacing: 0.05em; }
.uptime-bar { display: flex; gap: 2px; height: 8px; }
.uptime-bar i { flex: 1; background: var(--good); border-radius: 1px; }
.uptime-bar i.down { background: var(--line); }
.uptime-value { font-family: var(--font-mono); font-size: 13px; margin-top: 6px; color: var(--good); }

.host-price { font-family: var(--font-mono); font-size: 20px; font-weight: 500; }
.host-price small { display: block; font-size: 11px; color: var(--muted); font-weight: 400; }

.btn { font-family: var(--font-body); font-weight: 600; font-size: 14px; background: var(--accent); color: #fff; padding: 11px 18px; border-radius: 6px; display: inline-block; text-align: center; }
.btn:hover { background: #1f4adf; }

.disclosure { font-family: var(--font-mono); font-size: 11px; color: var(--muted); padding-top: 20px; }

.site-footer { border-top: 1px solid var(--line); padding: 28px 0; font-family: var(--font-mono); font-size: 11px; color: var(--muted); }
.site-footer .wrap { display: flex; justify-content: space-between; }

@media (max-width: 720px) {
  .host-row { grid-template-columns: 1fr; gap: 14px; }
}

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