:root {
  color-scheme: dark;
  --bg: #050606;
  --panel: #111414;
  --panel-2: #181c1c;
  --line: rgba(255, 255, 255, 0.14);
  --muted: #a9b0ad;
  --text: #f5f7f4;
  --soft: #d9ded8;
  --accent: #b7ff2a;
  --accent-dark: #7fcf12;
  --max: 1180px;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  background: var(--bg);
  color: var(--text);
  font-family: Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", Arial, sans-serif;
  line-height: 1.5;
}

a {
  color: inherit;
  text-decoration: none;
}

.site-header {
  align-items: center;
  backdrop-filter: blur(18px);
  background: rgba(5, 6, 6, 0.72);
  border-bottom: 1px solid var(--line);
  display: flex;
  height: 72px;
  justify-content: space-between;
  left: 0;
  padding: 0 clamp(20px, 4vw, 56px);
  position: fixed;
  right: 0;
  top: 0;
  z-index: 20;
}

.brand {
  align-items: center;
  display: inline-flex;
  font-weight: 900;
  gap: 12px;
  letter-spacing: 0;
  text-transform: uppercase;
}

.brand-mark {
  align-items: center;
  aspect-ratio: 1;
  background: var(--accent);
  color: #050606;
  display: inline-flex;
  font-size: 0.78rem;
  font-weight: 900;
  justify-content: center;
  width: 36px;
}

.header-actions {
  align-items: center;
  display: flex;
  gap: 24px;
  font-size: 0.9rem;
  font-weight: 700;
}

.nav-cta {
  border: 1px solid var(--accent);
  color: var(--accent);
  padding: 10px 16px;
}

.hero {
  min-height: 92vh;
  overflow: hidden;
  padding: 128px clamp(20px, 5vw, 72px) 76px;
  position: relative;
}

.hero-media,
.hero-overlay {
  inset: 0;
  position: absolute;
}

.hero-media {
  background-image: url("assets/runlift-hero.png");
  background-position: center right;
  background-size: cover;
  filter: saturate(0.95) contrast(1.08);
  transform: scale(1.01);
}

.hero-overlay {
  background:
    linear-gradient(90deg, rgba(5, 6, 6, 0.98) 0%, rgba(5, 6, 6, 0.84) 33%, rgba(5, 6, 6, 0.34) 68%, rgba(5, 6, 6, 0.45) 100%),
    linear-gradient(180deg, rgba(5, 6, 6, 0.18) 0%, rgba(5, 6, 6, 0.72) 100%);
}

.hero-inner {
  max-width: 760px;
  position: relative;
  z-index: 1;
}

.eyebrow {
  color: var(--accent);
  font-size: 0.82rem;
  font-weight: 900;
  margin: 0 0 18px;
  text-transform: uppercase;
}

h1,
h2,
h3,
p {
  margin-top: 0;
}

h1 {
  font-size: clamp(4.2rem, 12vw, 10.5rem);
  font-weight: 900;
  letter-spacing: 0;
  line-height: 0.82;
  margin-bottom: 28px;
  max-width: 780px;
}

.positioning {
  color: var(--soft);
  font-size: clamp(1.24rem, 2.8vw, 2.15rem);
  font-weight: 700;
  line-height: 1.14;
  max-width: 680px;
}

.sale-panel {
  background: rgba(17, 20, 20, 0.78);
  border: 1px solid var(--line);
  display: grid;
  gap: 1px;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  margin: 36px 0;
  max-width: 700px;
}

.sale-panel > div {
  background: rgba(5, 6, 6, 0.38);
  padding: 18px;
}

.panel-label {
  color: var(--muted);
  display: block;
  font-size: 0.76rem;
  font-weight: 800;
  margin-bottom: 7px;
  text-transform: uppercase;
}

.sale-panel strong {
  font-size: clamp(1.05rem, 2vw, 1.5rem);
  line-height: 1.1;
}

.hero-actions,
.offer-band {
  align-items: center;
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
}

.button {
  align-items: center;
  border: 1px solid transparent;
  cursor: pointer;
  display: inline-flex;
  font-family: inherit;
  font-size: 0.95rem;
  font-weight: 900;
  justify-content: center;
  min-height: 52px;
  padding: 15px 20px;
  text-align: center;
  transition: transform 180ms ease, border-color 180ms ease, background 180ms ease;
}

