:root {
  --black: #090b0d;
  --ink: #111417;
  --ink-soft: #171c20;
  --lime: #b7f000;
  --lime-deep: #7fc800;
  --forest: #123e33;
  --eucalyptus: #dfece4;
  --off-white: #fafbf5;
  --white: #ffffff;
  --muted: #637068;
  --line: #dfe5dc;
  --radius-sm: 10px;
  --radius: 18px;
  --radius-lg: 28px;
  --shadow: 0 24px 70px rgba(8, 10, 12, 0.16);
  --shell: 1180px;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  background: var(--off-white);
  color: var(--ink);
  font-family: Outfit, Inter, ui-sans-serif, system-ui, -apple-system, sans-serif;
  -webkit-font-smoothing: antialiased;
}

button,
input,
textarea {
  font: inherit;
}

a {
  color: inherit;
}

button,
input,
textarea {
  border-radius: 0;
}

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

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

h1,
h2,
h3,
.logo,
.eyebrow,
.button {
  font-family: Outfit, Inter, ui-sans-serif, system-ui, sans-serif;
}

h1,
h2,
h3 {
  text-wrap: balance;
}

h2 {
  margin-bottom: 18px;
  font-size: clamp(1.9rem, 3.4vw, 2.75rem);
  line-height: 1.12;
  letter-spacing: -0.035em;
  font-weight: 700;
}

h3 {
  margin-bottom: 10px;
  font-size: 1.25rem;
  line-height: 1.22;
  letter-spacing: -0.02em;
  font-weight: 700;
}

p {
  line-height: 1.75;
}

.shell {
  width: min(calc(100% - 40px), var(--shell));
  margin-inline: auto;
}

.skip-link {
  position: fixed;
  z-index: 100;
  top: 12px;
  left: 12px;
  padding: 12px 16px;
  transform: translateY(-160%);
  border-radius: 6px;
  background: var(--lime);
  color: var(--ink);
  font-weight: 800;
}

.skip-link:focus {
  transform: translateY(0);
}

.topbar {
  padding: 10px 20px;
  border-bottom: 1px solid rgba(183, 240, 0, 0.2);
  background: var(--black);
  color: #aeb9b2;
  font-size: 0.78rem;
  letter-spacing: 0.02em;
  text-align: center;
}

.site-header {
  position: relative;
  z-index: 20;
  border-bottom: 1px solid rgba(255, 255, 255, 0.08);
  background: #111417;
}

.nav-wrap {
  display: flex;
  min-height: 69px;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
}

.logo {
  color: var(--white);
  font-size: 1.38rem;
  font-weight: 800;
  letter-spacing: -0.02em;
  text-decoration: none;
}

.logo span {
  color: var(--lime);
}

nav {
  display: flex;
  align-items: center;
  gap: 26px;
}

nav a {
  color: #b9c4bd;
  font-size: 0.94rem;
  text-decoration: none;
}

nav a:hover {
  color: var(--white);
}

nav .nav-cta {
  color: var(--lime);
  font-weight: 600;
}

.hero {
  position: relative;
  overflow: hidden;
  padding: clamp(48px, 7vw, 88px) 0;
  background: var(--black);
  color: var(--white);
}

.hero-grid {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: clamp(34px, 5vw, 64px);
  align-items: center;
}

