@import url("https://fonts.googleapis.com/css2?family=Manrope:wght@400;500;600;700;800&family=Space+Grotesk:wght@500;600;700&display=swap");

:root {
  --black: #0e0e0e;
  --black-2: #171717;
  --black-3: #242424;
  --red: #c13b3f;
  --red-bright: #e14649;
  --red-dark: #8f2529;
  --white: #ffffff;
  --paper: #f7f7f5;
  --silver: #d8d8d5;
  --muted: #737373;
  --line: rgba(14, 14, 14, .12);
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
  margin: 0;
  color: var(--black);
  background: var(--white);
  font-family: "Manrope", Arial, sans-serif;
  -webkit-font-smoothing: antialiased;
}
a { color: inherit; text-decoration: none; }
button { font: inherit; }

.header {
  height: 92px;
  padding: 0 clamp(24px, 5vw, 80px);
  display: grid;
  grid-template-columns: 1fr auto 1fr;
  align-items: center;
  gap: 36px;
  position: fixed;
  inset: 0 0 auto;
  z-index: 30;
  background: rgba(255, 255, 255, .94);
  border-bottom: 1px solid rgba(14, 14, 14, .1);
  backdrop-filter: blur(18px);
}
.brand { display: inline-flex; align-items: center; justify-self: start; }
.brand img {
  width: clamp(210px, 20vw, 285px);
  height: auto;
  display: block;
}
.nav { display: flex; align-items: center; gap: clamp(24px, 3vw, 48px); }
.nav a {
  position: relative;
  color: #303030;
  font-size: 12px;
  font-weight: 800;
  letter-spacing: .05em;
  text-transform: uppercase;
}
.nav a::after {
  content: "";
  height: 2px;
  position: absolute;
  inset: auto 100% -10px 0;
  background: var(--red);
  transition: inset .22s ease;
}
.nav a:hover::after { inset-right: 0; }
.button {
  min-height: 48px;
  padding: 0 23px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  border: 0;
  border-radius: 2px;
  font-size: 12px;
  font-weight: 800;
  letter-spacing: .04em;
  text-transform: uppercase;
  transition: transform .2s, background .2s, box-shadow .2s;
}
.button:hover { transform: translateY(-2px); }
.button-header { justify-self: end; color: white; background: var(--black); }
.button-header:hover { background: var(--red); }
.menu-button { display: none; border: 0; background: transparent; color: var(--black); }
.menu-button span { width: 24px; height: 2px; display: block; margin: 5px 0; background: currentColor; transition: .2s; }
.menu-button.open span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
.menu-button.open span:nth-child(2) { opacity: 0; }
.menu-button.open span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }

