:root {
  --atf-bg: #07090d;
  --atf-panel: #10141b;
  --atf-panel-2: #151a22;
  --atf-text: #f5f7fa;
  --atf-muted: #b3bbc8;
  --atf-soft: #7d8796;
  --atf-red: #e11f2a;
  --atf-red-bright: #ff2d3c;
  --atf-red-dark: #aa121c;
  --atf-cyan: #45d7ff;
  --atf-gold: #f0c15a;
  --atf-line: rgba(255, 255, 255, 0.12);
  --atf-focus: #ffffff;
  --atf-shell: min(1160px, calc(100% - 40px));
}

html {
  scroll-behavior: smooth;
}

body.atf-landing-body {
  margin: 0;
  background: var(--atf-bg);
  overflow-x: hidden;
}

body.atf-landing-body #page {
  overflow-x: hidden;
}

.atf-page {
  position: relative;
  min-height: 100vh;
  color: var(--atf-text);
  background:
    linear-gradient(180deg, rgba(7, 9, 13, 0.72), #07090d 54%),
    radial-gradient(circle at 80% 10%, rgba(225, 31, 42, 0.22), transparent 34%),
    radial-gradient(circle at 12% 42%, rgba(255, 255, 255, 0.055), transparent 28%),
    var(--atf-bg);
  font-family: Inter, "Segoe UI", Roboto, Arial, sans-serif;
  line-height: 1.55;
  overflow: hidden;
}

.atf-page::before,
.atf-page::after {
  position: fixed;
  z-index: 0;
  pointer-events: none;
  content: "";
}

.atf-page::before {
  inset: 0;
  background:
    linear-gradient(rgba(255, 255, 255, 0.028) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255, 255, 255, 0.02) 1px, transparent 1px);
  background-size: 54px 54px;
  mask-image: linear-gradient(180deg, transparent, #000 18%, #000 76%, transparent);
  opacity: 0.54;
}

.atf-page::after {
  top: 14vh;
  right: -22vw;
  width: 52vw;
  height: 52vw;
  background: radial-gradient(circle, rgba(225, 31, 42, 0.16), transparent 66%);
  filter: blur(18px);
  transform: translate3d(0, 0, 0);
  animation: atf-orbit 11s ease-in-out infinite alternate;
}

.atf-main,
.atf-mobile-cta {
  position: relative;
  z-index: 1;
}

.atf-page *,
.atf-page *::before,
.atf-page *::after {
  box-sizing: border-box;
}

.atf-page a {
  color: inherit;
}

.atf-shell {
  width: var(--atf-shell);
  margin: 0 auto;
}

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

.atf-skip-link:focus {
  z-index: 1000;
  top: 14px;
  left: 14px;
  width: auto;
  height: auto;
  padding: 10px 14px;
  clip: auto;
  color: #07090d;
  background: #fff;
  border-radius: 6px;
}

.atf-header {
  position: fixed;
  z-index: 50;
  inset: 0 0 auto;
  background: rgba(7, 9, 13, 0.78);
  border-bottom: 1px solid var(--atf-line);
  backdrop-filter: blur(16px);
}

.atf-header__inner {
  display: flex;
  align-items: center;
  min-height: 78px;
  gap: 22px;
}

.atf-logo {
  display: inline-flex;
  align-items: center;
  flex: 0 0 auto;
}

.atf-logo img {
  display: block;
  width: 92px;
  max-height: 56px;
  object-fit: contain;
}

.atf-nav {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 26px;
  margin-left: auto;
}

.atf-nav a,
.atf-footer nav a {
  color: var(--atf-muted);
  text-decoration: none;
  font-size: 15px;
  font-weight: 700;
}

.atf-nav a:hover,
.atf-footer a:hover {
  color: var(--atf-text);
}

.atf-menu-toggle {
  display: none;
  width: 44px;
  height: 44px;
  margin-left: auto;
  border: 1px solid var(--atf-line);
  border-radius: 6px;
  background: rgba(255, 255, 255, 0.06);
}

.atf-menu-toggle span:not(.atf-sr-only) {
  display: block;
  width: 20px;
  height: 2px;
  margin: 5px auto;
  background: var(--atf-text);
}

.atf-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 48px;
  padding: 13px 20px;
  border: 1px solid transparent;
  border-radius: 6px;
  font-weight: 800;
  text-decoration: none;
  text-align: center;
  cursor: pointer;
  box-shadow: 0 16px 42px rgba(0, 0, 0, 0.18);
  transition: transform 180ms ease, background 180ms ease, border-color 180ms ease, box-shadow 180ms ease;
}

.atf-btn:hover {
  transform: translateY(-2px);
}

.atf-btn:focus-visible,
.atf-nav a:focus-visible,
.atf-footer a:focus-visible,
.atf-menu-toggle:focus-visible,
.atf-map__load:focus-visible,
.atf-form input:focus-visible,
.atf-form textarea:focus-visible {
  outline: 3px solid var(--atf-focus);
  outline-offset: 3px;
}

