:root {
  --bg: #080b0f;
  --bg-2: #0d1117;
  --panel: #11161c;
  --panel-2: #171d24;
  --text: #f5f7f9;
  --muted: #98a3ae;
  --line: rgba(255, 255, 255, 0.09);
  --orange: #ff5a18;
  --orange-light: #ff9418;
  --red: #ff3217;
  --green: #57e37c;
  --max: 1320px;
  --radius: 20px;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  overflow-x: hidden;
  background: var(--bg);
  color: var(--text);
  font-family: "Inter", sans-serif;
}

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

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

button,
input,
select,
textarea {
  border: 0;
}

.container {
  width: min(calc(100% - 48px), var(--max));
  margin-inline: auto;
}

.noise {
  position: fixed;
  inset: 0;
  z-index: 9999;
  pointer-events: none;
  opacity: 0.025;
  background-image:
    repeating-radial-gradient(
      circle at 0 0,
      transparent 0,
      rgba(255,255,255,.9) 1px,
      transparent 1.7px
    );
  background-size: 5px 5px;
}

/* Header */

.site-header {
  position: fixed;
  inset: 0 0 auto;
  z-index: 1000;
  border-bottom: 1px solid transparent;
  background: rgba(8, 11, 15, 0.76);
  backdrop-filter: blur(18px);
  -webkit-backdrop-filter: blur(18px);
  transition:
    background 0.25s ease,
    border-color 0.25s ease,
    box-shadow 0.25s ease;
}

.site-header.scrolled {
  background: rgba(8, 11, 15, 0.95);
  border-bottom-color: rgba(255, 90, 24, 0.16);
  box-shadow: 0 12px 42px rgba(0,0,0,.34);
}

.nav {
  min-height: 92px;
  display: grid;
  grid-template-columns: auto 1fr auto;
  align-items: center;
  gap: 42px;
}

.brand {
  display: flex;
  align-items: center;
}

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

.nav-links {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 34px;
}

.nav-links a {
  position: relative;
  padding: 34px 0;
  color: rgba(255,255,255,.72);
  font-family: "Space Grotesk", sans-serif;
  font-size: 13px;
  font-weight: 600;
}

.nav-links a::after {
  content: "";
  position: absolute;
  left: 0;
  right: 0;
  bottom: 23px;
  height: 2px;
  background: linear-gradient(90deg, var(--orange-light), var(--red));
  transform: scaleX(0);
  transition: transform .2s ease;
}

.nav-links a:hover {
  color: white;
}

.nav-links a:hover::after {
  transform: scaleX(1);
}

.nav-toggle {
  display: none;
  justify-self: end;
  padding: 10px;
  background: transparent;
}

.nav-toggle span {
  display: block;
  width: 25px;
  height: 2px;
  margin: 5px;
  background: white;
}

.button {
  min-height: 52px;
  padding: 0 22px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 18px;
  border-radius: 8px;
  background: linear-gradient(135deg, var(--orange-light), var(--red));
  color: white;
  box-shadow: 0 14px 34px rgba(255, 75, 20, .18);
  font-family: "Space Grotesk", sans-serif;
  font-size: 13px;
  font-weight: 700;
  transition: transform .2s ease, box-shadow .2s ease;
}

.button:hover {
  transform: translateY(-2px);
  box-shadow: 0 18px 42px rgba(255, 75, 20, .28);
}

.button-small {
  min-height: 44px;
  padding-inline: 18px;
}

.nav-button {
  white-space: nowrap;
}

/* Hero */

.hero {
  min-height: 900px;
  position: relative;
  display: flex;
  align-items: center;
  overflow: hidden;
  padding: 130px 0 100px;
  background:
    radial-gradient(circle at 76% 46%, rgba(255, 76, 22, .12), transparent 26%),
    radial-gradient(circle at 20% 80%, rgba(255, 122, 24, .04), transparent 28%),
    linear-gradient(180deg, #080b0f 0%, #0a0e13 100%);
  border-bottom: 1px solid var(--line);
}

.hero-grid {
  position: absolute;
  inset: 0;
  opacity: .12;
  background-image:
    linear-gradient(rgba(255,255,255,.06) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255,255,255,.06) 1px, transparent 1px);
  background-size: 54px 54px;
  mask-image: linear-gradient(to bottom, rgba(0,0,0,.9), transparent 96%);
}

.hero-orange-glow {
  position: absolute;
  border-radius: 50%;
  filter: blur(110px);
  pointer-events: none;
}

.glow-one {
  width: 420px;
  height: 420px;
  right: 10%;
  top: 23%;
  background: rgba(255, 74, 18, .13);
}

.glow-two {
  width: 250px;
  height: 250px;
  left: 8%;
  bottom: 8%;
  background: rgba(255, 142, 30, .05);
}

.hero-layout {
  position: relative;
  z-index: 2;
  display: grid;
  grid-template-columns: .74fr 1.26fr;
  gap: 20px;
  align-items: center;
}

.hero-copy {
  position: relative;
  z-index: 4;
}

