/* Maths Made Easy — vibrant, eye-catching UI */
@import url("https://fonts.googleapis.com/css2?family=Outfit:wght@400;500;600;700;800&family=Syne:wght@600;700;800&display=swap");

:root {
  /* Developer Review Mode: semantic surface/shadow/accent tints (exact current values) */
  --surface-a05: rgba(255, 255, 255, 0.05);
  --surface-a06: rgba(255, 255, 255, 0.06);
  --surface-a08: rgba(255, 255, 255, 0.08);
  --surface-a10: rgba(255, 255, 255, 0.1);
  --surface-a12: rgba(255, 255, 255, 0.12);
  --shadow-a20: rgba(0, 0, 0, 0.2);
  --shadow-a25: rgba(0, 0, 0, 0.25);
  --accent-a15: rgba(108, 158, 255, 0.15);
  --accent-a20: rgba(108, 158, 255, 0.2);
  --accent-a35: rgba(108, 158, 255, 0.35);
  --accent-a40: rgba(108, 158, 255, 0.4);
  --accent-a50: rgba(108, 158, 255, 0.5);

  --bg-deep: #040612;
  --bg-mid: #0a1030;
  --bg-card: rgba(255, 255, 255, 0.07);
  --bg-card-hover: rgba(255, 255, 255, 0.13);
  --text: #f8f9ff;
  --text-muted: #a8b2d9;
  --accent-tutorial: #6c9eff;
  --accent-practice: #5ee0a8;
  --accent-test: #ffb347;
  --accent-games: #c77dff;
  --accent-progress: #ff6b9d;
  --radius: 22px;
  --radius-sm: 14px;
  --shadow: 0 16px 48px rgba(0, 0, 0, 0.45);
  --shadow-glow: 0 0 40px rgba(108, 158, 255, 0.15);
  --font: "Outfit", "Segoe UI", system-ui, -apple-system, BlinkMacSystemFont, sans-serif;
  --safe-top: env(safe-area-inset-top, 0px);
  --safe-bottom: env(safe-area-inset-bottom, 0px);
  --gradient-brand: linear-gradient(135deg, #6c9eff 0%, #a78bfa 45%, #ff6b9d 100%);
  --gradient-surface: linear-gradient(145deg, rgba(255, 255, 255, 0.09), rgba(255, 255, 255, 0.03));
}

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

html {
  -webkit-text-size-adjust: 100%;
  height: 100%;
}

body {
  margin: 0;
  min-height: 100%;
  font-family: var(--font);
  color: var(--text);
  background-color: var(--bg-deep);
  background-image:
    radial-gradient(ellipse 120% 80% at 50% -40%, rgba(91, 140, 255, 0.28), transparent 55%),
    radial-gradient(ellipse 80% 60% at 100% 20%, rgba(157, 107, 255, 0.18), transparent 50%),
    radial-gradient(ellipse 70% 55% at 0% 80%, rgba(62, 232, 255, 0.12), transparent 50%),
    radial-gradient(ellipse 50% 40% at 80% 90%, rgba(245, 200, 66, 0.08), transparent 45%),
    linear-gradient(180deg, #050818 0%, #080d24 40%, var(--bg-deep) 100%);
  padding: calc(16px + var(--safe-top)) 16px calc(16px + var(--safe-bottom));
  -webkit-tap-highlight-color: transparent;
  user-select: none;
  overflow-x: hidden;
  position: relative;
}

/* Animated ambient orbs */
.bg-scene {
  position: fixed;
  inset: 0;
  pointer-events: none;
  z-index: 0;
  overflow: hidden;
}

.bg-orb {
  position: absolute;
  border-radius: 50%;
  filter: blur(70px);
  opacity: 0.55;
  animation: orb-float 18s ease-in-out infinite;
}

.bg-orb--1 {
  width: 320px;
  height: 320px;
  top: -8%;
  left: -5%;
  background: var(--accent-a35);
}

.bg-orb--2 {
  width: 280px;
  height: 280px;
  bottom: 10%;
  right: -8%;
  background: rgba(199, 125, 255, 0.3);
  animation-delay: -6s;
}

.bg-orb--3 {
  width: 220px;
  height: 220px;
  bottom: 35%;
  left: 20%;
  background: rgba(94, 224, 168, 0.22);
  animation-delay: -12s;
}

@keyframes orb-float {
  0%, 100% { transform: translate(0, 0) scale(1); }
  33% { transform: translate(24px, -18px) scale(1.06); }
  66% { transform: translate(-16px, 12px) scale(0.96); }
}

.app {
  position: relative;
  z-index: 1;
  max-width: 720px;
  margin: 0 auto;
  min-height: calc(100dvh - 32px - var(--safe-top) - var(--safe-bottom));
  display: flex;
  flex-direction: column;
}

/* Header hero */
.header {
  padding: 4px 0 28px;
}

.header.hero {
  padding: 20px 22px 24px;
  margin-bottom: 8px;
  border-radius: var(--radius);
  background: var(--gradient-surface);
  border: 1px solid var(--surface-a12);
  box-shadow: var(--shadow), var(--shadow-glow);
  backdrop-filter: blur(16px);
  -webkit-backdrop-filter: blur(16px);
  animation: fade-up 0.6s ease both;
}

.header__brand {
  display: flex;
  align-items: center;
  gap: 18px;
}

.header__logo {
  width: 58px;
  height: 58px;
  flex-shrink: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 18px;
  background: var(--gradient-brand);
  box-shadow:
    0 8px 28px rgba(108, 158, 255, 0.45),
    inset 0 1px 0 rgba(255, 255, 255, 0.35);
  animation: logo-pulse 3s ease-in-out infinite;
}

.header__logo-inner {
  font-size: 1.65rem;
  font-weight: 800;
  color: #fff;
  text-shadow: 0 2px 8px var(--shadow-a25);
}

@keyframes logo-pulse {
  0%, 100% { transform: scale(1); box-shadow: 0 8px 28px rgba(108, 158, 255, 0.45); }
  50% { transform: scale(1.04); box-shadow: 0 12px 36px rgba(167, 139, 250, 0.55); }
}

.header__eyebrow {
  margin: 0 0 4px;
  font-size: 0.72rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.14em;
  background: var(--gradient-brand);
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
}

.header__title {
  margin: 0;
  font-size: 1.75rem;
  font-weight: 800;
  letter-spacing: -0.03em;
  line-height: 1.15;
  background: linear-gradient(135deg, #fff 30%, #c8d4ff 100%);
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
}

.header__subtitle {
  margin: 8px 0 0;
  font-size: 0.92rem;
  color: var(--text-muted);
  line-height: 1.45;
  max-width: 28ch;
}

/* Dashboard grid */
.main {
  flex: 1;
}

.dashboard {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 14px;
  padding: 0;
  margin: 0;
  border: none;
}

@media (min-width: 520px) {
  .dashboard {
    grid-template-columns: repeat(3, 1fr);
    gap: 16px;
  }

  .dashboard__card--progress {
    grid-column: 2;
  }
}

@media (min-width: 720px) {
  .dashboard {
    grid-template-columns: repeat(4, 1fr);
  }

  .dashboard__card--progress {
    grid-column: auto;
  }
}

.dashboard__card {
  position: relative;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 10px;
  min-height: 140px;
  padding: 22px 14px;
  border: 1px solid var(--surface-a10);
  border-radius: var(--radius);
  background: var(--gradient-surface);
  backdrop-filter: blur(14px);
  -webkit-backdrop-filter: blur(14px);
  color: inherit;
  cursor: pointer;
  overflow: hidden;
  transition:
    transform 0.28s cubic-bezier(0.34, 1.4, 0.64, 1),
    box-shadow 0.28s ease,
    border-color 0.28s ease;
  box-shadow: var(--shadow);
  font: inherit;
  text-align: center;
  animation: fade-up 0.55s ease both;
}

.dashboard__card:nth-child(1) { animation-delay: 0.05s; }
.dashboard__card:nth-child(2) { animation-delay: 0.1s; }
.dashboard__card:nth-child(3) { animation-delay: 0.15s; }
.dashboard__card:nth-child(4) { animation-delay: 0.2s; }

.dashboard__card::before {
  content: "";
  position: absolute;
  inset: 0;
  border-radius: inherit;
  padding: 1px;
  background: linear-gradient(145deg, rgba(255, 255, 255, 0.2), transparent 50%);
  -webkit-mask: linear-gradient(#fff 0 0) content-box, linear-gradient(#fff 0 0);
  mask: linear-gradient(#fff 0 0) content-box, linear-gradient(#fff 0 0);
  -webkit-mask-composite: xor;
  mask-composite: exclude;
  pointer-events: none;
  opacity: 0.6;
}

.dashboard__card::after {
  content: "";
  position: absolute;
  top: -50%;
  left: -50%;
  width: 200%;
  height: 200%;
  background: radial-gradient(circle, var(--surface-a08) 0%, transparent 55%);
  opacity: 0;
  transition: opacity 0.3s ease;
  pointer-events: none;
}

.dashboard__card:hover::after,
.dashboard__card:focus-visible::after {
  opacity: 1;
}

.dashboard__card:hover,
.dashboard__card:focus-visible {
  transform: translateY(-6px) scale(1.02);
  outline: none;
}

.dashboard__card:active {
  transform: scale(0.97);
}

.dashboard__card--tutorial:hover,
.dashboard__card--tutorial:focus-visible {
  border-color: var(--accent-a50);
  box-shadow: 0 20px 50px rgba(108, 158, 255, 0.28), var(--shadow);
}

.dashboard__card--test:hover,
.dashboard__card--test:focus-visible {
  border-color: rgba(255, 179, 71, 0.5);
  box-shadow: 0 20px 50px rgba(255, 179, 71, 0.22), var(--shadow);
}

.dashboard__card--games:hover,
.dashboard__card--games:focus-visible {
  border-color: rgba(199, 125, 255, 0.5);
  box-shadow: 0 20px 50px rgba(199, 125, 255, 0.25), var(--shadow);
}

.dashboard__card--progress:hover,
.dashboard__card--progress:focus-visible {
  border-color: rgba(255, 107, 157, 0.5);
  box-shadow: 0 20px 50px rgba(255, 107, 157, 0.25), var(--shadow);
}

@keyframes fade-up {
  from {
    opacity: 0;
    transform: translateY(16px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

.dashboard__icon {
  width: 56px;
  height: 56px;
  border-radius: 18px;
  background-size: 30px;
  background-repeat: no-repeat;
  background-position: center;
  transition: transform 0.28s cubic-bezier(0.34, 1.4, 0.64, 1);
  box-shadow: 0 6px 20px var(--shadow-a25);
}

.dashboard__card:hover .dashboard__icon {
  transform: scale(1.1) rotate(-3deg);
}

.dashboard__card--tutorial .dashboard__icon,
.dashboard__icon--tutorial {
  background-color: color-mix(in srgb, var(--accent-tutorial) 30%, transparent);
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' fill='none' viewBox='0 0 24 24' stroke='%236c9eff' stroke-width='2'%3E%3Cpath stroke-linecap='round' d='M12 6.253v13m0-13C10.832 5.477 9.246 5 7.5 5S4.168 5.477 3 6.253v13C4.168 18.477 5.754 18 7.5 18s3.332.477 4.5 1.253m0-13C13.168 5.477 14.754 5 16.5 5c1.747 0 3.332.477 4.5 1.253v13C19.832 18.477 18.247 18 16.5 18c-1.746 0-3.332.477-4.5 1.253'/%3E%3C/svg%3E");
  box-shadow: 0 6px 24px var(--accent-a35);
}

.dashboard__card--practice .dashboard__icon,
.dashboard__icon--practice {
  background-color: color-mix(in srgb, var(--accent-practice) 30%, transparent);
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' fill='none' viewBox='0 0 24 24' stroke='%235ee0a8' stroke-width='2'%3E%3Cpath stroke-linecap='round' stroke-linejoin='round' d='M11 5H6a2 2 0 00-2 2v11a2 2 0 002 2h11a2 2 0 002-2v-5m-1.414-9.414a2 2 0 112.828 2.828L11.828 15H9v-2.828l8.586-8.586z'/%3E%3C/svg%3E");
  box-shadow: 0 6px 24px rgba(94, 224, 168, 0.3);
}

.dashboard__card--test .dashboard__icon,
.dashboard__icon--test {
  background-color: color-mix(in srgb, var(--accent-test) 30%, transparent);
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' fill='none' viewBox='0 0 24 24' stroke='%23ffb347' stroke-width='2'%3E%3Cpath stroke-linecap='round' stroke-linejoin='round' d='M9 5H7a2 2 0 00-2 2v12a2 2 0 002 2h10a2 2 0 002-2V7a2 2 0 00-2-2h-2M9 5a2 2 0 002 2h2a2 2 0 002-2M9 5a2 2 0 012-2h2a2 2 0 012 2m-6 9l2 2 4-4'/%3E%3C/svg%3E");
  box-shadow: 0 6px 24px rgba(255, 179, 71, 0.3);
}

.dashboard__card--games .dashboard__icon,
.dashboard__icon--games {
  background-color: color-mix(in srgb, var(--accent-games) 30%, transparent);
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' fill='none' viewBox='0 0 24 24' stroke='%23c77dff' stroke-width='2'%3E%3Cpath stroke-linecap='round' stroke-linejoin='round' d='M11 4a2 2 0 114 0v1a1 1 0 001 1h3a1 1 0 011 1v3a1 1 0 01-1 1h-1a2 2 0 100 4h1a1 1 0 011 1v3a1 1 0 01-1 1h-3a1 1 0 01-1-1v-1a2 2 0 10-4 0v1a1 1 0 01-1 1H7a1 1 0 01-1-1v-3a1 1 0 00-1-1H4a2 2 0 110-4h1a1 1 0 001-1V7a1 1 0 011-1h3a1 1 0 001-1V4z'/%3E%3C/svg%3E");
  box-shadow: 0 6px 24px rgba(199, 125, 255, 0.3);
}

.dashboard__card--progress .dashboard__icon {
  background-color: color-mix(in srgb, var(--accent-progress) 30%, transparent);
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' fill='none' viewBox='0 0 24 24' stroke='%23ff6b9d' stroke-width='2'%3E%3Cpath stroke-linecap='round' stroke-linejoin='round' d='M13 7h8m0 0v8m0-8l-8 8-4-4-6 6'/%3E%3C/svg%3E");
  box-shadow: 0 6px 24px rgba(255, 107, 157, 0.3);
}

.dashboard__label {
  font-size: 1.05rem;
  font-weight: 700;
  letter-spacing: -0.01em;
}

.dashboard__hint {
  font-size: 0.72rem;
  color: var(--text-muted);
  line-height: 1.35;
  max-width: 130px;
}

.footer {
  text-align: center;
  padding: 28px 0 8px;
  font-size: 0.78rem;
  color: var(--text-muted);
  animation: fade-up 0.6s ease 0.25s both;
}

.footer p {
  margin: 0;
  opacity: 0.85;
}

/* Modal */
.modal {
  border: none;
  padding: 0;
  max-width: calc(100% - 32px);
  width: 440px;
  border-radius: var(--radius);
  background: linear-gradient(165deg, #1e2648 0%, #141a32 100%);
  color: var(--text);
  box-shadow:
    0 32px 90px rgba(0, 0, 0, 0.6),
    0 0 0 1px var(--surface-a08),
    0 0 60px rgba(108, 158, 255, 0.12);
  animation: modal-in 0.35s cubic-bezier(0.34, 1.4, 0.64, 1);
}

@keyframes modal-in {
  from {
    opacity: 0;
    transform: scale(0.92) translateY(12px);
  }
  to {
    opacity: 1;
    transform: scale(1) translateY(0);
  }
}

.modal::backdrop {
  background: rgba(4, 6, 16, 0.75);
  backdrop-filter: blur(8px);
  -webkit-backdrop-filter: blur(8px);
}

.modal__content {
  padding: 30px 26px 26px;
  position: relative;
  max-height: min(85vh, 640px);
  overflow-y: auto;
}

.modal__content::before {
  content: "";
  position: absolute;
  top: 0;
  left: 20px;
  right: 20px;
  height: 3px;
  border-radius: 0 0 4px 4px;
  background: var(--gradient-brand);
}

.modal__close {
  position: absolute;
  top: 14px;
  right: 16px;
  width: 36px;
  height: 36px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: var(--surface-a06);
  border: 1px solid var(--surface-a10);
  border-radius: 10px;
  color: var(--text-muted);
  font-size: 1.5rem;
  line-height: 1;
  cursor: pointer;
  padding: 0;
  transition: background 0.2s ease, color 0.2s ease;
}

.modal__close:hover {
  background: var(--surface-a12);
  color: var(--text);
}

.modal__title {
  margin: 0 0 6px;
  font-size: 1.4rem;
  font-weight: 800;
  letter-spacing: -0.02em;
}

.modal__subtitle {
  margin: 0 0 18px;
  font-size: 0.92rem;
  color: var(--text-muted);
  line-height: 1.45;
}

.modal__back {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  margin: 0 0 12px;
  padding: 8px 12px;
  border: 1px solid var(--surface-a12);
  border-radius: 10px;
  background: var(--surface-a06);
  color: var(--text-muted);
  font: inherit;
  font-size: 0.88rem;
  font-weight: 700;
  cursor: pointer;
  transition: background 0.2s ease, color 0.2s ease;
}

.modal__back:hover,
.modal__back:focus-visible {
  background: var(--surface-a12);
  color: var(--text);
  outline: none;
}

.modal__topics {
  list-style: none;
  margin: 0 0 20px;
  padding: 0;
  display: flex;
  flex-direction: column;
  gap: 14px;
}

.modal__topics li {
  margin: 0;
  padding: 0;
  list-style: none;
}

.modal__topic-group {
  padding: 16px;
  border-radius: var(--radius-sm);
  background: var(--shadow-a25);
  border: 1px solid var(--surface-a10);
}

.modal__topic-group--actions {
  padding: 8px 0 4px;
  background: transparent;
  border: none;
}

.modal__topic-actions--solo {
  gap: 12px;
}

.modal__topic-picker {
  display: flex;
  align-items: center;
  gap: 14px;
  width: 100%;
  margin: 0;
  padding: 16px;
  border-radius: var(--radius-sm);
  border: 1px solid var(--surface-a12);
  background: var(--gradient-surface);
  font: inherit;
  color: var(--text);
  text-align: left;
  cursor: pointer;
  transition: background 0.2s ease, transform 0.2s cubic-bezier(0.34, 1.4, 0.64, 1), box-shadow 0.2s ease;
}

.modal__topic-picker:hover,
.modal__topic-picker:focus-visible {
  background: var(--bg-card-hover);
  outline: none;
  transform: translateY(-2px);
  box-shadow: 0 10px 28px var(--shadow-a25);
}

.modal__topic-picker-icon {
  flex-shrink: 0;
  width: 44px;
  height: 44px;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 14px;
  background: rgba(108, 158, 255, 0.18);
  font-size: 1.35rem;
}

.modal__topic-picker-text {
  flex: 1;
  min-width: 0;
  display: flex;
  flex-direction: column;
  gap: 4px;
}

.modal__topic-picker-title {
  font-size: 1.02rem;
  font-weight: 800;
  line-height: 1.25;
}

.modal__topic-picker-desc {
  font-size: 0.82rem;
  color: var(--text-muted);
  line-height: 1.35;
}

.modal__topic-picker-chevron {
  flex-shrink: 0;
  font-size: 1.5rem;
  line-height: 1;
  color: var(--text-muted);
  opacity: 0.8;
}

.modal__topic-heading {
  margin: 0 0 14px;
  font-size: 1.12rem;
  font-weight: 800;
  text-align: center;
  color: var(--text);
}

.modal__topic-actions {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 8px;
}

@media (min-width: 480px) {
  .modal__topic-actions {
    grid-template-columns: repeat(4, 1fr);
  }
}

.modal__topic-action {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 8px;
  margin: 0;
  padding: 14px 8px;
  border-radius: var(--radius-sm);
  border: 1px solid var(--surface-a12);
  background: var(--gradient-surface);
  font: inherit;
  font-size: 0.85rem;
  font-weight: 700;
  color: var(--text);
  cursor: pointer;
  transition: background 0.2s ease, transform 0.2s cubic-bezier(0.34, 1.4, 0.64, 1), box-shadow 0.2s ease;
}

.modal__topic-action .dashboard__icon {
  width: 44px;
  height: 44px;
  border-radius: 14px;
}

.modal__topic-action--lesson {
  border-color: var(--accent-a40);
}

.modal__topic-action--practice {
  border-color: rgba(94, 224, 168, 0.4);
}

.modal__topic-action--test {
  border-color: rgba(255, 179, 71, 0.4);
}

.modal__topic-action--game {
  border-color: rgba(199, 125, 255, 0.4);
}

.modal__topic--test-link {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 10px;
  width: 100%;
  padding: 20px 14px;
  border-radius: var(--radius-sm);
  border: 1px solid rgba(255, 179, 71, 0.4);
  background: color-mix(in srgb, var(--accent-test) 16%, transparent);
  font: inherit;
  font-size: 1.05rem;
  font-weight: 700;
  color: var(--text);
  cursor: pointer;
  transition: transform 0.2s ease, box-shadow 0.2s ease;
}

.modal__topic--test-link .dashboard__icon {
  width: 52px;
  height: 52px;
  border-radius: 16px;
}

.modal__topic--test-link:hover {
  transform: translateY(-2px);
  box-shadow: 0 12px 32px rgba(255, 179, 71, 0.2);
}

.modal__topic-action:hover,
.modal__topic-action:focus-visible {
  background: var(--bg-card-hover);
  outline: none;
  transform: translateY(-3px) scale(1.02);
}

.modal__body {
  margin: 0 0 20px;
  color: var(--text-muted);
  line-height: 1.55;
  font-size: 0.95rem;
}

.modal__btn {
  width: 100%;
  padding: 15px;
  border: none;
  border-radius: var(--radius-sm);
  background: var(--gradient-brand);
  color: #fff;
  font-family: var(--font);
  font-size: 1rem;
  font-weight: 700;
  cursor: pointer;
  box-shadow: 0 8px 28px var(--accent-a35);
  transition: filter 0.2s ease, transform 0.2s ease;
}

.modal__btn:hover {
  filter: brightness(1.1);
  transform: translateY(-1px);
}

@media (prefers-reduced-motion: reduce) {
  .dashboard__card,
  .header.hero,
  .footer,
  .modal,
  .bg-orb,
  .header__logo {
    animation: none;
  }

  .dashboard__card:hover .dashboard__icon {
    transform: none;
  }
}

/* ── Trial countdown banner ──────────────────────────────────────────────
   Shown only while plan == "trial". The number is rendered server-side. */
.trial-banner {
  position: relative;
  z-index: 5;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0.6rem;
  flex-wrap: wrap;
  padding: 0.55rem 1rem;
  padding-top: calc(0.55rem + var(--safe-top, 0px));
  background: var(--accent-a15);
  border-bottom: 1px solid var(--accent-a35);
  font-size: 0.82rem;
  font-weight: 600;
  color: var(--text);
}

.trial-banner__dot {
  width: 7px;
  height: 7px;
  flex: none;
  border-radius: 50%;
  background: var(--accent-test);
}

.trial-banner__text { white-space: nowrap; }

.trial-banner__link {
  color: var(--accent-tutorial);
  font-weight: 700;
  text-decoration: underline;
  white-space: nowrap;
}

.trial-banner__link:focus-visible {
  outline: 3px solid var(--accent-test);
  outline-offset: 2px;
}
