:root {
  --paper: #f0ece4;
  --paper-deep: #e4ded3;
  --ink: #161714;
  --muted: #66665e;
  --red: #1e4cd4;
  --red-dark: #173ba8;
  --line: rgba(22, 23, 20, 0.2);
  --off-white: #f4f1ea;
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; overflow-x: clip; }
#features, #products, #support, #contact, #contact-form { scroll-margin-top: 82px; }
body {
  margin: 0;
  overflow-x: clip;
  background-color: var(--paper);
  background-image:
    radial-gradient(circle at 14% 22%, rgba(255,255,255,.46) 0 1px, transparent 1.2px),
    radial-gradient(circle at 78% 64%, rgba(22,23,20,.12) 0 .7px, transparent 1px),
    linear-gradient(112deg, rgba(255,255,255,.14), transparent 36%, rgba(22,23,20,.025));
  background-size: 17px 17px, 23px 23px, 100% 100%;
  color: var(--ink);
  font-family: Arial, Helvetica, sans-serif;
  -webkit-font-smoothing: antialiased;
}
.wp-site-blocks, .wp-block-post-content { margin: 0; padding: 0; }
.wp-block-post-content > * { margin-block-start: 0; margin-block-end: 0; }
.wp-site-blocks > header, .wp-site-blocks > footer { margin-block-start: 0; }
.wp-site-blocks .is-layout-constrained > :where(:not(.alignleft):not(.alignright):not(.alignfull)) { max-width: none; }
.default-content { padding-top: 80px; padding-bottom: 100px; }
a { color: inherit; text-decoration: none; }
button, a { -webkit-tap-highlight-color: transparent; }
button { color: inherit; font: inherit; }
::selection { background: var(--red); color: white; }

.section-shell { padding-left: clamp(24px, 5vw, 76px); padding-right: clamp(24px, 5vw, 76px); }

.site-header {
  position: sticky;
  top: 0;
  z-index: 20;
  min-height: 82px;
  display: grid;
  grid-template-columns: 1fr auto 1fr;
  align-items: center;
  gap: 28px;
  padding: 14px clamp(24px, 5vw, 76px);
  border-bottom: 1px solid var(--line);
  background: rgba(240,236,228,.9);
  backdrop-filter: blur(16px);
}
.admin-bar .site-header { top: 32px; }
.site-header > * { margin-block-start: 0; margin-block-end: 0; }
.brand-link { justify-self: start; }
.brand-logo { position: relative; display: block; width: 128px; height: 58px; margin: 0; overflow: visible; flex: 0 0 auto; justify-self: start; }
.brand-logo a { display: flex; align-items: center; width: 100%; height: 100%; }
.brand-logo img { position: static; display: block; width: 100%; height: 100%; max-width: 100%; object-fit: contain; object-position: left center; transform: none; }
.brand-logo--compact { width: 154px; height: 70px; }
.brand-logo--compact img { width: 100%; height: 100%; transform: none; }
.nav { display: flex; align-items: center; gap: clamp(22px, 3vw, 44px); }
.nav .wp-block-navigation__container { display: flex; align-items: center; gap: clamp(22px, 3vw, 44px); }
.nav a { position: relative; font-size: 13px; font-weight: 700; letter-spacing: .02em; }
.nav a::after { content: ""; position: absolute; left: 0; right: 100%; bottom: -7px; height: 1px; background: var(--red); transition: right .25s ease; }
.nav a:hover::after, .nav a:focus-visible::after { right: 0; }
.mobile-account-link { display: none !important; }
.wp-block-buttons.account-actions { justify-self: end; display: grid; grid-template-columns: repeat(2, 94px); gap: 8px; align-items: center; margin: 0; }
.account-action { width: 94px; height: 34px; margin: 0; }
.account-action .wp-block-button__link { display: flex; align-items: center; justify-content: center; width: 100%; height: 34px; padding: 0 12px; border: 1px solid transparent; border-radius: 0; font-size: 10px; font-weight: 800; text-transform: uppercase; letter-spacing: .09em; transition: background .2s, color .2s, border-color .2s; }
.account-action--login .wp-block-button__link { background: var(--ink); border-color: var(--ink); color: var(--off-white); }
.account-action--register .wp-block-button__link { background: var(--red); border-color: var(--red); color: white; }
.account-action--login .wp-block-button__link:hover { background: transparent; color: var(--ink); }
.account-action--register .wp-block-button__link:hover { background: var(--red-dark); border-color: var(--red-dark); }
.account-actions--mobile { display: none; }
.button-arrow { display: inline-block; font-size: 16px; line-height: 1; transition: transform .25s ease; }
a:hover .button-arrow { transform: translate(3px, -3px); }
.menu-toggle { display: none; }

