/* HoopMe — shared site styles. Brand: near-black + #FE5C01 orange. */
:root {
  --bg: #0a0a0a;
  --surface: #141414;
  --surface-2: #1b1b1b;
  --border: rgba(255, 255, 255, 0.08);
  --border-strong: rgba(255, 255, 255, 0.14);
  --orange: #fe5c01;
  --orange-2: #ff7e34;
  --text: #f5f5f5;
  --muted: #9a9a9a;
  --muted-2: #6e6e6e;
  --radius: 18px;
  --maxw: 1080px;
}

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

html { scroll-behavior: smooth; }

body {
  font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, Helvetica, Arial, sans-serif;
  background: var(--bg);
  color: var(--text);
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
}

a { color: var(--orange-2); text-decoration: none; }
a:hover { text-decoration: underline; }

.container { max-width: var(--maxw); margin: 0 auto; padding: 0 24px; }
.narrow { max-width: 760px; }

/* ---- Nav ---- */
.nav {
  position: sticky; top: 0; z-index: 50;
  background: rgba(10, 10, 10, 0.72);
  backdrop-filter: saturate(160%) blur(14px);
  -webkit-backdrop-filter: saturate(160%) blur(14px);
  border-bottom: 1px solid var(--border);
}
.nav .container { display: flex; align-items: center; justify-content: space-between; height: 64px; }
.brand { display: flex; align-items: center; gap: 10px; font-weight: 700; font-size: 1.15rem; color: var(--text); }
.brand img { width: 30px; height: 30px; border-radius: 8px; }
.brand:hover { text-decoration: none; }
.nav-links { display: flex; align-items: center; gap: 26px; }
.nav-links a { color: var(--muted); font-size: 0.95rem; font-weight: 500; }
.nav-links a:hover { color: var(--text); text-decoration: none; }
@media (max-width: 560px) { .nav-links a.hide-sm { display: none; } }

/* ---- Buttons / pills ---- */
.pill {
  display: inline-flex; align-items: center; gap: 8px;
  padding: 7px 14px; border-radius: 999px;
  font-size: 0.82rem; font-weight: 600; letter-spacing: 0.01em;
  background: rgba(254, 92, 1, 0.12); color: var(--orange-2);
  border: 1px solid rgba(254, 92, 1, 0.3);
}
.pill .dot { width: 7px; height: 7px; border-radius: 50%; background: var(--orange); box-shadow: 0 0 0 4px rgba(254,92,1,0.18); }

.btn {
  display: inline-flex; align-items: center; gap: 9px;
  padding: 14px 24px; border-radius: 14px;
  font-weight: 600; font-size: 1rem; cursor: pointer;
  border: 1px solid transparent; transition: transform .15s ease, opacity .15s ease;
}
.btn:hover { text-decoration: none; transform: translateY(-1px); }
.btn-primary { background: linear-gradient(180deg, var(--orange-2), var(--orange)); color: #160a02; box-shadow: 0 8px 30px rgba(254, 92, 1, 0.28); }
.btn-ghost { background: var(--surface-2); color: var(--text); border-color: var(--border-strong); }
.btn-disabled { background: var(--surface-2); color: var(--muted); border-color: var(--border); cursor: default; }
.btn-disabled:hover { transform: none; }

/* ---- Hero ---- */
.hero { position: relative; overflow: hidden; text-align: center; padding: 96px 0 72px; }
.hero::before {
  content: ""; position: absolute; inset: 0;
  background:
    radial-gradient(60% 50% at 50% 0%, rgba(254, 92, 1, 0.22), transparent 70%),
    radial-gradient(40% 40% at 80% 20%, rgba(254, 92, 1, 0.10), transparent 70%);
  pointer-events: none;
}
.hero .container { position: relative; }
.hero-logo { width: 96px; height: 96px; border-radius: 22px; margin: 0 auto 26px; display: block; box-shadow: 0 12px 50px rgba(254,92,1,0.25); }
.hero h1 { font-size: clamp(2.6rem, 7vw, 4.6rem); font-weight: 800; letter-spacing: -0.03em; line-height: 1.03; }
.hero h1 .accent { color: var(--orange); }
.hero .sub { color: var(--muted); font-size: clamp(1.05rem, 2.4vw, 1.3rem); max-width: 540px; margin: 18px auto 32px; }
.hero-cta { display: flex; gap: 14px; justify-content: center; flex-wrap: wrap; align-items: center; }
.hero-note { color: var(--muted-2); font-size: 0.85rem; margin-top: 16px; }

/* ---- Sections ---- */
.section { padding: 72px 0; }
.section-head { text-align: center; max-width: 600px; margin: 0 auto 48px; }
.section-head h2 { font-size: clamp(1.8rem, 4vw, 2.6rem); font-weight: 800; letter-spacing: -0.02em; }
.section-head p { color: var(--muted); margin-top: 12px; font-size: 1.05rem; }
.eyebrow { color: var(--orange); font-weight: 700; font-size: 0.85rem; letter-spacing: 0.08em; text-transform: uppercase; }

/* ---- Feature grid ---- */
.grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 18px; }
@media (max-width: 860px) { .grid { grid-template-columns: repeat(2, 1fr); } }
@media (max-width: 560px) { .grid { grid-template-columns: 1fr; } }
.card {
  background: linear-gradient(180deg, var(--surface), var(--surface-2));
  border: 1px solid var(--border); border-radius: var(--radius);
  padding: 26px 24px; transition: border-color .2s ease, transform .2s ease;
}
.card:hover { border-color: var(--border-strong); transform: translateY(-3px); }
.card .ico {
  width: 46px; height: 46px; border-radius: 12px; margin-bottom: 16px;
  display: grid; place-items: center;
  background: rgba(254, 92, 1, 0.12); border: 1px solid rgba(254, 92, 1, 0.25);
}
.card .ico svg { width: 24px; height: 24px; stroke: var(--orange-2); fill: none; stroke-width: 1.9; }
.card h3 { font-size: 1.18rem; font-weight: 700; margin-bottom: 7px; }
.card p { color: var(--muted); font-size: 0.96rem; }

