:root {
  --bg: #08101f;
  --bg-2: #0f1730;
  --surface: rgba(16, 24, 48, 0.72);
  --surface-2: rgba(255, 255, 255, 0.08);
  --surface-3: rgba(255, 255, 255, 0.12);
  --ink: #f7f8fc;
  --muted: #c4cce3;
  --muted-2: #d8def2;
  --line: rgba(255, 255, 255, 0.12);
  --accent: #8b5cf6;
  --accent-2: #6d28d9;
  --accent-3: #c4b5fd;
  --shadow: 0 30px 80px rgba(0, 0, 0, 0.35);
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  min-height: 100vh;
  color: var(--ink);
  font-family: Arial, Helvetica, sans-serif;
  background:
    radial-gradient(circle at 0% 0%, rgba(139, 92, 246, 0.26), transparent 30%),
    radial-gradient(circle at 100% 20%, rgba(196, 181, 253, 0.12), transparent 18%),
    linear-gradient(135deg, #060b16 0%, #0d1530 55%, #09101f 100%);
}

body::before {
  content: "";
  position: fixed;
  inset: 0;
  pointer-events: none;
  background: linear-gradient(180deg, rgba(255, 255, 255, 0.03), transparent 24%);
}

a {
  color: inherit;
  text-decoration: none;
}

.page {
  width: min(1160px, calc(100% - 32px));
  margin: 0 auto;
  padding: 24px 0 56px;
}

.topbar,
.hero-copy,
.hero-side,
.card {
  border: 1px solid var(--line);
  background: var(--surface);
  backdrop-filter: blur(14px);
  box-shadow: var(--shadow);
}

.topbar {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
  padding: 16px 20px;
  border-radius: 24px;
  margin-bottom: 24px;
}

.brand {
  font-size: 20px;
  font-weight: 800;
  letter-spacing: -0.04em;
}

.nav {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
}

.nav a {
  padding: 10px 14px;
  border-radius: 999px;
  color: var(--muted);
}

.nav a:hover {
  background: rgba(255, 255, 255, 0.08);
  color: var(--ink);
}

.hero {
  display: grid;
  grid-template-columns: minmax(0, 1.3fr) minmax(320px, 0.82fr);
  gap: 24px;
  margin-bottom: 22px;
}

.hero-copy,
.hero-side,
.card {
  border-radius: 30px;
}

.hero-copy {
  padding: 42px;
}

.hero-side {
  padding: 24px;
  background:
    linear-gradient(180deg, rgba(139, 92, 246, 0.2), rgba(255, 255, 255, 0.04)),
    var(--surface);
}

.eyebrow,
.tag {
  display: inline-flex;
  align-items: center;
  margin: 0 0 14px;
  font-size: 12px;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--accent-3);
}

.eyebrow-strong {
  color: #efe9ff;
}

h1,
h2,
h3,
p {
  margin-top: 0;
}

h1 {
  max-width: 11ch;
  margin-bottom: 18px;
  font-size: clamp(48px, 7.5vw, 88px);
  line-height: 0.92;
  letter-spacing: -0.05em;
}

h2 {
  margin-bottom: 14px;
  font-size: clamp(30px, 4vw, 46px);
  line-height: 1.02;
  letter-spacing: -0.04em;
}

h3 {
  margin-bottom: 10px;
  font-size: 24px;
  letter-spacing: -0.03em;
}

.lead,
.section-copy,
.card p,
.stat-card span,
.spotlight-card p,
.step p,
.owner-note p {
  color: var(--muted);
  line-height: 1.7;
}

.lead {
  max-width: 660px;
  font-size: 18px;
}

.hero-actions,
.cta-actions,
.hero-badges {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
}

.hero-actions {
  margin: 28px 0 22px;
}

.hero-badges span {
  padding: 10px 14px;
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.06);
  color: #eef2ff;
  font-size: 14px;
}

.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 48px;
  padding: 12px 18px;
  border-radius: 999px;
  font-weight: 700;
  transition: transform 180ms ease, opacity 180ms ease;
}

.button:hover {
  transform: translateY(-2px);
}

.button-primary {
  color: #ffffff;
  background: linear-gradient(135deg, var(--accent), var(--accent-2));
}

