:root {
  --purple: #6633cc;
  --teal: #006699;
  --sky: #00ccff;
  --hot-pink: #ff33ff;
  --lavender: #9966ff;
  --burgundy: #660033;
  --rose: #990066;
  --pink: #ff99ff;

  --text: #2a1b45;
  --bg: #ffffff;
  --muted: #6b6280;
}

* { box-sizing: border-box; }

body {
  margin: 0;
  font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, sans-serif;
  color: var(--text);
  background: var(--bg);
  line-height: 1.5;
}

.wrap {
  max-width: 960px;
  margin: 0 auto;
  padding: 0 1.5rem;
}

.site-header {
  border-bottom: 1px solid #eee;
  padding: 1rem 0;
}

.header-inner {
  display: flex;
  align-items: center;
  gap: 0.75rem;
}

.logo {
  width: 40px;
  height: 40px;
  border-radius: 50%;
}

.brand-name {
  font-weight: 700;
  font-size: 1.1rem;
  color: var(--purple);
}

.banner {
  width: 100%;
  line-height: 0;
}

.banner img {
  width: 100%;
  height: auto;
  display: block;
}

.intro {
  padding: 3rem 1.5rem 2rem;
  text-align: center;
}

.intro h1 {
  color: var(--purple);
  margin-bottom: 0.75rem;
}

.intro p {
  max-width: 640px;
  margin: 0 auto;
  color: var(--muted);
  font-size: 1.05rem;
  text-align: justify;
}

.product {
  padding: 2rem 1.5rem;
  text-align: center;
}

.product h2 {
  color: var(--teal);
}

.product p {
  max-width: 640px;
  margin: 0 auto 1.5rem;
  color: var(--muted);
  text-align: justify;
}

.cta {
  display: inline-block;
  background: var(--purple);
  color: #fff;
  text-decoration: none;
  font-weight: 600;
  padding: 0.75rem 1.5rem;
  border-radius: 999px;
  transition: background 0.15s ease;
}

.cta:hover {
  background: var(--lavender);
}

.pricing {
  padding: 2rem 1.5rem 3rem;
  text-align: center;
}

.pricing h2 {
  color: var(--rose);
  margin-bottom: 1.5rem;
}

.sale-banner {
  display: inline-block;
  background: var(--hot-pink);
  color: #fff;
  font-weight: 700;
  padding: 0.4rem 1rem;
  border-radius: 999px;
  margin-bottom: 1rem;
}

.price-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1rem;
  max-width: 720px;
  margin: 0 auto;
}

.price-card {
  border: 1px solid #eee;
  border-radius: 12px;
  padding: 1.5rem 1rem;
}

.price-card.featured {
  border-color: var(--sky);
  box-shadow: 0 0 0 2px var(--sky) inset;
}

.price-card h3 {
  margin: 0 0 0.5rem;
  color: var(--teal);
  font-size: 1rem;
}

.price-original {
  font-size: 1.1rem;
  font-weight: 600;
  color: var(--muted);
  text-decoration: line-through;
  margin: 0;
}

.price-original span {
  font-size: 0.85rem;
  font-weight: 400;
}

.price {
  font-size: 1.75rem;
  font-weight: 700;
  color: var(--purple);
  margin: 0.25rem 0 0;
}

.price span {
  font-size: 0.9rem;
  font-weight: 400;
  color: var(--muted);
}

.note {
  font-size: 0.8rem;
  color: var(--muted);
  margin: 0.5rem 0 0;
}

.trial-note {
  margin-top: 2rem;
}

.trial-headline {
  font-weight: 700;
  color: var(--purple);
  margin: 0.5rem 0;
}

.trial-detail {
  font-size: 0.85rem;
  color: var(--muted);
  margin: 0 auto 0.5rem;
  max-width: 480px;
}

.site-footer {
  border-top: 1px solid #eee;
  padding: 1.5rem 0;
  text-align: center;
  color: var(--muted);
  font-size: 0.9rem;
}

.footer-inner {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0.5rem;
}

.footer-links a {
  color: var(--teal);
  text-decoration: underline;
  margin: 0 0.5rem;
}

.footer-inner .logo {
  width: 40px;
  height: 40px;
}

.footer-inner p {
  margin: 0;
}

.site-footer a {
  color: var(--teal);
  text-decoration: none;
}

@media (max-width: 600px) {
  .price-grid {
    grid-template-columns: 1fr;
  }
}