.atf-btn--primary {
  color: #fff;
  background:
    linear-gradient(135deg, var(--atf-red-bright), var(--atf-red-dark));
  border-color: var(--atf-red);
  box-shadow: 0 18px 54px rgba(225, 31, 42, 0.32), inset 0 1px 0 rgba(255, 255, 255, 0.24);
}

.atf-btn--primary:hover {
  background: var(--atf-red-dark);
  border-color: var(--atf-red-dark);
}

.atf-btn--secondary {
  color: var(--atf-text);
  background: linear-gradient(180deg, rgba(255, 255, 255, 0.12), rgba(255, 255, 255, 0.055));
  border-color: rgba(255, 255, 255, 0.18);
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.14);
}

.atf-btn--small {
  min-height: 42px;
  padding: 10px 16px;
  font-size: 14px;
}

.atf-btn--wide {
  width: 100%;
}

.atf-hero {
  position: relative;
  display: grid;
  align-items: center;
  min-height: 820px;
  padding: 164px 0 112px;
  overflow: hidden;
  isolation: isolate;
}

.atf-hero__media {
  position: absolute;
  inset: 0;
  z-index: -2;
}

.atf-hero__media::after {
  position: absolute;
  inset: 0;
  content: "";
  background:
    linear-gradient(90deg, rgba(7, 9, 13, 0.98) 0%, rgba(7, 9, 13, 0.78) 38%, rgba(7, 9, 13, 0.34) 100%),
    linear-gradient(180deg, rgba(7, 9, 13, 0.1), #07090d 96%);
}

.atf-hero::before {
  position: absolute;
  inset: 0;
  z-index: -1;
  pointer-events: none;
  content: "";
  background:
    repeating-linear-gradient(90deg, rgba(255, 255, 255, 0.032) 0 1px, transparent 1px 92px),
    repeating-linear-gradient(0deg, rgba(69, 215, 255, 0.028) 0 1px, transparent 1px 72px),
    linear-gradient(115deg, transparent 0 51%, rgba(225, 31, 42, 0.34) 51.18% 51.58%, transparent 52%),
    linear-gradient(122deg, transparent 0 63%, rgba(69, 215, 255, 0.16) 63.15% 63.42%, transparent 64%);
  mask-image: linear-gradient(180deg, transparent, #000 14%, #000 80%, transparent);
}

.atf-hero::after {
  position: absolute;
  right: -16vw;
  bottom: 8%;
  z-index: -1;
  width: 52vw;
  height: 180px;
  content: "";
  background: linear-gradient(90deg, transparent, rgba(225, 31, 42, 0.26), transparent);
  filter: blur(18px);
  transform: rotate(-8deg);
}

.atf-hero__media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transform: scale(1.03);
  animation: atf-hero-zoom 12s ease-in-out infinite alternate;
}

.atf-hero__content {
  position: relative;
  display: grid;
  grid-template-columns: minmax(0, 0.98fr) minmax(320px, 0.58fr);
  gap: 48px;
  align-items: center;
}

.atf-hero__copy {
  max-width: 700px;
}

.atf-eyebrow {
  margin: 0 0 12px;
  color: #ff6b73;
  font-size: 13px;
  font-weight: 900;
  letter-spacing: 0;
  text-transform: uppercase;
}

.atf-hero h1,
.atf-section h2 {
  margin: 0;
  color: var(--atf-text);
  line-height: 1.06;
}

.atf-hero h1 {
  max-width: 680px;
  font-size: clamp(52px, 7.2vw, 92px);
  letter-spacing: 0;
  text-wrap: balance;
  text-shadow: 0 18px 70px rgba(0, 0, 0, 0.72);
}

.atf-hero__lead {
  max-width: 620px;
  margin: 24px 0 0;
  color: #dce2ea;
  font-size: 22px;
}

.atf-actions {
  display: flex;
  gap: 14px;
  margin-top: 34px;
}

.atf-actions--wrap {
  flex-wrap: wrap;
}

.atf-hero__address {
  display: inline-flex;
  margin: 22px 0 0;
  color: var(--atf-muted);
  font-weight: 800;
}

.atf-hero__panel {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  max-width: 640px;
  margin-top: 34px;
  overflow: hidden;
  background: rgba(255, 255, 255, 0.055);
  border: 1px solid rgba(255, 255, 255, 0.14);
  border-radius: 8px;
  box-shadow: 0 28px 80px rgba(0, 0, 0, 0.38);
  backdrop-filter: blur(14px);
}

.atf-hero__panel span {
  position: relative;
  display: flex;
  align-items: center;
  min-height: 64px;
  padding: 14px 18px 14px 42px;
  color: #fff;
  font-size: 14px;
  font-weight: 900;
  text-transform: uppercase;
}

.atf-hero__panel span::before {
  position: absolute;
  left: 18px;
  width: 9px;
  height: 9px;
  content: "";
  background: var(--atf-red);
  border-radius: 50%;
  box-shadow: 0 0 22px rgba(225, 31, 42, 0.9);
}

.atf-hero__panel span + span {
  border-left: 1px solid rgba(255, 255, 255, 0.12);
}

.atf-hero__dashboard {
  position: relative;
  justify-self: end;
  width: min(100%, 410px);
  padding: 22px;
  overflow: hidden;
  background:
    linear-gradient(145deg, rgba(255, 255, 255, 0.14), rgba(255, 255, 255, 0.045)),
    rgba(8, 11, 16, 0.68);
  border: 1px solid rgba(255, 255, 255, 0.18);
  border-radius: 8px;
  box-shadow: 0 42px 120px rgba(0, 0, 0, 0.48), inset 0 1px 0 rgba(255, 255, 255, 0.16);
  backdrop-filter: blur(18px);
}

.atf-hero__dashboard::before {
  position: absolute;
  inset: -40% -48% auto auto;
  width: 260px;
  height: 260px;
  content: "";
  background: conic-gradient(from 90deg, rgba(225, 31, 42, 0), rgba(225, 31, 42, 0.86), rgba(69, 215, 255, 0.4), rgba(225, 31, 42, 0));
  border-radius: 50%;
  filter: blur(8px);
  opacity: 0.5;
  animation: atf-spin 8s linear infinite;
}

.atf-hero__dashboard::after {
  position: absolute;
  inset: auto 18px 18px;
  height: 1px;
  content: "";
  background: linear-gradient(90deg, transparent, rgba(69, 215, 255, 0.86), transparent);
  box-shadow: 0 0 28px rgba(69, 215, 255, 0.72);
}

.atf-gauge {
  position: relative;
  display: grid;
  place-items: center;
  min-height: 255px;
  text-align: center;
}

.atf-gauge::before,
.atf-gauge::after {
  position: absolute;
  content: "";
  border-radius: 50%;
}

.atf-gauge::before {
  width: 230px;
  height: 230px;
  background:
    radial-gradient(circle, rgba(7, 9, 13, 0.8) 0 48%, transparent 49%),
    conic-gradient(from 222deg, var(--atf-red-bright) 0 48%, rgba(69, 215, 255, 0.86) 48% 72%, rgba(255, 255, 255, 0.14) 72% 100%);
  box-shadow: 0 0 42px rgba(225, 31, 42, 0.26);
}

.atf-gauge::after {
  width: 112px;
  height: 112px;
  border: 1px solid rgba(255, 255, 255, 0.18);
  background: rgba(7, 9, 13, 0.84);
  box-shadow: inset 0 0 28px rgba(255, 255, 255, 0.055);
}

.atf-gauge span,
.atf-gauge strong,
.atf-gauge small {
  position: relative;
  z-index: 1;
}

.atf-gauge span {
  color: var(--atf-red-bright);
  font-size: 13px;
  font-weight: 900;
}

.atf-gauge strong {
  max-width: 210px;
  color: #fff;
  font-size: 28px;
  line-height: 1.05;
  text-transform: uppercase;
}

.atf-gauge small {
  max-width: 210px;
  color: var(--atf-muted);
  font-size: 13px;
  font-weight: 800;
}

.atf-dashboard__meters {
  display: grid;
  gap: 13px;
  margin-top: 8px;
}

.atf-dashboard__meters div {
  display: grid;
  grid-template-columns: 96px 1fr;
  gap: 12px;
  align-items: center;
}

.atf-dashboard__meters span {
  color: #fff;
  font-size: 13px;
  font-weight: 900;
  text-transform: uppercase;
}

.atf-dashboard__meters i {
  position: relative;
  height: 8px;
  overflow: hidden;
  background: rgba(255, 255, 255, 0.1);
  border-radius: 999px;
}

.atf-dashboard__meters i::before {
  position: absolute;
  inset: 0 auto 0 0;
  width: 84%;
  content: "";
  background: linear-gradient(90deg, var(--atf-red-bright), var(--atf-cyan));
  border-radius: inherit;
  box-shadow: 0 0 22px rgba(225, 31, 42, 0.42);
}

.atf-dashboard__meters div:nth-child(2) i::before {
  width: 76%;
}

.atf-dashboard__meters div:nth-child(3) i::before {
  width: 91%;
}

.atf-dashboard__signal {
  display: flex;
  gap: 7px;
  align-items: end;
  height: 52px;
  margin-top: 20px;
}

.atf-dashboard__signal span {
  width: 100%;
  height: 18px;
  background: linear-gradient(180deg, rgba(69, 215, 255, 0.95), rgba(225, 31, 42, 0.42));
  border-radius: 3px 3px 0 0;
  opacity: 0.86;
  animation: atf-signal 1.5s ease-in-out infinite alternate;
}

.atf-dashboard__signal span:nth-child(2) { height: 34px; animation-delay: 120ms; }
.atf-dashboard__signal span:nth-child(3) { height: 24px; animation-delay: 240ms; }
.atf-dashboard__signal span:nth-child(4) { height: 44px; animation-delay: 360ms; }
.atf-dashboard__signal span:nth-child(5) { height: 30px; animation-delay: 480ms; }

.atf-feature-rail {
  position: relative;
  margin-top: -54px;
  background: transparent;
}

.atf-feature-rail__inner {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  overflow: hidden;
  background: linear-gradient(135deg, rgba(18, 23, 31, 0.96), rgba(8, 11, 16, 0.96));
  border: 1px solid rgba(255, 255, 255, 0.14);
  border-radius: 8px;
  box-shadow: 0 32px 90px rgba(0, 0, 0, 0.45);
}

.atf-feature-rail__inner div {
  position: relative;
  min-height: 150px;
  padding: 28px;
}

.atf-feature-rail__inner div::after {
  position: absolute;
  inset: auto 24px 0;
  height: 3px;
  content: "";
  background: linear-gradient(90deg, var(--atf-red), transparent);
}

.atf-feature-rail__inner div + div {
  border-left: 1px solid rgba(255, 255, 255, 0.1);
}

.atf-feature-rail strong {
  display: block;
  margin-bottom: 10px;
  color: #fff;
  font-size: 18px;
}

.atf-feature-rail span {
  display: block;
  color: var(--atf-muted);
}

.atf-metrics {
  position: relative;
  padding: 52px 0 10px;
  background: #07090d;
}

.atf-metrics__inner {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 14px;
}

.atf-metric {
  position: relative;
  min-height: 150px;
  padding: 24px;
  overflow: hidden;
  background:
    linear-gradient(135deg, rgba(255, 255, 255, 0.105), rgba(255, 255, 255, 0.025)),
    #0c1016;
  border: 1px solid rgba(255, 255, 255, 0.14);
  border-radius: 8px;
  box-shadow: 0 22px 70px rgba(0, 0, 0, 0.28);
}

.atf-metric::before {
  position: absolute;
  right: -34px;
  bottom: -46px;
  width: 132px;
  height: 132px;
  content: "";
  border: 1px solid rgba(69, 215, 255, 0.24);
  border-radius: 50%;
  box-shadow: inset 0 0 44px rgba(69, 215, 255, 0.09), 0 0 34px rgba(225, 31, 42, 0.12);
}

.atf-metric strong {
  display: block;
  color: #fff;
  font-size: 54px;
  font-weight: 950;
  line-height: 1;
}

.atf-metric span {
  display: block;
  max-width: 260px;
  margin-top: 10px;
  color: var(--atf-muted);
  font-weight: 800;
}

.atf-section {
  padding: 92px 0;
  background: #07090d;
}

.atf-section--split {
  background: #0c1016;
}

.atf-section--contact {
  background:
    linear-gradient(180deg, rgba(225, 31, 42, 0.08), transparent 34%),
    #07090d;
}

.atf-section--location {
  background: #0c1016;
}

.atf-section--showcase {
  position: relative;
  overflow: hidden;
  background:
    linear-gradient(135deg, rgba(225, 31, 42, 0.1), transparent 32%),
    #0a0d12;
}

.atf-section--showcase::before {
  position: absolute;
  inset: 12% -20% auto auto;
  width: 58%;
  height: 260px;
  content: "";
  background: rgba(225, 31, 42, 0.12);
  filter: blur(52px);
  transform: rotate(-10deg);
}

.atf-section--workflow {
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.035), transparent 28%),
    #07090d;
}

