:root {
  --bg: #070708;
  --surface: #101013;
  --surface-2: #151518;
  --surface-3: #1b1b20;
  --text: #f7f7f8;
  --muted: #aaaab4;
  --line: rgba(255, 255, 255, 0.09);
  --pink: #f2184a;
  --pink-soft: rgba(242, 24, 74, 0.14);
  --green: #40ff00;
  --green-soft: rgba(64, 255, 0, 0.12);
  --danger: #ff5f71;
  --warning: #ffcf5a;
  --radius-sm: 12px;
  --radius: 18px;
  --radius-lg: 28px;
  --shadow: 0 28px 80px rgba(0, 0, 0, 0.38);
  --max: 1180px;
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
  margin: 0;
  min-width: 320px;
  background: var(--bg);
  color: var(--text);
  font-family: Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
}

body::before {
  content: "";
  position: fixed;
  inset: 0;
  z-index: -2;
  pointer-events: none;
  background:
    radial-gradient(circle at 18% 8%, rgba(242, 24, 74, 0.12), transparent 28%),
    radial-gradient(circle at 80% 12%, rgba(64, 255, 0, 0.08), transparent 24%),
    #070708;
}

body::after {
  content: "";
  position: fixed;
  inset: 0;
  z-index: -1;
  pointer-events: none;
  opacity: 0.22;
  background-image:
    repeating-linear-gradient(105deg, transparent 0 58px, rgba(242, 24, 74, 0.11) 58px 78px, transparent 78px 112px),
    radial-gradient(circle at 24px 24px, rgba(64, 255, 0, 0.14) 0 8px, transparent 9px);
  background-size: 180px 110px, 180px 110px;
}

img { max-width: 100%; display: block; }
a { color: inherit; text-decoration: none; }
button, input, textarea, select { font: inherit; }
button, a { -webkit-tap-highlight-color: transparent; }

.container {
  width: min(calc(100% - 36px), var(--max));
  margin-inline: auto;
}

.skip-link {
  position: fixed;
  left: 14px;
  top: -80px;
  z-index: 1000;
  padding: 10px 14px;
  border-radius: 10px;
  background: #fff;
  color: #000;
  font-weight: 800;
}
.skip-link:focus { top: 14px; }

.site-header {
  position: sticky;
  top: 0;
  z-index: 100;
  border-bottom: 1px solid rgba(255, 255, 255, 0.06);
  background: rgba(7, 7, 8, 0.76);
  backdrop-filter: blur(18px);
}

.nav {
  min-height: 76px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  font-size: 1.12rem;
  font-weight: 900;
  letter-spacing: -0.04em;
}
.brand img { width: 34px; height: 34px; object-fit: contain; }
.brand-word .pink { color: var(--pink); }
.brand-word .green { color: var(--green); }

