:root {
  font-family: "DM Sans", system-ui, sans-serif;
  color: #f5efe8;
}

body {
  margin: 0;
  background:
    radial-gradient(circle at top left, rgba(255, 106, 0, 0.25) 0%, transparent 55%),
    radial-gradient(circle at 30% 70%, rgba(249, 210, 125, 0.18) 0%, transparent 60%),
    linear-gradient(135deg, #0b0a09 0%, #12100f 45%, #0b0a09 100%);
  color: #f5efe8;
}

.v-application {
  font-family: "DM Sans", system-ui, sans-serif;
}

.app-shell {
  padding-top: 48px;
  padding-bottom: 64px;
}

.hero {
  display: flex;
  flex-wrap: wrap;
  gap: 24px;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 32px;
}

.eyebrow {
  text-transform: uppercase;
  letter-spacing: 0.15em;
  font-size: 0.75rem;
  font-weight: 700;
  color: #ff6a00;
  margin: 0 0 8px;
}

h1 {
  font-family: "Space Grotesk", sans-serif;
  font-size: clamp(2rem, 3vw, 3rem);
  margin: 0 0 12px;
  color: #f5efe8;
}

.subhead {
  margin: 0;
  font-size: 1rem;
  max-width: 560px;
  color: rgba(245, 239, 232, 0.75);
}

.hero-card {
  background: linear-gradient(135deg, rgba(255, 106, 0, 0.2), rgba(19, 17, 15, 0.9));
  border-radius: 18px;
  padding: 20px 24px;
  border: 1px solid rgba(255, 106, 0, 0.35);
  box-shadow: 0 20px 35px rgba(0, 0, 0, 0.35);
  display: flex;
  align-items: center;
  gap: 16px;
  min-width: 220px;
}

.hero-card .material-symbols-outlined {
  font-size: 34px;
  color: #ff6a00;
}

.hero-kicker {
  margin: 0;
  font-size: 0.75rem;
  text-transform: uppercase;
  letter-spacing: 0.12em;
  color: rgba(245, 239, 232, 0.7);
}

.hero-total {
  margin: 4px 0 0;
  font-size: 1.5rem;
  font-weight: 700;
  color: #f5efe8;
}

.panel {
  border-radius: 18px;
  border: 1px solid rgba(245, 239, 232, 0.08);
}

.v-card-title {
  font-family: "Space Grotesk", sans-serif;
  font-weight: 600;
}

.v-table th {
  text-transform: uppercase;
  letter-spacing: 0.08em;
  font-size: 0.75rem;
  color: rgba(245, 239, 232, 0.6);
}

.v-field__prepend-inner {
  margin-inline-end: 6px;
}

.toggle-group {
  display: flex;
  flex-direction: column;
  gap: 4px;
  margin-top: 12px;
}

.actions {
  margin-top: 16px;
  display: flex;
  justify-content: flex-start;
}


.totals {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(160px, 1fr));
  gap: 12px;
  margin-top: 20px;
}

.total-chip {
  background: rgba(245, 239, 232, 0.08);
  border-radius: 14px;
  padding: 12px 16px;
  border: 1px solid rgba(245, 239, 232, 0.12);
}

.total-chip p {
  margin: 0;
  font-size: 0.8rem;
  color: rgba(245, 239, 232, 0.6);
}

.total-chip strong {
  font-size: 1.1rem;
  color: #f5efe8;
}

.total-row td {
  font-weight: 700;
}

.group-title {
  font-weight: 600;
}

.group-sub {
  font-size: 0.8rem;
  color: rgba(245, 239, 232, 0.6);
}

@media (max-width: 960px) {
  .hero {
    flex-direction: column;
    align-items: flex-start;
  }
}

@media (min-width: 960px) {
  .equal-columns {
    align-items: stretch;
  }

  .equal-columns > .v-col {
    display: flex;
  }

  .equal-columns .panel {
    width: 100%;
    height: 100%;
  }

  .equal-columns .v-col > .v-card {
    flex: 1;
  }
}
