:root {
  --ink: #07110f;
  --paper: #f4f2eb;
  --lime: #c8ff61;
  --mint: #84f5ca;
  --muted: #68716e;
  --line: rgba(7, 17, 15, .14);
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
  margin: 0;
  color: var(--ink);
  background: var(--paper);
  font-family: "DM Sans", sans-serif;
  -webkit-font-smoothing: antialiased;
}
a { color: inherit; text-decoration: none; }
.noise {
  position: fixed; inset: 0; z-index: 20; pointer-events: none; opacity: .035;
  background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 180 180' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='.9' numOctaves='3' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23n)' opacity='.8'/%3E%3C/svg%3E");
}
.site-header {
  height: 88px; padding: 0 clamp(24px, 5vw, 76px); display: flex; align-items: center;
  justify-content: space-between; border-bottom: 1px solid var(--line);
}
.brand { display: flex; align-items: center; gap: 10px; font: 700 20px/1 "Manrope", sans-serif; letter-spacing: -.5px; }
.brand-mark {
  width: 29px; height: 29px; display: grid; place-items: center; border-radius: 50%;
  color: var(--paper); background: var(--ink); font-size: 13px; font-weight: 800;
}
nav { display: flex; align-items: center; gap: 34px; font-size: 14px; font-weight: 600; }
nav > a:not(.nav-cta) { transition: opacity .2s; }
nav > a:not(.nav-cta):hover { opacity: .5; }
.nav-cta { padding: 12px 17px; border: 1px solid var(--ink); border-radius: 100px; transition: .2s; }
.nav-cta:hover { background: var(--ink); color: var(--paper); }
.nav-cta span, .button span { margin-left: 8px; }

