/* ===== RESET & TOKENS ===== */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }

:root {
  --bg: #07080f;
  --bg-2: #0d0f1a;
  --surface: #111428;
  --surface-2: #181b30;
  --border: rgba(255,255,255,0.07);
  --border-bright: rgba(255,255,255,0.14);
  --fg: #e8eaf0;
  --fg-muted: #8890a8;
  --fg-dim: #4a5270;
  --accent: #00d4ff;
  --accent-glow: rgba(0, 212, 255, 0.15);
  --accent-dim: rgba(0, 212, 255, 0.08);
  --amber: #f5a623;
  --green: #10b981;
  --text-primary: #eef0f8;
  --text-secondary: #8890a8;
  --text-dim: #4a5270;
  --font-display: 'Space Grotesk', system-ui, sans-serif;
  --font-mono: 'DM Mono', 'Fira Code', monospace;
  --radius: 10px;
  --radius-lg: 16px;
  --section-pad: 100px 0;
}

html { scroll-behavior: smooth; }

body {
  background: var(--bg);
  color: var(--fg);
  font-family: var(--font-display);
  font-size: 16px;
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
  overflow-x: hidden;
}

/* ===== NAV ===== */
.nav {
  position: sticky;
  top: 0;
  z-index: 100;
  padding: 20px 40px;
  border-bottom: 1px solid var(--border);
  background: rgba(7, 8, 15, 0.8);
  backdrop-filter: blur(12px);
}

.nav-inner {
  display: flex;
  align-items: baseline;
  gap: 12px;
  max-width: 1100px;
  margin: 0 auto;
}

.nav-logo {
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 18px;
  letter-spacing: -0.3px;
  color: var(--text-primary);
}

.nav-tagline {
  font-size: 12px;
  color: var(--text-dim);
  font-family: var(--font-mono);
  letter-spacing: 0.5px;
}

/* ===== HERO ===== */
.hero {
  position: relative;
  min-height: 88vh;
  display: flex;
  align-items: center;
  padding: 80px 40px 100px;
  overflow: hidden;
}

.hero-bg-grid {
  position: absolute;
  inset: 0;
  background-image:
    linear-gradient(var(--border) 1px, transparent 1px),
    linear-gradient(90deg, var(--border) 1px, transparent 1px);
  background-size: 64px 64px;
  mask-image: radial-gradient(ellipse 80% 60% at 50% 40%, black 0%, transparent 80%);
  -webkit-mask-image: radial-gradient(ellipse 80% 60% at 50% 40%, black 0%, transparent 80%);
}

.hero-bg-glow {
  position: absolute;
  top: -20%;
  left: 50%;
  transform: translateX(-50%);
  width: 700px;
  height: 500px;
  background: radial-gradient(ellipse at center, rgba(0, 212, 255, 0.07) 0%, transparent 65%);
  pointer-events: none;
}

.hero-content {
  position: relative;
  max-width: 1100px;
  margin: 0 auto;
  width: 100%;
}

.hero-eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-family: var(--font-mono);
  font-size: 12px;
  color: var(--text-muted);
  letter-spacing: 1px;
  text-transform: uppercase;
  margin-bottom: 32px;
}

.eyebrow-dot {
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: var(--accent);
  box-shadow: 0 0 8px var(--accent);
}

.hero-headline {
  display: flex;
  flex-direction: column;
  font-size: clamp(52px, 7vw, 88px);
  font-weight: 700;
  line-height: 1.05;
  letter-spacing: -3px;
  margin-bottom: 36px;
  color: var(--text-primary);
}

.headline-line { display: block; }

.headline-accent {
  color: transparent;
  -webkit-text-stroke: 2px var(--accent);
  opacity: 0.9;
}

.hero-sub {
  max-width: 580px;
  font-size: 18px;
  line-height: 1.7;
  color: var(--text-secondary);
  margin-bottom: 56px;
}

.hero-stat-row {
  display: flex;
  align-items: center;
  gap: 0;
}

.hero-stat {
  display: flex;
  flex-direction: column;
  gap: 4px;
  padding: 0 40px;
}

.hero-stat:first-child { padding-left: 0; }

.stat-value {
  font-size: 36px;
  font-weight: 700;
  color: var(--text-primary);
  letter-spacing: -1px;
}

.stat-label {
  font-size: 12px;
  color: var(--text-dim);
  font-family: var(--font-mono);
  text-transform: uppercase;
  letter-spacing: 0.5px;
}

.hero-stat-divider {
  width: 1px;
  height: 40px;
  background: var(--border-bright);
}

