* { margin: 0; padding: 0; box-sizing: border-box; }
:root {
  --pink: #FF3B8B;
  --orange: #FF9C35;
  --bg: #080808;
  --text: #fff;
  --muted: rgba(255,255,255,0.38);
  --border: rgba(255,255,255,0.09);
}
html, body { min-height: 100vh; overflow-x: hidden; }
body {
  background: var(--bg);
  color: var(--text);
  font-family: 'Cabinet Grotesk', 'Helvetica Neue', sans-serif;
  cursor: none;
}

/* CURSOR — Adpie arrow icon (extracted from logo, no circle, no text). */
#cursor {
  position: fixed; left: 0; top: 0;
  width: 18px; height: 18px;
  pointer-events: none; z-index: 9999;
  transform: translate3d(var(--x, 50vw), var(--y, 50vh), 0) translate(-50%, -50%);
  transition: width .2s ease, height .2s ease, opacity .2s, filter .2s;
  background-image: url('arrow.png');
  background-repeat: no-repeat;
  background-size: contain;
  background-position: center;
  filter: drop-shadow(0 2px 6px rgba(255, 59, 139, .5));
  will-change: transform;
}
#cursor-trail {
  position: fixed; left: 0; top: 0;
  width: 30px; height: 30px;
  border: 1px solid rgba(255,156,53,0.25); border-radius: 50%;
  pointer-events: none; z-index: 9998;
  transform: translate3d(var(--x, 50vw), var(--y, 50vh), 0) translate(-50%, -50%);
  will-change: transform;
}
*, a, button, input, textarea { cursor: none; }
@media (pointer: coarse) {
  #cursor, #cursor-trail { display: none; }
  body, *, a, button, input, textarea { cursor: auto; }
}

/* CANVAS */
canvas { position: fixed; inset: 0; z-index: 0; pointer-events: none; }

/* NOISE */
.noise {
  position: fixed; inset: 0; z-index: 1; pointer-events: none; opacity: .025;
  background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 200 200' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.75' numOctaves='4'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23n)'/%3E%3C/svg%3E");
  background-size: 150px;
}

/* BIG AMBIENT GLOW */
.ambient {
  position: fixed; top: -30vh; left: 50%; transform: translateX(-50%);
  width: 900px; height: 600px;
  background: radial-gradient(ellipse, rgba(255,59,139,.1) 0%, rgba(255,156,53,.05) 40%, transparent 70%);
  filter: blur(60px); z-index: 0; pointer-events: none;
}

/* LAYOUT */
.shell {
  position: relative; z-index: 2;
  min-height: 100vh;
  display: grid;
  grid-template-columns: 1fr 560px;
  max-width: 1280px;
  margin: 0 auto;
  padding: 0 52px;
  gap: 64px;
  align-items: center;
}

/* LEFT */
.left { padding: 80px 0; }

.logo {
  display: flex; align-items: center;
  margin-bottom: 72px;
  opacity: 0; animation: rise .6s .05s forwards;
}
.logo img {
  height: 84px; width: auto; display: block;
  filter: drop-shadow(0 10px 32px rgba(255, 59, 139, .32));
}

.label-row {
  display: flex; align-items: center; gap: 10px;
  margin-bottom: 20px;
  opacity: 0; animation: rise .6s .1s forwards;
}
.label-bar { width: 32px; height: 2px; background: linear-gradient(90deg, var(--pink), var(--orange)); border-radius: 2px; }
.label-text {
  font-size: 11px; font-weight: 700; letter-spacing: .18em;
  text-transform: uppercase; color: var(--pink);
}

