:root {
  color-scheme: dark;
  --bg: #000;
  --panel: #0d0d0d;
  --panel-alt: #141414;
  --ink: #fff;
  --muted: #b9b3a4;
  --brand: #ffc400;
  --brand-rgb: 255 196 0;
  --accent: #ffe066;
  --line: #1e1e1e;
  --soft-line: #292929;
  --cream: #e1dac2;
  --radius-sm: 8px;
  --radius-md: 14px;
  --radius-lg: 20px;
  --shadow: 0 24px 70px rgba(0, 0, 0, 0.62);
  --transition: 150ms cubic-bezier(.4, 0, .2, 1);
  font-family: Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
}

* {
  box-sizing: border-box;
}

html,
body {
  margin: 0;
  padding: 0;
  background: var(--bg);
  color: var(--ink);
  font-size: 16px;
  line-height: 1.58;
  letter-spacing: 0;
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
}

body::before {
  content: "";
  position: fixed;
  inset: 0;
  z-index: -2;
  background:
    radial-gradient(circle at 18% 12%, rgba(var(--brand-rgb), .18), transparent 28rem),
    radial-gradient(circle at 80% 24%, rgba(0, 180, 255, .10), transparent 24rem),
    linear-gradient(180deg, #050505 0%, #000 58%);
}

body::after {
  content: "";
  position: fixed;
  inset: 0;
  z-index: -1;
  pointer-events: none;
  background: repeating-linear-gradient(70deg, rgba(var(--brand-rgb), .035) 0 2px, transparent 2px 7px);
  opacity: .25;
}

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

a {
  color: var(--brand);
  text-decoration: none;
}

a:hover {
  color: var(--accent);
  text-decoration: underline;
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 50;
  border-bottom: 1px solid #191919;
  background: rgba(0, 0, 0, .88);
  backdrop-filter: saturate(1.5) blur(8px);
}

.nav {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  width: min(1100px, 92%);
  min-height: 80px;
  margin: 0 auto;
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  color: var(--cream);
  font-weight: 900;
  line-height: 1;
  text-decoration: none;
  text-transform: uppercase;
}

.brand-mark {
  width: 172px;
  height: 42px;
  border-radius: 0;
  background: url("/assets/wallaroo-logo.png") left center / contain no-repeat;
  color: transparent;
  overflow: hidden;
  text-indent: -999px;
}

.brand img {
  width: 230px;
  height: 56px;
  object-fit: contain;
}

.brand span:last-child:not(.brand-mark) {
  color: var(--cream);
  font-size: .82rem;
  letter-spacing: .18em;
}

.nav-links {
  display: flex;
  align-items: center;
  gap: 8px;
  margin: 0;
  padding: 0;
  list-style: none;
}

.nav-links a {
  display: inline-flex;
  align-items: center;
  min-height: 38px;
  padding: 0 13px;
  border-radius: 999px;
  color: var(--ink);
  font-weight: 700;
  text-decoration: none;
}

.nav-links a:hover,
.nav-links a[aria-current="page"] {
  background: #161616;
  color: var(--brand);
}

.nav-links .nav-cta {
  border: 1px solid var(--brand);
  background: var(--brand);
  color: #000;
}

.nav-links .nav-cta:hover {
  background: var(--accent);
  color: #000;
}

.hero {
  position: relative;
  overflow: hidden;
  border-bottom: 1px solid var(--line);
}

.hero-inner {
  display: grid;
  grid-template-columns: minmax(0, .92fr) minmax(360px, 1.08fr);
  gap: 44px;
  align-items: center;
  width: min(1100px, 92%);
  min-height: min(780px, calc(100vh - 80px));
  margin: 0 auto;
  padding: 78px 0 64px;
}

.eyebrow {
  margin: 0 0 12px;
  color: var(--brand);
  font-size: .82rem;
  font-weight: 900;
  letter-spacing: .16em;
  text-transform: uppercase;
}

h1,
h2,
h3 {
  margin: 0;
  color: var(--cream);
  font-family: "Bebas Neue", Impact, Haettenschweiler, "Arial Narrow Bold", sans-serif;
  font-weight: 800;
  line-height: 1.05;
  letter-spacing: .035em;
}

h1 {
  max-width: 780px;
  font-size: clamp(2.65rem, 6vw, 5.7rem);
}

h2 {
  font-size: clamp(2rem, 4.2vw, 3.45rem);
}

h3 {
  font-size: 1.55rem;
}

.lead {
  max-width: 680px;
  margin: 22px 0 0;
  color: var(--muted);
  font-size: clamp(1.06rem, 2vw, 1.24rem);
}

.hero-actions,
.button-row {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-top: 30px;
}

.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 46px;
  padding: 0 20px;
  border: 1px solid var(--brand);
  border-radius: 999px;
  background: var(--brand);
  color: #000;
  font-weight: 800;
  text-decoration: none;
  transition: transform var(--transition), background var(--transition), border-color var(--transition);
}

