:root {
  --ink: #12352c;
  --paper: #f7f5e9;
  --green: #075238;
  --lime: #18dc4b;
  --gold: #e7d28e;
  --blue: #1789c7;
  --red: #d92725;
  --line: #d9decf;
  --coral: #d92725;
}

.brand-logo {
  width: 42px;
  height: 42px;
  object-fit: contain;
}

.brand-mark { display: none; }

.hero-art {
  background: var(--green);
  border: 8px solid var(--gold);
}

.hero-logo {
  position: absolute;
  width: min(245px, 55%);
  aspect-ratio: 1;
  object-fit: contain;
  left: 50%;
  top: 50%;
  transform: translate(-50%, -50%);
  border-radius: 50%;
  box-shadow: 0 0 0 10px rgba(231, 210, 142, .2);
}

.hero-art .orbit { border-color: rgba(24, 220, 75, .5); }
.primary { background: var(--green); }
.light { background: var(--lime); }
.eyebrow, .feature-number, .error { color: var(--red); }

/* Success page styling */
.success-page {
  min-height: calc(100vh - 136px);
  display: grid;
  place-items: center;
  padding: 40px 20px;
}

.success-container {
  max-width: 600px;
  text-align: center;
  background: white;
  padding: 50px 40px;
  border-radius: 8px;
  box-shadow: 0 10px 40px rgba(0, 0, 0, 0.08);
}

.success-icon {
  width: 80px;
  height: 80px;
  margin: 0 auto 30px;
  background: var(--green);
  color: white;
  border-radius: 50%;
  display: grid;
  place-items: center;
  font-size: 48px;
  font-weight: 700;
}

.success-container h1 {
  margin: 0 0 20px;
  font-size: 42px;
  font-family: 'Space Grotesk';
  color: var(--green);
}

.success-message { margin-bottom: 35px; }

.large-text {
  font-size: 18px;
  font-weight: 600;
  margin: 0 0 12px;
  color: var(--ink);
}

.status-text {
  color: var(--muted);
  font-size: 15px;
  margin: 0 0 25px;
}

.timeline {
  display: flex;
  justify-content: space-around;
  margin: 30px 0;
  gap: 15px;
}

.timeline-step {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 8px;
}

.step-number {
  width: 40px;
  height: 40px;
  border-radius: 50%;
  background: var(--line);
  color: var(--muted);
  display: grid;
  place-items: center;
  font-weight: 700;
  font-size: 16px;
}

.timeline-step.active .step-number {
  background: var(--green);
  color: white;
}

.step-label {
  font-size: 11px;
  font-weight: 600;
  color: var(--muted);
  text-align: center;
  max-width: 80px;
}

.info-box {
  background: rgba(7, 82, 56, 0.05);
  border-left: 4px solid var(--green);
  padding: 15px;
  border-radius: 4px;
  color: var(--muted);
  font-size: 13px;
  margin: 25px 0 0;
}

.action-buttons {
  display: flex;
  flex-direction: column;
  gap: 12px;
  margin-top: 30px;
}

.action-buttons .button { margin: 0; }

