:root {
  color-scheme: dark;
  --bg: #07111f;
  --bg-2: #0b1b33;
  --panel: #101d31;
  --panel-2: #14253f;
  --line: rgba(255, 255, 255, 0.11);
  --line-strong: rgba(255, 255, 255, 0.2);
  --text: #f7fbff;
  --muted: #9fb0c4;
  --blue: #1558b0;
  --blue-soft: #2269d2;
  --red: #cf2c38;
  --red-soft: #ef4b55;
  --gold: #f2c14e;
  --gold-soft: #ffe08a;
  --green: #36d399;
  --shadow: rgba(0, 0, 0, 0.36);
  --radius: 8px;
  --nav-height: 74px;
  font-family:
    Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI",
    sans-serif;
}

* {
  box-sizing: border-box;
}

html {
  min-width: 320px;
  background: var(--bg);
}

body {
  min-width: 320px;
  min-height: 100vh;
  margin: 0;
  background:
    linear-gradient(rgba(255, 255, 255, 0.045) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255, 255, 255, 0.035) 1px, transparent 1px),
    radial-gradient(circle at top left, rgba(207, 44, 56, 0.18), transparent 30rem),
    linear-gradient(145deg, #06101d 0%, #0c1b33 52%, #111321 100%);
  background-size: 34px 34px, 34px 34px, auto, auto;
  color: var(--text);
}

button,
input,
select,
textarea {
  font: inherit;
}

button {
  cursor: pointer;
}

.arena-shell {
  min-height: 100vh;
  padding-bottom: calc(var(--nav-height) + 20px);
}

.topbar {
  position: sticky;
  top: 0;
  z-index: 30;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
  min-height: 72px;
  padding: 12px 16px;
  background: rgba(7, 17, 31, 0.88);
  border-bottom: 1px solid var(--line);
  backdrop-filter: blur(16px);
}

.brand-button {
  display: flex;
  align-items: center;
  min-width: 0;
  gap: 10px;
  padding: 0;
  color: var(--text);
  background: transparent;
  border: 0;
  text-align: left;
}

.brand-mark {
  display: grid;
  place-items: center;
  width: 42px;
  height: 42px;
  flex: 0 0 auto;
  color: var(--text);
  background:
    linear-gradient(135deg, rgba(21, 88, 176, 0.96), rgba(21, 88, 176, 0.62)),
    linear-gradient(45deg, transparent 52%, rgba(207, 44, 56, 0.85) 52% 74%, transparent 74%);
  border: 1px solid rgba(242, 193, 78, 0.76);
  border-radius: 50%;
  box-shadow: 0 8px 18px var(--shadow), inset 0 0 0 3px rgba(255, 255, 255, 0.08);
}

.brand-mark span {
  display: grid;
  place-items: center;
  width: 28px;
  height: 28px;
  color: #07111f;
  background: var(--gold);
  border-radius: 50%;
  font-size: 0.68rem;
  font-weight: 900;
}

.brand-copy {
  display: grid;
  min-width: 0;
}

.brand-copy strong {
  overflow: hidden;
  color: var(--text);
  font-size: 0.96rem;
  line-height: 1.1;
  text-overflow: ellipsis;
  white-space: nowrap;
}

.brand-copy small {
  color: var(--muted);
  font-size: 0.76rem;
}

.desktop-nav {
  display: none;
}

.nav-link,
.mobile-tab,
.upgrade-button,
.ghost-button,
.primary-button,
.choice-button,
.answer-dot,
.admin-tab,
.tiny-button,
.subject-filter {
  min-height: 44px;
  border-radius: var(--radius);
  transition: transform 140ms ease, border-color 140ms ease, background 140ms ease;
}

.nav-link:hover,
.mobile-tab:hover,
.upgrade-button:hover,
.ghost-button:hover,
.primary-button:hover,
.choice-button:hover,
.answer-dot:hover,
.admin-tab:hover,
.tiny-button:hover,
.subject-filter:hover {
  transform: translateY(-1px);
}