.atf-section--privacy {
  padding: 56px 0;
  background: #07090d;
}

.atf-section__head {
  max-width: 660px;
  margin-bottom: 32px;
}

.atf-section h2 {
  font-size: clamp(32px, 5vw, 48px);
}

.atf-services {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 18px;
}

.atf-service {
  position: relative;
  min-height: 300px;
  padding: 28px;
  overflow: hidden;
  background:
    radial-gradient(circle at 88% 14%, rgba(69, 215, 255, 0.13), transparent 28%),
    linear-gradient(180deg, rgba(255, 255, 255, 0.095), rgba(255, 255, 255, 0.026)),
    #10141b;
  border: 1px solid var(--atf-line);
  border-radius: 8px;
  box-shadow: 0 22px 68px rgba(0, 0, 0, 0.22);
  transition: transform 220ms ease, border-color 220ms ease, background 220ms ease, box-shadow 220ms ease;
}

.atf-service::before {
  position: absolute;
  inset: 0 0 auto;
  height: 3px;
  content: "";
  background: linear-gradient(90deg, var(--atf-red), transparent);
  opacity: 0.72;
}

.atf-service::after {
  position: absolute;
  right: -26px;
  bottom: -34px;
  width: 120px;
  height: 120px;
  content: "";
  border: 1px solid rgba(225, 31, 42, 0.28);
  border-radius: 50%;
  box-shadow: inset 0 0 44px rgba(225, 31, 42, 0.1);
}