.button-secondary {
  color: #ffffff;
  background: linear-gradient(135deg, #a78bfa, #8b5cf6);
}

.spotlight-card,
.stat-card,
.step,
.owner-note {
  border: 1px solid var(--line);
  border-radius: 22px;
}

.spotlight-card {
  padding: 20px;
  margin-bottom: 16px;
  background: rgba(255, 255, 255, 0.06);
}

.spotlight-card h2 {
  font-size: 28px;
}

.stats-grid,
.cards-grid {
  display: grid;
  gap: 20px;
}

.stats-grid {
  grid-template-columns: repeat(2, minmax(0, 1fr));
}

.stat-card {
  padding: 18px;
  background: rgba(255, 255, 255, 0.05);
}

.stat-card strong {
  display: block;
  margin-bottom: 8px;
  color: #ffffff;
  font-size: 28px;
}

.section-head {
  margin: 8px 0 18px;
}

.section-copy {
  max-width: 720px;
}

.cards-grid {
  grid-template-columns: repeat(3, minmax(0, 1fr));
  margin-bottom: 20px;
}

.card {
  padding: 28px;
}

.service-card,
.project-card {
  position: relative;
  overflow: hidden;
}

.service-card::after,
.project-card::after {
  content: "";
  position: absolute;
  inset: auto -36px -36px auto;
  width: 140px;
  height: 140px;
  border-radius: 999px;
  background: radial-gradient(circle, rgba(139, 92, 246, 0.18), transparent 72%);
}

.tag {
  padding: 8px 12px;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.08);
}

.project-visual {
  display: flex;
  align-items: center;
  justify-content: center;
  height: 250px;
  margin-bottom: 18px;
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 20px;
  overflow: hidden;
}

.project-visual-salon {
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.08), transparent),
    linear-gradient(135deg, #24142f 0%, #7c3aed 100%);
}

.project-visual-shop {
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.08), transparent),
    linear-gradient(135deg, #111827 0%, #5b21b6 100%);
}

.project-visual-brand {
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.08), transparent),
    linear-gradient(135deg, #1f2937 0%, #8b5cf6 100%);
}

.mockup-browser {
  width: calc(100% - 24px);
  height: calc(100% - 24px);
  border-radius: 16px;
  overflow: hidden;
  background: rgba(12, 18, 34, 0.94);
  border: 1px solid rgba(255, 255, 255, 0.12);
  box-shadow: 0 16px 32px rgba(0, 0, 0, 0.22);
}

.mockup-browser-salon {
  background: linear-gradient(180deg, rgba(34, 19, 44, 0.98), rgba(15, 13, 24, 0.98));
}

.mockup-browser-shop {
  background: linear-gradient(180deg, rgba(250, 249, 255, 0.98), rgba(236, 232, 255, 0.98));
}

.mockup-browser-brand {
  background: linear-gradient(180deg, rgba(18, 24, 46, 0.98), rgba(24, 18, 50, 0.98));
}

.mockup-topbar {
  display: flex;
  gap: 6px;
  align-items: center;
  height: 24px;
  padding: 0 10px;
  background: rgba(255, 255, 255, 0.08);
}

.mockup-browser-shop .mockup-topbar {
  background: rgba(33, 24, 76, 0.08);
}

.mockup-topbar span {
  width: 7px;
  height: 7px;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.7);
}

.mockup-screen {
  display: grid;
  gap: 10px;
  padding: 12px;
}

.mockup-browser-shop .mockup-screen {
  gap: 8px;
}

.mockup-navbar {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 10px;
}

.mockup-logo,
.mockup-nav-link,
.mockup-button,
.mockup-price,
.mockup-mini-line,
.mockup-mini-pill {
  background: rgba(255, 255, 255, 0.16);
}

.mockup-logo-text {
  color: #ffffff;
  font-size: 9px;
  font-weight: 700;
  letter-spacing: 0.16em;
}

.mockup-capsule-text {
  color: rgba(255, 255, 255, 0.86);
  font-size: 7px;
  font-weight: 600;
  letter-spacing: 0.08em;
  line-height: 1;
  text-transform: uppercase;
  white-space: nowrap;
}

.mockup-capsule-text.strong {
  color: #ffffff;
}

.mockup-capsule-text.dark {
  color: #251b50;
}

.mockup-browser-shop .mockup-logo-text {
  color: #251b50;
}

.mockup-logo {
  width: 46px;
  height: 10px;
  border-radius: 999px;
}

.mockup-nav-links {
  display: flex;
  gap: 6px;
}

.mockup-nav-link {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: auto;
  min-width: 28px;
  height: 12px;
  padding: 0 4px;
  border-radius: 999px;
}

.mockup-browser-shop .mockup-nav-link,
.mockup-browser-shop .mockup-logo,
.mockup-browser-shop .mockup-button,
.mockup-browser-shop .mockup-price,
.mockup-browser-shop .mockup-mini-line,
.mockup-browser-shop .mockup-mini-pill {
  background: rgba(77, 55, 152, 0.18);
}

.mockup-nav-link.cart {
  min-width: 26px;
}

.mockup-hero,
.mockup-landing-hero,
.mockup-shop-banner {
  border-radius: 12px;
}

.mockup-hero {
  padding: 12px;
  background: linear-gradient(135deg, rgba(255, 255, 255, 0.14), rgba(255, 255, 255, 0.04));
}

