:root {
  --ink: #11110f;
  --ink-soft: #292820;
  --night: #12121b;
  --night-2: #1a1a27;
  --paper: #f5f0e7;
  --warm: #e9e0d2;
  --line: #cec4b3;
  --muted: #676257;
  --yellow: #ffd200;
  --blue: #5d6fff;
  --white: #ffffff;
  --shadow: 0 26px 70px rgba(18, 18, 15, 0.18);
  --hard-shadow: 10px 10px 0 rgba(18, 18, 15, 0.08);
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  color: var(--ink);
  background:
    linear-gradient(180deg, var(--night) 0 960px, var(--paper) 960px),
    var(--paper);
  font-family: Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  letter-spacing: 0;
}

body::selection {
  background: var(--yellow);
  color: var(--ink);
}

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

button,
input,
select {
  font: inherit;
}

.sr-only {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  white-space: nowrap;
  border: 0;
}

.site-header {
  position: fixed;
  z-index: 30;
  top: 0;
  left: 0;
  right: 0;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 22px;
  min-height: 66px;
  padding: 14px 7vw;
  color: var(--white);
  background: linear-gradient(180deg, rgba(18, 18, 27, 0.92), rgba(18, 18, 27, 0.54));
  border-bottom: 1px solid rgba(255, 255, 255, 0.1);
  backdrop-filter: blur(16px);
}

.brand {
  display: inline-flex;
  align-items: center;
  font-weight: 700;
  line-height: 1;
}

.brand-logo {
  display: block;
  width: 154px;
  height: auto;
}

.nav-links {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 24px;
  font-size: 14px;
  color: rgba(255, 255, 255, 0.82);
}

.header-cta,
.hero-form button,
.contact-form button {
  border: 0;
  border-radius: 6px;
  color: var(--ink);
  background: var(--yellow);
  font-weight: 700;
  cursor: pointer;
}

.header-cta {
  padding: 10px 14px;
  font-size: 13px;
  box-shadow: 0 0 0 1px rgba(18, 18, 15, 0.16), 0 10px 24px rgba(0, 0, 0, 0.2);
}

.hero-section {
  position: relative;
  min-height: 760px;
  display: grid;
  place-items: center;
  overflow: hidden;
  color: var(--white);
  background: var(--night);
}

.hero-section::after {
  content: "";
  position: absolute;
  z-index: 1;
  inset: 0;
  background:
    linear-gradient(180deg, rgba(18, 18, 27, 0.04), rgba(18, 18, 27, 0.38) 100%),
    linear-gradient(90deg, rgba(18, 18, 27, 0.5), transparent 24%, transparent 76%, rgba(18, 18, 27, 0.52));
  pointer-events: none;
}

.hero-media {
  position: absolute;
  inset: 0;
  overflow: hidden;
}

