:root {
  --yellow: #ffd400;
  --ink: #0b0b0c;
  --paper: #f3f1eb;
  --muted: #a3a3a3;
  --line: #2a2a2c;
}
* {
  box-sizing: border-box;
}
html {
  scroll-behavior: smooth;
}
body {
  margin: 0;
  padding-top: 88px;
  background: var(--paper);
  color: var(--ink);
  font-family: Manrope, Arial, sans-serif;
  font-size: 16px;
  line-height: 1.6;
  overflow-x: hidden;
}
a {
  color: inherit;
  text-decoration: none;
}
.skip {
  position: fixed;
  left: 1rem;
  top: -5rem;
  z-index: 1000;
  background: #fff;
  padding: 0.75rem 1rem;
}
.skip:focus {
  top: 1rem;
}
.topbar {
  height: 88px;
  padding: 0 max(4vw, 24px);
  display: flex;
  align-items: center;
  gap: 3rem;
  background: var(--ink);
  color: #fff;
  border-bottom: 1px solid #262626;
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  width: 100%;
  z-index: 100;
}
.brand {
  display: flex;
  align-items: center;
  font-family: "Space Grotesk";
  font-size: 1.25rem;
  letter-spacing: -0.03em;
  margin-right: auto;
}
.brand img {
  width: 46px;
  height: 46px;
  object-fit: contain;
  margin-right: 0.65rem;
}
.brand b,
.footer-brand b {
  color: var(--yellow);
}
nav {
  display: flex;
  gap: 2.2rem;
  font-size: 0.84rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.06em;
}
nav a:hover {
  color: var(--yellow);
}
.top-call {
  font-weight: 800;
  color: var(--yellow);
}
.menu {
  display: none;
  background: 0;
  border: 0;
}
.hero {
  min-height: 760px;
  background: var(--ink);
  color: #fff;
  display: grid;
  grid-template-columns: minmax(0, 1.18fr) minmax(380px, 0.82fr);
  padding: 86px max(4vw, 24px) 92px;
  gap: 7vw;
  position: relative;
  overflow: hidden;
}
.hero:before {
  content: "";
  position: absolute;
  inset: 0;
  background:
    linear-gradient(
      90deg,
      transparent 49.85%,
      rgba(255, 255, 255, 0.05) 50%,
      transparent 50.15%
    ),
    linear-gradient(rgba(255, 255, 255, 0.03) 1px, transparent 1px);
  background-size:
    100% 100%,
    100% 88px;
  pointer-events: none;
}
.hero-copy,
.hero-visual {
  position: relative;
  z-index: 1;
}
.eyebrow,
.kicker {
  font-size: 0.75rem;
  font-weight: 800;
  letter-spacing: 0.15em;
  text-transform: uppercase;
}
.eyebrow {
  color: #d8d8d8;
  display: flex;
  align-items: center;
  gap: 0.7rem;
}
.eyebrow span {
  width: 36px;
  height: 3px;
  background: var(--yellow);
}
h1,
h2,
h3 {
  font-family: "Space Grotesk", sans-serif;
  line-height: 0.98;
  margin: 0;
}
h1 {
  font-size: clamp(4rem, 7.4vw, 7.6rem);
  letter-spacing: -0.07em;
  margin: 1.2rem 0 1.8rem;
}
h1 em {
  font-style: normal;
  color: var(--yellow);
}
.hero-copy > p {
  max-width: 690px;
  color: #b7b7ba;
  font-size: 1.12rem;
}
.actions {
  display: flex;
  gap: 1rem;
  flex-wrap: wrap;
  margin: 2.2rem 0;
}
.btn {
  min-height: 54px;
  padding: 0.9rem 1.25rem;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-weight: 800;
  font-size: 0.91rem;
  border: 1px solid #3a3a3c;
  transition: 0.2s ease;
}
.btn.primary {
  background: var(--yellow);
  color: var(--ink);
  border-color: var(--yellow);
}
.btn.primary span {
  margin-left: 2rem;
}
.btn.primary:hover {
  background: #fff;
  border-color: #fff;
  transform: translateY(-2px);
}
.btn.secondary,
.btn.outline {
  color: #fff;
}
.btn.secondary:hover,
.btn.outline:hover {
  border-color: var(--yellow);
  color: var(--yellow);
}
.trust-row {
  display: flex;
  gap: 1.6rem;
  flex-wrap: wrap;
  color: #9a9a9d;
  font-size: 0.78rem;
  font-weight: 600;
}
.hero-visual {
  display: flex;
  align-items: center;
  justify-content: center;
}
.device-card {
  width: min(100%, 430px);
  height: 560px;
  background: #141416;
  border: 1px solid #303034;
  position: relative;
  overflow: hidden;
  box-shadow: 0 35px 80px #000;
}
.device-card:before {
  content: "";
  position: absolute;
  inset: 0;
  background: radial-gradient(circle at 50% 42%, #3d3b16 0, transparent 38%);
}
.card-top,
.card-bottom {
  position: absolute;
  left: 22px;
  right: 22px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  font-size: 0.65rem;
  letter-spacing: 0.12em;
  color: #858588;
  z-index: 3;
}
.card-top {
  top: 19px;
}
.card-top i {
  width: 7px;
  height: 7px;
  background: var(--yellow);
  border-radius: 50%;
  box-shadow: 0 0 18px var(--yellow);
}
.card-bottom {
  bottom: 20px;
}
.card-bottom b {
  font-family: "Space Grotesk";
  font-size: 2.5rem;
  color: var(--yellow);
}
.phone {
  position: absolute;
  left: 50%;
  top: 52%;
  transform: translate(-50%, -50%) rotate(8deg);
  width: 225px;
  height: 420px;
  border: 7px solid #252528;
  border-radius: 38px;
  background: #080809;
  padding: 9px;
  box-shadow:
    0 0 0 1px #666,
    20px 35px 45px #000;
}
.phone-screen {
  height: 100%;
  border-radius: 24px;
  background: linear-gradient(150deg, #18181a, #050505);
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  text-align: center;
  border: 1px solid #222;
}
.phone-screen:before {
  content: "";
  position: absolute;
  top: 17px;
  width: 70px;
  height: 18px;
  border-radius: 20px;
  background: #000;
}
.bolt {
  font-size: 4.6rem;
  line-height: 1;
  color: var(--yellow);
  text-shadow: 0 0 30px #ffd50077;
}
.phone strong {
  font-family: "Space Grotesk";
  font-size: 2rem;
  line-height: 0.9;
}
.phone small {
  color: var(--yellow);
  letter-spacing: 0.12em;
  margin-top: 0.8rem;
}
.scanline {
  position: absolute;
  left: 0;
  right: 0;
  top: 37%;
  height: 1px;
  background: var(--yellow);
  box-shadow: 0 0 20px var(--yellow);
  animation: scan 4s ease-in-out infinite;
}
.stamp {
  position: absolute;
  right: -7px;
  top: 70px;
  width: 100px;
  height: 100px;
  border-radius: 50%;
  background: var(--yellow);
  color: #101010;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  text-align: center;
  font-size: 0.66rem;
  line-height: 1.2;
  transform: rotate(8deg);
}
.stamp strong {
  font-size: 0.9rem;
}
@keyframes scan {
  50% {
    top: 66%;
  }
}
.ticker {
  background: var(--yellow);
  overflow: hidden;
  white-space: nowrap;
  padding: 0.85rem 0;
  font-family: "Space Grotesk";
  font-weight: 700;
}
.ticker div {
  display: flex;
  width: max-content;
  will-change: transform;
  animation: ticker 28s linear infinite;
}
.ticker span {
  display: block;
  flex-shrink: 0;
}
.ticker i {
  font-style: normal;
  margin: 0 1.7rem;
}
@keyframes ticker {
  to {
    transform: translateX(-50%);
  }
}
.wrap {
  width: min(1180px, 92vw);
  margin: auto;
}
.services {
  padding: 120px 0;
}
.section-head {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 4rem;
  align-items: end;
  margin-bottom: 55px;
}
.kicker {
  color: #777;
}
.section-head h2,
.process h2,
.about h2,
.cta h2 {
  font-size: clamp(3rem, 5.7vw, 5.8rem);
  letter-spacing: -0.06em;
  margin-top: 1rem;
}
.section-head p {
  font-size: 1.05rem;
  max-width: 520px;
  color: #666;
}
.service-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  border-left: 1px solid #c9c7c0;
  border-top: 1px solid #c9c7c0;
}
.service {
  min-height: 430px;
  padding: 42px;
  position: relative;
  border-right: 1px solid #c9c7c0;
  border-bottom: 1px solid #c9c7c0;
  transition: 0.25s;
}
.service:hover {
  background: #fff;
}
.service.featured {
  background: var(--yellow);
}
.service.dark {
  background: var(--ink);
  color: #fff;
}
.service .num {
  position: absolute;
  right: 28px;
  top: 25px;
  font-family: "Space Grotesk";
  color: #888;
}
.service .icon {
  font-size: 3.8rem;
  line-height: 1;
  margin-bottom: 3rem;
}
.service h3 {
  font-size: 2rem;
  letter-spacing: -0.04em;
  margin-bottom: 1rem;
}
.service p {
  max-width: 450px;
  color: #686868;
}
.service.dark p {
  color: #aaa;
}
.service ul {
  list-style: none;
  padding: 0;
  margin: 2rem 0 0;
}
.service li {
  border-top: 1px solid #b5b3aa;
  padding: 0.55rem 0;
  font-size: 0.82rem;
  font-weight: 700;
  text-transform: uppercase;
}
.service.dark li {
  border-color: #333;
}
.process {
  background: var(--yellow);
  padding: 110px 0;
}
.process > .wrap {
  display: grid;
  grid-template-columns: 1fr 1.1fr;
  gap: 8vw;
}
.process .kicker {
  color: #332f00;
}
.steps {
  list-style: none;
  margin: 0;
  padding: 0;
}
.steps li {
  display: grid;
  grid-template-columns: 60px 1fr;
  gap: 1.5rem;
  border-top: 1px solid #a68b00;
  padding: 2rem 0;
}
.steps li:last-child {
  border-bottom: 1px solid #a68b00;
}
.steps b {
  font-family: "Space Grotesk";
  font-size: 2.2rem;
}
.steps h3 {
  font-size: 1.45rem;
  margin-bottom: 0.6rem;
}
.steps p {
  margin: 0;
  max-width: 500px;
}
.about {
  padding: 120px 0;
  display: grid;
  grid-template-columns: 1.2fr 0.8fr;
  gap: 9vw;
  align-items: center;
}
.about-copy > p {
  max-width: 650px;
  color: #626262;
  font-size: 1.02rem;
}
.stats {
  background: var(--ink);
  color: #fff;
  padding: 3rem;
}
.stats > div {
  padding: 1.4rem 0;
  border-bottom: 1px solid #333;
  display: flex;
  justify-content: space-between;
  align-items: baseline;
}
.stats strong {
  font-family: "Space Grotesk";
  font-size: 2.6rem;
  color: var(--yellow);
}
.stats span {
  font-size: 0.8rem;
  text-transform: uppercase;
  color: #aaa;
}
.stats small {
  display: block;
  color: #777;
  margin-top: 1.4rem;
}
.cta {
  background: var(--ink);
  color: #fff;
  text-align: center;
  padding: 110px 0;
}
.cta .kicker {
  color: var(--yellow);
}
.cta p {
  color: #aaa;
  max-width: 620px;
  margin: 1.5rem auto;
}
.cta .actions {
  justify-content: center;
}
.cta .outline {
  border-color: #555;
}
footer {
  background: #050505;
  color: #fff;
  padding: 70px 0 25px;
}
.footer-grid {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr;
  gap: 4rem;
}
.footer-brand span {
  font-family: "Space Grotesk";
  font-size: 2rem;
}
.footer-brand p,
footer p {
  color: #888;
}
footer h4 {
  font-size: 0.75rem;
  text-transform: uppercase;
  letter-spacing: 0.12em;
  color: #777;
  margin-top: 0;
}
footer a {
  display: block;
  margin: 0.5rem 0;
}
footer a:hover {
  color: var(--yellow);
}
.legal {
  border-top: 1px solid #222;
  margin-top: 55px;
  padding-top: 20px;
  display: flex;
  justify-content: space-between;
  color: #666;
  font-size: 0.75rem;
}
.floating-wa {
  position: fixed;
  right: 22px;
  bottom: 22px;
  width: 58px;
  height: 58px;
  border-radius: 50%;
  background: var(--yellow);
  color: #111;
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 900;
  z-index: 20;
  box-shadow: 0 8px 30px #0005;
}
.reveal {
  opacity: 0;
  transform: translateY(24px);
  transition:
    opacity 0.7s ease,
    transform 0.7s ease;
}
.reveal.visible {
  opacity: 1;
  transform: none;
}
@media (max-width: 850px) {
  body {
    padding-top: 72px;
  }
  .topbar {
    height: 72px;
  }
  .topbar nav,
  .top-call {
    display: none;
  }
  .menu {
    display: block;
    width: 40px;
    height: 40px;
  }
  .menu span {
    display: block;
    width: 24px;
    height: 2px;
    background: #fff;
    margin: 7px;
  }
  .topbar.open nav {
    display: flex;
    position: absolute;
    top: 72px;
    left: 0;
    right: 0;
    background: #111;
    padding: 2rem;
    flex-direction: column;
  }
  .hero {
    grid-template-columns: 1fr;
    padding-top: 65px;
  }
  .hero-visual {
    min-height: 550px;
  }
  .section-head,
  .process > .wrap,
  .about {
    grid-template-columns: 1fr;
  }
  .service-grid {
    grid-template-columns: 1fr;
  }
  .process-title {
    margin-bottom: 2.5rem;
  }
  .footer-grid {
    grid-template-columns: 1fr 1fr;
  }
  .footer-brand {
    grid-column: 1/-1;
  }
}
@media (max-width: 560px) {
  h1 {
    font-size: 3.5rem;
  }
  .hero {
    padding-left: 20px;
    padding-right: 20px;
    min-height: auto;
  }
  .hero-visual {
    min-height: 480px;
  }
  .device-card {
    height: 470px;
  }
  .phone {
    width: 185px;
    height: 350px;
  }
  .trust-row {
    flex-direction: column;
    gap: 0.35rem;
  }
  .section-head h2,
  .process h2,
  .about h2,
  .cta h2 {
    font-size: 2.8rem;
  }
  .services,
  .about {
    padding: 80px 0;
  }
  .service {
    padding: 30px 24px;
    min-height: auto;
  }
  .process {
    padding: 80px 0;
  }
  .stats {
    padding: 2rem 1.5rem;
  }
  .stats strong {
    font-size: 2rem;
  }
  .footer-grid {
    grid-template-columns: 1fr;
  }
  .footer-brand {
    grid-column: auto;
  }
  .legal {
    flex-direction: column;
    gap: 0.5rem;
  }
  .actions .btn {
    width: 100%;
  }
}