.eyebrow {
  display: flex;
  align-items: center;
  gap: 11px;
  margin-bottom: 22px;
  color: rgba(255,255,255,.55);
  font-family: "Space Grotesk", sans-serif;
  font-size: 10px;
  font-weight: 700;
  letter-spacing: .16em;
}

.eyebrow > span {
  width: 30px;
  height: 2px;
  background: linear-gradient(90deg, var(--orange-light), var(--red));
}

.hero h1,
.section-heading h2,
.problem-copy h2,
.why-copy h2,
.contact-copy h2 {
  margin: 0;
  font-family: "Barlow Condensed", sans-serif;
  font-weight: 800;
  font-style: italic;
  text-transform: uppercase;
}

.hero h1 {
  max-width: 650px;
  font-size: clamp(72px, 6.5vw, 112px);
  line-height: .82;
  letter-spacing: -.035em;
}

.hero h1 em,
.section-heading h2 em,
.problem-copy h2 em,
.why-copy h2 em,
.contact-copy h2 em {
  display: block;
  margin-top: 8px;
  color: transparent;
  background: linear-gradient(90deg, var(--orange-light), var(--red));
  -webkit-background-clip: text;
  background-clip: text;
}

.hero-description {
  max-width: 610px;
  margin: 30px 0 0;

  font-family: "Space Grotesk", sans-serif;
  font-size: 15px;
  font-weight: 500;
  line-height: 1.7;
  letter-spacing: -0.01em;

  color: #aab2bb;
}

.hero-actions {
  margin-top: 34px;
  display: flex;
  align-items: center;
  gap: 14px;
}

.hero-button {
  min-width: 155px;
}

.secondary-button {
  min-height: 52px;
  padding: 0 22px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 18px;
  border: 1px solid rgba(255,255,255,.18);
  border-radius: 8px;
  color: rgba(255,255,255,.9);
  font-family: "Space Grotesk", sans-serif;
  font-size: 13px;
  font-weight: 700;
  transition: border-color .2s ease, background .2s ease;
}

.secondary-button:hover {
  border-color: rgba(255, 90, 24, .65);
  background: rgba(255, 90, 24, .06);
}

.secondary-button span {
  color: var(--orange);
}

.hero-points {
  margin-top: 50px;
  display: flex;
  gap: 0;
}

.hero-points div {
  min-width: 150px;
  padding-right: 28px;
  margin-right: 28px;

  display: flex;
  flex-direction: column;
  gap: 7px;

  border-right: 1px solid rgba(255, 255, 255, 0.12);
}

.hero-points div:last-child {
  border-right: 0;
  margin-right: 0;
}

.hero-points b {
  font-family: "Space Grotesk", sans-serif;
  font-size: 13px;
  font-weight: 700;
  letter-spacing: 0.01em;

  color: #ffffff;
}

.hero-points span {
  font-family: "Space Grotesk", sans-serif;
  font-size: 11px;
  font-weight: 500;

  color: rgba(255, 255, 255, 0.48);
}

/* Tablet image + perfectly scalable live screen */

.tablet-column {
  min-width: 0;
}

.tablet-stage {
  position: relative;
  width: 940px;
  max-width: none;
  margin-left: 20px;
  aspect-ratio: 3 / 2;
  filter: drop-shadow(0 38px 45px rgba(0,0,0,.42));
}

.tablet-image {
  position: absolute;
  inset: 0;
  z-index: 3;
  width: 100%;
  height: 100%;
  object-fit: contain;
  pointer-events: none;
  user-select: none;
}

/*
  tablet.png is 1536 x 1024.
  The live overlay is expressed as percentages so it always scales
  with the tablet image. These values place it inside the orange screen.
*/
.screen-overlay {
  position: absolute;
  z-index: 4;
  left: 12.55%;
  top: 15.65%;
  width: 74.9%;
  height: 54.1%;
  overflow: hidden;
  border-radius: 1.15vw;
}

.screen-ui {
  position: relative;
  width: 100%;
  height: 100%;
  overflow: hidden;
  background:
    linear-gradient(rgba(255,255,255,.025) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255,255,255,.025) 1px, transparent 1px),
    radial-gradient(circle at 72% 38%, rgba(255, 74, 18, .08), transparent 42%),
    #050708;
  background-size: 22px 22px, 22px 22px, auto, auto;
  color: white;
  font-family: "Space Grotesk", sans-serif;
}

.screen-header {
  height: 10.5%;
  padding: 0 2.1%;
  display: flex;
  align-items: center;
  justify-content: space-between;
  border-bottom: 1px solid rgba(255,255,255,.09);
}

.screen-header > div:first-child {
  display: flex;
  align-items: baseline;
  gap: 7px;
}

.screen-kicker {
  color: var(--orange);
  font-size: clamp(5px, .44vw, 8px);
  font-weight: 700;
  letter-spacing: .12em;
}

.screen-header strong {
  color: rgba(255,255,255,.65);
  font-size: clamp(5px, .44vw, 8px);
  letter-spacing: .09em;
}

.connected-status {
  display: flex;
  align-items: center;
  gap: 6px;
  color: rgba(255,255,255,.55);
  font-size: clamp(5px, .4vw, 7px);
  letter-spacing: .11em;
}

