/* ─────────────────────────────────────────────────────────────
   DealerCopy — Marketing site stylesheet
   Charcoal + teal palette matching the Chrome extension.
   ───────────────────────────────────────────────────────────── */

/* ── Reset & base ─────────────────────────────────────────── */
*, *::before, *::after { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
  margin: 0;
  font-family: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', Helvetica, sans-serif;
  font-size: 16px;
  line-height: 1.6;
  color: #18181b;
  background: #fafafa;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}
img, svg { display: block; max-width: 100%; }
a { color: #0d9488; text-decoration: none; transition: color .15s ease; }
a:hover { color: #0f766e; }
ul, ol { margin: 0; padding: 0; }
h1, h2, h3, h4, p { margin: 0; }
button { font-family: inherit; }

/* ── Container ────────────────────────────────────────────── */
.container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 24px;
}

/* ── Buttons ──────────────────────────────────────────────── */
.btn {
  display: inline-block;
  padding: 12px 24px;
  border-radius: 10px;
  font-weight: 600;
  font-size: 15px;
  line-height: 1.2;
  border: 1px solid transparent;
  cursor: pointer;
  transition: all .15s ease;
  text-align: center;
}
.btn-primary {
  background: #0d9488;
  color: #fff;
  box-shadow: 0 2px 4px rgba(13, 148, 136, .15);
}
.btn-primary:hover {
  background: #0f766e;
  color: #fff;
  box-shadow: 0 4px 12px rgba(13, 148, 136, .25);
  transform: translateY(-1px);
}
.btn-ghost {
  background: transparent;
  color: #18181b;
  border-color: #d4d4d8;
}
.btn-ghost:hover {
  border-color: #18181b;
  color: #18181b;
}
.btn-sm { padding: 9px 18px; font-size: 14px; }
.btn-lg { padding: 16px 32px; font-size: 17px; border-radius: 12px; }
.btn-block { display: block; width: 100%; }

/* ── Header ───────────────────────────────────────────────── */
.site-header {
  background: rgba(250, 250, 250, .85);
  backdrop-filter: saturate(180%) blur(10px);
  -webkit-backdrop-filter: saturate(180%) blur(10px);
  border-bottom: 1px solid #e4e4e7;
  position: sticky;
  top: 0;
  z-index: 100;
}
.header-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding-top: 16px;
  padding-bottom: 16px;
}
.logo {
  display: flex;
  flex-direction: column;
  text-decoration: none;
  line-height: 1;
}
.logo-wordmark {
  font-size: 22px;
  font-weight: 800;
  letter-spacing: -0.8px;
  color: #18181b;
}
.logo-wordmark .accent { color: #0d9488; }
.logo-tag {
  font-size: 9px;
  font-weight: 700;
  letter-spacing: 2.5px;
  color: #71717a;
  margin-top: 4px;
}
.primary-nav {
  display: flex;
  align-items: center;
  gap: 28px;
}
.primary-nav a:not(.btn) {
  color: #52525b;
  font-weight: 500;
  font-size: 15px;
}
.primary-nav a:not(.btn):hover { color: #18181b; }

/* ── Hero ─────────────────────────────────────────────────── */
.hero {
  padding: 96px 0 88px;
  text-align: center;
  background:
    radial-gradient(ellipse at top, rgba(13, 148, 136, .06), transparent 60%),
    #fafafa;
}
.hero-eyebrow {
  font-size: 13px;
  font-weight: 700;
  letter-spacing: 2.5px;
  color: #0d9488;
  text-transform: uppercase;
  margin-bottom: 24px;
}
.hero-headline {
  font-size: clamp(40px, 6vw, 72px);
  font-weight: 800;
  letter-spacing: -2.5px;
  line-height: 1.05;
  color: #18181b;
  max-width: 920px;
  margin: 0 auto 28px;
}
.hero-headline .accent {
  color: #0d9488;
  display: block;
}
.hero-sub {
  font-size: clamp(17px, 1.6vw, 20px);
  color: #52525b;
  max-width: 660px;
  margin: 0 auto 40px;
  line-height: 1.55;
}
.hero-cta {
  display: flex;
  gap: 14px;
  justify-content: center;
  flex-wrap: wrap;
  margin-bottom: 24px;
}
.hero-trust {
  font-size: 14px;
  color: #71717a;
}

/* ── Section base ─────────────────────────────────────────── */
section { padding: 96px 0; }
.section-eyebrow {
  font-size: 13px;
  font-weight: 700;
  letter-spacing: 2.5px;
  color: #0d9488;
  text-transform: uppercase;
  margin-bottom: 16px;
  text-align: center;
}
.section-headline {
  font-size: clamp(30px, 4vw, 46px);
  font-weight: 800;
  letter-spacing: -1.5px;
  line-height: 1.1;
  color: #18181b;
  text-align: center;
  margin: 0 auto 64px;
  max-width: 880px;
}

/* ── Problem ──────────────────────────────────────────────── */
.problem {
  background: #18181b;
  color: #fafafa;
}
.problem-eyebrow { color: #5eead4; }
.problem .section-headline { color: #fafafa; }
.problem-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 24px;
}
.problem-card {
  padding: 32px;
  background: #27272a;
  border-radius: 14px;
  border: 1px solid #3f3f46;
}
.problem-num {
  font-size: 13px;
  font-weight: 800;
  color: #0d9488;
  margin-bottom: 16px;
  letter-spacing: 2px;
}
.problem-card h3 {
  font-size: 21px;
  font-weight: 700;
  margin-bottom: 10px;
  color: #fafafa;
  letter-spacing: -0.3px;
}
.problem-card p {
  color: #a1a1aa;
  line-height: 1.6;
  font-size: 15.5px;
}

/* ── Features ─────────────────────────────────────────────── */
.features { background: #fafafa; }
.features-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
  gap: 24px;
}
.feature {
  padding: 32px;
  background: #fff;
  border-radius: 14px;
  border: 1px solid #e4e4e7;
  transition: all .2s ease;
}
.feature:hover {
  border-color: #0d9488;
  transform: translateY(-3px);
  box-shadow: 0 12px 28px rgba(13, 148, 136, .08);
}
.feature-icon {
  font-size: 36px;
  margin-bottom: 16px;
  line-height: 1;
}
.feature h3 {
  font-size: 20px;
  font-weight: 700;
  margin-bottom: 8px;
  color: #18181b;
  letter-spacing: -0.3px;
}
.feature p {
  color: #52525b;
  line-height: 1.6;
  font-size: 15px;
}

/* ── How it works ─────────────────────────────────────────── */
.how { background: #fff; }
.how-steps {
  list-style: none;
  display: grid;
  gap: 20px;
  max-width: 920px;
  margin: 0 auto;
}
.how-steps li {
  display: grid;
  grid-template-columns: 72px 1fr;
  gap: 24px;
  align-items: start;
  padding: 32px;
  background: #fafafa;
  border-radius: 14px;
  border: 1px solid #e4e4e7;
}
.step-num {
  width: 56px;
  height: 56px;
  border-radius: 50%;
  background: #0d9488;
  color: #fff;
  font-size: 24px;
  font-weight: 800;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 4px 12px rgba(13, 148, 136, .25);
}
.step-body h3 {
  font-size: 22px;
  font-weight: 700;
  margin-bottom: 8px;
  color: #18181b;
  letter-spacing: -0.4px;
}
.step-body p {
  color: #52525b;
  line-height: 1.65;
}

/* ── Sample output ────────────────────────────────────────── */
.sample { background: #fafafa; }
.sample-card {
  background: #fff;
  border-radius: 18px;
  border: 1px solid #e4e4e7;
  padding: 40px;
  max-width: 820px;
  margin: 0 auto;
  box-shadow: 0 16px 40px rgba(0, 0, 0, .04);
}
.sample-meta {
  display: flex;
  gap: 8px;
  margin-bottom: 28px;
  flex-wrap: wrap;
}
.sample-tag {
  background: #f4f4f5;
  color: #52525b;
  padding: 5px 14px;
  border-radius: 999px;
  font-size: 13px;
  font-weight: 600;
}
.sample-label {
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 1.8px;
  color: #0d9488;
  text-transform: uppercase;
  margin: 28px 0 10px;
}
.sample-label:first-of-type { margin-top: 0; }
.sample-text {
  color: #18181b;
  margin-bottom: 8px;
  line-height: 1.55;
  font-size: 15.5px;
}
.sample-pills {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin-top: 4px;
}
.pill {
  background: rgba(13, 148, 136, .08);
  color: #0d9488;
  padding: 6px 14px;
  border-radius: 999px;
  font-size: 13px;
  font-weight: 600;
  border: 1px solid rgba(13, 148, 136, .2);
}

/* ── Pricing ──────────────────────────────────────────────── */
.pricing { background: #fff; }
.pricing-toggle {
  display: flex;
  justify-content: center;
  gap: 6px;
  margin-bottom: 48px;
  background: #f4f4f5;
  padding: 4px;
  border-radius: 999px;
  width: max-content;
  margin-left: auto;
  margin-right: auto;
}
.toggle-option {
  background: transparent;
  border: none;
  padding: 10px 22px;
  border-radius: 999px;
  font-weight: 600;
  font-size: 14px;
  color: #52525b;
  cursor: pointer;
  transition: all .15s ease;
}
.toggle-option.active {
  background: #18181b;
  color: #fff;
}
.toggle-option .badge {
  background: #0d9488;
  color: #fff;
  font-size: 11px;
  padding: 2px 8px;
  border-radius: 4px;
  margin-left: 6px;
  font-weight: 700;
  letter-spacing: 0.3px;
}
.pricing-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
  gap: 24px;
  max-width: 880px;
  margin: 0 auto 32px;
}
.price-card {
  background: #fff;
  border: 1px solid #e4e4e7;
  border-radius: 18px;
  padding: 40px 32px;
  display: flex;
  flex-direction: column;
}
.price-card.featured {
  border-color: #0d9488;
  border-width: 2px;
  box-shadow: 0 20px 50px rgba(13, 148, 136, .08);
  transform: translateY(-4px);
}
.price-tier {
  font-size: 15px;
  font-weight: 700;
  color: #52525b;
  margin-bottom: 18px;
  display: flex;
  align-items: center;
  gap: 8px;
  flex-wrap: wrap;
}
.badge-discount {
  background: rgba(13, 148, 136, .1);
  color: #0d9488;
  font-size: 11px;
  padding: 3px 8px;
  border-radius: 4px;
  font-weight: 700;
  letter-spacing: 0.5px;
}
.price { margin-bottom: 32px; }
.price-amount {
  font-size: 48px;
  font-weight: 800;
  letter-spacing: -1.8px;
  color: #18181b;
  line-height: 1;
}
.price-unit {
  display: block;
  font-size: 14px;
  color: #71717a;
  margin-top: 8px;
}
.price-features {
  list-style: none;
  margin-bottom: 32px;
  flex: 1;
}
.price-features li {
  padding: 9px 0 9px 30px;
  position: relative;
  color: #52525b;
  font-size: 15px;
  line-height: 1.5;
}
.price-features li::before {
  content: '';
  position: absolute;
  left: 0;
  top: 13px;
  width: 18px;
  height: 18px;
  background: rgba(13, 148, 136, .15);
  border-radius: 50%;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 18 18' fill='%230d9488'%3E%3Cpath d='M7.3 12.5L4.2 9.4l1.1-1.1 2 2 4.5-4.5 1.1 1.1z'/%3E%3C/svg%3E");
  background-size: 18px;
  background-position: center;
  background-repeat: no-repeat;
}
.pricing-note {
  text-align: center;
  font-size: 14px;
  color: #71717a;
  max-width: 720px;
  margin: 0 auto;
  line-height: 1.6;
}

/* ── FAQ ──────────────────────────────────────────────────── */
.faq { background: #fafafa; }
.faq-list {
  max-width: 800px;
  margin: 0 auto;
}
.faq details {
  background: #fff;
  border: 1px solid #e4e4e7;
  border-radius: 12px;
  padding: 0;
  margin-bottom: 12px;
  transition: border-color .15s ease;
}
.faq details:hover { border-color: #d4d4d8; }
.faq details[open] { border-color: #0d9488; }
.faq summary {
  list-style: none;
  cursor: pointer;
  padding: 22px 56px 22px 24px;
  font-weight: 600;
  font-size: 16.5px;
  color: #18181b;
  position: relative;
  letter-spacing: -0.2px;
}
.faq summary::-webkit-details-marker { display: none; }
.faq summary::after {
  content: '+';
  position: absolute;
  right: 24px;
  top: 19px;
  font-size: 24px;
  color: #0d9488;
  font-weight: 400;
  line-height: 1;
}
.faq details[open] summary::after { content: '−'; }
.faq details p {
  padding: 0 24px 22px;
  color: #52525b;
  line-height: 1.7;
  font-size: 15px;
}
.faq details p a { font-weight: 600; }

/* ── Final CTA ────────────────────────────────────────────── */
.final-cta {
  background:
    radial-gradient(ellipse at center, rgba(13, 148, 136, .15), transparent 65%),
    linear-gradient(180deg, #18181b 0%, #09090b 100%);
  color: #fafafa;
  text-align: center;
}
.final-cta h2 {
  font-size: clamp(32px, 4.5vw, 52px);
  font-weight: 800;
  letter-spacing: -1.8px;
  line-height: 1.1;
  margin-bottom: 18px;
  max-width: 800px;
  margin-left: auto;
  margin-right: auto;
}
.final-sub {
  font-size: 18px;
  color: #d4d4d8;
  margin-bottom: 36px;
}
.cta-fine {
  margin-top: 28px;
  font-size: 14px;
  color: #a1a1aa;
}
.cta-fine a { color: #5eead4; }
.cta-fine a:hover { color: #2dd4bf; }

/* ── Footer ───────────────────────────────────────────────── */
.site-footer {
  background: #09090b;
  color: #a1a1aa;
  padding: 64px 0 32px;
}
.footer-grid {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1fr;
  gap: 48px;
  margin-bottom: 48px;
}
.footer-brand { max-width: 360px; }
.footer-logo {
  font-size: 22px;
  font-weight: 800;
  color: #fafafa;
  margin-bottom: 12px;
  letter-spacing: -0.6px;
}
.footer-logo .accent { color: #5eead4; }
.footer-brand p {
  font-size: 14px;
  margin-bottom: 6px;
  color: #a1a1aa;
}
.footer-brand a { color: #5eead4; }
.footer-tagline {
  font-size: 13px;
  color: #71717a !important;
  margin-top: 14px;
  line-height: 1.5;
}
.footer-links h4 {
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 1.8px;
  color: #fafafa;
  text-transform: uppercase;
  margin-bottom: 16px;
}
.footer-links ul { list-style: none; }
.footer-links li { margin-bottom: 8px; }
.footer-links a {
  color: #a1a1aa;
  font-size: 14px;
}
.footer-links a:hover { color: #fafafa; }
.footer-bottom {
  border-top: 1px solid #27272a;
  padding-top: 32px;
  font-size: 13px;
  color: #71717a;
}

/* ── Legal pages (privacy / terms shared styles) ──────────── */
.legal {
  padding: 80px 0 64px;
}
.legal-container {
  max-width: 760px;
  margin: 0 auto;
  padding: 0 24px;
}
.legal h1 {
  font-size: clamp(32px, 4vw, 44px);
  font-weight: 800;
  letter-spacing: -1.5px;
  color: #18181b;
  margin-bottom: 12px;
  line-height: 1.15;
}
.legal .effective {
  color: #71717a;
  font-size: 14px;
  margin-bottom: 32px;
}
.legal h2 {
  font-size: 22px;
  font-weight: 700;
  letter-spacing: -0.4px;
  color: #18181b;
  margin: 40px 0 12px;
}
.legal h3 {
  font-size: 17px;
  font-weight: 700;
  color: #18181b;
  margin: 24px 0 8px;
}
.legal p, .legal li {
  color: #3f3f46;
  line-height: 1.7;
  font-size: 16px;
}
.legal p { margin-bottom: 16px; }
.legal ul, .legal ol {
  margin: 0 0 16px;
  padding-left: 24px;
}
.legal li { margin-bottom: 8px; }
.legal strong { color: #18181b; }
.legal .legal-note {
  background: #fef3c7;
  border-left: 3px solid #f59e0b;
  padding: 16px 20px;
  border-radius: 4px;
  font-size: 14px;
  color: #78350f;
  margin-bottom: 32px;
}
.legal-back {
  display: inline-block;
  margin-bottom: 32px;
  color: #0d9488;
  font-weight: 600;
  font-size: 14px;
}

/* ── Responsive ───────────────────────────────────────────── */
@media (max-width: 880px) {
  .primary-nav { gap: 20px; }
  .primary-nav a:not(.btn) { display: none; }
  section { padding: 72px 0; }
  .hero { padding: 72px 0 56px; }
  .section-headline { margin-bottom: 48px; }
  .footer-grid {
    grid-template-columns: 1fr 1fr;
    gap: 32px;
  }
  .footer-brand { grid-column: 1 / -1; max-width: 100%; }
  .price-card.featured { transform: none; }
}

@media (max-width: 540px) {
  .container, .legal-container { padding: 0 20px; }
  .hero { padding: 56px 0 40px; }
  section { padding: 56px 0; }
  .hero-cta { flex-direction: column; }
  .hero-cta .btn { width: 100%; }
  .how-steps li {
    grid-template-columns: 1fr;
    gap: 16px;
    padding: 24px;
  }
  .sample-card { padding: 28px 24px; }
  .footer-grid { grid-template-columns: 1fr; }
  .footer-brand { grid-column: auto; }
  .price-card { padding: 32px 24px; }
}

/* ── Reduced motion ───────────────────────────────────────── */
@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
  *, *::before, *::after { transition-duration: .01ms !important; }
  .feature:hover, .btn-primary:hover { transform: none; }
}

/* ─────────────────────────────────────────────────────────────
   Coming Soon page (placeholder index.html)
   ───────────────────────────────────────────────────────────── */
.coming-soon-body {
  background:
    radial-gradient(ellipse 80% 60% at 50% 20%, rgba(13, 148, 136, .10), transparent 60%),
    radial-gradient(ellipse 70% 50% at 50% 90%, rgba(13, 148, 136, .05), transparent 60%),
    #fafafa;
  min-height: 100vh;
}
.coming-soon {
  min-height: 100vh;
  display: flex;
  flex-direction: column;
  align-items: center;
  padding: 40px 24px 24px;
}
.coming-soon-inner {
  max-width: 720px;
  width: 100%;
  flex: 1;
  display: flex;
  flex-direction: column;
  justify-content: center;
  text-align: center;
  padding: 32px 0;
}
.coming-soon-logo {
  display: inline-flex;
  flex-direction: column;
  align-items: center;
  margin: 0 auto 56px;
  line-height: 1;
}
.coming-soon-logo .logo-wordmark {
  font-size: 30px;
  font-weight: 800;
  letter-spacing: -1px;
  color: #18181b;
}
.coming-soon-logo .logo-wordmark .accent { color: #0d9488; }
.coming-soon-logo .logo-tag {
  font-size: 10px;
  font-weight: 700;
  letter-spacing: 3px;
  color: #71717a;
  margin-top: 7px;
}
.cs-eyebrow {
  font-size: 13px;
  font-weight: 700;
  letter-spacing: 2.5px;
  color: #0d9488;
  text-transform: uppercase;
  margin: 0 0 24px;
}

/* ── Launch countdown ─────────────────────────────────────── */
.cs-countdown {
  margin: 0 0 40px;
}
.cs-countdown .cs-eyebrow {
  margin-bottom: 18px;
}
.countdown-grid {
  display: flex;
  justify-content: center;
  gap: 12px;
  margin: 0 auto 14px;
  flex-wrap: nowrap;
}
.countdown-cell {
  background: #fff;
  border: 1px solid #e4e4e7;
  border-radius: 12px;
  padding: 16px 14px 12px;
  min-width: 78px;
  display: flex;
  flex-direction: column;
  align-items: center;
  box-shadow: 0 4px 14px rgba(0, 0, 0, .04);
}
.countdown-value {
  font-size: 40px;
  font-weight: 800;
  letter-spacing: -1.5px;
  color: #18181b;
  font-variant-numeric: tabular-nums;
  line-height: 1;
  margin-bottom: 6px;
}
.countdown-label {
  font-size: 10px;
  font-weight: 700;
  letter-spacing: 1.8px;
  color: #71717a;
  text-transform: uppercase;
}
.countdown-when {
  font-size: 13px;
  font-weight: 600;
  color: #52525b;
  margin: 0;
  letter-spacing: 0.2px;
}

@media (max-width: 540px) {
  .countdown-grid { gap: 8px; }
  .countdown-cell {
    padding: 12px 8px 10px;
    min-width: 0;
    flex: 1;
  }
  .countdown-value { font-size: 28px; letter-spacing: -1px; }
  .countdown-label { font-size: 9px; letter-spacing: 1.5px; }
}
.cs-headline {
  font-size: clamp(34px, 5.5vw, 58px);
  font-weight: 800;
  letter-spacing: -2px;
  line-height: 1.05;
  color: #18181b;
  margin: 0 auto 28px;
  max-width: 680px;
}
.cs-headline .accent {
  color: #0d9488;
  display: block;
}
.cs-sub {
  font-size: 17px;
  color: #52525b;
  max-width: 580px;
  margin: 0 auto 40px;
  line-height: 1.6;
}
.cs-form {
  display: flex;
  gap: 10px;
  justify-content: center;
  max-width: 520px;
  margin: 0 auto 16px;
  flex-wrap: wrap;
}
.cs-form input[type="email"] {
  flex: 1;
  min-width: 240px;
  padding: 14px 18px;
  font-size: 16px;
  font-family: inherit;
  background: #fff;
  border: 1px solid #d4d4d8;
  border-radius: 10px;
  color: #18181b;
  outline: none;
  transition: border-color .15s ease, box-shadow .15s ease;
}
.cs-form input[type="email"]:focus {
  border-color: #0d9488;
  box-shadow: 0 0 0 3px rgba(13, 148, 136, .12);
}
.cs-form input[type="email"]::placeholder { color: #a1a1aa; }
.cs-form button {
  padding: 14px 26px;
  font-size: 15px;
  white-space: nowrap;
}
.cs-success {
  background: rgba(13, 148, 136, .08);
  border: 1px solid rgba(13, 148, 136, .25);
  color: #0d9488;
  padding: 16px 20px;
  border-radius: 10px;
  font-size: 15px;
  max-width: 520px;
  margin: 0 auto 16px;
}
.cs-success strong { color: #0f766e; }
.cs-contact {
  font-size: 14px;
  color: #71717a;
  margin-top: 20px;
  line-height: 1.6;
}
.cs-contact a {
  color: #0d9488;
  font-weight: 600;
}
.cs-footer {
  font-size: 13px;
  color: #71717a;
  padding: 20px 0 8px;
  margin-top: auto;
  text-align: center;
}
.cs-footer p { margin: 0; }
.cs-footer a {
  color: #71717a;
  text-decoration: underline;
  text-decoration-color: rgba(113, 113, 122, .35);
  text-underline-offset: 2px;
}
.cs-footer a:hover { color: #18181b; }

/* Compact sample card on the placeholder */
.cs-sample {
  margin: 64px auto 0;
  max-width: 620px;
  text-align: left;
}
.cs-sample-eyebrow {
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 2.2px;
  color: #0d9488;
  text-transform: uppercase;
  margin: 0 0 14px;
  text-align: center;
}
.cs-sample-card {
  background: #fff;
  border-radius: 14px;
  border: 1px solid #e4e4e7;
  padding: 28px;
  box-shadow: 0 12px 32px rgba(0, 0, 0, .04);
}
.cs-sample-meta {
  display: flex;
  gap: 6px;
  margin-bottom: 22px;
  flex-wrap: wrap;
}
.cs-sample-tag {
  background: #f4f4f5;
  color: #52525b;
  padding: 4px 12px;
  border-radius: 999px;
  font-size: 12px;
  font-weight: 600;
}
.cs-sample-label {
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 1.5px;
  color: #0d9488;
  text-transform: uppercase;
  margin: 18px 0 6px;
}
.cs-sample-label:first-of-type { margin-top: 0; }
.cs-sample-text {
  color: #18181b;
  margin: 0 0 4px;
  line-height: 1.5;
  font-size: 14.5px;
}
.cs-sample-pills {
  display: flex;
  flex-wrap: wrap;
  gap: 6px;
  margin-top: 4px;
}
.cs-sample-pills .pill {
  font-size: 12px;
  padding: 4px 11px;
}
/* Subtle teal highlight on the location parts of the sample */
.cs-mark {
  background: rgba(13, 148, 136, .12);
  color: #0d9488;
  padding: 1px 4px;
  border-radius: 3px;
  font-weight: 700;
}
/* Annotation below the sample */
.cs-sample-annotation {
  margin-top: 22px;
  padding-top: 18px;
  border-top: 1px dashed #e4e4e7;
  font-size: 13px;
  color: #52525b;
  line-height: 1.5;
  display: flex;
  gap: 10px;
  align-items: flex-start;
}
.cs-anno-dot {
  flex-shrink: 0;
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: #0d9488;
  margin-top: 6px;
  box-shadow: 0 0 0 4px rgba(13, 148, 136, .15);
}

@media (max-width: 540px) {
  .coming-soon-logo { margin-bottom: 40px; }
  .cs-form { flex-direction: column; gap: 8px; }
  .cs-form input[type="email"], .cs-form button {
    width: 100%;
    min-width: 0;
  }
  .cs-sample { margin-top: 48px; }
  .cs-sample-card { padding: 22px 20px; }
}
