:root {
  --black: #050505;
  --black-soft: #090a0a;
  --surface: #0d0e0e;
  --surface-light: #121414;
  --line: rgba(255, 255, 255, 0.14);
  --line-strong: rgba(255, 255, 255, 0.28);
  --white: #f6f7f4;
  --muted: #969b98;
  --green: #a9d65d;
  --yellow: #f1d14f;
  --orange: #f1913d;
  --magenta: #e24193;
  --page: min(1180px, calc(100vw - 48px));
  --header-height: 76px;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
  background: var(--black);
}

body {
  margin: 0;
  color: var(--white);
  background: var(--black);
  font-family:
    Inter, "SF Pro Display", "PingFang SC", "Microsoft YaHei", system-ui,
    sans-serif;
  letter-spacing: 0;
  overflow-x: hidden;
}

button,
a {
  color: inherit;
  font: inherit;
}

button {
  border: 0;
}

a {
  text-decoration: none;
}

.noise {
  position: fixed;
  z-index: 20;
  inset: 0;
  opacity: 0.035;
  pointer-events: none;
  background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 180 180' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='.9' numOctaves='4' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23n)' opacity='.55'/%3E%3C/svg%3E");
}

.page-shell {
  width: var(--page);
  margin-inline: auto;
}

.section-anchor {
  scroll-margin-top: var(--header-height);
}

.site-header {
  position: fixed;
  z-index: 50;
  top: 0;
  left: 0;
  right: 0;
  height: var(--header-height);
  display: flex;
  align-items: center;
  padding-inline: max(24px, calc((100vw - 1180px) / 2));
  border-bottom: 1px solid var(--line);
  background: rgba(5, 5, 5, 0.78);
  backdrop-filter: blur(18px);
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 11px;
  font-size: 18px;
  font-weight: 700;
}

.brand-mark {
  width: 34px;
  height: 34px;
  padding: 2px;
  border: 1px solid var(--line-strong);
  border-radius: 50%;
  overflow: hidden;
  box-shadow: 0 0 18px rgba(226, 65, 147, 0.2);
}

.brand-mark img {
  width: 100%;
  height: 100%;
  display: block;
  border-radius: 50%;
  object-fit: cover;
}

.desktop-nav {
  position: absolute;
  left: 50%;
  top: 0;
  height: 100%;
  display: flex;
  align-items: center;
  gap: 36px;
  transform: translateX(-50%);
}

.nav-link {
  position: relative;
  color: var(--muted);
  font-size: 14px;
  transition: color 180ms ease;
}

.nav-link::after {
  content: "";
  position: absolute;
  left: 0;
  right: 0;
  bottom: -28px;
  height: 1px;
  background: linear-gradient(90deg, var(--green), var(--yellow), var(--magenta));
  transform: scaleX(0);
  transition: transform 180ms ease;
}

.nav-link:hover,
.nav-link.is-active {
  color: var(--white);
}

.nav-link.is-active::after {
  transform: scaleX(1);
}

.header-actions {
  margin-left: auto;
  display: flex;
  align-items: center;
  gap: 10px;
}

.wallet-button,
.twitter-button,
.button {
  min-height: 42px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 9px;
  border: 1px solid var(--line-strong);
  border-radius: 4px;
  cursor: pointer;
  transition:
    background 180ms ease,
    border-color 180ms ease,
    transform 180ms ease;
}

.wallet-button {
  min-width: 126px;
  padding: 0 15px;
  color: var(--white);
  background: transparent;
  font-size: 13px;
}

.wallet-button:hover,
.twitter-button:hover,
.button-ghost:hover {
  border-color: rgba(255, 255, 255, 0.7);
  background: rgba(255, 255, 255, 0.05);
}

.wallet-button.is-connected {
  border-color: rgba(169, 214, 93, 0.45);
}

.wallet-dot {
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: var(--muted);
}

.wallet-button.is-connected .wallet-dot {
  background: var(--green);
  box-shadow: 0 0 10px var(--green);
}

.twitter-button {
  width: 42px;
  min-width: 42px;
  padding: 0;
  color: var(--white);
  background: transparent;
  text-decoration: none;
}

