@charset "UTF-8";
/* ------------------------------------------------
   BASE / TOKENS
--------------------------------------------------*/
:root {
  --bg: #f5f5f7;
  --bg-elevated: #ffffff;
  --bg-soft: #f1f5f9;
  --text-main: #0f172a;
  --text-soft: #475569;
  --text-muted: #6b7280;
  --accent: #2563eb;
  --accent-soft: #dbeafe;
  --accent-strong: #1d4ed8;
  --border-subtle: rgba(148, 163, 184, 0.4);
  --shadow-soft: 0 18px 45px rgba(15, 23, 42, 0.08);
  --radius-lg: 18px;
  --radius-xl: 24px;
  --shell-width: 1120px;
}

/* ------------------------------------------------
   GLOBAL
--------------------------------------------------*/
*,
*::before,
*::after {
  box-sizing: border-box;
}

html,
body {
  margin: 0;
  padding: 0;
}

body {
  font-family: "Inter", system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  background: radial-gradient(circle at top left, #e5edff 0, #f5f5f7 40%, #f9fafb 100%);
  color: var(--text-main);
  -webkit-font-smoothing: antialiased;
}

.page {
  min-height: 80vh;
}

/* ------------------------------------------------
   LAYOUT HELPERS
--------------------------------------------------*/
.shell {
  width: 100%;
  max-width: var(--shell-width);
  margin: 0 auto;
  padding: 0 20px;
}

/* ------------------------------------------------
   NAVBAR
--------------------------------------------------*/
.nav {
  position: sticky;
  top: 0;
  z-index: 40;
  backdrop-filter: blur(18px);
  background: linear-gradient(to bottom, rgba(248, 250, 252, 0.96), rgba(248, 250, 252, 0.9));
  border-bottom: 1px solid rgba(148, 163, 184, 0.25);
}

.nav-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 70px;
  gap: 24px;
}

.nav-left {
  display: flex;
  align-items: center;
  gap: 10px;
}

.nav-logo {
  height: 28px;
  width: auto;
  border-radius: 8px;
}

.nav-brand-text {
  font-weight: 700;
  letter-spacing: 0.14em;
  font-size: 12px;
  text-transform: uppercase;
  color: var(--text-main);
}

.nav-links {
  display: flex;
  align-items: center;
  gap: 18px;
  font-size: 14px;
}

.nav-links a {
  color: var(--text-soft);
  text-decoration: none;
  padding: 6px 0;
  position: relative;
}

.nav-links a::after {
  content: "";
  position: absolute;
  left: 0;
  bottom: -4px;
  width: 0;
  height: 2px;
  background: var(--accent);
  border-radius: 999px;
  transition: width 0.2s ease-out;
}

.nav-links a:hover::after {
  width: 100%;
}

.nav-cta {
  display: flex;
  align-items: center;
  gap: 10px;
}

/* ------------------------------------------------
   BUTTONS
--------------------------------------------------*/
.btn {
  border-radius: 999px;
  border: 1px solid transparent;
  padding: 9px 16px;
  font-size: 14px;
  font-weight: 500;
  cursor: pointer;
  display: inline-flex;
  align-items: center;
  gap: 8px;
  transition: background 0.18s ease-out, color 0.18s ease-out, border-color 0.18s ease-out, box-shadow 0.18s ease-out, transform 0.12s ease-out;
  white-space: nowrap;
}

.btn-primary {
  background: linear-gradient(135deg, var(--accent), var(--accent-strong));
  color: #ffffff;
  box-shadow: 0 16px 40px rgba(37, 99, 235, 0.3);
}

.btn-primary:hover {
  transform: translateY(-1px);
  box-shadow: 0 22px 55px rgba(37, 99, 235, 0.35);
}

.btn-ghost {
  background: rgba(255, 255, 255, 0.7);
  color: var(--text-main);
  border-color: rgba(148, 163, 184, 0.4);
}

.btn-ghost:hover {
  background: #ffffff;
  border-color: rgba(148, 163, 184, 0.7);
}

.btn-icon {
  font-size: 13px;
}

/* ------------------------------------------------
   HERO
--------------------------------------------------*/
.hero {
  padding: 48px 0 0px;
}

.hero-inner {
  display: grid;
  grid-template-columns: minmax(0, 1.1fr) minmax(0, 1fr);
  gap: 40px;
  align-items: center;
}