.button:hover,
.button:focus-visible {
  transform: translateY(-2px);
}

.button-primary {
  background: var(--accent);
  color: #050606;
}

.button-primary:hover,
.button-primary:focus-visible {
  background: #d0ff64;
}

.button-secondary {
  background: rgba(255, 255, 255, 0.04);
  border-color: var(--line);
  color: var(--text);
}

.button-secondary:hover,
.button-secondary:focus-visible {
  border-color: rgba(183, 255, 42, 0.62);
}

.scroll-cue {
  bottom: 26px;
  left: clamp(20px, 5vw, 72px);
  position: absolute;
  z-index: 1;
}

.scroll-cue span {
  background: var(--accent);
  display: block;
  height: 2px;
  width: 90px;
}

.intro-band,
.section,
.split-section,
.offer-band,
.enquiry-section,
.site-footer {
  margin: 0 auto;
  max-width: var(--max);
  padding-left: clamp(20px, 4vw, 40px);
  padding-right: clamp(20px, 4vw, 40px);
}

.intro-band {
  align-items: stretch;
  border-bottom: 1px solid var(--line);
  border-top: 1px solid var(--line);
  display: grid;
  gap: 28px;
  grid-template-columns: 1fr 1.45fr;
  padding-bottom: 46px;
  padding-top: 46px;
}

.intro-copy p {
  font-size: clamp(1.28rem, 2.2vw, 1.85rem);
  font-weight: 800;
  line-height: 1.18;
  margin-bottom: 0;
}

.quick-stats {
  display: grid;
  gap: 14px;
  grid-template-columns: repeat(3, 1fr);
  margin: 0;
}

.quick-stats div {
  background: var(--panel);
  border: 1px solid var(--line);
  padding: 20px;
}

.quick-stats dt {
  color: var(--text);
  font-size: 1.25rem;
  font-weight: 900;
  margin-bottom: 8px;
}

.quick-stats dd {
  color: var(--muted);
  margin: 0;
}

.section {
  padding-bottom: 88px;
  padding-top: 92px;
}

.section-heading {
  display: grid;
  gap: 28px;
  grid-template-columns: 0.65fr 1.35fr;
  margin-bottom: 38px;
}

.section-heading h2,
.market-copy h2,
.offer-band h2,
.enquiry-copy h2 {
  font-size: clamp(2.2rem, 5vw, 4.9rem);
  font-weight: 900;
  letter-spacing: 0;
  line-height: 0.96;
  margin-bottom: 0;
}

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

.reason-card,
.use-grid article {
  background: var(--panel);
  border: 1px solid var(--line);
  min-height: 260px;
  padding: 26px;
}

.card-number {
  color: var(--accent);
  display: block;
  font-size: 0.85rem;
  font-weight: 900;
  margin-bottom: 70px;
}

.reason-card h3,
.use-grid h3 {
  font-size: 1.45rem;
  font-weight: 900;
  margin-bottom: 12px;
}

.reason-card p,
.use-grid p,
.market-copy p,
.offer-band p,
.enquiry-copy p {
  color: var(--muted);
  margin-bottom: 0;
}

.split-section {
  align-items: center;
  display: grid;
  gap: 46px;
  grid-template-columns: minmax(0, 1fr) minmax(320px, 0.85fr);
  padding-bottom: 90px;
}

.market-copy p {
  font-size: 1.06rem;
  margin-top: 22px;
  max-width: 620px;
}

.signal-board {
  background:
    linear-gradient(135deg, rgba(183, 255, 42, 0.09), rgba(255, 255, 255, 0.02)),
    var(--panel);
  border: 1px solid rgba(183, 255, 42, 0.24);
  padding: 12px;
}

.signal-row {
  align-items: center;
  border-bottom: 1px solid var(--line);
  display: flex;
  gap: 16px;
  justify-content: space-between;
  padding: 21px 18px;
}

.signal-row:last-child {
  border-bottom: 0;
}

.signal-row span {
  color: var(--soft);
  font-weight: 800;
}

