:root {
  --magenta: #e00058;
  --pink: #ec0063;
  --graphite: #232323;
  --black: #0d0d0f;
  --white: #ffffff;
  --offwhite: #f8f6f2;
  --gray: #4b4b4b;
  --line: #e8e8e8;
  --glow: rgba(224, 0, 88, 0.5);
  --display: "Archivo Black", "Archivo", sans-serif;
  --head: "Archivo", sans-serif;
  --body: "Sora", sans-serif;
  --maxw: 1350px;
}
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}
html {
  scroll-behavior: smooth;
  -webkit-text-size-adjust: 100%;
}
body {
  font-family: var(--body);
  background: var(--black);
  color: var(--offwhite);
  overflow-x: hidden;
  -webkit-font-smoothing: antialiased;
  line-height: 1.6;
}
img {
  display: block;
  max-width: 100%;
}
a {
  color: inherit;
  text-decoration: none;
}
::selection {
  background: var(--magenta);
  color: #fff;
}
body::after {
  content: "";
  position: fixed;
  inset: 0;
  pointer-events: none;
  z-index: 9998;
  opacity: 0.04;
  mix-blend-mode: overlay;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='160' height='160'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.85' numOctaves='3'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23n)'/%3E%3C/svg%3E");
}
.display {
  font-family: var(--display);
  text-transform: uppercase;
  letter-spacing: -0.02em;
  line-height: 0.92;
}
.eyebrow {
  font-family: var(--head);
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.34em;
  font-size: 0.7rem;
  color: var(--magenta);
}
.mg {
  color: var(--magenta);
}
.wrap {
  max-width: var(--maxw);
  margin: 0 auto;
  padding: 0 32px;
  width: 100%;
}
section {
  position: relative;
}

/* CURTAIN */
#curtain {
  position: fixed;
  inset: 0;
  z-index: 10000;
  background: var(--black);
  display: grid;
  place-items: center;
  transition:
    opacity 0.8s 0.3s,
    visibility 0.8s 0.3s;
}
#curtain.done {
  opacity: 0;
  visibility: hidden;
}
#curtain .c-logo {
  font-family: var(--display);
  font-size: 2rem;
  color: #fff;
  display: flex;
  align-items: center;
  gap: 0.4em;
  opacity: 0;
  animation: cIn 0.7s 0.2s forwards;
}
#curtain .c-logo .three {
  width: 46px;
  height: 46px;
  display: grid;
  place-items: center;
  border-radius: 12px;
  background: linear-gradient(135deg, var(--magenta), var(--pink));
  box-shadow: 0 0 40px var(--glow);
}
#curtain .c-bar {
  position: absolute;
  bottom: 0;
  left: 0;
  height: 3px;
  width: 0;
  background: linear-gradient(90deg, var(--magenta), var(--pink));
  animation: cBar 1.3s 0.1s forwards cubic-bezier(0.7, 0, 0.3, 1);
}
@keyframes cIn {
  to {
    opacity: 1;
  }
}
@keyframes cBar {
  to {
    width: 100%;
  }
}

/* BUTTONS */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 0.55em;
  font-family: var(--head);
  font-weight: 700;
  font-size: 0.92rem;
  padding: 1.05em 1.85em;
  border-radius: 100px;
  cursor: pointer;
  border: none;
  transition:
    transform 0.35s cubic-bezier(0.2, 0.8, 0.2, 1),
    box-shadow 0.35s,
    background 0.3s,
    border-color 0.3s;
  position: relative;
  overflow: hidden;
  white-space: nowrap;
}
.btn .arw {
  transition: transform 0.35s;
}
.btn:hover .arw {
  transform: translateX(5px);
}
.btn-primary {
  background: var(--magenta);
  color: #fff;
  box-shadow: 0 10px 40px -10px var(--glow);
}
.btn-primary:hover {
  transform: translateY(-3px);
  box-shadow: 0 18px 55px -10px var(--glow);
}
.btn-primary::before {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(
    120deg,
    transparent,
    rgba(255, 255, 255, 0.35),
    transparent
  );
  transform: translateX(-120%);
  transition: transform 0.6s;
}
.btn-primary:hover::before {
  transform: translateX(120%);
}
.btn-ghost {
  background: transparent;
  color: var(--offwhite);
  border: 1.5px solid rgba(255, 255, 255, 0.28);
}
.btn-ghost:hover {
  border-color: var(--magenta);
  color: #fff;
  transform: translateY(-3px);
}
.btn-dark {
  background: var(--graphite);
  color: #fff;
}
.btn-dark:hover {
  transform: translateY(-3px);
  background: var(--magenta);
}
.btn-lg {
  font-size: 1.04rem;
  padding: 1.2em 2.3em;
}

/* NAV */
nav {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 1000;
  transition: 0.4s;
  padding: 22px 0;
}
nav.scrolled {
  background: rgba(13, 13, 15, 0.85);
  backdrop-filter: blur(18px);
  border-bottom: 1px solid rgba(255, 255, 255, 0.06);
  padding: 13px 0;
}
.nav-in {
  display: flex;
  align-items: center;
  justify-content: space-between;
}
.logo {
  font-family: var(--display);
  font-size: 1.28rem;
  color: #fff;
  display: flex;
  align-items: center;
  gap: 0.5em;
}
.logo .three {
  width: 38px;
  height: 38px;
  display: grid;
  place-items: center;
  border-radius: 10px;
  background: linear-gradient(135deg, var(--magenta), var(--pink));
  box-shadow: 0 0 24px -4px var(--glow);
  font-size: 1.1rem;
}
.logo small {
  font-family: var(--body);
  font-weight: 400;
  font-size: 0.7rem;
  letter-spacing: 0.04em;
  color: rgba(248, 246, 242, 0.55);
  text-transform: none;
}
.nav-links {
  display: flex;
  gap: 34px;
  align-items: center;
}
.nav-links a {
  font-size: 0.86rem;
  font-weight: 500;
  color: rgba(248, 246, 242, 0.78);
  transition: 0.25s;
  position: relative;
}
.nav-links a:not(.btn)::after {
  content: "";
  position: absolute;
  left: 0;
  bottom: -6px;
  width: 0;
  height: 2px;
  background: var(--magenta);
  transition: 0.3s;
}
.nav-links a:not(.btn):hover {
  color: #fff;
}
.nav-links a:not(.btn):hover::after {
  width: 100%;
}
.nav-cta {
  padding: 0.72em 1.4em !important;
  font-size: 0.82rem !important;
}
.burger {
  display: none;
  flex-direction: column;
  gap: 5px;
  background: none;
  border: none;
  cursor: pointer;
  z-index: 1001;
}
.burger span {
  width: 26px;
  height: 2px;
  background: #fff;
  transition: 0.3s;
}
.burger.open span:nth-child(1) {
  transform: translateY(7px) rotate(45deg);
}
.burger.open span:nth-child(2) {
  opacity: 0;
}
.burger.open span:nth-child(3) {
  transform: translateY(-7px) rotate(-45deg);
}