.connected-status i {
  width: clamp(4px, .38vw, 7px);
  aspect-ratio: 1;
  border-radius: 50%;
  background: var(--orange);
  box-shadow: 0 0 10px var(--orange);
}

.dashboard {
  height: 81.5%;
  padding: 1.7%;
  display: grid;
  grid-template-columns: .94fr 1.06fr;
  grid-template-rows: 63% 37%;
  gap: 1.4%;
}

.scan-panel,
.fault-panel,
.health-panel,
.log-panel {
  min-width: 0;
  min-height: 0;
  padding: 3.7%;
  overflow: hidden;
  border: 1px solid rgba(255,255,255,.11);
  border-radius: 5px;
  background: rgba(5,7,9,.74);
}

.panel-heading {
  padding-bottom: 3.4%;
  display: flex;
  justify-content: space-between;
  border-bottom: 1px solid rgba(255,255,255,.1);
  color: var(--orange);
  font-size: clamp(6px, .52vw, 9px);
  letter-spacing: .08em;
}

.diagnostic-list {
  margin-top: 1%;
}

.diagnostic-item {
  min-height: 17%;
  padding: 2.1% 0;
  display: flex;
  align-items: center;
  justify-content: space-between;
  border-bottom: 1px solid rgba(255,255,255,.065);
}

.diagnostic-name {
  display: flex;
  align-items: center;
  gap: 7px;
}

.diagnostic-name b {
  width: clamp(20px, 2vw, 34px);
  color: var(--orange);
  font-size: clamp(6px, .48vw, 9px);
  letter-spacing: .04em;
}

.diagnostic-name span {
  color: rgba(255,255,255,.7);
  font-size: clamp(5px, .44vw, 8px);
}

.diagnostic-item > strong {
  color: rgba(255,255,255,.3);
  font-size: clamp(5px, .43vw, 8px);
}

.diagnostic-item.pass > strong {
  color: var(--green);
}

.scan-state {
  padding-top: 3%;
  color: var(--orange);
  font-size: clamp(5px, .4vw, 7px);
  letter-spacing: .11em;
}

.fault-banner {
  padding: 2.4% 3%;
  display: flex;
  align-items: center;
  gap: 6px;
  border: 1px solid rgba(255,72,18,.14);
  background: rgba(255,60,15,.08);
  color: var(--orange);
  font-size: clamp(5px, .45vw, 8px);
  letter-spacing: .08em;
}

.fault-panel > small {
  display: block;
  margin-top: 4.5%;
  color: rgba(255,255,255,.3);
  font-size: clamp(4px, .36vw, 6px);
  letter-spacing: .11em;
}

.fault-code {
  display: block;
  margin-top: 1%;
  color: var(--orange);
  font-size: clamp(16px, 2vw, 32px);
  line-height: 1;
}

.fault-panel h3 {
  margin: 3% 0 1.5%;
  font-size: clamp(7px, .7vw, 12px);
}

.fault-panel p {
  max-width: 95%;
  margin: 0;
  color: rgba(255,255,255,.42);
  font-size: clamp(4px, .39vw, 7px);
  line-height: 1.5;
}
.fault-panel.success .fault-banner {
  border-color: rgba(87, 227, 124, 0.22);
  background: rgba(87, 227, 124, 0.08);
  color: #57e37c;
}

.fault-panel.success .fault-code {
  color: #57e37c;
}

.fault-panel.success h3 {
  color: #ffffff;
}