.signal-row strong {
  color: var(--accent);
  font-size: 0.82rem;
  text-transform: uppercase;
}

.use-cases {
  border-top: 1px solid var(--line);
}

.use-grid article {
  min-height: 190px;
}

.offer-band {
  background: var(--text);
  color: #050606;
  justify-content: space-between;
  max-width: none;
  padding-bottom: 44px;
  padding-top: 44px;
}

.offer-band > * {
  max-width: var(--max);
}

.offer-band .eyebrow {
  color: #314300;
  margin-bottom: 8px;
}

.offer-band h2 {
  color: #050606;
  font-size: clamp(2.4rem, 5vw, 5.2rem);
}

.offer-band p {
  color: #2b302d;
  font-weight: 700;
  max-width: 460px;
}

.offer-band .button-primary {
  background: #050606;
  color: var(--text);
}

.enquiry-section {
  align-items: start;
  display: grid;
  gap: 54px;
  grid-template-columns: 0.9fr 1.1fr;
  padding-bottom: 100px;
  padding-top: 96px;
}

.enquiry-copy p {
  margin-top: 22px;
}

.contact-note {
  border-left: 4px solid var(--accent);
  margin-top: 30px;
  padding-left: 18px;
}

.contact-note span {
  color: var(--muted);
  display: block;
  font-size: 0.8rem;
  font-weight: 800;
  text-transform: uppercase;
}

.contact-note strong {
  display: block;
  font-size: 1.32rem;
  margin-top: 4px;
}

.enquiry-form {
  background: var(--panel);
  border: 1px solid var(--line);
  display: grid;
  gap: 18px;
  padding: clamp(22px, 4vw, 34px);
}

label {
  color: var(--soft);
  display: grid;
  font-size: 0.9rem;
  font-weight: 800;
  gap: 8px;
}

input,
textarea {
  background: #090b0b;
  border: 1px solid rgba(255, 255, 255, 0.18);
  color: var(--text);
  font: inherit;
  min-height: 52px;
  padding: 14px 15px;
  resize: vertical;
}

input:focus,
textarea:focus {
  border-color: var(--accent);
  outline: 2px solid rgba(183, 255, 42, 0.16);
}

.form-button {
  width: 100%;
}

.form-status {
  color: var(--accent);
  font-size: 0.92rem;
  font-weight: 800;
  min-height: 1.4em;
}

.honeypot {
  display: none;
}

.site-footer {
  align-items: center;
  border-top: 1px solid var(--line);
  color: var(--muted);
  display: flex;
  justify-content: space-between;
  padding-bottom: 30px;
  padding-top: 30px;
}

.site-footer p {
  margin-bottom: 0;
}

.site-footer p:first-child {
  color: var(--text);
  font-weight: 900;
  text-transform: uppercase;
}

@media (max-width: 900px) {
  .header-actions a:not(.nav-cta) {
    display: none;
  }

  .hero {
    min-height: 86vh;
  }

  .hero-overlay {
    background:
      linear-gradient(180deg, rgba(5, 6, 6, 0.7) 0%, rgba(5, 6, 6, 0.94) 70%),
      linear-gradient(90deg, rgba(5, 6, 6, 0.84), rgba(5, 6, 6, 0.42));
  }

  .sale-panel,
  .intro-band,
  .section-heading,
  .split-section,
  .enquiry-section {
    grid-template-columns: 1fr;
  }

  .quick-stats,
  .reason-grid,
  .use-grid {
    grid-template-columns: 1fr;
  }

  .reason-card,
  .use-grid article {
    min-height: auto;
  }

  .card-number {
    margin-bottom: 38px;
  }
}

@media (max-width: 560px) {
  .site-header {
    height: 66px;
  }

  .brand span:last-child {
    display: none;
  }

  .nav-cta {
    padding: 9px 12px;
  }

  .hero {
    padding-top: 110px;
  }

  h1 {
    font-size: clamp(3.6rem, 21vw, 5.2rem);
  }

  .button {
    width: 100%;
  }

  .offer-band {
    align-items: stretch;
  }

  .site-footer {
    align-items: flex-start;
    flex-direction: column;
    gap: 8px;
  }
}