.hero {
  position: relative;
  isolation: isolate;
  min-height: calc(100vh - 82px);
  overflow: hidden;
  background: #252722;
  color: var(--off-white);
  padding: 0;
}
.hero::before {
  content: "";
  position: absolute;
  z-index: 1;
  inset: 0;
  background:
    linear-gradient(90deg, rgba(13,14,12,.94) 0%, rgba(13,14,12,.82) 35%, rgba(13,14,12,.38) 62%, rgba(13,14,12,.08) 100%),
    linear-gradient(180deg, rgba(13,14,12,.18), transparent 42%, rgba(13,14,12,.5));
  pointer-events: none;
}
.hero .wp-block-cover__image-background { object-fit: cover; object-position: center; transform: scale(1.01); }
.hero .wp-block-cover__inner-container { position: relative; z-index: 2; width: 100%; color: inherit; }
.hero p { margin-block-start: 0; margin-block-end: 0; }
.hero .wp-block-buttons { margin-block-start: 38px; }
.hero .wp-block-button { margin: 0; }
.button .wp-block-button__link, .text-link .wp-block-button__link {
  padding: 0;
  border: 0;
  border-radius: 0;
  background: transparent;
  color: inherit;
  font: inherit;
  letter-spacing: inherit;
  text-transform: inherit;
}
.hero__content {
  min-height: calc(100vh - 82px);
  padding-top: 28px;
  padding-bottom: 34px;
  display: flex;
  flex-direction: column;
}
.eyebrow, .section-kicker { display: flex; justify-content: space-between; align-items: center; padding: 11px 0; border-top: 1px solid var(--ink); border-bottom: 1px solid var(--line); font-size: 11px; text-transform: uppercase; letter-spacing: .18em; font-weight: 800; }
.hero .eyebrow { border-top-color: rgba(244,241,234,.85); border-bottom-color: rgba(244,241,234,.24); }
.hero__grid { flex: 1; display: grid; grid-template-columns: minmax(0, 1fr); align-items: end; padding: clamp(54px, 8vw, 118px) 0 clamp(70px, 8vw, 110px); }
.hero__copy { max-width: min(940px, 66vw); }
.hero h1 { margin: 0; max-width: 940px; text-shadow: 0 2px 28px rgba(0,0,0,.34); font-family: "Arial Narrow", "Helvetica Neue", Arial, sans-serif; font-size: clamp(65px, 10.2vw, 156px); line-height: .82; letter-spacing: -.075em; font-weight: 900; text-transform: uppercase; }
.hero h1 em { color: var(--red); font-style: italic; font-weight: 900; }
.hero__lead { max-width: 610px; margin: 40px 0 0; font-size: clamp(18px, 1.65vw, 25px); line-height: 1.42; letter-spacing: -.025em; }
.hero__actions { display: flex; gap: 30px; align-items: center; margin-top: 38px; }
.button { display: inline-flex; align-items: center; justify-content: space-between; gap: 38px; min-width: 226px; padding: 17px 18px 17px 22px; font-size: 12px; font-weight: 800; text-transform: uppercase; letter-spacing: .08em; border: 1px solid var(--ink); transition: background .25s, color .25s, border-color .25s; }
.button--primary { background: var(--red); border-color: var(--red); color: white; }
.button--primary:hover { background: var(--red-dark); border-color: var(--red-dark); }
.text-link { display: inline-flex; align-items: center; gap: 20px; font-size: 12px; font-weight: 800; text-transform: uppercase; letter-spacing: .08em; border-bottom: 1px solid var(--ink); padding: 8px 0; }
.hero .text-link { border-bottom-color: rgba(244,241,234,.72); }
.text-link span { transition: transform .25s; }
.text-link:hover span { transform: translateY(3px); }