.hero {
  min-height: 870px;
  padding: 180px clamp(24px, 7vw, 110px) 92px;
  display: grid;
  grid-template-columns: minmax(0, 1.08fr) minmax(460px, .92fr);
  align-items: center;
  gap: 6vw;
  overflow: hidden;
  position: relative;
  color: white;
  background:
    radial-gradient(circle at 86% 42%, rgba(193, 59, 63, .22), transparent 30%),
    linear-gradient(112deg, #080808 0%, #111 58%, #1a1011 100%);
}
.hero-grid {
  position: absolute;
  inset: 92px 0 0 46%;
  opacity: .18;
  background-image:
    linear-gradient(rgba(255,255,255,.15) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255,255,255,.15) 1px, transparent 1px);
  background-size: 46px 46px;
  transform: perspective(700px) rotateY(-16deg) scale(1.2);
  mask-image: linear-gradient(90deg, transparent, black 30%);
}
.hero-redline {
  width: 42vw;
  height: 140%;
  position: absolute;
  right: -30vw;
  top: -20%;
  border-left: 2px solid rgba(225,70,73,.45);
  border-right: 55px solid rgba(193,59,63,.08);
  transform: skewX(-23deg);
}
.hero-content { max-width: 760px; position: relative; z-index: 2; }
.eyebrow, .section-label {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  color: var(--red);
  font-size: 10px;
  font-weight: 800;
  letter-spacing: .24em;
  text-transform: uppercase;
}
.eyebrow span { width: 38px; height: 2px; background: var(--red); }
.hero h1 {
  max-width: 820px;
  margin: 28px 0 26px;
  color: white;
  font: 700 clamp(58px, 6.4vw, 100px)/.92 "Space Grotesk", sans-serif;
  letter-spacing: -.055em;
}
.hero h1 span { display: block; color: var(--red-bright); }
.hero-copy {
  max-width: 650px;
  margin: 0;
  color: #dddddd;
  font-size: clamp(17px, 1.35vw, 20px);
  line-height: 1.75;
}
.hero-actions { display: flex; flex-wrap: wrap; gap: 12px; margin-top: 40px; }
.button-primary {
  min-height: 56px;
  padding-inline: 27px;
  color: white;
  background: var(--red);
  box-shadow: 0 17px 36px rgba(193,59,63,.22);
}
.button-primary:hover { background: var(--red-bright); box-shadow: 0 20px 42px rgba(193,59,63,.3); }
.button-ghost { min-height: 56px; color: white; background: rgba(255,255,255,.04); border: 1px solid rgba(255,255,255,.2); }
.button-ghost:hover { background: rgba(255,255,255,.09); }
.hero-trust { display: flex; flex-wrap: wrap; gap: 25px; margin-top: 38px; color: #c8c8c8; font-size: 11px; font-weight: 700; letter-spacing: .03em; }
.hero-trust span { display: flex; align-items: center; gap: 7px; }
.hero-trust svg { color: var(--red-bright); }

.hero-visual {
  height: 560px;
  position: relative;
  z-index: 2;
  display: grid;
  place-items: center;
}
.visual-kicker {
  position: absolute;
  top: 3%;
  right: 1%;
  color: #a8a8a8;
  font: 600 9px "Space Grotesk";
  letter-spacing: .24em;
}
.core {
  width: min(100%, 420px);
  min-height: 390px;
  padding: 35px;
  position: relative;
  color: white;
  background: linear-gradient(145deg, rgba(39,39,39,.96), rgba(13,13,13,.96));
  border: 1px solid rgba(255,255,255,.14);
  box-shadow: 0 45px 90px rgba(0,0,0,.5);
}
.core::before {
  content: "";
  position: absolute;
  inset: -1px auto -1px -1px;
  width: 4px;
  background: var(--red);
}
.core::after {
  content: "";
  width: 62px;
  height: 62px;
  position: absolute;
  right: -1px;
  top: -1px;
  border-top: 1px solid var(--red);
  border-right: 1px solid var(--red);
}
.core-top { display: flex; align-items: center; gap: 11px; color: #bdbdbd; }
.core-top svg { color: var(--red); }
.core-top span { font-size: 9px; font-weight: 800; letter-spacing: .2em; }
.core-top i { width: 8px; height: 8px; margin-left: auto; background: var(--red-bright); border-radius: 50%; box-shadow: 0 0 14px var(--red); }
.core > strong {
  display: block;
  margin: 38px 0 30px;
  font: 700 40px/1 "Space Grotesk";
  letter-spacing: -.04em;
}
.core-chart {
  height: 83px;
  display: flex;
  align-items: end;
  gap: 8px;
  padding-bottom: 10px;
  border-bottom: 1px solid rgba(255,255,255,.12);
}
.core-chart b {
  flex: 1;
  min-height: 10px;
  background: linear-gradient(to top, var(--red-dark), var(--red-bright));
  opacity: .85;
}
.core-meta { display: grid; grid-template-columns: 1fr 1fr; gap: 25px; margin-top: 24px; }
.core-meta span { display: flex; flex-direction: column; color: white; font: 600 19px "Space Grotesk"; }
.core-meta small { margin-bottom: 6px; color: #b5b5b5; font: 700 8px "Manrope"; letter-spacing: .18em; }
.status-card {
  min-width: 176px;
  padding: 15px 17px;
  display: grid;
  grid-template-columns: auto 1fr auto;
  align-items: center;
  gap: 12px;
  position: absolute;
  z-index: 3;
  color: white;
  background: rgba(15,15,15,.94);
  border: 1px solid rgba(255,255,255,.16);
  box-shadow: 0 18px 45px rgba(0,0,0,.38);
  backdrop-filter: blur(12px);
}
.status-card svg { color: var(--red-bright); }
.status-card em { color: var(--red-bright); font: 800 11px "Space Grotesk"; letter-spacing: .04em; }
.status-card div { display: flex; flex-direction: column; }
.status-card small { color: #b2b2b2; font-size: 8px; font-weight: 800; letter-spacing: .16em; }
.status-card strong { margin-top: 2px; font-size: 12px; }
.status-card i { width: 7px; height: 7px; background: var(--red-bright); border-radius: 50%; box-shadow: 0 0 10px var(--red); }
.status-network { left: -5%; top: 18%; }
.status-security { right: -8%; top: 42%; }
.status-support { left: 0; bottom: 8%; }

.proof-strip {
  min-height: 118px;
  padding: 0 clamp(24px, 7vw, 110px);
  display: grid;
  grid-template-columns: repeat(3, minmax(150px, .7fr)) 1.4fr;
  align-items: center;
  background: var(--red);
  color: white;
}
.proof-strip > div { display: flex; align-items: center; gap: 13px; }
.proof-strip strong { font: 700 31px "Space Grotesk"; }
.proof-strip span { max-width: 110px; color: rgba(255,255,255,.88); font-size: 10px; font-weight: 700; line-height: 1.35; text-transform: uppercase; }
.proof-strip p { margin: 0; justify-self: end; font-size: 10px; font-weight: 800; letter-spacing: .14em; text-transform: uppercase; }
.proof-strip p i { display: inline-block; width: 5px; height: 5px; margin: 0 10px 2px; background: white; transform: rotate(45deg); }

.section { padding: 115px clamp(24px, 7vw, 110px); }
.about { background: white; }
.about-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 10vw; margin-top: 28px; align-items: start; }
.about h2, .section-heading h2, .difference h2, .cta h2 {
  margin: 0;
  color: var(--black);
  font: 700 clamp(38px, 4vw, 61px)/1.04 "Space Grotesk";
  letter-spacing: -.045em;
}
.about h2::first-line { color: var(--black); }
.about-copy { padding-left: 34px; position: relative; }
.about-copy::before { content: ""; width: 3px; position: absolute; inset: 0 auto 0 0; background: var(--red); }
.about-copy p { margin: 0 0 18px; color: var(--muted); font-size: 15px; line-height: 1.85; }

.services { color: white; background: var(--black); }
.section-heading { display: flex; justify-content: space-between; align-items: end; gap: 40px; margin-bottom: 55px; }
.section-heading h2 { max-width: 730px; margin-top: 14px; color: white; }
.section-heading > p { max-width: 350px; color: #d0d0d0; line-height: 1.7; }
.services-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 18px; }
.service-card {
  min-height: 340px;
  padding: 34px;
  position: relative;
  overflow: hidden;
  color: var(--black);
  background: white;
  border: 1px solid rgba(255,255,255,.12);
  transition: .25s;
}
.service-card:hover { z-index: 2; transform: translateY(-7px); background: #fafafa; box-shadow: 0 26px 55px rgba(0,0,0,.36); }
.service-card::after { content: ""; height: 3px; position: absolute; inset: auto 100% 0 0; background: var(--red); transition: inset .28s; }
.service-card:hover::after { inset-right: 0; }
.service-number { position: absolute; right: 25px; top: 27px; color: #d0d0d0; font: 700 12px "Space Grotesk"; letter-spacing: .1em; }
.service-icon { width: 52px; height: 52px; display: grid; place-items: center; color: white; background: var(--red); }
.service-card h3 { margin: 27px 0 13px; color: var(--black); font: 600 21px "Space Grotesk"; }
.service-card p { color: #6e6e6e; font-size: 13px; line-height: 1.75; }
.service-card a { display: inline-flex; align-items: center; gap: 8px; margin-top: 18px; color: var(--red-bright); font-size: 11px; font-weight: 800; letter-spacing: .05em; text-transform: uppercase; }

.difference { background: var(--paper); }
.difference-panel {
  padding: clamp(45px, 6vw, 84px);
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 9vw;
  align-items: center;
  position: relative;
  overflow: hidden;
  color: white;
  background: linear-gradient(125deg, #171717, #070707);
}
.difference-panel::after {
  content: "NT";
  position: absolute;
  right: -2%;
  top: -23%;
  color: rgba(255,255,255,.025);
  font: 700 330px "Space Grotesk";
}
.section-label.light { color: var(--red-bright); }
.difference h2 { margin-top: 18px; color: white; }
.difference-panel > div > p { margin-top: 23px; color: #d0d0d0; line-height: 1.8; }
.difference-list { display: grid; position: relative; z-index: 2; }
.difference-list > div { padding: 22px 0; display: grid; grid-template-columns: 48px 1fr; gap: 19px; border-bottom: 1px solid rgba(255,255,255,.12); }
.difference-list strong { color: var(--red-bright); font: 600 12px "Space Grotesk"; }
.difference-list span { display: flex; flex-direction: column; color: #c4c4c4; font-size: 12px; }
.difference-list b { margin-bottom: 6px; color: white; font: 600 18px "Space Grotesk"; }

.cta {
  display: grid;
  grid-template-columns: 1.15fr .85fr;
  gap: 9vw;
  align-items: center;
  background: white;
}
.cta h2 { max-width: 760px; margin-top: 16px; }
.cta-content p { color: var(--muted); font-size: 16px; }
.contact-card {
  padding: 40px;
  display: flex;
  flex-direction: column;
  position: relative;
  background: var(--paper);
  border: 1px solid var(--line);
  box-shadow: 18px 18px 0 var(--red);
}
.contact-card > span { color: var(--muted); font-size: 9px; font-weight: 800; letter-spacing: .18em; text-transform: uppercase; }
.contact-card > strong { margin: 8px 0 28px; color: var(--black); font: 600 19px "Space Grotesk"; }
.contact-card a { padding: 16px 0; display: flex; align-items: center; gap: 12px; color: var(--black); border-top: 1px solid var(--line); font-weight: 800; }
.contact-card a:hover { color: var(--red); }
.contact-card svg { color: var(--red); }
.phone-icon { color: var(--red); font-size: 20px; }
.contact-card a span { display: flex; flex-direction: column; gap: 3px; }
.contact-card a b { font: 700 14px "Space Grotesk"; }
.contact-card a small { color: var(--muted); font-size: 12px; font-weight: 700; }
.contact-card a:hover small { color: var(--red-dark); }

footer {
  padding: 38px clamp(24px, 7vw, 110px);
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 28px;
  color: #5e5e5e;
  background: #f2f2f0;
  border-top: 1px solid var(--line);
  font-size: 10px;
}
.footer-brand { padding: 0; background: transparent; }
.footer-brand img { width: 215px; }
@media (max-width: 1100px) {
  .header { grid-template-columns: 1fr auto auto; }
  .nav { display: none; }
  .menu-button { display: block; }
  .nav.open {
    padding: 26px;
    display: flex;
    position: absolute;
    inset: 92px 0 auto;
    flex-direction: column;
    align-items: stretch;
    background: white;
    box-shadow: 0 18px 35px rgba(0,0,0,.14);
  }
  .nav.open a { padding: 10px 20px; }
  .hero { grid-template-columns: 1fr; }
  .hero-content { max-width: 850px; }
  .hero-visual { margin-top: 20px; }
  .proof-strip { grid-template-columns: repeat(3, 1fr); }
  .proof-strip p { display: none; }
  .services-grid { grid-template-columns: repeat(2, 1fr); }
}
@media (max-width: 720px) {
  .header { height: 78px; padding-inline: 20px; }
  .brand img { width: 205px; }
  .button-header { display: none; }
  .nav.open { inset: 78px 0 auto; }
  .hero { min-height: auto; padding: 135px 22px 70px; gap: 10px; }
  .hero h1 { font-size: 52px; }
  .hero-visual { height: 490px; transform: scale(.82); margin-inline: -55px; }
  .proof-strip { padding: 25px 22px; gap: 20px; grid-template-columns: 1fr; }
  .proof-strip > div { justify-content: center; }
  .section { padding: 80px 22px; }
  .about-grid, .difference-panel, .cta { grid-template-columns: 1fr; }
  .about-copy { padding-left: 22px; }
  .section-heading { display: block; }
  .services-grid { grid-template-columns: 1fr; }
  .difference-panel { padding: 42px 25px; }
  .contact-card { box-shadow: 10px 10px 0 var(--red); }
  footer { flex-direction: column; text-align: center; }
}
@media (max-width: 410px) {
  .brand img { width: 180px; }
  .hero h1 { font-size: 45px; }
  .hero-actions .button { width: 100%; }
  .hero-visual { height: 420px; transform: scale(.7); }
}
@media (prefers-reduced-motion: reduce) {
  * { scroll-behavior: auto !important; animation: none !important; transition: none !important; }
}