.atf-service:hover {
  transform: translateY(-7px);
  border-color: rgba(225, 31, 42, 0.54);
  background:
    radial-gradient(circle at 88% 14%, rgba(69, 215, 255, 0.22), transparent 30%),
    linear-gradient(180deg, rgba(225, 31, 42, 0.16), rgba(255, 255, 255, 0.035)),
    #10141b;
  box-shadow: 0 34px 92px rgba(0, 0, 0, 0.36), 0 0 32px rgba(225, 31, 42, 0.14);
}

.atf-service h3 {
  margin: 18px 0 10px;
  color: var(--atf-text);
  font-size: 20px;
  text-transform: uppercase;
}

.atf-service p,
.atf-about p,
.atf-contact-copy p {
  margin: 0;
  color: var(--atf-muted);
}

.atf-icon {
  display: inline-grid;
  place-items: center;
  width: 48px;
  height: 48px;
  color: #fff;
  background:
    linear-gradient(145deg, rgba(225, 31, 42, 0.26), rgba(69, 215, 255, 0.09));
  border: 1px solid rgba(225, 31, 42, 0.42);
  border-radius: 8px;
  box-shadow: 0 14px 36px rgba(225, 31, 42, 0.18), inset 0 1px 0 rgba(255, 255, 255, 0.18);
}