/* ===== HERO SHAPES ===== */
.hero-shapes {
  position: absolute;
  right: 0;
  top: 50%;
  transform: translateY(-50%);
  width: 500px;
  height: 500px;
  pointer-events: none;
}

.shape-ring {
  position: absolute;
  border-radius: 50%;
  border: 1px solid rgba(0, 212, 255, 0.1);
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
}

.shape-ring-1 { width: 300px; height: 300px; border-color: rgba(0, 212, 255, 0.12); }
.shape-ring-2 { width: 450px; height: 450px; border-color: rgba(0, 212, 255, 0.07); }
.shape-ring-3 { width: 580px; height: 580px; border-color: rgba(0, 212, 255, 0.04); }

.shape-dot {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: var(--accent);
  box-shadow: 0 0 20px var(--accent), 0 0 40px rgba(0, 212, 255, 0.4);
}

/* ===== SECTION COMMON ===== */
.section-header {
  margin-bottom: 64px;
}

.section-label {
  display: inline-block;
  font-family: var(--font-mono);
  font-size: 11px;
  text-transform: uppercase;
  letter-spacing: 2px;
  color: var(--accent);
  margin-bottom: 16px;
}

.section-label--cyan { color: var(--accent); }

.section-title {
  font-size: clamp(36px, 4vw, 52px);
  font-weight: 700;
  letter-spacing: -1.5px;
  line-height: 1.1;
  color: var(--text-primary);
}

.section-title--light { color: var(--text-primary); }

/* ===== 3 TEMPS ===== */
.temps {
  padding: var(--section-pad);
  padding-left: 40px;
  padding-right: 40px;
  background: var(--bg-2);
  border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
}

.temps .section-header {
  max-width: 1100px;
  margin: 0 auto 64px;
}

.temps-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1px;
  max-width: 1100px;
  margin: 0 auto;
  background: var(--border);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  overflow: hidden;
}

.temps-card {
  background: var(--surface);
  padding: 48px 40px;
  position: relative;
}

.temps-number {
  font-family: var(--font-mono);
  font-size: 11px;
  color: var(--text-dim);
  letter-spacing: 1px;
  margin-bottom: 24px;
}

.temps-name {
  font-size: 26px;
  font-weight: 700;
  letter-spacing: -0.5px;
  color: var(--text-primary);
  margin-bottom: 16px;
}

.temps-desc {
  font-size: 15px;
  line-height: 1.7;
  color: var(--text-secondary);
  margin-bottom: 28px;
}

.temps-tag {
  display: inline-block;
  font-family: var(--font-mono);
  font-size: 11px;
  padding: 5px 10px;
  border-radius: 20px;
  border: 1px solid rgba(0, 212, 255, 0.25);
  color: var(--accent);
  background: var(--accent-dim);
  letter-spacing: 0.5px;
}

/* ===== SELECTABILITY METER ===== */
.meter-section {
  padding: var(--section-pad);
  padding-left: 40px;
  padding-right: 40px;
  position: relative;
}

.meter-bg {
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, rgba(0, 212, 255, 0.03) 0%, transparent 50%);
  pointer-events: none;
}

.meter-layout {
  max-width: 1100px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1fr 1.4fr;
  gap: 80px;
  align-items: center;
  position: relative;
}

.meter-display {
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  padding: 48px 40px;
  position: relative;
  overflow: hidden;
}

.meter-display::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 1px;
  background: linear-gradient(90deg, transparent, var(--accent), transparent);
  opacity: 0.5;
}

.meter-label-top {
  font-family: var(--font-mono);
  font-size: 10px;
  text-transform: uppercase;
  letter-spacing: 2px;
  color: var(--text-dim);
  margin-bottom: 16px;
}

.meter-value {
  display: flex;
  align-items: flex-end;
  gap: 4px;
  margin-bottom: 8px;
}

.meter-number {
  font-size: 80px;
  font-weight: 700;
  letter-spacing: -4px;
  line-height: 1;
  color: var(--text-primary);
}

.meter-unit {
  font-size: 32px;
  font-weight: 600;
  color: var(--accent);
  margin-bottom: 8px;
}

.meter-delta {
  display: flex;
  align-items: center;
  gap: 6px;
  margin-bottom: 32px;
  font-family: var(--font-mono);
  font-size: 13px;
  color: var(--green);
}

.meter-bar {
  height: 6px;
  background: var(--surface-2);
  border-radius: 3px;
  position: relative;
  margin-bottom: 8px;
}

.meter-fill {
  height: 100%;
  background: linear-gradient(90deg, var(--accent), rgba(0, 212, 255, 0.5));
  border-radius: 3px;
  transition: width 1s ease;
  position: relative;
}