/* HERO */
.hero {
  min-height: 100vh;
  display: flex;
  align-items: center;
  overflow: hidden;
  padding: 120px 0 60px;
}
.hero-bg {
  position: absolute;
  inset: 0;
  z-index: 0;
  background: radial-gradient(120% 90% at 80% 10%, #1a1a1e, var(--black) 60%);
}
.hero-bg::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(0deg, var(--black) 2%, transparent 30%);
}
.hero-orb {
  position: absolute;
  border-radius: 50%;
  filter: blur(90px);
  z-index: 0;
  opacity: 0.45;
  animation: float 16s ease-in-out infinite;
}
.hero-orb.o1 {
  width: 480px;
  height: 480px;
  background: radial-gradient(circle, var(--magenta), transparent 70%);
  top: -100px;
  right: 14%;
}
.hero-orb.o2 {
  width: 360px;
  height: 360px;
  background: radial-gradient(circle, #7a0030, transparent 70%);
  bottom: -80px;
  left: -60px;
  animation-delay: -6s;
}
.hero-ghost3 {
  position: absolute;
  right: -2vw;
  top: 50%;
  transform: translateY(-50%);
  font-family: var(--display);
  font-size: 46vw;
  line-height: 1;
  color: rgba(255, 255, 255, 0.022);
  z-index: 0;
  pointer-events: none;
  user-select: none;
}
@keyframes float {
  0%,
  100% {
    transform: translateY(0);
  }
  50% {
    transform: translateY(-30px);
  }
}
.hero-in {
  position: relative;
  z-index: 2;
  max-width: 760px;
}
.hero-tag {
  display: inline-flex;
  align-items: center;
  gap: 0.7em;
  padding: 0.55em 1.15em;
  border: 1px solid rgba(224, 0, 88, 0.45);
  border-radius: 100px;
  background: rgba(224, 0, 88, 0.1);
  font-size: 0.72rem;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  font-weight: 600;
  margin-bottom: 30px;
  opacity: 0;
  transform: translateY(20px);
  animation: up 0.8s 0.9s forwards;
}
.hero-tag .dot {
  width: 7px;
  height: 7px;
  border-radius: 50%;
  background: var(--magenta);
  box-shadow: 0 0 12px var(--magenta);
  animation: pulse 2s infinite;
}
@keyframes pulse {
  0%,
  100% {
    opacity: 1;
  }
  50% {
    opacity: 0.3;
  }
}
.hero h1 {
  font-family: var(--display);
  font-size: clamp(2.5rem, 5.6vw, 5rem);
  line-height: 1;
  letter-spacing: -0.03em;
  color: #fff;
  margin-bottom: 30px;
  text-wrap: balance;
}
.hero h1 .ln {
  display: block;
  overflow: hidden;
  padding-bottom: 0.06em;
}
.hero h1 .ln i {
  display: block;
  font-style: normal;
  transform: translateY(110%);
  animation: rise 1s cubic-bezier(0.2, 0.85, 0.25, 1) forwards;
}
.hero h1 .l1 i {
  animation-delay: 0.95s;
}
.hero h1 .l2 i {
  animation-delay: 1.08s;
}
.hero h1 .l3 i {
  animation-delay: 1.21s;
}
.hero h1 em {
  font-style: normal;
  color: var(--magenta);
}
@keyframes rise {
  to {
    transform: translateY(0);
  }
}
.hero .sub {
  font-size: clamp(1.05rem, 1.6vw, 1.22rem);
  color: rgba(248, 246, 242, 0.92);
  font-weight: 400;
  margin-bottom: 16px;
  max-width: 580px;
  opacity: 0;
  transform: translateY(20px);
  animation: up 0.8s 1.45s forwards;
}
.hero .sub b {
  color: #fff;
  font-weight: 600;
}
.hero .support {
  font-size: 0.98rem;
  color: rgba(248, 246, 242, 0.6);
  max-width: 540px;
  margin-bottom: 38px;
  opacity: 0;
  transform: translateY(20px);
  animation: up 0.8s 1.58s forwards;
}
.hero-btns {
  display: flex;
  gap: 14px;
  flex-wrap: wrap;
  opacity: 0;
  transform: translateY(20px);
  animation: up 0.8s 1.7s forwards;
}
.hero-stats {
  display: flex;
  gap: 40px;
  margin-top: 50px;
  opacity: 0;
  transform: translateY(20px);
  animation: up 0.8s 1.85s forwards;
  flex-wrap: wrap;
}
.hero-stats .st b {
  font-family: var(--display);
  font-size: 1.7rem;
  color: #fff;
  display: block;
  line-height: 1;
}
.hero-stats .st b .mg {
  color: var(--magenta);
}
.hero-stats .st small {
  font-size: 0.76rem;
  color: rgba(248, 246, 242, 0.55);
  letter-spacing: 0.03em;
  display: block;
  margin-top: 6px;
}
@keyframes up {
  to {
    opacity: 1;
    transform: none;
  }
}
.hero-scroll {
  position: absolute;
  bottom: 30px;
  left: 50%;
  transform: translateX(-50%);
  z-index: 3;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 8px;
  opacity: 0;
  animation: up 0.8s 2.2s forwards;
}
.hero-scroll span {
  font-size: 0.66rem;
  letter-spacing: 0.25em;
  text-transform: uppercase;
  color: rgba(248, 246, 242, 0.5);
}
.hero-scroll .mouse {
  width: 22px;
  height: 36px;
  border: 1.5px solid rgba(255, 255, 255, 0.35);
  border-radius: 12px;
  position: relative;
}
.hero-scroll .mouse::before {
  content: "";
  position: absolute;
  top: 6px;
  left: 50%;
  transform: translateX(-50%);
  width: 3px;
  height: 7px;
  background: var(--magenta);
  border-radius: 2px;
  animation: scrolld 1.6s infinite;
}
@keyframes scrolld {
  0% {
    opacity: 0;
    top: 6px;
  }
  30% {
    opacity: 1;
  }
  60% {
    opacity: 1;
  }
  100% {
    opacity: 0;
    top: 18px;
  }
}

/* MARQUEE */
.marquee {
  background: var(--magenta);
  overflow: hidden;
  padding: 16px 0;
  white-space: nowrap;
}
.marquee-track {
  display: inline-flex;
  gap: 50px;
  animation: scroll-x 28s linear infinite;
  will-change: transform;
}
.marquee span {
  font-family: var(--display);
  font-size: 1.05rem;
  color: #fff;
  text-transform: uppercase;
  letter-spacing: 0.02em;
  display: inline-flex;
  align-items: center;
  gap: 50px;
}
.marquee span::after {
  content: "✦";
  color: rgba(255, 255, 255, 0.6);
}
@keyframes scroll-x {
  to {
    transform: translateX(-50%);
  }
}

/* SECTION HEAD */
.sec-head {
  max-width: 820px;
  margin-bottom: 60px;
}
.sec-head .eyebrow {
  display: inline-block;
  margin-bottom: 18px;
}
.sec-head h2 {
  font-family: var(--display);
  font-size: clamp(2rem, 4.2vw, 3.4rem);
  line-height: 1;
  letter-spacing: -0.02em;
  color: #fff;
}
.sec-head.light h2 {
  color: var(--graphite);
}
.sec-head p {
  margin-top: 22px;
  font-size: 1.06rem;
  color: rgba(248, 246, 242, 0.62);
}
.sec-head.light p {
  color: var(--gray);
}
.sec-head.center {
  margin: 0 auto 60px;
  text-align: center;
}

/* reveal */
.reveal {
  opacity: 0;
  transform: translateY(46px);
  transition:
    opacity 0.9s cubic-bezier(0.2, 0.8, 0.2, 1),
    transform 0.9s cubic-bezier(0.2, 0.8, 0.2, 1);
}
.reveal.in {
  opacity: 1;
  transform: none;
}
.reveal.dl1 {
  transition-delay: 0.08s;
}
.reveal.dl2 {
  transition-delay: 0.18s;
}
.reveal.dl3 {
  transition-delay: 0.28s;
}
.reveal.dl4 {
  transition-delay: 0.38s;
}
@media (prefers-reduced-motion: reduce) {
  .reveal {
    opacity: 1;
    transform: none;
  }
  .hero h1 .ln i,
  .hero-tag,
  .hero .sub,
  .hero .support,
  .hero-btns,
  .hero-stats,
  .hero-scroll {
    animation: none;
    opacity: 1;
    transform: none;
  }
}

/* ABOUT */
.about {
  padding: 140px 0;
  background: var(--offwhite);
  color: var(--graphite);
  position: relative;
  overflow: hidden;
}
.about::before {
  content: "";
  position: absolute;
  top: -200px;
  right: -200px;
  width: 600px;
  height: 600px;
  background: radial-gradient(circle, rgba(224, 0, 88, 0.07), transparent 70%);
}
.about-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  align-items: center;
}
.about-visual {
  position: relative;
  aspect-ratio: 4/5;
}
.about-visual .stack {
  position: absolute;
  inset: 0;
  border-radius: 26px;
  overflow: hidden;
  background: linear-gradient(160deg, #16161a, #2c2c30);
  box-shadow: 0 50px 90px -35px rgba(0, 0, 0, 0.45);
  display: grid;
  place-items: center;
}
.about-visual .stack::before {
  content: "";
  position: absolute;
  inset: 0;
  background: radial-gradient(
    85% 70% at 65% 15%,
    rgba(224, 0, 88, 0.45),
    transparent 60%
  );
}
.about-visual .stack .big3 {
  position: relative;
  font-family: var(--display);
  font-size: 20rem;
  line-height: 1;
  color: #fff;
  z-index: 1;
}
.about-visual .deco {
  position: absolute;
  z-index: 0;
  border: 1.5px solid var(--magenta);
  border-radius: 26px;
  inset: 0;
  transform: translate(22px, 22px);
  opacity: 0.5;
}
.about-visual .tag360 {
  position: absolute;
  z-index: 4;
  bottom: 28px;
  left: -26px;
  background: var(--magenta);
  color: #fff;
  font-family: var(--display);
  font-size: 1.5rem;
  padding: 20px 28px;
  border-radius: 18px;
  box-shadow: 0 24px 50px -14px var(--glow);
  line-height: 0.85;
}
.about-visual .tag360 small {
  display: block;
  font-family: var(--body);
  font-size: 0.62rem;
  font-weight: 600;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  opacity: 0.9;
  margin-top: 8px;
}
.about-text h2 {
  font-family: var(--display);
  font-size: clamp(1.8rem, 3.4vw, 2.9rem);
  line-height: 1.02;
  letter-spacing: -0.02em;
  color: var(--graphite);
  margin-bottom: 26px;
}
.about-text h2 em {
  font-style: normal;
  color: var(--magenta);
}
.about-text p {
  color: var(--gray);
  font-size: 1.05rem;
  margin-bottom: 20px;
  max-width: 560px;
}
.about-pills {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin: 30px 0 36px;
}
.about-pills span {
  font-size: 0.82rem;
  font-weight: 600;
  font-family: var(--head);
  padding: 0.55em 1.1em;
  border-radius: 100px;
  background: #fff;
  border: 1px solid var(--line);
  color: var(--graphite);
}
.about-pills span.fill {
  background: var(--graphite);
  color: #fff;
  border-color: var(--graphite);
}

/* PROBLEM */
.problem {
  padding: 150px 0;
  background: var(--black);
  position: relative;
  overflow: hidden;
}
.problem::before {
  content: "";
  position: absolute;
  top: 0;
  left: -10%;
  width: 55%;
  height: 100%;
  background: radial-gradient(
    circle at 0% 50%,
    rgba(224, 0, 88, 0.16),
    transparent 60%
  );
}
.problem-in {
  position: relative;
  z-index: 2;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 70px;
  align-items: center;
}
.problem h2 {
  font-family: var(--display);
  font-size: clamp(2.2rem, 4.6vw, 3.9rem);
  line-height: 1;
  letter-spacing: -0.02em;
  color: #fff;
}
.problem h2 .strike {
  position: relative;
  color: rgba(255, 255, 255, 0.38);
}
.problem h2 .strike::after {
  content: "";
  position: absolute;
  left: -4%;
  top: 54%;
  width: 108%;
  height: 4px;
  background: var(--magenta);
  transform: rotate(-4deg) scaleX(0);
  transform-origin: left;
}
.problem h2 .strike.in-strike::after {
  animation: strike 0.6s 0.4s forwards;
}
@keyframes strike {
  to {
    transform: rotate(-4deg) scaleX(1);
  }
}
.problem-body p {
  color: rgba(248, 246, 242, 0.72);
  font-size: 1.05rem;
  margin-bottom: 20px;
}
.problem-body .punch {
  font-family: var(--head);
  font-weight: 700;
  font-size: 1.32rem;
  color: #fff;
  border-left: 3px solid var(--magenta);
  padding-left: 24px;
  margin: 30px 0;
}

/* SERVICES */
.services {
  padding: 150px 0;
  background: linear-gradient(180deg, #0d0d0f, #161618);
}
.svc-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 26px;
}
.svc {
  position: relative;
  background: linear-gradient(
    160deg,
    rgba(255, 255, 255, 0.045),
    rgba(255, 255, 255, 0.012)
  );
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: 24px;
  padding: 44px 40px;
  overflow: hidden;
  transition: 0.45s cubic-bezier(0.2, 0.8, 0.2, 1);
}
.svc::before {
  content: "";
  position: absolute;
  inset: 0;
  background: radial-gradient(
    120% 90% at 0% 0%,
    rgba(224, 0, 88, 0.16),
    transparent 55%
  );
  opacity: 0;
  transition: 0.45s;
}
.svc:hover {
  transform: translateY(-9px);
  border-color: rgba(224, 0, 88, 0.4);
  box-shadow: 0 36px 70px -28px rgba(0, 0, 0, 0.7);
}
.svc:hover::before {
  opacity: 1;
}
.svc > * {
  position: relative;
  z-index: 2;
}
.svc .top {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 24px;
}
.svc .num {
  font-family: var(--display);
  font-size: 0.85rem;
  color: rgba(255, 255, 255, 0.25);
  letter-spacing: 0.1em;
}
.svc .cico {
  width: 56px;
  height: 56px;
  border-radius: 16px;
  background: linear-gradient(
    135deg,
    rgba(224, 0, 88, 0.2),
    rgba(224, 0, 88, 0.05)
  );
  border: 1px solid rgba(224, 0, 88, 0.3);
  display: grid;
  place-items: center;
  color: var(--magenta);
}
.svc h3 {
  font-family: var(--head);
  font-weight: 800;
  font-size: 1.42rem;
  color: #fff;
  margin-bottom: 13px;
  letter-spacing: -0.01em;
}
.svc > p {
  color: rgba(248, 246, 242, 0.62);
  font-size: 0.98rem;
  margin-bottom: 26px;
}
.svc .clink {
  display: inline-flex;
  align-items: center;
  gap: 0.5em;
  font-family: var(--head);
  font-weight: 700;
  font-size: 0.86rem;
  color: var(--magenta);
  transition: gap 0.3s;
  cursor: pointer;
  background: none;
  border: none;
}
.svc .clink:hover {
  gap: 0.9em;
}

/* METHOD */
.method {
  padding: 150px 0;
  background: var(--offwhite);
  color: var(--graphite);
  position: relative;
  overflow: hidden;
}
.method-grid {
  display: grid;
  grid-template-columns: 0.85fr 1.15fr;
  gap: 70px;
}
.method-left {
  position: sticky;
  top: 120px;
  align-self: start;
}
.method-left h2 {
  font-family: var(--display);
  font-size: clamp(1.9rem, 3.6vw, 3rem);
  line-height: 1.02;
  color: var(--graphite);
  letter-spacing: -0.02em;
  margin-bottom: 24px;
}
.method-left h2 em {
  font-style: normal;
  color: var(--magenta);
}
.method-left p {
  color: var(--gray);
  font-size: 1.05rem;
  margin-bottom: 18px;
}
.method-left .mq {
  margin-top: 26px;
  font-family: var(--head);
  font-weight: 700;
  color: var(--magenta);
  font-size: 1.1rem;
  border-left: 3px solid var(--magenta);
  padding-left: 18px;
}
.steps {
  position: relative;
}
.steps::before {
  content: "";
  position: absolute;
  left: 25px;
  top: 24px;
  bottom: 24px;
  width: 2px;
  background: linear-gradient(var(--magenta), rgba(224, 0, 88, 0.12));
}
.step {
  display: flex;
  gap: 26px;
  padding: 18px 0;
  position: relative;
}
.step .dot {
  width: 52px;
  height: 52px;
  flex-shrink: 0;
  border-radius: 50%;
  background: #fff;
  border: 2px solid var(--magenta);
  display: grid;
  place-items: center;
  font-family: var(--display);
  font-size: 1rem;
  color: var(--magenta);
  position: relative;
  z-index: 2;
  transition: 0.4s;
}
.step:hover .dot {
  background: var(--magenta);
  color: #fff;
  transform: scale(1.1);
}
.step .sc {
  padding-top: 8px;
}
.step h4 {
  font-family: var(--head);
  font-weight: 700;
  font-size: 1.12rem;
  color: var(--graphite);
  margin-bottom: 5px;
}
.step p {
  color: var(--gray);
  font-size: 0.95rem;
}

/* CASES (segmentos atendidos) */
.cases {
  padding: 150px 0;
  background: var(--black);
  position: relative;
  overflow: hidden;
}
.cases::before {
  content: "";
  position: absolute;
  top: 8%;
  left: -8%;
  width: 560px;
  height: 560px;
  background: radial-gradient(circle, rgba(224, 0, 88, 0.14), transparent 70%);
  filter: blur(30px);
}
.cases-in {
  position: relative;
  z-index: 2;
}
.seg-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}
.seg {
  background: linear-gradient(
    165deg,
    rgba(255, 255, 255, 0.05),
    rgba(255, 255, 255, 0.015)
  );
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: 22px;
  padding: 32px 30px;
  transition: 0.45s;
  position: relative;
  overflow: hidden;
  text-align: center;
}
.seg:hover {
  transform: translateY(-7px);
  border-color: rgba(224, 0, 88, 0.35);
}
.seg .sico {
  width: 54px;
  height: 54px;
  border-radius: 15px;
  margin: 0 auto 18px;
  background: linear-gradient(
    135deg,
    rgba(224, 0, 88, 0.2),
    rgba(224, 0, 88, 0.05)
  );
  border: 1px solid rgba(224, 0, 88, 0.3);
  display: grid;
  place-items: center;
  color: var(--magenta);
}
.seg h3 {
  font-family: var(--head);
  font-weight: 700;
  font-size: 1.05rem;
  color: #fff;
  margin-bottom: 5px;
}
.seg p {
  color: rgba(248, 246, 242, 0.5);
  font-size: 0.84rem;
}
.cases-foot {
  text-align: center;
  max-width: 820px;
  margin: 54px auto 0;
}
.cases-foot .diff {
  font-family: var(--display);
  font-size: clamp(1.4rem, 3vw, 2rem);
  color: #fff;
  margin: 0 0 32px;
  line-height: 1.1;
}
.cases-foot .diff em {
  font-style: normal;
  color: var(--magenta);
}