.skyline {
  position: absolute;
  inset: 0;
  background:
    linear-gradient(154deg, transparent 0 31%, rgba(255, 255, 255, 0.045) 31% calc(31% + 1px), transparent calc(31% + 1px)),
    linear-gradient(154deg, transparent 0 64%, rgba(255, 210, 0, 0.055) 64% calc(64% + 1px), transparent calc(64% + 1px)),
    linear-gradient(26deg, transparent 0 72%, rgba(93, 111, 255, 0.06) 72% calc(72% + 1px), transparent calc(72% + 1px)),
    linear-gradient(118deg, rgba(255, 255, 255, 0.035) 0 18%, transparent 18% 100%),
    linear-gradient(242deg, rgba(93, 111, 255, 0.045) 0 22%, transparent 22% 100%),
    linear-gradient(180deg, #25251f 0%, #171920 44%, #101018 100%);
}

.skyline::before {
  content: "";
  position: absolute;
  inset: 0;
  background:
    linear-gradient(90deg, transparent 0 16%, rgba(255, 255, 255, 0.03) 16% calc(16% + 1px), transparent calc(16% + 1px) 84%, rgba(255, 255, 255, 0.03) 84% calc(84% + 1px), transparent calc(84% + 1px)),
    linear-gradient(180deg, transparent 0 17%, rgba(255, 255, 255, 0.035) 17% calc(17% + 1px), transparent calc(17% + 1px) 78%, rgba(255, 255, 255, 0.025) 78% calc(78% + 1px), transparent calc(78% + 1px));
  opacity: 0.82;
}

.skyline::after {
  content: none;
}

.hero-content {
  position: relative;
  z-index: 3;
  width: min(940px, 90vw);
  margin-top: 18px;
  text-align: center;
}

.eyebrow,
.section-kicker {
  margin: 0 0 14px;
  font-size: 12px;
  font-weight: 700;
  text-transform: uppercase;
  color: var(--yellow);
  letter-spacing: 0;
}

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

h1,
h2 {
  font-family: Georgia, "Times New Roman", serif;
  font-weight: 400;
  line-height: 0.98;
}

h1 {
  max-width: 880px;
  margin: 0 auto 22px;
  font-size: clamp(50px, 6.6vw, 88px);
}

h2 {
  font-size: clamp(36px, 5vw, 68px);
}

h3 {
  font-size: 26px;
  line-height: 1.05;
}

.hero-copy {
  max-width: 720px;
  margin: 0 auto 28px;
  color: rgba(255, 255, 255, 0.82);
  font-size: 17px;
  line-height: 1.55;
}

.proof-card span,
.system-card p,
.workflow-grid p,
.case-panel p,
.quote-panel span,
.site-footer p {
  color: var(--muted);
}

.hero-form {
  position: relative;
  z-index: 4;
  display: grid;
  grid-template-columns: minmax(0, 300px) auto;
  justify-content: center;
  gap: 10px;
}

.hero-form input,
.contact-form input,
.contact-form select {
  min-height: 48px;
  border: 1px solid rgba(18, 18, 15, 0.13);
  border-radius: 6px;
  padding: 0 14px;
  background: var(--white);
  color: var(--ink);
}

.hero-form button {
  min-height: 48px;
  padding: 0 20px;
  box-shadow: 0 0 0 1px rgba(18, 18, 15, 0.18), 0 16px 32px rgba(0, 0, 0, 0.22);
}

.hero-note {
  margin: 14px 0 0;
  color: rgba(255, 255, 255, 0.7);
  font-size: 13px;
}

.dark-intro {
  padding: 108px 7vw 118px;
  color: var(--white);
  background:
    radial-gradient(circle at 82% 26%, rgba(93, 111, 255, 0.12), transparent 28%),
    linear-gradient(180deg, #12121b, #111119);
  border-top: 1px solid rgba(255, 255, 255, 0.08);
}

.intro-grid {
  width: min(1120px, 100%);
  margin: 0 auto;
  display: grid;
  grid-template-columns: 0.95fr 1.05fr;
  gap: 64px;
  align-items: center;
}

.intro-grid h2 {
  margin-bottom: 22px;
}

.intro-grid p:not(.section-kicker) {
  max-width: 520px;
  color: rgba(255, 255, 255, 0.72);
  line-height: 1.7;
}

.terminal-panel {
  position: relative;
  overflow: hidden;
  border: 1px solid rgba(255, 255, 255, 0.12);
  border-radius: 8px;
  padding: 24px;
  min-height: 310px;
  background:
    linear-gradient(90deg, rgba(255, 210, 0, 0.04), transparent 26%),
    linear-gradient(180deg, #222231, #15151f);
  box-shadow: 0 28px 80px rgba(0, 0, 0, 0.34), var(--hard-shadow);
}

.terminal-row {
  display: grid;
  grid-template-columns: 1fr 1.2fr auto;
  gap: 16px;
  align-items: center;
  padding: 16px 0;
  border-bottom: 1px solid rgba(255, 255, 255, 0.11);
}

.terminal-row span,
.terminal-row em {
  color: rgba(255, 255, 255, 0.62);
  font-size: 13px;
  font-style: normal;
}

.terminal-row em {
  color: var(--yellow);
}

.terminal-list {
  display: grid;
  grid-template-columns: 1fr 0.72fr 0.86fr 0.58fr;
  gap: 10px;
  margin-top: 28px;
}

.terminal-list span {
  display: block;
  height: 72px;
  border-radius: 6px;
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.13), rgba(255, 255, 255, 0.04)),
    rgba(255, 255, 255, 0.03);
  border: 1px solid rgba(255, 255, 255, 0.08);
}

.request-form-preview {
  position: relative;
  overflow: hidden;
  border: 1px solid rgba(255, 255, 255, 0.14);
  border-radius: 8px;
  padding: 36px;
  color: var(--white);
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.045), transparent 32%),
    linear-gradient(135deg, #222231, #12131c 64%, #101018);
  box-shadow: 0 28px 80px rgba(0, 0, 0, 0.34), var(--hard-shadow);
}

