:root {
  --bg: #090a0f;
  --surface: rgba(18, 20, 29, 0.88);
  --surface-strong: rgba(28, 31, 44, 0.96);
  --surface-soft: rgba(255, 255, 255, 0.04);
  --border: rgba(255, 255, 255, 0.1);
  --text: #f3f4f6;
  --muted: #b3b9c9;
  --accent-red: #c9002b;
  --accent-pink: #ff0059;
  --accent-blue: #3ac1ff;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  min-height: 100vh;
  font-family: "Space Grotesk", "Segoe UI", sans-serif;
  color: var(--text);
  background:
    radial-gradient(circle at top left, rgba(255, 0, 89, 0.22), transparent 32%),
    radial-gradient(circle at top right, rgba(58, 193, 255, 0.16), transparent 22%),
    linear-gradient(180deg, #08090d 0%, #0f1119 45%, #0a0b10 100%);
}

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

.storefront-shell {
  width: min(1320px, calc(100% - 32px));
  margin: 0 auto;
  padding: 20px 0 46px;
}

.site-header,
.site-footer {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
}

.site-header {
  position: sticky;
  top: 12px;
  z-index: 10;
  margin-bottom: 30px;
  padding: 15px 18px;
  border: 1px solid var(--border);
  border-radius: 18px;
  background: rgba(9, 11, 17, 0.82);
  backdrop-filter: blur(16px);
  box-shadow: 0 14px 40px rgba(0, 0, 0, 0.2);
}

.site-brand {
  display: flex;
  align-items: center;
  gap: 10px;
}

.site-brand-logo {
  width: auto;
  height: 52px;
  object-fit: contain;
  display: block;
  flex-shrink: 0;
}

.site-brand-tagline {
  color: var(--muted);
  font-size: 0.82rem;
  display: block;
}

.site-brand-mark {
  display: grid;
  place-items: center;
  width: 46px;
  height: 46px;
  border-radius: 14px;
  font-family: "Sora", sans-serif;
  font-weight: 800;
  background: linear-gradient(135deg, var(--accent-red), var(--accent-pink));
}

.site-nav,
.site-actions,
.footer-links,
.hero-actions,
.hero-pills {
  display: flex;
  align-items: center;
  gap: 12px;
  flex-wrap: wrap;
}

.site-nav a,
.ghost-link {
  color: var(--muted);
}

.site-nav a,
.ghost-link,
.site-btn,
.footer-links a {
  transition: color 0.18s ease, border-color 0.18s ease, background 0.18s ease, transform 0.18s ease, box-shadow 0.18s ease;
}

.site-nav a:hover,
.site-nav a:focus-visible,
.ghost-link:hover,
.ghost-link:focus-visible,
.footer-links a:hover,
.footer-links a:focus-visible {
  color: var(--text);
}

.site-btn,
.ghost-link {
  border-radius: 999px;
  padding: 12px 18px;
  font-weight: 700;
  border: 1px solid transparent;
}

.site-btn {
  color: white;
  background: linear-gradient(135deg, var(--accent-red), var(--accent-pink));
  box-shadow: 0 16px 30px rgba(201, 0, 43, 0.24);
}

.site-btn:hover,
.site-btn:focus-visible {
  transform: translateY(-1px);
  box-shadow: 0 20px 36px rgba(201, 0, 43, 0.3);
}

.site-btn:active {
  transform: translateY(0);
}

.site-btn.secondary,
.ghost-link {
  border: 1px solid var(--border);
  background: rgba(255, 255, 255, 0.03);
  box-shadow: none;
}

.site-btn.secondary:hover,
.site-btn.secondary:focus-visible,
.ghost-link:hover,
.ghost-link:focus-visible {
  border-color: rgba(255, 255, 255, 0.2);
  background: rgba(255, 255, 255, 0.06);
  transform: translateY(-1px);
}

.hero-section {
  display: grid;
  grid-template-columns: minmax(0, 1.1fr) minmax(280px, 0.9fr);
  gap: 32px;
  align-items: center;
  padding: 14px 0 0;
  margin-bottom: 8px;
}

.hero-copy {
  padding: 0;
  border: none;
  background: none;
  box-shadow: none;
  border-radius: 0;
}

.hero-copy h1,
.section-heading h2 {
  margin: 0;
  font-family: "Sora", sans-serif;
  line-height: 1.12;
}

.hero-copy h1 {
  max-width: 12ch;
  font-size: clamp(2.4rem, 5.2vw, 3.6rem);
  font-weight: 700;
  margin-bottom: 12px;
}

.hero-copy h1 + .hero-text {
  margin-top: 12px;
}

.hero-feature-list {
  display: grid;
  gap: 12px;
  margin-top: 16px;
  padding-top: 14px;
}

.hero-feature-item {
  display: flex;
  gap: 12px;
  align-items: flex-start;
  font-size: 0.92rem;
  color: var(--muted);
}

.hero-feature-item .icon {
  margin-top: 2px;
  font-weight: 900;
  color: var(--accent-pink);
  font-size: 1rem;
}

.hero-feature-item strong {
  display: block;
  color: var(--text);
  font-weight: 600;
  margin-bottom: 2px;
}

.hero-preview-stack {
  position: relative;
  height: 380px;
  display: grid;
  grid-template-rows: auto auto auto;
  gap: 12px;
  transform: perspective(1200px) rotateY(-8deg);
}

.hero-text,
.section-heading p,
.product-card p,
.feature-card p,
.site-footer p,
.hero-panel-card li {
  color: var(--muted);
}

.eyebrow,
.hero-panel-label,
.product-kicker {
  margin: 0 0 12px;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  font-size: 0.78rem;
  font-weight: 700;
  color: #ff8baa;
}

.hero-pills span {
  padding: 10px 14px;
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.04);
  color: var(--muted);
}