/* CONVERSION (cases-light style) */
.conv-light {
  padding: 150px 0;
  background: var(--offwhite);
  color: var(--graphite);
  position: relative;
  overflow: hidden;
}
.conv-light::before {
  content: "";
  position: absolute;
  top: 6%;
  right: -8%;
  width: 560px;
  height: 560px;
  background: radial-gradient(circle, rgba(224, 0, 88, 0.08), transparent 70%);
  filter: blur(30px);
}
.conv-in {
  position: relative;
  z-index: 2;
  text-align: center;
  max-width: 840px;
  margin: 0 auto;
}
.conv-in h2 {
  font-family: var(--display);
  font-size: clamp(2rem, 4.4vw, 3.4rem);
  line-height: 1.02;
  letter-spacing: -0.02em;
  color: var(--graphite);
  margin-bottom: 24px;
}
.conv-in h2 em {
  font-style: normal;
  color: var(--magenta);
}
.conv-in p {
  color: var(--gray);
  font-size: 1.08rem;
  margin-bottom: 18px;
}

/* PACKS */
.packs-sec {
  padding: 150px 0;
  background: linear-gradient(180deg, #161618, #0d0d0f);
}
.packs-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(min(100%, 290px), 1fr));
  gap: 24px;
}
.pack {
  background: linear-gradient(
    160deg,
    rgba(255, 255, 255, 0.045),
    rgba(255, 255, 255, 0.012)
  );
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: 22px;
  padding: 40px 34px;
  display: flex;
  flex-direction: column;
  transition: 0.45s;
}
.pack:hover {
  transform: translateY(-8px);
  border-color: rgba(224, 0, 88, 0.4);
  box-shadow: 0 36px 70px -28px rgba(0, 0, 0, 0.7);
}
.pack .pnum {
  font-family: var(--display);
  font-size: 0.82rem;
  color: var(--magenta);
  letter-spacing: 0.1em;
  margin-bottom: 16px;
}
.pack h3 {
  font-family: var(--head);
  font-weight: 800;
  font-size: 1.32rem;
  color: #fff;
  margin-bottom: 13px;
  letter-spacing: -0.01em;
}
.pack p {
  color: rgba(248, 246, 242, 0.6);
  font-size: 0.95rem;
  flex: 1;
  margin-bottom: 26px;
}