.atf-icon::before {
  font-size: 24px;
  line-height: 1;
}

.atf-icon--speed::before { content: "↗"; }
.atf-icon--fluid::before { content: "A"; }
.atf-icon--filter::before { content: "D"; }
.atf-icon--engine::before { content: "E"; }
.atf-icon--key::before { content: "K"; }
.atf-icon--radar::before { content: "R"; }
.atf-icon--expert::before { content: "✓"; }
.atf-icon--tools::before { content: "⚙"; }
.atf-icon--solution::before { content: "◎"; }

.atf-center {
  display: flex;
  justify-content: center;
  margin-top: 34px;
}

.atf-power-band {
  position: relative;
  min-height: 620px;
  overflow: hidden;
  background: #05070a;
  isolation: isolate;
}

.atf-power-band__media {
  position: absolute;
  inset: 0;
  z-index: -2;
}

.atf-power-band__media::after {
  position: absolute;
  inset: 0;
  content: "";
  background:
    linear-gradient(90deg, rgba(5, 7, 10, 0.96), rgba(5, 7, 10, 0.74) 44%, rgba(5, 7, 10, 0.18)),
    linear-gradient(180deg, #07090d 0, rgba(7, 9, 13, 0.08) 20%, #07090d 100%);
}

.atf-power-band__media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transform: scale(1.04);
  filter: saturate(1.14) contrast(1.08);
}

.atf-power-band::before {
  position: absolute;
  inset: 0;
  z-index: -1;
  content: "";
  background:
    linear-gradient(118deg, transparent 0 58%, rgba(225, 31, 42, 0.44) 58.2% 58.55%, transparent 58.8%),
    linear-gradient(124deg, transparent 0 69%, rgba(69, 215, 255, 0.18) 69.15% 69.42%, transparent 69.7%);
}

.atf-power-band__content {
  display: grid;
  grid-template-columns: minmax(0, 0.9fr) minmax(340px, 0.78fr);
  gap: 46px;
  align-items: end;
  min-height: 620px;
  padding: 96px 0;
}

.atf-power-band__copy {
  max-width: 720px;
}

.atf-power-band h2 {
  margin: 0;
  color: #fff;
  font-size: clamp(34px, 5vw, 62px);
  line-height: 1.04;
}

.atf-power-band__copy p:not(.atf-eyebrow) {
  max-width: 620px;
  margin: 22px 0 0;
  color: #d8dee7;
  font-size: 19px;
}

.atf-power-cards {
  display: grid;
  gap: 12px;
}

.atf-power-cards article {
  position: relative;
  padding: 22px;
  overflow: hidden;
  background: rgba(8, 11, 16, 0.72);
  border: 1px solid rgba(255, 255, 255, 0.16);
  border-radius: 8px;
  box-shadow: 0 28px 80px rgba(0, 0, 0, 0.34);
  backdrop-filter: blur(14px);
}

.atf-power-cards article::before {
  position: absolute;
  inset: 0 auto 0 0;
  width: 4px;
  content: "";
  background: linear-gradient(180deg, var(--atf-red-bright), var(--atf-cyan));
}

.atf-power-cards h3 {
  margin: 0 0 8px;
  color: #fff;
  font-size: 20px;
}

.atf-power-cards p {
  margin: 0;
  color: var(--atf-muted);
}

.atf-showcase {
  position: relative;
  display: grid;
  grid-template-columns: minmax(0, 0.86fr) minmax(420px, 1.14fr);
  gap: 54px;
  align-items: center;
}

.atf-showcase__copy {
  max-width: 560px;
}

.atf-showcase__copy p:not(.atf-eyebrow) {
  margin: 22px 0 0;
  color: var(--atf-muted);
  font-size: 18px;
}

.atf-mini-list {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-top: 28px;
}

.atf-mini-list span {
  padding: 10px 14px;
  color: #fff;
  background: rgba(255, 255, 255, 0.07);
  border: 1px solid rgba(255, 255, 255, 0.12);
  border-radius: 999px;
  font-size: 14px;
  font-weight: 800;
}

.atf-collage {
  display: grid;
  grid-template-columns: 1.12fr 0.88fr;
  grid-template-rows: 240px 240px;
  gap: 16px;
}