.preview-card {
  border: 1px solid rgba(255, 255, 255, 0.12);
  background: linear-gradient(135deg, rgba(32, 32, 42, 0.7), rgba(18, 18, 26, 0.85));
  backdrop-filter: blur(8px);
  border-radius: 16px;
  padding: 14px;
  box-shadow: 0 16px 40px rgba(0, 0, 0, 0.32), inset 0 1px 0 rgba(255, 255, 255, 0.08);
  transition: transform 0.24s ease, box-shadow 0.24s ease, border-color 0.24s ease;
  transform: translateZ(0);
}

.preview-card:hover {
  border-color: rgba(255, 0, 89, 0.3);
  box-shadow: 0 20px 48px rgba(255, 0, 89, 0.12), inset 0 1px 0 rgba(255, 255, 255, 0.12);
}

.preview-header {
  font-size: 0.7rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  color: #7dd3fc;
  margin-bottom: 10px;
  text-transform: uppercase;
  text-align: center;
}

.preview-item {
  display: flex;
  gap: 8px;
  align-items: flex-start;
  margin-bottom: 8px;
  padding-bottom: 8px;
  border-bottom: 1px solid rgba(255, 255, 255, 0.06);
}

.preview-item:last-child {
  border-bottom: none;
  margin-bottom: 0;
  padding-bottom: 0;
}

.preview-avatar {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 24px;
  height: 24px;
  border-radius: 50%;
  font-size: 0.75rem;
  font-weight: 700;
  background: linear-gradient(135deg, var(--accent-red), var(--accent-pink));
  flex-shrink: 0;
}

.preview-item p {
  margin: 0;
  font-size: 0.85rem;
  color: var(--text);
  line-height: 1.3;
}

.preview-meta {
  display: block;
  font-size: 0.75rem;
  color: var(--muted);
  margin-top: 2px;
}

.preview-overlay-demo {
  text-align: center;
  padding: 28px 16px;
  background: rgba(0, 0, 0, 0.2);
  border-radius: 8px;
  font-size: 0.9rem;
  color: var(--accent-pink);
  font-weight: 600;
}

.preview-bot {
  display: flex;
  align-items: center;
  justify-content: center;
  flex-direction: column;
  gap: 10px;
  padding: 24px 14px;
}