.eyebrow {
  margin-bottom: 14px;
  color: #6ea900;
  font-size: 0.72rem;
  font-weight: 800;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.eyebrow-light {
  color: var(--lime);
}

.hero h1 {
  max-width: 720px;
  margin-bottom: 22px;
  font-size: clamp(2.25rem, 4.6vw, 3.75rem);
  font-weight: 700;
  line-height: 1.06;
  letter-spacing: -0.045em;
}

.hero h1 span {
  color: var(--lime);
}

.hero-lede {
  max-width: 46ch;
  margin-bottom: 30px;
  color: rgba(255, 255, 255, 0.78);
  font-size: 1.08rem;
  line-height: 1.8;
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 22px;
}

.button {
  display: inline-flex;
  min-height: 52px;
  align-items: center;
  justify-content: center;
  gap: 12px;
  border: 0;
  border-radius: 7px;
  padding: 14px 22px;
  cursor: pointer;
  font-size: 0.92rem;
  font-weight: 700;
  letter-spacing: 0.02em;
  line-height: 1.2;
  text-align: center;
  text-decoration: none;
  text-transform: uppercase;
  transition:
    transform 160ms ease,
    background 160ms ease,
    color 160ms ease;
}

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

.button:focus-visible,
a:focus-visible,
button:focus-visible,
summary:focus-visible,
input:focus-visible,
textarea:focus-visible {
  outline: 3px solid rgba(183, 240, 0, 0.68);
  outline-offset: 3px;
}

.button-primary {
  background: var(--lime);
  color: var(--ink);
}

.button-primary:hover {
  background: #c9ff21;
}

.button-dark {
  background: var(--ink);
  color: var(--lime);
}

.button-dark:hover {
  background: var(--black);
}

.text-link {
  border-bottom: 1px solid rgba(183, 240, 0, 0.42);
  color: var(--lime);
  font-size: 1rem;
  font-weight: 500;
  text-decoration: none;
}

.hero-note {
  max-width: 44ch;
  margin: 20px 0 0;
  color: rgba(255, 255, 255, 0.6);
  font-size: 0.92rem;
  line-height: 1.7;
}

.video-card {
  width: 100%;
  min-width: 0;
  overflow: hidden;
  border: 1px solid rgba(183, 240, 0, 0.24);
  border-radius: 26px;
  padding: clamp(18px, 2.5vw, 26px);
  background: var(--ink);
}

.video-placeholder {
  display: flex;
  width: 100%;
  max-width: 100%;
  min-width: 0;
  aspect-ratio: 16 / 9;
  overflow: hidden;
  align-items: center;
  justify-content: center;
  flex-direction: column;
  gap: 14px;
  border: 1px solid rgba(255, 255, 255, 0.09);
  border-radius: 15px;
  padding: clamp(16px, 3vw, 24px);
  background: #0d1013;
  text-align: center;
}

.video-placeholder strong {
  max-width: 25ch;
  color: var(--white);
  font-size: 1.06rem;
  letter-spacing: -0.01em;
  line-height: 1.35;
}

.video-placeholder small {
  color: rgba(255, 255, 255, 0.45);
  font-size: 0.8rem;
}

.play-button {
  display: grid;
  width: 66px;
  height: 66px;
  flex: 0 0 auto;
  place-items: center;
  border-radius: 50%;
  background: var(--lime);
}

.play-button span {
  width: 0;
  height: 0;
  margin-left: 5px;
  border-top: 11px solid transparent;
  border-bottom: 11px solid transparent;
  border-left: 18px solid var(--ink);
}

.video-card > p {
  margin: 20px 0 0;
  color: #c7d1cb;
  font-size: 1rem;
  line-height: 1.7;
}

.video-credit {
  display: block;
  margin-top: 8px;
  color: rgba(255, 255, 255, 0.5);
  font-size: 0.8rem;
}

.section {
  padding: clamp(56px, 7vw, 85px) 0;
}

.section-white {
  background: var(--white);
}

.section-soft {
  background: var(--off-white);
}

.section-heading {
  display: grid;
  grid-template-columns: minmax(0, 1.1fr) minmax(280px, 0.62fr);
  gap: 40px;
  align-items: end;
  margin-bottom: 44px;
}

.section-heading:has(> h2:only-child) {
  display: block;
}

.section-heading:has(> h2:only-child) h2 {
  max-width: 22ch;
}

.section-heading h2,
.section-heading p {
  margin-bottom: 0;
}

.section-heading p,
.sticky-copy > p,
.offer-heading > p {
  color: var(--muted);
  font-size: 1.02rem;
}

.card-grid {
  display: grid;
  gap: 18px;
}

.card-grid.three {
  grid-template-columns: repeat(3, 1fr);
}

.info-card {
  position: relative;
  min-height: 0;
  overflow: hidden;
  border: 1px solid var(--line);
  border-radius: 15px;
  padding: 26px;
  background: var(--off-white);
}

.info-card::after {
  content: none;
}

.card-mark {
  display: none;
}

.info-card p {
  margin-bottom: 0;
  color: var(--muted);
  font-size: 0.93rem;
}

.split-grid {
  display: grid;
  grid-template-columns: minmax(280px, 0.75fr) minmax(0, 1.15fr);
  gap: clamp(46px, 8vw, 110px);
}

.sticky-copy {
  align-self: start;
}

.sticky-copy .button {
  margin-top: 14px;
}

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

.check-list li {
  display: flex;
  gap: 14px;
  align-items: flex-start;
  border: 1px solid var(--line);
  border-radius: var(--radius-sm);
  padding: 17px 18px;
  background: var(--white);
  line-height: 1.55;
}

.check-list span {
  display: grid;
  width: 22px;
  height: 22px;
  flex: 0 0 auto;
  place-items: center;
  border: 1px solid var(--lime-deep);
  border-radius: 50%;
  color: var(--lime-deep);
  font-size: 0.72rem;
  font-weight: 900;
}

.steps {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
  margin: 0;
  padding: 0;
  counter-reset: none;
  list-style: none;
}

.steps li {
  border: 1px solid var(--line);
  border-radius: 15px;
  padding: 28px;
  background: var(--off-white);
}

.steps li > span {
  display: inline-block;
  margin-bottom: 16px;
  color: var(--lime-deep);
  font-family: Outfit, Inter, ui-sans-serif, system-ui, sans-serif;
  font-size: 2.5rem;
  font-weight: 700;
  letter-spacing: -0.045em;
  line-height: 1;
}

.steps p {
  margin-bottom: 0;
  color: var(--muted);
  font-size: 0.94rem;
}

.note-section {
  background: var(--ink);
  color: var(--white);
}

.note-grid {
  display: grid;
  max-width: 900px;
  grid-template-columns: 1fr;
  gap: 14px;
}

.note-grid blockquote {
  margin: 0;
  border-left: 3px solid var(--lime);
  border-radius: 0 var(--radius) var(--radius) 0;
  padding: 32px;
  background: rgba(255, 255, 255, 0.055);
  color: #ced8d2;
}

.note-grid blockquote > p {
  font-size: 1.06rem;
}

.note-grid blockquote footer {
  display: flex;
  gap: 13px;
  align-items: center;
  margin-top: 24px;
}

.note-grid blockquote footer > span {
  display: grid;
  width: 46px;
  height: 46px;
  place-items: center;
  border-radius: 50%;
  background: var(--lime);
  color: var(--ink);
  font-size: 0.82rem;
  font-weight: 900;
}

.note-grid blockquote strong,
.note-grid blockquote small {
  display: block;
}

.note-grid blockquote small {
  margin-top: 3px;
  color: #829089;
}

.offer-heading {
  max-width: 920px;
}

.offer-heading h2 {
  max-width: 26ch;
}

.offer-heading p {
  max-width: 60ch;
}

.offer-cards {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 22px;
  align-items: start;
  margin-top: 40px;
}

.offer-card {
  border-radius: 20px;
  padding: clamp(24px, 3vw, 34px);
}

.offer-card-light {
  border: 1px solid var(--line);
  background: var(--white);
  color: var(--ink);
}

.offer-card-dark {
  border: 1px solid rgba(183, 240, 0, 0.3);
  background: var(--ink);
  color: var(--white);
}

.offer-title h3 {
  margin-bottom: 14px;
  font-size: 1.38rem;
}

.offer-title strong {
  display: block;
  color: var(--ink);
  font-size: 2.1rem;
  letter-spacing: -0.04em;
  line-height: 1.1;
}

.offer-card-dark .offer-title strong {
  color: var(--lime);
}

.offer-card > p {
  margin-top: 10px;
  color: #a6b2ab;
  font-size: 0.88rem;
}

.offer-card ul {
  display: grid;
  gap: 11px;
  margin: 24px 0 30px;
  padding: 0;
  list-style: none;
}

.offer-card li {
  display: flex;
  gap: 10px;
  color: var(--ink);
  line-height: 1.55;
}

.offer-card-dark li {
  color: #d4ddd8;
}

.offer-card li::before {
  color: var(--lime-deep);
  content: "+";
  font-weight: 900;
}

.offer-card-dark li::before {
  color: var(--lime);
}

.form-section {
  background:
    radial-gradient(circle at 15% 20%, rgba(183, 240, 0, 0.08), transparent 24rem),
    var(--forest);
  color: var(--white);
}

.form-grid {
  display: grid;
  grid-template-columns: 0.68fr 1fr;
  gap: clamp(46px, 8vw, 100px);
  align-items: start;
}

.form-intro {
  padding-top: 14px;
}

.form-intro > p:not(.eyebrow) {
  color: var(--eucalyptus);
  font-size: 1.04rem;
}

.reply-note {
  display: flex;
  gap: 14px;
  margin-top: 32px;
  border-top: 1px solid rgba(255, 255, 255, 0.13);
  padding-top: 24px;
}

.reply-note > span {
  color: var(--lime);
  font-size: 1.35rem;
}

.reply-note p {
  margin: 0;
  color: #9eb4a9;
  font-size: 0.87rem;
  line-height: 1.6;
}

.reply-note strong {
  color: var(--white);
}

.form-card {
  min-height: 520px;
  border: 1px solid rgba(255, 255, 255, 0.15);
  border-radius: var(--radius-lg);
  padding: clamp(24px, 4vw, 38px);
  background: rgba(255, 255, 255, 0.07);
  box-shadow: var(--shadow);
}

#enquiry-form {
  display: grid;
  gap: 17px;
}

