:root {
  --bg: oklch(0.99 0.002 270);
  --surface: oklch(1 0 0);
  --surface-soft: oklch(0.955 0.012 270);
  --ink: oklch(0.18 0.025 270);
  --muted: oklch(0.43 0.025 270);
  --line: oklch(0.86 0.015 270);
  --primary: oklch(0.36 0.219 270);
  --primary-dark: oklch(0.25 0.18 270);
  --primary-soft: oklch(0.93 0.055 270);
  --accent: oklch(0.58 0.16 38);
  --accent-soft: oklch(0.94 0.055 38);
  --success: oklch(0.47 0.13 155);
  --shadow: 0 8px 24px oklch(0.2 0.03 270 / 0.08);
  font-family:
    Arial,
    ui-sans-serif,
    system-ui,
    -apple-system,
    BlinkMacSystemFont,
    "Segoe UI",
    sans-serif;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  color: var(--ink);
  background: var(--bg);
}

body::before {
  content: "";
  position: fixed;
  inset: 0 0 auto;
  height: 520px;
  z-index: -1;
  background:
    radial-gradient(circle at 82% 12%, oklch(0.72 0.14 38 / 0.22), transparent 28%),
    linear-gradient(135deg, oklch(0.94 0.045 270), oklch(1 0 0));
}

a {
  color: inherit;
}

.site-header,
.site-footer,
.section,
.hero,
.cta-section,
.legal-page {
  width: min(1120px, calc(100% - 40px));
  margin-inline: auto;
}

.site-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  padding: 24px 0;
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  color: var(--ink);
  text-decoration: none;
  font-weight: 800;
}

.brand.small .brand-mark {
  width: 42px;
  height: 42px;
  border-radius: 12px;
}

.brand-mark {
  position: relative;
  display: inline-flex;
  width: 52px;
  height: 52px;
  align-items: center;
  justify-content: center;
  border-radius: 15px;
  background: var(--primary);
  overflow: hidden;
}

.shop-shape {
  position: absolute;
  left: 12px;
  top: 13px;
  width: 19px;
  height: 22px;
  border: 4px solid white;
  border-top-width: 8px;
}

.paper-plane {
  position: absolute;
  right: 10px;
  bottom: 10px;
  width: 23px;
  height: 18px;
  background: white;
  clip-path: polygon(0 45%, 100% 0, 58% 100%, 44% 62%);
  transform: rotate(-12deg);
}

.brand-word {
  font-size: 1.15rem;
}

.brand-word span:first-child {
  color: var(--primary);
}

.brand-word span:last-child {
  color: var(--accent);
}

.nav-links,
.site-footer nav {
  display: flex;
  flex-wrap: wrap;
  gap: 18px;
  color: var(--muted);
  font-weight: 700;
}

.nav-links a,
.site-footer a {
  text-decoration: none;
}

.nav-links a:hover,
.site-footer a:hover {
  color: var(--primary);
}

.hero {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(340px, 0.82fr);
  gap: clamp(32px, 6vw, 72px);
  align-items: center;
  padding: clamp(48px, 8vw, 96px) 0;
}

.hero-copy {
  display: grid;
  gap: 22px;
}

.hero-label {
  width: max-content;
  margin: 0;
  padding: 8px 12px;
  border-radius: 999px;
  color: var(--primary);
  background: var(--primary-soft);
  font-size: 0.9rem;
  font-weight: 800;
}

h1,
h2,
h3,
p {
  margin-top: 0;
}

h1 {
  max-width: 760px;
  margin-bottom: 0;
  font-size: clamp(2.55rem, 6vw, 5.35rem);
  line-height: 0.98;
  letter-spacing: -0.03em;
}

h2 {
  margin-bottom: 12px;
  font-size: clamp(2rem, 4vw, 3.45rem);
  line-height: 1;
  letter-spacing: -0.025em;
}

h3 {
  margin-bottom: 8px;
  font-size: 1.18rem;
}

p {
  color: var(--muted);
  line-height: 1.65;
}

.hero-copy > p:not(.hero-label):not(.trust-note) {
  max-width: 650px;
  font-size: 1.15rem;
}

.hero-actions,
.cta-section {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  align-items: center;
}

.button {
  display: inline-flex;
  min-height: 46px;
  align-items: center;
  justify-content: center;
  padding: 0 18px;
  border-radius: 10px;
  text-decoration: none;
  font-weight: 800;
  transition:
    background 170ms cubic-bezier(0.23, 1, 0.32, 1),
    color 170ms cubic-bezier(0.23, 1, 0.32, 1),
    transform 120ms cubic-bezier(0.23, 1, 0.32, 1);
}

.button:active {
  transform: scale(0.98);
}

.button.primary {
  color: white;
  background: var(--primary);
}

.button.primary:hover {
  background: var(--primary-dark);
}

.button.secondary {
  color: var(--primary);
  background: var(--surface);
  box-shadow: inset 0 0 0 1px var(--line);
}

.button.secondary:hover {
  background: var(--primary-soft);
}

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

.product-preview {
  padding: 16px;
  border: 1px solid var(--line);
  border-radius: 16px;
  background: var(--surface);
  box-shadow: var(--shadow);
}

.preview-top {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding-bottom: 14px;
  border-bottom: 1px solid var(--line);
  color: var(--primary);
}

.preview-top div {
  display: flex;
  gap: 6px;
}

.preview-top span {
  width: 10px;
  height: 10px;
  border-radius: 999px;
  background: var(--surface-soft);
}