/* DIFERENCIAL */
.dif {
  padding: 160px 0;
  background: linear-gradient(135deg, #0a0a0c, #1c0a14);
  position: relative;
  overflow: hidden;
  min-height: 560px;
  display: flex;
  align-items: center;
}
.dif .ghost3 {
  position: absolute;
  right: -3vw;
  bottom: -6vw;
  font-family: var(--display);
  font-size: 42vw;
  line-height: 1;
  color: rgba(224, 0, 88, 0.06);
  z-index: 1;
  pointer-events: none;
  user-select: none;
  filter: drop-shadow(0 0 70px rgba(224, 0, 88, 0.2));
}
.dif::before {
  content: "";
  position: absolute;
  right: 10%;
  bottom: 0;
  width: 460px;
  height: 660px;
  background: radial-gradient(
    circle at 50% 40%,
    rgba(224, 0, 88, 0.42),
    transparent 60%
  );
  filter: blur(55px);
  z-index: 0;
}
.dif-in {
  position: relative;
  z-index: 3;
  max-width: 680px;
}
.dif h2 {
  font-family: var(--display);
  font-size: clamp(2.1rem, 4.4vw, 3.5rem);
  line-height: 1;
  letter-spacing: -0.02em;
  color: #fff;
  margin-bottom: 30px;
}
.dif-vs {
  display: flex;
  gap: 14px;
  margin: 32px 0;
  flex-wrap: wrap;
}
.dif-vs .v {
  flex: 1;
  min-width: 175px;
  padding: 24px;
  border-radius: 18px;
  background: rgba(255, 255, 255, 0.04);
  border: 1px solid rgba(255, 255, 255, 0.08);
}
.dif-vs .v b {
  font-family: var(--display);
  font-size: 1.2rem;
  display: block;
  margin-bottom: 8px;
}
.dif-vs .v.a b {
  color: rgba(255, 255, 255, 0.5);
}
.dif-vs .v.b {
  border-color: rgba(224, 0, 88, 0.4);
  background: rgba(224, 0, 88, 0.08);
}
.dif-vs .v.b b {
  color: var(--magenta);
}
.dif-vs .v span {
  font-size: 0.92rem;
  color: rgba(248, 246, 242, 0.7);
}
.dif p.close {
  font-size: 1.08rem;
  color: rgba(248, 246, 242, 0.82);
  margin-bottom: 34px;
  max-width: 600px;
}
.dif-list {
  list-style: none;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 12px;
  margin-bottom: 36px;
}
.dif-list li {
  font-size: 0.95rem;
  color: rgba(248, 246, 242, 0.82);
  display: flex;
  gap: 0.6em;
  align-items: flex-start;
}
.dif-list li svg {
  flex-shrink: 0;
  margin-top: 3px;
}

/* FORM */
.formsec {
  padding: 150px 0;
  background: var(--offwhite);
  color: var(--graphite);
  position: relative;
  overflow: hidden;
}
.formsec::before {
  content: "";
  position: absolute;
  bottom: -200px;
  left: -150px;
  width: 560px;
  height: 560px;
  background: radial-gradient(circle, rgba(224, 0, 88, 0.08), transparent 70%);
}
.form-wrap {
  max-width: 940px;
  margin: 0 auto;
  background: #fff;
  border-radius: 30px;
  padding: 64px;
  box-shadow: 0 50px 110px -40px rgba(0, 0, 0, 0.28);
  border: 1px solid var(--line);
  position: relative;
  overflow: hidden;
  z-index: 2;
}
.form-wrap::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 6px;
  background: linear-gradient(90deg, var(--magenta), var(--pink));
}
.form-wrap .eyebrow {
  display: inline-block;
  margin-bottom: 14px;
}
.form-wrap h2 {
  font-family: var(--display);
  font-size: clamp(1.8rem, 3.6vw, 2.7rem);
  color: var(--graphite);
  letter-spacing: -0.02em;
  line-height: 1;
  margin-bottom: 14px;
}
.form-wrap .fsub {
  color: var(--gray);
  margin-bottom: 42px;
  max-width: 600px;
}
.fgrid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 20px;
}
.ffield {
  display: flex;
  flex-direction: column;
  gap: 7px;
}
.ffield.full {
  grid-column: 1/-1;
}
.ffield label {
  font-size: 0.82rem;
  font-weight: 600;
  font-family: var(--head);
  color: var(--graphite);
}
.ffield label .req {
  color: var(--magenta);
}
.ffield input,
.ffield select,
.ffield textarea {
  font-family: var(--body);
  font-size: 0.95rem;
  padding: 0.95em 1.1em;
  border: 1.5px solid var(--line);
  border-radius: 12px;
  background: var(--offwhite);
  color: var(--graphite);
  transition: 0.25s;
  width: 100%;
  resize: vertical;
}
.ffield input:focus,
.ffield select:focus,
.ffield textarea:focus {
  outline: none;
  border-color: var(--magenta);
  background: #fff;
  box-shadow: 0 0 0 4px rgba(224, 0, 88, 0.08);
}
.ffield textarea {
  min-height: 92px;
}
.ffield select {
  appearance: none;
  cursor: pointer;
}
.ffield .err {
  border-color: var(--magenta);
  box-shadow: 0 0 0 4px rgba(224, 0, 88, 0.12);
}
.form-submit {
  margin-top: 34px;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 14px;
}
.form-submit .btn {
  width: 100%;
  justify-content: center;
}
.form-note {
  font-size: 0.82rem;
  color: var(--gray);
  display: flex;
  align-items: center;
  gap: 0.5em;
}
.form-success {
  display: none;
  text-align: center;
  padding: 36px 0;
}
.form-success.show {
  display: block;
  animation: up 0.5s forwards;
}
.form-success .check {
  width: 78px;
  height: 78px;
  margin: 0 auto 24px;
  border-radius: 50%;
  background: var(--magenta);
  display: grid;
  place-items: center;
  box-shadow: 0 14px 40px -10px var(--glow);
  animation: pop 0.5s cubic-bezier(0.2, 1.4, 0.4, 1) forwards;
}
@keyframes pop {
  from {
    transform: scale(0);
  }
  to {
    transform: scale(1);
  }
}
.form-success h3 {
  font-family: var(--display);
  font-size: 1.7rem;
  color: var(--graphite);
  margin-bottom: 12px;
}
.form-success p {
  color: var(--gray);
  max-width: 500px;
  margin: 0 auto 26px;
}

