/* ═══════════════════════════════════════════════════════════════
   AI_Studioxyz — Homepage CSS
   Design: Dark minimal, Linear/Vercel aesthetic
   ═══════════════════════════════════════════════════════════════ */

/* ─── RESET & BASE ────────────────────────────────────────────── */
*, *::before, *::after {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

:root {
  --bg:           #0a0a0a;
  --bg-card:      #111111;
  --bg-card-hover:#161616;
  --bg-elevated:  #141414;
  --border:       #1e1e1e;
  --border-light: #2a2a2a;

  --text:         #ffffff;
  --text-muted:   #8a8a8a;
  --text-subtle:  #555555;

  --accent:       #6366f1;
  --accent-light: #818cf8;
  --accent-glow:  rgba(99, 102, 241, 0.15);
  --accent-glow-strong: rgba(99, 102, 241, 0.3);

  --green:        #22c55e;
  --red-soft:     #f87171;

  --radius-sm:    8px;
  --radius:       12px;
  --radius-lg:    20px;
  --radius-full:  9999px;

  --shadow-card:  0 1px 3px rgba(0,0,0,0.4), 0 0 0 1px var(--border);
  --shadow-glow:  0 0 60px var(--accent-glow), 0 0 120px rgba(99,102,241,0.06);

  --transition:   0.2s ease;
  --transition-slow: 0.4s ease;

  --font: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;

  --container:    1160px;
  --nav-h:        68px;
}

html {
  scroll-behavior: smooth;
  font-size: 16px;
}

body {
  background-color: var(--bg);
  color: var(--text);
  font-family: var(--font);
  font-weight: 400;
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  overflow-x: hidden;
}

a {
  color: inherit;
  text-decoration: none;
}

ul {
  list-style: none;
}

img {
  display: block;
  max-width: 100%;
}

/* ─── UTILITY ─────────────────────────────────────────────────── */
.container {
  max-width: var(--container);
  margin: 0 auto;
  padding: 0 24px;
}

.section {
  padding: 100px 0;
}

.section--dark {
  background: var(--bg-elevated);
  border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
}

.section-header {
  text-align: center;
  max-width: 680px;
  margin: 0 auto 64px;
}

.section-label {
  display: inline-block;
  font-size: 12px;
  font-weight: 600;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--accent-light);
  margin-bottom: 16px;
}

.section-label--light {
  color: var(--accent-light);
}

.section-title {
  font-size: clamp(28px, 4vw, 42px);
  font-weight: 800;
  line-height: 1.15;
  letter-spacing: -0.02em;
  color: var(--text);
  margin-bottom: 16px;
}

.section-sub {
  font-size: 17px;
  color: var(--text-muted);
  line-height: 1.7;
}

/* ─── BUTTONS ─────────────────────────────────────────────────── */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 12px 24px;
  border-radius: var(--radius);
  font-family: var(--font);
  font-size: 15px;
  font-weight: 600;
  cursor: pointer;
  border: none;
  transition: all var(--transition);
  white-space: nowrap;
}

.btn-primary {
  background: var(--accent);
  color: #ffffff;
  box-shadow: 0 0 0 0 var(--accent-glow-strong);
}

.btn-primary:hover {
  background: var(--accent-light);
  transform: translateY(-1px);
  box-shadow: 0 8px 32px var(--accent-glow-strong);
}

.btn-ghost {
  background: transparent;
  color: var(--text-muted);
  border: 1px solid var(--border-light);
}

.btn-ghost:hover {
  color: var(--text);
  border-color: var(--text-subtle);
  background: rgba(255,255,255,0.04);
}

.btn--large {
  padding: 16px 32px;
  font-size: 16px;
  border-radius: var(--radius-lg);
}

.btn-arrow {
  transition: transform var(--transition);
}

.btn:hover .btn-arrow {
  transform: translateX(3px);
}

/* ─── NAV ─────────────────────────────────────────────────────── */
.nav-wrapper {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 100;
  height: var(--nav-h);
  background: rgba(10, 10, 10, 0.85);
  backdrop-filter: blur(16px);
  -webkit-backdrop-filter: blur(16px);
  border-bottom: 1px solid var(--border);
}