.meter-fill::after {
  content: '';
  position: absolute;
  right: 0;
  top: -3px;
  width: 12px;
  height: 12px;
  border-radius: 50%;
  background: var(--accent);
  box-shadow: 0 0 10px var(--accent);
}

.meter-target {
  position: absolute;
  top: -6px;
  bottom: -6px;
  width: 2px;
  background: var(--amber);
  border-radius: 1px;
  opacity: 0.8;
}

.meter-target::before {
  content: 'target';
  position: absolute;
  top: -20px;
  left: 50%;
  transform: translateX(-50%);
  font-size: 10px;
  color: var(--amber);
  font-family: var(--font-mono);
  white-space: nowrap;
}

.meter-axis {
  display: flex;
  justify-content: space-between;
  font-family: var(--font-mono);
  font-size: 10px;
  color: var(--text-dim);
}

.meter-insights-title {
  font-size: 16px;
  font-weight: 600;
  color: var(--text-primary);
  margin-bottom: 32px;
}

.meter-insights-list {
  display: flex;
  flex-direction: column;
  gap: 0;
  margin-bottom: 32px;
}

.insight-row {
  display: grid;
  grid-template-columns: 36px 1fr auto;
  gap: 16px;
  align-items: center;
  padding: 16px 0;
  border-bottom: 1px solid var(--border);
}

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

.insight-rank {
  font-family: var(--font-mono);
  font-size: 13px;
  font-weight: 600;
  color: var(--accent);
  background: var(--accent-dim);
  border: 1px solid rgba(0, 212, 255, 0.2);
  border-radius: 6px;
  text-align: center;
  padding: 4px 0;
}

.insight-desc {
  font-size: 14px;
  color: var(--text-secondary);
}

.insight-change {
  font-family: var(--font-mono);
  font-size: 11px;
  color: var(--text-dim);
  white-space: nowrap;
}

.meter-footnote {
  font-size: 13px;
  color: var(--text-dim);
  line-height: 1.6;
  border-left: 2px solid var(--border-bright);
  padding-left: 16px;
}

/* ===== HOW IT WORKS ===== */
.how {
  padding: var(--section-pad);
  padding-left: 40px;
  padding-right: 40px;
  background: var(--bg-2);
  border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
}

.how .section-header {
  max-width: 1100px;
  margin: 0 auto 64px;
}

.how-steps {
  max-width: 1100px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 0;
  position: relative;
}

.how-step {
  padding: 0 32px 0 0;
  position: relative;
}

.step-num {
  font-family: var(--font-mono);
  font-size: 48px;
  font-weight: 700;
  color: var(--surface-2);
  line-height: 1;
  margin-bottom: 20px;
  letter-spacing: -2px;
}

.step-title {
  font-size: 18px;
  font-weight: 600;
  color: var(--text-primary);
  margin-bottom: 12px;
  letter-spacing: -0.3px;
}

.step-desc {
  font-size: 14px;
  color: var(--text-secondary);
  line-height: 1.6;
}

.step-connector {
  position: absolute;
  top: 16px;
  right: 0;
  width: calc(100% - 32px);
  height: 1px;
  background: linear-gradient(90deg, var(--border-bright), var(--border));
}

.how-outro {
  max-width: 1100px;
  margin: 48px auto 0;
  padding-top: 40px;
  border-top: 1px solid var(--border);
  text-align: center;
}

.outro-label {
  font-family: var(--font-mono);
  font-size: 13px;
  color: var(--text-dim);
  letter-spacing: 0.5px;
}

/* ===== CLOSING ===== */
.closing {
  padding: 120px 40px;
  position: relative;
  overflow: hidden;
}

.closing::before {
  content: '';
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 800px;
  height: 400px;
  background: radial-gradient(ellipse, rgba(0, 212, 255, 0.04) 0%, transparent 70%);
  pointer-events: none;
}

.closing-inner {
  max-width: 720px;
  margin: 0 auto;
  text-align: center;
  position: relative;
}

.closing-badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-family: var(--font-mono);
  font-size: 11px;
  color: var(--text-dim);
  letter-spacing: 1px;
  text-transform: uppercase;
  margin-bottom: 40px;
  border: 1px solid var(--border);
  border-radius: 20px;
  padding: 6px 14px;
}

.closing-headline {
  font-size: clamp(38px, 5vw, 58px);
  font-weight: 700;
  letter-spacing: -2px;
  line-height: 1.1;
  color: var(--text-primary);
  margin-bottom: 28px;
}

.closing-body {
  font-size: 17px;
  line-height: 1.75;
  color: var(--text-secondary);
  margin-bottom: 48px;
}