/* FAQ */
.faq {
  padding: 150px 0;
  background: var(--black);
  position: relative;
  overflow: hidden;
}
.faq::before {
  content: "";
  position: absolute;
  bottom: 0;
  left: 50%;
  transform: translateX(-50%);
  width: 90%;
  height: 60%;
  background: radial-gradient(
    60% 80% at 50% 100%,
    rgba(224, 0, 88, 0.12),
    transparent 70%
  );
}
.faq-in {
  position: relative;
  z-index: 2;
  max-width: 920px;
  margin: 0 auto;
}
.faq-list {
  display: flex;
  flex-direction: column;
  gap: 14px;
  margin-top: 14px;
}
.faq-item {
  background: linear-gradient(
    160deg,
    rgba(255, 255, 255, 0.045),
    rgba(255, 255, 255, 0.012)
  );
  border: 1px solid rgba(255, 255, 255, 0.09);
  border-radius: 18px;
  overflow: hidden;
  transition:
    border-color 0.35s,
    background 0.35s;
}
.faq-item.open {
  border-color: rgba(224, 0, 88, 0.4);
  background: linear-gradient(
    160deg,
    rgba(224, 0, 88, 0.08),
    rgba(255, 255, 255, 0.015)
  );
}
.faq-q {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
  width: 100%;
  text-align: left;
  background: none;
  border: none;
  cursor: pointer;
  padding: 26px 30px;
  font-family: var(--head);
  font-weight: 700;
  font-size: 1.06rem;
  color: #fff;
  transition: color 0.3s;
}
.faq-q:hover {
  color: var(--pink);
}
.faq-ic {
  flex-shrink: 0;
  width: 34px;
  height: 34px;
  border-radius: 50%;
  border: 1.5px solid rgba(224, 0, 88, 0.5);
  display: grid;
  place-items: center;
  position: relative;
  transition: 0.4s;
}
.faq-item.open .faq-ic {
  background: var(--magenta);
  border-color: var(--magenta);
  transform: rotate(180deg);
}
.faq-ic::before,
.faq-ic::after {
  content: "";
  position: absolute;
  background: var(--magenta);
  transition: 0.4s;
  border-radius: 2px;
}
.faq-ic::before {
  width: 13px;
  height: 2px;
}
.faq-ic::after {
  width: 2px;
  height: 13px;
}
.faq-item.open .faq-ic::before,
.faq-item.open .faq-ic::after {
  background: #fff;
}
.faq-item.open .faq-ic::after {
  transform: rotate(90deg);
  opacity: 0;
}
.faq-a {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.45s cubic-bezier(0.4, 0, 0.2, 1);
}
.faq-a-in {
  padding: 0 30px 28px;
  color: rgba(248, 246, 242, 0.66);
  font-size: 0.97rem;
  line-height: 1.7;
}
.faq-cta {
  text-align: center;
  margin-top: 46px;
}