.button:hover {
  background: var(--accent);
  border-color: var(--accent);
  color: #000;
  text-decoration: none;
}

.button:active {
  transform: translateY(1px);
}

.button.secondary {
  border-color: var(--brand);
  background: transparent;
  color: var(--brand);
}

.button.secondary:hover {
  background: rgba(var(--brand-rgb), .12);
  color: var(--accent);
}

.hero-media {
  display: grid;
  grid-template-columns: .76fr .92fr;
  gap: 16px;
  align-items: center;
}

.hero-media img,
.product-shot img,
.showcase-card img {
  width: 100%;
  object-fit: cover;
}

.hero-media img {
  border: 1px solid var(--soft-line);
  border-radius: var(--radius-md);
  box-shadow: var(--shadow);
}

.hero-media .hero-tall {
  aspect-ratio: 9 / 16;
}

.hero-media .hero-wide {
  aspect-ratio: 4 / 5;
}

.proof-strip {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1px;
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
  background: var(--line);
}

.proof-item {
  padding: 26px 30px;
  background: linear-gradient(180deg, var(--panel), var(--panel-alt));
}

.proof-item strong {
  display: block;
  color: var(--cream);
  font-size: 1.04rem;
}

.proof-item span {
  display: block;
  margin-top: 4px;
  color: var(--muted);
}

.section {
  width: min(1100px, 92%);
  margin: 0 auto;
  padding: 86px 0;
}

.section.compact {
  padding: 48px 0 86px;
}

.section-heading {
  display: grid;
  grid-template-columns: minmax(0, .8fr) minmax(280px, .72fr);
  gap: 42px;
  align-items: end;
  margin-bottom: 34px;
}

.section-heading p {
  margin: 0;
  color: var(--muted);
}

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

.grid.two {
  grid-template-columns: repeat(2, 1fr);
}

.card,
.showcase-card {
  min-height: 100%;
  padding: 24px;
  border: 1px solid var(--line);
  border-radius: var(--radius-md);
  background: linear-gradient(180deg, var(--panel), var(--panel-alt));
  box-shadow: 0 4px 24px rgba(0, 0, 0, .35);
}

.card h3,
.showcase-card h3 {
  margin-bottom: 10px;
}

.card p,
.card li,
.showcase-card p {
  color: var(--muted);
}

.card p:last-child,
.showcase-card p:last-child {
  margin-bottom: 0;
}

.showcase-card {
  overflow: hidden;
  padding: 0;
}

.showcase-card img {
  height: 390px;
  border-bottom: 1px solid var(--line);
}

.showcase-card.landscape img {
  height: 260px;
}

.showcase-card .showcase-copy {
  padding: 22px;
}

.status-badge {
  display: inline-flex;
  align-items: center;
  min-height: 24px;
  margin-left: 8px;
  padding: 0 9px;
  border: 1px solid rgba(var(--brand-rgb), .42);
  border-radius: 999px;
  background: rgba(var(--brand-rgb), .1);
  color: var(--brand);
  font-family: Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  font-size: .68rem;
  font-weight: 900;
  letter-spacing: .08em;
  text-transform: uppercase;
  vertical-align: middle;
}

.feature-band {
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
  background: #050505;
}

.feature-band .section {
  display: grid;
  grid-template-columns: minmax(0, .82fr) minmax(300px, .58fr);
  gap: 48px;
  align-items: center;
}