.twitter-button svg {
  width: 18px;
  height: 18px;
}

.menu-button,
.mobile-nav {
  display: none;
}

.hero {
  position: relative;
  min-height: 940px;
  padding-top: var(--header-height);
  border-bottom: 1px solid var(--line);
  overflow: hidden;
}

.hero-backdrop {
  position: absolute;
  inset: 0;
  opacity: 0.3;
  background:
    linear-gradient(90deg, #050505 0%, rgba(5, 5, 5, 0.94) 48%, rgba(5, 5, 5, 0.5)),
    repeating-linear-gradient(
      90deg,
      transparent 0,
      transparent calc(25% - 1px),
      rgba(255, 255, 255, 0.04) 25%
    );
}

.hero-backdrop::after {
  content: "";
  position: absolute;
  left: 8%;
  right: 8%;
  bottom: 0;
  height: 34%;
  opacity: 0.35;
  background:
    linear-gradient(180deg, transparent, var(--black)),
    repeating-linear-gradient(
      90deg,
      transparent 0 62px,
      rgba(255, 255, 255, 0.07) 63px 66px
    );
  clip-path: polygon(
    0 100%,
    0 55%,
    4% 55%,
    4% 28%,
    8% 28%,
    8% 68%,
    12% 68%,
    12% 38%,
    17% 38%,
    17% 72%,
    22% 72%,
    22% 18%,
    26% 18%,
    26% 62%,
    31% 62%,
    31% 35%,
    36% 35%,
    36% 78%,
    41% 78%,
    41% 46%,
    46% 46%,
    46% 68%,
    52% 68%,
    52% 25%,
    57% 25%,
    57% 74%,
    62% 74%,
    62% 42%,
    68% 42%,
    68% 66%,
    74% 66%,
    74% 30%,
    79% 30%,
    79% 70%,
    84% 70%,
    84% 16%,
    89% 16%,
    89% 58%,
    94% 58%,
    94% 40%,
    100% 40%,
    100% 100%
  );
}

.hero-grid {
  position: relative;
  z-index: 2;
  min-height: 740px;
  display: grid;
  grid-template-columns: 0.94fr 1.06fr;
  align-items: center;
  gap: 60px;
  padding-top: 74px;
}

.section-index {
  margin: 0 0 24px;
  color: var(--muted);
  font-size: 11px;
  font-weight: 650;
  letter-spacing: 1.8px;
}

.hero h1 {
  max-width: 610px;
  margin: 0;
  font-size: clamp(64px, 6vw, 92px);
  font-weight: 500;
  line-height: 1.02;
}

.hero h1 span {
  color: transparent;
  background: linear-gradient(90deg, var(--yellow), var(--orange), var(--magenta));
  background-clip: text;
}

.hero-description {
  max-width: 530px;
  margin: 30px 0 0;
  color: #b9bdba;
  font-size: 17px;
  line-height: 1.85;
}

.hero-actions {
  display: flex;
  gap: 12px;
  margin-top: 36px;
}

.button {
  min-width: 148px;
  padding-inline: 22px;
  font-size: 14px;
}

.button svg {
  width: 17px;
  fill: none;
  stroke: currentColor;
  stroke-width: 1.7;
}

.button-primary {
  color: #0b0b0b;
  border-color: var(--white);
  background: var(--white);
}

.button-primary:hover {
  transform: translateY(-2px);
  background: #fff;
}

.hero-metrics {
  display: flex;
  gap: 36px;
  margin-top: 64px;
}

.hero-metrics div {
  display: grid;
  gap: 5px;
}

.hero-metrics strong {
  font-size: 20px;
  font-weight: 500;
}

.hero-metrics span {
  color: var(--muted);
  font-size: 11px;
}

.hero-art {
  position: relative;
  min-height: 600px;
  display: grid;
  place-items: center;
}

.aura-frame {
  position: relative;
  z-index: 2;
  width: min(530px, 42vw);
  aspect-ratio: 1;
}

.aura-frame::before {
  content: "";
  position: absolute;
  inset: 14%;
  border-radius: 50%;
  box-shadow:
    0 0 80px rgba(241, 209, 79, 0.25),
    0 0 130px rgba(226, 65, 147, 0.2);
}

.aura-frame img {
  position: relative;
  width: 100%;
  height: 100%;
  display: block;
  border-radius: 50%;
  object-fit: cover;
  animation: aura-breathe 6s ease-in-out infinite;
}

.orbit {
  position: absolute;
  z-index: 1;
  border: 1px solid rgba(255, 255, 255, 0.12);
  border-radius: 50%;
}

.orbit::before {
  content: "";
  position: absolute;
  width: 7px;
  height: 7px;
  top: 13%;
  left: 13%;
  border-radius: 50%;
  background: var(--yellow);
  box-shadow: 0 0 12px var(--yellow);
}

.orbit-one {
  width: 590px;
  height: 590px;
}

.orbit-two {
  width: 670px;
  height: 670px;
  border-style: dashed;
  opacity: 0.46;
  animation: orbit-spin 36s linear infinite;
}

.art-caption {
  position: absolute;
  z-index: 3;
  right: 0;
  bottom: 74px;
  display: flex;
  align-items: center;
  gap: 12px;
  color: var(--muted);
  font-size: 9px;
  letter-spacing: 1.2px;
}

.art-caption strong {
  color: var(--green);
  font-size: 9px;
}

.project-ticker {
  position: relative;
  z-index: 3;
  height: 94px;
  display: grid;
  grid-template-columns: 180px 250px 1fr 80px;
  align-items: center;
  gap: 26px;
  padding-inline: 24px;
  border: 1px solid var(--line);
  background: rgba(9, 10, 10, 0.86);
}

.ticker-label {
  color: var(--muted);
  font-size: 12px;
}

.ticker-project {
  display: flex;
  align-items: center;
  gap: 13px;
}

.project-symbol,
.project-logo {
  width: 38px;
  height: 38px;
  flex: 0 0 auto;
  display: grid;
  place-items: center;
  border: 1px solid var(--line-strong);
  border-radius: 50%;
  font-family: Georgia, serif;
  font-size: 18px;
}

.ticker-project span:last-child {
  display: grid;
  gap: 4px;
}

.ticker-project strong {
  font-size: 14px;
}

.ticker-project small {
  color: var(--muted);
  font-size: 10px;
}

.ticker-progress {
  height: 2px;
  background: rgba(255, 255, 255, 0.12);
}

.ticker-progress i {
  width: var(--progress);
  height: 100%;
  display: block;
  background: linear-gradient(90deg, var(--green), var(--yellow), var(--magenta));
}

.ticker-return {
  font-size: 16px;
  font-weight: 500;
}

.mechanism,
.projects,
.dashboard {
  padding: 132px 0;
}

.mechanism {
  background:
    linear-gradient(90deg, rgba(255, 255, 255, 0.025) 1px, transparent 1px)
      center / 25% 100%,
    var(--black-soft);
  border-bottom: 1px solid var(--line);
}

.section-heading {
  display: grid;
  grid-template-columns: 1fr 0.6fr;
  align-items: end;
  gap: 80px;
  margin-bottom: 62px;
}

.section-heading h2 {
  margin: 0;
  font-size: clamp(46px, 5vw, 68px);
  font-weight: 450;
  line-height: 1.1;
}

.section-heading > p {
  margin: 0 0 6px;
  color: var(--muted);
  font-size: 14px;
  line-height: 1.8;
}

.mechanism-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
}