.preview-grid {
  display: grid;
  grid-template-columns: 1.1fr 0.8fr;
  gap: 12px;
  padding-top: 14px;
}

.preview-panel {
  min-height: 140px;
  padding: 14px;
  border-radius: 12px;
  background: var(--surface-soft);
}

.preview-panel.large {
  grid-row: span 2;
}

.preview-panel p {
  margin-bottom: 12px;
  color: var(--primary);
  font-weight: 800;
}

.preview-panel strong {
  display: block;
  font-size: 1.65rem;
}

.preview-panel > span,
.lead-line span {
  color: var(--muted);
  font-size: 0.9rem;
}

.lead-line {
  display: flex;
  justify-content: space-between;
  gap: 12px;
  padding: 12px 0;
  border-top: 1px solid var(--line);
}

.lead-line strong {
  font-size: 0.94rem;
}

.section {
  padding: clamp(54px, 8vw, 92px) 0;
}

.intro-section {
  display: grid;
  grid-template-columns: minmax(0, 0.9fr) minmax(300px, 1.1fr);
  gap: 34px;
  align-items: start;
}

.intro-section p,
.section-heading p {
  max-width: 720px;
}

.proof-strip {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
}

.proof-strip span {
  display: inline-flex;
  min-height: 40px;
  align-items: center;
  padding: 0 12px;
  border-radius: 999px;
  color: var(--primary);
  background: var(--primary-soft);
  font-weight: 800;
}

.section-heading {
  display: grid;
  gap: 8px;
  margin-bottom: 28px;
}

.pricing-grid,
.feature-grid,
.steps-list,
.credit-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
  gap: 16px;
}

.price-card,
.feature-grid article,
.steps-list article,
.credit-packs,
.faq-list details,
.legal-card {
  border: 1px solid var(--line);
  border-radius: 14px;
  background: var(--surface);
}

.price-card {
  display: grid;
  gap: 22px;
  padding: 22px;
}

.price-card.featured {
  border-color: var(--primary);
  background: linear-gradient(180deg, var(--primary-soft), var(--surface));
}

.price {
  color: var(--ink);
  font-size: 2.35rem;
  font-weight: 900;
  letter-spacing: -0.03em;
}

.price span {
  color: var(--muted);
  font-size: 1rem;
  font-weight: 700;
  letter-spacing: 0;
}

ul {
  display: grid;
  gap: 10px;
  margin: 0;
  padding-left: 20px;
  color: var(--muted);
  line-height: 1.5;
}

.credit-packs {
  margin-top: 16px;
  padding: 22px;
}

.credit-grid div {
  display: grid;
  gap: 4px;
  padding: 14px;
  border-radius: 12px;
  background: var(--accent-soft);
}

.credit-grid strong {
  color: var(--accent);
  font-size: 1.35rem;
}

.credit-grid span {
  color: var(--ink);
  font-weight: 700;
}

.steps-list article,
.feature-grid article {
  padding: 20px;
}

.steps-list span {
  display: inline-flex;
  width: 32px;
  height: 32px;
  align-items: center;
  justify-content: center;
  margin-bottom: 16px;
  border-radius: 10px;
  color: white;
  background: var(--primary);
  font-weight: 900;
}

.faq-list {
  display: grid;
  gap: 10px;
}

.faq-list details {
  padding: 18px 20px;
}

.faq-list summary {
  cursor: pointer;
  color: var(--ink);
  font-weight: 850;
}

.faq-list p {
  margin: 12px 0 0;
}

.cta-section {
  justify-content: space-between;
  margin-bottom: 72px;
  padding: 28px;
  border-radius: 16px;
  color: white;
  background: var(--primary);
}

.cta-section h2,
.cta-section p {
  color: white;
}

.cta-section p {
  margin-bottom: 0;
  opacity: 0.88;
}

.cta-section .button.primary {
  color: var(--primary);
  background: white;
}

.site-footer {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  gap: 24px;
  padding: 30px 0 42px;
  border-top: 1px solid var(--line);
}

.site-footer p {
  margin: 10px 0 0;
}

.legal-page {
  padding: 42px 0 80px;
}

.legal-hero {
  max-width: 820px;
  margin-bottom: 28px;
}

.legal-card {
  display: grid;
  gap: 24px;
  padding: clamp(22px, 4vw, 38px);
}

.legal-card section {
  display: grid;
  gap: 8px;
}

.legal-card h2 {
  font-size: 1.45rem;
  letter-spacing: 0;
}

.legal-card p,
.legal-card li {
  max-width: 820px;
}

@media (max-width: 860px) {
  .site-header,
  .hero,
  .intro-section,
  .site-footer {
    display: grid;
    grid-template-columns: 1fr;
  }

  .nav-links {
    gap: 12px;
  }

  .hero {
    padding-top: 32px;
  }

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

  .preview-panel.large {
    grid-row: auto;
  }
}

@media (max-width: 560px) {
  .site-header,
  .site-footer,
  .section,
  .hero,
  .cta-section,
  .legal-page {
    width: min(100% - 28px, 1120px);
  }

  h1 {
    font-size: 2.45rem;
  }

  .nav-links,
  .site-footer nav {
    display: grid;
    gap: 10px;
  }

  .product-preview,
  .price-card,
  .feature-grid article,
  .steps-list article,
  .credit-packs {
    border-radius: 12px;
  }
}

@media (prefers-reduced-motion: reduce) {
  html {
    scroll-behavior: auto;
  }

  *,
  *::before,
  *::after {
    transition-duration: 1ms !important;
  }
}