h1 {
  font-weight: 900;
  font-size: clamp(54px, 6.2vw, 92px);
  line-height: .94;
  letter-spacing: -.05em;
  margin-bottom: 18px;
  opacity: 0; animation: rise .7s .15s forwards;
}
.line-white { display: block; color: rgba(255,255,255,.88); }
.line-grad {
  display: block;
  padding-bottom: .14em;
  background: linear-gradient(95deg, var(--pink) 0%, var(--orange) 60%, #ffcc55 100%);
  -webkit-background-clip: text; -webkit-text-fill-color: transparent; background-clip: text;
  filter: drop-shadow(0 0 40px rgba(255,59,139,.35));
}

.copy {
  font-size: 17px; font-weight: 400; line-height: 1.72;
  color: rgba(255,255,255,.45); max-width: 390px;
  margin-bottom: 48px;
  opacity: 0; animation: rise .6s .2s forwards;
}
.copy strong { color: rgba(255,255,255,.78); font-weight: 600; }

/* TAG CHIPS */
.chips {
  display: flex; flex-wrap: wrap; gap: 9px;
  margin-bottom: 52px;
  opacity: 0; animation: rise .6s .26s forwards;
}
.chip {
  display: inline-flex; align-items: center; gap: 6px;
  padding: 7px 13px; border-radius: 100px;
  border: 1px solid rgba(255,255,255,.09);
  background: rgba(255,255,255,.03);
  font-size: 12.5px; font-weight: 600;
  color: rgba(255,255,255,.55);
  letter-spacing: .01em;
  transition: all .25s;
}
.chip:hover { border-color: rgba(255,59,139,.35); color: rgba(255,255,255,.88); background: rgba(255,59,139,.05); }
.chip-dot { width: 5px; height: 5px; border-radius: 50%; background: linear-gradient(135deg, var(--pink), var(--orange)); flex-shrink: 0; }
.chip-logo {
  width: 14px; height: 14px; flex-shrink: 0; display: block;
  transition: transform .25s;
}
.chip:hover .chip-logo { transform: scale(1.1); }
.chip-break { flex-basis: 100%; height: 0; }

/* STAT ROW */
.stats {
  display: flex; gap: 0; margin-top: 56px;
  border-top: 1px solid rgba(255,255,255,.07); padding-top: 30px;
  opacity: 0; animation: rise .6s .36s forwards;
}
.stat { flex: 1; padding-right: 20px; margin-right: 20px; border-right: 1px solid rgba(255,255,255,.07); }
.stat:last-child { border: none; margin-right: 0; padding-right: 0; }
.sn {
  font-size: 30px; font-weight: 900; letter-spacing: -.04em;
  background: linear-gradient(90deg,#fff 0%,rgba(255,255,255,.55) 100%);
  -webkit-background-clip: text; -webkit-text-fill-color: transparent; background-clip: text;
  line-height: 1; margin-bottom: 4px;
}
.sl { font-size: 11.5px; color: var(--muted); font-weight: 600; letter-spacing: .03em; }

/* RIGHT */
.right { padding: 80px 0; opacity: 0; animation: rise .7s .18s forwards; }

.card {
  position: relative;
  background: linear-gradient(155deg, rgba(255,255,255,.055) 0%, rgba(255,255,255,.018) 100%);
  border: 1px solid rgba(255,255,255,.1);
  border-radius: 26px;
  padding: 46px 42px 38px;
  overflow: hidden;
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
}
.card::before {
  content: '';
  position: absolute; top: 0; left: 8%; right: 8%; height: 1px;
  background: linear-gradient(90deg, transparent, rgba(255,59,139,.65), rgba(255,156,53,.65), transparent);
}
.card::after {
  content: '';
  position: absolute; top: -100px; right: -80px;
  width: 280px; height: 280px;
  background: radial-gradient(circle, rgba(255,59,139,.11) 0%, transparent 60%);
  pointer-events: none;
}
.card-bl {
  position: absolute; bottom: -60px; left: -40px;
  width: 200px; height: 200px;
  background: radial-gradient(circle, rgba(255,156,53,.07) 0%, transparent 60%);
  pointer-events: none;
}

.ctag {
  display: inline-flex; align-items: center; gap: 6px;
  font-size: 10px; font-weight: 800; letter-spacing: .16em; text-transform: uppercase;
  padding: 5px 12px; border-radius: 100px;
  background: rgba(255,59,139,.1); border: 1px solid rgba(255,59,139,.22); color: var(--pink);
  margin-bottom: 18px;
}
.ctag-dot { width: 5px; height: 5px; border-radius: 50%; background: var(--pink); animation: blink 2s ease-in-out infinite; }

.card-h {
  font-size: 27px; font-weight: 900; letter-spacing: -.035em;
  margin-bottom: 5px; line-height: 1.15;
}
.card-sub {
  font-size: 14px; color: var(--muted); font-weight: 400; margin-bottom: 32px; line-height: 1.6;
}

/* FIELDS */
.row2 { display: grid; grid-template-columns: 1fr 1fr; gap: 12px; }
.f { display: flex; flex-direction: column; gap: 7px; margin-bottom: 12px; }
.f.s2 { grid-column: 1/-1; }

.fl {
  font-size: 10.5px; font-weight: 800; letter-spacing: .12em;
  text-transform: uppercase; color: rgba(255,255,255,.3);
  transition: color .2s;
  display: flex; align-items: center; gap: 6px;
}
.f:focus-within .fl { color: rgba(255,59,139,.8); }
.fl .req { color: var(--pink); font-weight: 800; }
.fl .opt {
  font-size: 9.5px; font-weight: 600; letter-spacing: .06em;
  color: rgba(255,255,255,.22); text-transform: none;
}

/* Section divider in form */
.section-divider {
  display: flex; align-items: center; gap: 12px;
  margin: 22px 0 14px;
  font-size: 10px; font-weight: 800; letter-spacing: .18em;
  text-transform: uppercase; color: rgba(255,255,255,.32);
}
.section-divider::before,
.section-divider::after {
  content: ''; flex: 1; height: 1px;
  background: linear-gradient(90deg, transparent, rgba(255,255,255,.1), transparent);
}

.iw { position: relative; }
.iw .ico {
  position: absolute; left: 14px; top: 50%; transform: translateY(-50%);
  width: 15px; height: 15px; opacity: .22; pointer-events: none;
  transition: opacity .2s;
}
.f:focus-within .ico { opacity: .65; }

input, textarea {
  width: 100%;
  background: rgba(255,255,255,.04);
  border: 1px solid rgba(255,255,255,.09);
  border-radius: 12px;
  padding: 13px 14px 13px 40px;
  font-family: 'Cabinet Grotesk', 'Helvetica Neue', sans-serif;
  font-size: 15px; font-weight: 600; color: #fff;
  outline: none; -webkit-appearance: none;
  transition: border-color .2s, background .2s, box-shadow .2s;
}
input::placeholder, textarea::placeholder { color: rgba(255,255,255,.16); font-weight: 400; }
input:focus, textarea:focus {
  border-color: rgba(255,59,139,.5);
  background: rgba(255,59,139,.035);
  box-shadow: 0 0 0 3px rgba(255,59,139,.1);
}
input:hover:not(:focus), textarea:hover:not(:focus) {
  border-color: rgba(255,255,255,.17); background: rgba(255,255,255,.055);
}

/* SUBMIT */
.btn {
  width: 100%; margin-top: 22px; padding: 0;
  border: none; border-radius: 14px;
  background: none; position: relative; overflow: hidden;
}
.btn-bg {
  position: absolute; inset: 0; border-radius: 14px;
  background: linear-gradient(90deg, var(--pink) 0%, var(--orange) 100%);
}
.btn-bg-h {
  position: absolute; inset: 0; border-radius: 14px;
  background: linear-gradient(90deg, #ff1a77 0%, #ff8800 100%);
  opacity: 0; transition: opacity .25s;
}
.btn:hover .btn-bg-h { opacity: 1; }
.btn-inner {
  position: relative;
  display: flex; align-items: center; justify-content: center; gap: 9px;
  padding: 17px 28px;
  font-family: 'Cabinet Grotesk', 'Helvetica Neue', sans-serif;
  font-size: 16px; font-weight: 900; letter-spacing: .01em;
  color: #fff;
  transition: transform .15s;
}
.btn:hover .btn-inner { transform: scale(1.012); }
.btn:active .btn-inner { transform: scale(.988); }
.arr { transition: transform .2s; }
.btn:hover .arr { transform: translateX(4px); }
.btn-glow {
  position: absolute; bottom: -8px; left: 12%; right: 12%; height: 24px;
  background: linear-gradient(90deg, var(--pink), var(--orange));
  filter: blur(16px); opacity: .5;
  transition: opacity .2s;
}
.btn:hover .btn-glow { opacity: .75; }

/* loading */
.sring {
  display: none; width: 19px; height: 19px;
  border: 2.5px solid rgba(255,255,255,.3); border-top-color: #fff;
  border-radius: 50%; animation: spin .65s linear infinite;
}
.btn.loading .blabel, .btn.loading .arr { display: none; }
.btn.loading .sring { display: block; }

.pnote {
  margin-top: 14px; text-align: center;
  font-size: 11.5px; color: rgba(255,255,255,.18); letter-spacing: .01em;
}
.pnote svg { vertical-align: middle; margin-right: 3px; }

/* SUCCESS */
.suc { display: none; flex-direction: column; align-items: center; text-align: center; padding: 20px 10px 12px; gap: 13px; }
.suc.on { display: flex; }
.fbody.gone { display: none; }
.suc-ring {
  position: relative; width: 76px; height: 76px;
  animation: popIn .5s cubic-bezier(.36,.07,.19,.97) both;
}
.suc-ring svg { width: 76px; height: 76px; }
.suc-glow {
  position: absolute; inset: -14px; border-radius: 50%;
  background: radial-gradient(circle, rgba(255,59,139,.28) 0%, transparent 65%);
  animation: pglow 2.2s ease infinite;
}
.suc-h { font-size: 25px; font-weight: 900; letter-spacing: -.03em; }
.suc-p { font-size: 14.5px; color: var(--muted); line-height: 1.65; max-width: 250px; font-weight: 400; }
.suc-badge {
  display: inline-flex; align-items: center; gap: 6px;
  padding: 8px 16px; border-radius: 100px;
  background: rgba(255,59,139,.08); border: 1px solid rgba(255,59,139,.18);
  font-size: 12.5px; font-weight: 700; color: var(--pink);
}
.suc-back {
  margin-top: 6px;
  display: inline-flex; align-items: center; gap: 7px;
  padding: 11px 22px; border-radius: 100px;
  background: rgba(255,255,255,.04);
  border: 1px solid rgba(255,255,255,.10);
  color: rgba(255,255,255,.78);
  font-family: inherit; font-size: 13px; font-weight: 600;
  letter-spacing: -.005em; cursor: none;
  transition: background .25s, border-color .25s, color .25s, transform .25s;
}
.suc-back:hover {
  background: rgba(255,59,139,.06);
  border-color: rgba(255,59,139,.30);
  color: #fff;
  transform: translateY(-1px);
}
.suc-back svg { opacity: .7; transition: opacity .25s, transform .25s; }
.suc-back:hover svg { opacity: 1; transform: translateX(-3px); }

/* KEYFRAMES */
@keyframes rise {
  from { opacity: 0; transform: translateY(20px); }
  to   { opacity: 1; transform: translateY(0); }
}
@keyframes blink { 0%,100%{opacity:1} 50%{opacity:.25} }
@keyframes spin { to { transform: rotate(360deg); } }
@keyframes popIn {
  0% { transform: scale(.35) rotate(-12deg); opacity: 0; }
  60% { transform: scale(1.12) rotate(3deg); }
  100% { transform: scale(1) rotate(0); opacity: 1; }
}
@keyframes pglow {
  0%,100% { opacity: .55; transform: scale(1); }
  50% { opacity: 1; transform: scale(1.1); }
}

/* RESPONSIVE */
@media (max-width: 980px) {
  .shell { grid-template-columns: 1fr; padding: 0 24px; gap: 0; }
  .left { padding: 52px 0 20px; }
  .right { padding: 0 0 52px; }
  h1 { font-size: 52px; }
  .stats { display: none; }
  .row2 { grid-template-columns: 1fr; }
  .card { padding: 34px 26px 30px; }
}

@media (hover: none), (pointer: coarse) {
  body, *, a, button, input, textarea { cursor: auto; }
  #cursor, #cursor-trail { display: none; }
}
