/* ── Kosmaro Website — style.css ── */

:root {
  --bg:      #0f0f11;
  --surface: #1a1a1f;
  --surf2:   #24242b;
  --border:  #2e2e38;
  --accent:  #7c6af7;
  --accent2: #a78bfa;
  --accent3: #c4b5fd;
  --success: #34d399;
  --text:    #e8e8f0;
  --muted:   #888898;
  --mono:    'DM Mono', monospace;
  --sans:    'Lato', sans-serif;
}

*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }

html { scroll-behavior: smooth; }

body {
  background: var(--bg);
  color: var(--text);
  font-family: var(--sans);
  font-size: 16px;
  line-height: 1.6;
  overflow-x: hidden;
}

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

/* ── Nav ── */
.nav {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 100;
  display: flex;
  align-items: center;
  gap: 32px;
  padding: 18px 48px;
  background: rgba(15,15,17,0.85);
  backdrop-filter: blur(12px);
  border-bottom: 1px solid rgba(46,46,56,0.6);
}

.nav-logo {
  display: flex;
  align-items: center;
  gap: 10px;
  font-weight: 700;
  font-size: 17px;
  letter-spacing: -0.3px;
}

.logo-mark {
  width: 32px;
  height: 32px;
  background: var(--accent);
  border-radius: 8px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 16px;
  font-weight: 900;
  color: white;
  flex-shrink: 0;
}

.logo-mark.small {
  width: 22px;
  height: 22px;
  border-radius: 5px;
  font-size: 11px;
}

.logo-text { color: var(--text); }

.nav-logo-img {
  height: 32px;
  width: auto;
  display: block;
}

.nav-links {
  display: flex;
  gap: 28px;
  margin-left: auto;
}

.nav-links a {
  font-size: 14px;
  font-weight: 700;
  color: var(--muted);
  transition: color 0.15s;
  letter-spacing: 0.3px;
}

.nav-links a:hover,
.nav-links a.active { color: var(--text); }

.nav-cta {
  font-size: 13px;
  font-weight: 700;
  color: var(--accent2);
  background: rgba(124,106,247,0.12);
  border: 1px solid rgba(124,106,247,0.3);
  padding: 7px 16px;
  border-radius: 8px;
  transition: all 0.15s;
  white-space: nowrap;
}

.nav-cta:hover {
  background: rgba(124,106,247,0.2);
  border-color: var(--accent);
  color: var(--accent3);
}

/* ── Buttons ── */
.btn-primary {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: var(--accent);
  color: white;
  font-family: var(--sans);
  font-size: 14px;
  font-weight: 700;
  padding: 12px 24px;
  border-radius: 10px;
  border: none;
  cursor: pointer;
  transition: all 0.15s;
  text-decoration: none;
}

.btn-primary:hover { background: #6b59e6; transform: translateY(-1px); box-shadow: 0 8px 24px rgba(124,106,247,0.3); }
.btn-primary.large { font-size: 15px; padding: 14px 28px; }
.btn-primary.full  { width: 100%; justify-content: center; }

.btn-ghost {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: transparent;
  color: var(--muted);
  font-family: var(--sans);
  font-size: 14px;
  font-weight: 700;
  padding: 12px 24px;
  border-radius: 10px;
  border: 1px solid var(--border);
  cursor: pointer;
  transition: all 0.15s;
  text-decoration: none;
}

.btn-ghost:hover { border-color: var(--accent2); color: var(--text); }

/* ── Background effects ── */
.hero-bg {
  position: absolute;
  inset: 0;
  overflow: hidden;
  pointer-events: none;
}

.orb {
  position: absolute;
  border-radius: 50%;
  filter: blur(80px);
  opacity: 0.15;
}

.orb-1 {
  width: 600px; height: 600px;
  background: var(--accent);
  top: -200px; right: -100px;
}

.orb-2 {
  width: 400px; height: 400px;
  background: #4f46e5;
  bottom: -100px; left: -100px;
}

.orb-cta { pointer-events: none;
  width: 500px; height: 500px;
  background: var(--accent);
  top: 50%; left: 50%;
  transform: translate(-50%, -50%);
  opacity: 0.08;
  filter: blur(100px);
}

.grid-overlay {
  position: absolute;
  inset: 0;
  background-image:
    linear-gradient(rgba(124,106,247,0.04) 1px, transparent 1px),
    linear-gradient(90deg, rgba(124,106,247,0.04) 1px, transparent 1px);
  background-size: 48px 48px;
}

/* ── Hero ── */
.hero {
  position: relative;
  min-height: 100vh;
  display: flex;
  align-items: center;
  gap: 64px;
  padding: 120px 48px 80px;
  overflow: hidden;
}

.hero-content {
  position: relative;
  z-index: 1;
  max-width: 560px;
  animation: fadeUp 0.7s ease both;
}

.hero-badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-size: 12px;
  font-family: var(--mono);
  letter-spacing: 0.8px;
  text-transform: uppercase;
  color: var(--accent2);
  background: rgba(124,106,247,0.1);
  border: 1px solid rgba(124,106,247,0.25);
  padding: 5px 12px;
  border-radius: 20px;
  margin-bottom: 24px;
}