/* ---- Steps ---- */
.steps { display: grid; grid-template-columns: repeat(3, 1fr); gap: 28px; }
@media (max-width: 720px) { .steps { grid-template-columns: 1fr; } }
.step { text-align: center; }
.step .n { width: 44px; height: 44px; border-radius: 50%; margin: 0 auto 14px; display: grid; place-items: center; font-weight: 800; color: var(--orange); background: rgba(254,92,1,0.10); border: 1px solid rgba(254,92,1,0.3); }
.step h3 { font-size: 1.1rem; margin-bottom: 6px; }
.step p { color: var(--muted); font-size: 0.95rem; }

/* ---- CTA band ---- */
.cta {
  text-align: center; border-radius: 28px; padding: 64px 24px; margin: 24px 0 8px;
  background:
    radial-gradient(80% 120% at 50% 0%, rgba(254, 92, 1, 0.18), transparent 70%),
    linear-gradient(180deg, var(--surface), var(--surface-2));
  border: 1px solid var(--border-strong);
}
.cta h2 { font-size: clamp(1.8rem, 4vw, 2.6rem); font-weight: 800; letter-spacing: -0.02em; }
.cta p { color: var(--muted); margin: 12px auto 26px; max-width: 460px; }

/* ---- Footer ---- */
.footer { border-top: 1px solid var(--border); padding: 44px 0 60px; margin-top: 40px; }
.footer .container { display: flex; flex-wrap: wrap; gap: 24px; justify-content: space-between; align-items: center; }
.footer .brand { font-size: 1rem; }
.footer-links { display: flex; gap: 22px; flex-wrap: wrap; }
.footer-links a { color: var(--muted); font-size: 0.92rem; }
.footer-links a:hover { color: var(--text); text-decoration: none; }
.footer .copy { color: var(--muted-2); font-size: 0.85rem; width: 100%; }

/* ---- Legal / doc pages ---- */
.doc { padding: 56px 0 80px; }
.doc h1 { font-size: 2.2rem; font-weight: 800; letter-spacing: -0.02em; }
.doc .meta { color: var(--muted-2); font-size: 0.9rem; margin: 6px 0 30px; }
.doc h2 { font-size: 1.3rem; margin-top: 2em; padding-bottom: 6px; border-bottom: 1px solid var(--border); }
.doc h3 { font-size: 1.05rem; margin-top: 1.5em; color: #e8e8e8; }
.doc p, .doc li { color: #cfcfcf; }
.doc ul { padding-left: 1.3em; margin: 8px 0; }
.doc li { margin: 5px 0; }
.doc strong { color: var(--text); }
.ph { background: rgba(254, 92, 1, 0.16); color: var(--orange-2); border-radius: 5px; padding: 1px 6px; font-size: 0.95em; }
.callout { background: rgba(254, 92, 1, 0.08); border-left: 3px solid var(--orange); padding: 12px 16px; border-radius: 8px; margin: 1.2em 0; }
.faq { background: linear-gradient(180deg, var(--surface), var(--surface-2)); border: 1px solid var(--border); border-radius: 14px; padding: 20px 22px; margin: 14px 0; }
.faq h3 { margin: 0 0 6px; color: var(--text); }
.faq p { margin: 0; color: var(--muted); }
