:root {
  --bg-1: #f7f1e8;
  --bg-2: #e4f6f3;
  --ink: #1f2933;
  --muted: #4b5563;
  --accent: #0f766e;
  --accent-strong: #115e59;
  --accent-warm: #f59e0b;
  --danger: #b91c1c;
  --card: rgba(255, 255, 255, 0.88);
  --border: rgba(17, 24, 39, 0.12);
  --shadow: 0 24px 60px rgba(15, 23, 42, 0.14);
}

* {
  box-sizing: border-box;
}

body {
  font-family: "Space Grotesk", "Segoe UI", sans-serif;
  color: var(--ink);
  background: radial-gradient(circle at top, var(--bg-2), var(--bg-1) 55%);
  min-height: 100vh;
  position: relative;
}

body::before,
body::after {
  content: "";
  position: fixed;
  width: 420px;
  height: 420px;
  border-radius: 50%;
  z-index: -1;
  filter: blur(0);
  opacity: 0.35;
  pointer-events: none;
}

body::before {
  top: -140px;
  right: -120px;
  background: radial-gradient(circle, #fcd34d, transparent 70%);
}

body::after {
  bottom: -180px;
  left: -140px;
  background: radial-gradient(circle, #5eead4, transparent 70%);
}

h1,
h2,
h3 {
  font-family: "Fraunces", "Times New Roman", serif;
  letter-spacing: -0.02em;
}

a {
  color: var(--accent);
  text-decoration: none;
}

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

.page-shell {
  max-width: 1120px;
  margin: 0 auto;
  padding: 0 1.5rem;
}

.nav-shell {
  background: rgba(255, 255, 255, 0.8);
  border-bottom: 1px solid var(--border);
  backdrop-filter: blur(10px);
}

.brand {
  font-weight: 700;
  letter-spacing: -0.02em;
}

.hero {
  background: linear-gradient(120deg, #fde68a 0%, #fcd34d 40%, #99f6e4 100%);
  color: #1b1b1b;
  border-radius: 28px;
  border: 1px solid rgba(255, 255, 255, 0.8);
  box-shadow: var(--shadow);
  position: relative;
  overflow: hidden;
}

.hero::after {
  content: "";
  position: absolute;
  inset: auto -30% -50% -30%;
  height: 220px;
  background: radial-gradient(circle, rgba(255, 255, 255, 0.65), transparent 70%);
}

.home-hero {
  position: relative;
}

.hero-grid {
  display: grid;
  gap: 2.5rem;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  align-items: center;
  text-align: left;
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 1rem;
}

.hero-meta {
  display: flex;
  flex-wrap: wrap;
  gap: 1.5rem;
  margin-top: 1.6rem;
}

.hero-meta span {
  font-size: 1.2rem;
  font-weight: 700;
  display: block;
}

.hero-meta small {
  text-transform: uppercase;
  letter-spacing: 0.12em;
  font-size: 0.65rem;
  color: var(--muted);
}

.hero-panel {
  background: rgba(255, 255, 255, 0.92);
  border: 1px solid var(--border);
  border-radius: 24px;
  padding: 1.5rem;
  box-shadow: 0 20px 40px rgba(15, 23, 42, 0.12);
}

.panel-top {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 1rem;
}

.panel-pill {
  background: rgba(15, 118, 110, 0.12);
  color: var(--accent-strong);
  padding: 0.3rem 0.7rem;
  border-radius: 999px;
  font-size: 0.75rem;
  font-weight: 600;
}

.panel-dots span {
  display: inline-block;
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: rgba(15, 23, 42, 0.2);
  margin-left: 0.35rem;
}

.panel-body {
  display: grid;
  grid-template-columns: auto 1fr;
  gap: 1.5rem;
  align-items: center;
}

.qr-mock {
  width: 120px;
  height: 120px;
  border-radius: 18px;
  border: 1px solid var(--border);
  background:
    linear-gradient(#111827, #111827) 10px 10px / 28px 28px no-repeat,
    linear-gradient(#111827, #111827) calc(100% - 38px) 10px / 28px 28px no-repeat,
    linear-gradient(#111827, #111827) 10px calc(100% - 38px) / 28px 28px no-repeat,
    #ffffff;
  position: relative;
  overflow: hidden;
  box-shadow: inset 0 0 0 8px #fff;
}

.qr-mock::before {
  content: "";
  position: absolute;
  inset: 24px;
  background:
    repeating-linear-gradient(90deg, rgba(17, 24, 39, 0.8) 0 6px, transparent 6px 12px),
    repeating-linear-gradient(0deg, rgba(17, 24, 39, 0.8) 0 6px, transparent 6px 12px);
  border-radius: 8px;
  opacity: 0.7;
}

.panel-title {
  text-transform: uppercase;
  letter-spacing: 0.12em;
  font-size: 0.7rem;
  color: var(--muted);
}

.panel-url {
  font-size: 1.05rem;
  font-weight: 600;
  margin-top: 0.4rem;
}

.panel-metrics {
  display: flex;
  gap: 1.5rem;
  margin-top: 1rem;
}

.panel-metrics span {
  display: block;
  font-size: 0.7rem;
  text-transform: uppercase;
  letter-spacing: 0.12em;
  color: var(--muted);
}

.panel-metrics strong {
  display: block;
  margin-top: 0.35rem;
  font-size: 1.1rem;
}

.panel-footer {
  margin-top: 1.2rem;
  padding-top: 1rem;
  border-top: 1px solid rgba(15, 23, 42, 0.1);
  display: flex;
  justify-content: space-between;
  font-size: 0.85rem;
  color: var(--muted);
}

.demo-input {
  display: flex;
  align-items: center;
  gap: 0.6rem;
  margin: 0.6rem 0;
}

.demo-input input {
  flex: 1;
  border: 1px solid var(--border);
  border-radius: 999px;
  padding: 0.45rem 0.9rem;
  font-size: 0.85rem;
  background: #f8fafc;
  color: var(--ink);
}

.btn-sm {
  padding: 0.4rem 0.9rem;
  font-size: 0.8rem;
}

.section-header {
  max-width: 640px;
  margin: 0 auto;
}

.feature-grid,
.step-grid,
.usecase-grid {
  display: grid;
  gap: 1.5rem;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
}

.feature-card,
.step-card,
.usecase-card {
  background: rgba(255, 255, 255, 0.9);
  border: 1px solid var(--border);
  border-radius: 22px;
  padding: 1.6rem;
  box-shadow: 0 14px 28px rgba(15, 23, 42, 0.08);
}

.types-grid {
  display: grid;
  gap: 1.5rem;
  grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
}

.type-card {
  background: rgba(255, 255, 255, 0.92);
  border: 1px solid var(--border);
  border-radius: 22px;
  padding: 1.5rem;
  box-shadow: 0 14px 30px rgba(15, 23, 42, 0.08);
}

.type-label {
  display: inline-flex;
  padding: 0.2rem 0.7rem;
  border-radius: 999px;
  font-size: 0.7rem;
  font-weight: 600;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--accent-strong);
  background: rgba(15, 118, 110, 0.12);
  margin-bottom: 0.7rem;
}

.showcase-track {
  display: flex;
  gap: 1.4rem;
  overflow-x: auto;
  padding-bottom: 0.5rem;
  scroll-snap-type: x mandatory;
}

.showcase-card {
  flex: 0 0 250px;
  background: rgba(255, 255, 255, 0.94);
  border: 1px solid var(--border);
  border-radius: 24px;
  padding: 1.5rem;
  scroll-snap-align: start;
  box-shadow: 0 16px 32px rgba(15, 23, 42, 0.1);
}

.showcase-qr {
  width: 130px;
  height: 130px;
  border-radius: 18px;
  border: 1px solid var(--border);
  margin-bottom: 1rem;
  position: relative;
  overflow: hidden;
}

.qr-theme-a {
  background: linear-gradient(135deg, rgba(15, 118, 110, 0.2), rgba(253, 230, 138, 0.6));
}

.qr-theme-b {
  background: radial-gradient(circle at top, rgba(249, 115, 22, 0.5), transparent 60%),
    linear-gradient(135deg, #fff, rgba(253, 224, 71, 0.5));
}

.qr-theme-c {
  background: linear-gradient(180deg, #111827, #f9fafb);
}

.qr-theme-d {
  background: radial-gradient(circle, rgba(14, 116, 144, 0.2), transparent 60%),
    linear-gradient(135deg, rgba(5, 150, 105, 0.2), rgba(255, 255, 255, 0.8));
}

.qr-theme-e {
  background: linear-gradient(135deg, rgba(59, 130, 246, 0.3), rgba(59, 130, 246, 0.05));
}

.showcase-qr::after {
  content: "";
  position: absolute;
  inset: 20px;
  border-radius: 12px;
  background:
    repeating-linear-gradient(90deg, rgba(17, 24, 39, 0.6) 0 6px, transparent 6px 12px),
    repeating-linear-gradient(0deg, rgba(17, 24, 39, 0.6) 0 6px, transparent 6px 12px);
  opacity: 0.7;
}

.showcase-meta h4 {
  font-weight: 700;
  margin-bottom: 0.35rem;
}

.analytics-preview {
  display: grid;
  gap: 1.5rem;
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
}

.analytics-card {
  background: rgba(255, 255, 255, 0.92);
  border: 1px solid var(--border);
  border-radius: 24px;
  padding: 1.6rem;
  box-shadow: 0 18px 36px rgba(15, 23, 42, 0.1);
}

.analytics-card.span-2 {
  grid-column: span 2;
}

.analytics-head {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
}

.pill {
  background: rgba(15, 118, 110, 0.12);
  color: var(--accent-strong);
  padding: 0.25rem 0.7rem;
  border-radius: 999px;
  font-size: 0.7rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.08em;
}

.mini-bars {
  display: grid;
  grid-template-columns: repeat(14, 1fr);
  gap: 0.4rem;
  align-items: end;
  height: 130px;
  margin-top: 1rem;
}

.mini-bars span {
  height: var(--h);
  min-height: 10px;
  border-radius: 10px 10px 6px 6px;
  background: linear-gradient(180deg, rgba(15, 118, 110, 0.75), rgba(15, 118, 110, 0.2));
}

.mini-stats {
  display: flex;
  gap: 2rem;
  margin-top: 1.2rem;
  color: var(--muted);
  font-size: 0.85rem;
}

.mini-stats strong {
  display: block;
  font-size: 1.1rem;
  color: var(--ink);
}

.stat-line {
  display: grid;
  grid-template-columns: 70px 1fr 50px;
  align-items: center;
  gap: 0.6rem;
  margin-top: 1rem;
  font-size: 0.85rem;
  color: var(--muted);
}

.stat-line strong {
  text-align: right;
  color: var(--ink);
}

.rank-list {
  list-style: none;
  padding: 0;
  margin: 1rem 0 1.2rem;
  display: grid;
  gap: 0.6rem;
}

.rank-list li {
  display: flex;
  justify-content: space-between;
  font-size: 0.85rem;
  color: var(--muted);
}

.rank-list strong {
  color: var(--ink);
}

.heat-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 0.4rem;
  max-width: 120px;
}

.heat-dot {
  width: 22px;
  height: 22px;
  border-radius: 8px;
  background: rgba(15, 118, 110, 0.15);
}

.heat-dot:nth-child(2),
.heat-dot:nth-child(5),
.heat-dot:nth-child(7) {
  background: rgba(15, 118, 110, 0.35);
}

.heat-dot:nth-child(3),
.heat-dot:nth-child(6),
.heat-dot:nth-child(9) {
  background: rgba(15, 118, 110, 0.55);
}

.trust-grid {
  display: grid;
  gap: 1.5rem;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
}

.trust-card {
  background: rgba(255, 255, 255, 0.92);
  border: 1px solid var(--border);
  border-radius: 22px;
  padding: 1.6rem;
  box-shadow: 0 16px 30px rgba(15, 23, 42, 0.08);
}

.pricing-grid {
  display: grid;
  gap: 1.5rem;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
}

.pricing-card {
  background: rgba(255, 255, 255, 0.92);
  border: 1px solid var(--border);
  border-radius: 24px;
  padding: 1.8rem;
  box-shadow: 0 18px 36px rgba(15, 23, 42, 0.1);
  display: grid;
  gap: 0.8rem;
}

.pricing-card.featured {
  border: 2px solid rgba(15, 118, 110, 0.4);
  background: linear-gradient(160deg, rgba(15, 118, 110, 0.12), rgba(255, 255, 255, 0.95));
}

.pricing-tag {
  display: inline-flex;
  padding: 0.25rem 0.8rem;
  border-radius: 999px;
  font-size: 0.7rem;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  background: rgba(15, 118, 110, 0.15);
  color: var(--accent-strong);
  font-weight: 600;
  width: fit-content;
}

.price {
  font-size: 2rem;
  font-weight: 700;
}

.pricing-card ul {
  list-style: none;
  padding: 0;
  margin: 0;
  display: grid;
  gap: 0.4rem;
  color: var(--muted);
}

.btn-block {
  width: 100%;
  text-align: center;
}

.brand-row {
  display: flex;
  flex-wrap: wrap;
  gap: 1rem 1.5rem;
  justify-content: center;
  color: var(--muted);
  text-transform: uppercase;
  letter-spacing: 0.2em;
  font-size: 0.75rem;
}

.testimonial-grid {
  display: grid;
  gap: 1.5rem;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
}

.testimonial-card {
  background: rgba(255, 255, 255, 0.92);
  border: 1px solid var(--border);
  border-radius: 22px;
  padding: 1.6rem;
  box-shadow: 0 16px 30px rgba(15, 23, 42, 0.08);
}

.testimonial-card strong {
  display: block;
  margin-top: 1rem;
  color: var(--ink);
}

.faq-grid {
  display: grid;
  gap: 1rem;
  max-width: 720px;
  margin: 0 auto;
}

.faq-item {
  background: rgba(255, 255, 255, 0.92);
  border: 1px solid var(--border);
  border-radius: 18px;
  padding: 0.9rem 1.2rem;
  box-shadow: 0 12px 24px rgba(15, 23, 42, 0.08);
}

.faq-item summary {
  cursor: pointer;
  font-weight: 600;
  list-style: none;
}

.faq-item summary::-webkit-details-marker {
  display: none;
}

.faq-item p {
  margin-top: 0.8rem;
  color: var(--muted);
}

.footer-form {
  display: grid;
  gap: 0.6rem;
  margin: 0.8rem 0 0.5rem;
}

.footer-form input {
  border: 1px solid var(--border);
  border-radius: 12px;
  padding: 0.55rem 0.8rem;
  background: #fff;
}

.reset-panel {
  display: flex;
  flex-wrap: wrap;
  gap: 0.6rem;
  align-items: center;
}

.reset-panel input {
  border: 1px solid var(--border);
  border-radius: 12px;
  padding: 0.45rem 0.8rem;
  background: #fff;
  min-width: 220px;
}

.profile-hero {
  display: flex;
  flex-wrap: wrap;
  gap: 1.5rem;
  align-items: center;
}

.profile-avatar {
  width: 88px;
  height: 88px;
  border-radius: 24px;
  border: 1px solid var(--border);
  background: rgba(15, 118, 110, 0.12);
  color: var(--accent-strong);
  font-weight: 700;
  font-size: 1.2rem;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
}

.profile-avatar img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.feature-card h3,
.step-card h3,
.usecase-card h4 {
  font-size: 1.1rem;
  font-weight: 700;
  margin-bottom: 0.6rem;
}

.step-number {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 42px;
  height: 42px;
  border-radius: 14px;
  background: rgba(15, 118, 110, 0.12);
  color: var(--accent-strong);
  font-weight: 700;
  margin-bottom: 1rem;
}

.cta-panel {
  background: linear-gradient(120deg, rgba(15, 118, 110, 0.15), rgba(249, 115, 22, 0.15));
  border: 1px solid rgba(15, 118, 110, 0.2);
  border-radius: 28px;
  padding: 2.4rem;
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: space-between;
  gap: 1.5rem;
  box-shadow: 0 20px 40px rgba(15, 23, 42, 0.1);
}

.site-footer {
  background: rgba(255, 255, 255, 0.85);
  border-top: 1px solid var(--border);
  padding: 3rem 0 2rem;
}

.analytics-hero {
  background: linear-gradient(130deg, rgba(15, 118, 110, 0.12), rgba(249, 115, 22, 0.1));
}

.analytics-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 0.8rem;
}

.analytics-grid {
  display: grid;
  grid-template-columns: minmax(0, 2fr) minmax(0, 1fr);
  gap: 1.5rem;
}

.chart-card {
  background: rgba(255, 255, 255, 0.92);
  border: 1px solid var(--border);
  border-radius: 22px;
  padding: 1.5rem;
  box-shadow: 0 16px 32px rgba(15, 23, 42, 0.1);
}

.bar-chart {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(26px, 1fr));
  gap: 0.5rem;
  align-items: end;
  min-height: 180px;
  padding: 0.5rem 0;
}

.bar {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0.35rem;
  min-height: 160px;
  justify-content: flex-end;
}

.bar-fill {
  width: 100%;
  border-radius: 12px 12px 8px 8px;
  background: linear-gradient(180deg, rgba(15, 118, 110, 0.8), rgba(15, 118, 110, 0.2));
  min-height: 8px;
}

.bar strong {
  font-size: 0.75rem;
}

.bar span {
  font-size: 0.65rem;
  color: var(--muted);
  text-align: center;
}

.chart-summary {
  display: flex;
  flex-wrap: wrap;
  gap: 1rem;
  margin-top: 1rem;
  font-size: 0.9rem;
  color: var(--muted);
}

.chart-summary strong {
  color: var(--ink);
}

.metric-stack {
  display: grid;
  gap: 1rem;
}

.metric-card {
  background: rgba(255, 255, 255, 0.92);
  border: 1px solid var(--border);
  border-radius: 18px;
  padding: 1.2rem;
  box-shadow: 0 12px 24px rgba(15, 23, 42, 0.08);
}

.metric-card h3 {
  font-size: 0.95rem;
  font-weight: 700;
  margin-bottom: 0.8rem;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  color: var(--muted);
}

.metric-row {
  display: grid;
  grid-template-columns: minmax(70px, 1fr) minmax(80px, 2fr) auto;
  align-items: center;
  gap: 0.6rem;
  font-size: 0.85rem;
  padding: 0.35rem 0;
}

.progress {
  width: 100%;
  height: 8px;
  border-radius: 999px;
  background: rgba(15, 23, 42, 0.08);
  overflow: hidden;
}

.progress-fill {
  height: 100%;
  background: linear-gradient(90deg, rgba(15, 118, 110, 0.6), rgba(15, 118, 110, 0.2));
}

.footer-grid {
  display: grid;
  gap: 2rem;
  grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
}

.footer-grid h4 {
  font-weight: 700;
  margin-bottom: 0.75rem;
}

.footer-links {
  display: grid;
  gap: 0.45rem;
}

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

.footer-bottom {
  border-top: 1px solid rgba(15, 23, 42, 0.08);
  margin-top: 2rem;
  padding-top: 1.5rem;
  display: flex;
  flex-wrap: wrap;
  gap: 1rem;
  justify-content: space-between;
  color: var(--muted);
  font-size: 0.85rem;
}

.tag {
  display: inline-flex;
  align-items: center;
  gap: 0.4rem;
  padding: 0.3rem 0.8rem;
  border-radius: 999px;
  background: rgba(15, 118, 110, 0.12);
  color: var(--accent-strong);
  font-size: 0.85rem;
  font-weight: 600;
}

.glass-card {
  background: var(--card);
  border: 1px solid var(--border);
  border-radius: 20px;
  box-shadow: 0 16px 40px rgba(15, 23, 42, 0.1);
}

.dashboard-hero {
  background: linear-gradient(120deg, rgba(253, 230, 138, 0.6) 0%, rgba(94, 234, 212, 0.45) 60%, rgba(249, 115, 22, 0.2) 100%);
  border: 1px solid rgba(255, 255, 255, 0.9);
  position: relative;
  overflow: hidden;
}

.dashboard-hero::after {
  content: "";
  position: absolute;
  inset: auto 10% -120px 10%;
  height: 200px;
  background: radial-gradient(circle, rgba(255, 255, 255, 0.6), transparent 70%);
  opacity: 0.9;
}

.stat-grid {
  display: grid;
  gap: 1rem;
  grid-template-columns: repeat(auto-fit, minmax(190px, 1fr));
}

.stat-card {
  background: rgba(255, 255, 255, 0.9);
  border: 1px solid var(--border);
  border-radius: 18px;
  padding: 1rem 1.2rem;
  box-shadow: 0 14px 28px rgba(15, 23, 42, 0.08);
  position: relative;
  overflow: hidden;
}

.stat-card::after {
  content: "";
  position: absolute;
  inset: -40% -20% auto -20%;
  height: 120px;
  background: radial-gradient(circle, rgba(20, 184, 166, 0.12), transparent 70%);
  pointer-events: none;
}

.stat-label {
  text-transform: uppercase;
  letter-spacing: 0.16em;
  font-size: 0.65rem;
  color: var(--muted);
}

.stat-value {
  font-size: 1.9rem;
  font-weight: 700;
  margin-top: 0.25rem;
  font-family: "Fraunces", "Times New Roman", serif;
}

.stat-value-sm {
  font-size: 1.1rem;
  font-weight: 600;
  margin-top: 0.35rem;
}

.stat-meta {
  font-size: 0.85rem;
  color: var(--muted);
  margin-top: 0.2rem;
}

.filter-card {
  backdrop-filter: blur(10px);
}

.vcard-media {
  display: flex;
  flex-wrap: wrap;
  gap: 1rem;
  align-items: center;
}

.vcard-shell {
  display: flex;
  justify-content: center;
}

.vcard-card {
  width: min(940px, 100%);
  background: rgba(255, 255, 255, 0.92);
  border: 1px solid var(--border);
  border-radius: 28px;
  padding: 2.5rem;
  box-shadow: 0 30px 60px rgba(15, 23, 42, 0.16);
  position: relative;
  overflow: hidden;
}

.vcard-card::before {
  content: "";
  position: absolute;
  inset: -140px -80px auto auto;
  width: 320px;
  height: 320px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(15, 118, 110, 0.18), transparent 70%);
  pointer-events: none;
}

.vcard-hero {
  display: flex;
  justify-content: space-between;
  gap: 2rem;
  align-items: center;
  flex-wrap: wrap;
}

.vcard-identity {
  display: flex;
  align-items: center;
  gap: 1.5rem;
}

.vcard-avatar {
  width: 96px;
  height: 96px;
  border-radius: 24px;
  background: rgba(15, 118, 110, 0.12);
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 700;
  font-size: 1.8rem;
  color: var(--accent-strong);
  overflow: hidden;
  border: 1px solid var(--border);
}

.vcard-avatar img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.vcard-name {
  font-size: 2.2rem;
  font-weight: 700;
  letter-spacing: -0.02em;
  margin-top: 0.4rem;
}

.vcard-title {
  font-size: 1rem;
  color: var(--muted);
  margin-top: 0.4rem;
}

.vcard-brand {
  max-height: 72px;
  max-width: 200px;
  object-fit: contain;
  background: #fff;
  border: 1px solid var(--border);
  border-radius: 16px;
  padding: 0.4rem 0.6rem;
}

.vcard-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 0.6rem;
  margin-top: 2rem;
}

.vcard-grid {
  display: grid;
  gap: 1.5rem;
  grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
  margin-top: 2rem;
}

.vcard-section {
  background: rgba(255, 255, 255, 0.78);
  border: 1px solid var(--border);
  border-radius: 18px;
  padding: 1.3rem;
  box-shadow: 0 12px 24px rgba(15, 23, 42, 0.08);
}

.vcard-section h2 {
  font-size: 1rem;
  text-transform: uppercase;
  letter-spacing: 0.12em;
  color: var(--muted);
  margin-bottom: 0.8rem;
}

.vcard-row {
  display: flex;
  justify-content: space-between;
  gap: 1rem;
  padding: 0.5rem 0;
  border-bottom: 1px solid rgba(15, 23, 42, 0.08);
  align-items: flex-start;
}

.vcard-row:last-child {
  border-bottom: none;
}

.vcard-row span {
  font-size: 0.78rem;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  color: var(--muted);
  min-width: 130px;
  flex: 0 0 130px;
}

.vcard-row a,
.vcard-row p {
  margin: 0;
  color: var(--ink);
  font-weight: 600;
  text-align: right;
  word-break: break-word;
  overflow-wrap: anywhere;
  flex: 1;
  max-width: 100%;
}

.vcard-photo {
  width: 96px;
  height: 96px;
  border-radius: 18px;
  object-fit: cover;
  border: 1px solid var(--border);
  background: #fff;
}

.vcard-logo {
  max-height: 64px;
  max-width: 180px;
  object-fit: contain;
  border-radius: 12px;
  padding: 0.35rem 0.5rem;
  border: 1px solid var(--border);
  background: #fff;
}

.chip {
  display: inline-flex;
  align-items: center;
  gap: 0.35rem;
  padding: 0.25rem 0.65rem;
  border-radius: 999px;
  font-size: 0.75rem;
  font-weight: 600;
  background: rgba(15, 118, 110, 0.12);
  color: var(--accent-strong);
}

.chip-muted {
  background: rgba(148, 163, 184, 0.25);
  color: var(--muted);
}

.chip-accent {
  background: rgba(16, 185, 129, 0.18);
  color: #0f766e;
}

.table-meta {
  background: rgba(255, 255, 255, 0.7);
  border-radius: 16px;
  padding: 0.6rem 0.8rem;
}

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.4rem;
  padding: 0.75rem 1.4rem;
  border-radius: 999px;
  font-weight: 600;
  transition: transform 0.2s ease, box-shadow 0.2s ease;
}

.btn-primary {
  background: var(--accent);
  color: #fff;
  box-shadow: 0 12px 20px rgba(15, 118, 110, 0.25);
}

.btn-primary:hover {
  background: var(--accent-strong);
  transform: translateY(-1px);
}

.btn-ghost {
  border: 1px solid var(--border);
  color: var(--ink);
  background: rgba(255, 255, 255, 0.7);
}

.btn-ghost:hover {
  transform: translateY(-1px);
}

.btn-warn {
  color: var(--danger);
}

input[type="text"],
input[type="email"],
input[type="password"],
input[type="url"],
input[type="tel"],
textarea,
select {
  width: 100%;
  border: 1px solid var(--border);
  border-radius: 14px;
  padding: 0.7rem 0.9rem;
  background: rgba(255, 255, 255, 0.9);
  color: var(--ink);
  box-shadow: 0 10px 24px rgba(15, 23, 42, 0.05);
}

input[type="color"] {
  width: 42px;
  height: 36px;
  border-radius: 10px;
  border: 1px solid var(--border);
}

.label {
  font-weight: 600;
  color: var(--ink);
}

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

.table-wrap {
  overflow-x: auto;
}

table {
  width: 100%;
  border-collapse: collapse;
}

thead tr {
  background: rgba(15, 118, 110, 0.08);
}

th {
  text-transform: uppercase;
  letter-spacing: 0.08em;
  font-size: 0.7rem;
  color: var(--muted);
}

th,
td {
  padding: 0.85rem 1rem;
}

tbody tr {
  border-top: 1px solid rgba(17, 24, 39, 0.08);
}

tbody tr:hover {
  background: rgba(255, 255, 255, 0.7);
}

.reveal {
  opacity: 0;
  transform: translateY(16px);
  animation: rise 0.6s ease forwards;
}

.delay-1 {
  animation-delay: 0.1s;
}

.delay-2 {
  animation-delay: 0.2s;
}

.delay-3 {
  animation-delay: 0.3s;
}

@keyframes rise {
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

@media (prefers-reduced-motion: reduce) {
  .reveal,
  .delay-1,
  .delay-2,
  .delay-3 {
    animation: none;
    opacity: 1;
    transform: none;
  }
}

@media (max-width: 768px) {
  .hero {
    border-radius: 22px;
  }

  .dashboard-hero {
    border-radius: 18px;
  }

  .stat-value {
    font-size: 1.5rem;
  }

  .hero-grid {
    text-align: center;
  }

  .hero-actions,
  .hero-meta {
    justify-content: center;
  }

  .panel-body {
    grid-template-columns: 1fr;
    text-align: center;
    justify-items: center;
  }

  .panel-metrics {
    justify-content: center;
  }

  .panel-footer {
    flex-direction: column;
    align-items: center;
    gap: 0.4rem;
  }

  .demo-input {
    flex-direction: column;
    align-items: stretch;
  }

  .cta-panel {
    text-align: center;
    justify-content: center;
  }

  .profile-hero {
    text-align: center;
    justify-content: center;
  }

  .analytics-preview {
    grid-template-columns: 1fr;
  }

  .analytics-card.span-2 {
    grid-column: span 1;
  }

  .mini-stats {
    flex-direction: column;
    gap: 0.6rem;
  }

  .stat-line {
    grid-template-columns: 1fr;
    gap: 0.4rem;
  }

  .stat-line strong {
    text-align: left;
  }

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

  .metric-row {
    grid-template-columns: 1fr;
  }

  .metric-row strong {
    justify-self: start;
  }

  .vcard-card {
    padding: 1.6rem;
  }

  .vcard-identity {
    flex-direction: column;
    align-items: flex-start;
  }

  .vcard-row {
    flex-direction: column;
    align-items: flex-start;
  }

  .vcard-row a,
  .vcard-row p {
    text-align: left;
  }

  .vcard-row span {
    min-width: 0;
    flex: none;
  }
}