.closing-separator {
  width: 1px;
  height: 48px;
  background: var(--border-bright);
  margin: 0 auto 48px;
}

.closing-victory {
  font-size: 20px;
  font-weight: 600;
  color: var(--accent);
  letter-spacing: -0.3px;
}

/* ===== FOOTER ===== */
.footer {
  padding: 32px 40px;
  border-top: 1px solid var(--border);
}

.footer-inner {
  max-width: 1100px;
  margin: 0 auto;
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.footer-brand {
  display: flex;
  align-items: baseline;
  gap: 10px;
}

.footer-name {
  font-size: 15px;
  font-weight: 700;
  color: var(--text-primary);
}

.footer-slug {
  font-family: var(--font-mono);
  font-size: 12px;
  color: var(--text-dim);
}

.footer-meta {
  font-family: var(--font-mono);
  font-size: 12px;
  color: var(--text-dim);
}

/* ===== RESPONSIVE ===== */
@media (max-width: 900px) {
  .temps-grid { grid-template-columns: 1fr; }
  .how-steps { grid-template-columns: 1fr 1fr; }
  .meter-layout { grid-template-columns: 1fr; gap: 48px; }
  .hero-stat-row { flex-wrap: wrap; gap: 24px; }
  .hero-stat-divider { display: none; }
  .hero-stat { padding: 0; }
  .hero-shapes { display: none; }
  .step-connector { display: none; }
}

@media (max-width: 600px) {
  .hero { padding: 60px 24px 80px; }
  .temps, .how, .meter-section { padding-left: 24px; padding-right: 24px; }
  .closing { padding: 80px 24px; }
  .footer { padding: 24px; }
  .how-steps { grid-template-columns: 1fr; }
  .hero-headline { letter-spacing: -1.5px; }
  .nav { padding: 16px 24px; }
  .section-title { font-size: 30px; }
  .insight-row { grid-template-columns: 32px 1fr; }
  .insight-change { display: none; }
}

/* ===== AUDIT PAGE ===== */
.audit-page {
  max-width: 800px;
  margin: 0 auto;
  padding: 72px 40px 100px;
}

.audit-header {
  text-align: center;
  margin-bottom: 56px;
}

.audit-eyebrow {
  font-family: var(--font-mono);
  font-size: 11px;
  text-transform: uppercase;
  letter-spacing: 2px;
  color: var(--text-dim);
  margin-bottom: 20px;
}

.audit-title {
  font-size: clamp(36px, 5vw, 56px);
  font-weight: 700;
  letter-spacing: -2px;
  color: var(--text-primary);
  margin-bottom: 20px;
}

.audit-sub {
  font-size: 17px;
  line-height: 1.7;
  color: var(--text-secondary);
  max-width: 560px;
  margin: 0 auto;
}

/* FORM CARD */
.audit-form-card {
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  padding: 40px;
  margin-bottom: 48px;
}

.audit-form {
  display: flex;
  flex-direction: column;
  gap: 24px;
}

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

.form-label {
  font-size: 13px;
  font-weight: 600;
  color: var(--text-secondary);
  letter-spacing: 0.2px;
}

.form-input,
.form-textarea {
  width: 100%;
  background: var(--surface-2);
  border: 1px solid var(--border-bright);
  border-radius: var(--radius);
  padding: 12px 16px;
  font-family: var(--font-display);
  font-size: 15px;
  color: var(--text-primary);
  outline: none;
  transition: border-color 0.2s;
  resize: vertical;
}

.form-input::placeholder,
.form-textarea::placeholder {
  color: var(--text-dim);
}

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

.form-submit {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  background: var(--accent);
  color: #07080f;
  font-family: var(--font-display);
  font-size: 15px;
  font-weight: 700;
  border: none;
  border-radius: var(--radius);
  padding: 14px 28px;
  cursor: pointer;
  transition: opacity 0.2s, box-shadow 0.2s;
}

.form-submit:hover:not(:disabled) {
  opacity: 0.88;
  box-shadow: 0 0 20px var(--accent-glow);
}

.form-submit:disabled {
  opacity: 0.55;
  cursor: not-allowed;
}

.btn-label {
  display: block;
}

/* LOADING DOTS */
.loading-dots {
  display: inline-flex;
  gap: 4px;
}

.loading-dots span {
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: currentColor;
  animation: loading-bounce 1.2s ease-in-out infinite;
}

.loading-dots span:nth-child(2) { animation-delay: 0.15s; }
.loading-dots span:nth-child(3) { animation-delay: 0.3s; }

@keyframes loading-bounce {
  0%, 80%, 100% { transform: translateY(0); opacity: 0.6; }
  40% { transform: translateY(-6px); opacity: 1; }
}

.form-error {
  font-size: 13px;
  color: #e05f5f;
  font-family: var(--font-mono);
}

/* RESULTS */
.audit-results {
  display: flex;
  flex-direction: column;
  gap: 40px;
}

.audit-gap {
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  padding: 32px 40px;
}

.gap-label {
  font-size: 13px;
  font-weight: 600;
  color: var(--text-secondary);
  margin-bottom: 16px;
}

.gap-before {
  font-weight: 400;
  color: var(--text-dim);
  font-family: var(--font-mono);
}

.gap-rate-row {
  display: flex;
  align-items: center;
  gap: 16px;
  margin-bottom: 8px;
}

.gap-bar-track {
  flex: 1;
  height: 6px;
  background: var(--surface-2);
  border-radius: 3px;
  overflow: hidden;
}

.gap-bar-fill {
  height: 100%;
  background: linear-gradient(90deg, var(--accent), rgba(0, 212, 255, 0.5));
  border-radius: 3px;
  transition: width 1s ease;
}

.gap-rate-text {
  font-family: var(--font-mono);
  font-size: 13px;
  color: var(--text-secondary);
  white-space: nowrap;
}

.gap-avg-rank {
  font-family: var(--font-mono);
  font-size: 12px;
  color: var(--text-dim);
}

/* RESULT CARDS */
.result-cards {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 16px;
}

.result-card {
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  padding: 24px;
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.result-card.selected {
  border-color: rgba(16, 185, 129, 0.3);
}

.result-card.missed {
  border-color: rgba(255, 255, 255, 0.07);
}

.result-card-top {
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.result-rank {
  font-family: var(--font-mono);
  font-size: 20px;
  font-weight: 700;
  color: var(--text-primary);
}

.result-badge {
  font-family: var(--font-mono);
  font-size: 10px;
  letter-spacing: 0.5px;
  text-transform: uppercase;
  padding: 4px 10px;
  border-radius: 20px;
}

.result-badge--selected {
  background: rgba(16, 185, 129, 0.15);
  border: 1px solid rgba(16, 185, 129, 0.3);
  color: var(--green);
}

.result-badge--missed {
  background: rgba(255, 255, 255, 0.05);
  border: 1px solid var(--border);
  color: var(--text-dim);
}

.result-scenario {
  font-size: 14px;
  font-weight: 600;
  color: var(--text-primary);
}

.result-reason {
  font-size: 13px;
  line-height: 1.6;
  color: var(--text-secondary);
  flex: 1;
}

.result-before-label {
  font-family: var(--font-mono);
  font-size: 10px;
  color: var(--text-dim);
  border-top: 1px solid var(--border);
  padding-top: 10px;
  letter-spacing: 0.3px;
}

/* MCP FEED PREVIEW */
.audit-mcp {
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  overflow: hidden;
}

.mcp-label {
  display: flex;
  align-items: center;
  gap: 8px;
  font-family: var(--font-mono);
  font-size: 11px;
  text-transform: uppercase;
  letter-spacing: 1px;
  color: var(--text-dim);
  padding: 16px 24px;
  border-bottom: 1px solid var(--border);
}

.mcp-label-dot {
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: var(--accent);
  box-shadow: 0 0 6px var(--accent);
}

.mcp-code {
  margin: 0;
  padding: 24px;
  background: var(--bg);
  overflow-x: auto;
}

.mcp-code code {
  font-family: var(--font-mono);
  font-size: 13px;
  color: var(--text-secondary);
  white-space: pre;
}

/* ERROR STATE */
.audit-error {
  text-align: center;
  padding: 48px 40px;
  background: var(--surface);
  border: 1px solid rgba(224, 95, 95, 0.2);
  border-radius: var(--radius-lg);
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 12px;
}

.error-icon {
  width: 36px;
  height: 36px;
  border-radius: 50%;
  background: rgba(224, 95, 95, 0.15);
  border: 1px solid rgba(224, 95, 95, 0.3);
  color: #e05f5f;
  font-size: 18px;
  font-weight: 700;
  display: flex;
  align-items: center;
  justify-content: center;
}

.error-msg {
  font-size: 15px;
  color: var(--text-secondary);
}

/* AUDIT RESPONSIVE */
@media (max-width: 700px) {
  .audit-page { padding: 48px 24px 72px; }
  .audit-form-card { padding: 24px; }
  .result-cards { grid-template-columns: 1fr; }
  .audit-gap { padding: 24px; }
}