.preview-status {
  display: flex;
  gap: 6px;
  align-items: center;
  justify-content: center;
  font-size: 0.9rem;
  color: var(--ok);
  font-weight: 600;
}

.status-dot {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: var(--ok);
  animation: pulse-soft 2s ease-in-out infinite;
}

.status-dot.online {
  background: #22c55e;
}

@keyframes pulse-soft {
  0%, 100% { opacity: 1; }
  50% { opacity: 0.6; }
}

.content-section {
  padding: 32px 0;
  position: relative;
}

.content-section::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 1px;
  background: linear-gradient(90deg, transparent, rgba(255, 0, 89, 0.15), transparent);
  opacity: 0.6;
}

.section-heading {
  max-width: 720px;
  margin-bottom: 20px;
}

.section-heading.compact {
  max-width: 560px;
}

.section-heading h2 {
  margin-bottom: 10px;
}

.section-heading p:not(.eyebrow) {
  font-size: 0.95rem;
  margin-top: 8px;
}

.product-grid,
.feature-grid,
.coming-grid {
  display: grid;
  gap: 16px;
}

.product-grid {
  grid-template-columns: repeat(2, minmax(0, 1fr));
}

.feature-grid {
  grid-template-columns: repeat(3, minmax(0, 1fr));
}

.coming-grid {
  grid-template-columns: repeat(3, minmax(0, 1fr));
}

.section-features .feature-grid {
  grid-template-columns: repeat(3, minmax(0, 1fr));
}

.product-card,
.feature-card,
.coming-card {
  border-radius: 18px;
  padding: 20px;
  border: 1px solid var(--border);
  background: linear-gradient(180deg, rgba(24, 27, 38, 0.92), rgba(13, 14, 20, 0.98));
  box-shadow: 0 24px 60px rgba(0, 0, 0, 0.28);
  transition: border-color 0.18s ease, transform 0.18s ease, box-shadow 0.18s ease, opacity 0.18s ease;
}

.product-card:hover,
.feature-card:hover {
  transform: translateY(-3px);
  border-color: rgba(255, 0, 89, 0.25);
  box-shadow: 0 32px 72px rgba(255, 0, 89, 0.12);
}

.feature-card {
  display: grid;
  grid-template-rows: auto 1fr;
  text-align: center;
}

.feature-list {
  margin: 0;
  padding-left: 20px;
  text-align: left;
  color: var(--muted);
  display: grid;
  gap: 8px;
}

.feature-list li {
  line-height: 1.4;
}

.feature-icon {
  font-size: 2.2rem;
  line-height: 1;
  margin-bottom: 12px;
}

.product-card.featured {
  position: relative;
  overflow: hidden;
  border-color: rgba(255, 0, 89, 0.35);
}

.product-card.featured::after {
  content: "";
  position: absolute;
  inset: auto -40px -60px auto;
  width: 180px;
  height: 180px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(255, 0, 89, 0.22), transparent 70%);
}

.product-card h3,
.feature-card h3 {
  margin: 0 0 12px;
  font-size: 1.5rem;
}

.product-card .site-btn {
  display: inline-flex;
  margin-top: 18px;
}

.feature-band {
  position: relative;
}

.coming-card {
  position: relative;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  min-height: 140px;
  padding: 18px;
  border-style: dashed;
  border-color: rgba(255, 0, 89, 0.22);
  background: linear-gradient(135deg, rgba(25, 16, 26, 0.6), rgba(15, 12, 20, 0.75));
  box-shadow: inset 0 0 30px rgba(255, 0, 89, 0.08), 0 0 30px rgba(255, 0, 89, 0.06);
  opacity: 0.95;
  transition: all 0.24s ease;
}

.coming-card:hover {
  border-color: rgba(255, 0, 89, 0.35);
  box-shadow: inset 0 0 40px rgba(255, 0, 89, 0.12), 0 0 40px rgba(255, 0, 89, 0.1);
  transform: translateY(-2px);
}

.coming-card-cta {
  align-items: flex-start;
  justify-content: flex-start;
  gap: 12px;
  text-align: left;
  min-height: auto;
}