.nav {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 100%;
}

.nav-logo {
  font-size: 18px;
  font-weight: 800;
  letter-spacing: -0.03em;
  color: var(--text);
  background: linear-gradient(135deg, #ffffff 0%, var(--accent-light) 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.nav-links {
  display: flex;
  align-items: center;
  gap: 8px;
}

.nav-links a {
  font-size: 14px;
  font-weight: 500;
  color: var(--text-muted);
  padding: 8px 12px;
  border-radius: var(--radius-sm);
  transition: color var(--transition), background var(--transition);
}

.nav-links a:hover {
  color: var(--text);
  background: rgba(255,255,255,0.05);
}

.nav-cta {
  background: var(--accent) !important;
  color: #ffffff !important;
  padding: 8px 18px !important;
}

.nav-cta:hover {
  background: var(--accent-light) !important;
}

/* ─── HERO ────────────────────────────────────────────────────── */
.hero {
  position: relative;
  min-height: 100vh;
  display: flex;
  align-items: center;
  padding-top: var(--nav-h);
  overflow: hidden;
}

.hero-bg-glow {
  position: absolute;
  top: -100px;
  left: 50%;
  transform: translateX(-50%);
  width: 900px;
  height: 600px;
  background: radial-gradient(ellipse at center, rgba(99,102,241,0.12) 0%, transparent 70%);
  pointer-events: none;
  animation: glow-pulse 6s ease-in-out infinite alternate;
}

@keyframes glow-pulse {
  from { opacity: 0.6; transform: translateX(-50%) scale(1); }
  to   { opacity: 1;   transform: translateX(-50%) scale(1.08); }
}

.hero-inner {
  position: relative;
  z-index: 1;
  padding-top: 80px;
  padding-bottom: 100px;
  max-width: 860px;
}

.hero-badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-size: 12px;
  font-weight: 600;
  color: var(--accent-light);
  letter-spacing: 0.05em;
  border: 1px solid rgba(99,102,241,0.3);
  background: rgba(99,102,241,0.07);
  padding: 6px 14px;
  border-radius: var(--radius-full);
  margin-bottom: 32px;
  animation: fade-up 0.6s ease both;
}

.badge-dot {
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: var(--green);
  box-shadow: 0 0 6px var(--green);
  animation: dot-pulse 2s ease-in-out infinite;
}

@keyframes dot-pulse {
  0%, 100% { opacity: 1; }
  50%       { opacity: 0.4; }
}

.hero-headline {
  font-size: clamp(44px, 7vw, 88px);
  font-weight: 900;
  line-height: 1.05;
  letter-spacing: -0.035em;
  color: var(--text);
  margin-bottom: 24px;
  animation: fade-up 0.6s 0.1s ease both;
}

.hero-sub {
  font-size: clamp(17px, 2.2vw, 20px);
  color: var(--text-muted);
  line-height: 1.7;
  max-width: 600px;
  margin-bottom: 40px;
  animation: fade-up 0.6s 0.2s ease both;
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-bottom: 48px;
  animation: fade-up 0.6s 0.3s ease both;
}

.hero-en-tagline {
  font-size: 14px;
  color: var(--text-subtle);
  font-style: italic;
  animation: fade-up 0.6s 0.4s ease both;
}

@keyframes fade-up {
  from { opacity: 0; transform: translateY(20px); }
  to   { opacity: 1; transform: translateY(0); }
}

/* ─── CARDS GRID (Services) ───────────────────────────────────── */
.cards-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
  gap: 16px;
}

.card {
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  padding: 32px 28px;
  transition: all var(--transition-slow);
  position: relative;
  overflow: hidden;
}

.card::before {
  content: '';
  position: absolute;
  top: 0; left: 0; right: 0;
  height: 1px;
  background: linear-gradient(90deg, transparent, var(--accent-light), transparent);
  opacity: 0;
  transition: opacity var(--transition);
}