.badge-dot {
  width: 6px; height: 6px;
  background: var(--success);
  border-radius: 50%;
  animation: pulse 2s ease-in-out infinite;
}

@keyframes pulse {
  0%, 100% { opacity: 1; }
  50% { opacity: 0.4; }
}

.hero-title {
  font-size: clamp(36px, 5vw, 58px);
  font-weight: 900;
  line-height: 1.1;
  letter-spacing: -0.5px;
  margin-bottom: 20px;
  color: var(--text);
}

.hero-tagline {
  font-size: 20px;
  font-weight: 700;
  color: var(--accent2);
  margin-bottom: 16px;
  letter-spacing: -0.3px;
}

.accent { color: var(--accent2); }

.hero-sub {
  font-size: 17px;
  color: var(--muted);
  line-height: 1.7;
  margin-bottom: 36px;
  max-width: 480px;
}

.hero-actions {
  display: flex;
  gap: 12px;
  flex-wrap: wrap;
}

/* ── Hero visual ── */
.hero-visual {
  position: relative;
  z-index: 1;
  flex-shrink: 0;
  animation: fadeUp 0.7s 0.15s ease both;
}

.card-stack {
  position: relative;
  width: 320px;
  height: 280px;
}

.stack-card {
  position: absolute;
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: 14px;
  padding: 20px;
}

