.hero {
  display: grid;
  grid-template-columns: 1fr 260px;
  gap: 40px;
  align-items: center;
}

.hero-copy {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 20px;
}

.hero h1 {
  font-size: clamp(38px, 6vw, 66px);
  letter-spacing: -0.045em;
}

.hero p {
  color: var(--muted);
  max-width: 540px;
  font-size: 16px;
}

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

.hero-orb {
  position: relative;
  width: 240px;
  height: 240px;
  justify-self: center;
}

.orb-core {
  position: absolute;
  inset: 62px;
  border-radius: 50%;
  background: radial-gradient(circle at 36% 30%, #ff8d96, #ff2231 40%, #4d060c 78%);
  box-shadow: 0 0 60px rgb(255 34 49 / 45%), inset 0 -14px 30px rgb(0 0 0 / 55%);
  animation: orb-float 6s var(--ease-in-out) infinite;
}

@keyframes orb-float {
  0%, 100% { transform: translateY(0) scale(1); }
  50% { transform: translateY(-14px) scale(1.05); }
}

.orb-ring {
  position: absolute;
  inset: 0;
  border-radius: 50%;
  border: 1px solid rgb(255 34 49 / 28%);
  animation: orb-spin 14s linear infinite;
}

.orb-ring:nth-child(2) {
  inset: 30px;
  border-color: rgb(255 141 150 / 22%);
  border-top-color: var(--red);
  animation-duration: 9s;
  animation-direction: reverse;
}

.orb-ring:first-child {
  border-left-color: var(--red-hot);
}

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

.stats-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 18px;
}

.stats-grid .reveal:nth-child(2) { transition-delay: 0.08s; }
.stats-grid .reveal:nth-child(3) { transition-delay: 0.16s; }
.stats-grid .reveal:nth-child(4) { transition-delay: 0.24s; }

.send-panel .border-glow-inner {
  padding: 34px;
  gap: 26px;
  align-items: center;
  overflow: hidden;
}

.send-panel .panel-head {
  width: 100%;
  margin-bottom: 0;
}

.level-picker {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 10px;
  width: 100%;
}

.level-option {
  position: relative;
  display: flex;
  flex-direction: column;
  gap: 3px;
  padding: 16px 18px;
  border-radius: var(--radius-md);
  border: 1px solid var(--line);
  background: linear-gradient(180deg, rgb(255 255 255 / 4%), rgb(255 255 255 / 1%));
  color: var(--text-2);
  font-family: inherit;
  text-align: left;
  cursor: pointer;
  overflow: hidden;
  transition: transform 0.35s var(--ease-out), border-color 0.3s ease, box-shadow 0.3s ease;
}

.level-option::before {
  content: "";
  position: absolute;
  inset: 0;
  background: radial-gradient(120% 100% at 50% 0%, rgb(255 34 49 / 18%), transparent 70%);
  opacity: 0;
  transition: opacity 0.35s ease;
}

.level-option:hover {
  transform: translateY(-3px);
  border-color: var(--line-2);
}

.level-option.is-active {
  border-color: var(--line-red);
  color: #fff;
  box-shadow: 0 10px 34px rgb(255 34 49 / 16%), inset 0 1px 0 rgb(255 255 255 / 10%);
}

.level-option.is-active::before {
  opacity: 1;
}

.level-option.is-active::after {
  content: "";
  position: absolute;
  left: 0;
  top: 0;
  bottom: 0;
  width: 3px;
  background: linear-gradient(180deg, #ff8d96, var(--red), #7c0a13);
  box-shadow: 0 0 14px rgb(255 34 49 / 70%);
}

.level-name {
  position: relative;
  font-size: 14px;
  font-weight: 800;
  letter-spacing: 0.04em;
}

.level-amount {
  position: relative;
  font-size: 19px;
  font-weight: 800;
  font-variant-numeric: tabular-nums;
  letter-spacing: -0.02em;
  color: var(--muted);
  transition: color 0.3s ease;
}

.level-option.is-active .level-amount {
  background: linear-gradient(180deg, #fff, #ffb7bd 70%, #ff2231);
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
}

.level-note {
  position: relative;
  font-size: 10.5px;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: var(--dim);
}

.level-warning {
  display: flex;
  align-items: flex-start;
  gap: 11px;
  width: 100%;
  padding: 14px 18px;
  border-radius: var(--radius-md);
  border: 1px solid rgb(255 176 32 / 32%);
  border-left-width: 3px;
  background: rgb(255 176 32 / 7%);
  font-size: 13px;
  color: #ffd79a;
  animation: section-in 0.45s var(--ease-out) both;
}

.level-warning svg {
  width: 18px;
  height: 18px;
  flex: none;
  fill: var(--warn);
  margin-top: 1px;
}

.target-readout {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 22px;
  flex-wrap: wrap;
  width: 100%;
  padding: 18px 22px;
  border-radius: var(--radius-md);
  border: 1px solid var(--line);
  background: rgb(255 255 255 / 3%);
  transition: border-color 0.4s ease, background 0.4s ease;
  position: relative;
}

.target-readout[data-state="ok"] {
  border-color: rgb(56 215 138 / 30%);
  background: rgb(56 215 138 / 5%);
}

.target-readout[data-state="blocked"] {
  border-color: rgb(255 77 94 / 30%);
  background: rgb(255 77 94 / 5%);
}

.target-readout[data-state="loading"] .readout-item b {
  color: var(--dim);
}

.readout-item {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 2px;
  min-width: 92px;
}

.readout-item span {
  font-size: 10px;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--dim);
}

.readout-item b {
  font-size: 22px;
  font-weight: 800;
  font-variant-numeric: tabular-nums;
  transition: color 0.3s ease;
}

.readout-divider {
  width: 1px;
  height: 32px;
  background: var(--line-2);
}

.readout-msg {
  flex-basis: 100%;
  text-align: center;
  font-size: 12px;
  color: var(--muted);
}

.target-readout[data-state="blocked"] .readout-msg { color: var(--bad); }
.target-readout[data-state="ok"] .readout-msg { color: var(--ok); }

.progress-section,
.result-section {
  animation: section-in 0.6s var(--ease-out) both;
}

@keyframes section-in {
  from { opacity: 0; transform: translateY(26px); }
  to { opacity: 1; transform: none; }
}

.progress-panel .border-glow-inner,
.result-panel .border-glow-inner {
  padding: 32px;
}

.orders-section {
  display: flex;
  flex-direction: column;
}

@media (max-width: 1080px) {
  .stats-grid { grid-template-columns: repeat(2, 1fr); }
}

@media (max-width: 840px) {
  .hero { grid-template-columns: 1fr; }
  .hero-orb { display: none; }
}

@media (max-width: 720px) {
  .level-picker { grid-template-columns: 1fr; }
}

@media (max-width: 560px) {
  .stats-grid { grid-template-columns: 1fr; }
  .send-panel .border-glow-inner { padding: 24px 18px; }
  .readout-divider { display: none; }
  .target-readout { gap: 14px; }
  .btn-primary { width: 100%; }
}