.eyebrow {
  font-size: 13px;
  font-weight: 500;
  color: var(--accent-strong);
  text-transform: uppercase;
  letter-spacing: 0.16em;
  margin-bottom: 12px;
}

.hero h1 {
  font-size: 44px;
  line-height: 1.05;
  margin: 0 0 14px;
}

.hero h1 span {
  color: var(--accent-strong);
}

.hero-sub {
  font-size: 16px;
  color: var(--text-soft);
  max-width: 420px;
  margin: 0 0 22px;
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-bottom: 10px;
}

.hero-legal {
  font-size: 12px;
  color: var(--text-muted);
  margin: 4px 0 16px;
}

.hero-meta {
  display: flex;
  flex-wrap: wrap;
  gap: 16px;
  font-size: 13px;
  color: var(--text-muted);
  align-items: center;
}

.hero-dot {
  display: inline-block;
  width: 8px;
  height: 8px;
  border-radius: 999px;
  background: #22c55e;
  margin-right: 6px;
  box-shadow: 0 0 8px rgba(34, 197, 94, 0.8);
}

/* Trust strip */
.trust-strip {
  margin-top: 20px;
  padding: 10px 14px;
  border-radius: 999px;
  background: rgba(15, 23, 42, 0.02);
  border: 1px solid rgba(148, 163, 184, 0.35);
  display: inline-flex;
  align-items: center;
  gap: 14px;
  font-size: 12px;
  color: var(--text-muted);
}

.trust-badges {
  display: inline-flex;
  gap: 6px;
  flex-wrap: wrap;
}

.trust-badges span {
  padding: 3px 8px;
  border-radius: 999px;
  background: #e5edff;
  color: #1d4ed8;
  font-size: 11px;
  font-weight: 500;
}

/* ------------------------------------------------
   HERO PREVIEW CARD
--------------------------------------------------*/
.hero-preview-card {
  background: var(--bg-elevated);
  border-radius: 26px;
  padding: 18px 18px 18px;
  box-shadow: var(--shadow-soft);
  border: 1px solid rgba(148, 163, 184, 0.35);
}

.hero-badge {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  padding: 4px 10px;
  border-radius: 999px;
  background: #eff6ff;
  color: #1e3a8a;
  font-size: 11px;
  font-weight: 500;
  margin-bottom: 12px;
}

.hero-badge span {
  font-size: 12px;
}

.preview-labels {
  display: flex;
  justify-content: space-between;
  align-items: center;
  font-size: 12px;
  margin-bottom: 8px;
  color: var(--text-muted);
}

.preview-layer[data-layer=before] .preview-image {
  filter: grayscale(80%) blur(1.5px) brightness(80%) contrast(85%);
  opacity: 0.85;
  transition: filter 0.3s ease, opacity 0.3s ease;
}

/* Toggle pills */
.preview-toggle {
  display: inline-flex;
  padding: 2px;
  border-radius: 999px;
  background: #e5edff;
  gap: 2px;
}

.preview-pill {
  border: none;
  background: transparent;
  font-size: 11px;
  padding: 4px 10px;
  border-radius: 999px;
  cursor: pointer;
  color: #1d4ed8;
  font-weight: 500;
  transition: background 0.18s ease-out, color 0.18s ease-out;
}

.preview-pill.active {
  background: #ffffff;
  color: #111827;
  box-shadow: 0 1px 4px rgba(15, 23, 42, 0.08);
}

/* Preview window */
.preview-window {
  margin-top: 10px;
  border-radius: 18px;
  background: #f8fafc;
  border: 1px solid rgba(148, 163, 184, 0.5);
  overflow: hidden;
  height: 320px; /* ← přidej tuto řádku */
}