.media-stage { position: relative; overflow: hidden; border: 1px solid var(--ink); background-color: #e0dbd1; background-image: linear-gradient(rgba(22,23,20,.045) 1px, transparent 1px), linear-gradient(90deg, rgba(22,23,20,.045) 1px, transparent 1px); background-size: 42px 42px; }
.media-stage--hero { min-height: clamp(290px, 43vw, 610px); }
.media-stage::after { content: ""; position: absolute; top: 0; bottom: 0; left: -20%; width: 13%; background: linear-gradient(90deg, transparent, rgba(255,255,255,.18), transparent); transform: skewX(-18deg); animation: stage-scan 7s ease-in-out infinite; }
@keyframes stage-scan { 0%, 18% { left: -20%; } 75%, 100% { left: 120%; } }
.media-stage__label { position: absolute; top: 20px; left: 20px; right: 20px; display: flex; justify-content: space-between; font: 700 10px/1 monospace; text-transform: uppercase; letter-spacing: .1em; }
.media-stage__caption { position: absolute; left: 20px; bottom: 18px; font-size: 11px; font-weight: 800; text-transform: uppercase; letter-spacing: .12em; }
.media-stage__guide { position: absolute; inset: 20% 13%; display: grid; grid-template-columns: repeat(3, 1fr); border-top: 1px solid rgba(22,23,20,.28); border-bottom: 1px solid rgba(22,23,20,.28); }
.media-stage__guide span { border-right: 1px solid rgba(22,23,20,.18); }
.media-stage__guide span:first-child { border-left: 1px solid rgba(22,23,20,.18); }
.media-stage__corner { position: absolute; width: 16px; height: 16px; border-color: var(--red); border-style: solid; z-index: 1; }
.media-stage__corner--tl { left: 8%; top: 13%; border-width: 2px 0 0 2px; }
.media-stage__corner--tr { right: 8%; top: 13%; border-width: 2px 2px 0 0; }
.media-stage__corner--bl { left: 8%; bottom: 13%; border-width: 0 0 2px 2px; }
.media-stage__corner--br { right: 8%; bottom: 13%; border-width: 0 2px 2px 0; }

.signal-bar { overflow: hidden; background: var(--red); color: white; border-top: 1px solid var(--red-dark); border-bottom: 1px solid var(--red-dark); }
.signal-bar__track { width: max-content; display: flex; gap: 28px; align-items: center; padding: 17px 0; animation: ticker 26s linear infinite; font: 800 12px/1 monospace; text-transform: uppercase; letter-spacing: .1em; }
.signal-bar__track::after { content: "HOS records   •   Asset visibility   •   Dash cameras   •   Fuel control   •   Driver support"; word-spacing: 28px; }
.signal-bar i { font-style: normal; opacity: .55; }
@keyframes ticker { to { transform: translateX(-50%); } }

.intro { padding-top: clamp(100px, 11vw, 170px); padding-bottom: clamp(100px, 11vw, 170px); }
.section-kicker span:last-child { font-family: monospace; color: var(--red); }
.intro__heading { display: grid; grid-template-columns: 1.45fr .55fr; gap: 60px; align-items: end; padding: 70px 0 88px; }
.intro h2, .features h2, .support-band h2, .closing h2 { margin: 0; font-family: "Arial Narrow", "Helvetica Neue", Arial, sans-serif; font-weight: 900; letter-spacing: -.06em; text-transform: uppercase; }
.intro h2 { font-size: clamp(58px, 8vw, 118px); line-height: .88; }
.intro__heading p { margin: 0; max-width: 470px; font-size: 18px; line-height: 1.55; }
.eld-feature-grid { display: grid; grid-template-columns: repeat(4, 1fr); border-top: 1px solid var(--ink); border-left: 1px solid var(--ink); }
.eld-feature { min-height: 255px; padding: 20px 22px 28px; border-right: 1px solid var(--ink); border-bottom: 1px solid var(--ink); transition: background .25s ease; }
.eld-feature:hover { background: rgba(255,255,255,.22); }
.eld-feature__number { display: block; font: 700 10px/1 monospace; color: var(--red); }
.eld-feature h3 { max-width: 210px; margin: 70px 0 16px; font-size: 22px; line-height: 1.05; letter-spacing: -.035em; text-transform: uppercase; }
.eld-feature p { margin: 0; max-width: 260px; color: var(--muted); font-size: 14px; line-height: 1.55; }

.features { padding-top: 36px; padding-bottom: clamp(100px, 10vw, 150px); background: var(--ink); color: var(--off-white); }
.section-kicker--dark { border-top-color: var(--off-white); border-bottom-color: rgba(244,241,234,.25); }
.features__head { display: grid; grid-template-columns: 1.4fr .6fr; gap: 60px; align-items: end; padding: 76px 0 90px; }
.features h2 { font-size: clamp(58px, 7.5vw, 110px); line-height: .86; }
.features h2 em { color: var(--red); font-style: italic; }
.features__head p { margin: 0; max-width: 460px; color: #aaa89f; font-size: 17px; line-height: 1.55; }
.feature-browser { border-top: 1px solid rgba(244,241,234,.6); }
.feature-tabs { display: grid; grid-template-columns: repeat(4, 1fr); }
.feature-tab { appearance: none; display: grid; grid-template-columns: auto 1fr auto; gap: 14px; text-align: left; padding: 20px 18px; border: 0; border-right: 1px solid rgba(244,241,234,.2); border-bottom: 1px solid rgba(244,241,234,.2); background: transparent; cursor: pointer; transition: background .25s, color .25s; }
.feature-tab:last-child { border-right: 0; }
.feature-tab span { font: 700 9px/1.4 monospace; color: #85847d; }
.feature-tab strong { font-size: 13px; }
.feature-tab i { font-style: normal; color: var(--red); }
.feature-tab:hover, .feature-tab--active { background: var(--off-white); color: var(--ink); }
.feature-detail {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(0, var(--wp--custom--eld-go--product-media-max-width, 580px));
  align-items: center;
  width: min(100%, 1180px);
  margin-right: auto;
  margin-left: auto;
  min-height: var(--wp--custom--eld-go--product-detail-min-height, 380px);
  animation: panel-in .35s ease both;
}
.feature-panel[hidden] { display: none; }
@keyframes panel-in { from { opacity: .5; transform: translateY(8px); } }
.feature-detail__copy {
  align-self: stretch;
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding: 38px 0;
}
.feature-detail__label { font: 700 10px/1 monospace; text-transform: uppercase; letter-spacing: .14em; color: var(--red); }
.feature-detail h3 { max-width: 560px; margin: 24px 0 18px; font-size: clamp(34px, 3.25vw, 50px); line-height: 1; letter-spacing: -.055em; }
.feature-detail ul { width: 100%; max-width: 470px; list-style: none; margin: 28px 0 0; padding: 0; border-top: 1px solid rgba(244,241,234,.2); }
.feature-detail li { padding: 12px 0; border-bottom: 1px solid rgba(244,241,234,.2); font-size: 12px; font-weight: 700; text-transform: uppercase; letter-spacing: .07em; }
.feature-detail li::before { content: "—"; margin-right: 12px; color: var(--red); }
.media-stage--feature {
  justify-self: start;
  width: 100%;
  height: var(--wp--custom--eld-go--product-media-height, 340px);
  min-height: 0;
  margin: 20px 0;
  border-color: rgba(244,241,234,.28);
  background-color: #262723;
  background-image: linear-gradient(rgba(244,241,234,.045) 1px, transparent 1px), linear-gradient(90deg, rgba(244,241,234,.045) 1px, transparent 1px);
  color: var(--off-white);
}
.media-stage--photo { background: #1f201d; }
.media-stage--photo::after { display: none; }
.product-photo { display: block; width: 100%; height: 100%; min-height: 0; margin: 0; }
.product-photo img { display: block; width: 100%; height: 100%; min-height: 0; object-fit: cover; object-position: center; }
.feature-wireframe { position: absolute; inset: 18% 10% 12%; border: 1px solid rgba(244,241,234,.28); }
.feature-wireframe__rail { position: absolute; inset: 0 auto 0 0; width: 16%; border-right: 1px solid rgba(244,241,234,.22); }
.feature-wireframe__header { position: absolute; left: 16%; right: 0; top: 0; height: 15%; border-bottom: 1px solid rgba(244,241,234,.22); }
.feature-wireframe__block { position: absolute; border: 1px solid rgba(244,241,234,.18); background: rgba(244,241,234,.035); }
.feature-wireframe__block--one { left: 21%; top: 23%; width: 33%; height: 25%; }
.feature-wireframe__block--two { right: 5%; top: 23%; width: 35%; height: 54%; }
.feature-wireframe__block--three { left: 21%; bottom: 23%; width: 33%; height: 20%; }

.support-band { display: grid; grid-template-columns: .55fr 1fr .65fr; gap: 50px; padding-top: 70px; padding-bottom: 78px; border-top: 1px solid var(--ink); border-bottom: 1px solid var(--ink); background: var(--paper-deep); }
.support-band__label { max-width: 235px; font: 700 11px/1.45 monospace; text-transform: uppercase; letter-spacing: .06em; }
.support-band h2 { font-size: clamp(54px, 6vw, 86px); line-height: .9; }
.support-band__content p { max-width: 540px; margin: 32px 0 0; color: var(--muted); font-size: 16px; line-height: 1.55; }
.support-band__links { align-self: end; border-top: 1px solid var(--ink); }
.support-band__links span, .support-band__links p { display: block; margin: 0; padding: 11px 0; border-bottom: 1px solid var(--line); font-size: 12px; font-weight: 800; text-transform: uppercase; letter-spacing: .06em; }

.closing { display: block; min-height: 720px; padding-top: clamp(76px, 7vw, 108px); padding-bottom: clamp(76px, 7vw, 108px); background: var(--red); color: white; }
.closing__stamp { display: none !important; }
.closing__copy { width: 100%; }
.section-kicker__solo { display: block; margin-bottom: clamp(74px, 8vw, 118px); font: 800 11px/1 monospace; text-transform: uppercase; letter-spacing: .16em; }
.closing h2 { max-width: 1500px; font-size: clamp(66px, 8.7vw, 136px); line-height: .82; }
.closing h2 em { color: var(--ink); font-style: italic; }
.closing__copy p { max-width: 600px; margin: 44px 0 35px; font-size: 18px; line-height: 1.5; }
.button--light { background: var(--off-white); color: var(--ink); border-color: var(--off-white); }
.button--light:hover { background: var(--ink); color: white; border-color: var(--ink); }

.footer { display: grid; grid-template-columns: 1.1fr .7fr .7fr; gap: 50px; padding: 58px clamp(24px,5vw,76px); background: var(--ink); color: var(--off-white); }
.footer p { max-width: 270px; margin: 24px 0 0; color: #9a9992; font-size: 13px; line-height: 1.5; }
.footer__nav, .footer__nav .wp-block-navigation__container { display: grid; align-content: start; gap: 10px; font-size: 13px; font-weight: 700; }
.footer__nav a:hover { color: var(--red); }
.footer__meta { display: flex; flex-direction: column; align-items: flex-end; gap: 10px; color: #777771; font: 700 9px/1.4 monospace; text-transform: uppercase; letter-spacing: .08em; }
.footer__meta p { margin: 0; color: inherit; font: inherit; }

.legal-page { min-height: 720px; padding-top: 150px; padding-bottom: 120px; background: var(--paper); }
.legal-page__intro { display: grid; grid-template-columns: minmax(0, 1.45fr) minmax(260px, .55fr); gap: clamp(48px, 8vw, 140px); align-items: end; padding: clamp(70px, 8vw, 120px) 0 clamp(74px, 8vw, 116px); border-bottom: 1px solid var(--ink); }
.legal-page h1 { max-width: 980px; margin: 0; font-family: "Arial Narrow", "Helvetica Neue", Arial, sans-serif; font-size: clamp(64px, 8.2vw, 126px); font-weight: 900; line-height: .84; letter-spacing: -.06em; text-transform: uppercase; }
.legal-page__intro > p { max-width: 420px; margin: 0; color: var(--muted); font: 800 11px/1.5 monospace; letter-spacing: .1em; text-transform: uppercase; }
.legal-page__layout { display: grid; grid-template-columns: minmax(210px, .45fr) minmax(0, 1.55fr); gap: clamp(48px, 8vw, 140px); padding-top: clamp(64px, 7vw, 100px); }
.legal-page__aside { align-self: start; border-top: 1px solid var(--line); padding-top: 18px; }
.legal-page__aside > p:first-child { margin: 0; }
.legal-page__aside > p:first-child strong { color: var(--red); font: 800 10px/1.3 monospace; letter-spacing: .12em; text-transform: uppercase; }
.legal-page__aside > p:last-child { max-width: 260px; margin: 20px 0 0; color: var(--muted); font-size: 13px; line-height: 1.6; }
.legal-page__content { width: 100%; max-width: 900px; }
.legal-page__content > :first-child { margin-top: 0; }
.legal-page__content h2 { margin: 72px 0 20px; padding-top: 20px; border-top: 1px solid var(--line); font-family: "Arial Narrow", "Helvetica Neue", Arial, sans-serif; font-size: clamp(25px, 3vw, 36px); font-weight: 900; line-height: 1; letter-spacing: -.025em; text-transform: uppercase; }
.legal-page__content h3 { margin: 44px 0 14px; font-size: 16px; line-height: 1.35; letter-spacing: -.01em; }
.legal-page__content p { margin: 0 0 22px; color: #41423d; font-size: 16px; line-height: 1.75; }
.legal-page__content a { color: var(--red); text-decoration: underline; text-decoration-thickness: 1px; text-underline-offset: 3px; }
.legal-page__content .legal-meta { margin: 22px 0; padding: 16px 0; border-top: 1px solid var(--line); border-bottom: 1px solid var(--line); color: var(--ink); font: 700 12px/1.65 monospace; }
.legal-list { margin: 0 0 28px; padding-left: 25px; color: #41423d; }
.legal-list li { margin-bottom: 12px; padding-left: 8px; font-size: 16px; line-height: 1.7; }
.legal-list li::marker { color: var(--red); font-weight: 800; }
.legal-list--nested { margin-left: 24px; }

.contact-hero { display: none; padding-top: 28px; padding-bottom: clamp(90px, 10vw, 150px); }
.contact-hero__grid { display: grid; grid-template-columns: 1.45fr .55fr; gap: clamp(55px, 9vw, 140px); align-items: end; padding-top: clamp(70px, 9vw, 135px); }
.contact-hero__label { display: block; margin-bottom: 32px; font: 800 11px/1 monospace; text-transform: uppercase; letter-spacing: .16em; color: var(--red); }
.contact-hero h1 { margin: 0; font-family: "Arial Narrow", "Helvetica Neue", Arial, sans-serif; font-size: clamp(65px, 10vw, 146px); line-height: .83; letter-spacing: -.075em; font-weight: 900; text-transform: uppercase; }
.contact-hero h1 em { color: var(--red); font-style: italic; }
.contact-hero__copy > p { max-width: 680px; margin: 44px 0 0; font-size: clamp(18px, 1.7vw, 24px); line-height: 1.5; letter-spacing: -.02em; }
.contact-hero__aside { padding-left: 24px; border-left: 1px solid var(--line); }
.contact-hero__aside > span { font: 800 10px/1 monospace; text-transform: uppercase; letter-spacing: .14em; color: var(--red); }
.contact-hero__aside ul { list-style: none; margin: 55px 0 0; padding: 0; border-top: 1px solid var(--ink); }
.contact-hero__aside li { padding: 13px 0; border-bottom: 1px solid var(--line); font-size: 12px; font-weight: 800; text-transform: uppercase; letter-spacing: .07em; }
.contact-section {
  display: grid;
  grid-template-columns: .7fr 1.3fr;
  gap: clamp(60px, 9vw, 140px);
  padding-top: var(--wp--custom--eld-go--contact-section-top-padding, 56px);
  padding-bottom: clamp(80px, 8vw, 120px);
  background: var(--ink);
  color: var(--off-white);
}
.contact-section__number { display: block; margin-bottom: 60px; font: 700 10px/1 monospace; color: var(--red); text-transform: uppercase; letter-spacing: .1em; }
.contact-section h2 { margin: 0; font-family: "Arial Narrow", "Helvetica Neue", Arial, sans-serif; font-size: clamp(50px, 6.5vw, 94px); line-height: .88; letter-spacing: -.06em; font-weight: 900; text-transform: uppercase; }
.contact-section__intro > p { max-width: 450px; margin: 36px 0 0; color: #aaa89f; font-size: 16px; line-height: 1.6; }
.contact-section__response { max-width: 380px; margin-top: 80px; padding-top: 16px; border-top: 1px solid rgba(244,241,234,.45); }
.contact-section__response span { font: 800 10px/1 monospace; color: var(--red); text-transform: uppercase; letter-spacing: .1em; }
.contact-section__response p { margin: 16px 0 0; color: #aaa89f; font-size: 13px; line-height: 1.55; }
.contact-form { align-self: start; }
.contact-form-wrap { align-self: start; }
.wpcf7 form { margin: 0; }
.wpcf7 .contact-form > p,
.wpcf7 .form-consent p,
.wpcf7 .form-submit-row p { margin: 0; }
.wpcf7 .form-row > p { display: contents; }
.wpcf7 .form-row br { display: none; }
.wpcf7 .wpcf7-form-control-wrap { display: block; }
.wpcf7 .wpcf7-not-valid-tip { margin-top: 8px; color: #ff737b; font-size: 11px; }
.wpcf7 form .wpcf7-response-output { margin: 28px 0 0; padding: 14px 16px; border: 1px solid rgba(244,241,234,.45); color: #cbc8bf; font-size: 13px; }
.wpcf7 form.sent .wpcf7-response-output { border-color: var(--red); }
.form-row { display: grid; grid-template-columns: 1fr 1fr; column-gap: 24px; }
.form-field { display: block; margin-bottom: 22px; }
.form-field > span { display: block; margin-bottom: 8px; font-size: 11px; font-weight: 800; text-transform: uppercase; letter-spacing: .1em; }
.wpcf7 .form-field > .wpcf7-form-control-wrap { margin-bottom: 0; font-size: inherit; font-weight: inherit; text-transform: none; letter-spacing: normal; }
.form-field > span i { color: var(--red); font-style: normal; }
.form-field input, .form-field select, .form-field textarea { width: 100%; border: 0; border-bottom: 1px solid rgba(244,241,234,.42); border-radius: 0; padding: 13px 0 15px; background: transparent; color: var(--off-white); font: inherit; font-size: 16px; outline: none; transition: border-color .2s; }
.form-field input:focus, .form-field select:focus, .form-field textarea:focus { border-color: var(--red); }
.form-field input::placeholder, .form-field textarea::placeholder { color: #777771; opacity: 1; }
.form-field select { appearance: none; background-image: linear-gradient(45deg, transparent 50%, var(--red) 50%), linear-gradient(135deg, var(--red) 50%, transparent 50%); background-position: calc(100% - 10px) 52%, calc(100% - 5px) 52%; background-size: 5px 5px, 5px 5px; background-repeat: no-repeat; }
.form-field select option { background: var(--ink); color: var(--off-white); }
.form-field textarea { height: 150px; min-height: 150px; resize: vertical; line-height: 1.55; }
.form-consent { display: flex; align-items: flex-start; gap: 13px; max-width: 620px; color: #aaa89f; font-size: 12px; line-height: 1.5; cursor: pointer; }
.form-consent input { width: 16px; height: 16px; margin: 1px 0 0; accent-color: var(--red); }
.form-submit-row { display: flex; align-items: center; gap: 26px; margin-top: 24px; }
.form-note { max-width: 280px; margin: 0; color: #777771; font: 700 9px/1.45 monospace; text-transform: uppercase; letter-spacing: .06em; }
.form-status { display: none; margin-top: 34px; padding: 18px 20px; border: 1px solid rgba(244,241,234,.35); }
.form-status--visible { display: block; animation: panel-in .3s ease both; }
.form-status span { font: 800 10px/1 monospace; color: var(--red); text-transform: uppercase; letter-spacing: .1em; }
.form-status p { margin: 8px 0 0; color: #cbc8bf; font-size: 13px; }
.contact-strip { display: grid; grid-template-columns: .5fr 1.5fr; gap: 55px; padding-top: 40px; padding-bottom: 40px; border-top: 1px solid var(--ink); border-bottom: 1px solid var(--ink); background: var(--paper-deep); }
.contact-strip p { margin: 0; font: 800 10px/1.3 monospace; text-transform: uppercase; letter-spacing: .08em; }
.contact-strip div { display: grid; grid-template-columns: repeat(4, 1fr); gap: 20px; }
.contact-strip span, .contact-strip div > p { margin: 0; font-size: 11px; font-weight: 800; text-transform: uppercase; letter-spacing: .06em; }
.contact-strip span::before, .contact-strip div > p::before { content: "—"; margin-right: 9px; color: var(--red); }
.eld-go-form-setup { padding: 28px; border: 1px solid rgba(244,241,234,.35); color: var(--off-white); }
.eld-go-form-setup p { margin: 10px 0 0; color: #aaa89f; }

.editor-styles-wrapper .feature-panel { display: grid !important; margin: 0 0 30px; border-top: 1px solid rgba(244,241,234,.25); }
.editor-styles-wrapper .feature-browser > .block-editor-inner-blocks > .block-editor-block-list__layout { display: block; }
.editor-styles-wrapper .site-header { position: relative; top: auto; }
.editor-styles-wrapper .contact-hero { display: block; }

@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
  *, *::before, *::after { animation-duration: .01ms !important; animation-iteration-count: 1 !important; transition-duration: .01ms !important; }
}

@media (max-width: 980px) {
  .site-header { grid-template-columns: 1fr auto; }
  .account-actions--desktop { display: none !important; }
  .site-header .nav {
    position: static;
    display: flex !important;
    justify-self: end;
    width: auto;
    padding: 0;
    border: 0;
    background: transparent;
    box-shadow: none;
  }
  .site-header .nav > .wp-block-navigation__responsive-container-open {
    display: inline-flex !important;
    align-items: center;
    justify-content: center;
    width: 48px;
    height: 44px;
    margin: 0;
    padding: 0;
    border: 1px solid var(--line);
    color: var(--ink);
    background: transparent;
  }
  .site-header .nav > .wp-block-navigation__responsive-container:not(.is-menu-open) {
    display: none !important;
  }
  .site-header .nav > .wp-block-navigation__responsive-container.is-menu-open {
    position: absolute !important;
    z-index: 30;
    top: 100%;
    bottom: auto !important;
    left: 0;
    right: 0;
    display: block !important;
    width: 100% !important;
    height: auto !important;
    min-height: 0 !important;
    max-height: calc(100vh - 70px);
    max-height: calc(100dvh - 70px);
    overflow-y: auto;
    overscroll-behavior: contain;
    padding: 18px clamp(24px,5vw,76px) 26px !important;
    border-bottom: 1px solid var(--ink);
    background: var(--paper) !important;
    box-shadow: 0 18px 30px rgba(22,23,20,.12);
  }
  .site-header .nav .wp-block-navigation__responsive-dialog,
  .site-header .nav .wp-block-navigation__responsive-container-content {
    width: 100%;
  }
  .site-header .nav .wp-block-navigation__responsive-container-close {
    position: absolute;
    top: 14px;
    right: clamp(24px,5vw,76px);
    display: inline-flex !important;
    align-items: center;
    justify-content: center;
    width: 44px;
    height: 44px;
  }
  .site-header .nav .wp-block-navigation__responsive-container-content {
    padding-top: 44px;
  }
  .site-header .nav .wp-block-navigation__container {
    display: grid;
    grid-template-columns: minmax(0, 1fr) minmax(0, 1fr);
    column-gap: 8px;
    width: 100%;
    align-items: stretch;
    row-gap: 0;
  }
  .site-header .nav .wp-block-navigation-item { grid-column: 1 / -1; width: 100%; border-bottom: 1px solid var(--line); }
  .site-header .nav .wp-block-navigation-item > a { display: flex; align-items: center; min-height: 48px; width: 100%; font-size: 14px; }
  .site-header .nav .wp-block-navigation-item > a::after { bottom: 7px; }
  .site-header .nav .mobile-account-link { display: flex !important; grid-column: auto; width: 100%; margin-top: 16px; border: 0; }
  .site-header .nav .mobile-account-link > a { justify-content: center; min-height: 40px; border: 1px solid var(--ink); font-size: 10px; text-transform: uppercase; letter-spacing: .09em; }
  .site-header .nav .mobile-account-link--login > a { background: var(--ink); color: var(--off-white); }
  .site-header .nav .mobile-account-link--register > a { border-color: var(--red); background: var(--red); color: white; }
  .hero__grid, .intro__heading, .features__head, .feature-detail, .contact-hero__grid, .contact-section { grid-template-columns: 1fr; }
  .intro__heading p, .features__head p { max-width: 620px; }
  .eld-feature-grid { grid-template-columns: 1fr 1fr; }
  .feature-detail__copy { padding-right: 0; }
  .media-stage--feature { justify-self: start; width: min(100%, 680px); height: 390px; margin-top: 0; }
  .support-band { grid-template-columns: 1fr 1fr; }
  .support-band__content { grid-column: 1 / -1; grid-row: 1; }
  .support-band__label, .support-band__links { align-self: end; }
  .contact-hero__aside { max-width: 520px; }
  .contact-section { gap: 75px; }
  .contact-form-wrap { order: -1; }
  .contact-section__intro { order: 2; }
  .contact-section__response { margin-top: 45px; }
  .contact-strip { grid-template-columns: 1fr; gap: 25px; }
}

@media (max-width: 680px) {
  #features, #products, #support, #contact, #contact-form { scroll-margin-top: 70px; }
  .site-header { min-height: 70px; padding-top: 10px; padding-bottom: 10px; }
  .brand-logo { width: 110px; height: 50px; }
  .brand-logo img { width: 100%; height: 100%; transform: none; }
  .hero { min-height: 710px; }
  .hero::before { background: linear-gradient(90deg, rgba(13,14,12,.9) 0%, rgba(13,14,12,.72) 58%, rgba(13,14,12,.34) 100%), linear-gradient(180deg, rgba(13,14,12,.14), transparent 38%, rgba(13,14,12,.64)); }
  .hero .wp-block-cover__image-background { object-position: 70% center; }
  .hero__content { min-height: 710px; padding-top: 20px; padding-bottom: 24px; }
  .hero__grid { padding: 46px 0 54px; }
  .hero__copy { max-width: 100%; }
  .hero h1 { font-size: clamp(54px, 18vw, 88px); line-height: .85; }
  .hero__lead { margin-top: 28px; font-size: 17px; }
  .hero__actions { align-items: flex-start; flex-direction: column; gap: 16px; margin-top: 28px; }
  .media-stage__label { top: 14px; left: 14px; right: 14px; font-size: 8px; }
  .signal-bar__track { animation-duration: 18s; }
  .intro { padding-top: 80px; padding-bottom: 90px; }
  .intro__heading, .features__head { padding: 52px 0 62px; gap: 30px; }
  .intro h2, .features h2, .support-band h2 { font-size: clamp(48px, 15vw, 72px); }
  .eld-feature-grid { grid-template-columns: 1fr; }
  .eld-feature { min-height: 210px; }
  .eld-feature h3 { margin-top: 44px; }
  .features { padding-top: 24px; }
  .feature-tabs { grid-template-columns: 1fr 1fr; }
  .feature-tab:nth-child(2) { border-right: 0; }
  .feature-detail { min-height: auto; }
  .feature-detail__copy { padding-top: 44px; padding-bottom: 38px; }
  .media-stage--feature { width: 100%; height: 300px; min-height: 0; margin-bottom: 0; }
  .product-photo, .product-photo img { min-height: 0; }
  .support-band { grid-template-columns: 1fr; gap: 38px; padding-top: 55px; padding-bottom: 58px; }
  .support-band__content, .support-band__label, .support-band__links { grid-column: auto; grid-row: auto; }
  .closing { min-height: 620px; padding-top: 58px; padding-bottom: 68px; }
  .section-kicker__solo { margin-bottom: 68px; }
  .closing h2 { font-size: clamp(58px, 18vw, 86px); }
  .footer { grid-template-columns: 1fr; }
  .footer__meta { align-items: flex-start; }
  .legal-page { min-height: 620px; padding-top: 112px; padding-bottom: 78px; }
  .legal-page__intro, .legal-page__layout { grid-template-columns: 1fr; gap: 40px; }
  .legal-page__intro { padding-top: 62px; padding-bottom: 62px; }
  .legal-page h1 { font-size: clamp(52px, 16vw, 82px); }
  .legal-page__aside > p:last-child { max-width: 440px; }
  .legal-page__content h2 { margin-top: 58px; }
  .legal-page__content p, .legal-list li { font-size: 15px; }
  .legal-list--nested { margin-left: 8px; }
  .contact-hero { display: none; padding-top: 20px; padding-bottom: 80px; }
  .contact-hero__grid { padding-top: 60px; gap: 60px; }
  .contact-hero h1 { font-size: clamp(54px, 18vw, 86px); }
  .contact-section { gap: 46px; padding-top: 34px; padding-bottom: 72px; }
  .contact-form-wrap { scroll-margin-top: 70px; }
  .form-row { grid-template-columns: 1fr; gap: 0; }
  .form-field { margin-bottom: 18px; }
  .form-field textarea { height: 130px; min-height: 130px; }
  .form-submit-row { align-items: stretch; flex-direction: column; margin-top: 24px; }
  .form-submit-row .button, .form-submit-row .wpcf7-submit { width: 100%; max-width: 100%; justify-content: center; }
  .contact-strip div { grid-template-columns: 1fr 1fr; row-gap: 14px; }
}

@media (max-width: 782px) {
  .admin-bar .site-header { top: 46px; }
}