.upgrade-button,
.primary-button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  min-width: 98px;
  padding: 0 14px;
  color: #06101d;
  background: linear-gradient(135deg, var(--gold), var(--gold-soft));
  border: 1px solid rgba(255, 255, 255, 0.2);
  font-weight: 800;
  box-shadow: 0 10px 24px rgba(242, 193, 78, 0.18);
}

.button-icon,
.tab-icon,
.card-icon,
.status-icon {
  display: grid;
  place-items: center;
  width: 26px;
  height: 26px;
  flex: 0 0 auto;
  border: 1px solid currentColor;
  border-radius: 50%;
  font-size: 0.66rem;
  font-weight: 900;
}

.button-icon {
  width: 24px;
  height: 24px;
  color: #06101d;
}

.app-stage {
  width: min(1180px, 100%);
  margin: 0 auto;
  padding: 18px 14px 0;
}

.view {
  display: grid;
  gap: 16px;
  animation: lift-in 240ms ease both;
}

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

.mobile-nav {
  position: fixed;
  right: 12px;
  bottom: 12px;
  left: 12px;
  z-index: 40;
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: 6px;
  min-height: var(--nav-height);
  padding: 8px;
  background: rgba(10, 22, 39, 0.94);
  border: 1px solid var(--line);
  border-radius: 12px;
  box-shadow: 0 18px 48px var(--shadow);
  backdrop-filter: blur(16px);
}

.mobile-tab {
  display: grid;
  place-items: center;
  gap: 3px;
  min-width: 0;
  padding: 6px 4px;
  color: var(--muted);
  background: transparent;
  border: 1px solid transparent;
  font-size: 0.68rem;
  font-weight: 750;
}

.mobile-tab.active {
  color: var(--text);
  background: rgba(21, 88, 176, 0.32);
  border-color: rgba(242, 193, 78, 0.52);
}

.hero-panel {
  position: relative;
  overflow: hidden;
  display: grid;
  gap: 18px;
  padding: 18px;
  background:
    linear-gradient(90deg, rgba(21, 88, 176, 0.18), rgba(207, 44, 56, 0.12)),
    rgba(16, 29, 49, 0.76);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  box-shadow: 0 20px 48px rgba(0, 0, 0, 0.2);
}

.hero-panel::after {
  content: "";
  position: absolute;
  right: -30px;
  bottom: -42px;
  width: 170px;
  height: 170px;
  background:
    linear-gradient(45deg, transparent 46%, rgba(242, 193, 78, 0.16) 46% 54%, transparent 54%),
    linear-gradient(-45deg, transparent 46%, rgba(207, 44, 56, 0.14) 46% 54%, transparent 54%);
  background-size: 22px 22px;
  border: 1px solid rgba(242, 193, 78, 0.18);
  border-radius: 50%;
  transform: rotate(10deg);
}

.hero-content {
  position: relative;
  z-index: 1;
  display: grid;
  gap: 14px;
}

.eyebrow-row {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
}

.badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  min-height: 30px;
  padding: 5px 9px;
  color: var(--text);
  background: rgba(255, 255, 255, 0.08);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  font-size: 0.76rem;
  font-weight: 800;
}

.badge.gold {
  color: #211600;
  background: var(--gold);
  border-color: var(--gold-soft);
}

.badge.red {
  background: rgba(207, 44, 56, 0.26);
  border-color: rgba(239, 75, 85, 0.52);
}

.badge.blue {
  background: rgba(21, 88, 176, 0.3);
  border-color: rgba(75, 141, 232, 0.6);
}

h1,
h2,
h3,
p {
  margin: 0;
}

h1 {
  max-width: 760px;
  font-size: clamp(1.7rem, 6vw, 3.4rem);
  line-height: 1.02;
}

h2 {
  font-size: clamp(1.28rem, 4vw, 2.05rem);
}

h3 {
  font-size: 1rem;
}