.allocation {
  min-height: 345px;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  padding: 34px;
  border-right: 1px solid var(--line);
  background: rgba(255, 255, 255, 0.01);
}

.allocation:last-child {
  border-right: 0;
}

.allocation-featured {
  background:
    linear-gradient(145deg, rgba(241, 209, 79, 0.07), transparent 54%),
    rgba(255, 255, 255, 0.02);
}

.allocation-number {
  font-size: clamp(72px, 8vw, 112px);
  font-weight: 350;
  line-height: 1;
}

.allocation-code {
  display: block;
  margin-bottom: 18px;
  color: var(--muted);
  font-size: 10px;
}

.allocation h3 {
  margin: 0 0 10px;
  font-size: 22px;
  font-weight: 500;
}

.allocation p {
  margin: 0;
  color: var(--muted);
  font-size: 13px;
  line-height: 1.7;
}

.flow-line {
  display: grid;
  grid-template-columns: auto 1fr auto 1fr auto 1fr auto;
  align-items: center;
  gap: 16px;
  margin-top: 40px;
  color: var(--muted);
  font-size: 11px;
}

.flow-line i {
  height: 1px;
  background: linear-gradient(90deg, var(--line-strong), rgba(255, 255, 255, 0.04));
}

.projects {
  border-bottom: 1px solid var(--line);
}

