:root {
  --pink: #EA165A;
  --pink-deep: #c80f49;
  --black: #000000;
  --ink: #0d0d10;
  --panel: #151519;
  --panel-2: #1e1e23;
  --white: #ffffff;
  --off-white: #f7f7f8;
  --muted: #b6b6bf;
  --line: rgba(255,255,255,.12);
  --light-line: #ddddE3;
  --shadow: 0 24px 70px rgba(0,0,0,.22);
  --radius: 22px;
  --shell: 1180px;
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
  margin: 0;
  font-family: "Poppins", system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  color: var(--ink);
  background: var(--black);
  line-height: 1.6;
}
a { color: inherit; }
img { display: block; max-width: 100%; }
button, input, select, textarea { font: inherit; }
button, a { -webkit-tap-highlight-color: transparent; }
:focus-visible { outline: 3px solid rgba(234,22,90,.45); outline-offset: 3px; }

.skip-link {
  position: fixed;
  left: 14px;
  top: -80px;
  z-index: 999;
  background: var(--white);
  color: var(--black);
  padding: 10px 14px;
  border-radius: 10px;
  transition: top .2s ease;
}
.skip-link:focus { top: 14px; }

.shell { width: min(calc(100% - 40px), var(--shell)); margin-inline: auto; }

.site-header {
  position: sticky;
  top: 0;
  z-index: 50;
  background: rgba(0,0,0,.88);
  backdrop-filter: blur(18px);
  border-bottom: 1px solid rgba(255,255,255,.08);
}
.header-inner { min-height: 82px; display: flex; align-items: center; justify-content: space-between; gap: 24px; }
.brand { display: block; width: 230px; }
.brand { background: transparent !important; }
.brand img { width: 100%; height: auto; background: transparent !important; }
.site-nav { display: flex; align-items: center; gap: 24px; color: rgba(255,255,255,.78); font-size: .93rem; font-weight: 500; }
.site-nav a { text-decoration: none; transition: color .2s ease, background .2s ease; }
.site-nav a:hover { color: var(--white); }
.site-nav .nav-cta { color: var(--white); border: 1px solid rgba(255,255,255,.18); padding: 10px 16px; border-radius: 999px; }
.site-nav .nav-cta:hover { background: var(--pink); border-color: var(--pink); }
.menu-button { display: none; color: var(--white); background: transparent; border: 1px solid var(--line); border-radius: 10px; padding: 9px 12px; }