.field-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 14px;
}

.field {
  display: grid;
  gap: 7px;
}

.field label {
  color: #ecf4ef;
  font-size: 0.82rem;
  font-weight: 750;
}

.field label span {
  color: var(--lime);
}

.field label small {
  color: #9fb2a8;
  font-size: 0.74rem;
  font-weight: 500;
}

.field input,
.field textarea {
  width: 100%;
  border: 1px solid rgba(255, 255, 255, 0.2);
  border-radius: 8px;
  padding: 13px 14px;
  background: rgba(6, 25, 20, 0.38);
  color: var(--white);
  outline: none;
  transition:
    border-color 150ms ease,
    background 150ms ease;
}

.field input {
  min-height: 49px;
}

.field textarea {
  resize: vertical;
  line-height: 1.55;
}

.field input::placeholder,
.field textarea::placeholder {
  color: #82a093;
}

.field input:hover,
.field textarea:hover,
.field input:focus,
.field textarea:focus {
  border-color: var(--lime);
  background: rgba(6, 25, 20, 0.58);
}

.field input:user-invalid,
.field textarea:user-invalid {
  border-color: #ffb6a9;
}

.honeypot {
  position: absolute;
  left: -9999px;
  width: 1px;
  height: 1px;
  overflow: hidden;
}

