:root {
  --bg: #08090b;
  --panel: #121418;
  --text: #f4f4f1;
  --muted: #9299a1;
  --red: #e3222a;
  --line: #ffffff24;
}
* {
  box-sizing: border-box;
}
html {
  scroll-behavior: smooth;
}
body {
  background: var(--bg);
  color: var(--text);
  font-family: Arial, sans-serif;
  margin: 0;
}
a {
  color: inherit;
  text-decoration: none;
}
h1,
h2,
h3,
p {
  margin-top: 0;
}
.site-header {
  z-index: 20;
  border-bottom: 1px solid var(--line);
  backdrop-filter: blur(16px);
  background: #08090bb8;
  grid-template-columns: 220px 1fr 164px;
  align-items: center;
  gap: 32px;
  width: 100%;
  height: 82px;
  padding: 0 3.5vw;
  display: grid;
  position: absolute;
}
.brand {
  letter-spacing: -0.8px;
  width: max-content;
  font-family: Arial, Helvetica, sans-serif;
  font-size: 29px;
  font-style: italic;
  font-weight: 900;
  position: relative;
}
.brand span {
  color: var(--red);
}
.brand i {
  background: linear-gradient(90deg, var(--red) 0 72%, transparent 72%);
  height: 2px;
  display: block;
  position: absolute;
  bottom: -7px;
  left: 0;
  right: 0;
}
.site-header nav {
  color: #d9dadc;
  justify-content: center;
  gap: clamp(24px, 4vw, 66px);
  font-size: 14px;
  display: flex;
}
.site-header nav a:hover {
  color: #fff;
}
.header-cta {
  border: 1px solid #ffffff73;
  justify-content: center;
  align-items: center;
  gap: 12px;
  height: 46px;
  font-size: 14px;
  display: flex;
}
.hero {
  align-items: center;
  height: 100vh;
  min-height: 820px;
  max-height: 980px;
  display: flex;
  position: relative;
  overflow: hidden;
}
.hero-media {
  background: url("/assets/dynolab-r35-hero.png") 50% / cover no-repeat;
  position: absolute;
  inset: 0;
}
.hero-video {
  object-fit: cover;
  object-position: center;
  width: 100%;
  height: 100%;
  display: block;
}
.hero-shade {
  background: linear-gradient(
      90deg,
      #040507fa 0%,
      #040507e8 30%,
      #04050761 55%,
      #0405070d 78%
    ),
    linear-gradient(transparent 60%, #04050773);
  position: absolute;
  inset: 0;
}
.hero-content {
  z-index: 2;
  width: min(600px, 46vw);
  margin-left: 3.5vw;
  padding-top: 66px;
  position: relative;
}
.eyebrow,
.kicker {
  letter-spacing: 0.18em;
  color: #c2c6cb;
  font-size: 12px;
  font-weight: 700;
}
.eyebrow {
  align-items: center;
  gap: 16px;
  display: flex;
}
.eyebrow > span {
  background: var(--red);
  width: 62px;
  height: 2px;
}
h1 {
  letter-spacing: -0.02em;
  text-transform: uppercase;
  margin: 22px 0 25px;
  font-family: "Arial Black", Arial, Helvetica, sans-serif;
  font-size: clamp(76px, 8.2vw, 118px);
  font-weight: 900;
  line-height: 0.86;
}
h1 em {
  color: var(--red);
  font-style: normal;
}
.hero-copy {
  color: #c2c6cb;
  max-width: 530px;
  font-size: 18px;
  line-height: 1.6;
}
.hero-actions {
  flex-wrap: wrap;
  gap: 16px;
  margin-top: 30px;
  display: flex;
}
.button {
  justify-content: center;
  align-items: center;
  gap: 18px;
  min-height: 54px;
  padding: 0 24px;
  font-size: 14px;
  font-weight: 650;
  display: inline-flex;
}
.button-primary {
  background: var(--red);
  color: #fff;
}
.button-secondary {
  border: 1px solid #ffffff8c;
}
.telemetry {
  z-index: 3;
  backdrop-filter: blur(12px);
  background: #07080aeb;
  border-top: 1px solid #e3222a8c;
  grid-template-columns: repeat(4, 1fr);
  min-height: 105px;
  padding: 20px 3.5vw;
  display: grid;
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
}
.telemetry div {
  border-left: 1px solid #e3222a99;
  flex-direction: column;
  gap: 8px;
  padding-left: 24px;
  display: flex;
}
.telemetry small {
  color: #969da5;
  letter-spacing: 0.2em;
  font-size: 10px;
}
.telemetry strong {
  letter-spacing: 0.04em;
  font-family: Arial, Helvetica, sans-serif;
  font-size: 21px;
  font-weight: 800;
}
.telemetry strong span {
  color: #a3a8ae;
  font-size: 13px;
}
.section {
  padding: 112px max(3.5vw, 36px);
}
.section-label {
  color: #777e87;
  letter-spacing: 0.18em;
  font-size: 11px;
}
.intro {
  border-bottom: 1px solid var(--line);
  grid-template-columns: 1fr 2.6fr;
  display: grid;
}
.intro-copy {
  max-width: 880px;
}
.kicker {
  color: var(--red);
  margin-bottom: 18px;
}
h2 {
  letter-spacing: -0.018em;
  text-transform: uppercase;
  font-family: "Arial Black", Arial, Helvetica, sans-serif;
  font-size: clamp(44px, 5vw, 74px);
  font-weight: 900;
  line-height: 1.02;
}
.intro-copy > p:last-child,
.tuner-copy > p,
.scene-copy > p,
.status > p {
  color: var(--muted);
  max-width: 720px;
  font-size: 18px;
  line-height: 1.7;
}
.services {
  border-bottom: 1px solid var(--line);
  grid-template-columns: repeat(3, 1fr);
  padding-top: 0;
  padding-bottom: 0;
  display: grid;
}
.services article {
  border-left: 1px solid var(--line);
  min-height: 390px;
  padding: 64px 40px;
  position: relative;
}
.services article:last-child {
  border-right: 1px solid var(--line);
}
.services article > span,
.steps article > span {
  color: var(--red);
  letter-spacing: 0.18em;
  font-size: 12px;
}
.services h3,
.steps h3 {
  text-transform: uppercase;
  margin: 76px 0 16px;
  font-family: Arial, Helvetica, sans-serif;
  font-size: 28px;
  font-weight: 900;
}
.services p,
.steps p {
  color: var(--muted);
  line-height: 1.65;
}
.services a {
  gap: 10px;
  font-size: 13px;
  font-weight: 700;
  display: flex;
  position: absolute;
  bottom: 50px;
}
.tuner {
  background: #0c0e11;
  grid-template-columns: 1.05fr 0.95fr;
  align-items: center;
  gap: 7vw;
  display: grid;
}
.tuner-visual {
  align-items: center;
  min-height: 530px;
  display: flex;
}
.curve {
  aspect-ratio: 1.45;
  border: 1px solid var(--line);
  background: radial-gradient(circle at 70% 40%, #e3222a1f, transparent 42%),
    #090b0d;
  width: 100%;
  padding: 26px;
  position: relative;
}
.curve svg {
  width: 100%;
  height: 100%;
  overflow: visible;
}
.grid {
  fill: none;
  stroke: #ffffff14;
  stroke-width: 1;
}
.line-muted,
.line-red {
  fill: none;
  stroke-width: 4;
}
.line-muted {
  stroke: #747b84;
}
.line-red {
  stroke: var(--red);
  filter: drop-shadow(0 0 7px #e3222a73);
}
.curve-stat {
  flex-direction: column;
  gap: 8px;
  display: flex;
  position: absolute;
  bottom: 28px;
  left: 32px;
}
.curve-stat small {
  color: #7f868e;
  letter-spacing: 0.16em;
}
.curve-stat strong {
  font-family: Arial, Helvetica, sans-serif;
  font-size: 25px;
  font-weight: 900;
}
.tuner-copy ul {
  border-top: 1px solid var(--line);
  margin: 28px 0;
  padding: 0;
  list-style: none;
}
.tuner-copy li {
  border-bottom: 1px solid var(--line);
  color: #d0d3d6;
  padding: 15px 0 15px 25px;
  position: relative;
}
.tuner-copy li:before {
  content: "";
  background: var(--red);
  width: 8px;
  height: 2px;
  position: absolute;
  top: 22px;
  left: 0;
}
.text-link {
  border-bottom: 1px solid var(--red);
  gap: 12px;
  padding-bottom: 7px;
  font-weight: 700;
  display: inline-flex;
}
.process {
  border-bottom: 1px solid var(--line);
}
.process-head {
  grid-template-columns: 1fr 2.6fr;
  display: grid;
}
.process-head > div:last-child {
  max-width: 850px;
}
.steps {
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
  grid-template-columns: repeat(4, 1fr);
  margin-top: 72px;
  display: grid;
}
.steps article {
  border-right: 1px solid var(--line);
  min-height: 250px;
  padding: 34px 28px 42px 0;
}
.steps article:not(:first-child) {
  padding-left: 28px;
}
.steps h3 {
  margin: 62px 0 12px;
}
.scene {
  border-bottom: 1px solid var(--line);
  background: linear-gradient(125deg, #e3222a1f, transparent 38%), #111317;
  grid-template-columns: 1.15fr 0.85fr;
  align-items: center;
  gap: 8vw;
  min-height: 600px;
  padding: 110px max(3.5vw, 36px);
  display: grid;
}
.channels {
  flex-wrap: wrap;
  gap: 10px;
  margin-top: 36px;
  display: flex;
}
.channels span,
.channels a {
  border: 1px solid var(--line);
  letter-spacing: 0.14em;
  align-items: center;
  gap: 8px;
  padding: 10px 14px;
  font-size: 10px;
  display: inline-flex;
}
.channels a:hover {
  border-color: var(--red);
  background: #e3222a14;
}
.channels .whatsapp-link {
  border-color: #25d36680;
  color: #f2f4f3;
  background: #25d36612;
}
.channels .whatsapp-link span {
  color: #25d366;
  font-size: 12px;
}
.channels .whatsapp-link:hover {
  border-color: #25d366;
  background: #25d36626;
}
.scene-number {
  border-left: 1px solid #e3222ab3;
  flex-direction: column;
  padding-left: 54px;
  display: flex;
}
.scene-number strong {
  color: var(--red);
  font-family: "Arial Black", Arial, Helvetica, sans-serif;
  font-size: clamp(80px, 9vw, 140px);
  font-weight: 900;
  line-height: 0.9;
}
.scene-number span {
  color: #b2b7bd;
  letter-spacing: 0.18em;
  margin-top: 24px;
  font-size: 12px;
  line-height: 1.7;
}
.status {
  border-bottom: 1px solid var(--line);
  grid-template-columns: 140px 1.2fr 0.8fr;
  align-items: center;
  gap: 5vw;
  display: grid;
}
.status-mark {
  color: var(--red);
  font-family: "Arial Black", Arial, Helvetica, sans-serif;
  font-size: 118px;
  font-style: italic;
  font-weight: 900;
}
.status h2 {
  font-size: clamp(38px, 4vw, 58px);
}
.contact {
  color: #0a0b0d;
  background: #f0f0ed;
  grid-template-columns: 0.85fr 1.15fr;
  align-items: start;
  gap: 7vw;
  display: grid;
}
.contact-copy > p:not(.kicker):not(.contact-mail) {
  color: #51565b;
  max-width: 580px;
  font-size: 17px;
  line-height: 1.7;
}
.contact-mail {
  margin-top: 38px;
  line-height: 1.7;
}
.contact-mail a {
  border-bottom: 1px solid var(--red);
  font-weight: 700;
}
.contact-form {
  border-top: 3px solid var(--red);
  background: #fff;
  padding: 34px;
  box-shadow: 0 18px 60px #00000012;
}
.honeypot {
  position: absolute;
  left: -9999px;
}
.form-row {
  margin-bottom: 20px;
}
.form-split {
  grid-template-columns: 1fr 1fr;
  gap: 18px;
  display: grid;
}
.contact-form label:not(.form-consent) {
  letter-spacing: 0.08em;
  text-transform: uppercase;
  margin-bottom: 8px;
  font-size: 11px;
  font-weight: 750;
  display: block;
}
.contact-form input:not([type="checkbox"]),
.contact-form select,
.contact-form textarea {
  color: #111317;
  border: 1px solid #c8cacc;
  border-radius: 0;
  background: #f8f8f6;
  outline: none;
  width: 100%;
  padding: 14px 15px;
  font: inherit;
}
.contact-form textarea {
  resize: vertical;
  min-height: 130px;
}
.contact-form input:focus,
.contact-form select:focus,
.contact-form textarea:focus {
  border-color: var(--red);
  box-shadow: 0 0 0 2px #e3222a17;
}
.form-consent {
  color: #53585e;
  align-items: flex-start;
  gap: 11px;
  margin: 4px 0 24px;
  font-size: 12px;
  line-height: 1.55;
  display: flex;
}
.form-consent input {
  accent-color: var(--red);
  flex: 0 0 auto;
  width: 17px;
  height: 17px;
  margin: 1px 0 0;
}
.form-consent a {
  border-bottom: 1px solid var(--red);
  color: #17191c;
  font-weight: 700;
}
.contact-form .button {
  border: 0;
  width: 100%;
  cursor: pointer;
}
.contact-form .button:hover {
  background: #c91d24;
}
.form-note {
  color: #777d82;
  margin: 12px 0 0;
  font-size: 11px;
}
footer {
  color: #8b929a;
  grid-template-columns: 1fr 1fr 1fr;
  align-items: center;
  min-height: 170px;
  padding: 55px 3.5vw;
  font-size: 12px;
  display: grid;
}
.footer-brand {
  color: #fff;
}
footer p {
  text-align: center;
  margin: 0;
}
footer div {
  justify-content: flex-end;
  gap: 18px;
  display: flex;
  flex-wrap: wrap;
}
.legal-page {
  background: #0a0b0d;
  min-height: 100vh;
}
.legal-header {
  border-bottom: 1px solid var(--line);
  justify-content: space-between;
  align-items: center;
  min-height: 86px;
  padding: 0 max(3.5vw, 28px);
  display: flex;
}
.legal-content {
  width: min(850px, calc(100% - 48px));
  margin: auto;
  padding: 110px 0 120px;
}
.legal-content h1 {
  margin: 16px 0 72px;
  font-size: clamp(68px, 9vw, 118px);
}
.legal-content section {
  border-top: 1px solid var(--line);
  grid-template-columns: 280px 1fr;
  gap: 60px;
  padding: 34px 0;
  display: grid;
}
.legal-content section:last-of-type {
  border-bottom: 1px solid var(--line);
}
.legal-content h2 {
  font-family: Arial, sans-serif;
  letter-spacing: 0;
  text-transform: none;
  font-size: 16px;
  line-height: 1.4;
}
.legal-content section p,
.legal-content li {
  color: #b9bec5;
  line-height: 1.8;
}
.legal-content a {
  border-bottom: 1px solid #e3222ab3;
}
.thank-you .button {
  border-bottom: 0;
  margin-top: 18px;
}
.legal-footer {
  border-top: 1px solid var(--line);
  grid-template-columns: 1fr auto;
  min-height: 120px;
}
@media (max-width: 900px) {
  .site-header {
    grid-template-columns: 1fr auto;
    padding: 0 22px;
  }
  .site-header nav {
    display: none;
  }
  .header-cta {
    width: 126px;
  }
  .hero {
    height: 100svh;
    min-height: 780px;
  }
  .hero-media {
    background-position: 61%;
  }
  .hero-shade {
    background: linear-gradient(90deg, #040507fa, #040507a6 72%, #04050733);
  }
  .hero-content {
    width: 80%;
    margin-left: 24px;
  }
  .telemetry {
    grid-template-columns: repeat(2, 1fr);
    gap: 18px;
  }
  .telemetry div:nth-child(n + 3) {
    display: none;
  }
  .intro,
  .process-head,
  .tuner,
  .scene,
  .status,
  .contact {
    grid-template-columns: 1fr;
  }
  .section {
    padding: 80px 24px;
  }
  .section-label {
    margin-bottom: 45px;
  }
  .services {
    grid-template-columns: 1fr;
    padding: 0 24px;
  }
  .services article {
    border-right: 1px solid var(--line);
    min-height: 330px;
  }
  .steps {
    grid-template-columns: repeat(2, 1fr);
  }
  .scene-number {
    padding-left: 30px;
  }
  .contact {
    gap: 35px;
  }
  footer {
    text-align: center;
    grid-template-columns: 1fr;
    gap: 30px;
  }
  footer div {
    justify-content: center;
  }
}
@media (max-width: 560px) {
  .site-header {
    height: 72px;
  }
  .brand {
    font-size: 24px;
  }
  .header-cta {
    height: 40px;
    font-size: 12px;
  }
  .hero {
    min-height: 760px;
  }
  .hero-content {
    width: calc(100% - 48px);
    padding-top: 20px;
  }
  h1 {
    font-size: 70px;
  }
  .hero-copy {
    font-size: 16px;
  }
  .button {
    width: 100%;
  }
  .contact-form {
    padding: 24px 18px;
  }
  .form-split {
    grid-template-columns: 1fr;
    gap: 0;
  }
  .telemetry {
    min-height: 90px;
    padding: 15px 20px;
  }
  .telemetry div {
    padding-left: 14px;
  }
  .telemetry strong {
    font-size: 16px;
  }
  .services {
    padding: 0;
  }
  .services article {
    padding-left: 24px;
    padding-right: 24px;
  }
  .steps {
    grid-template-columns: 1fr;
  }
  .steps article {
    border-right: 0;
    border-bottom: 1px solid var(--line);
    padding-left: 0 !important;
  }
  .scene-number {
    border-top: 1px solid #e3222ab3;
    border-left: 0;
    padding: 40px 0 0;
  }
  .status-mark {
    font-size: 80px;
  }
  .legal-content {
    padding: 80px 0;
  }
  .legal-content section {
    grid-template-columns: 1fr;
    gap: 10px;
  }
  .legal-footer {
    text-align: center;
    grid-template-columns: 1fr;
  }
}