.atf-collage figure {
  position: relative;
  margin: 0;
  overflow: hidden;
  background: #111720;
  border: 1px solid rgba(255, 255, 255, 0.14);
  border-radius: 8px;
  box-shadow: 0 24px 70px rgba(0, 0, 0, 0.36), 0 0 34px rgba(69, 215, 255, 0.06);
}

.atf-collage figure::after {
  position: absolute;
  inset: 0;
  content: "";
  background:
    linear-gradient(180deg, transparent 40%, rgba(7, 9, 13, 0.46)),
    linear-gradient(120deg, rgba(225, 31, 42, 0.22), transparent 34%);
}

.atf-collage figure::before {
  position: absolute;
  inset: 14px;
  z-index: 1;
  pointer-events: none;
  content: "";
  border: 1px solid rgba(255, 255, 255, 0.18);
  border-radius: 6px;
  opacity: 0;
  transition: opacity 220ms ease;
}

.atf-collage__main {
  grid-row: span 2;
}

.atf-collage img {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 320ms ease;
}

.atf-collage figure:hover img {
  transform: scale(1.045);
}

.atf-collage figure:hover::before {
  opacity: 1;
}

.atf-about,
.atf-contact-grid,
.atf-location {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(320px, 0.82fr);
  gap: 42px;
  align-items: center;
}

.atf-about__copy {
  max-width: 680px;
}

.atf-about__copy > p {
  margin-top: 22px;
  font-size: 18px;
}

.atf-values {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 12px;
  margin-top: 30px;
}

.atf-values div {
  min-height: 126px;
  padding: 18px;
  background: rgba(255, 255, 255, 0.05);
  border: 1px solid var(--atf-line);
  border-radius: 8px;
}

.atf-values strong {
  display: block;
  margin-top: 12px;
}

.atf-about__image {
  position: relative;
  min-height: 420px;
  margin: 0;
  overflow: hidden;
  border: 1px solid var(--atf-line);
  border-radius: 8px;
  box-shadow: 0 28px 88px rgba(0, 0, 0, 0.35), 0 0 42px rgba(225, 31, 42, 0.08);
}

.atf-about__image::before {
  position: absolute;
  inset: 18px;
  z-index: 1;
  pointer-events: none;
  content: "";
  border: 1px solid rgba(255, 255, 255, 0.22);
  border-radius: 6px;
}

.atf-about__image img {
  width: 100%;
  height: 100%;
  min-height: 420px;
  object-fit: cover;
}

.atf-contact-copy {
  align-self: start;
}

.atf-workflow-head {
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto;
  gap: 24px;
  align-items: end;
  margin-bottom: 28px;
}

.atf-workflow-head h2 {
  max-width: 760px;
}

.atf-workflow {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 14px;
}

.atf-workflow article {
  position: relative;
  min-height: 260px;
  padding: 26px;
  overflow: hidden;
  background:
    radial-gradient(circle at 88% 12%, rgba(225, 31, 42, 0.15), transparent 30%),
    linear-gradient(180deg, rgba(255, 255, 255, 0.078), rgba(255, 255, 255, 0.025));
  border: 1px solid var(--atf-line);
  border-radius: 8px;
  box-shadow: 0 22px 70px rgba(0, 0, 0, 0.22);
  transition: transform 220ms ease, border-color 220ms ease;
}

.atf-workflow article::before {
  position: absolute;
  top: 32px;
  right: -20px;
  width: 92px;
  height: 1px;
  content: "";
  background: var(--atf-red);
  transform: rotate(-32deg);
  box-shadow: 0 0 22px rgba(225, 31, 42, 0.65);
}

.atf-workflow article:hover {
  transform: translateY(-6px);
  border-color: rgba(225, 31, 42, 0.42);
}

.atf-workflow span {
  display: block;
  margin-bottom: 56px;
  color: rgba(255, 255, 255, 0.16);
  font-size: 54px;
  font-weight: 900;
  line-height: 1;
}

.atf-workflow h3 {
  margin: 0 0 10px;
  color: #fff;
  font-size: 20px;
}

.atf-workflow p {
  margin: 0;
  color: var(--atf-muted);
}

.atf-contact-copy p {
  max-width: 540px;
  margin-top: 18px;
  font-size: 18px;
}

.atf-contact-links {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-top: 28px;
}

.atf-form {
  position: relative;
  padding: 28px;
  overflow: hidden;
  background:
    radial-gradient(circle at 84% 0, rgba(225, 31, 42, 0.16), transparent 32%),
    linear-gradient(180deg, rgba(255, 255, 255, 0.075), rgba(255, 255, 255, 0.028)),
    var(--atf-panel);
  border: 1px solid rgba(255, 255, 255, 0.16);
  border-radius: 8px;
  box-shadow: 0 34px 110px rgba(0, 0, 0, 0.42), inset 0 1px 0 rgba(255, 255, 255, 0.12);
}

.atf-form::before {
  position: absolute;
  inset: 0 0 auto;
  height: 3px;
  content: "";
  background: linear-gradient(90deg, var(--atf-red-bright), var(--atf-cyan), transparent);
}

