/* ==========================================================================
   1. DESIGN TOKENS & SYSTEM VARIABLES
   ========================================================================== */
:root {
  /* Brand Palettes */
  --brand:        #1a7a3c;
  --brand-mid:    #22a050;
  --brand-light:  #2ecc71;
  --brand-glow:   rgba(46, 204, 113, 0.22);
  --brand-tint:   rgba(46, 204, 113, 0.09);
  --gold:         #d4a843;

  /* UI Surfaces & Borders */
  --bg:           #f2f4f7;
  --surface:      #ffffff;
  --surface-2:    #f8f9fb;
  --border:       #e8eaed;
  
  /* Typography Scale */
  --text-1:       #0d0f12;
  --text-2:       #44474d;
  --text-3:       #8a8f9a;
  --text-4:       #b2b7c2;

  /* System States */
  --danger:       #e63946;
  --success:      #2ecc71;

  /* Shadows */
  --shadow-sm:    0 2px 8px rgba(0, 0, 0, 0.09), 0 0 0 1px rgba(0, 0, 0, 0.04);
  --shadow-md:    0 4px 16px rgba(0, 0, 0, 0.11), 0 1px 4px rgba(0, 0, 0, 0.07);
  --shadow-lg:    0 8px 32px rgba(0, 0, 0, 0.14), 0 2px 8px rgba(0, 0, 0, 0.08);
  --shadow-btn:   0 3px 10px rgba(26, 122, 60, 0.38);
  --shadow-btn-h: 0 6px 20px rgba(26, 122, 60, 0.50);

  /* Border Radii */
  --r-sm:         8px;
  --r-md:         12px;
  --r-lg:         16px;
  --r-xl:         20px;
  --r-full:       9999px;

  /* Typography Families */
  --font-body:    'DM Sans', -apple-system, sans-serif;
  --font-logo:    'Syne', 'DM Sans', sans-serif;

  /* Easing & Timing */
  --ease-spring:  cubic-bezier(0.34, 1.56, 0.64, 1);
  --ease-out:     cubic-bezier(0.22, 1, 0.36, 1);
  --t-fast:       0.15s;
  --t-mid:        0.25s;
}

@media (prefers-color-scheme: dark) {
  :root {
    --brand:        #2ecc71;
    --brand-mid:    #27ae60;
    --brand-light:  #45e785;
    --brand-glow:   rgba(46, 204, 113, 0.25);
    --brand-tint:   rgba(46, 204, 113, 0.10);

    --bg:           #101214;
    --surface:      #1a1d21;
    --surface-2:    #22262b;
    --border:       #2e3238;
    
    --text-1:       #eceef0;
    --text-2:       #9ba3ae;
    --text-3:       #6b7280;
    --text-4:       #4b5563;

    --shadow-sm:    0 2px 8px rgba(0, 0, 0, 0.40), 0 0 0 1px rgba(255, 255, 255, 0.04);
    --shadow-md:    0 4px 16px rgba(0, 0, 0, 0.50);
    --shadow-btn:   0 3px 12px rgba(46, 204, 113, 0.35);
    --shadow-btn-h: 0 6px 22px rgba(46, 204, 113, 0.48);
  }
}

/* ==========================================================================
   2. CSS CORE RESET & BASE LAYOUT
   ========================================================================== */
*, *::before, *::after {
  box-sizing: border-box;
  margin: 0; 
  padding: 0;
  -webkit-font-smoothing: antialiased;
}

html { 
  scroll-behavior: smooth; 
}

body {
  font-family: var(--font-body);
  background: var(--bg);
  color: var(--text-1);
  min-height: 100vh;
  display: flex;
  align-items: flex-start;
  justify-content: center;
  padding: 24px 16px 48px;
  line-height: 1.55;
  position: relative;
}

/* Subtle animated mesh background */
body::before {
  content: '';
  position: fixed;
  inset: 0;
  background:
    radial-gradient(ellipse 60% 50% at 20% 10%, rgba(46, 204, 113, 0.08) 0%, transparent 60%),
    radial-gradient(ellipse 50% 40% at 80% 80%, rgba(212, 168, 67, 0.06) 0%, transparent 55%);
  pointer-events: none;
  z-index: 0;
}

