    /* ==================== LANDING SCREEN ==================== */
    .landing-screen { text-align: center; padding-top: 40px; overscroll-behavior: none; }

    .landing-screen h1 {
      font-family: var(--font-serif);
      font-size: clamp(2.25rem, 5.5vw, 3rem);
      font-weight: 600;
      color: var(--slate-900);
      line-height: 1.2;
      letter-spacing: -0.02em;
      margin-bottom: 24px;
    }

    .landing-screen .subtitle {
      font-size: 1.125rem;
      color: var(--slate-600);
      line-height: 1.6;
      margin-bottom: 16px;
    }

    .landing-screen .tagline {
      font-family: var(--font-serif);
      font-size: 1.25rem;
      font-weight: 600;
      color: var(--cr-teal-dark);
      margin-bottom: 48px;
      letter-spacing: -0.01em;
    }

    /* Screen headers for preference flow */
    .screen-header {
      font-family: var(--font-serif);
      font-size: 1.5rem;
      font-weight: 600;
      color: var(--slate-900);
      text-align: center;
      margin-bottom: 24px;
      letter-spacing: -0.02em;
    }

    .screen-subheader {
      font-size: 1rem;
      color: var(--slate-600);
      text-align: center;
      line-height: 1.5;
      margin-bottom: 24px;
      padding: 0 12px;
    }

    /* Centered chat bubble for selection screens */
    .chat-bubble.centered {
      text-align: center;
    }

    /* Search container */
    .search-container { position: relative; max-width: 420px; margin: 0 auto; }

    .search-input-wrapper { position: relative; }

    .search-icon {
      position: absolute;
      left: 20px;
      top: 50%;
      transform: translateY(-50%);
      width: 22px;
      height: 22px;
      color: var(--slate-400);
      pointer-events: none;
      transition: color 0.2s ease;
    }

    .search-input {
      width: 100%;
      padding: 20px 24px 20px 56px;
      font-family: inherit;
      font-size: 1.0625rem;
      border: 2px solid var(--slate-200);
      border-radius: 12px;
      background: var(--white);
      color: var(--slate-900);
      outline: none;
      transition: all 0.2s var(--ease-out);
      box-shadow: 0 2px 8px rgba(0,0,0,0.04);
    }

    .search-input::placeholder { color: var(--slate-500); }
    .search-input:hover { border-color: var(--slate-500); }
    .search-input:focus {
      border-color: var(--cr-teal);
      box-shadow: 0 4px 24px rgba(70, 158, 146, 0.15);
    }

    /* Autocomplete dropdown */
    .autocomplete-dropdown {
      position: absolute;
      top: calc(100% + 8px);
      left: 0;
      right: 0;
      background: var(--white);
      border: 1px solid var(--slate-200);
      border-radius: 12px;
      box-shadow: var(--shadow-lg);
      max-height: 380px;
      overflow-y: auto;
      z-index: 100;
      display: none;
    }

    .autocomplete-dropdown.visible { display: block; }

    .autocomplete-item {
      display: flex;
      align-items: center;
      padding: 16px 20px;
      cursor: pointer;
      border-bottom: 1px solid var(--slate-100);
      transition: background 0.15s ease;
    }

    .autocomplete-item:last-child { border-bottom: none; }
    .autocomplete-item:hover { background: var(--slate-50); }

    .school-color-bar {
      width: 6px;
      height: 48px;
      border-radius: 4px;
      margin-right: 16px;
      flex-shrink: 0;
    }

    .school-info { flex: 1; }
    .school-name { font-weight: 600; color: var(--slate-900); font-size: 1rem; }
    .school-location { font-size: 0.875rem; color: var(--slate-500); margin-top: 2px; }

    .school-not-found {
      padding: 24px 20px;
      text-align: center;
    }

    .school-not-found p { color: var(--slate-600); margin-bottom: 8px; }
    .school-not-found a { color: var(--cr-teal); text-decoration: none; font-weight: 500; }
    .school-not-found a:hover { text-decoration: underline; }

    /* Trust points */
    .trust-points {
      display: flex;
      align-items: center;
      justify-content: center;
      gap: 24px;
      margin-top: 48px;
      padding: 32px 20px;
    }

    .trust-accent {
      width: 4px;
      height: 72px;
      background: var(--cr-teal);
      border-radius: 2px;
      flex-shrink: 0;
    }

    .trust-list { text-align: left; }
    .trust-list p { font-size: 0.9375rem; color: var(--slate-600); margin: 6px 0; display: flex; align-items: center; }
    .trust-emoji { font-size: 1.25rem; margin-right: 8px; vertical-align: middle; }
    .trust-note { color: var(--slate-500); font-size: 0.8125rem; }

    /* ==================== CONFIRMATION SCREEN ==================== */
    .confirmation-screen { padding-top: 20px; }

    .school-confirmation-card {
      position: relative;
      border-radius: 20px;
      padding: 40px 32px;
      text-align: center;
      overflow: hidden;
      color: var(--school-primary-text);
      box-shadow: 0 8px 40px rgba(0, 0, 0, 0.15);
      margin-bottom: 32px;
    }

    .school-confirmation-card::before {
      content: '';
      position: absolute;
      inset: 0;
      background: linear-gradient(135deg, rgba(255,255,255,0.18) 0%, transparent 60%);
      pointer-events: none;
    }

    .confirmation-content { position: relative; z-index: 1; }

    .spirit-cheer {
      font-family: var(--font-sans);
      font-size: 1.5rem;
      font-weight: 600;
      color: inherit;
      opacity: 0.95;
      margin-bottom: 8px;
    }

    .value-statement {
      font-family: var(--font-serif);
      font-size: clamp(1.5rem, 4vw, 1.875rem);
      font-weight: 700;
      color: inherit;
      margin-bottom: 8px;
      line-height: 1.2;
    }

    .value-statement strong {
      font-weight: 700;
    }

    .action-count {
      font-family: var(--font-sans);
      font-size: 0.9375rem;
      font-weight: 500;
      color: inherit;
      opacity: 0.9;
      margin-bottom: 4px;
    }

    .formal-slogan {
      font-family: var(--font-sans);
      font-size: 1.25rem;
      font-weight: 500;
      font-style: italic;
      color: inherit;
      opacity: 0.95;
      margin-top: 16px;
      padding-top: 16px;
      border-top: 1px solid var(--school-primary-border);
      letter-spacing: 0.5px;
    }

    .continue-btn {
      display: inline-flex;
      align-items: center;
      gap: 10px;
      padding: 16px 32px;
      background: var(--cr-teal);
      color: var(--white);
      font-family: inherit;
      font-size: 1.0625rem;
      font-weight: 600;
      border: none;
      border-radius: 14px;
      cursor: pointer;
      transition: all 0.25s var(--ease-out);
      box-shadow: var(--shadow-teal);
    }

    .continue-btn:hover {
      background: var(--cr-teal-dark);
      transform: translateY(-2px);
      box-shadow: 0 8px 30px rgba(70, 158, 146, 0.35);
    }

    .continue-btn:disabled {
      opacity: 0.5;
      cursor: not-allowed;
      transform: none;
    }

    .continue-btn svg {
      width: 20px;
      height: 20px;
      transition: transform 0.25s var(--ease-out);
    }

    .continue-btn:hover svg { transform: translateX(4px); }

    /* Center buttons container */
    .button-container {
      display: flex;
      flex-direction: column;
      align-items: center;
      gap: 12px;
    }