.lead {
  max-width: 720px;
  color: #dbe6f3;
  font-size: 1rem;
  line-height: 1.55;
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
}

.ghost-button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  min-width: 120px;
  padding: 0 14px;
  color: var(--text);
  background: rgba(255, 255, 255, 0.06);
  border: 1px solid var(--line-strong);
  font-weight: 800;
}

.section-title {
  display: flex;
  align-items: end;
  justify-content: space-between;
  gap: 12px;
}

.section-title p {
  color: var(--muted);
  font-size: 0.88rem;
}

.grid {
  display: grid;
  gap: 12px;
}

.stats-grid {
  grid-template-columns: repeat(2, minmax(0, 1fr));
}

.card,
.metric-card,
.subject-card,
.leader-card,
.admin-panel,
.result-card,
.question-panel,
.auth-panel {
  background: rgba(16, 29, 49, 0.88);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  box-shadow: 0 14px 32px rgba(0, 0, 0, 0.18);
}

.metric-card {
  display: grid;
  min-height: 118px;
  gap: 10px;
  padding: 14px;
}

.metric-head {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 8px;
}

.metric-label {
  color: var(--muted);
  font-size: 0.76rem;
  font-weight: 800;
  text-transform: uppercase;
}

.metric-value {
  font-size: 1.7rem;
  font-weight: 900;
}

.metric-note {
  color: #c7d4e4;
  font-size: 0.82rem;
}

.rating-strip {
  display: grid;
  gap: 10px;
}

.rating-row {
  display: grid;
  grid-template-columns: 62px 1fr 52px;
  align-items: center;
  gap: 10px;
  color: #dce8f6;
  font-size: 0.82rem;
  font-weight: 750;
}

.rating-bar {
  overflow: hidden;
  height: 9px;
  background: rgba(255, 255, 255, 0.08);
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: 999px;
}

.rating-fill {
  height: 100%;
  background: linear-gradient(90deg, var(--red), var(--gold), var(--green));
  border-radius: 999px;
}

.dashboard-layout {
  display: grid;
  gap: 12px;
}

.readiness-card {
  display: grid;
  gap: 14px;
  padding: 16px;
}

.gauge-wrap {
  display: grid;
  place-items: center;
}

.gauge {
  position: relative;
  display: grid;
  place-items: center;
  width: min(225px, 72vw);
  aspect-ratio: 1;
  border-radius: 50%;
  background:
    radial-gradient(circle, var(--panel) 0 54%, transparent 55%),
    conic-gradient(var(--green) var(--score-deg), rgba(255, 255, 255, 0.12) 0);
  border: 1px solid var(--line-strong);
  box-shadow: inset 0 0 0 10px rgba(255, 255, 255, 0.03);
}

.gauge-center {
  display: grid;
  place-items: center;
  width: 56%;
  aspect-ratio: 1;
  padding: 12px;
  text-align: center;
  background: #07111f;
  border: 1px solid var(--line);
  border-radius: 50%;
}

.gauge-center strong {
  font-size: 2rem;
  line-height: 1;
}

.gauge-center span {
  color: var(--muted);
  font-size: 0.72rem;
  font-weight: 800;
  text-transform: uppercase;
}

.two-column {
  display: grid;
  gap: 12px;
}

.timeline {
  display: grid;
  gap: 10px;
}

.history-item,
.unlock-row,
.student-row {
  display: grid;
  gap: 4px;
  padding: 12px;
  background: rgba(255, 255, 255, 0.045);
  border: 1px solid var(--line);
  border-radius: var(--radius);
}

.history-item strong,
.unlock-row strong,
.student-row strong {
  font-size: 0.9rem;
}

.history-item span,
.unlock-row span,
.student-row span {
  color: var(--muted);
  font-size: 0.82rem;
}

.locked {
  position: relative;
  overflow: hidden;
}

.locked::before {
  content: "Premium";
  position: absolute;
  top: 12px;
  right: 12px;
  z-index: 2;
  padding: 5px 8px;
  color: #211600;
  background: var(--gold);
  border-radius: var(--radius);
  font-size: 0.72rem;
  font-weight: 900;
}