.card:hover {
  background: var(--bg-card-hover);
  border-color: var(--border-light);
  transform: translateY(-4px);
  box-shadow: 0 20px 40px rgba(0,0,0,0.4), 0 0 40px rgba(99,102,241,0.06);
}

.card:hover::before {
  opacity: 1;
}

.card-icon {
  font-size: 32px;
  margin-bottom: 20px;
  display: block;
}

.card-title {
  font-size: 18px;
  font-weight: 700;
  letter-spacing: -0.01em;
  color: var(--text);
  margin-bottom: 12px;
}

.card-text {
  font-size: 15px;
  color: var(--text-muted);
  line-height: 1.65;
}

/* ─── CARD ANIMATION ──────────────────────────────────────────── */
.card--animate {
  opacity: 0;
  transform: translateY(24px);
  animation: fade-up 0.5s ease forwards;
}

.card--animate:nth-child(1) { animation-delay: 0.0s; }
.card--animate:nth-child(2) { animation-delay: 0.1s; }
.card--animate:nth-child(3) { animation-delay: 0.2s; }
.card--animate:nth-child(4) { animation-delay: 0.3s; }

/* ─── USP BANNER ──────────────────────────────────────────────── */
.usp-banner {
  position: relative;
  background: #0d0d14;
  border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
  padding: 100px 0;
  overflow: hidden;
}

.usp-bg-grid {
  position: absolute;
  inset: 0;
  background-image:
    linear-gradient(rgba(99,102,241,0.04) 1px, transparent 1px),
    linear-gradient(90deg, rgba(99,102,241,0.04) 1px, transparent 1px);
  background-size: 60px 60px;
  pointer-events: none;
}

.usp-inner {
  position: relative;
  z-index: 1;
  text-align: center;
}

.usp-headline {
  font-size: clamp(32px, 5vw, 60px);
  font-weight: 900;
  line-height: 1.1;
  letter-spacing: -0.03em;
  color: var(--text);
  margin-bottom: 20px;
}