.nav-links {
  display: flex;
  align-items: center;
  gap: 6px;
}
.nav-links a {
  color: #c9c9d1;
  padding: 10px 12px;
  border-radius: 11px;
  font-size: 0.94rem;
  font-weight: 700;
  transition: 160ms ease;
}
.nav-links a:hover,
.nav-links a[aria-current="page"] {
  color: #fff;
  background: rgba(255, 255, 255, 0.06);
}
.nav-links .nav-cta {
  color: #fff;
  background: var(--pink);
  padding-inline: 16px;
  margin-left: 6px;
}
.nav-links .nav-cta:hover,
.nav-links .nav-cta[aria-current="page"] { background: #ff2857; }

.menu-btn {
  display: none;
  width: 44px;
  height: 44px;
  border: 1px solid var(--line);
  border-radius: 12px;
  background: rgba(255,255,255,.04);
  color: #fff;
  cursor: pointer;
}
.menu-btn span {
  display: block;
  width: 20px;
  height: 2px;
  margin: 4px auto;
  border-radius: 99px;
  background: currentColor;
}

.hero {
  padding: 88px 0 70px;
  overflow: clip;
}
.hero-grid {
  display: grid;
  grid-template-columns: minmax(0, 1.15fr) minmax(360px, .85fr);
  gap: 56px;
  align-items: center;
}
.eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 9px;
  min-height: 34px;
  padding: 6px 12px;
  border: 1px solid rgba(242, 24, 74, 0.34);
  border-radius: 999px;
  background: rgba(242, 24, 74, 0.08);
  color: #ff9ab2;
  font-size: .82rem;
  font-weight: 800;
  letter-spacing: .02em;
}
.eyebrow-dot {
  width: 7px;
  height: 7px;
  border-radius: 50%;
  background: var(--green);
  box-shadow: 0 0 16px rgba(64,255,0,.65);
}
.hero h1,
.page-hero h1 {
  margin: 20px 0 18px;
  max-width: 900px;
  font-size: clamp(3rem, 7.4vw, 6.8rem);
  line-height: .92;
  letter-spacing: -0.07em;
}
.hero h1 .accent { color: var(--pink); }
.hero h1 .green { color: var(--green); }
.hero-copy {
  max-width: 690px;
  margin: 0;
  color: #b9b9c1;
  font-size: clamp(1.03rem, 1.8vw, 1.2rem);
}
.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-top: 30px;
}
.btn {
  min-height: 48px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 9px;
  padding: 12px 18px;
  border: 1px solid transparent;
  border-radius: 13px;
  font-weight: 850;
  cursor: pointer;
  transition: transform 160ms ease, background 160ms ease, border-color 160ms ease;
}
.btn:hover { transform: translateY(-1px); }
.btn-primary { background: var(--pink); color: #fff; }
.btn-primary:hover { background: #ff2857; }
.btn-secondary { background: rgba(255,255,255,.05); border-color: var(--line); color: #fff; }
.btn-secondary:hover { background: rgba(255,255,255,.09); }
.btn-green { background: var(--green); color: #071000; }
.btn-danger { background: rgba(255, 95, 113, .1); border-color: rgba(255,95,113,.28); color: #ff9caa; }
.btn:disabled { opacity: .55; cursor: not-allowed; transform: none; }

.hero-visual {
  position: relative;
  min-height: 470px;
  display: grid;
  place-items: center;
}
.hero-visual::before,
.hero-visual::after {
  content: "";
  position: absolute;
  border-radius: 50%;
  filter: blur(10px);
}
.hero-visual::before {
  width: 360px;
  height: 360px;
  background: rgba(242,24,74,.14);
}
.hero-visual::after {
  width: 220px;
  height: 220px;
  right: 3%;
  bottom: 4%;
  background: rgba(64,255,0,.08);
}
.logo-orbit {
  position: relative;
  z-index: 2;
  width: min(100%, 430px);
  aspect-ratio: 1;
  display: grid;
  place-items: center;
  border: 1px solid rgba(255,255,255,.08);
  border-radius: 42px;
  background: linear-gradient(145deg, rgba(255,255,255,.055), rgba(255,255,255,.018));
  box-shadow: var(--shadow);
  overflow: hidden;
}
.logo-orbit::before {
  content: "";
  position: absolute;
  inset: 8%;
  border: 1px dashed rgba(255,255,255,.08);
  border-radius: 50%;
  animation: spin 24s linear infinite;
}
.logo-orbit img { width: 66%; position: relative; z-index: 2; }
.logo-orbit .signal {
  position: absolute;
  top: 22px;
  right: 22px;
  z-index: 3;
  padding: 7px 10px;
  border-radius: 999px;
  color: #dfffd3;
  background: rgba(64,255,0,.08);
  border: 1px solid rgba(64,255,0,.2);
  font-size: .76rem;
  font-weight: 800;
}
@keyframes spin { to { transform: rotate(360deg); } }
@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
  .logo-orbit::before { animation: none; }
  *, *::before, *::after { transition-duration: 0.01ms !important; }
}

.stat-strip {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1px;
  margin-top: 42px;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  overflow: hidden;
  background: var(--line);
}
.stat-strip > div {
  padding: 18px 20px;
  background: rgba(12,12,14,.94);
}
.stat-strip strong { display: block; font-size: 1rem; }
.stat-strip span { color: var(--muted); font-size: .86rem; }

.section { padding: 78px 0; }
.section-tight { padding: 48px 0; }
.section-head {
  display: flex;
  align-items: end;
  justify-content: space-between;
  gap: 24px;
  margin-bottom: 28px;
}
.section-head h2 {
  margin: 0;
  font-size: clamp(2rem, 5vw, 3.7rem);
  line-height: 1;
  letter-spacing: -0.055em;
}
.section-head p { max-width: 590px; margin: 0; color: var(--muted); }

.card-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 16px; }
.card {
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: linear-gradient(155deg, rgba(255,255,255,.045), rgba(255,255,255,.018));
  padding: 24px;
  box-shadow: 0 18px 40px rgba(0,0,0,.16);
}
.card h3 { margin: 16px 0 8px; font-size: 1.14rem; }
.card p { margin: 0; color: var(--muted); }
.icon-box {
  width: 44px;
  height: 44px;
  display: grid;
  place-items: center;
  border-radius: 13px;
  background: var(--pink-soft);
  color: #ff7898;
  font-weight: 900;
}
.icon-box.green { background: var(--green-soft); color: var(--green); }

.process-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 14px; }
.process-step {
  position: relative;
  padding: 24px 22px;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: #0d0d10;
}
.process-step .num {
  color: var(--pink);
  font-weight: 900;
  font-size: .78rem;
  letter-spacing: .08em;
}
.process-step h3 { margin: 11px 0 7px; }
.process-step p { margin: 0; color: var(--muted); font-size: .94rem; }

.feature-panel {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 0;
  border: 1px solid var(--line);
  border-radius: var(--radius-lg);
  overflow: hidden;
  background: #0c0c0e;
}
.feature-copy { padding: clamp(28px, 5vw, 58px); }
.feature-copy h2 { margin: 0 0 14px; font-size: clamp(2.2rem, 5vw, 4.3rem); line-height: .98; letter-spacing: -.06em; }
.feature-copy p { color: var(--muted); max-width: 560px; }
.feature-visual {
  min-height: 420px;
  display: grid;
  place-items: center;
  padding: 26px;
  border-left: 1px solid var(--line);
  background:
    linear-gradient(rgba(0,0,0,.22), rgba(0,0,0,.4)),
    url('/assets/palette-banner.png') center/cover no-repeat;
}
.tracker-demo {
  width: min(100%, 420px);
  padding: 20px;
  border: 1px solid rgba(255,255,255,.14);
  border-radius: 18px;
  background: rgba(8,8,10,.9);
  box-shadow: var(--shadow);
}
.tracker-demo .id { font-family: ui-monospace, SFMono-Regular, Menlo, monospace; color: #fff; font-weight: 800; }
.tracker-demo .status { margin-top: 14px; color: var(--green); font-weight: 850; }
.progress-line { height: 7px; border-radius: 99px; background: rgba(255,255,255,.08); margin-top: 12px; overflow: hidden; }
.progress-line span { display: block; width: 58%; height: 100%; border-radius: inherit; background: linear-gradient(90deg, var(--pink), var(--green)); }

.banner-card {
  position: relative;
  min-height: 360px;
  border: 1px solid var(--line);
  border-radius: var(--radius-lg);
  overflow: hidden;
  background: #080808 url('/assets/palette-social.png') center/cover no-repeat;
}
.banner-card::after { content:""; position:absolute; inset:0; background:linear-gradient(90deg, rgba(0,0,0,.72), rgba(0,0,0,.12)); }
.banner-content { position: relative; z-index: 2; width: min(570px, 92%); padding: 48px; }
.banner-content h2 { margin: 0 0 12px; font-size: clamp(2rem, 5vw, 4rem); line-height: 1; letter-spacing: -.05em; }
.banner-content p { color: #d4d4d9; }

.page-hero { padding: 76px 0 34px; }
.page-hero h1 { font-size: clamp(2.7rem, 7vw, 5.8rem); margin-bottom: 16px; }
.page-hero p { max-width: 720px; color: var(--muted); font-size: 1.08rem; margin: 0; }

.two-col { display: grid; grid-template-columns: minmax(0, 1.35fr) minmax(300px, .65fr); gap: 22px; align-items: start; }
.panel {
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: rgba(14,14,17,.92);
  padding: clamp(22px, 4vw, 34px);
}
.panel h2, .panel h3 { margin-top: 0; }
.panel p:last-child { margin-bottom: 0; }
.sticky-panel { position: sticky; top: 100px; }

.form-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 18px; }
.field { display: grid; gap: 8px; }
.field.full { grid-column: 1 / -1; }
.field label, .field .label { font-weight: 800; font-size: .91rem; color: #ededf0; }
.field small { color: #777781; }
.input,
select,
textarea {
  width: 100%;
  border: 1px solid rgba(255,255,255,.11);
  border-radius: 12px;
  background: #0a0a0c;
  color: #f7f7f8;
  outline: none;
  padding: 13px 14px;
  transition: border-color 160ms ease, box-shadow 160ms ease;
}
.input:focus, select:focus, textarea:focus {
  border-color: rgba(242,24,74,.72);
  box-shadow: 0 0 0 4px rgba(242,24,74,.1);
}
textarea { resize: vertical; min-height: 150px; }
select { color-scheme: dark; }
.checkbox-row { display: flex; align-items: flex-start; gap: 11px; color: #d0d0d6; }
.checkbox-row input { margin-top: 5px; width: 17px; height: 17px; accent-color: var(--pink); }
.hp-field { position: absolute !important; left: -9999px !important; width: 1px !important; height: 1px !important; overflow: hidden !important; }
.form-actions { display: flex; flex-wrap: wrap; gap: 10px; align-items: center; margin-top: 22px; }
.form-note { color: var(--muted); font-size: .85rem; }
.message {
  display: none;
  margin-top: 18px;
  padding: 14px 16px;
  border: 1px solid var(--line);
  border-radius: 12px;
  font-size: .93rem;
}
.message.show { display: block; }
.message.success { border-color: rgba(64,255,0,.25); background: rgba(64,255,0,.07); color: #dfffd3; }
.message.error { border-color: rgba(255,95,113,.27); background: rgba(255,95,113,.07); color: #ffc0c8; }

.order-success {
  display: none;
  margin-top: 22px;
  padding: 22px;
  border: 1px solid rgba(64,255,0,.28);
  border-radius: 16px;
  background: rgba(64,255,0,.06);
}
.order-success.show { display: block; }
.order-success .order-id {
  display: inline-block;
  margin: 10px 0 16px;
  padding: 10px 12px;
  border: 1px solid rgba(255,255,255,.1);
  border-radius: 10px;
  background: #070708;
  font: 800 .98rem/1.2 ui-monospace, SFMono-Regular, Menlo, monospace;
}

.notice-list { display: grid; gap: 11px; padding: 0; margin: 20px 0 0; list-style: none; }
.notice-list li { display: flex; gap: 10px; color: #b9b9c1; }
.notice-list li::before { content: "•"; color: var(--green); font-weight: 900; }

.track-form { display: flex; gap: 10px; }
.track-form .input { flex: 1; text-transform: uppercase; }
.track-result { margin-top: 24px; }
.order-summary {
  display: none;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: rgba(14,14,17,.95);
  overflow: hidden;
}
.order-summary.show { display: block; }
.order-summary-head { display: flex; justify-content: space-between; gap: 14px; padding: 22px; border-bottom: 1px solid var(--line); }
.order-summary-head h3 { margin: 0; }
.badge {
  display: inline-flex;
  align-items: center;
  min-height: 30px;
  padding: 5px 10px;
  border: 1px solid rgba(64,255,0,.2);
  border-radius: 999px;
  background: rgba(64,255,0,.07);
  color: #cfffbe;
  font-size: .78rem;
  font-weight: 850;
}
.order-meta { display: grid; grid-template-columns: repeat(3, 1fr); gap: 1px; background: var(--line); border-bottom: 1px solid var(--line); }
.order-meta > div { padding: 16px 20px; background: #0c0c0e; }
.order-meta span { display: block; color: var(--muted); font-size: .78rem; }
.order-meta strong { display: block; margin-top: 3px; font-size: .94rem; }
.timeline { padding: 24px 22px; }
.timeline-step { position: relative; display: grid; grid-template-columns: 30px 1fr; gap: 13px; padding-bottom: 22px; }
.timeline-step:last-child { padding-bottom: 0; }
.timeline-step::before { content:""; position:absolute; left: 14px; top: 30px; bottom: 0; width: 2px; background: rgba(255,255,255,.08); }
.timeline-step:last-child::before { display:none; }
.timeline-dot { width: 30px; height: 30px; display:grid; place-items:center; border: 2px solid rgba(255,255,255,.12); border-radius:50%; background:#0d0d10; color:#666; font-size:.75rem; font-weight:900; }
.timeline-step.complete .timeline-dot { border-color: var(--green); color:#071000; background:var(--green); }
.timeline-step.current .timeline-dot { border-color: var(--pink); color:#fff; background:var(--pink); box-shadow:0 0 0 5px rgba(242,24,74,.1); }
.timeline-step.complete::before { background: rgba(64,255,0,.45); }
.timeline-copy strong { display:block; }
.timeline-copy span { color:var(--muted); font-size:.87rem; }

.support-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 16px; }
.support-card { min-height: 260px; display:flex; flex-direction:column; justify-content:space-between; }
.support-card .big-icon { font-size: 2.1rem; font-weight: 900; color: var(--pink); }
.support-card.green .big-icon { color: var(--green); }

.review-list { display: grid; grid-template-columns: repeat(2, 1fr); gap: 14px; margin-top: 20px; }
.review-card { padding: 22px; border: 1px solid var(--line); border-radius: 16px; background:#0d0d10; }
.review-card .stars { letter-spacing: .08em; color: var(--warning); }
.review-card p { color:#d2d2d8; }
.review-card footer { display:flex; justify-content:space-between; gap:12px; color:var(--muted); font-size:.82rem; }
.empty-state { padding: 34px; text-align:center; border:1px dashed rgba(255,255,255,.13); border-radius:16px; color:var(--muted); }

.terms { max-width: 880px; }
.terms section { padding: 8px 0 24px; border-bottom: 1px solid var(--line); }
.terms section:last-child { border-bottom: 0; }
.terms h2 { margin: 18px 0 8px; font-size: 1.35rem; }
.terms p, .terms li { color: #bcbcc5; }
.terms ul { padding-left: 20px; }

.footer {
  margin-top: 76px;
  border-top: 1px solid var(--line);
  background: rgba(7,7,8,.92);
}
.footer-grid {
  display: grid;
  grid-template-columns: 1.4fr 1fr 1fr;
  gap: 32px;
  padding: 44px 0 30px;
}
.footer-brand p { color: var(--muted); max-width: 430px; }
.footer h4 { margin: 0 0 12px; }
.footer-links { display:grid; gap:8px; }
.footer-links a { color: var(--muted); }
.footer-links a:hover { color:#fff; }
.footer-bottom { display:flex; justify-content:space-between; gap:20px; padding:18px 0 28px; border-top:1px solid var(--line); color:#777781; font-size:.84rem; }

.mono { font-family: ui-monospace, SFMono-Regular, Menlo, monospace; }
.muted { color: var(--muted); }
.pink-text { color: var(--pink); }
.green-text { color: var(--green); }
.inline-link { color: #fff; text-decoration: underline; text-decoration-color: rgba(242,24,74,.7); text-underline-offset: 3px; }
.kicker { color: var(--pink); font-weight: 850; text-transform: uppercase; letter-spacing: .08em; font-size: .78rem; }
hr { border:0; border-top:1px solid var(--line); margin:24px 0; }

@media (max-width: 960px) {
  .menu-btn { display:block; }
  .nav-links {
    position: absolute;
    left: 18px;
    right: 18px;
    top: 68px;
    display: none;
    padding: 12px;
    border: 1px solid var(--line);
    border-radius: 16px;
    background: #0c0c0f;
    box-shadow: var(--shadow);
  }
  .nav-links.open { display:grid; }
  .nav-links a, .nav-links .nav-cta { margin:0; padding:12px 13px; }
  .hero { padding-top: 58px; }
  .hero-grid { grid-template-columns: 1fr; gap: 28px; }
  .hero-visual { min-height: 360px; }
  .logo-orbit { width: min(100%, 390px); }
  .card-grid { grid-template-columns: 1fr 1fr; }
  .process-grid { grid-template-columns: 1fr 1fr; }
  .feature-panel { grid-template-columns: 1fr; }
  .feature-visual { border-left:0; border-top:1px solid var(--line); min-height:360px; }
  .two-col { grid-template-columns: 1fr; }
  .sticky-panel { position:static; }
}

@media (max-width: 680px) {
  .container { width: min(calc(100% - 24px), var(--max)); }
  .nav { min-height: 68px; }
  .brand img { width:30px; height:30px; }
  .hero { padding: 46px 0 48px; }
  .hero h1 { font-size: clamp(3rem, 16vw, 5rem); }
  .hero-visual { min-height: 300px; }
  .logo-orbit { border-radius: 28px; }
  .stat-strip { grid-template-columns: 1fr; }
  .section { padding: 56px 0; }
  .section-head { display:block; }
  .section-head p { margin-top:12px; }
  .card-grid, .process-grid, .support-grid, .review-list { grid-template-columns: 1fr; }
  .feature-copy { padding:28px 22px; }
  .feature-visual { min-height:300px; }
  .banner-card { min-height:460px; background-position:center; }
  .banner-card::after { background:linear-gradient(0deg, rgba(0,0,0,.82), rgba(0,0,0,.22)); }
  .banner-content { position:absolute; left:0; bottom:0; padding:28px 22px; }
  .form-grid { grid-template-columns: 1fr; }
  .field.full { grid-column:auto; }
  .track-form { flex-direction:column; }
  .order-summary-head { flex-direction:column; }
  .order-meta { grid-template-columns:1fr; }
  .footer-grid { grid-template-columns:1fr; }
  .footer-bottom { flex-direction:column; }
}