.repair-heading {
  margin-top: 7%;
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.repair-heading span {
  color: rgba(255,255,255,.42);
  font-size: clamp(4px, .38vw, 7px);
  letter-spacing: .08em;
}

.repair-heading strong {
  color: var(--orange);
  font-size: clamp(7px, .8vw, 13px);
}

.repair-track {
  height: clamp(3px, .34vw, 6px);
  margin-top: 1.8%;
  overflow: hidden;
  background: rgba(255,255,255,.07);
}

.repair-fill {
  width: 0%;
  height: 100%;
  background: linear-gradient(90deg, var(--orange-light), var(--red));
  box-shadow: 0 0 10px rgba(255, 78, 22, .4);
}

.health-panel {
  display: grid;
  grid-template-columns: .8fr .82fr 1.15fr;
  gap: 3%;
  align-items: center;
}

.health-copy small {
  color: rgba(255,255,255,.35);
  font-size: clamp(4px, .35vw, 6px);
  letter-spacing: .1em;
}

.health-value {
  display: flex;
  align-items: baseline;
}

.health-value strong {
  color: var(--orange);
  font-size: clamp(20px, 2.7vw, 44px);
  line-height: 1;
}

.health-value span {
  color: var(--orange);
  font-size: clamp(7px, .8vw, 13px);
}

.health-state {
  display: flex;
  flex-direction: column;
  gap: 5px;
}

.health-state strong {
  color: var(--orange-light);
  font-size: clamp(5px, .47vw, 8px);
}

.health-state span {
  color: rgba(255,255,255,.36);
  font-size: clamp(4px, .33vw, 6px);
}

.tach {
  position: relative;
  width: 100%;
  aspect-ratio: 1.55;
}

.tach-arc,
.tach-redline {
  position: absolute;
  inset: 8% 8% 0;
  border: clamp(3px, .35vw, 6px) solid rgba(255,255,255,.08);
  border-bottom-color: transparent;
  border-radius: 100px 100px 0 0;
}

.tach-redline {
  border-color: var(--orange);
  border-right-color: transparent;
  border-bottom-color: transparent;
  transform: rotate(10deg);
  filter: drop-shadow(0 0 5px rgba(255,80,20,.6));
}

.tach-needle {
  position: absolute;
  left: 50%;
  bottom: 16%;
  width: 38%;
  height: clamp(2px, .2vw, 4px);
  border-radius: 6px;
  background: var(--orange);
  transform-origin: 0 50%;
  transform: rotate(-55deg);
  box-shadow: 0 0 7px rgba(255,80,20,.75);
  transition: transform .45s cubic-bezier(.2,.7,.3,1);
}

.tach-hub {
  position: absolute;
  left: 47%;
  bottom: 11%;
  width: 9%;
  aspect-ratio: 1;
  border: 2px solid var(--orange);
  border-radius: 50%;
  background: #0c1015;
}

.tick {
  position: absolute;
  color: rgba(255,255,255,.32);
  font-size: clamp(4px, .33vw, 6px);
}

.tick-0 {
  left: 4%;
  bottom: 5%;
}

.tick-50 {
  left: 47%;
  top: 4%;
}

.tick-100 {
  right: 2%;
  bottom: 5%;
}

.log-panel > strong {
  color: var(--orange);
  font-size: clamp(5px, .44vw, 8px);
  letter-spacing: .08em;
}

.log-lines {
  margin-top: 4%;
  display: flex;
  flex-direction: column;
  gap: 4%;
  color: rgba(255,255,255,.36);
  font-size: clamp(4px, .34vw, 6px);
  line-height: 1.35;
}

.screen-footer {
  height: 8%;
  padding-inline: 2.1%;
  display: flex;
  align-items: center;
  gap: 4%;
  border-top: 1px solid rgba(255,255,255,.08);
  color: rgba(255,255,255,.35);
  font-size: clamp(4px, .34vw, 6px);
  letter-spacing: .08em;
}

.screen-footer span {
  display: flex;
  align-items: center;
  gap: 4px;
}

.screen-footer strong {
  margin-left: auto;
  color: rgba(255,255,255,.28);
  font-size: clamp(4px, .34vw, 6px);
}

.screen-led {
  width: clamp(3px, .28vw, 5px);
  aspect-ratio: 1;
  display: inline-block;
  border-radius: 50%;
}

.screen-led.green {
  background: var(--green);
  box-shadow: 0 0 6px var(--green);
}

.screen-led.orange {
  background: var(--orange);
  box-shadow: 0 0 6px var(--orange);
}

.screen-scan-line {
  position: absolute;
  left: 0;
  right: 0;
  top: -4px;
  height: 2px;
  z-index: 8;
  opacity: .45;
  background: linear-gradient(90deg, transparent, var(--orange), transparent);
  box-shadow: 0 0 12px rgba(255, 90, 24, .65);
  animation: screenSweep 3.2s linear infinite;
}

.hero-bottom {
  position: absolute;
  left: 50%;
  bottom: 26px;
  transform: translateX(-50%);
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 13px;
  color: rgba(255,255,255,.27);
  font-size: 8px;
  letter-spacing: .18em;
}

.hero-bottom i {
  width: 50px;
  height: 1px;
  background: linear-gradient(90deg, var(--orange), transparent);
}

/* Trust strip */

.trust-strip {
  position: relative;
  z-index: 3;

  background:
    linear-gradient(
      180deg,
      rgba(255,255,255,0.015),
      transparent
    ),
    #0b0f14;

  border-top: 1px solid rgba(255,255,255,0.05);
  border-bottom: 1px solid rgba(255,255,255,0.08);
}

.trust-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
}

.trust-grid > div {
  min-height: 112px;

  padding: 22px 34px;

  display: flex;
  align-items: center;
  justify-content: center;

  gap: 16px;

  position: relative;

  border-right: 1px solid rgba(255,255,255,0.08);

  transition:
    background 0.2s ease,
    transform 0.2s ease;
}

.trust-grid > div:last-child {
  border-right: 0;
}

.trust-grid > div:hover {
  background:
    linear-gradient(
      180deg,
      rgba(255,90,24,0.05),
      transparent
    );
}

.trust-icon {
  width: 46px;
  height: 46px;

  flex-shrink: 0;

  display: grid;
  place-items: center;

  border: 1px solid rgba(255,90,24,0.30);
  border-radius: 10px;

  color: #ff5a18;

  font-family: "Space Grotesk", sans-serif;
  font-size: 19px;
  font-weight: 700;

  background:
    rgba(255,90,24,0.05);

  box-shadow:
    inset 0 0 18px rgba(255,90,24,0.03);

  transition:
    border-color 0.2s ease,
    box-shadow 0.2s ease,
    transform 0.2s ease;
}

.trust-grid > div:hover .trust-icon {
  transform: translateY(-2px);

  border-color: rgba(255,90,24,0.60);

  box-shadow:
    0 0 20px rgba(255,90,24,0.08);
}

