:root {
  --red: #e10600;
  --red-dark: #b80400;
  --black: #0f0f10;
  --ink: #171719;
  --muted: #6d6d73;
  --line: #e7e7e7;
  --soft: #f5f5f3;
  --white: #ffffff;
  --radius-xl: 34px;
  --radius-lg: 26px;
  --radius-md: 18px;
  --shadow: 0 20px 70px rgba(0, 0, 0, .08);
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
  margin: 0;
  font-family: "DM Sans", system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  color: var(--ink);
  background: var(--white);
  -webkit-font-smoothing: antialiased;
}
body.menu-open { overflow: hidden; }
a { color: inherit; text-decoration: none; }
img { max-width: 100%; display: block; }
button, input, textarea, select { font: inherit; }
button { cursor: pointer; }
.container { width: min(1180px, calc(100% - 40px)); margin: 0 auto; }
.section-pad { padding: 112px 0; }
.section-pad-sm { padding: 72px 0; }

.site-header {
  position: sticky;
  top: 0;
  z-index: 50;
  background: rgba(15,15,16,.96);
  backdrop-filter: blur(16px);
  border-bottom: 1px solid rgba(255,255,255,.07);
}
.nav-wrap { height: 78px; display: flex; align-items: center; gap: 34px; }
.brand { width: 150px; flex: 0 0 auto; overflow: hidden; }
.brand img { width: 148px; height: auto; }
.desktop-nav { display: flex; align-items: center; gap: 28px; margin-left: auto; }
.desktop-nav a { color: #f3f3f3; font-size: 14px; font-weight: 600; opacity: .82; transition: .2s ease; }
.desktop-nav a:hover { opacity: 1; color: #fff; }
.nav-cta, .mobile-cta {
  display: inline-flex; align-items: center; justify-content: center; gap: 9px;
  border-radius: 999px; padding: 13px 20px; background: var(--red); color: #fff; font-size: 14px; font-weight: 700;
  transition: transform .2s ease, background .2s ease;
}
.nav-cta:hover, .mobile-cta:hover { background: #f00b04; transform: translateY(-1px); }
.menu-toggle { display: none; width: 46px; height: 46px; border: 0; border-radius: 14px; background: #1b1b1c; }
.menu-toggle span { display: block; width: 18px; height: 2px; background: #fff; margin: 5px auto; transition: .25s ease; }
.mobile-menu { display: none; }

.hero { padding-top: 96px; overflow: hidden; }
.hero-grid { display: grid; grid-template-columns: 1.05fr .95fr; gap: 72px; align-items: center; min-height: 640px; }
.eyebrow, .section-label { font-size: 12px; font-weight: 800; letter-spacing: .16em; color: var(--red); }
.eyebrow { display: inline-flex; align-items: center; gap: 10px; padding: 8px 12px; border: 1px solid #efcfcd; border-radius: 999px; background: #fff7f6; }
.eyebrow-dot { width: 8px; height: 8px; border-radius: 50%; background: var(--red); box-shadow: 0 0 0 5px rgba(225,6,0,.09); }
h1, h2, h3 { font-family: "Manrope", sans-serif; margin-top: 0; }
h1 { font-size: clamp(58px, 7vw, 92px); line-height: .96; letter-spacing: -.055em; margin: 28px 0 28px; max-width: 720px; }
h1 span, h2 span { color: var(--red); }
.hero-text { font-size: 19px; line-height: 1.7; color: var(--muted); max-width: 650px; margin: 0 0 32px; }
.hero-actions { display: flex; gap: 12px; flex-wrap: wrap; }
.btn { display: inline-flex; align-items: center; justify-content: center; gap: 10px; border-radius: 999px; padding: 15px 22px; font-weight: 800; border: 1px solid transparent; transition: .2s ease; }
.btn:hover { transform: translateY(-2px); }
.btn-red { background: var(--red); color: #fff; }
.btn-red:hover { background: #f00b04; box-shadow: 0 10px 30px rgba(225,6,0,.2); }
.btn-ghost { background: #fff; border-color: #d9d9d9; }
.btn-ghost:hover { border-color: #111; }
.btn-white { background: #fff; color: var(--black); }
.hero-proof { display: flex; gap: 14px; align-items: center; margin-top: 38px; }
.proof-mark { width: 54px; height: 54px; border-radius: 17px; display: grid; place-items: center; background: var(--black); color: #fff; font: 800 13px "Manrope", sans-serif; }
.hero-proof p { margin: 0; color: var(--muted); line-height: 1.45; font-size: 14px; }
.hero-proof strong { color: var(--ink); }

.hero-visual { position: relative; min-height: 570px; border-radius: 42px; background: #f0f0ef; overflow: hidden; border: 1px solid #ededeb; }
.visual-grid { position: absolute; inset: 0; background-image: linear-gradient(rgba(0,0,0,.045) 1px, transparent 1px), linear-gradient(90deg, rgba(0,0,0,.045) 1px, transparent 1px); background-size: 42px 42px; mask-image: linear-gradient(to bottom right, #000, transparent 82%); }
.orb { position: absolute; border-radius: 50%; filter: blur(1px); }
.orb-one { width: 310px; height: 310px; background: var(--red); top: 72px; right: -105px; }
.orb-two { width: 170px; height: 170px; background: #111; bottom: 40px; left: -50px; }
.visual-card { position: absolute; border-radius: 26px; box-shadow: 0 24px 70px rgba(0,0,0,.13); }
.card-main { left: 66px; top: 92px; width: min(380px, calc(100% - 116px)); min-height: 350px; background: #fff; padding: 34px; transform: rotate(-3deg); }
.card-kicker { font-size: 11px; letter-spacing: .15em; font-weight: 800; color: #777; }
.signal-row { display: grid; grid-template-columns: repeat(3,1fr); gap: 8px; margin: 34px 0 28px; }
.signal-row span { display: grid; place-items: center; height: 74px; border-radius: 16px; background: var(--black); color: #fff; font: 800 13px "Manrope"; }
.signal-row span:nth-child(2) { background: var(--red); }
.signal-line { height: 8px; background: #ececec; border-radius: 99px; margin: 15px 0; overflow: hidden; }
.signal-line i { display: block; height: 100%; border-radius: inherit; background: var(--black); }
.signal-line:nth-of-type(2) i { background: var(--red); }
.card-footer { display: flex; justify-content: space-between; align-items: flex-end; gap: 16px; border-top: 1px solid #eee; margin-top: 34px; padding-top: 20px; }
.card-footer b { font: 800 20px "Manrope"; }
.card-footer span { font-size: 12px; color: #777; }
.mini-card { width: 190px; min-height: 92px; background: var(--black); color: #fff; padding: 18px; display: flex; flex-direction: column; justify-content: space-between; }
.mini-card span { font-size: 11px; color: #aaa; }
.mini-card b { font: 700 17px "Manrope"; }
.mini-top { right: 30px; top: 38px; transform: rotate(6deg); }
.mini-bottom { right: 18px; bottom: 54px; transform: rotate(3deg); background: #fff; color: #111; }
.mini-bottom span { color: #777; }
.red-tag { position: absolute; left: 28px; bottom: 35px; width: 124px; height: 124px; border-radius: 26px; background: var(--red); color: #fff; display: grid; place-items: center; text-align: center; font: 800 16px/1.1 "Manrope"; transform: rotate(-7deg); }

.credibility-strip { background: var(--black); color: #fff; padding: 32px 0; }
.strip-grid { display: grid; grid-template-columns: repeat(4,1fr); }
.strip-grid article { padding: 6px 28px; border-right: 1px solid rgba(255,255,255,.11); }
.strip-grid article:first-child { padding-left: 0; }
.strip-grid article:last-child { border-right: 0; }
.strip-grid span { display: block; color: var(--red); font-weight: 800; font-size: 12px; margin-bottom: 8px; }
.strip-grid strong { display: block; font: 700 16px "Manrope"; margin-bottom: 6px; }
.strip-grid p { margin: 0; color: #a5a5a8; line-height: 1.5; font-size: 13px; }

.built-for { background: #fafafa; border-bottom: 1px solid #eee; }
.centered { text-align: center; }
.pill-row { display: flex; justify-content: center; gap: 10px; flex-wrap: wrap; margin-top: 22px; }
.pill-row span { border-radius: 999px; border: 1px solid #dedede; background: #fff; padding: 11px 16px; font-size: 14px; font-weight: 700; }

.section-head { margin-bottom: 56px; }
.split-head { display: grid; grid-template-columns: 1.1fr .9fr; gap: 70px; align-items: end; }
.section-head h2, .why-copy h2, .results-copy h2, .faq-intro h2 { font-size: clamp(42px, 5vw, 68px); line-height: 1.02; letter-spacing: -.045em; margin: 14px 0 0; }
.split-head > p { font-size: 17px; color: var(--muted); line-height: 1.7; margin: 0 0 5px; max-width: 520px; }
.service-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 18px; }
.service-card { position: relative; min-height: 365px; border-radius: var(--radius-lg); border: 1px solid #e6e6e6; padding: 28px; background: #fff; transition: transform .25s ease, box-shadow .25s ease, border-color .25s ease; }
.service-card:hover { transform: translateY(-6px); box-shadow: var(--shadow); border-color: #d0d0d0; }
.service-card.featured { background: #fff7f6; border-color: #f2cac7; }
.dark-card { background: var(--black); color: #fff; border-color: var(--black); }
.service-number { font-size: 11px; font-weight: 800; color: #969696; }
.service-icon { position: absolute; right: 24px; top: 24px; width: 50px; height: 50px; display: grid; place-items: center; border-radius: 15px; background: var(--black); color: #fff; font-size: 20px; }
.featured .service-icon { background: var(--red); }
.dark-card .service-icon { background: var(--red); }
.service-card h3 { font-size: 25px; letter-spacing: -.025em; margin: 60px 0 14px; }
.service-card p { color: var(--muted); line-height: 1.65; font-size: 15px; }
.dark-card p { color: #a9a9ac; }
.service-card ul { list-style: none; padding: 0; margin: 26px 0 0; display: grid; gap: 10px; }
.service-card li { position: relative; padding-left: 18px; font-size: 13px; font-weight: 700; }
.service-card li::before { content: ""; position: absolute; left: 0; top: .55em; width: 6px; height: 6px; border-radius: 50%; background: var(--red); }

.why { background: var(--soft); }
.why-grid { display: grid; grid-template-columns: .9fr 1.1fr; gap: 86px; align-items: center; }
.why-visual { min-height: 600px; display: grid; place-items: center; }
.why-frame { width: 100%; min-height: 520px; border-radius: 38px; background: var(--black); color: #fff; position: relative; overflow: hidden; display: grid; place-items: center; }
.why-frame::before { content: ""; position: absolute; width: 360px; height: 360px; border-radius: 50%; border: 80px solid var(--red); top: -140px; right: -110px; opacity: .95; }
.why-frame::after { content: ""; position: absolute; inset: 30px; border: 1px solid rgba(255,255,255,.1); border-radius: 26px; }
.why-logo { position: relative; z-index: 2; font: 800 clamp(54px, 8vw, 100px) "Manrope"; letter-spacing: -.07em; }
.why-frame > p { position: absolute; z-index: 2; margin: 0; top: calc(50% + 58px); letter-spacing: .42em; font-size: 12px; color: #b3b3b6; }
.corner { position: absolute; width: 110px; height: 110px; border: 18px solid #fff; opacity: .12; }
.corner-a { left: 22px; top: 22px; border-right: 0; border-bottom: 0; border-radius: 18px 0 0 0; }
.corner-b { right: 22px; bottom: 22px; border-left: 0; border-top: 0; border-radius: 0 0 18px 0; }
.ticker { position: absolute; left: 0; right: 0; bottom: 36px; z-index: 2; display: flex; justify-content: space-around; font-size: 10px; letter-spacing: .18em; color: #777; }
.why-copy .lead { color: var(--muted); font-size: 17px; line-height: 1.7; margin: 28px 0 36px; }
.why-list { display: grid; gap: 18px; }
.why-list article { display: grid; grid-template-columns: 48px 1fr; gap: 18px; padding: 20px 0; border-top: 1px solid #dcdcdc; }
.why-list article > span { display: grid; place-items: center; width: 42px; height: 42px; border-radius: 13px; background: #fff; border: 1px solid #ddd; color: var(--red); font-size: 12px; font-weight: 800; }
.why-list h3 { font-size: 18px; margin: 2px 0 7px; }
.why-list p { margin: 0; color: var(--muted); line-height: 1.55; font-size: 14px; }

.process { background: #fff; }
.centered-head { text-align: center; }
.centered-head h2 { margin-left: auto; margin-right: auto; }
.process-grid { display: grid; grid-template-columns: repeat(5,1fr); gap: 12px; }
.process-card { min-height: 260px; border: 1px solid #e5e5e5; border-radius: 24px; padding: 24px; display: flex; flex-direction: column; transition: .25s ease; }
.process-card:hover { background: var(--black); color: #fff; transform: translateY(-5px); }
.process-card > span { width: 42px; height: 42px; display: grid; place-items: center; border-radius: 13px; background: var(--red); color: #fff; font-size: 12px; font-weight: 800; }
.process-card h3 { font-size: 22px; margin: auto 0 10px; }
.process-card p { color: var(--muted); font-size: 14px; line-height: 1.55; margin: 0; transition: color .25s ease; }
.process-card:hover p { color: #b9b9bb; }

.results { background: #f8f8f7; }
.results-grid { display: grid; grid-template-columns: .78fr 1.22fr; gap: 72px; align-items: center; }
.results-copy > p:not(.section-label) { color: var(--muted); line-height: 1.7; font-size: 16px; margin: 28px 0 30px; }
.text-link { display: inline-flex; align-items: center; gap: 9px; font-weight: 800; border-bottom: 1px solid var(--ink); padding-bottom: 3px; }
.results-cards { display: grid; grid-template-columns: 1fr 1fr; gap: 14px; }
.result-card { min-height: 240px; padding: 26px; border-radius: 24px; background: #fff; border: 1px solid #e6e6e6; }
.result-icon { width: 50px; height: 50px; border-radius: 15px; display: grid; place-items: center; background: #fff1f0; color: var(--red); font-size: 22px; }
.result-card h3 { font-size: 20px; margin: 46px 0 10px; }
.result-card p { margin: 0; color: var(--muted); line-height: 1.55; font-size: 14px; }

.blueprint { background: #f8f8f7; padding-top: 0; }
.blueprint-card { background: var(--red); color: #fff; border-radius: 38px; padding: 54px; display: grid; grid-template-columns: .9fr 1.1fr; gap: 60px; align-items: center; overflow: hidden; position: relative; }
.blueprint-card::after { content: ""; width: 420px; height: 420px; border: 1px solid rgba(255,255,255,.2); border-radius: 50%; position: absolute; right: -150px; top: -160px; box-shadow: 0 0 0 70px rgba(255,255,255,.04), 0 0 0 140px rgba(255,255,255,.03); }
.light-label { color: #fff; opacity: .78; }
.blueprint-copy { position: relative; z-index: 2; }
.blueprint-copy h2 { font-size: clamp(42px, 5vw, 64px); line-height: 1.02; letter-spacing: -.05em; margin: 14px 0 20px; }
.blueprint-copy p { color: #ffe8e7; line-height: 1.65; max-width: 510px; margin: 0 0 28px; }
.blueprint-steps { position: relative; z-index: 2; display: grid; gap: 12px; }
.blueprint-steps div { display: grid; grid-template-columns: 50px 1fr; column-gap: 16px; align-items: center; background: rgba(255,255,255,.11); border: 1px solid rgba(255,255,255,.22); border-radius: 20px; padding: 18px 20px; backdrop-filter: blur(10px); }
.blueprint-steps span { grid-row: span 2; width: 42px; height: 42px; border-radius: 13px; background: #fff; color: var(--red); display: grid; place-items: center; font-size: 12px; font-weight: 800; }
.blueprint-steps b { font: 700 18px "Manrope"; }
.blueprint-steps small { color: #ffe3e2; font-size: 13px; margin-top: 4px; }

.faq-grid { display: grid; grid-template-columns: .75fr 1.25fr; gap: 80px; align-items: start; }
.faq-intro > p:not(.section-label) { color: var(--muted); font-size: 16px; line-height: 1.7; margin-top: 26px; }
.accordion { border-top: 1px solid #ddd; }
.faq-item { border-bottom: 1px solid #ddd; }
.faq-question { width: 100%; border: 0; background: transparent; display: flex; justify-content: space-between; gap: 20px; text-align: left; padding: 24px 0; font: 700 18px "Manrope"; color: var(--ink); }
.faq-question i { font-style: normal; color: var(--red); font-size: 24px; }
.faq-answer { display: grid; grid-template-rows: 0fr; transition: grid-template-rows .28s ease; }
.faq-answer p { overflow: hidden; margin: 0; color: var(--muted); line-height: 1.65; padding-right: 44px; }
.faq-item.open .faq-answer { grid-template-rows: 1fr; }
.faq-item.open .faq-answer p { padding-bottom: 24px; }

.contact { padding-top: 60px; }
.contact-card { border-radius: 40px; background: var(--black); color: #fff; padding: 58px; display: grid; grid-template-columns: .85fr 1.15fr; gap: 72px; }
.contact-copy h2 { font-size: clamp(46px, 5vw, 70px); line-height: 1; letter-spacing: -.05em; margin: 16px 0 24px; }
.contact-copy h2 span { color: var(--red); }
.contact-copy > p:not(.section-label) { color: #a8a8ab; line-height: 1.7; font-size: 16px; max-width: 460px; }
.contact-note { display: flex; gap: 15px; margin-top: 42px; align-items: flex-start; }
.contact-note > span { width: 42px; height: 42px; border-radius: 14px; background: var(--red); display: grid; place-items: center; flex: 0 0 auto; }
.contact-note p { margin: 0; color: #a8a8ab; line-height: 1.55; font-size: 14px; }
.contact-note strong { color: #fff; }
.contact-form { display: grid; grid-template-columns: 1fr 1fr; gap: 14px; padding: 28px; background: #181819; border: 1px solid #2b2b2d; border-radius: 26px; }
.contact-form label { display: grid; gap: 8px; }
.contact-form label > span { font-size: 12px; color: #c7c7c9; font-weight: 700; }
.contact-form input, .contact-form select, .contact-form textarea { width: 100%; border: 1px solid #343437; border-radius: 14px; background: #101011; color: #fff; padding: 14px 15px; outline: none; transition: border .2s ease, box-shadow .2s ease; }
.contact-form textarea { resize: vertical; min-height: 120px; }
.contact-form input:focus, .contact-form select:focus, .contact-form textarea:focus { border-color: var(--red); box-shadow: 0 0 0 3px rgba(225,6,0,.12); }
.contact-form option { background: #111; }
.full { grid-column: 1 / -1; }
.contact-form button { border: 0; margin-top: 4px; }
.form-status { min-height: 18px; margin: 0; color: #c9c9cc; font-size: 12px; }

.footer { background: var(--black); color: #fff; padding: 36px 0 28px; border-top: 1px solid #242426; }
.footer-grid { display: grid; grid-template-columns: 1fr auto; gap: 60px; padding-bottom: 34px; }
.footer-brand img { width: 168px; }
.footer-brand p { color: #88888c; max-width: 470px; line-height: 1.6; font-size: 14px; margin: 18px 0 0; }
.footer-links { display: flex; gap: 80px; }
.footer-links div { display: grid; gap: 10px; align-content: start; }
.footer-links strong { font-size: 12px; color: #6f6f73; letter-spacing: .12em; text-transform: uppercase; margin-bottom: 7px; }
.footer-links a { color: #c9c9cb; font-size: 14px; }
.footer-links a:hover { color: #fff; }
.footer-bottom { border-top: 1px solid #252527; padding-top: 22px; display: flex; justify-content: space-between; gap: 20px; color: #747478; font-size: 12px; }
.footer-bottom a:hover { color: #fff; }

.reveal { opacity: 0; transform: translateY(20px); transition: opacity .7s ease, transform .7s ease; }
.reveal.visible { opacity: 1; transform: translateY(0); }
.delay-1 { transition-delay: .08s; }
.delay-2 { transition-delay: .16s; }
.delay-3 { transition-delay: .24s; }
.delay-4 { transition-delay: .32s; }

@media (max-width: 1040px) {
  .desktop-nav { gap: 18px; }
  .desktop-nav a { font-size: 13px; }
  .hero-grid { grid-template-columns: 1fr; gap: 56px; }
  .hero-copy { max-width: 800px; }
  .hero-visual { max-width: 720px; width: 100%; }
  .strip-grid { grid-template-columns: 1fr 1fr; gap: 24px 0; }
  .strip-grid article:nth-child(2) { border-right: 0; }
  .service-grid { grid-template-columns: 1fr 1fr; }
  .why-grid, .results-grid, .faq-grid, .contact-card { grid-template-columns: 1fr; gap: 52px; }
  .why-visual { min-height: auto; }
  .why-frame { min-height: 480px; }
  .process-grid { grid-template-columns: repeat(3,1fr); }
  .blueprint-card { grid-template-columns: 1fr; }
  .contact-form { max-width: 760px; }
}

@media (max-width: 820px) {
  .nav-wrap { height: 70px; }
  .desktop-nav, .nav-cta { display: none; }
  .menu-toggle { display: block; margin-left: auto; }
  .menu-toggle[aria-expanded="true"] span:first-child { transform: translateY(3.5px) rotate(45deg); }
  .menu-toggle[aria-expanded="true"] span:last-child { transform: translateY(-3.5px) rotate(-45deg); }
  .mobile-menu { position: fixed; left: 14px; right: 14px; top: 82px; border-radius: 22px; background: #171718; border: 1px solid #2a2a2c; padding: 20px; display: grid; gap: 4px; transform: translateY(-16px); opacity: 0; pointer-events: none; transition: .25s ease; box-shadow: 0 30px 70px rgba(0,0,0,.28); }
  .mobile-menu.open { opacity: 1; transform: translateY(0); pointer-events: auto; }
  .mobile-menu a:not(.mobile-cta) { color: #fff; padding: 12px 10px; border-radius: 12px; font-weight: 700; }
  .mobile-menu a:not(.mobile-cta):hover { background: #222; }
  .mobile-cta { margin-top: 8px; }
  .section-pad { padding: 88px 0; }
  .section-pad-sm { padding: 58px 0; }
  .split-head { grid-template-columns: 1fr; gap: 26px; }
  .process-grid { grid-template-columns: 1fr 1fr; }
  .footer-grid { grid-template-columns: 1fr; }
  .footer-links { gap: 50px; }
}

@media (max-width: 620px) {
  .container { width: min(100% - 28px, 1180px); }
  .hero { padding-top: 68px; }
  .hero-grid { min-height: auto; }
  h1 { font-size: clamp(50px, 16vw, 72px); }
  .hero-text { font-size: 17px; }
  .hero-actions .btn { width: 100%; }
  .hero-visual { min-height: 470px; border-radius: 30px; }
  .card-main { left: 26px; top: 78px; width: calc(100% - 52px); min-height: 310px; padding: 26px; }
  .signal-row span { height: 60px; }
  .mini-card { width: 142px; min-height: 76px; padding: 14px; }
  .mini-card b { font-size: 13px; }
  .mini-top { right: 14px; top: 26px; }
  .mini-bottom { right: 10px; bottom: 24px; }
  .red-tag { width: 94px; height: 94px; left: 14px; bottom: 22px; font-size: 12px; border-radius: 20px; }
  .strip-grid { grid-template-columns: 1fr; }
  .strip-grid article, .strip-grid article:first-child { border-right: 0; padding: 8px 0 18px; border-bottom: 1px solid rgba(255,255,255,.1); }
  .strip-grid article:last-child { border-bottom: 0; }
  .service-grid, .results-cards, .process-grid { grid-template-columns: 1fr; }
  .service-card { min-height: 340px; }
  .why-frame { min-height: 390px; }
  .why-list article { grid-template-columns: 42px 1fr; gap: 12px; }
  .blueprint-card, .contact-card { padding: 34px 24px; border-radius: 28px; }
  .blueprint-copy h2, .contact-copy h2 { font-size: 44px; }
  .contact-form { grid-template-columns: 1fr; padding: 18px; }
  .contact-form label { grid-column: 1 / -1; }
  .footer-links { gap: 40px; flex-wrap: wrap; }
  .footer-bottom { flex-direction: column; }
}

@media (prefers-reduced-motion: reduce) {
  *, *::before, *::after { scroll-behavior: auto !important; transition: none !important; animation: none !important; }
  .reveal { opacity: 1; transform: none; }
}