.request-form-preview::before {
  content: "";
  position: absolute;
  left: 0;
  right: 0;
  top: 0;
  height: 1px;
  background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.28), transparent);
}

.form-label {
  margin: 0 0 12px;
  color: rgba(255, 255, 255, 0.58);
  font-size: 12px;
  font-weight: 800;
  text-transform: uppercase;
}

.request-form-preview h3 {
  margin: 0 0 16px;
  font-family: Georgia, "Times New Roman", serif;
  font-size: 38px;
  font-weight: 400;
}

.form-step {
  display: grid;
  gap: 14px;
  margin-bottom: 28px;
  color: rgba(255, 255, 255, 0.72);
  font-weight: 700;
}

.form-step i {
  position: relative;
  display: block;
  height: 4px;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.12);
}

.form-step i::before {
  content: "";
  position: absolute;
  inset: 0 auto 0 0;
  width: 24%;
  border-radius: inherit;
  background: var(--yellow);
}

.preview-fields {
  display: grid;
  gap: 16px;
}

.preview-fields label {
  display: grid;
  grid-template-columns: 130px minmax(0, 1fr);
  gap: 18px;
  align-items: center;
  color: rgba(255, 255, 255, 0.68);
  font-weight: 700;
}

.preview-fields label span {
  position: relative;
  min-height: 52px;
  display: flex;
  align-items: center;
  padding: 0 44px 0 16px;
  border: 1px solid rgba(255, 255, 255, 0.13);
  border-radius: 6px;
  color: var(--white);
  background: rgba(255, 255, 255, 0.045);
}

.preview-fields label span::after {
  content: "⌄";
  position: absolute;
  right: 16px;
  top: 50%;
  transform: translateY(-54%);
  color: rgba(255, 255, 255, 0.72);
}

.request-form-preview button {
  width: 100%;
  min-height: 58px;
  margin-top: 28px;
  border: 0;
  border-radius: 6px;
  color: var(--ink);
  background: var(--yellow);
  font-weight: 800;
  font-size: 18px;
}

.request-form-preview button span {
  float: right;
}

.form-footnote {
  margin: 20px 0 0;
  color: rgba(255, 255, 255, 0.54);
  font-size: 14px;
}

.logo-strip {
  padding: 54px 7vw 58px;
  text-align: center;
  background: var(--paper);
  border-bottom: 1px solid var(--line);
}

.logo-strip p {
  margin-bottom: 22px;
  color: var(--muted);
}

.market-row {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 18px 42px;
  font-weight: 800;
  font-size: clamp(18px, 2.4vw, 30px);
}

.market-row span {
  display: inline-flex;
  align-items: center;
  min-height: 48px;
  padding: 0 18px;
  border: 1px solid rgba(18, 18, 15, 0.12);
  border-radius: 6px;
  background: rgba(255, 255, 255, 0.46);
}

.product-section,
.workflow-section,
.systems-section {
  padding: 92px 7vw;
}