.mockup-landing-hero {
  padding: 12px;
  background: linear-gradient(135deg, rgba(196, 181, 253, 0.28), rgba(255, 255, 255, 0.05));
}

.mockup-shop-banner {
  display: flex;
  align-items: end;
  height: 58px;
  padding: 10px;
  background: linear-gradient(135deg, rgba(255, 255, 255, 0.16), rgba(255, 255, 255, 0.04));
}

.mockup-browser-shop .mockup-shop-banner {
  background: linear-gradient(135deg, rgba(123, 92, 255, 0.22), rgba(79, 70, 229, 0.08));
}

.mockup-shop-title,
.mockup-kicker {
  color: rgba(255, 255, 255, 0.82);
  font-size: 8px;
  text-transform: uppercase;
  letter-spacing: 0.14em;
}

.mockup-browser-shop .mockup-shop-title {
  color: #251b50;
  font-weight: 700;
}

.mockup-title {
  margin: 8px 0 10px;
  color: #ffffff;
  font-size: 11px;
  font-weight: 700;
  line-height: 1.25;
  max-width: 120px;
}

.mockup-title.small {
  max-width: 110px;
}

.mockup-footer-row,
.mockup-promo-strip,
.mockup-logo-strip {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 10px;
}

.mockup-salon-layout,
.mockup-landing-layout {
  display: grid;
  gap: 10px;
}

.mockup-salon-layout {
  grid-template-columns: 1.1fr 0.9fr;
}

.mockup-salon-copy {
  padding: 12px;
  border-radius: 12px;
  background: linear-gradient(135deg, rgba(255, 255, 255, 0.14), rgba(255, 255, 255, 0.04));
}

.mockup-salon-photo {
  border-radius: 12px;
  background:
    radial-gradient(circle at 50% 35%, rgba(255, 226, 202, 0.5), transparent 24%),
    linear-gradient(135deg, rgba(248, 208, 181, 0.25), rgba(104, 43, 150, 0.18));
  min-height: 92px;
}

.mockup-service-list {
  display: grid;
  gap: 8px;
}

.mockup-testimonial {
  flex: 1;
  padding: 10px;
  border-radius: 12px;
  background: rgba(255, 255, 255, 0.08);
  display: grid;
  gap: 6px;
}

.mockup-section-title,
.mockup-cta-title {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  height: 9px;
  width: auto;
  min-width: 68px;
  padding: 0 6px;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.18);
}

.mockup-section-title.short {
  min-width: 54px;
}

.mockup-shop-filters {
  display: flex;
  gap: 6px;
}

.mockup-filter {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: auto;
  min-width: 28px;
  height: 12px;
  padding: 0 6px;
  border-radius: 999px;
  background: rgba(77, 55, 152, 0.16);
}

.mockup-filter.wide {
  min-width: 54px;
}

.mockup-landing-layout {
  grid-template-columns: 1.08fr 0.92fr;
}

.mockup-cta-panel {
  padding: 12px;
  border-radius: 12px;
  background: linear-gradient(135deg, rgba(255, 255, 255, 0.14), rgba(255, 255, 255, 0.04));
  display: grid;
  align-content: center;
  gap: 8px;
}

.mockup-promo-strip {
  padding: 10px;
  border-radius: 12px;
  background: rgba(91, 33, 182, 0.08);
}

.mockup-button.full {
  width: 100%;
}

.mockup-heading,
.mockup-line,
.mockup-card,
.mockup-product,
.mockup-pill {
  border-radius: 10px;
  background: rgba(255, 255, 255, 0.15);
}

.mockup-heading {
  width: 72%;
  height: 14px;
  margin-bottom: 10px;
}

.mockup-heading.short {
  width: 52%;
}

.mockup-line {
  width: 56%;
  height: 8px;
  margin-bottom: 8px;
}

.mockup-line-wide {
  width: 84%;
}

.mockup-grid {
  display: grid;
  gap: 10px;
}

.mockup-grid.two-cols {
  grid-template-columns: 1.1fr 0.9fr;
}

.mockup-grid.three-cols {
  grid-template-columns: repeat(3, 1fr);
}

.mockup-card {
  min-height: 44px;
}

.mockup-card.tall {
  min-height: 60px;
}

.mockup-product {
  min-height: 62px;
  padding: 8px;
  display: grid;
  gap: 6px;
  background: rgba(255, 255, 255, 0.84);
}

.mockup-browser-shop .mockup-product {
  border: 1px solid rgba(74, 58, 145, 0.1);
}

.mockup-product-image {
  height: 44px;
  border-radius: 8px;
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.14), transparent),
    linear-gradient(135deg, rgba(196, 181, 253, 0.55), rgba(255, 255, 255, 0.18));
}

