/* orabeam.com — one stylesheet for the hub and every product page.
   Graphite base, one accent per product injected as --accent. */

:root {
  --bg: #0E1218;
  --surface: #161C26;
  --surface-2: #1D2531;
  --line: #2A3442;
  --text: #EAF0F7;
  --muted: #A9B5C4;
  --accent: #7AA2F7;
  --radius: 14px;
  --wrap: 1080px;
  --font: -apple-system, BlinkMacSystemFont, "Segoe UI", Inter, Roboto, "Helvetica Neue", Arial, sans-serif;
}

* { box-sizing: border-box; }

html { -webkit-text-size-adjust: 100%; }

body {
  margin: 0;
  background: var(--bg);
  color: var(--text);
  font-family: var(--font);
  font-size: 17px;
  line-height: 1.65;
}

img { max-width: 100%; height: auto; display: block; }

a { color: var(--accent); }
a:hover { color: #fff; }

code {
  font-family: ui-monospace, SFMono-Regular, "SF Mono", Menlo, Consolas, monospace;
  font-size: 0.88em;
  background: var(--surface-2);
  border: 1px solid var(--line);
  border-radius: 5px;
  padding: 1px 5px;
  color: var(--text);
}

.wrap { width: 100%; max-width: var(--wrap); margin: 0 auto; padding: 0 22px; }

.skip {
  position: absolute; left: -9999px; top: 0;
  background: var(--accent); color: #0E1218; padding: 10px 16px; z-index: 10;
}
.skip:focus { left: 0; }

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

/* ---------- top bar ---------- */

.topbar { border-bottom: 1px solid var(--line); background: rgba(14, 18, 24, 0.9); }
.topbar-in { display: flex; align-items: baseline; gap: 16px; flex-wrap: wrap; padding-top: 16px; padding-bottom: 16px; }
.brand { font-weight: 700; letter-spacing: 0.02em; text-decoration: none; color: var(--text); }
.brand:hover { color: var(--accent); }
.topbar-note { color: var(--muted); font-size: 15px; }

/* ---------- sections ---------- */

section { padding: 56px 0; border-top: 1px solid var(--line); }
section:first-of-type { border-top: 0; }

h1, h2, h3 { line-height: 1.2; margin: 0 0 14px; }
h1 { font-size: 40px; letter-spacing: -0.02em; }
h2 { font-size: 27px; letter-spacing: -0.01em; }
h3 { font-size: 19px; }

.eyebrow {
  text-transform: uppercase;
  letter-spacing: 0.14em;
  font-size: 12px;
  font-weight: 700;
  color: var(--accent);
  margin: 0 0 10px;
}

.lede { color: var(--muted); max-width: 68ch; }

/* ---------- hero ---------- */

.hero { padding: 52px 0 44px; }
.hero-grid { display: grid; grid-template-columns: 1.05fr 0.95fr; gap: 40px; align-items: center; }
.hero-icon { font-size: 34px; line-height: 1; margin-bottom: 12px; }
.hero-pain {
  font-size: 21px;
  line-height: 1.45;
  margin: 0 0 22px;
  padding-left: 18px;
  border-left: 3px solid var(--accent);
  color: var(--text);
}
.hero-cover { border: 1px solid var(--line); border-radius: var(--radius); overflow: hidden; background: var(--surface); }

.buybox { display: flex; align-items: center; gap: 18px; flex-wrap: wrap; margin-top: 8px; }
.price { font-size: 30px; font-weight: 700; }
.price-note { color: var(--muted); font-size: 15px; }

.btn {
  display: inline-block;
  background: var(--accent);
  color: #0E1218;
  font-weight: 700;
  font-size: 17px;
  text-decoration: none;
  padding: 14px 26px;
  border-radius: 10px;
  border: 0;
}
.btn:hover { color: #0E1218; filter: brightness(1.08); }
.btn-disabled {
  background: var(--surface-2);
  color: var(--muted);
  border: 1px solid var(--line);
  cursor: not-allowed;
}

.meta-row { color: var(--muted); font-size: 15px; margin-top: 16px; }
.meta-row span + span::before { content: "·"; margin: 0 9px; }

/* ---------- generic cards ---------- */

.card {
  background: var(--surface);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  padding: 22px;
}

.grid-2 { display: grid; grid-template-columns: repeat(2, 1fr); gap: 18px; }
.grid-3 { display: grid; grid-template-columns: repeat(3, 1fr); gap: 18px; }

.step-n {
  display: inline-flex; align-items: center; justify-content: center;
  width: 30px; height: 30px; border-radius: 50%;
  background: var(--accent); color: #0E1218; font-weight: 700; font-size: 15px;
  margin-bottom: 12px;
}

/* ---------- method ---------- */

.method-group { margin-top: 34px; }
.method-group > h3 { color: var(--muted); text-transform: uppercase; letter-spacing: 0.12em; font-size: 12px; }
.system { margin-top: 16px; }
.system-head { display: flex; gap: 12px; align-items: baseline; }
.system-icon { font-size: 22px; }
.system h4 { margin: 0 0 6px; font-size: 20px; }
.system p { margin: 0 0 14px; color: var(--muted); }

.db { border-top: 1px solid var(--line); margin-top: 16px; padding-top: 16px; }
.db-name { font-weight: 700; margin: 0 0 4px; }
.db-desc { color: var(--muted); margin: 0 0 12px; font-size: 15px; }

.sub { text-transform: uppercase; letter-spacing: 0.12em; font-size: 11px; color: var(--muted); margin: 14px 0 8px; font-weight: 700; }

.chips { display: flex; flex-wrap: wrap; gap: 7px; margin: 0; padding: 0; list-style: none; }
.chip {
  background: var(--surface-2);
  border: 1px solid var(--line);
  border-radius: 999px;
  padding: 4px 11px;
  font-size: 13px;
}
.chip b { font-weight: 600; }
.chip span { color: var(--muted); }

.views { list-style: none; margin: 0; padding: 0; }
.views li { padding: 9px 0; border-bottom: 1px dashed var(--line); font-size: 15px; }
.views li:last-child { border-bottom: 0; }
.view-name { font-weight: 700; }
.view-type { color: var(--muted); font-size: 13px; text-transform: uppercase; letter-spacing: 0.08em; margin-left: 8px; }
.view-rule { color: var(--muted); display: block; }

/* ---------- checklist ---------- */

.ticks { list-style: none; margin: 0; padding: 0; }
.ticks li { position: relative; padding: 8px 0 8px 30px; border-bottom: 1px solid var(--line); }
.ticks li:last-child { border-bottom: 0; }
.ticks li::before { content: "✓"; position: absolute; left: 0; top: 8px; color: var(--accent); font-weight: 700; }
.ticks small { display: block; color: var(--muted); }

.bullets { margin: 0; padding-left: 20px; }
.bullets li { margin-bottom: 8px; }

.qa { margin-top: 18px; }
.qa h3 { margin-bottom: 4px; }
.qa p { margin: 0 0 18px; color: var(--muted); }

.quote { margin: 0 0 12px; }
.quote p { margin: 0 0 8px; }
.quote cite { color: var(--muted); font-style: normal; font-size: 15px; }

/* ---------- final cta ---------- */

.cta-final { text-align: center; }
.cta-final .buybox { justify-content: center; }

/* ---------- hub ---------- */

.hub-hero { padding: 72px 0 40px; }
.hub-hero h1 { font-size: 46px; max-width: 20ch; }

.catalog { display: grid; grid-template-columns: repeat(3, 1fr); gap: 20px; }
.product-card {
  display: flex; flex-direction: column;
  background: var(--surface);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  overflow: hidden;
}
.product-card .shot { display: block; border-bottom: 1px solid var(--line); }
/* covers ship in a couple of aspect ratios; the grid needs one */
.product-card .shot img { aspect-ratio: 16 / 9; object-fit: cover; width: 100%; }
.product-card .body { padding: 18px; display: flex; flex-direction: column; gap: 10px; flex: 1; }
.product-card h2 { font-size: 20px; margin: 0; }
.product-card h2 a { color: var(--text); text-decoration: none; }
.product-card h2 a:hover { color: var(--card-accent, var(--accent)); }
.product-card p { margin: 0; color: var(--muted); font-size: 15px; }
.product-card .foot { margin-top: auto; display: flex; align-items: baseline; justify-content: space-between; gap: 12px; padding-top: 6px; }
.product-card .tag { font-weight: 700; color: var(--card-accent, var(--accent)); }
.product-card .go { font-weight: 600; text-decoration: none; color: var(--card-accent, var(--accent)); }

/* ---------- footer ---------- */

.footer { border-top: 1px solid var(--line); padding: 34px 0 60px; color: var(--muted); font-size: 15px; }
.footer-links { margin: 0 0 8px; }
.footer-links a + a::before { content: "·"; margin: 0 10px; color: var(--line); }
.footer-fine { margin: 0; }

@media (max-width: 900px) {
  .hero-grid { grid-template-columns: 1fr; gap: 26px; }
  .catalog { grid-template-columns: repeat(2, 1fr); }
  .grid-3 { grid-template-columns: 1fr; }
}

@media (max-width: 620px) {
  body { font-size: 16px; }
  h1 { font-size: 31px; }
  .hub-hero h1 { font-size: 34px; }
  h2 { font-size: 23px; }
  section { padding: 42px 0; }
  .catalog, .grid-2 { grid-template-columns: 1fr; }
  .btn { display: block; text-align: center; width: 100%; }
  .buybox { gap: 12px; }
}