.question-panel {
  display: grid;
  gap: 16px;
  padding: 14px;
}

.exam-top {
  display: grid;
  gap: 12px;
}

.exam-meta {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: space-between;
  gap: 8px;
}

.timer {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  min-height: 36px;
  padding: 6px 10px;
  color: var(--gold-soft);
  background: rgba(242, 193, 78, 0.1);
  border: 1px solid rgba(242, 193, 78, 0.35);
  border-radius: var(--radius);
  font-weight: 900;
}

.progress-track {
  overflow: hidden;
  height: 10px;
  background: rgba(255, 255, 255, 0.08);
  border-radius: 999px;
}

.progress-fill {
  height: 100%;
  background: linear-gradient(90deg, var(--blue-soft), var(--red-soft), var(--gold));
}

.question-copy {
  display: grid;
  gap: 10px;
}

.question-copy h2 {
  font-size: clamp(1.18rem, 4vw, 1.8rem);
  line-height: 1.25;
}

.choice-list {
  display: grid;
  gap: 10px;
}

.choice-button {
  display: grid;
  grid-template-columns: 34px 1fr;
  align-items: center;
  gap: 10px;
  width: 100%;
  min-height: 60px;
  padding: 10px;
  color: #eaf3ff;
  background: rgba(255, 255, 255, 0.055);
  border: 1px solid var(--line);
  text-align: left;
}

.choice-button.selected {
  background: rgba(21, 88, 176, 0.3);
  border-color: rgba(242, 193, 78, 0.7);
  box-shadow: inset 4px 0 0 var(--gold);
}

.choice-letter {
  display: grid;
  place-items: center;
  width: 34px;
  height: 34px;
  color: var(--text);
  background: rgba(255, 255, 255, 0.07);
  border: 1px solid var(--line-strong);
  border-radius: 50%;
  font-weight: 900;
}

.question-actions {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 10px;
}

.question-actions .primary-button,
.question-actions .ghost-button {
  width: 100%;
}

.answer-map {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: 8px;
}

.answer-dot {
  display: grid;
  place-items: center;
  min-width: 0;
  height: 44px;
  padding: 0;
  color: var(--muted);
  background: rgba(255, 255, 255, 0.045);
  border: 1px solid var(--line);
  font-weight: 900;
}

.answer-dot.answered {
  color: #06101d;
  background: var(--gold);
  border-color: var(--gold-soft);
}

.answer-dot.current {
  color: var(--text);
  background: var(--blue);
  border-color: rgba(255, 255, 255, 0.38);
}

.result-grid {
  display: grid;
  gap: 12px;
}

.result-card {
  display: grid;
  gap: 10px;
  min-height: 118px;
  padding: 14px;
}

.result-card.featured {
  background:
    linear-gradient(135deg, rgba(21, 88, 176, 0.32), rgba(207, 44, 56, 0.18)),
    rgba(16, 29, 49, 0.9);
  border-color: rgba(242, 193, 78, 0.42);
}

.result-value {
  font-size: 2.1rem;
  font-weight: 950;
}

.delta {
  color: var(--green);
  font-weight: 900;
}

.subject-card {
  display: grid;
  gap: 14px;
  padding: 15px;
}

.subject-head {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 10px;
}

.subject-code {
  display: grid;
  place-items: center;
  width: 48px;
  height: 48px;
  color: var(--text);
  background: rgba(21, 88, 176, 0.28);
  border: 1px solid rgba(242, 193, 78, 0.42);
  border-radius: 50%;
  font-size: 0.82rem;
  font-weight: 950;
}

.leader-card {
  display: grid;
  grid-template-columns: 44px 1fr auto;
  align-items: center;
  gap: 10px;
  min-height: 72px;
  padding: 11px;
}

.rank-number {
  display: grid;
  place-items: center;
  width: 42px;
  height: 42px;
  color: #06101d;
  background: var(--gold);
  border-radius: 50%;
  font-weight: 950;
}