.stack-card-3 {
  width: 280px;
  bottom: 0; right: 0;
  transform: rotate(6deg) translateY(20px);
  opacity: 0.35;
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.stack-card-2 {
  width: 290px;
  bottom: 10px; right: 10px;
  transform: rotate(3deg) translateY(10px);
  opacity: 0.55;
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.stack-card-1 {
  width: 300px;
  bottom: 20px; right: 20px;
  transform: rotate(0deg);
  box-shadow: 0 20px 60px rgba(0,0,0,0.5), 0 0 0 1px rgba(124,106,247,0.2);
}

.sc-dot { width: 8px; height: 8px; border-radius: 50%; }
.sc-line { height: 8px; background: var(--surf2); border-radius: 4px; }
.sc-line.long { width: 70%; }
.sc-line.short { width: 45%; }

.sc-header {
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 13px;
  font-weight: 700;
  color: var(--accent2);
  margin-bottom: 12px;
  font-family: var(--sans);
}

.sc-icon { font-size: 14px; }

.sc-rule {
  display: flex;
  align-items: center;
  gap: 6px;
  margin-bottom: 8px;
  font-size: 11px;
  font-family: var(--mono);
}

.sc-badge {
  font-size: 9px;
  font-family: var(--mono);
  padding: 2px 6px;
  border-radius: 4px;
  font-weight: 700;
  text-transform: uppercase;
  flex-shrink: 0;
}

.sc-badge.sender { background: rgba(124,106,247,0.18); color: var(--accent2); }
.sc-badge.domain { background: rgba(251,191,36,0.15); color: #fbbf24; }
.sc-badge.subject { background: rgba(52,211,153,0.15); color: #34d399; }

.sc-val { color: var(--muted); flex: 1; }
.sc-arrow { color: var(--border); }
.sc-cat { color: var(--accent2); font-weight: 700; }

.sc-footer {
  margin-top: 12px;
  font-size: 10px;
  font-family: var(--mono);
  color: var(--muted);
  border-top: 1px solid var(--border);
  padding-top: 10px;
}

/* ── Product hero ── */
.hero-product .hero-content {
  max-width: 640px;
  text-align: center;
  margin: 0 auto;
}

.hero-product .hero-sub { margin: 0 auto 36px; }
.hero-product .hero-actions { justify-content: center; }

.product-hero-icon {
  font-size: 48px;
  color: var(--accent2);
  margin-bottom: 12px;
  animation: float 3s ease-in-out infinite;
}

@keyframes float {
  0%, 100% { transform: translateY(0); }
  50% { transform: translateY(-6px); }
}

/* ── Page hero (about/contact) ── */
.page-hero {
  position: relative;
  padding: 140px 48px 80px;
  overflow: hidden;
}

.page-hero-content {
  position: relative;
  z-index: 1;
  max-width: 700px;
  animation: fadeUp 0.7s ease both;
}

.page-hero-content h1 {
  font-size: clamp(32px, 4vw, 52px);
  font-weight: 900;
  letter-spacing: -0.5px;
  line-height: 1.1;
  margin-bottom: 20px;
}

.page-hero-content p {
  font-size: 18px;
  color: var(--muted);
  line-height: 1.7;
  max-width: 540px;
}

/* ── Section common ── */
.section-label {
  font-size: 11px;
  font-family: var(--mono);
  letter-spacing: 1.5px;
  text-transform: uppercase;
  color: var(--accent2);
  margin-bottom: 16px;
}

.section-title {
  font-size: clamp(28px, 3.5vw, 44px);
  font-weight: 900;
  letter-spacing: -0.3px;
  line-height: 1.1;
  margin-bottom: 16px;
}

.section-sub {
  font-size: 17px;
  color: var(--muted);
  line-height: 1.7;
  max-width: 540px;
  margin-bottom: 48px;
}

/* ── Suite section ── */
.suite { padding: 100px 48px; }
.suite-inner { max-width: 1100px; margin: 0 auto; }

.products-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 20px;
  margin-top: 48px;
}

.product-card {
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: 16px;
  padding: 28px;
  display: flex;
  align-items: flex-start;
  gap: 16px;
  transition: all 0.2s;
  position: relative;
  text-decoration: none;
  color: inherit;
}

.product-card.active:hover {
  border-color: var(--accent);
  transform: translateY(-2px);
  box-shadow: 0 12px 40px rgba(124,106,247,0.15);
}

.product-card.coming { opacity: 0.5; cursor: default; }

.product-icon {
  font-size: 24px;
  color: var(--accent2);
  flex-shrink: 0;
  width: 44px;
  height: 44px;
  background: rgba(124,106,247,0.1);
  border-radius: 10px;
  display: flex;
  align-items: center;
  justify-content: center;
}

.product-icon.muted { color: var(--muted); }

.product-info h3 {
  font-size: 17px;
  font-weight: 700;
  margin-bottom: 6px;
  letter-spacing: -0.3px;
}

.product-info p {
  font-size: 14px;
  color: var(--muted);
  line-height: 1.6;
}

.product-status {
  position: absolute;
  top: 20px; right: 20px;
  font-size: 10px;
  font-family: var(--mono);
  padding: 3px 8px;
  border-radius: 20px;
  font-weight: 700;
  text-transform: uppercase;
}

.product-status.live {
  background: rgba(52,211,153,0.12);
  color: var(--success);
  border: 1px solid rgba(52,211,153,0.25);
}

.product-status.soon {
  background: rgba(124,106,247,0.1);
  color: var(--accent2);
  border: 1px solid rgba(124,106,247,0.2);
}

/* ── CTA section ── */
.cta-section {
  padding: 100px 48px;
  text-align: center;
  position: relative;
  overflow: hidden;
}

.cta-inner {
  position: relative;
  z-index: 1;
  max-width: 600px;
  margin: 0 auto;
}

.cta-section h2 {
  font-size: clamp(28px, 3.5vw, 44px);
  font-weight: 900;
  letter-spacing: -0.3px;
  margin-bottom: 16px;
}

.cta-section p {
  font-size: 17px;
  color: var(--muted);
  line-height: 1.7;
  margin-bottom: 36px;
}

/* ── Features ── */
.features { padding: 100px 48px; background: rgba(26,26,31,0.5); }
.features-inner { max-width: 1100px; margin: 0 auto; }

.features-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
  gap: 24px;
  margin-top: 48px;
}

.feature-card {
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: 14px;
  padding: 28px;
  transition: border-color 0.2s;
}

.feature-card:hover { border-color: var(--accent); }

.feature-num {
  font-size: 11px;
  font-family: var(--mono);
  color: var(--accent2);
  letter-spacing: 1px;
  margin-bottom: 12px;
}

.feature-card h3 {
  font-size: 16px;
  font-weight: 700;
  margin-bottom: 8px;
  letter-spacing: -0.3px;
}

.feature-card p {
  font-size: 14px;
  color: var(--muted);
  line-height: 1.6;
}

/* ── Rule types ── */
.rule-types { padding: 100px 48px; }
.rule-types-inner { max-width: 1100px; margin: 0 auto; }

.rules-demo {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
  gap: 20px;
  margin-top: 48px;
}

.rule-demo-card {
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: 14px;
  padding: 28px;
}

.rd-badge {
  display: inline-block;
  font-size: 10px;
  font-family: var(--mono);
  padding: 3px 8px;
  border-radius: 4px;
  font-weight: 700;
  text-transform: uppercase;
  margin-bottom: 16px;
}

.rd-badge.sender { background: rgba(124,106,247,0.18); color: var(--accent2); }
.rd-badge.domain { background: rgba(251,191,36,0.15); color: #fbbf24; }
.rd-badge.subject { background: rgba(52,211,153,0.15); color: #34d399; }

.rd-example {
  display: flex;
  align-items: center;
  gap: 8px;
  font-family: var(--mono);
  font-size: 13px;
  margin-bottom: 12px;
  background: var(--surf2);
  padding: 10px 12px;
  border-radius: 8px;
}

.rd-val { color: var(--text); flex: 1; }
.rd-arrow { color: var(--border); }
.rd-cat { color: var(--accent2); font-weight: 700; }

.rule-demo-card p {
  font-size: 13px;
  color: var(--muted);
  line-height: 1.6;
}

/* ── Install ── */
.install {
  padding: 100px 48px;
  text-align: center;
  position: relative;
  overflow: hidden;
  background: rgba(26,26,31,0.5);
}

.install-inner {
  position: relative;
  z-index: 1;
  max-width: 640px;
  margin: 0 auto;
}

.install h2 {
  font-size: clamp(28px, 3.5vw, 44px);
  font-weight: 900;
  letter-spacing: -0.3px;
  margin-bottom: 16px;
}

.install > .install-inner > p {
  font-size: 17px;
  color: var(--muted);
  line-height: 1.7;
  margin-bottom: 40px;
}

.install-steps {
  display: flex;
  flex-direction: column;
  gap: 12px;
  margin-bottom: 40px;
  text-align: left;
}

.install-step {
  display: flex;
  align-items: flex-start;
  gap: 16px;
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: 10px;
  padding: 16px 20px;
}

.step-num {
  width: 28px;
  height: 28px;
  background: rgba(124,106,247,0.15);
  color: var(--accent2);
  border-radius: 6px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 12px;
  font-family: var(--mono);
  font-weight: 700;
  flex-shrink: 0;
}

.install-step p {
  font-size: 14px;
  color: var(--muted);
  line-height: 1.5;
  margin: 0;
}

.install-step strong { color: var(--text); }

.install-note {
  margin-top: 16px;
  font-size: 13px;
  color: var(--muted);
}

.install-note a { color: var(--accent2); text-decoration: underline; }

/* ── About ── */
.about-body { padding: 80px 48px 100px; }
.about-inner { max-width: 800px; margin: 0 auto; }

.about-block {
  display: grid;
  grid-template-columns: 160px 1fr;
  gap: 40px;
  padding: 40px 0;
}

.about-label {
  font-size: 11px;
  font-family: var(--mono);
  letter-spacing: 1.5px;
  text-transform: uppercase;
  color: var(--accent2);
  padding-top: 4px;
}

.about-text p {
  font-size: 16px;
  color: var(--muted);
  line-height: 1.8;
  margin-bottom: 16px;
}

.about-text p:last-child { margin-bottom: 0; }

.about-divider {
  height: 1px;
  background: var(--border);
}

.principles {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 20px;
}

.principles li {
  display: flex;
  gap: 12px;
  font-size: 15px;
  color: var(--muted);
  line-height: 1.6;
}

.principle-mark {
  color: var(--accent2);
  flex-shrink: 0;
  margin-top: 2px;
}

.principles strong { color: var(--text); }

/* ── Contact ── */
.contact-body { padding: 80px 48px 100px; }

.contact-inner {
  max-width: 900px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1fr 260px;
  gap: 60px;
  align-items: start;
}

.contact-form {
  display: flex;
  flex-direction: column;
  gap: 20px;
}

.form-group {
  display: flex;
  flex-direction: column;
  gap: 8px;
}

.form-group label {
  font-size: 12px;
  font-family: var(--mono);
  letter-spacing: 0.8px;
  text-transform: uppercase;
  color: var(--muted);
}

.form-group input,
.form-group select,
.form-group textarea {
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: 8px;
  color: var(--text);
  font-family: var(--sans);
  font-size: 14px;
  padding: 12px 14px;
  outline: none;
  transition: border-color 0.15s;
  width: 100%;
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus { border-color: var(--accent); }

.form-group select { cursor: pointer; }
.form-group select option { background: var(--surface); }
.form-group textarea { resize: vertical; min-height: 120px; }

.form-success {
  flex-direction: column;
  align-items: center;
  justify-content: center;
  text-align: center;
  padding: 60px 40px;
  background: var(--surface);
  border: 1px solid rgba(52,211,153,0.3);
  border-radius: 14px;
  gap: 12px;
}

.success-icon {
  width: 52px;
  height: 52px;
  background: rgba(52,211,153,0.12);
  color: var(--success);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 22px;
  margin-bottom: 4px;
}

.form-success h3 {
  font-size: 20px;
  font-weight: 700;
  letter-spacing: -0.3px;
}

.form-success p {
  font-size: 14px;
  color: var(--muted);
}

.contact-aside {
  display: flex;
  flex-direction: column;
  gap: 28px;
  padding-top: 8px;
}

.contact-info-block {}

.ci-label {
  font-size: 11px;
  font-family: var(--mono);
  letter-spacing: 1px;
  text-transform: uppercase;
  color: var(--muted);
  margin-bottom: 6px;
}

.ci-value {
  font-size: 15px;
  color: var(--text);
  font-weight: 700;
}

a.ci-value { color: var(--accent2); }
a.ci-value:hover { text-decoration: underline; }

/* ── Footer ── */
.footer {
  border-top: 1px solid var(--border);
  padding: 32px 48px;
}

.footer-inner {
  max-width: 1100px;
  margin: 0 auto;
  display: flex;
  align-items: center;
  gap: 32px;
}

.footer-brand {
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 14px;
  font-weight: 700;
  color: var(--muted);
}

.footer-links {
  display: flex;
  gap: 24px;
  margin-left: auto;
}

.footer-links a {
  font-size: 13px;
  color: var(--muted);
  transition: color 0.15s;
}

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

.footer-copy {
  font-size: 12px;
  color: var(--muted);
  font-family: var(--mono);
}

/* ── Animations ── */
@keyframes fadeUp {
  from { opacity: 0; transform: translateY(20px); }
  to   { opacity: 1; transform: translateY(0); }
}

/* ── Responsive ── */
@media (max-width: 900px) {
  .nav { padding: 16px 24px; }
  .nav-links { display: none; }
  .hero { flex-direction: column; padding: 100px 24px 60px; text-align: center; }
  .hero-content { max-width: 100%; }
  .hero-sub { margin: 0 auto 36px; }
  .hero-actions { justify-content: center; }
  .hero-visual { display: none; }
  .suite, .features, .rule-types, .install, .cta-section { padding: 60px 24px; }
  .about-body, .contact-body { padding: 60px 24px 80px; }
  .about-block { grid-template-columns: 1fr; gap: 12px; }
  .contact-inner { grid-template-columns: 1fr; }
  .contact-aside { display: none; }
  .page-hero { padding: 100px 24px 60px; }
  .footer { padding: 24px; }
  .footer-inner { flex-wrap: wrap; gap: 16px; }
  .footer-links { margin-left: 0; }
}

/* ── Pricing ── */
.pricing { padding: 100px 48px; }
.pricing-inner { max-width: 900px; margin: 0 auto; text-align: center; }
.pricing-inner .section-sub { margin: 0 auto 48px; }

.pricing-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 24px;
  margin-bottom: 24px;
  text-align: left;
}

.pricing-card {
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: 16px;
  padding: 32px;
  position: relative;
  transition: border-color 0.2s;
}

.pricing-card.featured {
  border-color: var(--accent);
  box-shadow: 0 0 40px rgba(124,106,247,0.1);
}

.pricing-badge {
  position: absolute;
  top: -12px;
  left: 50%;
  transform: translateX(-50%);
  background: var(--accent);
  color: white;
  font-size: 11px;
  font-weight: 700;
  padding: 4px 14px;
  border-radius: 20px;
  white-space: nowrap;
  font-family: var(--mono);
  letter-spacing: 0.5px;
}

.pricing-card h3 {
  font-size: 18px;
  font-weight: 700;
  margin-bottom: 16px;
  letter-spacing: -0.3px;
}

.pricing-price {
  display: flex;
  align-items: baseline;
  gap: 8px;
  margin-bottom: 24px;
}

.price-amount {
  font-size: 48px;
  font-weight: 900;
  letter-spacing: -2px;
  color: var(--text);
}

.price-period {
  font-size: 13px;
  color: var(--muted);
  font-family: var(--mono);
}

.pricing-features {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 10px;
  margin-bottom: 28px;
}

.pricing-features li {
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: 14px;
  color: var(--muted);
}

.pf-check { color: var(--success); font-weight: 700; flex-shrink: 0; }
.pf-muted  { color: var(--border);  flex-shrink: 0; }

.pricing-note {
  font-size: 11px;
  color: var(--muted);
  font-family: var(--mono);
  text-align: center;
  margin-top: 10px;
}

.pricing-guarantee {
  font-size: 12px;
  color: var(--muted);
  font-family: var(--mono);
  margin-top: 8px;
}

@media (max-width: 900px) {
  .pricing { padding: 60px 24px; }
}

.price-original {
  font-size: 24px;
  font-weight: 700;
  color: var(--muted);
  text-decoration: line-through;
  margin-right: 4px;
}

.pricing-intro {
  font-size: 11px;
  font-family: var(--mono);
  color: var(--success);
  background: rgba(52,211,153,0.08);
  border: 1px solid rgba(52,211,153,0.2);
  padding: 5px 10px;
  border-radius: 6px;
  margin-bottom: 20px;
  text-align: center;
}
