.sc-wrap * {
  box-sizing: border-box;
}

.sc-wrap {
  font-family: 'Inter', system-ui, -apple-system, sans-serif;
  color: #0f172a;
  position: relative;
  display: block;
}

.sc-wrap .calculator {
  background: linear-gradient(145deg, #0f172a, #1e3a8a);
  color: #fff;
  padding: 36px 28px;
  border-radius: 18px;
  box-shadow: 0 12px 40px rgba(0, 0, 0, 0.25);
  max-width: 420px;
  margin: 40px auto;
  text-align: center;
  position: relative;
  overflow: hidden;
  transition: all 0.4s ease;
  box-shadow: 0 18px 60px rgba(15, 23, 42, 0.25), 0 6px 18px rgba(15, 23, 42, 0.16);
}

.sc-wrap .calculator::before,
.sc-wrap .calculator::after {
  content: '';
  position: absolute;
  inset: -30%;
  background: conic-gradient(
    from 90deg,
    rgba(59, 130, 246, 0.2),
    rgba(34, 197, 94, 0.16),
    rgba(168, 85, 247, 0.18),
    rgba(59, 130, 246, 0.2)
  );
  animation: gradientShift 14s linear infinite;
  filter: blur(45px);
  opacity: 0.7;
  z-index: 0;
}

.sc-wrap .calculator::after {
  animation-direction: reverse;
  opacity: 0.35;
}

.sc-wrap .calculator > * {
  position: relative;
  z-index: 1;
}

.sc-wrap .calculator__title-row {
  display: flex;
  align-items: baseline;
  justify-content: center;
  gap: 10px;
}

.sc-wrap .calculator__title {
  font-size: 24px;
  font-weight: 700;
  margin: 0 0 20px;
  letter-spacing: 0.5px;
  transition: all 0.3s ease;
  position: relative;
  line-height: 1.1;
  color: #ffffff;
}

.sc-wrap .calculator__title::after {
  content: '';
  position: absolute;
  left: 50%;
  bottom: -8px;
  width: 48px;
  height: 4px;
  background: linear-gradient(90deg, #60a5fa, #a855f7, #22c55e);
  border-radius: 999px;
  transform: translateX(-50%) scaleX(0);
  transform-origin: center;
  animation: pulseBar 1.6s ease-in-out infinite;
}

.sc-wrap .calculator__badge {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 4px 10px;
  min-height: 22px;
  background: linear-gradient(120deg, rgba(34, 197, 94, 0.3), rgba(59, 130, 246, 0.35));
  border: 1px solid rgba(255, 255, 255, 0.2);
  border-radius: 999px;
  font-size: 11px;
  text-transform: uppercase;
  letter-spacing: 0.7px;
  color: #e0f2fe;
  box-shadow: 0 8px 20px rgba(0, 0, 0, 0.18);
  line-height: 1;
  transform: translateY(0);
}

.sc-wrap .calculator__route {
  display: none;
  font-size: 16px;
  color: #a5b4fc;
  margin-bottom: 15px;
  font-weight: 500;
  opacity: 0;
  transition: opacity 0.4s ease;
}

.sc-wrap .calculator__route .chip {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  padding: 8px 12px;
  background: rgba(255, 255, 255, 0.07);
  border: 1px solid rgba(255, 255, 255, 0.12);
  border-radius: 999px;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.2);
}

.sc-wrap .calculator__route .chip-dot {
  width: 9px;
  height: 9px;
  border-radius: 50%;
  background: linear-gradient(120deg, #60a5fa, #a855f7);
  box-shadow: 0 0 0 6px rgba(96, 165, 250, 0.15);
}

.sc-wrap .calculator__inputs {
  display: grid;
  gap: 15px;
  transition: opacity 0.3s ease;
  animation: floatIn 0.6s ease 0.05s both;
  align-items: stretch;
}

.sc-wrap .calculator__row {
  display: grid;
  grid-template-columns: 1fr auto;
  gap: 10px;
  align-items: stretch;
}

.sc-wrap .calculator__select {
  width: 100%;
  padding: 12px 16px;
  font-size: 16px;
  border: 1px solid rgba(255, 255, 255, 0.14);
  border-radius: 10px;
  background: rgba(38, 64, 140, 0.8);
  color: #fff;
  appearance: none;
  transition: box-shadow 0.25s ease, transform 0.15s ease, border-color 0.2s ease;
}

.sc-wrap .calculator__select:focus-visible {
  outline: none;
  box-shadow: 0 0 0 3px rgba(59, 130, 246, 0.4), 0 8px 24px rgba(59, 130, 246, 0.35);
  transform: translateY(-1px);
  border-color: rgba(255, 255, 255, 0.4);
}

.sc-wrap .btn {
  width: 100%;
  padding: 14px 18px;
  font-size: 17px;
  border: none;
  border-radius: 10px;
  font-weight: 700;
  cursor: pointer;
  transition: all 0.25s ease;
  position: relative;
  overflow: hidden;
  transform: translateZ(0);
}

.sc-wrap .btn:disabled {
  opacity: 0.6;
  cursor: not-allowed;
}

.sc-wrap .btn-primary {
  background: #3b82f6;
  color: #fff;
  box-shadow: inset 0 -2px rgba(0, 0, 0, 0.15);
}

.sc-wrap .btn-primary:hover:not(:disabled) {
  background: #2563eb;
}

.sc-wrap .btn-primary:active:not(:disabled),
.sc-wrap .btn-success:active:not(:disabled) {
  transform: translateY(1px) scale(0.99);
}

.sc-wrap .btn-success {
  margin-top: 20px;
  background: #22c55e;
  color: #fff;
  box-shadow: 0 4px 12px rgba(34, 197, 94, 0.4);
}

.sc-wrap .btn-success:hover:not(:disabled) {
  background: #16a34a;
  box-shadow: 0 4px 18px rgba(34, 197, 94, 0.6);
  transform: translateY(-1px);
}

.sc-wrap .btn-ghost {
  width: 56px;
  min-width: 56px;
  height: 48px;
  min-height: 48px;
  padding: 0 12px;
  background: rgba(255, 255, 255, 0.06);
  color: #e2e8f0;
  border: 1px solid rgba(255, 255, 255, 0.12);
  box-shadow: 0 10px 24px rgba(15, 23, 42, 0.18);
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-size: 18px;
  border-radius: 10px;
}

.sc-wrap .btn-ghost:hover:not(:disabled) {
  background: rgba(255, 255, 255, 0.12);
}

.sc-wrap .btn::after {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(120deg, rgba(255, 255, 255, 0.12), rgba(255, 255, 255, 0.02), rgba(255, 255, 255, 0.12));
  transform: translateX(-120%);
  transition: transform 0.5s ease;
}

.sc-wrap .btn:hover:not(:disabled)::after {
  transform: translateX(0);
}

.sc-wrap .calculator__result {
  display: none;
  opacity: 0;
  transition: opacity 0.4s ease;
}

.sc-wrap .calculator__result.is-visible {
  animation: popReveal 0.4s ease;
}

.sc-wrap .calculator__quote {
  margin-top: 20px;
  font-size: 22px;
  font-weight: 600;
  min-height: 32px;
  color: #fff;
}

.sc-wrap .calculator__quote .quote-box {
  background: rgba(34, 197, 94, 0.1);
  border: 2px solid #4ade80;
  border-radius: 12px;
  padding: 10px 15px;
  box-shadow: 0 12px 30px rgba(34, 197, 94, 0.35), 0 0 0 1px rgba(255, 255, 255, 0.06);
  position: relative;
  overflow: hidden;
}

.sc-wrap .calculator__quote .quote-box::before {
  content: '';
  position: absolute;
  top: -60%;
  left: -20%;
  width: 70%;
  height: 220%;
  background: radial-gradient(circle, rgba(74, 222, 128, 0.18), transparent 55%);
  transform: rotate(-8deg);
}

.sc-wrap .calculator__quote .quote-box::after {
  content: '';
  position: absolute;
  top: 0;
  right: 0;
  width: 140px;
  height: 140px;
  background: radial-gradient(circle at 100% 0%, rgba(255, 255, 255, 0.14), transparent 55%);
  mix-blend-mode: screen;
}

.sc-wrap .calculator__quote .quote-label {
  font-size: 18px;
  color: #a7f3d0;
}

.sc-wrap .calculator__quote .quote-value {
  font-size: 36px;
  font-weight: 800;
  color: #4ade80;
}

.sc-wrap .calculator__quote .quote-note {
  margin-top: 8px;
  font-size: 12px;
  color: #cbd5e1;
  opacity: 0.9;
}

.sc-wrap .calculator__quote .quote-note--warning {
  color: #facc15;
}

.sc-wrap .calculator__quote .quote-note--error {
  color: #f87171;
}

.sc-wrap .calculator__meta {
  margin-top: 10px;
  font-size: 12px;
  color: #cbd5e1;
  opacity: 0.9;
}

.sc-wrap .calculator__reset {
  margin-top: 15px;
  background: none;
  border: none;
  color: #f87171;
  font-weight: 600;
  cursor: pointer;
  text-decoration: underline;
}

.sc-wrap .loader {
  display: none;
  position: absolute;
  inset: 0;
  background: rgba(15, 23, 42, 0.7);
  backdrop-filter: blur(3px);
  z-index: 5;
  align-items: center;
  justify-content: center;
}

.sc-wrap .loader::after {
  content: '';
  position: absolute;
  width: 180px;
  height: 180px;
  border-radius: 50%;
  background: conic-gradient(
    rgba(96, 165, 250, 0.3),
    rgba(168, 85, 247, 0.25),
    rgba(34, 197, 94, 0.25),
    rgba(96, 165, 250, 0.3)
  );
  filter: blur(24px);
  animation: gradientShift 8s linear infinite;
  opacity: 0.6;
}

.sc-wrap .spinner {
  display: flex;
  gap: 8px;
}

.sc-wrap .dot {
  width: 12px;
  height: 12px;
  border-radius: 50%;
  background: #60a5fa;
  animation: bounce 0.8s infinite ease-in-out;
}

.sc-wrap .dot2 {
  animation-delay: 0.15s;
}

.sc-wrap .dot3 {
  animation-delay: 0.3s;
}

.sc-wrap .modal,
.sc-portal {
  display: none;
  position: fixed;
  z-index: 2147483647 !important;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(0, 0, 0, 0.6);
  backdrop-filter: blur(6px);
  align-items: center;
  justify-content: center;
  inset: 0;
}

.sc-wrap .modal__content,
.sc-portal .modal__content {
  background: radial-gradient(circle at 20% 20%, rgba(59, 130, 246, 0.08), transparent 35%),
    radial-gradient(circle at 80% 0%, rgba(168, 85, 247, 0.06), transparent 32%),
    #ffffff;
  border-radius: 14px;
  max-width: 720px;
  width: 90%;
  padding: 32px 30px;
  position: relative;
  box-shadow: 0 10px 40px rgba(0, 0, 0, 0.3), 0 0 0 1px rgba(255, 255, 255, 0.05);
  animation: fadeIn 0.3s ease;
  color: #001e6c;
  max-height: 92vh;
  overflow-y: auto;
}

.sc-wrap .modal__close,
.sc-portal .modal__close {
  position: absolute;
  top: 14px;
  right: 18px;
  background: none;
  border: none;
  font-size: 28px;
  color: #333;
  cursor: pointer;
}

.sc-wrap .modal__title,
.sc-portal .modal__title {
  margin: 0 0 20px;
  text-align: center;
  color: #0f172a;
}

.sc-wrap .form-card {
  display: flex;
  flex-direction: column;
  gap: 12px;
  background: linear-gradient(180deg, #ffffff, #f8fafc);
  border-radius: 16px;
  padding: 16px 14px;
  border: 1px solid rgba(226, 232, 240, 0.8);
  box-shadow: 0 18px 36px rgba(15, 23, 42, 0.15), 0 0 0 1px rgba(255, 255, 255, 0.4);
}

.sc-wrap .form-card__grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: 12px 16px;
}

.sc-wrap .form-card__field {
  display: flex;
  flex-direction: column;
  gap: 6px;
}

.sc-wrap .form-card__field--full {
  grid-column: 1 / -1;
}

.sc-wrap .form-card__label {
  font-size: 13px;
  font-weight: 600;
  color: #0f172a;
  margin-bottom: 6px;
}

.sc-wrap .form-card__input {
  border: 1px solid #e2e8f0;
  border-radius: 10px;
  padding: 10px 12px;
  font-size: 14px;
  color: #0f172a;
  background: #fff;
  transition: border-color 0.2s ease, box-shadow 0.2s ease, transform 0.15s ease;
}

.sc-wrap .form-card__input:focus-visible {
  outline: none;
  border-color: #3b82f6;
  box-shadow: 0 0 0 3px rgba(59, 130, 246, 0.25);
  transform: translateY(-1px);
}

.sc-wrap .form-card__textarea {
  resize: vertical;
  min-height: 88px;
}

.sc-wrap .form-card__error {
  min-height: 16px;
  font-size: 12px;
  color: #dc2626;
}

.sc-wrap .form-card__input.is-error {
  border-color: #dc2626;
  box-shadow: 0 0 0 3px rgba(220, 38, 38, 0.1);
}

.sc-wrap .form-card__route {
  padding: 12px 14px;
  background: rgba(59, 130, 246, 0.08);
  border: 1px dashed rgba(59, 130, 246, 0.3);
  border-radius: 12px;
  color: #0f172a;
  font-size: 14px;
  display: none;
}

.sc-wrap .form-card__actions {
  display: flex;
  align-items: center;
  gap: 12px;
  flex-wrap: wrap;
}

.sc-wrap .form-card__status {
  font-size: 13px;
  color: #059669;
  min-height: 18px;
}

/* Multistep modal form */
.sc-wrap .progress-bar {
  height: 12px;
  background: #e2e8f0;
  border-radius: 999px;
  overflow: hidden;
  margin: 6px 0 14px;
  position: relative;
  box-shadow: inset 0 1px 2px rgba(15, 23, 42, 0.06);
}

.sc-wrap .progress-fill {
  height: 100%;
  width: 0%;
  background: linear-gradient(90deg, #22c55e, #3b82f6);
  border-radius: 999px;
  box-shadow: 0 4px 14px rgba(56, 189, 248, 0.35);
  transition: width 0.35s ease;
}

.sc-wrap .form-meta {
  display: flex;
  gap: 10px;
  flex-wrap: wrap;
  align-items: center;
  margin-bottom: 6px;
}

.sc-wrap .progress-header {
  display: flex;
  flex-direction: column;
  gap: 4px;
  margin-bottom: 4px;
}

.sc-wrap .progress-label {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-weight: 700;
  color: #0f172a;
  font-size: 13px;
  letter-spacing: 0.4px;
}

.sc-wrap .progress-step {
  padding: 6px 10px;
  border-radius: 999px;
  background: linear-gradient(120deg, rgba(59, 130, 246, 0.14), rgba(226, 232, 240, 0.8));
  border: 1px solid rgba(59, 130, 246, 0.28);
  box-shadow: 0 4px 10px rgba(15, 23, 42, 0.12);
}

.sc-wrap .progress-arrow {
  font-size: 14px;
  color: #3b82f6;
}

.sc-wrap .form-pill {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  padding: 7px 12px;
  border-radius: 999px;
  background: #eef2ff;
  border: 1px solid rgba(59, 130, 246, 0.3);
  color: #0f172a;
  font-size: 13px;
  font-weight: 600;
  box-shadow: 0 6px 14px rgba(15, 23, 42, 0.08);
  min-height: 34px;
}

.sc-wrap .form-pill--accent {
  background: #ecfdf3;
  border-color: rgba(34, 197, 94, 0.35);
  color: #166534;
}

.sc-wrap .form-pill__icon {
  width: 18px;
  height: 18px;
  border-radius: 50%;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-size: 11px;
  color: #fff;
  background: linear-gradient(135deg, #3b82f6, #2563eb);
}

.sc-wrap .form-pill--accent .form-pill__icon {
  background: linear-gradient(135deg, #22c55e, #16a34a);
}

.sc-wrap .step {
  display: none;
  opacity: 0;
  transform: translateY(6px);
  transition: opacity 0.25s ease, transform 0.25s ease;
}

.sc-wrap .step:first-of-type {
  display: block;
  opacity: 1;
  transform: translateY(0);
}

.sc-wrap .step.is-active {
  display: block;
  opacity: 1;
  transform: translateY(0);
  animation: fadeInUp 0.25s ease;
}

.sc-wrap .step-heading {
  display: flex;
  flex-direction: column;
  gap: 6px;
  margin-bottom: 10px;
}

.sc-wrap .step-heading h3 {
  margin: 0;
  color: #0f172a;
  font-size: 20px;
  letter-spacing: -0.3px;
}

.sc-wrap .step-subtitle {
  margin: 0;
  color: #475569;
  font-size: 14px;
}

.sc-wrap .form-row {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: 12px 16px;
  margin-bottom: 10px;
}

.sc-wrap .form-col-1 {
  grid-column: 1 / -1;
}

.sc-wrap .form-col-2 {
  grid-column: span 1;
}

.sc-wrap .form-col-3 {
  grid-column: span 1;
}

.sc-wrap .field-wrapper label {
  font-size: 13px;
  font-weight: 600;
  color: #0f172a;
  margin-bottom: 6px;
}

.sc-wrap .form-input {
  width: 100%;
  border: 1px solid #e2e8f0;
  border-radius: 10px;
  padding: 10px 12px;
  font-size: 14px;
  color: #0f172a;
  background: #fff;
  transition: border-color 0.2s ease, box-shadow 0.2s ease, transform 0.15s ease;
}

.sc-wrap .form-input:focus-visible {
  outline: none;
  border-color: #3b82f6;
  box-shadow: 0 0 0 3px rgba(59, 130, 246, 0.25);
  transform: translateY(-1px);
}

.sc-wrap .form-input:disabled {
  background: #f1f5f9;
  color: #94a3b8;
  cursor: not-allowed;
}

.sc-wrap .form-input.is-error {
  border-color: #dc2626;
  box-shadow: 0 0 0 3px rgba(220, 38, 38, 0.12);
}

.sc-wrap .checkbox-options {
  display: flex;
  flex-direction: column;
  gap: 8px;
  margin-top: 6px;
}

.sc-wrap .checkbox-option {
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 14px;
  color: #0f172a;
  padding: 10px 12px;
  border-radius: 10px;
  background: rgba(226, 232, 240, 0.5);
  border: 1px solid rgba(226, 232, 240, 0.9);
  transition: border-color 0.2s ease, box-shadow 0.2s ease;
}

.sc-wrap .checkbox-option.inline {
  margin-top: 8px;
  padding: 0;
  border: none;
  background: transparent;
}

.sc-wrap .checkbox-option input:focus-visible + span,
.sc-wrap .checkbox-option:has(input:focus-visible) {
  border-color: #3b82f6;
  box-shadow: 0 0 0 3px rgba(59, 130, 246, 0.18);
}

.sc-wrap .step-navigation {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-top: 6px;
  gap: 10px;
}

.sc-wrap .form-btn {
  padding: 12px 18px;
  border-radius: 10px;
  border: none;
  font-weight: 700;
  cursor: pointer;
  background: linear-gradient(120deg, #3b82f6, #2563eb);
  color: #fff;
  box-shadow: 0 6px 18px rgba(59, 130, 246, 0.4);
  transition: transform 0.15s ease, box-shadow 0.15s ease;
  position: relative;
  overflow: hidden;
}

.sc-wrap .form-btn:hover {
  transform: translateY(-1px);
  box-shadow: 0 10px 22px rgba(59, 130, 246, 0.45);
}

.sc-wrap .form-btn:active {
  transform: translateY(1px);
}

.sc-wrap .form-btn.prev-btn {
  background: #e2e8f0;
  color: #0f172a;
  box-shadow: none;
}

.sc-wrap .form-btn::after {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(120deg, rgba(255, 255, 255, 0.18), rgba(255, 255, 255, 0.05), rgba(255, 255, 255, 0.18));
  transform: translateX(-120%);
  transition: transform 0.5s ease;
}

.sc-wrap .form-btn:hover::after {
  transform: translateX(0);
}

.sc-wrap .vehicle-block {
  background: #f8fafc;
  border: 1px solid #e2e8f0;
  border-radius: 12px;
  padding: 16px;
  margin-bottom: 12px;
  box-shadow: 0 10px 22px rgba(15, 23, 42, 0.08);
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.sc-wrap .vehicle-block h4 {
  margin: 0;
  color: #0f172a;
}

.sc-wrap .notice {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  color: #475569;
  margin: 4px 0 6px;
}

.sc-wrap .notice .stars {
  color: #f59e0b;
}

.sc-wrap .upload-wrapper {
  margin-top: 2px;
  padding: 12px;
  background: #eef2ff;
  border: 1px solid #e0e7ff;
  border-radius: 10px;
  display: none;
}

.sc-wrap .modified-notes {
  padding: 12px;
  background: #f8fafc;
  border: 1px solid #e2e8f0;
  border-radius: 10px;
  display: none;
}

.sc-wrap .alert-inline {
  margin: 6px 0 2px;
  padding: 10px 12px;
  background: rgba(248, 113, 113, 0.08);
  border: 1px solid rgba(248, 113, 113, 0.5);
  border-radius: 10px;
  color: #b91c1c;
  font-size: 13px;
  font-weight: 600;
}

.sc-wrap .form-status {
  margin: 10px 0;
  font-size: 13px;
  color: #059669;
  min-height: 18px;
}

.sc-wrap .form-status.is-error {
  color: #dc2626;
}

.sc-wrap .confirmation-copy {
  color: #0f172a;
  font-size: 15px;
}

.sc-wrap .thank-card {
  background: #f8fafc;
  border: 1px solid #e2e8f0;
  border-radius: 16px;
  padding: 24px;
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.6);
  display: flex;
  flex-direction: column;
  gap: 10px;
  align-items: flex-start;
}

.sc-wrap .thank-logo {
  max-width: 220px;
  height: auto;
}

.sc-wrap .thank-status {
  margin: 0;
  color: #16a34a;
  font-weight: 700;
}

.sc-wrap .thank-heading {
  margin: 6px 0 2px;
  color: #0f172a;
}

.sc-wrap .thank-copy {
  margin: 0;
  color: #334155;
  font-size: 14px;
}

.sc-wrap .thank-card--final {
  text-align: left;
  align-items: center;
  gap: 6px;
  max-width: 520px;
  margin: 0 auto;
  background: radial-gradient(circle at 20% 20%, rgba(59, 130, 246, 0.07), transparent 45%), #f8fafc;
  border: 1px solid #e2e8f0;
  box-shadow: 0 12px 30px rgba(15, 23, 42, 0.12);
}

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

@media (max-width: 640px) {
  .modal__content {
    width: 95%;
    padding: 22px 18px;
  }

  .form-card {
    padding: 14px 12px;
  }

  .progress-label {
    font-size: 12px;
  }

  .form-row {
    grid-template-columns: 1fr;
  }

  .form-btn {
    width: 100%;
    text-align: center;
  }

  .step-navigation {
    flex-direction: column;
    align-items: stretch;
  }

  .form-meta {
    gap: 8px;
  }
}

@keyframes fadeIn {
  from {
    opacity: 0;
    transform: scale(0.95);
  }
  to {
    opacity: 1;
    transform: scale(1);
  }
}

@keyframes gradientShift {
  from {
    transform: rotate(0deg);
  }
  to {
    transform: rotate(360deg);
  }
}

@keyframes bounce {
  0%,
  80%,
  100% {
    transform: scale(0);
    opacity: 0.3;
  }
  40% {
    transform: scale(1);
    opacity: 1;
  }
}

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

@keyframes popReveal {
  0% {
    opacity: 0;
    transform: translateY(6px) scale(0.98);
  }
  100% {
    opacity: 1;
    transform: translateY(0) scale(1);
  }
}