.hero {
  min-height: calc(100vh - 88px); display: grid; grid-template-columns: 1fr 1fr; align-items: center;
  padding: 70px clamp(24px, 5vw, 76px) 76px; overflow: hidden;
}
.hero-copy { position: relative; z-index: 2; max-width: 730px; }
.eyebrow { display: flex; align-items: center; gap: 10px; margin: 0 0 25px; text-transform: uppercase; letter-spacing: 2px; font-size: 11px; font-weight: 700; }
.eyebrow > span { width: 28px; height: 1px; background: currentColor; }
h1, h2 { font-family: "Manrope", sans-serif; margin: 0; letter-spacing: -.065em; line-height: .98; }
h1 { font-size: clamp(56px, 6.25vw, 102px); font-weight: 600; }
h1 em, h2 em { color: transparent; -webkit-text-stroke: 1.5px var(--ink); font-style: normal; }
.intro { max-width: 540px; margin: 32px 0; color: #46504d; font-size: clamp(17px, 1.4vw, 21px); line-height: 1.55; }
.hero-actions { display: flex; align-items: center; gap: 30px; flex-wrap: wrap; }
.button {
  display: inline-flex; justify-content: center; align-items: center; padding: 17px 22px;
  border-radius: 100px; font-size: 14px; font-weight: 700; transition: transform .2s, background .2s;
}
.button:hover { transform: translateY(-2px); }
.button-primary { background: var(--lime); }
.button-primary:hover { background: #baf24d; }
.text-link { font-size: 14px; font-weight: 600; border-bottom: 1px solid var(--ink); padding-bottom: 4px; }
.text-link span { margin-left: 7px; }

.hero-visual { position: relative; min-height: 610px; margin-left: 5%; }
.glow { position: absolute; width: 430px; height: 430px; border-radius: 50%; left: 15%; top: 14%; background: var(--lime); filter: blur(4px); }
.orbit { position: absolute; border: 1px solid rgba(7,17,15,.2); border-radius: 50%; }
.orbit-one { width: 560px; height: 560px; left: 0; top: 5%; }
.orbit-two { width: 420px; height: 420px; left: 12%; top: 16%; }
.device { position: absolute; box-shadow: 0 32px 70px rgba(7,17,15,.24); }
.phone {
  width: 215px; height: 442px; z-index: 3; left: 14%; top: 14%; border: 7px solid #101513;
  border-radius: 36px; color: white; padding: 32px 18px 18px; background: linear-gradient(155deg,#283632,#09110f);
  transform: rotate(-8deg);
}
.phone-top { position: absolute; top: 8px; left: 75px; width: 55px; height: 16px; border-radius: 20px; background: #050807; }
.mini-brand { font-size: 7px; letter-spacing: 1.5px; font-weight: 700; }
.mini-brand span { display: inline-block; width: 5px; height: 5px; border-radius: 50%; background: var(--lime); margin-right: 4px; }
.phone-title { font: 600 25px/1.06 "Manrope"; margin-top: 46px; letter-spacing: -1px; }
.phone-chart { height: 110px; display: flex; gap: 7px; align-items: end; margin-top: 35px; border-bottom: 1px solid rgba(255,255,255,.15); }
.phone-chart i { flex: 1; border-radius: 10px 10px 2px 2px; background: linear-gradient(var(--lime), var(--mint)); }
.phone-pill { position: absolute; bottom: 25px; left: 18px; right: 18px; padding: 12px; border-radius: 30px; color: var(--ink); background: var(--lime); font-size: 10px; font-weight: 700; }
.phone-pill b { float: right; }
.browser-card {
  z-index: 2; width: 360px; height: 290px; right: -6%; top: 20%; border-radius: 12px;
  overflow: hidden; background: #f8f5ed; transform: rotate(7deg);
}
.browser-bar { height: 28px; display: flex; align-items: center; gap: 4px; padding: 0 10px; background: #deddd7; }
.browser-bar i { width: 5px; height: 5px; background: #8d928f; border-radius: 50%; }
.browser-content { height: calc(100% - 28px); padding: 38px 35px; background: radial-gradient(circle at 80% 90%,#a5f6d3 0,transparent 38%), #f5f2eb; }
.tiny-label { font-size: 7px; letter-spacing: 2px; font-weight: 700; }
.browser-content strong { display: block; margin-top: 27px; font: 600 38px/1 "Manrope"; letter-spacing: -2px; }
.browser-line { width: 60%; height: 4px; background: var(--ink); margin: 24px 0 15px; }
.browser-content small { font-size: 8px; }
.metric-card {
  position: absolute; z-index: 4; right: 7%; bottom: 13%; width: 158px; padding: 16px;
  color: white; background: rgba(7,17,15,.92); border: 1px solid rgba(255,255,255,.18); border-radius: 12px;
  box-shadow: 0 15px 40px rgba(0,0,0,.22); backdrop-filter: blur(8px); transform: rotate(-3deg);
}
.metric-card > span { font-size: 9px; color: #aab3b0; }
.metric-card strong { display: block; font: 600 42px/1 "Manrope"; margin: 8px 0 13px; }
.metric-card div { display: flex; gap: 3px; }
.metric-card i { display: block; width: 18px; height: 4px; background: var(--lime); border-radius: 2px; }
.floating-badge {
  position: absolute; z-index: 5; top: 7%; right: 8%; width: 110px; height: 110px; border-radius: 50%;
  display: grid; place-content: center; text-align: center; background: var(--ink); color: var(--paper);
  font-size: 11px; line-height: 1.5; transform: rotate(8deg);
}

.trust-strip {
  min-height: 88px; padding: 18px clamp(24px, 5vw, 76px); display: flex; justify-content: space-between;
  align-items: center; gap: 20px; background: var(--ink); color: var(--paper); text-transform: uppercase;
  font: 600 11px "Manrope"; letter-spacing: 2px; overflow: hidden;
}
.trust-strip i { width: 4px; height: 4px; flex: 0 0 auto; background: var(--lime); border-radius: 50%; }

.services { padding: 130px clamp(24px, 5vw, 76px); }
.section-heading { display: grid; grid-template-columns: 1.35fr 1fr; gap: 30px; align-items: end; margin-bottom: 74px; }
.section-heading .eyebrow { grid-column: 1 / -1; margin-bottom: -8px; }
h2 { font-size: clamp(50px, 5.3vw, 80px); font-weight: 600; }
.section-heading > p:last-child { margin: 0 0 6px; color: var(--muted); font-size: 17px; line-height: 1.6; max-width: 440px; }
.service-grid { display: grid; grid-template-columns: repeat(3, 1fr); border-top: 1px solid var(--line); }
.service-grid article { position: relative; min-height: 450px; padding: 35px 35px 28px 0; border-right: 1px solid var(--line); }
.service-grid article + article { padding-left: 35px; }
.service-grid article:last-child { border-right: 0; }
.service-number { color: #8a918f; font: 500 11px "Manrope"; }
.service-icon { margin: 55px 0 35px; font-size: 28px; }
.service-grid h3 { font: 600 27px "Manrope"; margin: 0 0 18px; letter-spacing: -1px; }
.service-grid p { color: var(--muted); line-height: 1.65; margin: 0; max-width: 360px; }
.service-grid ul { list-style: none; padding: 0; margin: 27px 0 0; font-size: 12px; font-weight: 600; line-height: 2; }
.service-grid li::before { content: "—"; margin-right: 8px; color: #a1a8a5; }

.process {
  display: grid; grid-template-columns: .85fr 1.15fr; gap: 9vw; padding: 120px clamp(24px, 5vw, 76px);
  background: #0b1613; color: var(--paper);
}
.eyebrow.light { color: var(--mint); }
.process h2 em { -webkit-text-stroke-color: var(--paper); }
.process-steps { border-top: 1px solid rgba(255,255,255,.18); }
.process-steps article { display: flex; gap: 24px; padding: 27px 0; border-bottom: 1px solid rgba(255,255,255,.18); }
.process-steps b { color: var(--lime); font: 500 11px "Manrope"; padding-top: 5px; }
.process-steps span { display: grid; grid-template-columns: 150px 1fr; gap: 25px; width: 100%; }
.process-steps strong { font: 600 22px "Manrope"; }
.process-steps small { color: #a8b1ae; font-size: 14px; line-height: 1.5; }

.contact { text-align: center; padding: 140px 24px 150px; background: var(--lime); }
.contact .eyebrow { justify-content: center; }
.contact h2 { font-size: clamp(62px, 8vw, 125px); }
.contact p:not(.eyebrow) { max-width: 540px; margin: 30px auto; font-size: 18px; line-height: 1.6; }
.button-dark { color: var(--paper); background: var(--ink); padding: 18px 25px; }
footer {
  min-height: 100px; padding: 25px clamp(24px, 5vw, 76px); display: flex; justify-content: space-between;
  align-items: center; gap: 25px; color: #aab2af; background: var(--ink); font-size: 12px;
}
footer .brand { color: var(--paper); }
footer .brand-mark { color: var(--ink); background: var(--lime); }

@media (max-width: 980px) {
  .hero { grid-template-columns: 1fr; padding-top: 80px; }
  .hero-visual { width: min(100%, 620px); margin: 35px auto -35px; }
  .section-heading { grid-template-columns: 1fr; }
  .service-grid { grid-template-columns: 1fr; }
  .service-grid article, .service-grid article + article { min-height: auto; padding: 32px 0 40px; border-right: 0; border-bottom: 1px solid var(--line); }
  .service-icon { margin: 28px 0 22px; }
  .process { grid-template-columns: 1fr; }
}
@media (max-width: 620px) {
  .site-header { height: 72px; }
  nav > a:not(.nav-cta) { display: none; }
  .nav-cta { padding: 10px 14px; font-size: 12px; }
  .hero { min-height: auto; padding-top: 64px; }
  h1 { font-size: clamp(48px, 15vw, 72px); }
  .hero-visual { min-height: 450px; transform: scale(.82); transform-origin: top left; width: 120%; margin-bottom: -80px; }
  .glow { width: 330px; height: 330px; }
  .orbit-one { width: 430px; height: 430px; }
  .orbit-two { width: 320px; height: 320px; }
  .phone { left: 4%; top: 7%; }
  .browser-card { width: 300px; right: -16%; }
  .metric-card { right: -1%; bottom: 9%; }
  .floating-badge { right: 0; top: 1%; }
  .trust-strip { justify-content: flex-start; white-space: nowrap; }
  .services, .process { padding-top: 90px; padding-bottom: 90px; }
  .process-steps span { grid-template-columns: 1fr; gap: 7px; }
  .contact { padding-top: 100px; padding-bottom: 110px; }
  footer { flex-direction: column; text-align: center; padding: 40px 24px; }
}
@media (prefers-reduced-motion: no-preference) {
  .device, .metric-card, .floating-badge { animation: rise .8s cubic-bezier(.2,.7,.2,1) both; }
  .browser-card { animation-delay: .1s; }
  .metric-card { animation-delay: .2s; }
  .floating-badge { animation-delay: .3s; }
  @keyframes rise { from { opacity: 0; translate: 0 30px; } to { opacity: 1; translate: 0 0; } }
}