.projects-heading {
  margin-bottom: 38px;
}

.project-toolbar {
  min-height: 58px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 20px;
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
}

.filter-tabs {
  display: flex;
  gap: 28px;
}

.filter-tabs button,
.activity-tabs button {
  position: relative;
  padding: 0;
  color: var(--muted);
  background: transparent;
  cursor: pointer;
  font-size: 12px;
}

.filter-tabs button::after,
.activity-tabs button::after {
  content: "";
  position: absolute;
  left: 0;
  right: 0;
  bottom: -20px;
  height: 1px;
  background: var(--white);
  transform: scaleX(0);
}

.filter-tabs button.is-active,
.activity-tabs button.is-active {
  color: var(--white);
}

.filter-tabs button.is-active::after,
.activity-tabs button.is-active::after {
  transform: scaleX(1);
}

.project-toolbar > span {
  color: var(--muted);
  font-size: 11px;
}

.project-toolbar strong {
  color: var(--white);
}

.project-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 1px;
  background: var(--line);
  border: 1px solid var(--line);
}

.project-card {
  min-height: 180px;
  display: grid;
  grid-template-columns: auto 1fr auto;
  grid-template-areas:
    "logo main status"
    "statone statone stattwo";
  align-items: start;
  gap: 22px 15px;
  padding: 24px;
  background: var(--black-soft);
  transition: background 180ms ease;
}

.project-card:hover {
  background:
    linear-gradient(135deg, rgba(169, 214, 93, 0.055), transparent 50%),
    var(--surface);
}

.project-card[hidden] {
  display: none;
}

.project-logo {
  grid-area: logo;
  color: var(--white);
}

.project-logo-image {
  grid-area: logo;
  width: 42px;
  height: 42px;
  display: block;
  border: 1px solid var(--line-strong);
  border-radius: 50%;
  object-fit: cover;
  background: var(--surface);
}

.project-logo-split {
  border-radius: 2px 50% 2px 50%;
}

.project-logo-ring {
  border-style: double;
}

.project-logo-angle {
  transform: rotate(45deg);
  border-radius: 4px;
}

.project-logo-angle::first-letter {
  display: inline-block;
  transform: rotate(-45deg);
}

.project-main {
  grid-area: main;
}

.project-main h3 {
  margin: 1px 0 6px;
  font-size: 17px;
  font-weight: 500;
}

.project-main span,
.project-stat span {
  color: var(--muted);
  font-size: 10px;
}

.project-stat {
  display: grid;
  gap: 7px;
}

.project-stat:nth-of-type(2) {
  grid-area: statone;
}

.project-stat:nth-of-type(3) {
  grid-area: stattwo;
  justify-self: end;
  text-align: right;
}

.project-stat strong {
  font-size: 13px;
  font-weight: 500;
}

.status {
  grid-area: status;
  color: var(--muted);
  font-size: 9px;
}

.status-live {
  color: var(--green);
}

.dashboard {
  background:
    radial-gradient(circle at 70% 30%, rgba(226, 65, 147, 0.045), transparent 30%),
    var(--black-soft);
}

.dashboard-heading {
  margin-bottom: 46px;
}

.summary-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1px;
  background: var(--line);
  border: 1px solid var(--line);
}

.summary-grid article {
  min-height: 184px;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  padding: 28px;
  background: var(--surface);
}

.summary-grid .summary-featured {
  background:
    linear-gradient(145deg, rgba(241, 209, 79, 0.07), transparent 58%),
    var(--surface-light);
}