.coming-card-cta .site-btn {
  margin-top: 4px;
}

.coming-badge {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 4px 10px;
  border-radius: 999px;
  background: rgba(255, 0, 89, 0.15);
  border: 1px solid rgba(255, 0, 89, 0.3);
  font-size: 0.65rem;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: #ff7aa9;
  margin-bottom: 8px;
}

.coming-title {
  font-weight: 700;
  color: #d7dce7;
  font-size: 1.05rem;
}

.site-footer {
  margin-top: 22px;
  padding: 22px 0 12px;
  border-top: 1px solid rgba(255, 255, 255, 0.08);
}

.footer-links a {
  color: var(--muted);
}

@media (min-width: 1680px) {
  .storefront-shell {
    width: min(1440px, calc(100% - 80px));
  }

  .hero-section {
    gap: 48px;
  }
}

@media (max-width: 1200px) {
  .site-header {
    margin-bottom: 20px;
  }

  .hero-section {
    grid-template-columns: 1fr;
    gap: 24px;
    padding-bottom: 12px;
  }

  .hero-preview-stack {
    height: 320px;
  }

  .hero-copy h1 {
    max-width: 10ch;
    font-size: clamp(2rem, 5.2vw, 3.2rem);
  }

  .section-features .feature-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .section-plans .product-grid {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 980px) {
  .product-grid,
  .feature-grid,
  .coming-grid {
    grid-template-columns: 1fr;
  }

  .site-header,
  .site-footer {
    flex-direction: column;
    align-items: flex-start;
  }

  .hero-preview-stack {
    height: 400px;
    grid-template-rows: 1fr;
    gap: 14px;
    transform: perspective(none) rotateY(0);
  }

  .preview-card {
    display: none;
  }

  .preview-card:first-child {
    display: block;
  }
}

@media (max-width: 768px) {
  .storefront-shell {
    width: min(100% - 20px, 1320px);
  }

  .site-header {
    position: static;
    gap: 14px;
  }

  .site-nav,
  .site-actions,
  .hero-actions {
    width: 100%;
  }

  .site-actions .site-btn,
  .site-actions .ghost-link,
  .hero-actions .site-btn {
    flex: 1 1 180px;
    justify-content: center;
    text-align: center;
  }

  .site-btn,
  .ghost-link {
    min-height: 46px;
  }

  .hero-copy,
  .hero-panel-card,
  .product-card,
  .feature-card,
  .coming-card,
  .site-header {
    border-radius: 16px;
  }

  .content-section {
    padding: 24px 0;
  }

  .section-features .feature-grid {
    grid-template-columns: 1fr;
  }

  .hero-feature-list {
    flex-direction: column;
  }

  .hero-preview-stack {
    height: 280px;
  }
}

@media (max-width: 720px) {
  .storefront-shell {
    padding: 14px 0 40px;
  }

  .hero-copy {
    padding: 0;
  }

  .hero-copy h1 {
    font-size: clamp(1.8rem, 8vw, 2.6rem);
  }

  .hero-text {
    margin-top: 10px;
  }

  .feature-icon {
    font-size: 1.8rem;
  }

  .product-card,
  .feature-card,
  .coming-card {
    padding: 16px;
    border-radius: 14px;
  }

  .coming-card {
    min-height: 120px;
  }

  .section-heading h2 {
    font-size: 1.8rem;
  }
}

@media (max-width: 640px) {
  .coming-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
}

@media (max-width: 480px) {
  .storefront-shell {
    width: calc(100% - 16px);
    padding: 12px 0 32px;
  }

  .site-header {
    padding: 12px 13px;
  }

  .site-brand-mark {
    width: 40px;
    height: 40px;
  }

  .site-btn,
  .ghost-link {
    width: 100%;
    min-height: 46px;
  }

  .hero-section {
    gap: 16px;
  }

  .hero-preview-stack {
    height: 280px;
  }

  .content-section {
    padding: 18px 0;
  }

  .section-heading h2 {
    font-size: 1.5rem;
  }

  .product-card,
  .feature-card,
  .coming-card {
    border-radius: 12px;
  }

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