.feature-band p {
  color: var(--muted);
}

.tag-list {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin: 28px 0 0;
  padding: 0;
  list-style: none;
}

.tag-list li {
  padding: 7px 11px;
  border: 1px solid rgba(var(--brand-rgb), .35);
  border-radius: 999px;
  color: var(--cream);
  background: rgba(var(--brand-rgb), .08);
  font-size: .9rem;
}

.page-hero {
  border-bottom: 1px solid var(--line);
  background:
    radial-gradient(circle at 14% 0%, rgba(var(--brand-rgb), .18), transparent 24rem),
    #050505;
}

.page-hero .section {
  padding: 76px 0 64px;
}

.content {
  max-width: 840px;
}

.content h2 {
  margin-top: 42px;
  font-size: clamp(1.7rem, 3vw, 2.45rem);
}

.content h3 {
  margin-top: 30px;
}

.content p,
.content li {
  color: var(--muted);
}

.content ul {
  padding-left: 1.25rem;
}

.notice {
  margin: 28px 0;
  padding: 18px 20px;
  border-left: 4px solid var(--brand);
  border-radius: var(--radius-md);
  background: rgba(var(--brand-rgb), .09);
  color: var(--cream);
}

.product-layout {
  display: grid;
  grid-template-columns: minmax(0, .75fr) minmax(320px, .55fr);
  gap: 26px;
  align-items: start;
}

.product-shot {
  overflow: hidden;
  border: 1px solid var(--line);
  border-radius: var(--radius-md);
  background: var(--panel);
}

.product-shot img {
  aspect-ratio: 16 / 9;
}

.meta-list {
  display: grid;
  gap: 12px;
  margin: 0;
  padding: 0;
  list-style: none;
}

.meta-list li {
  padding-bottom: 12px;
  border-bottom: 1px solid var(--line);
  color: var(--muted);
}

.meta-list strong {
  display: block;
  color: var(--cream);
}

.site-footer {
  border-top: 1px solid #141414;
  background: #000;
}

.footer-inner {
  display: grid;
  grid-template-columns: 1fr auto;
  gap: 28px;
  align-items: center;
  width: min(1100px, 92%);
  margin: 0 auto;
  padding: 34px 0;
}

.footer-links {
  display: flex;
  flex-wrap: wrap;
  gap: 16px;
}

.footer-links a {
  color: var(--muted);
  font-weight: 700;
  text-decoration: none;
}

.footer-links a:hover {
  color: var(--brand);
}

.small {
  color: var(--muted);
  font-size: .94rem;
}

button:focus-visible,
.button:focus-visible,
a:focus-visible {
  outline: 2px solid var(--brand);
  outline-offset: 2px;
}

@media (max-width: 900px) {
  .nav {
    align-items: flex-start;
    flex-direction: column;
    gap: 14px;
    padding: 16px 0;
  }

  .nav-links {
    width: 100%;
    gap: 8px;
    overflow-x: auto;
    padding-bottom: 4px;
  }

  .nav-links a {
    white-space: nowrap;
  }

  .hero-inner,
  .section-heading,
  .feature-band .section,
  .product-layout,
  .footer-inner {
    grid-template-columns: 1fr;
  }

  .hero-inner {
    min-height: auto;
    padding-top: 54px;
  }

  .proof-strip,
  .grid,
  .grid.two,
  .showcase-grid {
    grid-template-columns: 1fr;
  }

  .showcase-card img,
  .showcase-card.landscape img {
    height: auto;
    max-height: none;
    aspect-ratio: 16 / 11;
  }

  .section {
    padding: 62px 0;
  }
}

@media (max-width: 560px) {
  .brand-mark {
    width: 142px;
    height: 36px;
  }

  .brand span:last-child:not(.brand-mark) {
    font-size: .72rem;
  }

  .hero-media {
    grid-template-columns: 1fr;
  }

  .hero-media .hero-wide {
    display: none;
  }

  .proof-item,
  .card {
    padding: 20px;
  }
}

@media (prefers-reduced-motion: reduce) {
  * {
    animation: none !important;
    transition: none !important;
  }
}