.mockup-browser-shop .mockup-product-image {
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.18), transparent),
    linear-gradient(135deg, rgba(168, 85, 247, 0.4), rgba(79, 70, 229, 0.22));
}

.mockup-pill-row {
  display: flex;
  gap: 8px;
  margin-top: 12px;
}

.mockup-pill {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: auto;
  min-width: 62px;
  height: 18px;
  padding: 0 8px;
  border-radius: 999px;
}

.mockup-button-row,
.mockup-price-row {
  display: flex;
  gap: 8px;
  align-items: center;
}

.mockup-button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: auto;
  min-width: 56px;
  height: 18px;
  padding: 0 8px;
  border-radius: 999px;
}

.mockup-button.ghost {
  min-width: 44px;
  background: rgba(255, 255, 255, 0.09);
  border: 1px solid rgba(255, 255, 255, 0.12);
}

.stack-card {
  padding: 10px;
  display: grid;
  align-content: center;
  gap: 6px;
}

.mockup-avatar-row {
  display: flex;
  align-items: center;
  gap: 8px;
  margin-bottom: 4px;
}

.mockup-avatar {
  width: 24px;
  height: 24px;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.2);
}

.mockup-avatar-copy {
  display: grid;
  gap: 5px;
  flex: 1;
}

.mockup-mini-line {
  width: 78%;
  height: 7px;
  border-radius: 999px;
}

.mockup-mini-line.short {
  width: 52%;
}

.mockup-mini-pill {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: auto;
  min-width: 50px;
  height: 14px;
  padding: 0 6px;
  border-radius: 999px;
}

.mockup-price {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: auto;
  min-width: 26px;
  height: 8px;
  padding: 0 5px;
  border-radius: 999px;
}

.mockup-logo-strip {
  padding: 8px 0 0;
}

.mockup-logo-chip {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: auto;
  min-width: 34px;
  height: 10px;
  padding: 0 6px;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.14);
}

.mockup-logo-chip.wide {
  width: 52px;
}

.project-meta {
  margin-top: 12px;
  color: var(--muted-2);
  font-size: 14px;
}

.process-layout {
  display: grid;
  grid-template-columns: 1.05fr 0.95fr;
  gap: 20px;
  margin-bottom: 20px;
}

.process-card {
  background:
    linear-gradient(180deg, rgba(167, 139, 250, 0.28), rgba(109, 40, 217, 0.88)),
    #6d28d9;
  border-color: rgba(196, 181, 253, 0.32);
}

.process-card h2,
.process-card .step strong {
  color: #ffffff;
}

.process-card .step {
  padding: 16px 18px;
  background: rgba(255, 255, 255, 0.15);
  border-color: rgba(255, 255, 255, 0.24);
}

.process-card .step p {
  color: #f5f3ff;
}

.steps {
  display: grid;
  gap: 14px;
}

.check-list {
  margin: 0;
  padding-left: 20px;
  color: var(--muted);
  line-height: 1.9;
}

.owner-section,
.final-cta {
  margin-bottom: 20px;
}

.owner-card {
  display: grid;
  grid-template-columns: 1.1fr 0.9fr;
  gap: 20px;
  align-items: stretch;
}

.owner-note {
  display: grid;
  align-content: center;
  padding: 24px;
  background: linear-gradient(135deg, rgba(139, 92, 246, 0.2), rgba(255, 255, 255, 0.05));
}

.quote-mark {
  display: block;
  margin-bottom: 8px;
  color: var(--accent-3);
  font-size: 56px;
  line-height: 1;
}

.owner-note p {
  margin-bottom: 16px;
  color: #eef2ff;
  font-size: 20px;
}

.owner-note strong {
  color: #ffffff;
}

.cta-card {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  background:
    linear-gradient(135deg, rgba(139, 92, 246, 0.24), rgba(255, 255, 255, 0.06)),
    var(--surface);
}

.footer {
  display: flex;
  justify-content: space-between;
  gap: 16px;
  padding: 24px 4px 0;
  color: #c8d0e8;
  font-size: 14px;
}

@media (max-width: 960px) {
  .hero,
  .cards-grid,
  .process-layout,
  .owner-card {
    grid-template-columns: 1fr;
  }

  .topbar,
  .cta-card,
  .footer {
    flex-direction: column;
    align-items: flex-start;
  }
}

@media (max-width: 640px) {
  .page {
    width: min(100% - 20px, 1160px);
    padding-top: 16px;
  }

  .topbar,
  .hero-copy,
  .hero-side,
  .card {
    padding: 20px;
  }

  .stats-grid {
    grid-template-columns: 1fr;
  }

  h1 {
    font-size: 42px;
  }

  h2 {
    font-size: 32px;
  }
}