.atf-field {
  margin-bottom: 18px;
}

.atf-field label,
.atf-check label {
  display: block;
  margin-bottom: 8px;
  color: var(--atf-text);
  font-weight: 800;
}

.atf-form input,
.atf-form textarea {
  width: 100%;
  color: var(--atf-text);
  background: rgba(5, 7, 10, 0.72);
  border: 1px solid rgba(255, 255, 255, 0.18);
  border-radius: 6px;
  padding: 13px 14px;
  font: inherit;
}

.atf-form input:focus,
.atf-form textarea:focus {
  border-color: rgba(69, 215, 255, 0.58);
  box-shadow: 0 0 0 4px rgba(69, 215, 255, 0.08);
}

.atf-form textarea {
  resize: vertical;
}

.atf-form input[aria-invalid="true"],
.atf-form textarea[aria-invalid="true"] {
  border-color: #ff6b73;
}

.atf-check {
  display: grid;
  grid-template-columns: 22px 1fr;
  gap: 10px;
  align-items: start;
  margin: 8px 0 18px;
}

.atf-check input {
  width: 20px;
  height: 20px;
  margin-top: 2px;
  accent-color: var(--atf-red);
}

.atf-check label {
  margin: 0;
  color: var(--atf-muted);
  font-weight: 600;
}

.atf-check a {
  color: #fff;
  text-decoration-color: var(--atf-red);
}

.atf-error {
  min-height: 20px;
  margin: 6px 0 0;
  color: #ff8a91;
  font-size: 14px;
}

.atf-form__status {
  min-height: 24px;
  margin-bottom: 12px;
  color: #ffb5ba;
  font-weight: 800;
}

.atf-form__status.is-success {
  color: #99f0b5;
}

.atf-field--trap {
  position: absolute;
  left: -10000px;
  width: 1px;
  height: 1px;
  overflow: hidden;
}

.atf-location {
  grid-template-columns: minmax(280px, 0.72fr) minmax(0, 1fr);
}

.atf-location address {
  margin-top: 18px;
  color: var(--atf-muted);
  font-style: normal;
  font-size: 19px;
  font-weight: 700;
}

.atf-privacy {
  max-width: 860px;
  margin: 0 auto;
}

.atf-privacy h2 {
  font-size: 30px;
}

.atf-privacy p:last-child {
  margin: 16px 0 0;
  color: var(--atf-muted);
}

.atf-map {
  display: grid;
  place-items: center;
  min-height: 380px;
  overflow: hidden;
  background: var(--atf-panel-2);
  border: 1px solid var(--atf-line);
  border-radius: 8px;
}

.atf-map iframe {
  width: 100%;
  height: 100%;
  min-height: 380px;
  border: 0;
}

.atf-map__load {
  min-height: 48px;
  padding: 12px 18px;
  color: #fff;
  background: var(--atf-red);
  border: 0;
  border-radius: 6px;
  font: inherit;
  font-weight: 900;
  cursor: pointer;
}

.atf-footer {
  padding: 44px 0 92px;
  color: var(--atf-muted);
  background: #05070a;
  border-top: 1px solid var(--atf-line);
}

.atf-footer__inner {
  display: grid;
  grid-template-columns: 160px 1.2fr 1fr 1fr auto;
  gap: 24px;
  align-items: start;
}

.atf-footer a {
  color: var(--atf-muted);
}

.atf-footer p {
  margin: 0;
}

.atf-footer nav {
  display: grid;
  gap: 8px;
}

[data-atf-reveal] {
  opacity: 0;
  transform: translateY(26px);
  transition: opacity 620ms ease, transform 620ms ease;
}

[data-atf-reveal].is-visible {
  opacity: 1;
  transform: translateY(0);
}

.atf-service:nth-child(2),
.atf-metric:nth-child(2),
.atf-power-cards article:nth-child(2),
.atf-workflow article:nth-child(2) {
  transition-delay: 80ms;
}

.atf-service:nth-child(3),
.atf-metric:nth-child(3),
.atf-power-cards article:nth-child(3),
.atf-workflow article:nth-child(3) {
  transition-delay: 150ms;
}

.atf-service:nth-child(4),
.atf-workflow article:nth-child(4) {
  transition-delay: 220ms;
}

@keyframes atf-orbit {
  from {
    transform: translate3d(0, 0, 0) scale(1);
  }
  to {
    transform: translate3d(-4vw, 5vh, 0) scale(1.08);
  }
}

@keyframes atf-hero-zoom {
  from {
    transform: scale(1.03);
  }
  to {
    transform: scale(1.09) translate3d(-1.4%, 0, 0);
  }
}

@keyframes atf-spin {
  to {
    transform: rotate(360deg);
  }
}

@keyframes atf-signal {
  from {
    transform: scaleY(0.68);
    opacity: 0.58;
  }
  to {
    transform: scaleY(1);
    opacity: 0.96;
  }
}

.atf-mobile-cta {
  display: none;
}

