:root {
  --bg: #070708;
  --bg-elevated: #101014;
  --bg-card: #14141a;
  --border: rgba(255, 255, 255, 0.08);
  --text: #f4f4f7;
  --muted: #a1a1b0;
  --accent: #ff2d7a;
  --accent-soft: rgba(255, 45, 122, 0.16);
  --accent-glow: rgba(255, 45, 122, 0.45);
  --radius: 16px;
  --max: 1080px;
  --font: Inter, system-ui, -apple-system, Segoe UI, Roboto, Helvetica, Arial, sans-serif;
}

*,
*::before,
*::after {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  font-family: var(--font);
  background: var(--bg);
  color: var(--text);
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
}

a {
  color: inherit;
  text-decoration: none;
}

img {
  max-width: 100%;
}

.bg-glow {
  position: fixed;
  inset: -20% auto auto 50%;
  width: min(900px, 120vw);
  height: 520px;
  transform: translateX(-50%);
  background: radial-gradient(ellipse at center, rgba(255, 45, 122, 0.22), transparent 65%);
  pointer-events: none;
  z-index: 0;
  filter: blur(8px);
}

.container {
  width: min(100% - 2rem, var(--max));
  margin-inline: auto;
  position: relative;
  z-index: 1;
}

.nav {
  position: sticky;
  top: 0;
  z-index: 50;
  backdrop-filter: blur(14px);
  background: rgba(7, 7, 8, 0.72);
  border-bottom: 1px solid var(--border);
}

.nav-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  min-height: 64px;
  gap: 1rem;
}

.logo {
  display: inline-flex;
  align-items: center;
  gap: 0.55rem;
  font-weight: 700;
  letter-spacing: -0.02em;
}

.logo-mark {
  display: inline-grid;
  place-items: center;
  width: 32px;
  height: 32px;
  border-radius: 9px;
  background: linear-gradient(135deg, #ff4d94, #ff2d7a 55%, #c4185a);
  color: white;
  font-weight: 800;
  font-size: 1.05rem;
  box-shadow: 0 0 24px var(--accent-glow);
}

.logo-mark.sm {
  width: 24px;
  height: 24px;
  font-size: 0.85rem;
  border-radius: 7px;
}

.nav-links {
  display: none;
  align-items: center;
  gap: 1.25rem;
  font-size: 0.95rem;
  color: var(--muted);
}

.nav-links a:hover {
  color: var(--text);
}

.nav-cta-mobile {
  display: inline-flex;
}

@media (min-width: 768px) {
  .nav-links {
    display: flex;
  }
  .nav-cta-mobile {
    display: none;
  }
}

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.4rem;
  padding: 0.85rem 1.25rem;
  border-radius: 999px;
  font-weight: 600;
  font-size: 0.95rem;
  border: 1px solid transparent;
  transition: transform 0.15s ease, background 0.15s ease, border-color 0.15s ease, box-shadow 0.15s ease;
  text-align: center;
}

.btn:hover {
  transform: translateY(-1px);
}

.btn-sm {
  padding: 0.55rem 0.95rem;
  font-size: 0.875rem;
}