/* CTA FINAL */
.ctafinal {
  padding: 160px 0;
  background: var(--black);
  position: relative;
  overflow: hidden;
  text-align: center;
}
.ctafinal .ghost3 {
  position: absolute;
  bottom: -8vw;
  left: 50%;
  transform: translateX(-50%);
  font-family: var(--display);
  font-size: 50vw;
  line-height: 1;
  color: rgba(255, 255, 255, 0.02);
  z-index: 0;
  pointer-events: none;
  user-select: none;
}
.ctafinal::before {
  content: "";
  position: absolute;
  inset: 0;
  background: radial-gradient(
    65% 60% at 50% 65%,
    rgba(224, 0, 88, 0.26),
    transparent 60%
  );
}
.ctafinal-in {
  position: relative;
  z-index: 3;
  max-width: 840px;
  margin: 0 auto;
}
.ctafinal h2 {
  font-family: var(--display);
  font-size: clamp(2.2rem, 5.2vw, 4.1rem);
  line-height: 1;
  letter-spacing: -0.02em;
  color: #fff;
  margin-bottom: 26px;
}
.ctafinal h2 em {
  font-style: normal;
  color: var(--magenta);
}
.ctafinal p {
  font-size: 1.14rem;
  color: rgba(248, 246, 242, 0.72);
  max-width: 600px;
  margin: 0 auto 42px;
}