.preview-browser-chrome {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 7px 12px;
  background: linear-gradient(to right, #e2e8f0, #e0ecff);
}

.chrome-dots {
  display: flex;
  gap: 6px;
}

.chrome-dot {
  width: 8px;
  height: 8px;
  border-radius: 999px;
  background: rgba(148, 163, 184, 0.9);
}

.chrome-url {
  font-size: 11px;
  color: var(--text-muted);
}

/* Layer switch */
.preview-layer {
  position: absolute; /* vrstvy přes sebe */
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  opacity: 0;
  transition: opacity 0.5s ease-in-out; /* fade efekt */
  pointer-events: none; /* neklikatelná když není aktivní */
}

.preview-layer.active {
  opacity: 1;
  pointer-events: auto;
  z-index: 2;
}

.preview-content {
  display: flex;
  padding: 16px 18px 18px;
  gap: 16px;
}

.preview-bad-column {
  background: #fef2f2;
}

.preview-column {
  flex: 1;
}

.preview-tag {
  display: inline-flex;
  padding: 3px 9px;
  border-radius: 999px;
  background: rgba(15, 23, 42, 0.08);
  font-size: 11px;
  color: #4b5563;
  margin-bottom: 6px;
}

.preview-h {
  font-size: 14px;
  font-weight: 600;
  margin-bottom: 4px;
}

.preview-p {
  font-size: 12px;
  color: var(--text-muted);
  margin-bottom: 10px;
}

.preview-btn {
  border-radius: 999px;
  border: none;
  padding: 6px 12px;
  font-size: 11px;
  font-weight: 500;
  cursor: pointer;
  background: #1f2937;
  color: #f9fafb;
}

.preview-sidebar-item {
  font-size: 11px;
  border-radius: 10px;
  padding: 7px 9px;
  background: #f1f5f9;
  margin-bottom: 6px;
  display: flex;
  justify-content: space-between;
  gap: 10px;
  color: #0f172a;
}

.preview-sidebar-item span {
  color: var(--text-muted);
}

.preview-pill-metric {
  display: inline-flex;
  align-items: center;
  gap: 4px;
  padding: 3px 8px;
  border-radius: 999px;
  background: #166534;
  color: #bbf7d0;
  font-size: 10px;
}

.preview-pill-metric svg {
  width: 14px;
  height: 14px;
}

/* ------------------------------------------------
   SECTION HEADER
--------------------------------------------------*/
.section-header {
  text-align: left;
  margin-bottom: 26px;
}

.section-header h2 {
  font-size: 26px;
  margin: 0 0 6px;
}

.section-header p {
  margin: 0;
  font-size: 15px;
  color: var(--text-soft);
  max-width: 520px;
}

/* ------------------------------------------------
   HOW IT WORKS
--------------------------------------------------*/
#how-it-works {
  padding: 10px 0 10px;
}

.steps {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 18px;
}

.step-card {
  background: var(--bg-elevated);
  border-radius: var(--radius-lg);
  padding: 16px 18px;
  border: 1px solid rgba(148, 163, 184, 0.4);
}

.step-label {
  font-size: 11px;
  text-transform: uppercase;
  letter-spacing: 0.14em;
  color: var(--accent-strong);
  margin-bottom: 6px;
}

.step-title {
  font-weight: 600;
  font-size: 15px;
  margin-bottom: 6px;
}

.step-text {
  margin: 0;
  font-size: 13px;
  color: var(--text-soft);
}

/* CTA pod kroky */
.steps-cta {
  margin-top: 24px;
  display: flex;
  align-items: center;
  gap: 10px;
}

.steps-note {
  font-size: 12px;
  color: var(--text-muted);
}

/* ------------------------------------------------
   AI ENGINE
--------------------------------------------------*/
#engine {
  padding: 30px 0 50px;
}

.features-grid {
  display: grid;
  grid-template-columns: minmax(0, 1.3fr) minmax(0, 0.8fr);
  gap: 24px;
  align-items: stretch;
}

.feature-card {
  background: var(--bg-elevated);
  border-radius: var(--radius-xl);
  padding: 20px 22px;
  border: 1px solid rgba(148, 163, 184, 0.4);
  box-shadow: 0 18px 40px rgba(15, 23, 42, 0.04);
}

.feature-tag {
  font-size: 11px;
  text-transform: uppercase;
  letter-spacing: 0.14em;
  color: var(--accent-strong);
  margin-bottom: 10px;
}

.feature-card h3 {
  margin: 0 0 8px;
  font-size: 20px;
}

.feature-card p {
  margin: 0 0 14px;
  font-size: 14px;
  color: var(--text-soft);
}

.feature-pill-row {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
}

.feature-pill {
  font-size: 11px;
  padding: 5px 10px;
  border-radius: 999px;
  background: #eff6ff;
  color: #1d4ed8;
}