/* Container Structure */
.container {
  background: var(--surface);
  border-radius: 24px;
  box-shadow: var(--shadow-lg), 0 0 0 1px rgba(0, 0, 0, 0.04);
  width: 100%;
  max-width: 460px;
  padding: 36px 28px 32px;
  position: relative;
  z-index: 1;
  animation: cardUp 0.5s var(--ease-out) both;
}

/* ==========================================================================
   3. HEADER UI ELEMENTS
   ========================================================================== */
.header {
  text-align: center;
  margin-bottom: 24px;
}

.logo-wrap {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 52px; 
  height: 52px;
  background: linear-gradient(135deg, var(--brand-mid), var(--brand));
  border-radius: 14px;
  margin-bottom: 10px;
  box-shadow: var(--shadow-btn);
  animation: logoPop 0.6s var(--ease-spring) 0.15s both;
}

.logo-wrap img {
  width: 40px; 
  height: 40px;
  object-fit: contain;
  filter: brightness(0) invert(1);
}

.logo-wrap .fa-store { 
  font-size: 22px; 
  color: white; 
}

.header-logo-text {
  font-family: var(--font-logo);
  font-size: 24px;
  font-weight: 600;
  letter-spacing: -0.5px;
  background: #28a756;
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  display: block;
  margin-bottom: 4px;
}

.header-sub {
  font-size: 14px;
  color: var(--text-3);
  line-height: 1.5;
}

.header-sub strong {
  color: var(--brand);
  font-weight: 600;
}

.header-tagline {
  font-size: 13.5px;
  color: var(--text-3);
  line-height: 1.45;
}

/* Info Pills & Navigation Elements */
.quick-pill {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  background: var(--brand-tint);
  color: var(--brand);
  padding: 5px 12px;
  border-radius: var(--r-full);
  font-size: 12px;
  font-weight: 700;
  border: 1px solid rgba(46, 204, 113, 0.25);
  margin-top: 12px;
  letter-spacing: 0.2px;
}

.progress-dots {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 6px;
  margin-bottom: 22px;
}

.dot {
  width: 8px; 
  height: 8px;
  border-radius: var(--r-full);
  background: var(--border);
  transition: all var(--t-mid) var(--ease-spring);
}

.dot.active {
  width: 24px;
  background: linear-gradient(90deg, var(--brand-mid), var(--brand-light));
}

.divider {
  display: flex;
  align-items: center;
  gap: 12px;
  margin: 18px 0;
  color: var(--text-4);
  font-size: 12px;
  font-weight: 600;
}

.divider::before, 
.divider::after {
  content: '';
  flex: 1;
  height: 1px;
  background: linear-gradient(90deg, transparent, var(--border), transparent);
}

/* ==========================================================================
   4. INTERACTIVE THIRD-PARTY BUTTONS (GOOGLE / SOCIAL)
   ========================================================================== */
.google-section {
  margin-bottom: 28px;
}

.google-btn {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  width: 100%;
  padding: 13px 20px;
  background: var(--surface);
  border: 1.5px solid var(--border);
  border-radius: var(--r-lg);
  font-size: 14.5px;
  font-weight: 600;
  font-family: var(--font-body);
  color: var(--text-2);
  text-decoration: none;
  transition: all var(--t-mid) var(--ease-spring);
  cursor: pointer;
  box-shadow: var(--shadow-sm);
  position: relative;
  overflow: hidden;
}

.google-btn:hover {
  border-color: #4285F4;
  background: #f8f9ff;
  transform: translateY(-1px);
  box-shadow: 0 4px 12px rgba(66, 133, 244, 0.18);
}

.google-btn:active { 
  transform: translateY(0); 
}

.google-btn i.fa-arrow-right {
  font-size: 12px;
  opacity: 0.7;
  transition: transform 0.2s ease;
}

.google-btn:hover i.fa-arrow-right {
  transform: translateX(4px);
  opacity: 1;
}

.google-badge {
  text-align: center;
  margin-top: 8px;
}

.google-badge span {
  font-size: 12px;
  color: var(--text-3);
  background: var(--surface-2);
  padding: 4px 12px;
  border-radius: var(--r-full);
  display: inline-flex;
  align-items: center;
  gap: 6px;
  border: 1px solid var(--border);
}