.usp-highlight {
  background: linear-gradient(135deg, var(--accent) 0%, var(--accent-light) 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.usp-sub {
  font-size: 18px;
  color: var(--text-muted);
  max-width: 640px;
  margin: 0 auto 56px;
  line-height: 1.7;
}

.usp-agents {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
  gap: 16px;
  margin-bottom: 56px;
  text-align: left;
}

.agent-card {
  display: flex;
  align-items: flex-start;
  gap: 16px;
  background: rgba(99,102,241,0.06);
  border: 1px solid rgba(99,102,241,0.2);
  border-radius: var(--radius);
  padding: 20px;
  transition: all var(--transition);
}

.agent-card:hover {
  background: rgba(99,102,241,0.1);
  border-color: rgba(99,102,241,0.4);
  transform: translateY(-2px);
}

.agent-icon {
  font-size: 24px;
  flex-shrink: 0;
  margin-top: 2px;
}

.agent-info {
  display: flex;
  flex-direction: column;
  gap: 4px;
}

.agent-info strong {
  font-size: 15px;
  font-weight: 700;
  color: var(--text);
}

.agent-info span {
  font-size: 13px;
  color: var(--text-muted);
  line-height: 1.5;
}

.usp-quote {
  margin-top: 8px;
}

.usp-quote blockquote {
  display: inline-block;
  font-size: clamp(18px, 2.5vw, 26px);
  font-weight: 700;
  color: var(--accent-light);
  letter-spacing: -0.01em;
  font-style: italic;
  border-left: 3px solid var(--accent);
  padding-left: 20px;
  text-align: left;
}

/* ─── USE CASES ───────────────────────────────────────────────── */
.usecases-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 16px;
}

.usecase-card {
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  overflow: hidden;
  transition: all var(--transition-slow);
}

.usecase-card:hover {
  border-color: var(--border-light);
  transform: translateY(-3px);
  box-shadow: 0 16px 40px rgba(0,0,0,0.3);
}

.usecase-before-after {
  padding: 28px;
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.usecase-before,
.usecase-after {
  display: flex;
  flex-direction: column;
  gap: 8px;
}

.usecase-before p {
  font-size: 14px;
  color: var(--text-muted);
  line-height: 1.6;
}

.usecase-after p {
  font-size: 14px;
  color: var(--text);
  line-height: 1.6;
}

.usecase-arrow {
  font-size: 20px;
  color: var(--accent);
  font-weight: 700;
  align-self: center;
}

.label-tag {
  display: inline-block;
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  padding: 3px 10px;
  border-radius: var(--radius-full);
  width: fit-content;
}

.label-before {
  background: rgba(248, 113, 113, 0.12);
  color: var(--red-soft);
  border: 1px solid rgba(248,113,113,0.2);
}

.label-after {
  background: rgba(34, 197, 94, 0.12);
  color: var(--green);
  border: 1px solid rgba(34,197,94,0.2);
}

.usecase-footer {
  border-top: 1px solid var(--border);
  padding: 16px 28px;
  background: var(--bg-elevated);
}

.usecase-tag {
  font-size: 13px;
  font-weight: 600;
  color: var(--text-muted);
}

/* ─── ABOUT ───────────────────────────────────────────────────── */
.about-inner {
  max-width: 900px;
  margin: 0 auto;
}

.about-card {
  display: grid;
  grid-template-columns: 200px 1fr;
  gap: 48px;
  align-items: start;
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  padding: 48px;
  margin-top: 12px;
}

.about-photo {
  width: 160px;
  height: 160px;
  border-radius: 50%;
  background: linear-gradient(135deg, #1e1e2e 0%, #2a2a3e 100%);
  border: 2px solid var(--border-light);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

.about-photo-initials {
  font-size: 40px;
  font-weight: 800;
  color: var(--accent-light);
  letter-spacing: -0.03em;
}

.about-name {
  font-size: 26px;
  font-weight: 800;
  letter-spacing: -0.02em;
  color: var(--text);
  margin-bottom: 6px;
}

.about-title {
  font-size: 14px;
  color: var(--accent-light);
  font-weight: 600;
  margin-bottom: 20px;
}

.about-bio {
  font-size: 15px;
  color: var(--text-muted);
  line-height: 1.75;
  margin-bottom: 16px;
}

.about-cta {
  margin-top: 8px;
}

/* ─── CTA SECTION ─────────────────────────────────────────────── */
.cta-section {
  position: relative;
  padding: 120px 0;
  text-align: center;
  overflow: hidden;
}

.cta-glow {
  position: absolute;
  bottom: -80px;
  left: 50%;
  transform: translateX(-50%);
  width: 700px;
  height: 400px;
  background: radial-gradient(ellipse at center, rgba(99,102,241,0.18) 0%, transparent 70%);
  pointer-events: none;
}

.cta-inner {
  position: relative;
  z-index: 1;
}

.cta-title {
  font-size: clamp(30px, 4.5vw, 52px);
  font-weight: 900;
  letter-spacing: -0.03em;
  color: var(--text);
  margin-bottom: 20px;
  line-height: 1.1;
}

.cta-sub {
  font-size: 18px;
  color: var(--text-muted);
  max-width: 540px;
  margin: 0 auto 48px;
  line-height: 1.7;
}

/* ─── FOOTER ──────────────────────────────────────────────────── */
.footer {
  background: var(--bg-elevated);
  border-top: 1px solid var(--border);
  padding: 40px 0;
}

.footer-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 24px;
}

.footer-logo {
  font-size: 16px;
  font-weight: 800;
  letter-spacing: -0.03em;
  background: linear-gradient(135deg, #ffffff 0%, var(--accent-light) 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  display: block;
  margin-bottom: 6px;
}

.footer-tagline {
  font-size: 13px;
  color: var(--text-subtle);
}

.footer-right {
  text-align: right;
}

.footer-copy {
  font-size: 14px;
  color: var(--text-muted);
  margin-bottom: 6px;
}

.footer-copy a {
  color: var(--accent-light);
  transition: color var(--transition);
}

.footer-copy a:hover {
  color: var(--text);
}

.footer-sep {
  margin: 0 8px;
  color: var(--text-subtle);
}

.footer-built {
  font-size: 12px;
  color: var(--text-subtle);
}

.footer-heart {
  color: var(--accent);
}

/* ─── LANGUAGE TOGGLE ────────────────────────────────────────── */
.lang-toggle {
  display: inline-flex;
  align-items: center;
  gap: 0;
  padding: 5px 14px;
  border-radius: var(--radius-full);
  font-family: var(--font);
  font-size: 12px;
  font-weight: 600;
  letter-spacing: 0.06em;
  color: var(--accent-light);
  background: rgba(99, 102, 241, 0.08);
  border: 1px solid rgba(99, 102, 241, 0.3);
  cursor: pointer;
  transition: background var(--transition), border-color var(--transition), color var(--transition);
  white-space: nowrap;
  line-height: 1;
  user-select: none;
}

.lang-toggle:hover {
  background: rgba(99, 102, 241, 0.18);
  border-color: rgba(99, 102, 241, 0.55);
  color: var(--text);
}

.lang-toggle strong {
  color: var(--text);
}

/* ─── RESPONSIVE ──────────────────────────────────────────────── */
@media (max-width: 900px) {
  .about-card {
    grid-template-columns: 1fr;
    padding: 36px 28px;
    gap: 28px;
  }

  .about-photo {
    width: 120px;
    height: 120px;
  }

  .about-photo-initials {
    font-size: 30px;
  }
}

@media (max-width: 700px) {
  .section {
    padding: 72px 0;
  }

  .nav-links a:not(.nav-cta) {
    display: none;
  }

  .nav-links .lang-toggle {
    display: inline-flex;
  }

  .hero-inner {
    padding-top: 60px;
    padding-bottom: 72px;
  }

  .hero-actions {
    flex-direction: column;
    align-items: flex-start;
  }

  .hero-actions .btn {
    width: 100%;
    justify-content: center;
  }

  .usp-quote blockquote {
    text-align: left;
  }

  .footer-inner {
    flex-direction: column;
    text-align: center;
  }

  .footer-right {
    text-align: center;
  }

  .usecase-before-after {
    padding: 20px;
  }

  .usecase-footer {
    padding: 14px 20px;
  }
}

@media (max-width: 480px) {
  :root {
    --container: 100%;
  }

  .container {
    padding: 0 18px;
  }

  .cards-grid {
    grid-template-columns: 1fr;
  }

  .usecases-grid {
    grid-template-columns: 1fr;
  }

  .usp-agents {
    grid-template-columns: 1fr;
  }

  .about-card {
    padding: 24px 20px;
  }

  .cta-section {
    padding: 80px 0;
  }
}

/* ─── SCROLLBAR ───────────────────────────────────────────────── */
::-webkit-scrollbar {
  width: 6px;
}

::-webkit-scrollbar-track {
  background: var(--bg);
}

::-webkit-scrollbar-thumb {
  background: var(--border-light);
  border-radius: 3px;
}

::-webkit-scrollbar-thumb:hover {
  background: var(--text-subtle);
}

/* ─── SELECTION ───────────────────────────────────────────────── */
::selection {
  background: rgba(99,102,241,0.3);
  color: var(--text);
}

/* ─── FOCUS RING ──────────────────────────────────────────────── */
:focus-visible {
  outline: 2px solid var(--accent);
  outline-offset: 3px;
  border-radius: var(--radius-sm);
}

/* ─── PRICING SECTION ─────────────────────────────────────────── */
.pricing-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.5rem;
  margin-top: 3rem;
  align-items: start;
}

@media (max-width: 900px) {
  .pricing-grid { grid-template-columns: 1fr; max-width: 480px; margin-inline: auto; }
}

.pricing-card {
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  padding: 2rem;
  display: flex;
  flex-direction: column;
  gap: 1rem;
  transition: border-color var(--transition), transform var(--transition);
  position: relative;
}

.pricing-card:hover {
  border-color: var(--border-light);
  transform: translateY(-3px);
}

.pricing-card--featured {
  border-color: var(--accent);
  background: linear-gradient(160deg, #111118 0%, var(--bg-card) 100%);
  box-shadow: 0 0 40px var(--accent-glow);
}

.pricing-badge {
  position: absolute;
  top: -13px;
  left: 50%;
  transform: translateX(-50%);
  background: var(--accent);
  color: #fff;
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  padding: 0.2rem 0.9rem;
  border-radius: var(--radius-full);
}

.pricing-tier {
  font-size: 0.8rem;
  font-weight: 600;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--text-muted);
}

.pricing-price {
  font-size: 2.6rem;
  font-weight: 800;
  color: var(--text);
  line-height: 1;
}

.pricing-desc {
  font-size: 0.875rem;
  color: var(--text-muted);
  line-height: 1.5;
}

.pricing-features {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 0.55rem;
  flex: 1;
}

.pricing-features li {
  font-size: 0.875rem;
  color: var(--text-muted);
  line-height: 1.4;
}

.pricing-features li[data-de^="✓"],
.pricing-features li[data-en^="✓"] {
  color: var(--text);
}

.pricing-cta {
  margin-top: 0.5rem;
  width: 100%;
  justify-content: center;
  text-align: center;
}

.pricing-note {
  text-align: center;
  font-size: 0.8rem;
  color: var(--text-subtle);
  margin-top: 2rem;
}

/* ═══════════════════════════════════════════════════════════════
   PRODUCT CATALOG
   ═══════════════════════════════════════════════════════════════ */

.product-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 1.5rem;
  margin-top: 3rem;
}

@media (max-width: 768px) {
  .product-grid { grid-template-columns: 1fr; }
}

.product-card {
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: 16px;
  padding: 2rem;
  position: relative;
  transition: border-color 0.2s, transform 0.2s;
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
}

.product-card:hover {
  border-color: var(--accent);
  transform: translateY(-3px);
}

.product-card--live {
  border-color: rgba(99,102,241,0.4);
  background: linear-gradient(135deg, rgba(99,102,241,0.05) 0%, var(--bg-card) 60%);
}

.product-card--soon {
  opacity: 0.82;
}

.product-card--custom {
  border-style: dashed;
}

/* Status badge */
.product-status {
  display: inline-flex;
  align-items: center;
  gap: 0.4rem;
  font-size: 0.72rem;
  font-weight: 600;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  padding: 0.25rem 0.65rem;
  border-radius: 999px;
  width: fit-content;
}

.product-status--live {
  background: rgba(34,197,94,0.12);
  color: #22c55e;
  border: 1px solid rgba(34,197,94,0.25);
}

.status-dot {
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: #22c55e;
  animation: pulse-dot 2s infinite;
}

@keyframes pulse-dot {
  0%, 100% { opacity: 1; }
  50% { opacity: 0.4; }
}

.product-status--soon {
  background: rgba(251,191,36,0.1);
  color: #fbbf24;
  border: 1px solid rgba(251,191,36,0.2);
}

.product-status--custom {
  background: rgba(148,163,184,0.1);
  color: var(--text-muted);
  border: 1px solid var(--border);
}

/* Card content */
.product-icon {
  font-size: 2rem;
  line-height: 1;
  margin-top: 0.25rem;
}

.product-name {
  font-size: 1.25rem;
  font-weight: 700;
  color: var(--text);
  margin: 0;
}

.product-agent {
  font-size: 0.78rem;
  color: var(--accent);
  font-weight: 500;
  margin: 0;
  letter-spacing: 0.03em;
}

.product-desc {
  font-size: 0.9rem;
  color: var(--text-muted);
  line-height: 1.6;
  flex: 1;
}

.product-price-hint {
  font-size: 0.85rem;
  font-weight: 600;
  color: var(--text);
  padding: 0.4rem 0;
  border-top: 1px solid var(--border);
  margin-top: auto;
}

.product-cta {
  margin-top: 0.25rem;
  justify-content: center;
  text-align: center;
}