/* Metric card */
.metric-card {
  background: radial-gradient(circle at top left, #e0f2fe 0, #eff6ff 35%, #f9fafb 100%);
  border-radius: var(--radius-xl);
  padding: 18px 20px;
  border: 1px solid rgba(129, 140, 248, 0.5);
}

.metric-chip {
  display: inline-flex;
  padding: 4px 10px;
  border-radius: 999px;
  background: #1d4ed8;
  color: #eff6ff;
  font-size: 11px;
  font-weight: 500;
  margin-bottom: 14px;
}

.metric-main {
  margin-bottom: 8px;
}

.metric-number {
  font-size: 32px;
  font-weight: 700;
  color: #1d4ed8;
}

.metric-number span {
  font-size: 13px;
  font-weight: 500;
  color: #1e293b;
  margin-left: 6px;
}

.metric-caption {
  font-size: 13px;
  color: var(--text-soft);
}

/* ------------------------------------------------
   TEMPLATES
--------------------------------------------------*/
#templates {
  padding: 30px 0 55px;
}

#templates .feature-card {
  padding: 18px 20px 20px;
}

.templates-strip {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 12px;
}

.templates-strip h3 {
  margin: 0;
  font-size: 18px;
}

.templates-controls {
  display: flex;
  gap: 8px;
}

.circle-btn {
  width: 28px;
  height: 28px;
  border-radius: 999px;
  border: 1px solid rgba(148, 163, 184, 0.7);
  background: #ffffff;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-size: 16px;
  cursor: pointer;
  transition: background 0.18s ease-out, transform 0.12s ease-out;
}

.circle-btn:hover {
  background: #f1f5f9;
  transform: translateY(-1px);
}

/* slider */
.templates-viewport {
  overflow: hidden;
  margin-top: 6px;
}

.templates-track {
  display: flex;
  transition: transform 0.35s ease-out;
  will-change: transform;
}

.template-card {
  flex: 0 0 100%;
  display: grid;
  grid-template-columns: minmax(0, 1.1fr) minmax(0, 0.9fr);
  gap: 18px;
}

.template-meta h4 {
  margin: 0 0 6px;
  font-size: 16px;
}

.template-meta p {
  margin: 0 0 10px;
  font-size: 13px;
  color: var(--text-soft);
}

.template-preview-box {
  border-radius: 14px;
  background: #0f172a;
  padding: 14px;
  display: flex;
  align-items: center;
  justify-content: center;
}

.template-lines {
  width: 100%;
  display: flex;
  flex-direction: column;
  gap: 6px;
}

.template-lines .line {
  height: 4px;
  border-radius: 999px;
  background: linear-gradient(90deg, #e5e7eb, #93c5fd);
}

.template-lines .line.long {
  width: 100%;
}

.template-lines .line.medium {
  width: 70%;
}

.template-lines .line.short {
  width: 45%;
}

/* ------------------------------------------------
   BENEFITS & TESTIMONIALS
--------------------------------------------------*/
#pricing {
  padding: 30px 0 60px;
}

.benefits-grid {
  display: grid;
  grid-template-columns: minmax(0, 1.1fr) minmax(0, 1fr);
  gap: 26px;
  align-items: flex-start;
}

.benefit-list {
  display: grid;
  gap: 12px;
}

.benefit-item {
  font-size: 14px;
  color: var(--text-soft);
}

.benefit-item strong {
  color: var(--text-main);
  display: block;
  margin-bottom: 3px;
}

/* Testimonial card */
.testimonial-card {
  background: var(--bg-elevated);
  border-radius: var(--radius-xl);
  padding: 18px 20px 18px;
  border: 1px solid rgba(148, 163, 184, 0.4);
  box-shadow: 0 18px 40px rgba(15, 23, 42, 0.05);
}

.testimonials-grid {
  display: grid;
  gap: 14px;
}

.testimonial-item {
  padding: 10px 0;
  border-bottom: 1px dashed rgba(148, 163, 184, 0.4);
}

.testimonial-item:last-child {
  border-bottom: none;
}

.testimonial-quote {
  font-size: 13px;
  color: var(--text-soft);
  margin-bottom: 6px;
}

.testimonial-person {
  font-size: 12px;
  font-weight: 500;
  color: var(--text-main);
}