/* FOOTER */
footer {
  background: #08080a;
  padding: 74px 0 40px;
  border-top: 1px solid rgba(255, 255, 255, 0.07);
}
.foot-grid {
  display: grid;
  grid-template-columns: 1.6fr 1fr 1fr 1.4fr;
  gap: 48px;
  align-items: start;
  margin-bottom: 54px;
}
.foot-brand .logo {
  font-size: 1.5rem;
  margin-bottom: 18px;
}
.foot-brand p {
  color: rgba(248, 246, 242, 0.6);
  font-size: 0.94rem;
  max-width: 330px;
}
.foot-brand .scope {
  margin-top: 20px;
  font-family: var(--head);
  font-weight: 700;
  font-size: 0.82rem;
  color: var(--magenta);
  letter-spacing: 0.04em;
}
.foot-col h5 {
  font-family: var(--head);
  font-weight: 700;
  font-size: 0.76rem;
  text-transform: uppercase;
  letter-spacing: 0.16em;
  color: rgba(255, 255, 255, 0.5);
  margin-bottom: 18px;
}
.foot-col a {
  display: block;
  color: rgba(248, 246, 242, 0.72);
  font-size: 0.92rem;
  margin-bottom: 11px;
  transition: 0.25s;
  cursor: pointer;
}
.foot-col a:hover {
  color: var(--magenta);
  padding-left: 4px;
}
.foot-cta {
  background: linear-gradient(
    160deg,
    rgba(224, 0, 88, 0.12),
    rgba(255, 255, 255, 0.02)
  );
  border: 1px solid rgba(224, 0, 88, 0.25);
  border-radius: 20px;
  padding: 28px;
}
.foot-cta h5 {
  font-family: var(--display);
  font-size: 1.18rem;
  color: #fff;
  line-height: 1.1;
  margin-bottom: 10px;
  letter-spacing: -0.01em;
  text-transform: none;
}
.foot-cta p {
  color: rgba(248, 246, 242, 0.6);
  font-size: 0.88rem;
  margin-bottom: 18px;
}
.foot-cta .btn {
  width: 100%;
  justify-content: center;
}
.foot-bottom {
  padding-top: 28px;
  border-top: 1px solid rgba(255, 255, 255, 0.07);
  display: flex;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 12px;
  font-size: 0.82rem;
  color: rgba(248, 246, 242, 0.4);
}
.sr-only {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  white-space: nowrap;
  border: 0;
}

