/* Orbyts Group — public site.
   Deliberately plain and dependency-free: this is scaffolding for a design pass,
   not the design itself. One stylesheet, no build step, no external requests. */

:root {
  --bg: #ffffff;
  --bg-soft: #f7f6f8;
  --fg: #0e0d10;
  --fg-muted: #57545f;
  --fg-faint: #86838f;
  --line: #e6e4ea;
  --accent: #FF0090;
  --accent-ink: #ffffff;
  --maxw: 68rem;
}

@media (prefers-color-scheme: dark) {
  :root {
    --bg: #0e0d10;
    --bg-soft: #16151a;
    --fg: #f4f3f6;
    --fg-muted: #a9a6b2;
    --fg-faint: #7a7783;
    --line: #26242c;
  }
}

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

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

body {
  margin: 0;
  background: var(--bg);
  color: var(--fg);
  font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Helvetica, Arial, sans-serif;
  font-size: 17px;
  line-height: 1.65;
  -webkit-font-smoothing: antialiased;
}

.wrap { width: 100%; max-width: var(--maxw); margin: 0 auto; padding: 0 1.5rem; }

/* ── Header ─────────────────────────────────────────────────────────────── */

.site-head {
  border-bottom: 1px solid var(--line);
  position: sticky;
  top: 0;
  background: color-mix(in srgb, var(--bg) 88%, transparent);
  backdrop-filter: saturate(160%) blur(10px);
  z-index: 10;
}

.site-head .wrap {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  min-height: 4.25rem;
}

.brand {
  font-weight: 600;
  letter-spacing: 0.32em;
  font-size: 0.95rem;
  text-decoration: none;
  color: var(--fg);
  white-space: nowrap;
}
.brand span { color: var(--accent); }

.nav { display: flex; gap: 1.5rem; align-items: center; flex-wrap: wrap; }
.nav a {
  color: var(--fg-muted);
  text-decoration: none;
  font-size: 0.95rem;
}
.nav a:hover, .nav a:focus-visible { color: var(--fg); }

/* ── Type ───────────────────────────────────────────────────────────────── */

h1 { font-size: clamp(2rem, 5vw, 3rem); line-height: 1.15; letter-spacing: -0.02em; margin: 0 0 1rem; }
h2 { font-size: clamp(1.35rem, 3vw, 1.75rem); line-height: 1.25; letter-spacing: -0.01em; margin: 3rem 0 0.75rem; }
h3 { font-size: 1.05rem; margin: 2rem 0 0.5rem; }
p  { margin: 0 0 1rem; color: var(--fg-muted); }
a  { color: inherit; }

.lede { font-size: clamp(1.05rem, 2.2vw, 1.25rem); color: var(--fg-muted); max-width: 42rem; }

main { padding: 4rem 0 5rem; }
.prose { max-width: 46rem; }
.prose ul { color: var(--fg-muted); padding-left: 1.25rem; }
.prose li { margin: 0 0 0.4rem; }
.prose h2:first-of-type { margin-top: 2rem; }

.meta { color: var(--fg-faint); font-size: 0.9rem; }

/* ── Feature grid ───────────────────────────────────────────────────────── */

.grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(15rem, 1fr));
  gap: 1.25rem;
  margin: 2.5rem 0 0;
  padding: 0;
  list-style: none;
}

.card {
  border: 1px solid var(--line);
  border-radius: 14px;
  padding: 1.4rem;
  background: var(--bg-soft);
}
.card h3 { margin: 0 0 0.35rem; font-size: 1rem; }
.card p  { margin: 0; font-size: 0.95rem; }

/* ── Buttons ────────────────────────────────────────────────────────────── */

.actions { display: flex; gap: 0.75rem; flex-wrap: wrap; margin-top: 2rem; }

.btn {
  display: inline-block;
  padding: 0.7rem 1.3rem;
  border-radius: 9px;
  text-decoration: none;
  font-weight: 600;
  font-size: 0.98rem;
  border: 1px solid transparent;
}
.btn-primary { background: var(--accent); color: var(--accent-ink); }
.btn-secondary { border-color: var(--line); color: var(--fg); }
.btn:hover { filter: brightness(1.06); }

/* ── Definition rows (contact / company details) ────────────────────────── */

.rows { border-top: 1px solid var(--line); margin: 2rem 0 0; }
.row {
  display: grid;
  grid-template-columns: 12rem 1fr;
  gap: 1rem;
  padding: 0.9rem 0;
  border-bottom: 1px solid var(--line);
}
.row dt { color: var(--fg-faint); font-size: 0.92rem; }
.row dd { margin: 0; }

@media (max-width: 34rem) {
  .row { grid-template-columns: 1fr; gap: 0.15rem; }
}

/* ── Footer ─────────────────────────────────────────────────────────────── */

.site-foot {
  border-top: 1px solid var(--line);
  padding: 2.5rem 0 3.5rem;
  color: var(--fg-faint);
  font-size: 0.9rem;
}
.site-foot .wrap { display: flex; justify-content: space-between; gap: 1.5rem; flex-wrap: wrap; }
.site-foot a { color: var(--fg-muted); text-decoration: none; }
.site-foot a:hover { color: var(--fg); }
.foot-links { display: flex; gap: 1.25rem; flex-wrap: wrap; }

/* Anything wide scrolls in its own box rather than the page. */
.scroll-x { overflow-x: auto; }

/* Unfilled facts — company name, ABN, addresses, contact points.
   Deliberately loud: these must be replaced with real details before the site
   is announced or handed to anyone as evidence the business is real. Inventing
   a plausible-looking ABN would be worse than an obvious gap. */
.todo {
  background: #ffe9a8;
  color: #6b4c00;
  padding: 0.05em 0.35em;
  border-radius: 4px;
  font-size: 0.92em;
  white-space: nowrap;
}
@media (prefers-color-scheme: dark) {
  .todo { background: #4a3a05; color: #ffd96b; }
}