.summary-grid span {
  color: var(--muted);
  font-size: 12px;
}

.summary-grid strong {
  font-size: 46px;
  font-weight: 400;
}

.summary-grid em {
  color: var(--muted);
  font-size: 20px;
  font-style: normal;
}

.summary-grid small {
  color: var(--muted);
  font-size: 11px;
}

.summary-grid b {
  color: var(--white);
  font-weight: 500;
}

.activity-panel {
  margin-top: 20px;
  border: 1px solid var(--line);
  background: var(--surface);
}

.activity-header {
  min-height: 70px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 0 24px;
  border-bottom: 1px solid var(--line);
}

.activity-header h3 {
  margin: 0;
  font-size: 15px;
  font-weight: 500;
}

.activity-tabs {
  display: flex;
  gap: 28px;
}

.activity-tabs button::after {
  bottom: -26px;
}

.activity-table {
  width: 100%;
}

.activity-row {
  min-height: 72px;
  display: grid;
  grid-template-columns: 1.25fr 0.8fr 0.8fr 0.7fr;
  align-items: center;
  gap: 20px;
  padding: 0 24px;
  border-bottom: 1px solid var(--line);
}

.activity-row:last-child {
  border-bottom: 0;
}

.activity-project {
  display: flex;
  align-items: center;
  gap: 12px;
}

.activity-icon {
  width: 32px;
  height: 32px;
  display: block;
  object-fit: cover;
  border: 1px solid var(--line-strong);
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.06);
}

.activity-cell {
  display: grid;
  gap: 5px;
}

.activity-cell span,
.activity-date {
  color: var(--muted);
  font-size: 10px;
}

.activity-cell strong {
  font-size: 12px;
  font-weight: 500;
}

.activity-amount {
  justify-self: end;
  font-size: 13px;
}

footer {
  padding: 58px 0;
  border-top: 1px solid var(--line);
  background: var(--black);
}

.footer-grid {
  display: grid;
  grid-template-columns: 1fr 1fr auto;
  align-items: center;
  gap: 28px;
}

.footer-grid p {
  color: var(--muted);
  font-size: 12px;
}

.footer-status {
  display: flex;
  align-items: center;
  gap: 8px;
  color: var(--muted);
  font-size: 10px;
  text-transform: uppercase;
}

.footer-status span {
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: var(--green);
  box-shadow: 0 0 8px var(--green);
}

.footer-grid small {
  grid-column: 1 / -1;
  color: #606462;
  font-size: 9px;
}

button:focus-visible,
a:focus-visible {
  outline: 2px solid var(--yellow);
  outline-offset: 4px;
}

@keyframes aura-breathe {
  0%,
  100% {
    transform: scale(0.985);
    filter: saturate(0.93);
  }
  50% {
    transform: scale(1);
    filter: saturate(1.08);
  }
}

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

