:root {
  color-scheme: light;
  font-family: Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  --ink: #080808;
  --muted: #69665d;
  --paper: #efeee6;
  --surface: #fbfaf4;
  --line: #cac5b9;
  --black: #101010;
  --lime: #d8ee69;
  --mint: #8be0ca;
  --blue: #8fb6ff;
  --rose: #f2a093;
  --amber: #edc756;
  --shadow: 0 24px 60px rgba(16, 16, 16, 0.16);
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  min-width: 320px;
  margin: 0;
  color: var(--ink);
  background:
    linear-gradient(90deg, rgba(16, 16, 16, 0.055) 1px, transparent 1px) 0 0 / 46px 46px,
    linear-gradient(180deg, #d7d8d3 0%, #f4f0df 100%);
}

button,
input,
select,
textarea {
  font: inherit;
}

button,
a {
  cursor: pointer;
}

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

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

.hero {
  width: min(1420px, calc(100vw - 32px));
  margin: 18px auto;
  border: 4px solid var(--black);
  border-radius: 8px;
  overflow: hidden;
  background: var(--paper);
  box-shadow: var(--shadow);
}

.topnav {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 18px;
  padding: 18px 22px;
  border-bottom: 1px solid var(--line);
  background: rgba(251, 250, 244, 0.84);
}

.brand,
.topnav div {
  display: flex;
  align-items: center;
  gap: 12px;
}

.brand span {
  display: grid;
  width: 42px;
  height: 42px;
  place-items: center;
  border-radius: 8px;
  color: var(--black);
  background: var(--lime);
  font-weight: 950;
}

.brand b {
  font-size: 1rem;
}

.topnav a:not(.brand),
.ghost {
  border: 1px solid transparent;
  border-radius: 8px;
  padding: 10px 12px;
  color: var(--muted);
  background: transparent;
  font-weight: 900;
}

.ghost {
  border-color: var(--black);
  color: var(--ink);
}

.hero-grid {
  display: grid;
  grid-template-columns: minmax(0, 1.06fr) minmax(360px, 0.94fr);
  gap: 30px;
  align-items: center;
  padding: clamp(28px, 5vw, 68px);
}

.eyebrow {
  margin-bottom: 10px;
  color: var(--muted);
  font-size: 0.75rem;
  font-weight: 950;
  text-transform: uppercase;
}

h1 {
  max-width: 900px;
  margin-bottom: 18px;
  font-size: clamp(2.7rem, 6vw, 6rem);
  line-height: 0.9;
  letter-spacing: 0;
}

h2 {
  margin-bottom: 12px;
  font-size: clamp(2rem, 4vw, 4.6rem);
  line-height: 0.94;
  letter-spacing: 0;
}

h3 {
  margin-bottom: 9px;
  font-size: 1.1rem;
}

.lead {
  max-width: 720px;
  color: #3d3a34;
  font-size: clamp(1.08rem, 2vw, 1.35rem);
  line-height: 1.5;
  font-weight: 760;
}

.cta-row,
.proof-strip {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 10px;
}

.primary,
.secondary {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 50px;
  border: 1px solid var(--black);
  border-radius: 8px;
  padding: 13px 18px;
  font-weight: 950;
}

.primary {
  color: #fffaf0;
  background: var(--black);
}

.primary:hover,
.secondary:hover,
.ghost:hover {
  color: var(--black);
  background: var(--lime);
}

.primary.small {
  min-height: 43px;
  padding: 10px 14px;
}

.secondary {
  color: var(--ink);
  background: #fbfaf4;
}

.proof-strip {
  margin-top: 18px;
}

.proof-strip span {
  border: 1px solid var(--line);
  border-radius: 999px;
  padding: 8px 11px;
  background: rgba(255, 255, 255, 0.64);
  font-size: 0.82rem;
  font-weight: 900;
}

.hero-visual {
  min-width: 0;
}

.screen {
  border: 3px solid var(--black);
  border-radius: 8px;
  padding: 18px;
  background: #f8f7f2;
  box-shadow: 18px 18px 0 var(--black);
  transform: rotate(1.2deg);
}

.screen-head {
  display: grid;
  grid-template-columns: repeat(3, 12px) minmax(0, 1fr);
  gap: 8px;
  align-items: center;
  margin-bottom: 18px;
}

.screen-head span {
  width: 12px;
  height: 12px;
  border-radius: 50%;
  background: var(--rose);
}

.screen-head span:nth-child(2) {
  background: var(--amber);
}

.screen-head span:nth-child(3) {
  background: var(--mint);
}

.screen-head b {
  justify-self: end;
}

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

.screen-stats article,
.screen-table div {
  border: 1px solid var(--line);
  border-radius: 8px;
  padding: 14px;
  background: #fffdf7;
}

.screen-stats small,
.screen-table span {
  color: var(--muted);
  font-weight: 900;
}

.screen-stats strong {
  display: block;
  margin-top: 8px;
  font-size: 2rem;
  line-height: 1;
}

.screen-table {
  display: grid;
  gap: 10px;
}

.screen-table div {
  display: grid;
  grid-template-columns: 1fr auto auto;
  gap: 12px;
  align-items: center;
}

.screen-table span {
  border-radius: 999px;
  padding: 5px 9px;
  background: #eee9dc;
}

.video-panel {
  display: grid;
  grid-template-columns: 0.8fr 1.2fr;
  gap: 24px;
  align-items: center;
  border-top: 1px solid var(--line);
  padding: clamp(24px, 4vw, 46px);
  background: #e9e6dc;
}

.video-copy h2 {
  font-size: clamp(1.7rem, 3vw, 3.2rem);
}

.video-box {
  position: relative;
  min-height: 320px;
  border: 3px solid var(--black);
  border-radius: 8px;
  overflow: hidden;
  background: var(--black);
}

.video-box video {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.video-fallback {
  position: absolute;
  inset: auto 18px 18px;
  border-radius: 8px;
  padding: 14px;
  color: #fffaf0;
  background: rgba(0, 0, 0, 0.68);
}

.video-fallback b,
.video-fallback span {
  display: block;
}

.video-fallback span {
  margin-top: 4px;
  color: #ddd6c7;
  font-size: 0.9rem;
}

.problem-section,
.features-section,
.pricing-section,
.reviews-section,
.mid-cta {
  width: min(1320px, calc(100vw - 32px));
  margin: 18px auto;
}

.section-head {
  max-width: 980px;
  margin-bottom: 18px;
}

.problem-grid,
.feature-grid,
.review-grid {
  display: grid;
  gap: 14px;
}

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

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

.problem-grid article,
.feature-grid article,
.review-card,
.price-card,
.mid-cta {
  border: 1px solid var(--line);
  border-radius: 8px;
  padding: 20px;
  background: var(--surface);
  box-shadow: 0 10px 24px rgba(17, 17, 17, 0.07);
}

.problem-grid p,
.feature-grid p,
.review-card p,
.price-sub {
  color: #47433b;
  font-weight: 740;
  line-height: 1.5;
}

.feature-grid span {
  display: inline-grid;
  width: 36px;
  height: 36px;
  place-items: center;
  margin-bottom: 12px;
  border-radius: 50%;
  background: var(--lime);
  font-weight: 950;
}

.pricing-section {
  display: grid;
  place-items: center;
}

.price-card {
  width: min(620px, 100%);
  border: 4px solid var(--black);
  background:
    linear-gradient(135deg, rgba(216, 238, 105, 0.5), transparent 48%),
    var(--surface);
}

.price-card h2 {
  font-size: clamp(4rem, 10vw, 7rem);
}

.price-card ul {
  display: grid;
  gap: 10px;
  padding: 0;
  list-style: none;
}

.price-card li {
  border-bottom: 1px solid var(--line);
  padding-bottom: 9px;
  font-weight: 900;
}

.review-grid {
  grid-template-columns: repeat(5, 1fr);
}

.review-card {
  min-height: 190px;
}

.stars {
  color: #c69215;
  font-weight: 950;
}

.review-card b {
  display: block;
  margin: 10px 0 6px;
}

.mid-cta {
  display: grid;
  place-items: center;
  min-height: 320px;
  text-align: center;
  background:
    linear-gradient(135deg, #101010 0%, #2c2c29 100%);
  color: #fffaf0;
}

.mid-cta h2 {
  max-width: 950px;
}

footer {
  display: grid;
  gap: 8px;
  width: min(1320px, calc(100vw - 32px));
  margin: 18px auto 28px;
  border: 4px solid var(--black);
  border-radius: 8px;
  padding: 22px;
  background: var(--black);
  color: #fffaf0;
  text-align: center;
}

dialog {
  width: min(620px, calc(100vw - 24px));
  border: 4px solid var(--black);
  border-radius: 8px;
  padding: 0;
  background: var(--surface);
  box-shadow: var(--shadow);
}

dialog::backdrop {
  background: rgba(16, 16, 16, 0.56);
}

.enquiry-form {
  display: grid;
  gap: 14px;
  padding: 20px;
}

.dialog-head {
  display: flex;
  align-items: start;
  justify-content: space-between;
  gap: 16px;
}

.dialog-head h2 {
  font-size: 2rem;
}

.close {
  width: 40px;
  height: 40px;
  border: 1px solid var(--black);
  border-radius: 8px;
  background: #fffdf7;
  font-size: 1.6rem;
  line-height: 1;
}

label {
  display: grid;
  gap: 7px;
  color: var(--muted);
  font-size: 0.82rem;
  font-weight: 950;
}

input,
select,
textarea {
  width: 100%;
  min-height: 44px;
  border: 1px solid var(--line);
  border-radius: 8px;
  padding: 11px 12px;
  color: var(--ink);
  background: #fffdf7;
  outline: none;
}

textarea {
  min-height: 100px;
  resize: vertical;
}

input:focus,
select:focus,
textarea:focus {
  border-color: var(--black);
  box-shadow: 0 0 0 3px rgba(216, 238, 105, 0.7);
}

.form-note {
  margin: 0;
  font-weight: 900;
}

@media (max-width: 1120px) {
  .hero-grid,
  .video-panel,
  .problem-grid,
  .feature-grid {
    grid-template-columns: 1fr;
  }

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

@media (max-width: 760px) {
  .hero {
    width: 100%;
    margin: 0;
    border: 0;
    border-radius: 0;
  }

  .topnav,
  .topnav div {
    align-items: stretch;
    flex-direction: column;
  }

  .brand,
  .topnav div {
    width: 100%;
  }

  .topnav a:not(.brand),
  .ghost {
    width: 100%;
    text-align: center;
  }

  .hero-grid,
  .video-panel {
    padding: 20px;
  }

  h1 {
    font-size: 2.6rem;
  }

  .screen {
    box-shadow: none;
    transform: none;
  }

  .screen-stats,
  .screen-table div,
  .review-grid {
    grid-template-columns: 1fr;
  }

  .problem-section,
  .features-section,
  .pricing-section,
  .reviews-section,
  .mid-cta,
  footer {
    width: calc(100vw - 24px);
  }
}