.trust-grid p {
  margin: 0;

  display: flex;
  flex-direction: column;

  gap: 5px;
}

.trust-grid strong {
  color: #ffffff;

  font-family: "Space Grotesk", sans-serif;

  font-size: 13px;
  font-weight: 700;

  letter-spacing: -0.01em;
}

.trust-grid small {
  color: rgba(255,255,255,0.42);

  font-family: "Space Grotesk", sans-serif;

  font-size: 10px;
  font-weight: 500;
}
/* Shared sections */

.section {
  padding: 120px 0;
}

.services {
  position: relative;

  background:
    radial-gradient(
      circle at 15% 10%,
      rgba(255, 90, 24, 0.06),
      transparent 28%
    ),
    linear-gradient(
      180deg,
      #171b20 0%,
      #11151a 100%
    );

  color: #f5f7f9;

  border-top: 1px solid rgba(255,255,255,0.06);
  border-bottom: 1px solid rgba(255,255,255,0.06);
}
.services .dark-eyebrow {
  color: rgba(255,255,255,0.45);
}

.services .section-heading p {
  color: rgba(255,255,255,0.55);

  font-family: "Space Grotesk", sans-serif;
  font-size: 14px;
  line-height: 1.7;
}

.why {
  background: #f3f4f5;
  color: #101419;
}

.section-heading {
  margin-bottom: 54px;
  display: grid;
  grid-template-columns: 1fr 430px;
  gap: 70px;
  align-items: end;
}

.dark-eyebrow {
  color: #65707a;
}

.section-heading h2,
.problem-copy h2,
.why-copy h2,
.contact-copy h2 {
  font-size: clamp(50px, 5vw, 76px);
  line-height: .88;
}

.section-heading p {
  margin: 0;
  color: #64707a;
  font-size: 14px;
  line-height: 1.75;
}

.service-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);

  overflow: hidden;

  border: 1px solid rgba(255,255,255,0.10);
  border-radius: 20px;

  background: #0d1116;

  box-shadow:
    0 30px 80px rgba(0,0,0,0.25);
}

.service-card {
  min-height: 330px;

  position: relative;

  padding: 36px;

  background:
    linear-gradient(
      145deg,
      rgba(255,255,255,0.025),
      transparent 55%
    ),
    #11161c;

  color: #ffffff;

  border-right: 1px solid rgba(255,255,255,0.08);
  border-bottom: 1px solid rgba(255,255,255,0.08);

  transition:
    background 0.25s ease,
    transform 0.25s ease;
}

.service-card:nth-child(2n) {
  border-right: 0;
}

.service-card:nth-child(n+3) {
  border-bottom: 0;
}

.service-card:hover {
  background:
    linear-gradient(
      145deg,
      rgba(255,90,24,0.07),
      transparent 55%
    ),
    #141a21;
}

.service-icon {
  width: 52px;
  height: 52px;

  margin-bottom: 42px;

  display: grid;
  place-items: center;

  border: 1px solid rgba(255,90,24,0.30);
  border-radius: 10px;

  background: rgba(255,90,24,0.05);

  color: #ff5a18;

  font-family: "Space Grotesk", sans-serif;
  font-size: 17px;

  box-shadow:
    inset 0 0 18px rgba(255,90,24,0.025);
}

.service-number {
  position: absolute;
  top: 30px;
  right: 32px;

  color: rgba(255,255,255,0.22);

  font-family: "Space Grotesk", sans-serif;
  font-size: 9px;
  font-weight: 600;

  letter-spacing: 0.14em;
}


.service-card h3 {
  margin: 0 0 14px;

  color: #ffffff;

  font-family: "Space Grotesk", sans-serif;
  font-size: 21px;
  font-weight: 700;

  text-transform: uppercase;
}

.service-card p {
  max-width: 470px;

  color: rgba(255,255,255,0.52);

  font-family: "Space Grotesk", sans-serif;
  font-size: 13px;
  font-weight: 400;
  line-height: 1.7;
}

.service-card a {
  position: absolute;
  left: 36px;
  bottom: 32px;

  color: #ffffff;

  font-family: "Space Grotesk", sans-serif;
  font-size: 11px;
  font-weight: 700;
}

.service-card a span {
  margin-left: 7px;

  color: #ff5a18;
}

/* Problem */

.problem-section {
  position: relative;

  padding: 125px 0;

  background:
    radial-gradient(
      circle at 16% 30%,
      rgba(255, 90, 24, 0.07),
      transparent 30%
    ),
    linear-gradient(
      180deg,
      #0b0f14 0%,
      #0d1218 100%
    );

  border-top: 1px solid rgba(255,255,255,0.06);
  border-bottom: 1px solid rgba(255,255,255,0.06);
}

.problem-layout {
  display: grid;
  grid-template-columns: 0.9fr 1.1fr;

  gap: 100px;

  align-items: center;
}

.problem-copy {
  max-width: 620px;
}

.problem-copy .eyebrow {
  margin-bottom: 24px;
}

.problem-copy h2 {
  font-size: clamp(58px, 5.3vw, 82px);

  line-height: 0.87;

  letter-spacing: -0.03em;
}