@media (max-width: 980px) {
  :root {
    --page: min(100% - 40px, 820px);
  }

  .desktop-nav {
    display: none;
  }

  .menu-button {
    width: 42px;
    height: 42px;
    display: grid;
    place-content: center;
    gap: 6px;
    border: 1px solid var(--line);
    border-radius: 4px;
    background: transparent;
  }

  .menu-button span {
    width: 16px;
    height: 1px;
    display: block;
    background: var(--white);
  }

  .mobile-nav {
    position: absolute;
    top: calc(100% + 1px);
    left: 0;
    right: 0;
    display: grid;
    padding: 10px 20px 20px;
    border-bottom: 1px solid var(--line);
    background: rgba(5, 5, 5, 0.98);
    transform: translateY(-130%);
    opacity: 0;
    visibility: hidden;
    transition:
      transform 200ms ease,
      opacity 200ms ease,
      visibility 200ms ease;
  }

  .site-header.menu-open .mobile-nav {
    transform: translateY(0);
    opacity: 1;
    visibility: visible;
  }

  .mobile-nav a {
    padding: 16px 4px;
    border-bottom: 1px solid var(--line);
    font-size: 14px;
  }

  .hero {
    min-height: auto;
  }

  .hero-grid {
    grid-template-columns: 1fr;
    gap: 20px;
    padding: 110px 0 30px;
  }

  .hero-copy {
    position: relative;
    z-index: 4;
  }

  .hero-art {
    min-height: 550px;
    margin-top: -80px;
    opacity: 0.85;
  }

  .aura-frame {
    width: min(560px, 74vw);
  }

  .orbit-one {
    width: min(620px, 84vw);
    height: min(620px, 84vw);
  }

  .orbit-two {
    width: min(700px, 94vw);
    height: min(700px, 94vw);
  }

  .project-ticker {
    grid-template-columns: 1fr auto;
    height: auto;
    padding-block: 22px;
  }

  .ticker-label,
  .ticker-progress {
    grid-column: 1 / -1;
  }

  .mechanism-grid,
  .summary-grid {
    grid-template-columns: 1fr;
  }

  .allocation {
    min-height: 260px;
    border-right: 0;
    border-bottom: 1px solid var(--line);
  }

  .allocation:last-child {
    border-bottom: 0;
  }

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

@media (max-width: 680px) {
  :root {
    --page: calc(100% - 28px);
    --header-height: 66px;
  }

  .site-header {
    padding-inline: 14px;
  }

  .brand {
    font-size: 15px;
  }

  .brand-mark {
    width: 30px;
    height: 30px;
  }

  .wallet-button {
    min-width: 42px;
    width: 42px;
    padding: 0;
  }

  .wallet-button span:last-child {
    display: none;
  }

  .hero-grid {
    padding-top: 84px;
  }

  .hero h1 {
    font-size: 52px;
  }

  .hero-description {
    font-size: 14px;
  }

  .hero-actions {
    width: 100%;
  }

  .button {
    flex: 1;
    min-width: 0;
  }

  .hero-metrics {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 12px;
    margin-top: 46px;
  }

  .hero-metrics strong {
    font-size: 15px;
  }

  .hero-metrics span {
    font-size: 9px;
  }

  .hero-art {
    min-height: 410px;
    margin-top: -36px;
  }

  .aura-frame {
    width: 92vw;
    max-width: 460px;
  }

  .orbit-one,
  .orbit-two {
    display: none;
  }

  .art-caption {
    right: 12px;
    bottom: 24px;
  }

  .project-ticker {
    width: 100%;
    border-left: 0;
    border-right: 0;
  }

  .mechanism,
  .projects,
  .dashboard {
    padding: 90px 0;
  }

  .section-heading {
    grid-template-columns: 1fr;
    gap: 24px;
    margin-bottom: 38px;
  }

  .section-heading h2 {
    font-size: 40px;
  }

  .allocation {
    min-height: 230px;
    padding: 24px;
  }

  .allocation-number {
    font-size: 76px;
  }

  .flow-line {
    grid-template-columns: 1fr;
    gap: 11px;
  }

  .flow-line i {
    width: 1px;
    height: 22px;
    margin-left: 6px;
  }

  .project-toolbar {
    align-items: flex-start;
    gap: 20px;
    padding: 18px 0;
  }

  .filter-tabs {
    display: grid;
    grid-template-columns: repeat(2, auto);
    gap: 18px 24px;
  }

  .filter-tabs button::after {
    bottom: -5px;
  }

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

  .project-card {
    min-height: 166px;
  }

  .summary-grid article {
    min-height: 155px;
  }

  .summary-grid strong {
    font-size: 38px;
  }

  .activity-row {
    grid-template-columns: 1fr auto;
    gap: 14px;
    padding-block: 16px;
  }

  .activity-date {
    display: none;
  }

  .activity-row > .activity-cell:nth-child(3) {
    grid-column: 1;
    margin-left: 40px;
  }

  .activity-amount {
    grid-column: 2;
    grid-row: 1 / 3;
  }

  .footer-grid {
    grid-template-columns: 1fr auto;
  }

  .footer-grid p {
    grid-column: 1 / -1;
  }
}

@media (prefers-reduced-motion: reduce) {
  *,
  *::before,
  *::after {
    scroll-behavior: auto !important;
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: 0.01ms !important;
  }
}
