:root {
  --bg: #f5f5fb;
  --bg-alt: #ffffff;
  --primary: #2563eb;
  --primary-soft: rgba(37, 99, 235, 0.08);
  --accent: #f97316;
  --accent-soft: rgba(249, 115, 22, 0.08);
  --text: #111827;
  --muted: #6b7280;
  --border: #e5e7eb;
  --radius-lg: 1.5rem;
  --radius-xl: 2rem;
  --shadow-soft: 0 18px 45px rgba(15, 23, 42, 0.08);
  --shadow-subtle: 0 2px 8px rgba(15, 23, 42, 0.06);
}

*,
*::before,
*::after {
  box-sizing: border-box;
}

html, body {
  margin: 0;
  padding: 0;
  font-family: system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  background: radial-gradient(circle at top left, #e0f2fe 0, #f5f5fb 38%, #f9fafb 100%);
  color: var(--text);
}

body {
  min-height: 100vh;
}

a {
  color: var(--primary);
  text-decoration: none;
}

a:hover {
  text-decoration: underline;
}

.page {
  max-width: 1120px;
  margin: 0 auto;
  padding: 20px 16px 48px;
}

/* NAV */

.nav {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  padding: 8px 12px;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.9);
  backdrop-filter: blur(16px);
  border: 1px solid rgba(226, 232, 240, 0.9);
  box-shadow: var(--shadow-subtle);
  position: sticky;
  top: 12px;
  z-index: 20;
}

.nav-left {
  display: flex;
  align-items: center;
  gap: 10px;
}