.problem-copy p {
  max-width: 560px;

  margin: 28px 0 32px;

  color: rgba(255,255,255,0.58);

  font-family: "Space Grotesk", sans-serif;

  font-size: 14px;
  line-height: 1.75;
}

.problem-copy .button {
  min-width: 185px;
}
.issue-list {
  border-top: 1px solid rgba(255,255,255,0.08);

  background:
    linear-gradient(
      180deg,
      rgba(255,255,255,0.012),
      transparent
    );
}

.issue-list > div {
  min-height: 76px;

  display: grid;

  grid-template-columns: 54px 1fr auto;

  align-items: center;

  gap: 14px;

  padding: 0 18px;

  border-bottom: 1px solid rgba(255,255,255,0.08);

  transition:
    background 0.2s ease,
    padding-left 0.2s ease;
}

.issue-list > div:hover {
  padding-left: 24px;

  background:
    linear-gradient(
      90deg,
      rgba(255,90,24,0.07),
      transparent 70%
    );
}

.issue-list > div span {
  color: #ff5a18;

  font-family: "Space Grotesk", sans-serif;

  font-size: 9px;
  font-weight: 700;

  letter-spacing: 0.12em;
}

.issue-list > div strong {
  color: #ffffff;

  font-family: "Space Grotesk", sans-serif;

  font-size: 13px;
  font-weight: 600;
}

.issue-list > div i {
  width: 28px;
  height: 28px;

  display: grid;
  place-items: center;

  border: 1px solid rgba(255,90,24,0.20);

  border-radius: 6px;

  color: #ff5a18;

  font-style: normal;
  font-size: 11px;

  transition:
    background 0.2s ease,
    border-color 0.2s ease;
}

.issue-list > div:hover i {
  background: rgba(255,90,24,0.08);

  border-color: rgba(255,90,24,0.45);
}

/* Why */

.why {
  position: relative;

  background:
    radial-gradient(
      circle at 18% 18%,
      rgba(255, 90, 24, 0.05),
      transparent 30%
    ),
    linear-gradient(
      180deg,
      #171b20 0%,
      #11151a 100%
    );

  color: #f5f7f9;

  border-top: 1px solid rgba(255,255,255,0.06);
  border-bottom: 1px solid rgba(255,255,255,0.06);
}

.why-layout {
  display: grid;
  grid-template-columns: .86fr 1.14fr;
  gap: 90px;
  align-items: center;
}

.why-visual {
  min-height: 500px;

  padding: 38px;

  position: relative;
  overflow: hidden;

  border-radius: 20px;

  background:
    linear-gradient(
      145deg,
      rgba(255,255,255,0.035),
      transparent 45%
    ),
    #0d1116;

  border: 1px solid rgba(255,255,255,0.08);

  color: #ffffff;

  box-shadow:
    0 30px 80px rgba(0,0,0,0.32);
}
.why .dark-eyebrow {
  color: rgba(255,255,255,0.45);
}

.why-copy p {
  margin: 28px 0 32px;

  color: rgba(255,255,255,0.56);

  font-family: "Space Grotesk", sans-serif;
  font-size: 14px;
  line-height: 1.75;

  max-width: 720px;
}

.why-visual::after {
  content: "";
  position: absolute;
  width: 280px;
  height: 280px;
  right: -95px;
  bottom: -95px;
  border: 1px solid rgba(255,90,24,.35);
  border-radius: 50%;
  box-shadow:
    0 0 0 36px rgba(255,90,24,.025),
    0 0 0 72px rgba(255,90,24,.018);
}

.why-visual > span {
  color: rgba(255,255,255,0.28);

  font-family: "Space Grotesk", sans-serif;
  font-size: 8px;
  font-weight: 600;

  letter-spacing: 0.14em;
}

.why-status {
  margin-top: 58px;
}

.why-status-main {
  display: flex;
  align-items: center;
  gap: 16px;
}

.status-light {
  width: 12px;
  height: 12px;

  flex-shrink: 0;

  border-radius: 50%;

  background: #57e37c;

  box-shadow:
    0 0 8px rgba(87, 227, 124, 0.8),
    0 0 22px rgba(87, 227, 124, 0.3);
}

.why-status-main div {
  display: flex;
  flex-direction: column;
}

.why-status-main small {
  color: rgba(255,255,255,0.35);

  font-family: "Space Grotesk", sans-serif;
  font-size: 8px;
  font-weight: 600;

  letter-spacing: 0.14em;
}

.why-status-main strong {
  margin-top: 2px;

  color: #ffffff;

  font-family: "Barlow Condensed", sans-serif;
  font-size: 54px;
  font-weight: 800;
  font-style: italic;

  line-height: 0.95;
}

.why-status-services {
  margin-top: 24px;

  display: flex;
  flex-wrap: wrap;

  gap: 8px;
}

.why-visual > span {
  color: rgba(255,255,255,0.38);

  font-family: "Space Grotesk", sans-serif;
  font-size: 10px;
  font-weight: 700;

  letter-spacing: 0.14em;
}