/* Verified banner - larger */
.verified-banner.large {
  display: grid;
  grid-template-columns: auto 1fr;
  gap: 30px;
  padding: 45px;
  background: linear-gradient(135deg, var(--green) 0%, #054d32 100%);
  color: white;
  border-radius: 8px;
  margin-bottom: 40px;
  box-shadow: 0 10px 30px rgba(7, 82, 56, 0.2);
}

.verified-badge {
  width: 100px;
  height: 100px;
  background: rgba(24, 220, 75, 0.2);
  border: 3px solid var(--lime);
  border-radius: 50%;
  display: grid;
  place-items: center;
  font-size: 56px;
  font-weight: 700;
  color: var(--lime);
}

.verified-banner.large h2 {
  font-size: 38px;
  margin: 0;
  font-family: 'Space Grotesk';
  letter-spacing: -0.02em;
}

.verified-banner.large p {
  margin: 8px 0 0;
  opacity: 0.95;
  line-height: 1.6;
}

/* Shopping access section */
.shopping-access {
  background: white;
  padding: 40px;
  border-radius: 8px;
  margin-bottom: 40px;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
}

.code-section {
  margin-bottom: 40px;
  padding-bottom: 40px;
  border-bottom: 1px solid var(--line);
}

.code-section h3 {
  margin: 0 0 15px;
  font-size: 18px;
  font-family: 'Space Grotesk';
  font-weight: 600;
}

.code-box {
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 20px;
  background: var(--paper);
  border: 2px solid var(--green);
  border-radius: 6px;
  margin-bottom: 15px;
}

.code-box code {
  font-family: 'Courier New', monospace;
  font-size: 20px;
  font-weight: 700;
  color: var(--green);
  letter-spacing: 0.1em;
  flex: 1;
}

.copy-btn {
  padding: 8px 16px;
  background: var(--green);
  color: white;
  border: none;
  border-radius: 4px;
  font-size: 12px;
  font-weight: 600;
  cursor: pointer;
  white-space: nowrap;
}

.copy-btn:hover { opacity: 0.9; }

.code-instructions {
  font-size: 13px;
  color: var(--muted);
  margin: 0;
  line-height: 1.6;
}

/* Merchants section */
.merchants-section h3 {
  margin: 0 0 20px;
  font-size: 18px;
  font-family: 'Space Grotesk';
  font-weight: 600;
}

.merchants-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(200px, 1fr));
  gap: 16px;
}

.merchant-card {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  padding: 25px;
  background: linear-gradient(135deg, rgba(7, 82, 56, 0.05) 0%, rgba(24, 220, 75, 0.05) 100%);
  border: 2px solid var(--line);
  border-radius: 6px;
  transition: all 0.3s ease;
  text-decoration: none;
  cursor: pointer;
}

.merchant-card:hover {
  border-color: var(--green);
  box-shadow: 0 5px 15px rgba(7, 82, 56, 0.15);
  transform: translateY(-3px);
}

.merchant-name {
  display: block;
  font-size: 16px;
  font-weight: 700;
  color: var(--green);
  margin-bottom: 5px;
}

.merchant-desc {
  display: block;
  font-size: 11px;
  color: var(--muted);
  text-align: center;
  line-height: 1.4;
}

/* Edit form in dashboard */
.edit-panel {
  background: rgba(7, 82, 56, 0.03);
  padding: 30px;
  border-radius: 6px;
  margin-top: 40px;
  border: 1px solid var(--line);
}

.edit-panel h3 {
  margin: 0 0 8px;
  font-size: 18px;
  font-family: 'Space Grotesk';
}

.edit-notice {
  font-size: 12px;
  color: var(--muted);
  margin: 0 0 20px;
  padding: 10px;
  background: rgba(217, 39, 37, 0.05);
  border-left: 3px solid var(--coral);
  border-radius: 3px;
}

.edit-link {
  font-size: 12px;
  font-weight: 700;
  color: var(--green);
  text-decoration: none;
  margin-left: 10px;
}

.edit-link:hover { text-decoration: underline; }

@media (max-width: 720px) {
  .hero-logo { width: 185px; }
  .brand-logo { width: 36px; height: 36px; }
  
  .success-container {
    padding: 30px 20px;
  }
  
  .success-container h1 {
    font-size: 28px;
  }
  
  .verified-banner.large {
    grid-template-columns: 1fr;
    gap: 20px;
    padding: 30px;
  }
  
  .verified-badge {
    width: 70px;
    height: 70px;
    font-size: 40px;
  }
  
  .verified-banner.large h2 {
    font-size: 28px;
  }
  
  .shopping-access {
    padding: 20px;
  }
  
  .code-box {
    flex-direction: column;
  }
  
  .merchants-grid {
    grid-template-columns: 1fr;
  }
  
  .timeline {
    flex-direction: column;
    gap: 10px;
  }
}

@media (max-width: 720px) {
  .hero-logo { width: 185px; }
  .brand-logo { width: 36px; height: 36px; }
}