/* FLOATING WHATSAPP */
.wa-float {
  position: fixed;
  bottom: 26px;
  right: 26px;
  z-index: 999;
  display: flex;
  align-items: center;
  gap: 0;
  background: #25d366;
  border-radius: 100px;
  padding: 0;
  box-shadow: 0 12px 36px -8px rgba(37, 211, 102, 0.6);
  cursor: pointer;
  transition: 0.4s;
  overflow: hidden;
  height: 60px;
  border: none;
}
.wa-float .ic {
  width: 60px;
  height: 60px;
  display: grid;
  place-items: center;
  flex-shrink: 0;
}
.wa-float .lbl {
  max-width: 0;
  overflow: hidden;
  white-space: nowrap;
  font-family: var(--head);
  font-weight: 700;
  font-size: 0.9rem;
  color: #fff;
  transition:
    max-width 0.4s,
    padding 0.4s;
}
.wa-float:hover {
  transform: scale(1.03);
}
.wa-float:hover .lbl {
  max-width: 200px;
  padding-right: 22px;
}
.wa-float.pulse {
  animation: waPulse 2.5s infinite;
}
@keyframes waPulse {
  0% {
    box-shadow:
      0 12px 36px -8px rgba(37, 211, 102, 0.6),
      0 0 0 0 rgba(37, 211, 102, 0.5);
  }
  70% {
    box-shadow:
      0 12px 36px -8px rgba(37, 211, 102, 0.6),
      0 0 0 16px rgba(37, 211, 102, 0);
  }
  100% {
    box-shadow:
      0 12px 36px -8px rgba(37, 211, 102, 0.6),
      0 0 0 0 rgba(37, 211, 102, 0);
  }
}

/* MODAL */
.modal-bg {
  position: fixed;
  inset: 0;
  background: rgba(8, 8, 10, 0.8);
  backdrop-filter: blur(7px);
  z-index: 10001;
  display: none;
  align-items: center;
  justify-content: center;
  padding: 20px;
}
.modal-bg.show {
  display: flex;
}
.modal {
  background: #fff;
  border-radius: 26px;
  padding: 46px;
  max-width: 440px;
  text-align: center;
  box-shadow: 0 40px 90px rgba(0, 0, 0, 0.4);
  animation: pop 0.4s cubic-bezier(0.2, 1.4, 0.4, 1);
}
.modal .ic {
  width: 74px;
  height: 74px;
  border-radius: 50%;
  background: #25d366;
  display: grid;
  place-items: center;
  margin: 0 auto 22px;
}
.modal h3 {
  font-family: var(--display);
  font-size: 1.55rem;
  color: var(--graphite);
  margin-bottom: 13px;
}
.modal p {
  color: var(--gray);
  margin-bottom: 26px;
}
.modal .btn {
  width: 100%;
  justify-content: center;
}

/* RESPONSIVE */
@media (max-width: 1080px) {
  .about-grid,
  .problem-in,
  .method-grid {
    grid-template-columns: 1fr;
    gap: 54px;
  }
  .method-left {
    position: static;
  }
  .svc-grid {
    grid-template-columns: 1fr;
  }
  .seg-grid {
    grid-template-columns: 1fr 1fr;
  }
  .dif-list {
    grid-template-columns: 1fr;
  }
  .foot-grid {
    grid-template-columns: 1fr 1fr;
    gap: 36px;
  }
  .foot-brand,
  .foot-cta {
    grid-column: 1/-1;
  }
}
@media (max-width: 860px) {
  .hero-in {
    max-width: 100%;
  }
  .nav-links {
    display: none;
    position: fixed;
    inset: 0;
    flex-direction: column;
    justify-content: center;
    background: rgba(10, 10, 12, 0.98);
    backdrop-filter: blur(20px);
    gap: 28px;
    font-size: 1.2rem;
  }
  .nav-links.open {
    display: flex;
  }
  .nav-links a {
    font-size: 1.3rem;
  }
  .nav-cta {
    font-size: 1rem !important;
    padding: 0.9em 2em !important;
  }
  .burger {
    display: flex;
  }
}
@media (max-width: 560px) {
  .wrap {
    padding: 0 20px;
  }
  .form-wrap {
    padding: 38px 24px;
  }
  .fgrid,
  .dif-vs {
    grid-template-columns: 1fr;
    flex-direction: column;
  }
  .seg-grid {
    grid-template-columns: 1fr;
  }
  .hero-stats {
    gap: 26px;
  }
  .hero {
    padding: 110px 0 80px;
  }
  .about-visual .tag360 {
    left: 0;
    font-size: 1.25rem;
    padding: 16px 20px;
  }
  .about-visual .stack .big3 {
    font-size: 13rem;
  }
  .wa-float .lbl {
    display: none;
  }
  .about,
  .problem,
  .services,
  .method,
  .cases,
  .conv-light,
  .packs-sec,
  .dif,
  .formsec,
  .faq,
  .ctafinal {
    padding: 90px 0;
  }
}