.why-status-main small {
  color: rgba(255,255,255,0.42);

  font-family: "Space Grotesk", sans-serif;
  font-size: 10px;
  font-weight: 700;

  letter-spacing: 0.14em;
}

.why-status-main strong {
  margin-top: 4px;

  color: #ffffff;

  font-family: "Barlow Condensed", sans-serif;
  font-size: 62px;
  font-weight: 800;
  font-style: italic;

  line-height: 0.95;
}

.why-status-services span {
  padding: 9px 13px;

  border: 1px solid rgba(255,255,255,0.10);
  border-radius: 6px;

  background: rgba(255,255,255,0.03);

  color: rgba(255,255,255,0.58);

  font-family: "Space Grotesk", sans-serif;
  font-size: 9px;
  font-weight: 700;

  letter-spacing: 0.07em;
}
.why-visual > i {
  display: block;
  height: 1px;

  margin: 32px 0 34px;

  background: linear-gradient(
    90deg,
    rgba(255,255,255,0.12),
    transparent
  );
}

.why-visual h3 {
  margin: 0 0 16px;

  color: #ffffff;

  font-family: "Space Grotesk", sans-serif;
  font-size: 24px;
  font-weight: 700;

  text-transform: uppercase;
}

.why-visual p {
  max-width: 430px;

  color: rgba(255,255,255,0.58);

  font-family: "Space Grotesk", sans-serif;
  font-size: 14px;
  font-weight: 500;

  line-height: 1.7;
}
.why-visual::after {
  content: "";

  position: absolute;

  width: 300px;
  height: 300px;

  right: -110px;
  bottom: -110px;

  border-radius: 50%;

  border: 1px solid rgba(255,90,24,0.28);

  box-shadow:
    0 0 0 40px rgba(255,90,24,0.02),
    0 0 0 80px rgba(255,90,24,0.015);

  pointer-events: none;
}

.why-copy p {
  margin: 26px 0 30px;
  color: #64707a;
  font-size: 14px;
  line-height: 1.75;
}

.check-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);

  gap: 12px;
}

.check-grid div {
  padding: 16px 18px;

  border: 1px solid rgba(255,255,255,0.09);
  border-radius: 8px;

  background:
    rgba(255,255,255,0.025);

  color: rgba(255,255,255,0.82);

  font-family: "Space Grotesk", sans-serif;
  font-size: 12px;
  font-weight: 600;

  transition:
    background 0.2s ease,
    border-color 0.2s ease;
}

.check-grid div:hover {
  background:
    rgba(255,90,24,0.05);

  border-color:
    rgba(255,90,24,0.25);
}

.check-grid span {
  margin-right: 9px;

  color: #ff5a18;
}

/* Contact */

.contact {
  position: relative;
  overflow: hidden;

  padding: 130px 0;

  background:
    radial-gradient(
      circle at 14% 42%,
      rgba(255,90,24,0.10),
      transparent 28%
    ),
    linear-gradient(
      180deg,
      #0b0f14 0%,
      #080b0f 100%
    );

  border-top: 1px solid rgba(255,255,255,0.06);
}

.contact-layout {
  position: relative;
  z-index: 2;

  display: grid;
  grid-template-columns: 0.9fr 1.1fr;

  gap: 90px;

  align-items: center;
}

.contact-copy {
  max-width: 620px;
}

.contact-copy .eyebrow {
  margin-bottom: 26px;
}

.contact-copy h2 {
  font-size: clamp(62px, 5.5vw, 86px);
  line-height: 0.86;
}

.contact-copy p {
  max-width: 540px;

  margin-top: 26px;

  color: rgba(255,255,255,0.58);

  font-family: "Space Grotesk", sans-serif;
  font-size: 14px;
  font-weight: 500;

  line-height: 1.75;
}

.contact-form {
  padding: 32px;

  border: 1px solid rgba(255,255,255,0.10);
  border-radius: 20px;

  background:
    linear-gradient(
      145deg,
      rgba(255,255,255,0.025),
      transparent 50%
    ),
    rgba(17,22,28,0.94);

  box-shadow:
    0 30px 80px rgba(0,0,0,0.32);

  backdrop-filter: blur(14px);
}

.form-row {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 13px;
}

.contact-form label {
  display: block;
  margin-bottom: 13px;
}

.contact-form label > span {
  display: block;

  margin-bottom: 9px;

  color: rgba(255,255,255,0.42);

  font-family: "Space Grotesk", sans-serif;
  font-size: 9px;
  font-weight: 700;

  letter-spacing: 0.12em;

  text-transform: uppercase;
}

.contact-form input,
.contact-form select,
.contact-form textarea {
  width: 100%;

  padding: 15px 16px;

  outline: none;

  border: 1px solid rgba(255,255,255,0.10);
  border-radius: 8px;

  background: #0d1218;

  color: #ffffff;

  font-family: "Space Grotesk", sans-serif;
  font-size: 13px;
  font-weight: 500;

  transition:
    border-color 0.2s ease,
    box-shadow 0.2s ease,
    background 0.2s ease;
}

.contact-form input::placeholder,
.contact-form textarea::placeholder {
  color: rgba(255,255,255,0.32);
}