.leader-card.you {
  border-color: rgba(242, 193, 78, 0.72);
  box-shadow: inset 4px 0 0 var(--gold);
}

.leader-copy {
  display: grid;
  min-width: 0;
  gap: 2px;
}

.leader-copy strong,
.leader-copy span {
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: nowrap;
}

.leader-copy span {
  color: var(--muted);
  font-size: 0.82rem;
}

.leader-score {
  display: grid;
  justify-items: end;
  gap: 2px;
}

.leader-score strong {
  color: var(--gold-soft);
}

.leader-score span {
  color: var(--muted);
  font-size: 0.76rem;
}

.admin-tabs {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 8px;
}

.admin-tab,
.subject-filter {
  padding: 0 10px;
  color: var(--muted);
  background: rgba(255, 255, 255, 0.04);
  border: 1px solid var(--line);
  font-weight: 850;
}

.admin-tab.active,
.subject-filter.active {
  color: var(--text);
  background: rgba(21, 88, 176, 0.28);
  border-color: rgba(242, 193, 78, 0.56);
}

.admin-panel {
  display: grid;
  gap: 14px;
  padding: 14px;
}

.form-grid {
  display: grid;
  gap: 10px;
}

.field {
  display: grid;
  gap: 6px;
}

.field span {
  color: var(--muted);
  font-size: 0.78rem;
  font-weight: 800;
}

.field input,
.field select,
.field textarea {
  width: 100%;
  min-height: 44px;
  padding: 10px;
  color: var(--text);
  background: rgba(255, 255, 255, 0.06);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  outline: none;
}

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

.field input:focus,
.field select:focus,
.field textarea:focus {
  border-color: rgba(242, 193, 78, 0.72);
}

.tiny-button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-width: 82px;
  padding: 0 10px;
  color: var(--text);
  background: rgba(255, 255, 255, 0.06);
  border: 1px solid var(--line-strong);
  font-size: 0.82rem;
  font-weight: 850;
}

.toggle {
  position: relative;
  width: 52px;
  height: 30px;
  flex: 0 0 auto;
  background: rgba(255, 255, 255, 0.12);
  border: 1px solid var(--line-strong);
  border-radius: 999px;
}

.toggle::after {
  content: "";
  position: absolute;
  top: 4px;
  left: 4px;
  width: 20px;
  height: 20px;
  background: #d5dde9;
  border-radius: 50%;
  transition: transform 160ms ease, background 160ms ease;
}

.toggle.on {
  background: rgba(54, 211, 153, 0.25);
  border-color: rgba(54, 211, 153, 0.6);
}

.toggle.on::after {
  background: var(--green);
  transform: translateX(22px);
}

.unlock-grid {
  display: grid;
  gap: 12px;
}

.price-card {
  display: grid;
  gap: 14px;
  padding: 18px;
  background:
    linear-gradient(135deg, rgba(242, 193, 78, 0.12), rgba(21, 88, 176, 0.18)),
    rgba(16, 29, 49, 0.9);
  border: 1px solid rgba(242, 193, 78, 0.38);
  border-radius: var(--radius);
}

.price {
  font-size: 2rem;
  font-weight: 950;
}

.check-list {
  display: grid;
  gap: 8px;
  margin: 0;
  padding: 0;
  list-style: none;
}

.check-list li {
  display: flex;
  gap: 8px;
  color: #dce8f6;
  line-height: 1.42;
}

.check-list li::before {
  content: "";
  width: 10px;
  height: 10px;
  margin-top: 6px;
  flex: 0 0 auto;
  background: var(--gold);
  border-radius: 50%;
}

.auth-panel {
  display: grid;
  gap: 12px;
  padding: 14px;
}

.account-grid {
  display: grid;
  gap: 12px;
}

.fine-print {
  color: var(--muted);
  font-size: 0.78rem;
  line-height: 1.45;
}