.consent {
  display: grid;
  grid-template-columns: 18px 1fr;
  gap: 10px;
  align-items: start;
  color: #b8cbbf;
  font-size: 0.76rem;
  line-height: 1.55;
}

.consent input {
  width: 17px;
  height: 17px;
  margin: 2px 0 0;
  accent-color: var(--lime);
}

.consent a {
  color: var(--lime);
}

.submit-button {
  width: 100%;
  margin-top: 4px;
}

.submit-button[disabled] {
  cursor: wait;
  opacity: 0.72;
  transform: none;
}

.form-status {
  min-height: 1.4em;
  margin: -2px 0 0;
  color: #ffe2db;
  font-size: 0.83rem;
  line-height: 1.5;
}

.form-fallback {
  margin: -6px 0 0;
  color: #91a99d;
  font-size: 0.74rem;
  text-align: center;
}

.form-fallback a {
  color: #d4e7dc;
}

.success-panel {
  padding: 42px 16px;
  text-align: center;
}

.success-panel[hidden] {
  display: none;
}

.success-icon {
  display: grid;
  width: 72px;
  height: 72px;
  margin: 0 auto 25px;
  place-items: center;
  border-radius: 50%;
  background: var(--lime);
  color: var(--ink);
  font-size: 1.9rem;
  font-weight: 900;
}

.success-panel h3 {
  font-size: 2rem;
}

.success-panel p {
  max-width: 460px;
  margin-inline: auto;
  color: var(--eucalyptus);
}

.success-panel small {
  color: #8da79a;
}

.faq-shell {
  max-width: 860px;
}

.faq-shell > h2 {
  margin-bottom: 34px;
}

.faq-list {
  display: grid;
  gap: 10px;
}

.faq-list details {
  border: 1px solid var(--line);
  border-radius: var(--radius-sm);
  background: var(--off-white);
}