.product-section {
  background:
    linear-gradient(180deg, var(--paper), #fbfaf7 45%, var(--paper));
}

.section-heading {
  width: min(800px, 100%);
  margin: 0 auto 56px;
  text-align: center;
}

.section-heading .section-kicker,
.systems-section .section-kicker {
  color: var(--muted);
}

.feature-band {
  width: min(1080px, 100%);
  min-height: 390px;
  margin: 0 auto 30px;
  display: grid;
  grid-template-columns: 0.88fr 1.12fr;
  align-items: center;
  gap: 40px;
  overflow: hidden;
  border-radius: 8px;
  border: 1px solid rgba(18, 18, 15, 0.12);
  background:
    linear-gradient(90deg, rgba(255, 255, 255, 0.12), transparent 42%),
    var(--warm);
  box-shadow: var(--shadow);
}

.feature-band.reverse {
  grid-template-columns: 1.12fr 0.88fr;
}

.feature-band.reverse .feature-copy {
  order: 2;
}

.feature-copy {
  padding: 56px;
}

.feature-copy p {
  max-width: 390px;
  color: var(--ink-soft);
  line-height: 1.55;
}

.feature-copy a {
  display: inline-flex;
  align-items: center;
  min-height: 42px;
  margin-top: 10px;
  padding: 0 16px;
  border-radius: 6px;
  border: 1px solid rgba(18, 18, 15, 0.08);
  background: var(--white);
  font-weight: 700;
  font-size: 13px;
}

.screen-shot,
.metric-window,
.lead-inbox {
  min-height: 300px;
  margin-right: -70px;
  border: 1px solid rgba(18, 18, 15, 0.14);
  border-radius: 8px 0 0 8px;
  background: var(--white);
  box-shadow: 0 28px 60px rgba(18, 18, 15, 0.18), var(--hard-shadow);
}

.browser-bar {
  display: flex;
  align-items: center;
  gap: 7px;
  height: 42px;
  padding: 0 16px;
  border-bottom: 1px solid #e1d9cc;
  background: #fbfaf7;
}

.browser-bar span {
  width: 7px;
  height: 7px;
  border-radius: 50%;
  background: #d9d5cb;
}

.screen-grid {
  display: grid;
  grid-template-columns: 1fr 210px;
  gap: 24px;
  padding: 26px;
}

.screen-title,
.screen-line,
.mini-form span,
.mini-form strong,
.metric-head,
.metric-table span {
  display: block;
  border-radius: 6px;
  background: #e7e9ed;
}

.screen-title {
  grid-column: 1;
  width: 78%;
  height: 44px;
  background: #171721;
}

.screen-line {
  height: 13px;
  width: 70%;
}

.screen-line.wide {
  width: 100%;
}

.mini-form {
  grid-row: 1 / span 3;
  grid-column: 2;
  display: grid;
  gap: 12px;
  padding: 16px;
  border-radius: 7px;
  background: #f3eadc;
}

.mini-form span {
  height: 40px;
  background: var(--white);
  border: 1px solid #e5e0d7;
}

.mini-form strong {
  height: 42px;
  background: var(--yellow);
  box-shadow: inset 0 0 0 1px rgba(18, 18, 15, 0.1);
}

.metric-window {
  margin-left: -70px;
  margin-right: 0;
  display: grid;
  grid-template-columns: 64px 1fr;
  border-radius: 0 8px 8px 0;
}

.metric-sidebar {
  background:
    repeating-linear-gradient(180deg, #14141d 0 30px, #222231 30px 31px);
}

.metric-content {
  padding: 30px;
}

.metric-head {
  width: 54%;
  height: 36px;
  background: #eff1f3;
}

.chart-line {
  position: relative;
  height: 112px;
  margin: 36px 0 20px;
  border-bottom: 1px solid #dce1e5;
  background:
    linear-gradient(170deg, transparent 49%, rgba(93, 111, 255, 0.8) 50%, transparent 51%),
    linear-gradient(180deg, transparent, rgba(93, 111, 255, 0.1));
}

.metric-table {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 12px;
}

.metric-table span {
  height: 12px;
}

.lead-inbox {
  display: grid;
  gap: 14px;
  align-content: center;
  padding: 28px;
  background:
    radial-gradient(circle at 78% 24%, rgba(93, 111, 255, 0.18), transparent 30%),
    #dceef5;
}

.inbox-card {
  display: grid;
  grid-template-columns: 28px 1fr auto;
  align-items: center;
  gap: 12px;
  padding: 17px;
  border-radius: 8px;
  background: rgba(255, 255, 255, 0.86);
  border: 1px solid rgba(18, 18, 15, 0.08);
}

.inbox-card.active {
  box-shadow: 0 16px 36px rgba(18, 18, 15, 0.14);
}

.inbox-card span {
  width: 28px;
  height: 28px;
  border-radius: 50%;
  background: var(--ink);
}

.inbox-card em {
  font-size: 12px;
  font-style: normal;
  color: var(--muted);
}

.site-preview {
  min-height: 320px;
  margin-right: -70px;
  overflow: hidden;
  border: 1px solid rgba(18, 18, 15, 0.14);
  border-radius: 8px 0 0 8px;
  background: var(--white);
  box-shadow: 0 28px 60px rgba(18, 18, 15, 0.18), var(--hard-shadow);
}

.feature-band.reverse .site-preview {
  margin-left: -70px;
  margin-right: 0;
  border-radius: 0 8px 8px 0;
}

.site-nav,
.site-topbar {
  display: flex;
  align-items: center;
  gap: 26px;
  min-height: 48px;
  padding: 0 28px;
  font-size: 13px;
}

.site-nav strong {
  margin-right: auto;
  font-size: 18px;
}

.site-nav b {
  display: inline-flex;
  align-items: center;
  min-height: 34px;
  padding: 0 14px;
  border-radius: 999px;
  font-size: 12px;
}

.site-hero {
  min-height: 272px;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 26px;
  align-items: center;
  padding: 34px;
}

.site-hero h4 {
  margin: 10px 0 14px;
  font-family: Georgia, "Times New Roman", serif;
  font-size: 42px;
  line-height: 0.98;
}

.site-hero p {
  margin-bottom: 20px;
  color: rgba(18, 18, 15, 0.72);
  line-height: 1.45;
}

.site-hero small {
  display: inline-flex;
  align-items: center;
  min-height: 28px;
  padding: 0 12px;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.72);
  color: rgba(18, 18, 15, 0.72);
  font-weight: 800;
}

.site-hero button,
.postcode-row button,
.mini-advice-form button {
  border: 0;
  border-radius: 999px;
  font-weight: 800;
}

.site-hero button {
  min-height: 42px;
  padding: 0 18px;
}

.site-photo {
  min-height: 235px;
  border-radius: 8px;
  border: 1px solid rgba(18, 18, 15, 0.1);
}

.site-photo-charge {
  background:
    linear-gradient(90deg, transparent 0 17%, #2d2f32 17% 19%, transparent 19%),
    linear-gradient(180deg, transparent 0 39%, #28292c 39% 43%, transparent 43%),
    linear-gradient(90deg, transparent 0 64%, rgba(10, 10, 10, 0.74) 64% 100%),
    linear-gradient(135deg, #dfdfd8, #b68454 52%, #26311f 100%);
}

.site-photo-home {
  background:
    linear-gradient(90deg, transparent 0 18%, #111827 18% 22%, transparent 22%),
    linear-gradient(180deg, transparent 0 54%, #111827 54% 59%, transparent 59%),
    linear-gradient(90deg, transparent 0 66%, rgba(255, 255, 255, 0.55) 66% 100%),
    linear-gradient(135deg, #d9c9b5, #7f8575 52%, #e8edf6);
}

.site-preview-groenklaar {
  background: #e8efe0;
}

.site-preview-groenklaar .site-nav {
  color: #1d3328;
}

.site-preview-groenklaar .site-nav strong {
  color: #244232;
}

.site-preview-groenklaar .site-nav b,
.site-preview-groenklaar button {
  color: var(--white);
  background: #193227;
}

.site-preview-groenklaar .site-hero h4 {
  color: #1e3428;
}

.site-preview-groenklaar .site-hero h4::first-line {
  color: #d6532f;
}

.site-preview-woon {
  background: #f3f6fb;
}

.site-nav.dark {
  margin: 16px 20px 0;
  border-radius: 8px;
  color: var(--white);
  background: #111827;
}

.site-preview-woon .site-hero {
  padding-top: 22px;
}

.woon-layout > div:first-child {
  padding: 30px;
  border-radius: 8px;
  background: #e7edf8;
}

.woon-layout h4 {
  color: #111827;
  font-family: Inter, ui-sans-serif, system-ui, sans-serif;
  font-weight: 800;
  font-size: 54px;
}

.postcode-row {
  display: flex;
  gap: 8px;
  flex-wrap: wrap;
  align-items: center;
}

.postcode-row span {
  display: inline-flex;
  align-items: center;
  min-height: 42px;
  padding: 0 18px;
  border-radius: 999px;
  color: #667085;
  background: var(--white);
}

.postcode-row button {
  min-height: 42px;
  padding: 0 18px;
  color: var(--white);
  background: #ff6944;
}

.site-preview-koelzeker {
  color: var(--white);
  background:
    linear-gradient(90deg, rgba(20, 70, 112, 0.92), rgba(20, 70, 112, 0.88)),
    #144670;
}

.site-topbar {
  min-height: 32px;
  color: var(--white);
  background: #116caf;
}

.site-nav.clean {
  color: var(--ink);
  background: var(--white);
}

.site-nav.clean b {
  color: var(--white);
  border-radius: 5px;
  background: #fb5f22;
}

.koel-layout {
  grid-template-columns: 1fr 0.86fr;
}

.koel-layout h4 {
  color: var(--white);
  font-family: Inter, ui-sans-serif, system-ui, sans-serif;
  font-weight: 800;
  font-size: 46px;
}

.koel-layout p {
  color: rgba(255, 255, 255, 0.82);
}

.koel-layout small {
  color: var(--white);
  background: transparent;
  padding: 0;
  text-transform: uppercase;
}

.mini-advice-form {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 12px;
  padding: 22px;
  border-radius: 6px;
  color: var(--ink);
  background: var(--white);
}

.mini-advice-form strong,
.mini-advice-form em,
.mini-advice-form button {
  grid-column: 1 / -1;
}

.mini-advice-form strong {
  color: #fb5f22;
  font-size: 20px;
  text-transform: uppercase;
}

.mini-advice-form span,
.mini-advice-form em {
  min-height: 42px;
  padding: 12px;
  border: 1px solid #d7dde5;
  border-radius: 4px;
  color: #8a8f97;
  font-style: normal;
  font-weight: 700;
}

.mini-advice-form em {
  min-height: 72px;
}

.mini-advice-form button {
  min-height: 42px;
  color: var(--white);
  background: #fb5f22;
}

.proof-section {
  display: grid;
  grid-template-columns: 1.35fr 0.65fr;
  gap: 0;
  padding: 0 7vw 98px;
  background: var(--paper);
}

.proof-card {
  min-height: 330px;
  padding: 54px;
  border: 1px solid var(--ink);
  background: #fbfaf7;
}

.proof-card.large {
  border-radius: 8px 0 0 8px;
}

.proof-card.yellow {
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  border-left: 0;
  border-radius: 0 8px 8px 0;
  background:
    linear-gradient(90deg, transparent calc(96% - 1px), rgba(18, 18, 15, 0.22) calc(96% - 1px) calc(96% + 1px), transparent calc(96% + 1px)),
    linear-gradient(180deg, transparent calc(28% - 1px), rgba(18, 18, 15, 0.28) calc(28% - 1px) calc(28% + 1px), transparent calc(28% + 1px)),
    var(--yellow);
}

.proof-card.yellow p {
  max-width: 300px;
  color: var(--ink-soft);
  line-height: 1.5;
}

.proof-tiles {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 18px;
  margin-top: 34px;
}

.proof-tiles div {
  padding-top: 18px;
  border-top: 1px solid var(--line);
}

.proof-tiles strong {
  display: block;
  font-family: Georgia, "Times New Roman", serif;
  font-size: 58px;
  line-height: 1;
}

.workflow-section {
  background:
    linear-gradient(180deg, #fbfaf7, var(--paper));
  border-top: 1px solid var(--line);
}

.workflow-grid {
  width: min(1060px, 100%);
  margin: 0 auto;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 22px;
}

.workflow-grid article,
.system-card {
  min-height: 260px;
  padding: 28px;
  border: 1px solid rgba(18, 18, 15, 0.13);
  border-radius: 8px;
  background: rgba(255, 255, 255, 0.68);
  box-shadow: 0 18px 45px rgba(18, 18, 15, 0.06);
}

.workflow-grid span {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 38px;
  height: 38px;
  border-radius: 50%;
  color: var(--white);
  background: var(--night);
  font-weight: 800;
}

.workflow-grid h3,
.system-card h3 {
  margin: 54px 0 12px;
  font-size: 24px;
}

.split-section {
  display: block;
  padding: 100px 7vw;
  color: var(--white);
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.035), transparent 34%),
    var(--night);
}

.quote-panel {
  width: min(980px, 100%);
  margin: 0 auto;
  text-align: center;
}

.quote-panel blockquote {
  margin: 0 0 22px;
  font-family: Georgia, "Times New Roman", serif;
  font-size: clamp(34px, 5vw, 72px);
  line-height: 1.05;
}

.quote-label {
  color: var(--yellow);
  font-weight: 700;
}

.quote-panel span {
  color: rgba(255, 255, 255, 0.68);
}

.systems-section {
  padding-top: 152px;
  text-align: center;
  background:
    linear-gradient(180deg, var(--night) 0 96px, #fbfaf7 96px);
}

.systems-section h2 {
  width: min(840px, 100%);
  margin: 0 auto 48px;
}

.systems-grid {
  width: min(1030px, 100%);
  margin: 0 auto;
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 16px;
  text-align: left;
}

.system-icon {
  display: block;
  width: 42px;
  height: 42px;
  border-radius: 7px;
  background:
    linear-gradient(90deg, transparent 48%, rgba(18, 18, 15, 0.18) 49% 51%, transparent 52%),
    linear-gradient(180deg, transparent 48%, rgba(18, 18, 15, 0.18) 49% 51%, transparent 52%),
    var(--yellow);
  box-shadow: inset 0 0 0 1px rgba(18, 18, 15, 0.12);
}

.system-card h3 {
  margin-top: 72px;
}

.cta-section {
  display: grid;
  grid-template-columns: 0.9fr 1.1fr;
  gap: 7vw;
  padding: 92px 7vw;
  color: var(--ink);
  background:
    linear-gradient(90deg, transparent calc(52% - 1px), rgba(18, 18, 15, 0.28) calc(52% - 1px) calc(52% + 1px), transparent calc(52% + 1px)),
    linear-gradient(180deg, transparent 74px, rgba(18, 18, 15, 0.24) 74px 76px, transparent 76px),
    var(--yellow);
  border-top: 1px solid var(--ink);
  border-bottom: 1px solid var(--ink);
}

.cta-section h2 {
  max-width: 680px;
}

.cta-section .section-kicker {
  color: var(--ink);
}

.contact-form {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 14px;
  align-content: start;
  padding: 28px;
  border: 1px solid rgba(18, 18, 15, 0.24);
  border-radius: 8px;
  background: rgba(255, 255, 255, 0.34);
  backdrop-filter: blur(8px);
}

.contact-form label {
  display: grid;
  gap: 8px;
  font-size: 13px;
  font-weight: 700;
}

.contact-form button {
  grid-column: 1 / -1;
  min-height: 52px;
  color: var(--white);
  background: var(--ink);
  box-shadow: 0 18px 34px rgba(18, 18, 15, 0.18);
}

.site-footer {
  display: flex;
  justify-content: space-between;
  gap: 40px;
  padding: 58px 7vw;
  color: var(--white);
  background:
    radial-gradient(circle at 82% 20%, rgba(93, 111, 255, 0.12), transparent 28%),
    var(--ink);
}

.footer-links {
  display: flex;
  gap: 24px;
  color: rgba(255, 255, 255, 0.75);
}

@media (max-width: 900px) {
  .site-header {
    padding: 12px 20px;
  }

  .nav-links {
    display: none;
  }

  .hero-section {
    min-height: 720px;
  }

  .hero-content {
    margin-top: 26px;
  }

  .intro-grid,
  .feature-band,
  .feature-band.reverse,
  .proof-section,
  .workflow-grid,
  .split-section,
  .systems-grid,
  .cta-section {
    grid-template-columns: 1fr;
  }

  .feature-band.reverse .feature-copy {
    order: 0;
  }

  .feature-copy,
  .proof-card {
    padding: 34px;
  }

  .screen-shot,
  .metric-window,
  .lead-inbox,
  .site-preview {
    margin: 0 20px 28px;
    border-radius: 8px;
  }

  .feature-band.reverse .site-preview {
    margin: 0 20px 28px;
    border-radius: 8px;
  }

  .site-hero,
  .koel-layout {
    grid-template-columns: 1fr;
  }

  .site-photo {
    min-height: 210px;
  }

  .site-nav span {
    display: none;
  }

  .metric-window {
    grid-template-columns: 42px 1fr;
  }

  .proof-card.large,
  .proof-card.yellow {
    border-radius: 8px;
    border: 1px solid var(--ink);
  }

  .proof-card.yellow {
    border-top: 0;
  }

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

  .cta-section {
    background:
      linear-gradient(90deg, transparent calc(96% - 1px), rgba(18, 18, 15, 0.22) calc(96% - 1px) calc(96% + 1px), transparent calc(96% + 1px)),
      linear-gradient(180deg, transparent 74px, rgba(18, 18, 15, 0.22) 74px 76px, transparent 76px),
      var(--yellow);
  }
}

@media (max-width: 620px) {
  .header-cta {
    display: none;
  }

  .brand-logo {
    width: 132px;
  }

  h1 {
    font-size: 42px;
  }

  .hero-copy {
    font-size: 16px;
  }

  .hero-form,
  .contact-form,
  .proof-tiles,
  .systems-grid {
    grid-template-columns: 1fr;
  }

  .hero-form input,
  .hero-form button {
    width: min(100%, 340px);
    margin: 0 auto;
  }

  .dark-intro,
  .product-section,
  .workflow-section,
  .systems-section,
  .split-section,
  .cta-section {
    padding-left: 20px;
    padding-right: 20px;
  }

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

  .request-form-preview {
    padding: 24px;
  }

  .request-form-preview h3 {
    font-size: 32px;
  }

  .preview-fields label {
    grid-template-columns: 1fr;
    gap: 8px;
  }

  .site-hero {
    padding: 22px;
  }

  .site-hero h4,
  .woon-layout h4,
  .koel-layout h4 {
    font-size: 34px;
  }

  .site-preview {
    min-height: auto;
  }

  .mini-advice-form {
    grid-template-columns: 1fr;
  }

  .mini-form {
    grid-row: auto;
    grid-column: auto;
  }

  .terminal-row,
  .inbox-card {
    grid-template-columns: 1fr;
  }

  .site-footer {
    display: grid;
  }

  .footer-links {
    flex-wrap: wrap;
  }
}