.google-badge i {
  color: #4285F4;
}

/* ==========================================================================
   5. FORM COMPONENTS & VALIDATION INPUTS
   ========================================================================== */
form { 
  animation: fadeSlide 0.45s var(--ease-out) 0.1s both; 
}

.input-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 14px;
  margin-bottom: 0;
}

.form-group {
  margin-bottom: 18px;
}

.form-group label {
  display: block;
  font-size: 13px;
  font-weight: 600;
  color: var(--text-2);
  margin-bottom: 7px;
  letter-spacing: 0.1px;
}

.field-wrap {
  position: relative;
}

.field-icon {
  position: absolute;
  left: 13px;
  top: 50%;
  transform: translateY(-50%);
  color: var(--text-4);
  font-size: 14px;
  pointer-events: none;
  transition: color var(--t-fast) ease;
}

.input-field {
  width: 100%;
  padding: 11px 14px 11px 38px;
  border: 1.5px solid var(--border);
  border-radius: var(--r-md);
  font-size: 14.5px;
  font-family: var(--font-body);
  font-weight: 500;
  background: var(--surface);
  color: var(--text-1);
  transition: border-color var(--t-fast) ease, box-shadow var(--t-fast) ease;
  outline: none;
  -webkit-appearance: none;
}

.input-field::placeholder { 
  color: var(--text-4); 
  font-weight: 400; 
}

.input-field:focus {
  border-color: var(--brand);
  box-shadow: 0 0 0 3.5px var(--brand-glow);
}

.input-field:focus + .field-icon,
.field-wrap:focus-within .field-icon {
  color: var(--brand);
}

.input-field.no-icon { 
  padding-left: 14px; 
}

.input-field.valid {
  border-color: var(--success);
}

.input-field.error-state {
  border-color: var(--danger);
  box-shadow: 0 0 0 3px rgba(230, 57, 70, 0.12);
}

/* Feedback Message Strings */
.field-msg {
  font-size: 12px;
  margin-top: 5px;
  display: none;
  font-weight: 500;
}
.field-msg.show { display: block; }
.field-msg.err  { color: var(--danger); }
.field-msg.ok   { color: var(--success); }

/* Password Custom Elements */
.pw-wrap { 
  position: relative; 
}

.pw-wrap .input-field { 
  padding-right: 42px; 
}

.eye-btn {
  position: absolute;
  right: 12px;
  top: 50%;
  transform: translateY(-50%);
  background: none;
  border: none;
  cursor: pointer;
  color: var(--text-4);
  font-size: 15px;
  padding: 4px;
  transition: color var(--t-fast) ease;
  line-height: 1;
}
.eye-btn:hover { color: var(--brand); }
.eye-btn:focus-visible { outline: 2px solid var(--brand); border-radius: 4px; }

.pw-strength {
  margin-top: 8px;
}

.pw-strength-bar {
  display: flex;
  gap: 4px;
  margin-bottom: 5px;
}

.pw-seg {
  height: 3px;
  flex: 1;
  border-radius: var(--r-full);
  background: var(--border);
  transition: background var(--t-mid) ease;
}