.faq-list summary {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
  padding: 20px 22px;
  cursor: pointer;
  font-size: 1rem;
  font-weight: 800;
  list-style: none;
}

.faq-list summary::-webkit-details-marker {
  display: none;
}

.faq-list summary::after {
  color: var(--lime-deep);
  content: "+";
  font-size: 1.5rem;
  font-weight: 500;
}

.faq-list details[open] summary::after {
  content: "−";
}

.faq-list details p {
  margin: 0;
  padding: 0 22px 22px;
  color: var(--muted);
  font-size: 0.93rem;
}

.final-cta {
  padding: clamp(56px, 8vw, 92px) 0;
  background: var(--lime);
  text-align: center;
}

.final-cta p {
  margin-bottom: 8px;
  color: rgba(17, 20, 23, 0.68);
  font-size: 0.88rem;
  font-weight: 800;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.final-cta h2 {
  margin-bottom: 28px;
}

.site-footer {
  padding: 54px 0;
  background: var(--black);
  color: #86928b;
}

.footer-grid {
  display: grid;
  grid-template-columns: 1fr 0.8fr 1fr;
  gap: 40px;
  align-items: start;
}

.site-footer p {
  max-width: 420px;
  margin: 12px 0 0;
  font-size: 0.82rem;
}

.footer-links {
  display: grid;
  gap: 9px;
}

.footer-links a {
  color: #c4d0c9;
  font-size: 0.84rem;
  text-decoration: none;
}

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

.fine-print {
  margin-top: 0 !important;
}

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

  .hero-grid,
  .split-grid,
  .note-grid,
  .form-grid {
    grid-template-columns: 1fr;
  }

  .offer-cards {
    grid-template-columns: 1fr;
  }

  .hero-grid {
    gap: 54px;
  }

  .video-card {
    max-width: 620px;
  }

  .section-heading {
    grid-template-columns: 1fr;
    gap: 8px;
  }

  .card-grid.three,
  .steps {
    grid-template-columns: 1fr;
  }

  .info-card {
    min-height: auto;
  }

  .card-mark {
    margin-bottom: 34px;
  }

  .steps li {
    display: grid;
    grid-template-columns: 52px 1fr;
    gap: 0 10px;
  }

  .steps li > span {
    grid-row: 1 / span 2;
    margin-bottom: 0;
  }

  .steps p {
    grid-column: 2;
  }

  .form-intro {
    max-width: 620px;
  }

  .footer-grid {
    grid-template-columns: 1fr 1fr;
  }

  .fine-print {
    grid-column: 1 / -1;
  }
}

@media (max-width: 600px) {
  .shell {
    width: min(calc(100% - 28px), var(--shell));
  }

  .topbar {
    font-size: 0.7rem;
  }

  .nav-wrap {
    min-height: 64px;
  }

  .logo {
    font-size: 1.05rem;
  }

  nav {
    gap: 14px;
  }

  nav .nav-cta {
    font-size: 0.8rem;
  }

  .hero {
    padding-top: 54px;
  }

  .hero h1 {
    font-size: clamp(2.35rem, 12vw, 3.3rem);
  }

  .hero-actions {
    align-items: stretch;
    flex-direction: column;
  }

  .hero-actions .button {
    width: 100%;
  }

  .text-link {
    align-self: flex-start;
  }

  .video-placeholder {
    gap: 10px;
  }

  .play-button {
    width: 54px;
    height: 54px;
  }

  .play-button span {
    border-top-width: 9px;
    border-bottom-width: 9px;
    border-left-width: 15px;
  }

  .section {
    padding: 68px 0;
  }

  .info-card,
  .note-grid blockquote,
  .offer-card,
  .form-card {
    padding: 24px;
  }

  .field-row {
    grid-template-columns: 1fr;
  }

  .footer-grid {
    grid-template-columns: 1fr;
  }

  .fine-print {
    grid-column: auto;
  }
}

@media (max-width: 420px) {
  .video-placeholder small {
    display: none;
  }
}

@media (prefers-reduced-motion: reduce) {
  html {
    scroll-behavior: auto;
  }

  *,
  *::before,
  *::after {
    scroll-behavior: auto !important;
    transition-duration: 0.01ms !important;
  }
}