.logo-mark {
  width: 28px;
  height: 28px;
  border-radius: 999px;
  background: radial-gradient(circle at 30% 0, #f97316, #2563eb);
  display: flex;
  align-items: center;
  justify-content: center;
  color: #f9fafb;
  font-size: 16px;
  font-weight: 700;
}

.logo-text {
  display: flex;
  flex-direction: column;
}

.logo-main {
  font-weight: 700;
  font-size: 15px;
  letter-spacing: 0.03em;
}

.logo-sub {
  font-size: 11px;
  color: var(--muted);
}

.nav-links {
  display: flex;
  align-items: center;
  gap: 16px;
  font-size: 13px;
}

.nav-links a {
  color: var(--muted);
  text-decoration: none;
  padding: 6px 10px;
  border-radius: 999px;
}

.nav-links a:hover {
  background: rgba(15, 23, 42, 0.04);
  color: var(--text);
}

.nav-cta {
  display: flex;
  align-items: center;
  gap: 6px;
}

.badge-pill {
  font-size: 10px;
  padding: 3px 9px;
  border-radius: 999px;
  background: var(--primary-soft);
  color: var(--primary);
  font-weight: 500;
  border: 1px solid rgba(37, 99, 235, 0.12);
}

/* LAYOUT */

.hero {
  display: grid;
  grid-template-columns: minmax(0, 1.25fr) minmax(0, 1fr);
  gap: 32px;
  align-items: center;
  margin-top: 32px;
  margin-bottom: 40px;
}

.hero-kicker {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  padding: 4px 10px;
  border-radius: 999px;
  background: rgba(15, 23, 42, 0.04);
  color: var(--muted);
  font-size: 11px;
  margin-bottom: 12px;
}

.hero-kicker span {
  font-size: 8px;
}

.hero-title {
  font-size: clamp(30px, 5vw, 40px);
  line-height: 1.05;
  margin: 0 0 14px;
}

.hero-highlight {
  background: linear-gradient(120deg, #2563eb, #f97316);
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
}

.hero-text {
  font-size: 14px;
  color: var(--muted);
  max-width: 420px;
  margin-bottom: 18px;
}

.hero-pricing-row {
  display: flex;
  align-items: baseline;
  gap: 8px;
  margin-bottom: 18px;
}

.hero-price {
  font-size: 28px;
  font-weight: 700;
}

.hero-price span {
  font-size: 14px;
  font-weight: 500;
  color: var(--muted);
}

.hero-guarantee {
  font-size: 12px;
  color: var(--muted);
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-bottom: 12px;
}

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 6px;
  padding: 10px 18px;
  border-radius: 999px;
  border: 1px solid transparent;
  font-size: 13px;
  font-weight: 500;
  cursor: pointer;
  text-decoration: none;
  white-space: nowrap;
}

.btn-primary {
  background: radial-gradient(circle at 20% 0, #f97316, #2563eb);
  color: #f9fafb;
  box-shadow: var(--shadow-soft);
}

.btn-primary:hover {
  filter: brightness(1.04);
  text-decoration: none;
}

.btn-ghost {
  background: rgba(255, 255, 255, 0.7);
  border-color: rgba(148, 163, 184, 0.6);
  color: var(--muted);
}

.btn-ghost:hover {
  background: rgba(255, 255, 255, 0.95);
  color: var(--text);
  text-decoration: none;
}

.hero-meta {
  font-size: 11px;
  color: var(--muted);
}

.hero-meta strong {
  color: var(--text);
}

.hero-right {
  position: relative;
}

.hero-card {
  border-radius: var(--radius-xl);
  background: rgba(255, 255, 255, 0.92);
  border: 1px solid var(--border);
  box-shadow: var(--shadow-soft);
  padding: 18px 18px 16px;
}

.hero-sites-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 8px;
  margin-bottom: 10px;
}

.mini-site-card {
  border-radius: 18px;
  background: radial-gradient(circle at top left, #e0ecff, #fdf2e9);
  padding: 10px 12px;
  font-size: 11px;
  position: relative;
  overflow: hidden;
}

.mini-site-card:nth-child(2) {
  background: radial-gradient(circle at top, #dcfce7, #e0f2fe);
}

.mini-site-card:nth-child(3) {
  background: radial-gradient(circle at top, #fef9c3, #e0f2fe);
}

.mini-site-card:nth-child(4) {
  background: radial-gradient(circle at top, #fee2e2, #f5f5fb);
}

.mini-site-tag {
  display: inline-flex;
  padding: 3px 8px;
  border-radius: 999px;
  background: rgba(15, 23, 42, 0.08);
  font-size: 9px;
  color: #0f172a;
  margin-bottom: 4px;
}

.mini-site-title {
  font-weight: 600;
  margin-bottom: 2px;
}

.mini-site-url {
  font-size: 9px;
  color: #374151;
}

.mini-dot {
  position: absolute;
  width: 72px;
  height: 72px;
  border-radius: 999px;
  border: 2px dashed rgba(37, 99, 235, 0.18);
  top: -24px;
  right: -24px;
}

.hero-stats-row {
  display: flex;
  justify-content: space-between;
  align-items: center;
  font-size: 11px;
  color: var(--muted);
}

.hero-stat-pill {
  padding: 5px 10px;
  border-radius: 999px;
  background: var(--primary-soft);
  color: var(--primary);
  font-weight: 500;
}

/* SECTIONS */

.section {
  margin-bottom: 40px;
}

.section-header {
  display: flex;
  justify-content: space-between;
  align-items: baseline;
  gap: 16px;
  margin-bottom: 16px;
}

.section-kicker {
  font-size: 11px;
  text-transform: uppercase;
  letter-spacing: 0.12em;
  color: var(--muted);
  margin-bottom: 4px;
}

.section-title {
  font-size: 20px;
  margin: 0;
}

.section-description {
  font-size: 13px;
  color: var(--muted);
  max-width: 420px;
}

/* GRID / CARDS */

.grid {
  display: grid;
  gap: 16px;
}

.grid-2 {
  grid-template-columns: repeat(2, minmax(0, 1fr));
}

.grid-3 {
  grid-template-columns: repeat(3, minmax(0, 1fr));
}

.card {
  border-radius: var(--radius-lg);
  background: rgba(255, 255, 255, 0.95);
  border: 1px solid var(--border);
  box-shadow: var(--shadow-subtle);
  padding: 16px 16px 14px;
}

.card-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 8px;
}

.card-tag {
  font-size: 10px;
  padding: 3px 7px;
  border-radius: 999px;
  background: rgba(148, 163, 184, 0.16);
  color: var(--muted);
}

.card-title {
  font-size: 14px;
  margin: 0 0 3px;
}

.card-body {
  font-size: 12px;
  color: var(--muted);
}

.card-link {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  font-size: 12px;
  margin-top: 10px;
  color: var(--primary);
}

.card-link span {
  font-size: 14px;
}

/* PRICING */

.pricing-layout {
  display: grid;
  grid-template-columns: minmax(0, 1.1fr) minmax(0, 0.9fr);
  gap: 16px;
}

.pricing-main {
  border-radius: var(--radius-xl);
  background: rgba(255, 255, 255, 0.96);
  padding: 18px 18px 16px;
  border: 1px solid var(--border);
  box-shadow: var(--shadow-soft);
}

.pricing-label {
  font-size: 11px;
  color: var(--muted);
  margin-bottom: 4px;
}

.pricing-price {
  font-size: 26px;
  font-weight: 700;
  margin-bottom: 6px;
}

.pricing-price span {
  font-size: 12px;
  color: var(--muted);
  font-weight: 500;
}

.pricing-list {
  list-style: none;
  padding: 0;
  margin: 10px 0 8px;
  font-size: 12px;
  color: var(--muted);
}

.pricing-list li {
  display: flex;
  align-items: flex-start;
  gap: 8px;
  margin-bottom: 6px;
}

.pricing-dot {
  width: 14px;
  height: 14px;
  border-radius: 999px;
  border: 1px solid rgba(148, 163, 184, 0.6);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 10px;
}

.pricing-footnote {
  font-size: 11px;
  color: var(--muted);
  margin-top: 6px;
}

.pricing-addons {
  border-radius: var(--radius-lg);
  background: rgba(255, 255, 255, 0.9);
  padding: 14px;
  border: 1px dashed rgba(148, 163, 184, 0.8);
  font-size: 12px;
}

.pricing-addons-list {
  list-style: none;
  padding: 0;
  margin: 8px 0 0;
}

.pricing-addons-list li {
  display: flex;
  justify-content: space-between;
  margin-bottom: 3px;
}

.pricing-pill {
  font-size: 10px;
  padding: 2px 6px;
  border-radius: 999px;
  background: rgba(37, 99, 235, 0.06);
  color: var(--primary);
}

/* STEPS */

.steps {
  display: grid;
  gap: 10px;
  font-size: 12px;
}

.step {
  display: flex;
  align-items: flex-start;
  gap: 10px;
}

.step-number {
  width: 22px;
  height: 22px;
  border-radius: 999px;
  background: rgba(37, 99, 235, 0.1);
  color: var(--primary);
  font-size: 11px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 600;
}

.step-title {
  font-weight: 600;
  margin-bottom: 2px;
}

/* CONTACT */

.contact-card {
  border-radius: var(--radius-xl);
  background: linear-gradient(135deg, #2563eb, #f97316);
  color: #f9fafb;
  padding: 18px 18px 16px;
  display: grid;
  grid-template-columns: minmax(0, 1.3fr) minmax(0, 1fr);
  gap: 16px;
}

.contact-title {
  font-size: 18px;
  margin-bottom: 6px;
}

.contact-text {
  font-size: 13px;
  opacity: 0.95;
  margin-bottom: 10px;
}

.contact-meta {
  font-size: 11px;
  opacity: 0.9;
}

.contact-actions {
  display: flex;
  flex-direction: column;
  gap: 9px;
  font-size: 12px;
}

.contact-actions a {
  color: #f9fafb;
  text-decoration: underline;
}

/* FOOTER */

.footer {
  margin-top: 32px;
  font-size: 11px;
  color: var(--muted);
  display: flex;
  justify-content: space-between;
  gap: 12px;
}

/* DEMO PAGES */

.demo-hero {
  margin-top: 32px;
  margin-bottom: 32px;
  border-radius: var(--radius-xl);
  background: rgba(255, 255, 255, 0.95);
  border: 1px solid var(--border);
  box-shadow: var(--shadow-soft);
  padding: 22px 22px 20px;
  display: grid;
  grid-template-columns: minmax(0, 1.35fr) minmax(0, 1fr);
  gap: 24px;
}

.demo-breadcrumb {
  font-size: 11px;
  color: var(--muted);
  margin-bottom: 8px;
}

.demo-name {
  font-size: 24px;
  margin: 0 0 6px;
}

.demo-subtitle {
  font-size: 13px;
  color: var(--muted);
  margin-bottom: 10px;
}

.demo-pill-row {
  display: flex;
  flex-wrap: wrap;
  gap: 6px;
  margin-bottom: 12px;
}

.demo-pill {
  font-size: 11px;
  padding: 4px 8px;
  border-radius: 999px;
  background: rgba(15, 23, 42, 0.04);
}

.demo-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin-bottom: 12px;
}

.demo-meta {
  font-size: 11px;
  color: var(--muted);
}

.demo-side-block {
  border-radius: 18px;
  background: radial-gradient(circle at top left, #e0f2fe, #fee2e2);
  padding: 14px;
  font-size: 12px;
}

.demo-side-label {
  font-size: 10px;
  text-transform: uppercase;
  letter-spacing: 0.16em;
  color: #0f172a;
  opacity: 0.7;
  margin-bottom: 4px;
}

.demo-side-title {
  font-weight: 600;
  margin-bottom: 4px;
}

.demo-side-url {
  font-size: 11px;
  color: #1f2937;
  margin-bottom: 6px;
}

.demo-side-footer {
  font-size: 10px;
  color: #4b5563;
}

.demo-section {
  margin-bottom: 26px;
}

.demo-section-title {
  font-size: 16px;
  margin-bottom: 6px;
}

.demo-section-text {
  font-size: 13px;
  color: var(--muted);
  margin-bottom: 10px;
}

.demo-columns {
  display: grid;
  gap: 16px;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  font-size: 13px;
}

.demo-box {
  border-radius: 16px;
  background: rgba(255, 255, 255, 0.96);
  border: 1px solid var(--border);
  padding: 12px 12px 10px;
}

.demo-box-title {
  font-weight: 600;
  margin-bottom: 4px;
}

.demo-box-text {
  font-size: 12px;
  color: var(--muted);
}

.qr-box {
  display: flex;
  align-items: center;
  gap: 10px;
  margin-top: 8px;
}

.qr-placeholder {
  width: 64px;
  height: 64px;
  border-radius: 12px;
  border: 1px dashed rgba(148, 163, 184, 0.9);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 10px;
  color: var(--muted);
}

/* LINK HUB */

.linkhub-wrapper {
  margin-top: 40px;
  max-width: 420px;
  margin-left: auto;
  margin-right: auto;
  text-align: center;
}

.linkhub-card {
  border-radius: 24px;
  background: rgba(255, 255, 255, 0.96);
  box-shadow: var(--shadow-soft);
  border: 1px solid var(--border);
  padding: 20px 18px 16px;
}

.linkhub-avatar {
  width: 72px;
  height: 72px;
  border-radius: 999px;
  margin: 0 auto 10px;
  background: radial-gradient(circle at top, #2563eb, #f97316);
  display: flex;
  align-items: center;
  justify-content: center;
  color: #f9fafb;
  font-weight: 700;
  font-size: 28px;
}

.linkhub-name {
  font-size: 18px;
  margin-bottom: 4px;
}

.linkhub-tagline {
  font-size: 13px;
  color: var(--muted);
  margin-bottom: 10px;
}

.linkhub-links {
  display: flex;
  flex-direction: column;
  gap: 8px;
  margin-top: 12px;
  margin-bottom: 12px;
}

.linkhub-button {
  border-radius: 999px;
  padding: 10px 12px;
  border: 1px solid rgba(148, 163, 184, 0.7);
  font-size: 13px;
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.linkhub-button span {
  font-size: 10px;
  color: var(--muted);
}

.linkhub-footer {
  font-size: 11px;
  color: var(--muted);
}

/* RESPONSIVE */

@media (max-width: 800px) {
  .nav {
    flex-wrap: wrap;
  }
  .nav-links {
    display: none;
  }
  .hero,
  .pricing-layout,
  .contact-card,
  .demo-hero,
  .demo-columns {
    grid-template-columns: minmax(0, 1fr);
  }
  .grid-2,
  .grid-3 {
    grid-template-columns: minmax(0, 1fr);
  }
  .page {
    padding-inline: 14px;
  }
}