.btn-primary {
  background: linear-gradient(135deg, #ff4d94, #ff2d7a);
  color: #fff;
  box-shadow: 0 8px 28px rgba(255, 45, 122, 0.35);
}

.btn-primary:hover {
  box-shadow: 0 10px 32px rgba(255, 45, 122, 0.48);
}

.btn-ghost {
  background: transparent;
  border-color: var(--border);
  color: var(--text);
}

.btn-ghost:hover {
  border-color: rgba(255, 255, 255, 0.22);
  background: rgba(255, 255, 255, 0.03);
}

.hero {
  padding: 3.5rem 0 2.5rem;
}

.hero-inner {
  text-align: center;
  max-width: 780px;
}

.eyebrow {
  display: inline-block;
  margin: 0 0 1rem;
  padding: 0.35rem 0.75rem;
  border-radius: 999px;
  background: var(--accent-soft);
  color: #ff8fb8;
  font-size: 0.8rem;
  font-weight: 600;
  letter-spacing: 0.04em;
  text-transform: uppercase;
}

.hero h1 {
  margin: 0;
  font-size: clamp(1.85rem, 5.5vw, 3.15rem);
  line-height: 1.12;
  letter-spacing: -0.035em;
  font-weight: 800;
}

.hero-lead {
  margin: 1.25rem auto 0;
  font-size: clamp(1.05rem, 2.4vw, 1.2rem);
  color: var(--muted);
  max-width: 38rem;
}

.hero-en {
  margin: 0.65rem auto 0;
  font-size: 0.92rem;
  color: #7d7d8d;
  max-width: 36rem;
}

.hero-en em {
  font-style: italic;
  color: #9a9aaa;
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 0.75rem;
  justify-content: center;
  margin-top: 1.75rem;
}

.hero-pills {
  list-style: none;
  display: flex;
  flex-wrap: wrap;
  gap: 0.5rem;
  justify-content: center;
  padding: 0;
  margin: 1.75rem 0 0;
}

.hero-pills li {
  padding: 0.4rem 0.8rem;
  border-radius: 999px;
  border: 1px solid rgba(255, 45, 122, 0.35);
  background: var(--accent-soft);
  color: #ffb0cc;
  font-size: 0.85rem;
  font-weight: 600;
}

.diff-line {
  margin: 1.75rem auto 0;
  max-width: 36rem;
  padding: 1rem 1.15rem;
  border-radius: 12px;
  border: 1px solid var(--border);
  background: rgba(255, 255, 255, 0.02);
  color: var(--muted);
  font-size: 0.95rem;
  line-height: 1.5;
}

.money-line {
  margin: 0.85rem auto 0;
  max-width: 36rem;
  color: #d4d4de;
  font-size: 0.98rem;
  font-weight: 500;
}

.money-line strong {
  color: #ff8fb8;
}

.section {
  padding: 3.75rem 0;
}

.section-alt {
  background: linear-gradient(180deg, transparent, rgba(255, 255, 255, 0.02), transparent);
}

.section-head {
  text-align: center;
  max-width: 620px;
  margin: 0 auto 2.5rem;
}

.section-head h2 {
  margin: 0;
  font-size: clamp(1.6rem, 3.5vw, 2.15rem);
  letter-spacing: -0.03em;
  line-height: 1.2;
}

.section-head p {
  margin: 0.85rem 0 0;
  color: var(--muted);
}

.grid {
  display: grid;
  gap: 1rem;
}

.steps-grid {
  list-style: none;
  margin: 0;
  padding: 0;
  display: grid;
  gap: 1rem;
  grid-template-columns: 1fr;
  counter-reset: none;
}

@media (min-width: 768px) {
  .steps-grid {
    grid-template-columns: repeat(3, 1fr);
  }
}

.step-card {
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 1.4rem 1.35rem 1.5rem;
}

.step-num {
  display: inline-grid;
  place-items: center;
  width: 36px;
  height: 36px;
  border-radius: 10px;
  background: var(--accent-soft);
  color: #ff7aae;
  font-weight: 800;
  font-size: 0.95rem;
  margin-bottom: 0.9rem;
}

.step-card h3 {
  margin: 0 0 0.45rem;
  font-size: 1.1rem;
  letter-spacing: -0.02em;
}

.step-card p {
  margin: 0;
  color: var(--muted);
  font-size: 0.95rem;
}

.why-grid {
  grid-template-columns: 1fr;
}

@media (min-width: 640px) {
  .why-grid {
    grid-template-columns: repeat(3, 1fr);
  }
}

.card {
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 1.4rem 1.35rem 1.5rem;
  transition: border-color 0.2s ease, transform 0.2s ease;
}

.card:hover {
  border-color: rgba(255, 45, 122, 0.35);
  transform: translateY(-2px);
}

.card-icon {
  width: 36px;
  height: 36px;
  display: grid;
  place-items: center;
  border-radius: 10px;
  background: var(--accent-soft);
  color: #ff7aae;
  font-weight: 700;
  margin-bottom: 0.9rem;
}

.card h3 {
  margin: 0 0 0.45rem;
  font-size: 1.1rem;
  letter-spacing: -0.02em;
}

.card p {
  margin: 0;
  color: var(--muted);
  font-size: 0.95rem;
}

.audience-grid {
  grid-template-columns: 1fr;
  max-width: 720px;
  margin-inline: auto;
}

@media (min-width: 640px) {
  .audience-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

.audience-card {
  padding: 1.5rem;
  border-radius: var(--radius);
  border: 1px solid var(--border);
  background: var(--bg-elevated);
}

.audience-card h3 {
  margin: 0 0 0.5rem;
  font-size: 1.15rem;
}

.audience-card p {
  margin: 0;
  color: var(--muted);
  font-size: 0.95rem;
}

.pricing-grid {
  display: grid;
  gap: 1rem;
  grid-template-columns: 1fr;
  align-items: stretch;
}

@media (min-width: 768px) {
  .pricing-grid {
    grid-template-columns: repeat(3, 1fr);
  }
}

.price-card {
  position: relative;
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 1.5rem 1.35rem 1.6rem;
  display: flex;
  flex-direction: column;
}

.price-card h3 {
  margin: 0;
  font-size: 1.15rem;
  letter-spacing: -0.02em;
}

.price {
  margin: 0.75rem 0 0.35rem;
}

.price-amount {
  font-size: 1.85rem;
  font-weight: 800;
  letter-spacing: -0.03em;
}

.price-period {
  color: var(--muted);
  font-size: 0.9rem;
  font-weight: 500;
  margin-left: 0.15rem;
}

.price-take {
  margin: 0 0 1rem;
  color: #ff8fb8;
  font-size: 0.92rem;
  font-weight: 600;
}

.price-card ul {
  margin: 0;
  padding: 0 0 0 1.1rem;
  color: var(--muted);
  font-size: 0.92rem;
  flex: 1;
}

.price-card li + li {
  margin-top: 0.35rem;
}

.price-card-highlight {
  border-color: rgba(255, 45, 122, 0.45);
  background:
    radial-gradient(ellipse at top, rgba(255, 45, 122, 0.14), transparent 55%),
    var(--bg-elevated);
  box-shadow: 0 12px 40px rgba(255, 45, 122, 0.12);
}

.price-badge {
  display: inline-block;
  margin: 0 0 0.65rem;
  padding: 0.25rem 0.65rem;
  border-radius: 999px;
  background: var(--accent-soft);
  color: #ff8fb8;
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.04em;
  text-transform: uppercase;
}


.pricing-compare {
  margin: 1.35rem auto 0;
  max-width: 44rem;
  text-align: center;
  color: #ff8fb8;
  font-size: 0.95rem;
  font-weight: 600;
  line-height: 1.55;
}

.pricing-footnote {
  margin: 1.5rem auto 0;
  max-width: 42rem;
  text-align: center;
  color: #7d7d8d;
  font-size: 0.82rem;
  line-height: 1.5;
}

.faq-list {
  max-width: 680px;
  margin-inline: auto;
  display: flex;
  flex-direction: column;
  gap: 0.65rem;
}

.faq-item {
  border: 1px solid var(--border);
  border-radius: 12px;
  background: var(--bg-card);
  padding: 0.15rem 1rem;
}

.faq-item summary {
  cursor: pointer;
  padding: 0.9rem 0;
  font-weight: 600;
  letter-spacing: -0.01em;
  list-style: none;
}

.faq-item summary::-webkit-details-marker {
  display: none;
}

.faq-item summary::after {
  content: "+";
  float: right;
  color: #ff8fb8;
  font-weight: 700;
}

.faq-item[open] summary::after {
  content: "−";
}

.faq-item p {
  margin: 0 0 1rem;
  color: var(--muted);
  font-size: 0.95rem;
}

.cta-section {
  padding-bottom: 5rem;
}

.cta-box {
  text-align: center;
  padding: 2.5rem 1.5rem;
  border-radius: 24px;
  border: 1px solid rgba(255, 45, 122, 0.28);
  background:
    radial-gradient(ellipse at top, rgba(255, 45, 122, 0.18), transparent 55%),
    var(--bg-elevated);
  box-shadow: 0 20px 60px rgba(0, 0, 0, 0.35);
}

.cta-box h2 {
  margin: 0;
  font-size: clamp(1.55rem, 3vw, 2rem);
  letter-spacing: -0.03em;
}

.cta-box > p {
  margin: 0.85rem auto 0;
  color: var(--muted);
  max-width: 30rem;
}

.cta-en {
  font-size: 0.9rem !important;
  color: #7d7d8d !important;
}

.cta-note {
  margin: 1.25rem 0 0 !important;
  font-size: 0.88rem;
  color: var(--muted);
  max-width: 36rem !important;
}

.cta-note a {
  color: #ff8fb8;
  text-decoration: underline;
  text-underline-offset: 3px;
}

.footer {
  border-top: 1px solid var(--border);
  padding: 2rem 0 2.5rem;
}

.footer-inner {
  display: flex;
  flex-direction: column;
  gap: 0.65rem;
  align-items: flex-start;
  color: var(--muted);
  font-size: 0.9rem;
}

.footer-brand {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  color: var(--text);
  font-weight: 600;
}

.footer a:hover {
  color: #ff8fb8;
}

.footer-copy {
  margin: 0;
  font-size: 0.82rem;
  opacity: 0.85;
}

.footer-meta {
  margin: 0;
}

@media (min-width: 768px) {
  .footer-inner {
    flex-direction: row;
    flex-wrap: wrap;
    align-items: center;
    justify-content: space-between;
  }

  .hero {
    padding: 4.5rem 0 3.25rem;
  }
}

.why-collapse {
  max-width: 40rem;
  margin: 0 auto;
  text-align: center;
}

.why-copy {
  margin: 0;
  color: var(--muted);
  font-size: 1.02rem;
  line-height: 1.6;
}

.why-proof {
  margin: 1.15rem 0 0;
  padding: 1rem 1.15rem;
  border-radius: 12px;
  border: 1px solid rgba(255, 45, 122, 0.28);
  background: var(--accent-soft);
  color: #ff8fb8;
  font-size: 0.98rem;
  font-weight: 600;
  line-height: 1.55;
}

.price-compare-eb {
  margin: 1rem 0 0;
  padding: 0.55rem 0.75rem;
  border-radius: 10px;
  border: 1px solid rgba(255, 45, 122, 0.3);
  background: rgba(255, 45, 122, 0.08);
  color: #ffb0cc;
  font-size: 0.82rem;
  font-weight: 600;
  line-height: 1.4;
  text-align: center;
}