.bulk-panel {
  display: grid;
  gap: 12px;
  padding: 14px;
  background: rgba(255, 255, 255, 0.035);
  border: 1px solid var(--line);
  border-radius: var(--radius);
}

.template-box {
  overflow: auto;
  max-height: 190px;
  margin: 0;
  padding: 12px;
  color: #eaf3ff;
  background: rgba(7, 17, 31, 0.72);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  font-size: 0.76rem;
  line-height: 1.48;
  white-space: pre;
}

.field input[type="file"] {
  display: grid;
  align-items: center;
  padding: 8px;
}

.upload-report {
  display: grid;
  gap: 4px;
  padding: 12px;
  color: #dce8f6;
  background: rgba(242, 193, 78, 0.08);
  border: 1px solid rgba(242, 193, 78, 0.28);
  border-radius: var(--radius);
}

.upload-report span {
  color: var(--muted);
  font-size: 0.82rem;
}

.bank-list {
  display: grid;
  gap: 10px;
}

.bank-row {
  display: grid;
  grid-template-columns: auto 1fr;
  gap: 10px;
  align-items: start;
  padding: 12px;
  background: rgba(255, 255, 255, 0.045);
  border: 1px solid var(--line);
  border-radius: var(--radius);
}

.bank-row p {
  display: -webkit-box;
  overflow: hidden;
  color: var(--muted);
  font-size: 0.82rem;
  line-height: 1.4;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
}

.payment-card {
  display: grid;
  gap: 10px;
  padding: 13px;
  background: rgba(255, 255, 255, 0.065);
  border: 1px solid rgba(242, 193, 78, 0.36);
  border-radius: var(--radius);
}

.payment-card p {
  color: #dce8f6;
  font-size: 0.9rem;
  line-height: 1.45;
}

.copy-line {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 10px;
  min-height: 46px;
  padding: 8px 10px;
  color: var(--text);
  background: rgba(7, 17, 31, 0.6);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  text-align: left;
}

.copy-line span {
  overflow-wrap: anywhere;
}

.copy-line strong {
  color: var(--gold-soft);
}

.hide {
  display: none !important;
}

@media (min-width: 720px) {
  .arena-shell {
    padding-bottom: 34px;
  }

  .topbar {
    padding: 14px 24px;
  }

  .desktop-nav {
    display: flex;
    align-items: center;
    gap: 6px;
    min-height: 48px;
    padding: 4px;
    background: rgba(255, 255, 255, 0.045);
    border: 1px solid var(--line);
    border-radius: 12px;
  }

  .nav-link {
    min-width: 98px;
    padding: 0 12px;
    color: var(--muted);
    background: transparent;
    border: 1px solid transparent;
    font-weight: 850;
  }

  .nav-link.active {
    color: var(--text);
    background: rgba(21, 88, 176, 0.28);
    border-color: rgba(242, 193, 78, 0.42);
  }

  .mobile-nav {
    display: none;
  }

  .app-stage {
    padding: 26px 22px 0;
  }

  .hero-panel {
    padding: 26px;
  }

  .stats-grid {
    grid-template-columns: repeat(4, minmax(0, 1fr));
  }

  .dashboard-layout {
    grid-template-columns: 360px 1fr;
    align-items: start;
  }

  .two-column {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .exam-layout {
    display: grid;
    grid-template-columns: 1fr 250px;
    gap: 12px;
    align-items: start;
  }

  .answer-map {
    grid-template-columns: repeat(3, 1fr);
  }

  .result-grid {
    grid-template-columns: repeat(4, minmax(0, 1fr));
  }

  .subject-grid {
    grid-template-columns: repeat(3, minmax(0, 1fr));
  }

  .unlock-grid {
    grid-template-columns: 1.08fr 0.92fr;
  }

  .account-grid {
    grid-template-columns: 1fr 1fr;
  }
}

@media (min-width: 1020px) {
  .hero-panel {
    grid-template-columns: 1fr 330px;
    align-items: center;
  }
}
