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

    html { font-size: 144%; }

    :root {
      --green:       #3BB54A;
      --green-light: #EBF7ED;
      --green-dark:  #267A31;
      --text:        #1a1a1a;
      --muted:       #5a6472;
      --surface:     #f7faf8;
      --border:      #dde6e0;
      --white:       #ffffff;
      --error:       #c0392b;
      --error-bg:    #fdf2f2;
    }

    html { scroll-behavior: smooth; }

    body {
      font-family: 'Inter', sans-serif;
      color: var(--text);
      background: var(--surface);
      min-height: 100vh;
      -webkit-font-smoothing: antialiased;
    }
    /* ── Nav ──────────────────────────────────────────────────── */

    .nav {
      background: var(--white);
      border-bottom: 1px solid var(--border);
      padding: 0 2rem;
    }

    .nav-inner {
      max-width: 760px;
      margin: 0 auto;
      display: flex;
      align-items: center;
      height: 64px;
      gap: 10px;
    }

    .nav-brand {
      display: flex;
      align-items: center;
      gap: 8px;
      text-decoration: none;
    }

    .nav-logo {
      width: 26px;
      height: 26px;
      display: flex;
      align-items: center;
      justify-content: center;
      flex-shrink: 0;
    }

    .nav-logo svg { width: 26px; height: 26px; }

    .nav-wordmark {
      font-size: 22px;
      font-weight: 600;
      color: var(--text);
    }
    .nav-wordmark span { color: var(--green); }

    /* ── Progress bar ─────────────────────────────────────────── */

    .progress-wrap {
      background: var(--white);
      border-bottom: 1px solid var(--border);
      padding: 1rem 2rem;
    }

    .progress-inner {
      max-width: 640px;
      margin: 0 auto;
    }

    .progress-label {
      font-size: 12px;
      color: var(--muted);
      margin-bottom: 8px;
      display: flex;
      justify-content: space-between;
    }

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

    .progress-track {
      height: 4px;
      background: var(--border);
      border-radius: 100px;
      overflow: hidden;
    }

    .progress-fill {
      height: 100%;
      background: var(--green);
      border-radius: 100px;
      transition: width 0.4s ease;
    }

    .step-dots {
      display: flex;
      gap: 6px;
      margin-top: 10px;
    }

    .step-dot {
      width: 24px;
      height: 24px;
      border-radius: 50%;
      border: none;
      padding: 0;
      font-size: 11px;
      font-weight: 600;
      display: flex;
      align-items: center;
      justify-content: center;
      background: var(--border);
      color: var(--muted);
      transition: background 0.2s, color 0.2s;
      cursor: default;
    }

    .step-dot:not(:disabled) {
      cursor: pointer;
    }

    .step-dot.done {
      background: var(--green);
      color: #fff;
    }

    .step-dot.done:hover {
      background: var(--green-dark);
    }

    .step-dot.active {
      background: var(--green-dark);
      color: #fff;
    }

    /* ── Main card ────────────────────────────────────────────── */

    .main {
      padding: 2rem 1rem 4rem;
      max-width: 640px;
      margin: 0 auto;
    }

    .card {
      background: var(--white);
      border-radius: 20px;
      border: 1px solid var(--border);
      padding: 2rem;
    }

    .card-title {
      font-size: 1.5rem;
      font-weight: 600;
      color: var(--text);
      margin-bottom: 0.4rem;
      letter-spacing: -0.015em;
      line-height: 1.25;
    }

    .card-sub {
      font-size: 1rem;
      color: var(--muted);
      margin-bottom: 2rem;
      line-height: 1.65;
    }

    /* ── Form fields ──────────────────────────────────────────── */

    .field {
      margin-bottom: 1.625rem;
    }

    .field label {
      display: block;
      font-size: 0.9375rem;
      font-weight: 600;
      color: var(--text);
      margin-bottom: 0.4rem;
      margin-right: 0.4rem;
      line-height: 1.4;
    }

    .field .hint {
      font-size: 0.875rem;
      color: var(--muted);
      margin-bottom: 0.625rem;
      display: block;
      line-height: 1.55;
    }

    .field input,
    .field select,
    .field textarea {
      width: 100%;
      padding: 14px 16px;
      border: 1.5px solid var(--border);
      border-radius: 10px;
      font-size: 1rem;
      font-family: inherit;
      color: var(--text);
      background: var(--white);
      transition: border-color 0.15s, box-shadow 0.15s;
      outline: 3px solid transparent;
      outline-offset: 2px;
      appearance: none;
      -webkit-appearance: none;
      min-height: 52px;
    }

    .field select {
      background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='8' viewBox='0 0 12 8'%3E%3Cpath d='M1 1l5 5 5-5' stroke='%235a6472' stroke-width='1.5' fill='none' stroke-linecap='round'/%3E%3C/svg%3E");
      background-repeat: no-repeat;
      background-position: right 16px center;
      padding-right: 40px;
      cursor: pointer;
    }

    .field textarea {
      resize: vertical;
      min-height: 90px;
    }

    .field input:focus,
    .field select:focus,
    .field textarea:focus {
      border-color: var(--green);
      outline-color: rgba(59,181,74,0.35);
      box-shadow: none;
    }

    .field input.error,
    .field select.error,
    .field textarea.error {
      border-color: var(--error);
    }

    .field-error {
      font-size: 0.875rem;
      color: var(--error);
      margin-top: 6px;
      display: none;
      line-height: 1.4;
    }

    .field-error.show { display: block; }

    .char-count {
      font-size: 11px;
      color: var(--muted);
      text-align: right;
      margin-top: 4px;
    }

    .char-count.warn { color: var(--error); }

    .field-row {
      display: grid;
      grid-template-columns: 1fr 1fr;
      gap: 12px;
    }

    /* ── Hours table ──────────────────────────────────────────── */

    .hours-mode-bar {
      display: flex;
      border: 1.5px solid var(--border);
      border-radius: 10px;
      overflow: hidden;
      margin-bottom: 1rem;
    }

    .hours-mode-bar label {
      flex: 1;
      display: flex;
      align-items: center;
      justify-content: center;
      padding: 9px 8px;
      font-size: 13px;
      font-weight: 500;
      color: var(--muted);
      cursor: pointer;
      border-right: 1px solid var(--border);
      user-select: none;
      transition: background 0.12s, color 0.12s;
    }

    .hours-mode-bar label:last-child { border-right: none; }
    .hours-mode-bar input[type="radio"] { position: absolute; opacity: 0; width: 0; height: 0; }
    .hours-mode-bar label.active { background: var(--green); color: #fff; }

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

    .hours-table th {
      font-size: 11px;
      font-weight: 600;
      text-transform: uppercase;
      letter-spacing: 0.06em;
      color: var(--muted);
      text-align: left;
      padding: 0 0 8px;
    }

    .hours-table td {
      padding: 5px 8px 5px 0;
      vertical-align: middle;
    }

    .hours-table td:first-child {
      font-size: 13px;
      font-weight: 500;
      color: var(--text);
      width: 90px;
      padding-left: 0;
    }

    .hours-table input[type="time"] {
      width: 130px;
      padding: 7px 10px;
      border: 1.5px solid var(--border);
      border-radius: 8px;
      font-size: 13px;
      font-family: inherit;
      color: var(--text);
      background: var(--white);
      outline: none;
    }

    .hours-table input[type="time"]:focus {
      border-color: var(--green);
      box-shadow: 0 0 0 3px rgba(59,181,74,0.12);
    }

    .hours-table input[type="time"]:disabled {
      opacity: 0.35;
      cursor: not-allowed;
    }

    .closed-label {
      display: flex;
      align-items: center;
      gap: 6px;
      font-size: 13px;
      color: var(--muted);
      cursor: pointer;
      user-select: none;
    }

    .closed-label input[type="checkbox"] {
      width: 16px;
      height: 16px;
      accent-color: var(--green);
      cursor: pointer;
    }

    .hours-section-label {
      font-size: 13px;
      font-weight: 500;
      color: var(--text);
      margin: 1.5rem 0 0.75rem;
    }

    /* ── File upload ──────────────────────────────────────────── */

    .upload-zone {
      border: 2px dashed var(--border);
      border-radius: 12px;
      padding: 1.5rem;
      text-align: center;
      cursor: pointer;
      transition: border-color 0.15s, background 0.15s;
      position: relative;
    }

    .upload-zone:hover,
    .upload-zone.drag-over {
      border-color: var(--green);
      background: var(--green-light);
    }

    .upload-zone input[type="file"] {
      position: absolute;
      inset: 0;
      opacity: 0;
      cursor: pointer;
      width: 100%;
      height: 100%;
    }

    .upload-icon {
      width: 40px;
      height: 40px;
      background: var(--green-light);
      border-radius: 10px;
      display: flex;
      align-items: center;
      justify-content: center;
      margin: 0 auto 10px;
    }

    .upload-icon svg { width: 20px; height: 20px; color: var(--green-dark); }

    .upload-zone p {
      font-size: 13px;
      color: var(--muted);
      line-height: 1.5;
    }

    .upload-zone strong {
      color: var(--green-dark);
      font-weight: 500;
    }

    .upload-preview {
      margin-top: 12px;
      display: flex;
      flex-wrap: wrap;
      gap: 8px;
    }

    .preview-thumb {
      position: relative;
      width: 72px;
      height: 72px;
      border-radius: 10px;
      overflow: hidden;
      border: 1.5px solid var(--border);
    }

    .preview-thumb img {
      width: 100%;
      height: 100%;
      object-fit: cover;
    }

    .preview-thumb .remove-btn {
      position: absolute;
      top: 3px;
      right: 3px;
      width: 20px;
      height: 20px;
      background: rgba(0,0,0,0.55);
      border-radius: 50%;
      border: none;
      cursor: pointer;
      display: flex;
      align-items: center;
      justify-content: center;
      color: white;
      font-size: 12px;
      line-height: 1;
    }

    .upload-status {
      font-size: 12px;
      margin-top: 8px;
      min-height: 18px;
    }

    .upload-status.uploading { color: var(--muted); }
    .upload-status.ok { color: var(--green-dark); }
    .upload-status.err { color: var(--error); }

    .compress-tip { display:none; align-items:flex-start; gap:10px; background:#fffbeb; border:1.5px solid #f59e0b; border-radius:10px; padding:12px 14px; margin-top:1rem; font-size:13px; line-height:1.5; }
    .compress-tip.visible { display:flex; }
    .compress-tip-icon { font-size:18px; flex-shrink:0; line-height:1; }
    .compress-tip-body { flex:1; color:#78350f; }
    .compress-tip-body a { color:#b45309; font-weight:600; }
    .compress-tip-body a:hover { color:#92400e; }
    .compress-tip-dismiss { background:none; border:none; cursor:pointer; color:#b45309; font-size:16px; line-height:1; padding:0; flex-shrink:0; }

    /* ── Domain step ──────────────────────────────────────────── */

    .domain-option {
      border: 1.5px solid var(--border);
      border-radius: 14px;
      padding: 1.1rem 1.25rem;
      margin-bottom: 10px;
      cursor: pointer;
      transition: border-color 0.15s, background 0.15s;
      display: flex;
      align-items: flex-start;
      gap: 14px;
    }

    .domain-option:hover { border-color: var(--green); }

    .domain-option.selected {
      border-color: var(--green);
      background: var(--green-light);
    }

    .domain-option input[type="radio"] {
      margin-top: 2px;
      flex-shrink: 0;
      accent-color: var(--green);
      width: 16px;
      height: 16px;
      cursor: pointer;
    }

    .domain-option-body { flex: 1; }

    .domain-option-title {
      font-size: 14px;
      font-weight: 500;
      color: var(--text);
      display: flex;
      align-items: center;
      gap: 8px;
      margin-bottom: 3px;
    }

    .domain-badge {
      font-size: 10px;
      font-weight: 600;
      padding: 2px 8px;
      border-radius: 100px;
    }

    .domain-badge.free { background: var(--green); color: #fff; }
    .domain-badge.paid { background: var(--surface); color: var(--muted); border: 1px solid var(--border); }

    .domain-option-desc {
      font-size: 12px;
      color: var(--muted);
      line-height: 1.5;
    }

    .domain-option-price {
      font-size: 14px;
      font-weight: 600;
      color: var(--text);
      margin-top: 6px;
    }

    .subdomain-avail {
      font-size: 13px;
      font-weight: 500;
      margin-top: 5px;
      min-height: 18px;
      display: none;
    }

    .subdomain-avail.show { display: block; }
    .subdomain-avail.avail-ok     { color: var(--green); }
    .subdomain-avail.avail-taken  { color: #c0392b; }
    .subdomain-avail.avail-checking { color: var(--muted); font-weight: 400; }

    .subdomain-base-toggle {
      display: flex;
      gap: 6px;
      margin-top: 10px;
    }
    .subdomain-base-btn {
      flex: 1;
      padding: 7px 10px;
      border: 1.5px solid var(--border);
      border-radius: 8px;
      background: var(--surface);
      color: var(--muted);
      font-size: 13px;
      font-family: 'SF Mono', 'Fira Code', monospace;
      cursor: pointer;
      text-align: center;
      transition: border-color 0.15s, color 0.15s, background 0.15s;
    }
    .subdomain-base-btn.active {
      border-color: var(--green);
      color: var(--green-dark);
      background: var(--green-light);
      font-weight: 600;
    }

    .subdomain-preview {
      background: var(--surface);
      border: 1.5px solid var(--border);
      border-radius: 10px;
      padding: 10px 14px;
      font-size: 14px;
      font-family: 'SF Mono', 'Fira Code', monospace;
      color: var(--green-dark);
      margin-top: 10px;
      word-break: break-all;
    }

    /* ── Price summary ────────────────────────────────────────── */

    .price-summary {
      background: var(--green-light);
      border: 1.5px solid rgba(59,181,74,0.25);
      border-radius: 14px;
      padding: 1.25rem;
      margin-top: 1.5rem;
    }

    .price-summary-row {
      display: flex;
      justify-content: space-between;
      font-size: 14px;
      color: var(--muted);
      padding: 4px 0;
    }

    .price-summary-row.total {
      font-size: 16px;
      font-weight: 600;
      color: var(--text);
      border-top: 1px solid rgba(59,181,74,0.3);
      margin-top: 8px;
      padding-top: 12px;
    }

    /* ── Buttons ──────────────────────────────────────────────── */

    .btn-row {
      display: flex;
      gap: 10px;
      margin-top: 2rem;
      align-items: center;
    }

    .btn-primary {
      display: inline-flex;
      align-items: center;
      gap: 6px;
      background: var(--green);
      color: #fff;
      font-size: 1rem;
      font-weight: 600;
      padding: 14px 28px;
      border-radius: 100px;
      border: none;
      cursor: pointer;
      text-decoration: none;
      transition: background 0.15s;
      flex-shrink: 0;
      min-height: 52px;
    }

    .btn-primary:hover:not(:disabled) { background: var(--green-dark); }

    .btn-primary:disabled {
      opacity: 0.55;
      cursor: not-allowed;
    }

    .btn-secondary {
      display: inline-flex;
      align-items: center;
      background: transparent;
      color: var(--muted);
      font-size: 1rem;
      font-weight: 500;
      padding: 14px 20px;
      border-radius: 100px;
      border: 1.5px solid var(--border);
      cursor: pointer;
      transition: border-color 0.15s, color 0.15s;
      min-height: 52px;
    }

    .btn-secondary:hover { border-color: var(--green); color: var(--green-dark); }

    .btn-reset {
      display: inline-flex;
      align-items: center;
      background: transparent;
      color: var(--muted);
      font-size: 13px;
      font-weight: 400;
      padding: 8px 12px;
      border-radius: 100px;
      border: none;
      cursor: pointer;
      margin-left: auto;
      opacity: 0.6;
      transition: opacity 0.15s, color 0.15s;
      font-family: inherit;
    }

    .btn-reset:hover { opacity: 1; color: #c0392b; }

    /* ── Reset dialog ─────────────────────────────────────────── */

    .reset-dialog {
      border: none;
      border-radius: 16px;
      padding: 2rem;
      max-width: 340px;
      width: calc(100% - 2rem);
      box-shadow: 0 8px 40px rgba(0,0,0,0.18);
      margin: auto;
    }

    .reset-dialog::backdrop { background: rgba(0,0,0,0.45); }

    .reset-dialog-title {
      font-size: 1.1rem;
      font-weight: 600;
      margin-bottom: 0.5rem;
    }

    .reset-dialog-body {
      font-size: 14px;
      color: var(--muted);
      line-height: 1.5;
      margin-bottom: 1.5rem;
    }

    .reset-dialog-btns {
      display: flex;
      gap: 10px;
      justify-content: flex-end;
    }

    .reset-dialog-cancel {
      padding: 10px 18px;
      border-radius: 100px;
      border: 1.5px solid var(--border);
      background: transparent;
      font-size: 14px;
      font-family: inherit;
      cursor: pointer;
      color: var(--muted);
    }

    .reset-dialog-confirm {
      padding: 10px 18px;
      border-radius: 100px;
      border: none;
      background: #c0392b;
      color: #fff;
      font-size: 14px;
      font-weight: 500;
      font-family: inherit;
      cursor: pointer;
    }

    /* ── Global error banner ──────────────────────────────────── */

    .error-banner {
      background: var(--error-bg);
      border: 1px solid rgba(192,57,43,0.25);
      border-radius: 10px;
      padding: 12px 16px;
      font-size: 13px;
      color: var(--error);
      margin-bottom: 1.5rem;
      display: none;
      line-height: 1.5;
    }

    .error-banner.show { display: block; }

    /* ── Spinner ──────────────────────────────────────────────── */

    .spinner {
      width: 18px;
      height: 18px;
      border: 2.5px solid rgba(255,255,255,0.4);
      border-top-color: #fff;
      border-radius: 50%;
      animation: spin 0.65s linear infinite;
      display: none;
    }

    .btn-primary.loading .spinner { display: block; }
    .btn-primary.loading .btn-label { opacity: 0.6; }

    @keyframes spin { to { transform: rotate(360deg); } }

    /* ── Palette swatch picker ────────────────────────────────── */

    .palette-swatches {
      display: grid;
      grid-template-columns: repeat(auto-fill, minmax(3.5rem, 1fr));
      gap: 0.75rem 0.5rem;
      margin-top: 0.5rem;
    }

    .palette-swatches .swatch-label {
      display: flex;
      flex-direction: column;
      align-items: center;
      gap: 0.4rem;
      cursor: pointer;
    }

    .swatch-label input[type="radio"] {
      position: absolute;
      opacity: 0;
      width: 0;
      height: 0;
    }

    .swatch {
      display: inline-block;
      width: 2.5rem;
      height: 2.5rem;
      border-radius: 50%;
      border: 0.1875rem solid transparent;
      outline: 0.125rem solid transparent;
      transition: border-color 0.15s, outline-color 0.15s, transform 0.1s;
    }

    .swatch-name {
      font-size: 0.625rem;
      color: var(--muted);
      font-weight: 500;
      text-align: center;
    }

    .swatch-label input:checked + .swatch {
      border-color: var(--white);
      outline-color: var(--green);
      transform: scale(1.12);
    }

    .swatch-label:hover .swatch {
      transform: scale(1.08);
    }

    .swatch-label input:focus-visible + .swatch {
      outline-color: var(--green);
    }

    /* ── Optional badge ───────────────────────────────────────── */

    .optional {
      font-size: 11px;
      font-weight: 400;
      color: var(--muted);
      margin-left: 4px;
    }

    /* Inline label note — informational, not an optional badge */
    .hint-inline {
      font-size: 11px;
      font-weight: 400;
      color: var(--muted);
      margin-left: 4px;
      font-style: italic;
    }

    /* ── Social group ─────────────────────────────────────────── */

    .social-prefix {
      display: flex;
      align-items: center;
      border: 1.5px solid var(--border);
      border-radius: 10px;
      overflow: hidden;
      transition: border-color 0.15s, box-shadow 0.15s;
    }

    .social-prefix:focus-within {
      border-color: var(--green);
      box-shadow: 0 0 0 3px rgba(59,181,74,0.12);
    }

    .social-prefix-label {
      padding: 14px 14px;
      font-size: 0.9375rem;
      color: var(--muted);
      background: var(--surface);
      border-right: 1px solid var(--border);
      white-space: nowrap;
      flex-shrink: 0;
    }

    .social-prefix input {
      border: none !important;
      border-radius: 0 !important;
      box-shadow: none !important;
      padding-left: 10px !important;
    }

    /* ── Step panels ──────────────────────────────────────────── */

    .step-panel { display: none; }
    .step-panel.active { display: block; }

    /* ── Completion screen ───────────────────────────────────── */

    .complete-icon {
      width: 52px;
      height: 52px;
      background: var(--green-light);
      border-radius: 50%;
      display: flex;
      align-items: center;
      justify-content: center;
      margin: 0 auto 1.5rem;
    }

    .complete-url {
      display: block;
      color: var(--green-dark);
      word-break: break-all;
      font-size: 15px;
      text-decoration: none;
      padding: 10px 14px;
      background: var(--green-light);
      border-radius: 10px;
      margin-bottom: 0.5rem;
    }

    .complete-url:hover { text-decoration: underline; }

    .complete-hint {
      font-size: 12px;
      color: var(--muted);
      margin-bottom: 1.5rem;
    }

    .btn-new-site {
      display: inline-block;
      padding: 11px 24px;
      background: var(--surface);
      border: 1.5px solid var(--border);
      border-radius: 10px;
      font-size: 14px;
      font-weight: 500;
      color: var(--text);
      text-decoration: none;
      cursor: pointer;
      transition: border-color 0.15s;
    }

    .btn-new-site:hover { border-color: var(--green); color: var(--green-dark); }

    @media (max-width: 480px) {
      .card { padding: 1.5rem; border-radius: 16px; }
      .field-row { grid-template-columns: 1fr; }
      .btn-row { flex-direction: column; align-items: stretch; }
      .btn-primary, .btn-secondary { justify-content: center; }
      .welcome-wrap { padding: 1rem 1rem 2rem; }
      .welcome-card { padding: 1.5rem; }
      .welcome-heading { font-size: 1.5rem; }
    }

    /* ── Welcome screen ───────────────────────────────────────── */

    .welcome-wrap {
      min-height: calc(100vh - 64px);
      display: flex;
      align-items: center;
      justify-content: center;
      padding: 2rem 1rem 4rem;
    }

    .welcome-card {
      background: var(--white);
      border-radius: 24px;
      border: 1px solid var(--border);
      padding: 2.5rem;
      max-width: 520px;
      width: 100%;
      box-shadow: 0 4px 24px rgba(0,0,0,0.06);
    }

    .welcome-logo {
      font-size: 1.125rem;
      font-weight: 700;
      color: var(--text);
      margin-bottom: 1.25rem;
      letter-spacing: -0.01em;
    }
    .welcome-logo span { color: var(--green); }

    .welcome-heading {
      font-size: 1.875rem;
      font-weight: 600;
      color: var(--text);
      letter-spacing: -0.02em;
      line-height: 1.2;
      margin-bottom: 0.625rem;
    }

    .welcome-sub {
      color: var(--muted);
      font-size: 1rem;
      line-height: 1.65;
      margin-bottom: 1.5rem;
    }

    .welcome-price {
      background: var(--green-light);
      border: 1.5px solid rgba(59,181,74,0.35);
      border-radius: 12px;
      padding: 1rem 1.25rem;
      font-size: 1rem;
      color: var(--green-dark);
      margin-bottom: 1.75rem;
      line-height: 1.55;
    }

    .welcome-price strong {
      font-size: 1.125rem;
    }

    .welcome-needs {
      margin-bottom: 2rem;
    }

    .welcome-needs-title {
      font-size: 0.9375rem;
      font-weight: 600;
      color: var(--text);
      margin-bottom: 0.875rem;
    }

    .welcome-needs ul {
      list-style: none;
      display: flex;
      flex-direction: column;
      gap: 0.75rem;
    }

    .welcome-needs li {
      display: flex;
      align-items: flex-start;
      gap: 0.75rem;
      font-size: 0.9375rem;
      color: var(--text);
      line-height: 1.55;
    }

    .welcome-tick {
      color: var(--green);
      font-weight: 700;
      flex-shrink: 0;
      width: 1.25rem;
      text-align: center;
    }

    .welcome-opt {
      flex-shrink: 0;
      width: 1.25rem;
      text-align: center;
    }

    .welcome-opt-note {
      display: block;
      color: var(--muted);
      font-size: 0.8125rem;
      margin-top: 0.125rem;
    }

    .btn-welcome {
      width: 100%;
      justify-content: center;
      font-size: 1.0625rem;
      padding: 1.0625rem 2rem;
      margin-bottom: 1.125rem;
      border-radius: 12px;
    }

    .welcome-promo {
      text-align: center;
      font-size: 0.875rem;
      color: var(--muted);
      margin: 0;
    }

    .welcome-promo a {
      color: var(--green-dark);
      font-weight: 500;
      text-decoration: underline;
    }