@media (max-width: 920px) {
  .atf-header__inner {
    min-height: 70px;
  }

  .atf-menu-toggle {
    display: block;
  }

  .atf-nav {
    position: absolute;
    top: 70px;
    right: 20px;
    left: 20px;
    display: none;
    flex-direction: column;
    align-items: stretch;
    gap: 0;
    padding: 10px;
    background: #0b0f15;
    border: 1px solid var(--atf-line);
    border-radius: 8px;
  }

  .atf-nav.is-open {
    display: flex;
  }

  .atf-nav a {
    padding: 14px;
  }

  .atf-header__cta {
    display: none;
  }

  .atf-hero {
    min-height: 650px;
    padding-top: 124px;
  }

  .atf-hero__content {
    grid-template-columns: 1fr;
  }

  .atf-hero__dashboard {
    justify-self: start;
    width: min(100%, 390px);
  }

  .atf-hero h1 {
    font-size: 48px;
  }

  .atf-services {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .atf-feature-rail__inner,
  .atf-metrics__inner,
  .atf-showcase,
  .atf-power-band__content,
  .atf-workflow {
    grid-template-columns: 1fr 1fr;
  }

  .atf-power-band__content {
    align-items: center;
    min-height: auto;
  }

  .atf-showcase {
    gap: 34px;
  }

  .atf-power-band__copy,
  .atf-power-cards {
    grid-column: 1 / -1;
  }

  .atf-collage {
    grid-column: 1 / -1;
  }

  .atf-about,
  .atf-contact-grid,
  .atf-location {
    grid-template-columns: 1fr;
  }

  .atf-footer__inner {
    grid-template-columns: 1fr 1fr;
  }
}

@media (max-width: 640px) {
  :root {
    --atf-shell: min(100% - 28px, 1160px);
  }

  .atf-logo img {
    width: 78px;
  }

  .atf-hero {
    min-height: 620px;
    padding: 92px 0 64px;
  }

  .atf-hero__media::after {
    background:
      linear-gradient(90deg, rgba(7, 9, 13, 0.94), rgba(7, 9, 13, 0.64)),
      linear-gradient(180deg, rgba(7, 9, 13, 0.2), #07090d 100%);
  }

  .atf-hero h1 {
    font-size: 39px;
  }

  .atf-hero__lead {
    font-size: 18px;
  }

  .atf-actions,
  .atf-contact-links {
    flex-direction: column;
  }

  .atf-hero__panel,
  .atf-feature-rail__inner,
  .atf-metrics__inner,
  .atf-showcase,
  .atf-power-band__content,
  .atf-collage,
  .atf-workflow,
  .atf-workflow-head {
    grid-template-columns: 1fr;
  }

  .atf-feature-rail {
    margin-top: 0;
  }

  .atf-hero__dashboard {
    display: none;
  }

  .atf-metrics {
    padding-top: 30px;
  }

  .atf-metric {
    min-height: 128px;
  }

  .atf-metric strong {
    font-size: 42px;
  }

  .atf-power-band {
    min-height: auto;
  }

  .atf-power-band__content {
    padding: 76px 0;
  }

  .atf-power-band h2 {
    font-size: 35px;
  }

  .atf-feature-rail__inner div + div,
  .atf-hero__panel span + span {
    border-left: 0;
    border-top: 1px solid rgba(255, 255, 255, 0.12);
  }

  .atf-collage {
    grid-template-rows: repeat(3, 220px);
  }

  .atf-collage__main {
    grid-row: auto;
  }

  .atf-workflow-head .atf-btn {
    width: 100%;
  }

  .atf-btn {
    width: 100%;
  }

  .atf-section {
    padding: 68px 0;
  }

  .atf-services,
  .atf-values {
    grid-template-columns: 1fr;
  }

  .atf-service {
    min-height: auto;
  }

  .atf-workflow article {
    min-height: auto;
  }

  .atf-workflow span {
    margin-bottom: 28px;
  }

  .atf-about__image,
  .atf-about__image img,
  .atf-map,
  .atf-map iframe {
    min-height: 300px;
  }

  .atf-form {
    padding: 20px;
  }

  .atf-footer {
    padding-bottom: 92px;
  }

  .atf-footer__inner {
    grid-template-columns: 1fr;
  }

  .atf-mobile-cta {
    position: fixed;
    z-index: 60;
    right: 12px;
    bottom: 12px;
    left: 12px;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 10px;
    padding: 10px;
    background: rgba(7, 9, 13, 0.92);
    border: 1px solid var(--atf-line);
    border-radius: 8px;
    backdrop-filter: blur(16px);
  }

  .atf-mobile-cta.is-hidden {
    display: none;
  }

  .atf-mobile-cta a {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-height: 48px;
    color: #fff;
    background: var(--atf-red);
    border-radius: 6px;
    text-decoration: none;
    font-weight: 900;
  }
}

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

  .atf-btn,
  [data-atf-reveal],
  .atf-page::after,
  .atf-hero__media img,
  .atf-hero__dashboard::before,
  .atf-dashboard__signal span {
    transition: none;
    animation: none;
  }

  [data-atf-reveal] {
    opacity: 1;
    transform: none;
  }
}