/* ------------------------------------------------
   CTA BOTTOM
--------------------------------------------------*/
.cta {
  padding: 40px 0 50px;
}

.cta .shell {
  text-align: center;
}

.cta h2 {
  margin: 0 0 6px;
  font-size: 24px;
}

.cta p {
  margin: 0 0 14px;
  font-size: 14px;
  color: var(--text-soft);
}

/* ------------------------------------------------
   FOOTER
--------------------------------------------------*/
.footer {
  border-top: 1px solid rgba(148, 163, 184, 0.3);
  background: #f8fafc;
}

.footer-inner {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 14px 0 16px;
  font-size: 12px;
  color: var(--text-muted);
}

.footer-links {
  display: flex;
  gap: 12px;
}

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

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

/* ------------------------------------------------
   RESPONSIVE
--------------------------------------------------*/
@media (max-width: 920px) {
  .nav-links {
    display: none;
  }
  .hero-inner {
    grid-template-columns: minmax(0, 1fr);
  }
  .hero-preview-card {
    order: -1;
  }
  .features-grid,
  .benefits-grid {
    grid-template-columns: minmax(0, 1fr);
  }
  .template-card {
    grid-template-columns: minmax(0, 1fr);
  }
  .footer-inner {
    flex-direction: column;
    align-items: flex-start;
    gap: 8px;
  }
}
@media (max-width: 640px) {
  .hero {
    padding-top: 32px;
  }
  .hero h1 {
    font-size: 32px;
  }
  .steps {
    grid-template-columns: minmax(0, 1fr);
  }
  .hero-actions {
    flex-direction: column;
    align-items: stretch;
  }
  .nav-inner {
    height: 64px;
  }
  .hero-preview-card {
    padding: 14px;
  }
}
/* sekce pod hero, můžeš upravit margin */
.preview-section {
  margin-top: 5px;
}

/* rámeček, ve kterém se vše děje */
.preview-frame {
  position: relative;
  max-width: 960px;
  margin: 0;
  height: 300px; /* TADY nastavuješ výšku náhledu */
  border-radius: 24px;
  overflow: hidden;
  box-shadow: 0 24px 60px rgba(15, 23, 42, 0.35);
  background: #fff;
}

/* jednotlivé vrstvy – jsou přes sebe */
.preview-layer {
  position: absolute;
  inset: 0; /* top:0; right:0; bottom:0; left:0 */
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.35s ease;
}

.preview-layer.active {
  opacity: 1;
  pointer-events: auto;
}

/* samotný screenshot */
.preview-image {
  width: 100%;
  height: 100%;
  object-fit: contain; /* zobrazí celý obrázek */
  object-position: top; /* hlavička webu nahoře */
  background: #fff; /* prázdná plocha bude bílá */
}

.hero-sub-24h {
  margin-top: 0.75rem;
  font-size: 0.95rem;
  opacity: 0.9;
}

.hero-form {
  display: flex;
  flex-wrap: wrap;
  gap: 0.75rem;
  margin-top: 1.25rem;
  align-items: center;
}

.hero-form input {
  flex: 1 1 220px;
  min-width: 0;
  padding: 0.75rem 0.9rem;
  border-radius: 999px;
  border: 1px solid rgba(148, 163, 184, 0.5);
  background: rgba(15, 23, 42, 0.75);
  color: #e5e7eb;
  font-size: 0.95rem;
  outline: none;
}

.hero-form input::placeholder {
  color: #64748b;
}

.hero-meta-badge {
  display: inline-flex;
  align-items: center;
  gap: 0.35rem;
  font-size: 0.8rem;
  padding: 0.25rem 0.6rem;
  border-radius: 999px;
  background: rgba(34, 197, 94, 0.08);
  color: #bbf7d0;
  border: 1px solid rgba(34, 197, 94, 0.5);
  margin-top: 0.75rem;
}

/* hidden honeypot */
.hidden-field {
  position: absolute;
  left: -9999px;
  opacity: 0;
  pointer-events: none;
  height: 0;
  width: 0;
  overflow: hidden;
}

/* Pricing section */
.pricing-section {
  padding-top: 3rem;
  padding-bottom: 4rem;
}