.contact-form input:focus,
.contact-form select:focus,
.contact-form textarea:focus {
  border-color: rgba(255,90,24,0.65);

  background: #10161d;

  box-shadow:
    0 0 0 3px rgba(255,90,24,0.07);
}

.contact-form option {
  background: #11161c;
}

.form-button {
  width: 100%;

  min-height: 56px;

  margin-top: 4px;

  border: 0;

  cursor: pointer;

  font-size: 13px;
}

.form-message {
  display: none;
  margin: 12px 0 0;
  color: #a5aeb7;
  font-size: 10px;
  text-align: center;
}

.form-message.show {
  display: block;
}

/* Footer */

.footer {
  padding: 38px 0 22px;
  background: #06080b;
  border-top: 1px solid var(--line);
}

.footer-main {
  padding-bottom: 28px;
  display: grid;
  grid-template-columns: 1fr auto 1fr;
  align-items: center;
  gap: 20px;
}

.footer-main img {
  width: 190px;
}

.footer-main > span {
  color: #747e87;
  font-size: 10px;
}

.footer-main a {
  justify-self: end;
  color: #7d8790;
  font-size: 10px;
}

.footer-bottom {
  padding-top: 20px;
  display: flex;
  justify-content: space-between;
  gap: 20px;
  border-top: 1px solid var(--line);
  color: #535c65;
  font-size: 8px;
  letter-spacing: .1em;
}

/* Reveal */

.reveal {
  opacity: 0;
  transform: translateY(22px);
  transition: opacity .6s ease, transform .6s ease;
}

.reveal.visible {
  opacity: 1;
  transform: translateY(0);
}

/* Animation */

@keyframes screenSweep {
  from {
    top: 0;
  }

  to {
    top: 100%;
  }
}

/* Responsive */

@media (max-width: 1180px) {
  .hero-layout {
    grid-template-columns: .88fr 1.12fr;
  }

  .hero h1 {
    font-size: clamp(68px, 7vw, 95px);
  }
}

@media (max-width: 980px) {
  .nav {
    grid-template-columns: auto 1fr auto;
  }

  .nav-toggle {
    display: block;
  }

  .nav-links {
    position: fixed;
    top: 78px;
    left: 20px;
    right: 20px;
    padding: 22px;
    display: none;
    flex-direction: column;
    align-items: flex-start;
    gap: 6px;
    border: 1px solid var(--line);
    border-radius: 14px;
    background: #10151b;
    box-shadow: 0 24px 60px rgba(0,0,0,.45);
  }

  .nav-links.open {
    display: flex;
  }

  .nav-links a {
    width: 100%;
    padding: 10px 0;
  }

  .nav-links a::after {
    bottom: 4px;
  }

  .nav-button {
    display: none;
  }

  .hero {
    min-height: auto;
    padding: 150px 0 90px;
  }

  .hero-layout,
  .section-heading,
  .problem-layout,
  .why-layout,
  .contact-layout {
    grid-template-columns: 1fr;
  }

  .hero-layout {
    gap: 50px;
  }

  .hero-copy {
    max-width: 760px;
  }

  .tablet-stage {
    width: min(100%, 820px);
  }

  .section-heading,
  .problem-layout,
  .why-layout,
  .contact-layout {
    gap: 44px;
  }

  .trust-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .trust-grid > div:nth-child(2) {
    border-right: 0;
  }

  .trust-grid > div:nth-child(-n+2) {
    border-bottom: 1px solid var(--line);
  }

  .hero-bottom {
    display: none;
  }
}

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

  .nav {
    min-height: 76px;
  }

  .brand-logo {
    width: 205px;
  }

  .hero {
    padding-top: 120px;
  }

  .hero h1 {
    font-size: clamp(62px, 18vw, 84px);
  }

  .hero-description {
    font-size: 14px;
  }

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

  .hero-actions > * {
    width: 100%;
  }

  .hero-points {
    flex-wrap: wrap;
    row-gap: 18px;
  }

  .hero-points div {
    width: calc(50% - 12px);
    min-width: 0;
    margin-right: 12px;
    padding-right: 12px;
  }

  .tablet-column {
    margin-inline: -10px;
  }

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

  .trust-grid > div {
    min-height: 68px;
    justify-content: flex-start;
    border-right: 0;
    border-bottom: 1px solid var(--line);
  }

  .trust-grid > div:last-child {
    border-bottom: 0;
  }

  .section,
  .problem-section,
  .contact {
    padding: 82px 0;
  }

  .section-heading h2,
  .problem-copy h2,
  .why-copy h2,
  .contact-copy h2 {
    font-size: 48px;
  }

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

  .service-card,
  .service-card:nth-child(2n),
  .service-card:nth-child(n+3) {
    border-right: 0;
    border-bottom: 1px solid #d5d9dd;
  }

  .service-card:last-child {
    border-bottom: 0;
  }

  .check-grid,
  .form-row {
    grid-template-columns: 1fr;
  }

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

  .footer-main a {
    justify-self: start;
  }

  .footer-bottom {
    flex-direction: column;
  }
}

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

  *,
  *::before,
  *::after {
    animation-duration: .01ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: .01ms !important;
  }
}