.pw-seg.weak   { background: #f87171; }
.pw-seg.fair   { background: var(--gold); }
.pw-seg.strong { background: var(--success); }

.pw-strength-label {
  font-size: 11.5px;
  font-weight: 600;
  color: var(--text-4);
  transition: color var(--t-fast) ease;
}
.pw-strength-label.weak   { color: #f87171; }
.pw-strength-label.fair   { color: var(--gold); }
.pw-strength-label.strong { color: var(--success); }

/* Core Platform Checkboxes */
.checkbox-group {
  display: flex;
  align-items: flex-start;
  gap: 11px;
  margin-bottom: 22px;
}

.checkbox-group input[type="checkbox"] {
  width: 18px; 
  height: 18px;
  margin-top: 1px;
  accent-color: var(--brand);
  cursor: pointer;
  flex-shrink: 0;
  border-radius: 5px;
}

.checkbox-label {
  font-size: 13.5px;
  color: var(--text-3);
  line-height: 1.5;
  cursor: pointer;
}

.checkbox-label a {
  color: var(--brand);
  font-weight: 600;
  text-decoration: none;
}

.checkbox-label a:hover { 
  text-decoration: underline; 
}

/* ==========================================================================
   6. ACTIONS & INTERACTION COMPONENTS
   ========================================================================== */
.submit-btn,
.continue-btn {
  width: 100%;
  background: linear-gradient(135deg, var(--brand-mid) 0%, var(--brand) 100%);
  color: white;
  padding: 14px 20px;
  border: none;
  border-radius: var(--r-lg);
  font-size: 15.5px;
  font-weight: 700;
  font-family: var(--font-body);
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 9px;
  box-shadow: var(--shadow-btn);
  transition: transform var(--t-mid) var(--ease-spring), box-shadow var(--t-mid) ease, opacity var(--t-fast) ease;
  letter-spacing: 0.1px;
  position: relative;
  overflow: hidden;
}

.submit-btn::after,
.continue-btn::after {
  content: '';
  position: absolute; 
  inset: 0;
  background: linear-gradient(105deg, transparent 40%, rgba(255, 255, 255, 0.18) 50%, transparent 60%);
  transform: translateX(-100%);
  transition: transform 0.5s ease;
}

.submit-btn:hover::after,
.continue-btn::after { 
  transform: translateX(100%); 
}

.submit-btn:hover:not(:disabled),
.continue-btn:hover:not(:disabled) {
  transform: translateY(-2px);
  box-shadow: var(--shadow-btn-h);
}

.submit-btn:active:not(:disabled),
.continue-btn:active:not(:disabled) { 
  transform: scale(0.99); 
}

.submit-btn:disabled,
.continue-btn:disabled {
  opacity: 0.65;
  cursor: not-allowed;
}

.btn-spinner {
  width: 18px; 
  height: 18px;
  border: 2.5px solid rgba(255, 255, 255, 0.3);
  border-top-color: white;
  border-radius: 50%;
  animation: spin 0.75s linear infinite;
}

.form-footer {
  text-align: center;
  margin-top: 20px;
  font-size: 14px;
  color: var(--text-3);
}

.form-footer a {
  color: var(--brand);
  font-weight: 700;
  text-decoration: none;
}

.form-footer a:hover { 
  text-decoration: underline; 
}

/* ==========================================================================
   7. MULTI-STEP LAYOUT CONTROLS & WIDGETS
   ========================================================================== */
.steps-outer { 
  overflow: hidden; 
}

.steps-track {
  display: flex;
  width: 200%;
  transition: transform 0.42s cubic-bezier(0.22, 1, 0.36, 1);
  will-change: transform;
}

.steps-track.on-step-2 { 
  transform: translateX(-50%); 
}

.step-panel {
  width: 50%;
  flex-shrink: 0;
}

.step-panel[aria-hidden="true"] * {
  visibility: hidden;
  pointer-events: none;
}

/* WhatsApp Channel Identifiers */
.whatsapp-label {
  display: flex;
  align-items: center;
  gap: 7px;
  font-size: 13px;
  font-weight: 600;
  color: var(--text-2);
  margin-bottom: 7px;
}

.wa-dot {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 20px; 
  height: 20px;
  background: #25D366;
  border-radius: 50%;
  flex-shrink: 0;
}

.wa-dot svg { 
  width: 12px; 
  height: 12px; 
  fill: white; 
}

.phone-hint {
  font-size: 12px;
  color: var(--text-4);
  margin-top: 5px;
  display: flex;
  align-items: center;
  gap: 5px;
}

.phone-hint i { 
  color: #25D366; 
  font-size: 11px; 
}

/* Referral Mechanics Card */
.referral-card {
  background: var(--surface-2);
  border: 1.5px solid var(--border);
  border-radius: var(--r-md);
  padding: 13px 14px 15px;
  margin-top: 4px;
  margin-bottom: 20px;
}

.referral-card-label {
  font-size: 11.5px;
  font-weight: 700;
  color: var(--text-3);
  text-transform: uppercase;
  letter-spacing: 0.6px;
  margin-bottom: 9px;
  display: flex;
  align-items: center;
  gap: 6px;
}

.referral-card-label i { 
  color: var(--gold); 
  font-size: 11px; 
}

.referral-card-label .optional-tag {
  font-size: 10.5px;
  font-weight: 500;
  color: var(--text-4);
  text-transform: none;
  letter-spacing: 0;
  margin-left: auto;
}

/* Step 2 Architecture */
.back-btn {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  background: none;
  border: none;
  font-size: 13px;
  font-weight: 600;
  color: var(--text-3);
  cursor: pointer;
  padding: 0;
  margin-bottom: 18px;
  font-family: var(--font-body);
  transition: color var(--t-fast) ease;
}

.back-btn:hover { 
  color: var(--brand); 
}

.back-btn i { 
  font-size: 12px; 
}

.step2-header { 
  margin-bottom: 18px; 
}

.step2-header h2 {
  font-family: var(--font-logo);
  font-size: 19px;
  font-weight: 800;
  color: var(--text-1);
  margin-bottom: 4px;
}

.step2-header p {
  font-size: 13px;
  color: var(--text-3);
  line-height: 1.5;
}

.phone-summary {
  display: inline-flex;
  align-items: center;
  gap: 7px;
  background: var(--brand-tint);
  border: 1px solid rgba(46, 204, 113, 0.25);
  border-radius: var(--r-full);
  padding: 5px 12px 5px 8px;
  font-size: 12.5px;
  font-weight: 600;
  color: var(--brand);
  margin-bottom: 20px;
  cursor: pointer;
}

.wa-dot-sm {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 18px; 
  height: 18px;
  background: #25D366;
  border-radius: 50%;
  flex-shrink: 0;
}

.wa-dot-sm svg { 
  width: 10px; 
  height: 10px; 
  fill: white; 
}

.phone-summary .edit-icon { 
  font-size: 10px; 
  color: var(--text-4); 
  margin-left: 2px; 
}

/* ==========================================================================
   8. FEEDBACK MODALS & SYSTEM NOTIFICATIONS
   ========================================================================== */
#toastContainer {
  position: fixed;
  top: 20px;
  left: 50%;
  transform: translateX(-50%);
  z-index: 10001;
  display: flex;
  flex-direction: column;
  gap: 8px;
  width: min(420px, calc(100vw - 32px));
  pointer-events: none;
}

.toast {
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 13px 18px;
  border-radius: var(--r-lg);
  font-size: 14px;
  font-weight: 500;
  font-family: var(--font-body);
  box-shadow: var(--shadow-md);
  animation: toastIn 0.3s var(--ease-spring) both;
  pointer-events: auto;
}

.toast.error {
  background: #fff5f5;
  color: #c0392b;
  border: 1.5px solid #fecaca;
}

.toast.success {
  background: #f0fdf4;
  color: #166534;
  border: 1.5px solid #bbf7d0;
}

@media (prefers-color-scheme: dark) {
  .toast.error { background: #2d1515; border-color: #7f1d1d; color: #fca5a5; }
  .toast.success { background: #0f291a; border-color: #166534; color: #86efac; }
}

.toast i { 
  flex-shrink: 0; 
  font-size: 15px; 
}

/* On-Screen Overlays */
.modal-overlay {
  position: fixed;
  inset: 0;
  background: rgba(0, 0, 0, 0.55);
  backdrop-filter: blur(8px);
  -webkit-backdrop-filter: blur(8px);
  display: flex;
  align-items: center;
  justify-content: center;
  z-index: 10000;
  padding: 20px;
  animation: fadeIn 0.25s ease both;
}

.modal-card {
  background: var(--surface);
  border-radius: 24px;
  padding: 36px 28px;
  max-width: 400px;
  width: 100%;
  text-align: center;
  box-shadow: 0 16px 48px rgba(0, 0, 0, 0.2);
  animation: modalUp 0.4s var(--ease-spring) both;
}

.modal-icon-ring {
  width: 76px; 
  height: 76px;
  background: linear-gradient(135deg, #dcfce7, #bbf7d0);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 20px;
  border: 3px solid var(--success);
}

.modal-icon-ring i { 
  font-size: 30px; 
  color: var(--brand); 
}

.modal-card h2 {
  font-family: var(--font-logo);
  font-size: 22px;
  font-weight: 800;
  color: var(--text-1);
  margin-bottom: 10px;
}

.modal-card p {
  font-size: 14px;
  color: var(--text-3);
  line-height: 1.6;
  margin-bottom: 22px;
}

.modal-card p strong { 
  color: var(--brand); 
  font-weight: 700; 
}

.modal-next-step {
  background: var(--surface-2);
  border: 1.5px solid var(--border);
  border-radius: var(--r-lg);
  padding: 16px;
  margin-bottom: 22px;
  font-size: 13px;
  color: var(--text-2);
  line-height: 1.5;
}

.modal-next-step i { 
  color: var(--brand); 
  margin-right: 6px; 
}

.modal-btn {
  width: 100%;
  background: linear-gradient(135deg, var(--brand-mid), var(--brand));
  color: white;
  border: none;
  border-radius: var(--r-lg);
  padding: 14px;
  font-size: 15px;
  font-weight: 700;
  font-family: var(--font-body);
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  box-shadow: var(--shadow-btn);
  transition: transform var(--t-mid) var(--ease-spring), box-shadow var(--t-mid) ease;
}

.modal-btn:hover {
  transform: translateY(-2px);
  box-shadow: var(--shadow-btn-h);
}

/* Trust Strips & Microcopy Footer Elements */
.trust-row,
.trust-strip {
  display: flex;
  justify-content: center;
  gap: 18px;
  flex-wrap: wrap;
  padding: 14px 0 18px;
}

.trust-strip {
  gap: 16px;
  padding: 16px 0 2px;
  border-top: 1px solid var(--border);
  margin-top: 18px;
}

.trust-item {
  display: flex;
  align-items: center;
  gap: 6px;
  font-size: 12px;
  font-weight: 600;
  color: var(--text-3);
}

.trust-strip .trust-item {
  gap: 5px;
  font-size: 11.5px;
  color: var(--text-4);
}

.trust-item i {
  color: var(--brand);
  font-size: 13px;
}

.trust-strip .trust-item i { 
  font-size: 12px; 
}

/* ==========================================================================
   9. GLOBAL KEYFRAMES & MOTION PROPERTIES
   ========================================================================== */
@keyframes cardUp {
  from { opacity: 0; transform: translateY(24px) scale(0.98); }
  to   { opacity: 1; transform: translateY(0) scale(1); }
}

@keyframes logoPop {
  from { opacity: 0; transform: scale(0.6) rotate(-8deg); }
  to   { opacity: 1; transform: scale(1) rotate(0deg); }
}

@keyframes fadeSlide {
  from { opacity: 0; transform: translateY(12px); }
  to   { opacity: 1; transform: translateY(0); }
}

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

@keyframes toastIn {
  from { opacity: 0; transform: translateY(-10px) scale(0.96); }
  to   { opacity: 1; transform: translateY(0) scale(1); }
}

@keyframes toastOut {
  to { opacity: 0; transform: translateY(-6px) scale(0.96); }
}

@keyframes fadeIn { 
  from { opacity: 0; } 
  to   { opacity: 1; } 
}

@keyframes modalUp {
  from { opacity: 0; transform: translateY(24px) scale(0.96); }
  to   { opacity: 1; transform: translateY(0) scale(1); }
}

/* ==========================================================================
   10. MEDIA QUERIES & ACCESSIBILITY STRATEGIES
   ========================================================================== */
@media (max-width: 480px) {
  body { 
    padding: 16px 12px 40px; 
  }
  .container { 
    padding: 28px 18px 26px; 
    border-radius: 20px; 
  }
  .input-row { 
    grid-template-columns: 1fr; 
    gap: 0; 
  }
  .header-logo-text { 
    font-size: 22px; 
  }
  .trust-row { 
    gap: 12px; 
  }
  .google-btn { 
    padding: 14px 20px; 
  }
}

/* Interactive Accessibility Outlines */
:focus-visible {
  outline: 2px solid var(--brand);
  outline-offset: 2px;
  border-radius: 4px;
}

/* Device Performance Considerations (Reduced Motion flag) */
@media (prefers-reduced-motion: reduce) {
  *, *::before, *::after {
    animation-duration: 0.01ms !important;
    transition-duration: 0.01ms !important;
  }
}