.pricing-badge {
  display: inline-flex;
  align-items: center;
  gap: 0.4rem;
  font-size: 0.8rem;
  padding: 0.25rem 0.65rem;
  border-radius: 999px;
  background: rgba(56, 189, 248, 0.12);
  color: #7dd3fc;
  border: 1px solid rgba(56, 189, 248, 0.4);
  margin-bottom: 0.75rem;
}

.pricing-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 1.75rem;
  margin-top: 2rem;
}

@media (max-width: 960px) {
  .pricing-grid {
    grid-template-columns: 1fr;
  }
}
.price-card {
  border-radius: 1.5rem;
  border: 1px solid rgba(148, 163, 184, 0.2);
  background: radial-gradient(circle at top left, rgba(56, 189, 248, 0.14), rgba(15, 23, 42, 0.96));
  padding: 1.75rem 1.6rem;
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
  position: relative;
  overflow: hidden;
}

.price-card.highlight {
  border-color: rgba(251, 191, 36, 0.7);
  box-shadow: 0 0 0 1px rgba(251, 191, 36, 0.15), 0 24px 60px rgba(15, 23, 42, 0.9);
}

.price-label {
  font-size: 0.8rem;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  opacity: 0.7;
}

.price-title {
  font-size: 1.2rem;
  font-weight: 600;
}

.price-number {
  font-size: 1.8rem;
  font-weight: 600;
  margin-top: 0.25rem;
  display: flex;
  align-items: baseline;
  gap: 0.25rem;
}

.price-number span {
  font-size: 0.85rem;
  opacity: 0.7;
}

.price-list {
  list-style: none;
  padding: 0;
  margin: 0.75rem 0 1rem 0;
  font-size: 0.9rem;
  display: flex;
  flex-direction: column;
  gap: 0.4rem;
}

.price-list li::before {
  content: "• ";
  color: #a5b4fc;
}

.price-note {
  font-size: 0.8rem;
  opacity: 0.7;
  margin-top: 0.4rem;
}

.price-cta {
  margin-top: auto;
  display: flex;
  flex-direction: column;
  gap: 0.35rem;
}

.price-cta .btn {
  width: 100%;
  justify-content: center;
}

.pricing-footnote {
  font-size: 0.8rem;
  opacity: 0.7;
  margin-top: 1rem;
}

/* ------------------------------------------------
   SUCCESS HTML
--------------------------------------------------*/
.success-page {
  min-height: 100vh;
  display: flex;
  flex-direction: column;
}

.success-main {
  flex: 1;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 4rem 1.5rem;
}

.success-card {
  max-width: 720px;
  width: 100%;
  border-radius: 1.75rem;
  border: 1px solid rgba(148, 163, 184, 0.3);
  padding: 2.4rem 2.1rem;
  background: radial-gradient(circle at top left, rgba(56, 189, 248, 0.12), rgba(15, 23, 42, 0.96));
  box-shadow: 0 24px 60px rgba(15, 23, 42, 0.9);
}

.success-kicker {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  font-size: 0.8rem;
  padding: 0.25rem 0.7rem;
  border-radius: 999px;
  background: rgba(22, 163, 74, 0.15);
  color: #bbf7d0;
  border: 1px solid rgba(34, 197, 94, 0.4);
  margin-bottom: 0.8rem;
}

.success-card h1 {
  font-size: 1.8rem;
  margin-bottom: 0.6rem;
}

.success-lead {
  font-size: 0.98rem;
  opacity: 0.9;
  margin-bottom: 1.4rem;
}

.success-list {
  list-style: none;
  padding: 0;
  margin: 0 0 1.6rem 0;
  font-size: 0.95rem;
}

.success-list li {
  display: flex;
  gap: 0.7rem;
  align-items: flex-start;
  margin-bottom: 0.6rem;
}

.success-list li span {
  font-size: 1.1rem;
  flex-shrink: 0;
  margin-top: 0.09rem;
}

.success-note {
  font-size: 0.85rem;
  opacity: 0.7;
  margin-bottom: 1.4rem;
}

.success-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 0.75rem;
  align-items: center;
}

.success-meta {
  font-size: 0.83rem;
  opacity: 0.7;
}

@media (max-width: 640px) {
  .success-card {
    padding: 1.8rem 1.5rem;
  }
  .success-card h1 {
    font-size: 1.5rem;
  }
}

/*# sourceMappingURL=styles.css.map */