.hero {
  position: relative;
  overflow: hidden;
  background:
    radial-gradient(circle at 80% 10%, rgba(234,22,90,.18), transparent 34%),
    linear-gradient(180deg, #050505 0%, #0d0d10 100%);
  color: var(--white);
  padding: 100px 0 110px;
}
.hero-glow { position: absolute; width: 520px; height: 520px; border-radius: 50%; background: rgba(234,22,90,.12); filter: blur(90px); right: -220px; bottom: -220px; }
.hero-grid { position: relative; display: grid; grid-template-columns: 1.15fr .85fr; gap: 74px; align-items: center; }
.eyebrow { margin: 0 0 14px; color: var(--pink); font-size: .78rem; font-weight: 700; letter-spacing: .18em; text-transform: uppercase; }
.hero h1, .section h2 { margin: 0; line-height: 1.08; letter-spacing: -.035em; }
.hero h1 { max-width: 760px; font-size: clamp(3rem, 6vw, 5.3rem); }
.hero h1 span { color: var(--pink); }
.hero-lede { max-width: 690px; margin: 26px 0 0; color: rgba(255,255,255,.72); font-size: clamp(1.06rem, 1.8vw, 1.28rem); }
.hero-actions { display: flex; flex-wrap: wrap; gap: 12px; margin-top: 36px; }
.button { display: inline-flex; align-items: center; justify-content: center; gap: 8px; min-height: 50px; padding: 0 20px; border: 1px solid transparent; border-radius: 12px; text-decoration: none; font-weight: 600; cursor: pointer; transition: transform .18s ease, box-shadow .18s ease, background .18s ease, border-color .18s ease; }
.button:hover { transform: translateY(-2px); }
.button-primary { color: var(--white); background: var(--pink); box-shadow: 0 12px 32px rgba(234,22,90,.24); }
.button-primary:hover { background: #f32167; box-shadow: 0 14px 38px rgba(234,22,90,.34); }
.button-secondary { color: var(--white); background: rgba(255,255,255,.03); border-color: rgba(255,255,255,.18); }
.button-secondary:hover { background: rgba(255,255,255,.08); }
.button-dark { background: var(--black); color: var(--white); }
.hero-contact { display: flex; flex-wrap: wrap; gap: 10px; margin-top: 28px; color: rgba(255,255,255,.6); font-size: .91rem; }
.hero-contact a { text-decoration: none; }
.hero-contact a:hover { color: var(--white); }

.hero-card { position: relative; padding: 38px; border-radius: var(--radius); background: linear-gradient(145deg, rgba(255,255,255,.075), rgba(255,255,255,.025)); border: 1px solid rgba(255,255,255,.12); box-shadow: var(--shadow); }
.hero-card-line { position: absolute; left: 38px; top: 0; width: 90px; height: 4px; background: var(--pink); border-radius: 0 0 4px 4px; }
.small-label { margin: 0 0 12px; color: var(--pink); font-size: .77rem; text-transform: uppercase; letter-spacing: .12em; font-weight: 700; }
.hero-card h2 { margin: 0; font-size: clamp(1.55rem, 2.5vw, 2.15rem); }
.hero-card > p:not(.small-label) { color: rgba(255,255,255,.66); }
.metric-row { display: grid; grid-template-columns: repeat(3,1fr); gap: 12px; margin-top: 28px; padding-top: 24px; border-top: 1px solid var(--line); }
.metric-row div { min-width: 0; }
.metric-row strong { display: block; font-size: 1.55rem; color: var(--white); }
.metric-row span { display: block; color: rgba(255,255,255,.5); font-size: .72rem; }

.section { padding: 100px 0; }
.section-light { background: var(--off-white); }
.section-dark { background: #09090b; color: var(--white); }
.section-pink { background: var(--pink); color: var(--black); }
.section-contact { background: #101014; color: var(--white); }
.section-heading { max-width: 760px; margin-bottom: 46px; }
.section-heading h2, .split-section h2, .contact-copy h2, .about-grid h2 { font-size: clamp(2.35rem, 4.3vw, 4.2rem); }
.section-heading > p:last-child, .section-lede { font-size: 1.08rem; color: #676771; }
.section-lede { margin: 22px 0 0; color: rgba(255,255,255,.65); }
.section-lede.dark-text { color: #5d5d67; }

.service-grid { display: grid; grid-template-columns: repeat(3,1fr); gap: 20px; }
.service-card { position: relative; min-height: 390px; display: flex; flex-direction: column; padding: 30px; background: var(--white); border: 1px solid #e7e7ea; border-radius: 18px; overflow: hidden; }
.service-card::before { content: ""; position: absolute; inset: auto -30px -70px auto; width: 160px; height: 160px; border-radius: 50%; background: rgba(234,22,90,.05); }
.service-card.featured { background: var(--black); color: var(--white); border-color: var(--black); }
.service-number { color: var(--pink); font-weight: 700; font-size: .85rem; letter-spacing: .1em; }
.service-tag { align-self: flex-start; margin-top: 20px; padding: 5px 9px; border-radius: 999px; background: rgba(234,22,90,.08); color: var(--pink); font-size: .7rem; font-weight: 700; text-transform: uppercase; letter-spacing: .08em; }
.featured .service-tag { background: rgba(234,22,90,.18); }
.service-card h3 { margin: 22px 0 12px; font-size: 1.45rem; line-height: 1.25; }
.service-card p { margin: 0 0 24px; color: #666670; }
.service-card.featured p { color: rgba(255,255,255,.6); }
.service-card a { margin-top: auto; color: var(--pink); font-weight: 600; text-decoration: none; }

.split-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 80px; align-items: center; }
.reverse > :first-child { order: 2; }
.reverse > :last-child { order: 1; }
.check-list { display: grid; gap: 12px; margin: 30px 0 34px; color: rgba(255,255,255,.78); }
.check-list div { display: flex; align-items: center; gap: 12px; }
.check-list span { display: grid; place-items: center; width: 25px; height: 25px; border-radius: 50%; background: rgba(234,22,90,.16); color: var(--pink); font-size: .82rem; }
.visual-card { min-height: 460px; position: relative; display: grid; place-items: center; border-radius: 28px; overflow: hidden; background: radial-gradient(circle at center, rgba(234,22,90,.18), transparent 58%), #111116; border: 1px solid var(--line); box-shadow: var(--shadow); }
.visual-center { position: relative; z-index: 4; display: grid; place-items: center; width: 132px; height: 132px; border-radius: 50%; background: var(--pink); color: var(--white); font-size: 2rem; font-weight: 700; box-shadow: 0 20px 50px rgba(234,22,90,.26); }
.orbit { position: absolute; border: 1px solid rgba(255,255,255,.13); border-radius: 50%; }
.orbit-one { width: 290px; height: 290px; }
.orbit-two { width: 430px; height: 430px; }
.hotspot { position: absolute; width: 18px; height: 18px; border: 3px solid var(--white); background: var(--pink); border-radius: 50%; box-shadow: 0 0 0 8px rgba(234,22,90,.15); }
.hotspot-a { top: 24%; left: 31%; }
.hotspot-b { top: 43%; right: 18%; }
.hotspot-c { bottom: 21%; left: 24%; }

.product-stack { position: relative; min-height: 480px; }
.product-card { position: absolute; width: 78%; min-height: 180px; padding: 32px; border-radius: 22px; display: flex; flex-direction: column; justify-content: flex-end; box-shadow: 0 30px 55px rgba(0,0,0,.13); border: 1px solid rgba(0,0,0,.08); }
.product-card span { font-size: 1.7rem; font-weight: 700; letter-spacing: -.03em; }
.product-card small { margin-top: 6px; color: #777780; }
.product-one { left: 4%; top: 18px; background: var(--white); transform: rotate(-5deg); }
.product-two { right: 0; top: 150px; background: var(--black); color: var(--white); transform: rotate(4deg); }
.product-two small { color: rgba(255,255,255,.52); }
.product-three { left: 8%; bottom: 10px; background: var(--pink); color: var(--white); transform: rotate(-1deg); }
.product-three small { color: rgba(255,255,255,.72); }
.mini-grid { display: grid; grid-template-columns: repeat(3,1fr); gap: 12px; margin: 30px 0 34px; }
.mini-grid div { padding: 16px 0; border-top: 2px solid var(--pink); }
.mini-grid strong { display: block; }
.mini-grid span { display: block; margin-top: 4px; color: #6c6c76; font-size: .82rem; }

.eyebrow-dark { color: rgba(0,0,0,.66); }
.about-grid { display: grid; grid-template-columns: .9fr 1.1fr; gap: 80px; align-items: start; }
.about-copy { font-size: 1.08rem; }
.about-copy p { margin: 0 0 18px; }

.contact-grid { display: grid; grid-template-columns: .78fr 1.22fr; gap: 76px; align-items: start; }
.contact-copy > p:not(.eyebrow) { color: rgba(255,255,255,.61); }
.contact-lines { margin-top: 32px; display: grid; gap: 12px; }
.contact-lines a { display: block; text-decoration: none; padding: 16px 0; border-top: 1px solid var(--line); }
.contact-lines span { display: block; color: rgba(255,255,255,.42); font-size: .72rem; text-transform: uppercase; letter-spacing: .12em; }
.contact-lines strong { display: block; margin-top: 3px; }
.contact-form { padding: 30px; border: 1px solid var(--line); border-radius: 22px; background: rgba(255,255,255,.035); box-shadow: var(--shadow); }
.form-row { margin-bottom: 18px; }
.two-col { display: grid; grid-template-columns: 1fr 1fr; gap: 16px; }
.contact-form label { display: block; margin-bottom: 18px; color: rgba(255,255,255,.72); font-size: .82rem; font-weight: 600; }
.contact-form input, .contact-form select, .contact-form textarea { width: 100%; margin-top: 7px; border: 1px solid rgba(255,255,255,.14); border-radius: 11px; padding: 13px 14px; color: var(--white); background: #08080b; outline: none; transition: border-color .2s ease, box-shadow .2s ease; }
.contact-form textarea { resize: vertical; min-height: 140px; }
.contact-form input:focus, .contact-form select:focus, .contact-form textarea:focus { border-color: var(--pink); box-shadow: 0 0 0 3px rgba(234,22,90,.13); }
.website-field { position: absolute !important; left: -9999px !important; width: 1px !important; height: 1px !important; overflow: hidden !important; }
.form-footer { display: flex; align-items: center; gap: 18px; flex-wrap: wrap; }
#form-status { margin: 0; color: rgba(255,255,255,.62); font-size: .82rem; }
#form-status.success { color: #7be7a4; }
#form-status.error { color: #ff8aab; }

.site-footer { padding: 56px 0 34px; background: var(--black); color: var(--white); border-top: 1px solid var(--line); }
.footer-inner { display: grid; grid-template-columns: 1fr auto; gap: 28px; align-items: end; }
.footer-brand img { width: 210px; }
.footer-brand p { margin: 14px 0 0; color: rgba(255,255,255,.46); }
.footer-links { display: flex; gap: 18px; flex-wrap: wrap; justify-content: flex-end; }
.footer-links a { text-decoration: none; color: rgba(255,255,255,.66); }
.footer-links a:hover { color: var(--pink); }
.copyright { grid-column: 1 / -1; margin: 10px 0 0; padding-top: 22px; border-top: 1px solid var(--line); color: rgba(255,255,255,.36); font-size: .76rem; }

@media (max-width: 930px) {
  .menu-button { display: inline-flex; }
  .site-nav { display: none; position: absolute; top: calc(100% + 1px); left: 0; right: 0; padding: 18px 20px 24px; background: #050505; border-bottom: 1px solid var(--line); flex-direction: column; align-items: stretch; gap: 4px; }
  .site-nav.open { display: flex; }
  .site-nav a { padding: 11px 4px; }
  .site-nav .nav-cta { margin-top: 8px; text-align: center; }
  .hero { padding-top: 72px; }
  .hero-grid, .split-grid, .about-grid, .contact-grid { grid-template-columns: 1fr; gap: 54px; }
  .hero-card { max-width: 650px; }
  .service-grid { grid-template-columns: 1fr; }
  .service-card { min-height: 0; }
  .reverse > :first-child, .reverse > :last-child { order: initial; }
  .product-stack { min-height: 430px; max-width: 620px; }
  .footer-inner { grid-template-columns: 1fr; align-items: start; }
  .footer-links { justify-content: flex-start; }
}

@media (max-width: 620px) {
  .shell { width: min(calc(100% - 28px), var(--shell)); }
  .header-inner { min-height: 72px; }
  .brand { width: 195px; }
  .hero { padding: 60px 0 72px; }
  .hero h1 { font-size: clamp(2.7rem, 15vw, 4rem); }
  .hero-actions .button { width: 100%; }
  .hero-card { padding: 28px; }
  .metric-row { grid-template-columns: 1fr; }
  .section { padding: 72px 0; }
  .section-heading h2, .split-section h2, .contact-copy h2, .about-grid h2 { font-size: clamp(2.15rem, 11vw, 3.25rem); }
  .two-col { grid-template-columns: 1fr; gap: 0; }
  .mini-grid { grid-template-columns: 1fr; }
  .visual-card { min-height: 360px; }
  .orbit-two { width: 330px; height: 330px; }
  .orbit-one { width: 230px; height: 230px; }
  .product-stack { min-height: 390px; }
  .product-card { width: 88%; min-height: 150px; padding: 24px; }
  .contact-form { padding: 22px; }
}

@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
  *, *::before, *::after { transition-duration: .001ms !important; animation-duration: .001ms !important; animation-iteration-count: 1 !important; }
}
