@font-face {
  font-family: 'Departure Mono';
  src: url('fonts/DepartureMono-Regular.otf') format('opentype');
  font-weight: 400;
  font-style: normal;
  font-display: swap;
}

@font-face {
  font-family: 'Moldie';
  src: url('fonts/MoldieDemo-Regular.otf') format('opentype');
  font-weight: 400;
  font-style: normal;
  font-display: swap;
}

@font-face {
  font-family: 'CS Caleb Mono';
  src: url('fonts/CSCalebMono-Regular_demo.otf') format('opentype');
  font-weight: 400;
  font-style: normal;
  font-display: swap;
}

@font-face {
  font-family: 'JetBrains Mono';
  src: url('fonts/JetBrainsMono-Regular.woff2') format('woff2');
  font-weight: 400;
  font-style: normal;
  font-display: swap;
}

@font-face {
  font-family: 'JetBrains Mono';
  src: url('fonts/JetBrainsMono-Medium.woff2') format('woff2');
  font-weight: 500;
  font-style: normal;
  font-display: swap;
}

@font-face {
  font-family: 'JetBrains Mono';
  src: url('fonts/JetBrainsMono-Bold.woff2') format('woff2');
  font-weight: 600;
  font-style: normal;
  font-display: swap;
}

@font-face {
  font-family: 'JetBrains Mono';
  src: url('fonts/JetBrainsMono-Bold.woff2') format('woff2');
  font-weight: 700;
  font-style: normal;
  font-display: swap;
}

:root {
  --text-color: #ccff00;
  --font-main: 'Departure Mono', 'JetBrains Mono', 'Courier New', monospace;
}

* {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
  scrollbar-width: thin;
  scrollbar-color: #3f3f3f transparent;
}

*::-webkit-scrollbar {
  width: 7px;
  height: 7px;
}

*::-webkit-scrollbar-track {
  background: transparent;
}

*::-webkit-scrollbar-thumb {
  background: #3f3f3f;
  border-radius: 8px;
}

*::-webkit-scrollbar-thumb:hover {
  background: #5c5c5c;
}

*::-webkit-scrollbar-corner {
  background: transparent;
}

body {
  background:
    radial-gradient(ellipse 65% 55% at 50% 50%, color-mix(in srgb, var(--text-color) 14%, transparent), transparent 70%),
    #171719;
  background-attachment: fixed;
  color: var(--text-color);
  font-family: var(--font-main);
  min-height: 100vh;
}

.top-bar {
  position: relative;
  z-index: 150;
  width: 100%;
  padding: 1rem 2rem;
  border-bottom: 1px solid var(--text-color);
  display: grid;
  grid-template-columns: 1fr auto 1fr;
  align-items: center;
  gap: 1rem;
}

.top-bar-right {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  justify-self: end;
}

.connect-wallet-btn {
  background: transparent;
  color: var(--text-color);
  border: 1px solid var(--text-color);
  font-family: inherit;
  font-weight: 700;
  font-size: 0.85rem;
  letter-spacing: 0.03em;
  padding: 0.5rem 1.1rem;
  border-radius: 6px;
  cursor: pointer;
  white-space: nowrap;
}

.connect-wallet-btn:hover {
  background: color-mix(in srgb, var(--text-color) 15%, transparent);
}

.connect-wallet-btn.connect-wallet-btn--connected {
  background: color-mix(in srgb, var(--text-color) 20%, transparent);
}

.dapp-btn {
  display: inline-block;
  background: color-mix(in srgb, var(--text-color) 15%, transparent);
  color: var(--text-color);
  border: 1px solid var(--text-color);
  font-family: inherit;
  font-weight: 700;
  font-size: 0.85rem;
  letter-spacing: 0.05em;
  padding: 0.5rem 1.25rem;
  border-radius: 6px;
  cursor: pointer;
  text-decoration: none;
  transition: background 0.2s, color 0.2s;
}

.dapp-btn:hover {
  background: var(--text-color);
  color: #000;
}

.nav-toggle {
  display: none;
  background: transparent;
  border: 1px solid var(--text-color);
  color: var(--text-color);
  width: 38px;
  height: 38px;
  border-radius: 6px;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  flex-shrink: 0;
}

.nav-toggle-icon {
  width: 18px;
  height: 18px;
}

.nick {
  font-size: 1.5rem;
  font-weight: bold;
  display: flex;
  align-items: center;
  gap: 0.6rem;
}

.nick-logo {
  height: 26px;
  width: auto;
  display: block;
}

.nav-buttons {
  display: flex;
  gap: 0.75rem;
  flex-wrap: wrap;
}

.nav-buttons button {
  background: transparent;
  color: var(--text-color);
  border: 1px solid var(--text-color);
  font-family: inherit;
  font-size: 0.9rem;
  padding: 0.5rem 1rem;
  cursor: pointer;
  transition: background 0.2s, color 0.2s;
}

.nav-buttons button:hover {
  background: var(--text-color);
  color: #000;
}

@media (max-width: 700px) {
  .top-bar {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    justify-content: space-between;
    gap: 0.6rem;
    padding: 0.85rem 1.25rem;
  }

  .nick {
    font-size: 1.1rem;
  }

  .nav-toggle {
    display: flex;
  }

  .top-bar-right {
    justify-self: auto;
  }

  .connect-wallet-btn {
    padding: 0.5rem 0.7rem;
    font-size: 0.75rem;
  }

  .nav-buttons {
    display: none;
    position: absolute;
    top: 100%;
    left: 0;
    right: 0;
    flex-direction: column;
    align-items: stretch;
    gap: 0.6rem;
    background: #101012;
    border-bottom: 1px solid var(--text-color);
    padding: 1rem 1.25rem 1.25rem;
    z-index: 160;
  }

  .nav-buttons.nav-open {
    display: flex;
  }

  .nav-buttons button,
  .nav-buttons a {
    width: 100%;
    text-align: center;
  }
}

.nav-home-link {
  display: inline-block;
  background: transparent;
  color: var(--text-color);
  border: 1px solid var(--text-color);
  font-family: inherit;
  font-size: 0.9rem;
  padding: 0.5rem 1rem;
  cursor: pointer;
  text-decoration: none;
  transition: background 0.2s, color 0.2s;
}

.nav-home-link:hover {
  background: var(--text-color);
  color: #000;
}

main {
  position: relative;
  padding: 7.5rem 2rem 2rem;
  min-height: calc(100vh - 13rem);
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
}

.hero-watermark {
  position: absolute;
  top: 58%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 900px;
  max-width: 85%;
  opacity: 0.32;
  mix-blend-mode: screen;
  pointer-events: none;
  user-select: none;
  z-index: 0;
}

.hero-text {
  position: relative;
  z-index: 1;
  font-family: var(--font-main);
  font-size: 2.75rem;
  line-height: 1.4;
  color: #d4d4d4;
  font-weight: 400;
}

.hero-text p {
  margin: 0;
}

.hero-contract {
  display: inline-flex;
  align-items: center;
  gap: 0.6rem;
  margin-top: 20rem;
  padding: 0.6rem 1.25rem;
  border: 1px solid rgba(255, 255, 255, 0.18);
  border-radius: 999px;
  background: rgba(0, 0, 0, 0.3);
  color: #b3b3b3;
  font-family: var(--font-main);
  font-size: 0.85rem;
  cursor: pointer;
  transition: border-color 0.2s, color 0.2s;
  max-width: 100%;
}

.hero-contract:hover {
  border-color: color-mix(in srgb, var(--text-color) 45%, transparent);
  color: #e5e5e5;
}

.hero-contract-label {
  color: #7a7a7a;
  flex-shrink: 0;
}

.hero-contract-address {
  color: #d4d4d4;
  letter-spacing: -0.01em;
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: nowrap;
}

.hero-contract-icon {
  width: 14px;
  height: 14px;
  stroke: currentColor;
  flex-shrink: 0;
}

.hero-contract-copied .hero-contract-label,
.hero-contract-copied .hero-contract-address {
  color: var(--text-color);
}

.hero-contract-copied {
  border-color: color-mix(in srgb, var(--text-color) 60%, transparent);
}

@media (max-width: 520px) {
  .hero-contract-address {
    max-width: 160px;
  }
}

.highlight {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  background: var(--text-color);
  color: #000;
  line-height: 1;
  padding: 0.35em 0.4em 0.25em;
  border-radius: 6px;
  font-weight: 700;
}

.hero-text strong {
  color: #fff;
  font-weight: 700;
}

.divider {
  max-width: 1100px;
  margin: 3rem auto;
  border-top: 1px solid var(--text-color);
}

.cardio-divider {
  position: relative;
  max-width: 1100px;
  margin: 2rem auto 3rem;
  padding: 0 2rem;
}

.cardio-line {
  width: 100%;
  height: 70px;
  display: block;
  overflow: hidden;
  animation: cardio-glitch 2.4s infinite;
}

@keyframes cardio-glitch {
  0% {
    clip-path: inset(0 0 0 0);
    transform: translateX(0);
    filter: none;
  }
  4% {
    clip-path: inset(0 0 58% 0);
    transform: translateX(9px);
    filter: hue-rotate(30deg) saturate(2.2);
  }
  8% {
    clip-path: inset(62% 0 0 0);
    transform: translateX(-11px);
    filter: hue-rotate(-26deg) saturate(2);
  }
  12% {
    clip-path: inset(28% 0 32% 0);
    transform: translateX(7px) scaleY(1.08);
    filter: hue-rotate(16deg) saturate(1.9);
  }
  16% {
    clip-path: inset(0 0 78% 0);
    transform: translateX(-5px);
    filter: hue-rotate(-14deg) saturate(1.7);
  }
  20%, 44% {
    clip-path: inset(0 0 0 0);
    transform: translateX(0);
    filter: none;
  }
  46% {
    clip-path: inset(18% 0 46% 0);
    transform: translateX(-8px);
    filter: hue-rotate(-20deg) saturate(2);
  }
  49% {
    clip-path: inset(50% 0 14% 0);
    transform: translateX(10px);
    filter: hue-rotate(22deg) saturate(2);
  }
  52%, 100% {
    clip-path: inset(0 0 0 0);
    transform: translateX(0);
    filter: none;
  }
}

@media (prefers-reduced-motion: reduce) {
  .cardio-line {
    animation: none;
  }
}

.cardio-track {
  animation: cardio-scroll 6s linear infinite;
}

@keyframes cardio-scroll {
  from {
    transform: translateX(0);
  }
  to {
    transform: translateX(-1100px);
  }
}

@media (prefers-reduced-motion: reduce) {
  .cardio-track {
    animation: none;
  }
}

.cardio-live {
  position: absolute;
  top: -1.5rem;
  right: 2rem;
  display: inline-flex;
  align-items: center;
  gap: 0.4rem;
  font-size: 0.75rem;
  font-weight: 700;
  letter-spacing: 0.1em;
  color: var(--text-color);
}

.cardio-live-dot {
  width: 7px;
  height: 7px;
  border-radius: 50%;
  background: var(--text-color);
  animation: cardio-blink 1.2s ease-in-out infinite;
}

@keyframes cardio-blink {
  0%,
  100% {
    opacity: 1;
  }
  50% {
    opacity: 0.2;
  }
}

@media (prefers-reduced-motion: reduce) {
  .cardio-live-dot {
    animation: none;
  }
}

.settlement {
  padding: 2rem 2rem 5rem;
  font-family: var(--font-main);
  max-width: 1100px;
  margin: 0 auto;
}

.accent-text {
  color: var(--text-color);
}

.settlement-top {
  display: flex;
  justify-content: space-between;
  align-items: flex-end;
  gap: 2rem;
  flex-wrap: wrap;
  margin-bottom: 2.5rem;
}

.settlement-left {
  max-width: 380px;
}

.eyebrow {
  color: var(--text-color);
  font-size: 0.75rem;
  font-weight: 700;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  margin-bottom: 0.75rem;
}

.settlement-desc {
  color: #b3b3b3;
  font-size: 0.95rem;
  line-height: 1.6;
}

.settlement-heading {
  font-size: 2.25rem;
  font-weight: 500;
  color: #f0f0f0;
  text-align: right;
}

.settlement-cards {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1.5rem;
}

.settlement-card {
  border-radius: 20px;
  min-height: 340px;
  position: relative;
  overflow: hidden;
  transition: transform 0.2s ease, box-shadow 0.2s ease;
}

.settlement-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 12px 30px rgba(0, 0, 0, 0.4);
}

.settlement-card li {
  display: flex;
  align-items: center;
  gap: 0.6rem;
}

.leader {
  flex: 1;
  height: 6px;
  min-width: 16px;
  background-image: radial-gradient(circle, var(--text-color) 1.4px, transparent 1.6px);
  background-size: 9px 9px;
  background-repeat: repeat-x;
  background-position: left center;
  opacity: 0.85;
  animation: leader-march 0.7s linear infinite;
}

@keyframes leader-march {
  from {
    background-position: 0 center;
  }
  to {
    background-position: -9px center;
  }
}

@media (prefers-reduced-motion: reduce) {
  .leader {
    animation: none;
  }
}

.card-overlay {
  position: absolute;
  left: 8%;
  right: 8%;
  top: 18%;
  background: rgba(8, 12, 10, 0.82);
  border: 1px solid color-mix(in srgb, var(--text-color) 18%, transparent);
  border-radius: 14px;
  padding: 1.5rem 1.75rem;
}

.card-overlay h3 {
  font-size: 1.4rem;
  font-weight: 700;
  color: #f0f0f0;
  margin-bottom: 1rem;
}

.card-overlay ul {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 0.7rem;
}

.card-overlay li {
  color: #c9c9c9;
  font-size: 0.9rem;
}

.circle-pill,
.cross-chain-tag {
  position: absolute;
  left: 8%;
  bottom: 8%;
  background: rgba(8, 12, 10, 0.85);
  border: 1px solid color-mix(in srgb, var(--text-color) 20%, transparent);
  border-radius: 999px;
  padding: 0.5rem 0.5rem 0.5rem 1rem;
  font-size: 0.85rem;
  color: #d4d4d4;
  display: flex;
  align-items: center;
  gap: 0.5rem;
}

.circle-badge {
  background: var(--text-color);
  color: #000;
  font-weight: 700;
  font-size: 0.8rem;
  padding: 0.3rem 0.6rem;
  border-radius: 999px;
}

@media (max-width: 800px) {
  .settlement-heading {
    text-align: left;
  }

  .settlement-cards {
    grid-template-columns: minmax(0, 1fr);
  }
}

.commerce {
  padding: 2rem 2rem 5rem;
  font-family: var(--font-main);
}

.commerce-panel[hidden] {
  display: none;
}

.commerce-heading-wrap {
  text-align: center;
  margin-bottom: 2.5rem;
}

.commerce-sub {
  color: #b3b3b3;
  font-size: 1rem;
  margin-top: 1rem;
  max-width: 560px;
  margin-left: auto;
  margin-right: auto;
}

.toggle-pills {
  display: flex;
  justify-content: center;
  gap: 0.75rem;
  margin-top: 1.5rem;
}

.pill {
  padding: 0.55rem 1.2rem;
  border-radius: 999px;
  border: 1px solid color-mix(in srgb, var(--text-color) 25%, transparent);
  background: transparent;
  color: #9a9a9a;
  font-family: inherit;
  font-size: 0.9rem;
  cursor: pointer;
}

.pill-active {
  background: color-mix(in srgb, var(--text-color) 20%, transparent);
  color: var(--text-color);
  border-color: color-mix(in srgb, var(--text-color) 50%, transparent);
  font-weight: 600;
}

.code-comment-line {
  color: #d4d4d4;
}

.code-http {
  color: #8a8a8a;
}

.cashback {
  padding: 2rem 2rem 5rem;
  max-width: 1100px;
  margin: 0 auto;
  font-family: var(--font-main);
}

.cashback-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 3rem;
  align-items: start;
}

.cashback-heading {
  text-align: left;
  margin-bottom: 1rem;
}

.cashback-desc {
  color: #b3b3b3;
  font-size: 0.95rem;
  line-height: 1.6;
  max-width: 480px;
  margin-bottom: 2.5rem;
}

.cashback-stats {
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
}

.stat-label {
  text-transform: uppercase;
  font-size: 0.75rem;
  letter-spacing: 0.15em;
  color: #8a8a8a;
  margin-bottom: 0.35rem;
}

.stat-value {
  font-size: 1.3rem;
  font-weight: 700;
  color: #f0f0f0;
}

.cashback-right {
  display: flex;
  flex-direction: column;
}

.cashback-big-stat {
  font-size: 3.25rem;
  font-weight: 700;
  margin: 0.3rem 0 2rem;
}

.chart-card {
  background: color-mix(in srgb, var(--text-color) 8%, #0d0d0d);
  border: 1px solid color-mix(in srgb, var(--text-color) 18%, transparent);
  border-radius: 16px;
  padding: 1.5rem;
}

.decay-blink {
  animation: decay-blink 1.4s ease-in-out infinite;
  transform-origin: center;
}

@keyframes decay-blink {
  0%,
  100% {
    opacity: 0.9;
  }
  50% {
    opacity: 0.15;
  }
}

@media (prefers-reduced-motion: reduce) {
  .decay-blink {
    animation: none;
  }
}

.chart-caption {
  text-align: right;
  font-size: 0.85rem;
  color: #c9c9c9;
  margin-bottom: 0.5rem;
}

.decay-chart {
  width: 100%;
  height: auto;
  display: block;
}

@media (max-width: 800px) {
  .cashback-grid {
    grid-template-columns: minmax(0, 1fr);
  }
}

.redefine {
  padding: 4.25rem 2rem 5rem;
  max-width: 1100px;
  margin: 0 auto;
  font-family: var(--font-main);
}

.redefine-header {
  text-align: center;
  margin-bottom: 2rem;
}

.redefine-heading {
  font-size: 2.25rem;
  font-weight: 700;
  color: #f5f5f5;
  letter-spacing: -0.01em;
  line-height: 1.3;
  max-width: 640px;
  margin: 0 auto 1rem;
}

.redefine-sub {
  color: #a3a3a3;
  font-size: 1rem;
  max-width: 480px;
  margin: 0 auto;
  line-height: 1.5;
}

.redefine-layout {
  display: grid;
  grid-template-columns: 1fr 1.6fr 1fr;
  align-items: center;
  gap: 1.5rem;
  margin-bottom: 2.5rem;
}

.redefine-col {
  position: relative;
  border: 1px solid rgba(255, 255, 255, 0.15);
  border-radius: 4px;
  padding: 1.75rem;
  display: flex;
  flex-direction: column;
  gap: 2.25rem;
}

.redefine-col::before,
.redefine-col::after {
  content: "+";
  position: absolute;
  color: rgba(255, 255, 255, 0.3);
  font-size: 0.9rem;
  line-height: 1;
}

.redefine-col::before {
  top: -0.55em;
  left: -0.4em;
}

.redefine-col::after {
  bottom: -0.55em;
  left: -0.4em;
}

.redefine-col-right::before {
  right: -0.4em;
  left: auto;
}

.redefine-col-right::after {
  right: -0.4em;
  left: auto;
}

.redefine-block {
  display: flex;
  flex-direction: column;
  gap: 0.85rem;
}

.redefine-icon {
  width: 40px;
  height: 40px;
  border-radius: 8px;
  background: #1c1c1c;
  border: 1px solid rgba(255, 255, 255, 0.1);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--text-color);
}

.redefine-icon svg {
  width: 18px;
  height: 18px;
}

.redefine-block p {
  color: #b3b3b3;
  font-size: 0.92rem;
  line-height: 1.5;
}

.redefine-spark {
  position: absolute;
  top: 50%;
  width: 10px;
  height: 10px;
  transform: translateY(-50%) rotate(45deg);
  background: var(--text-color);
}

.redefine-spark-right {
  right: -6px;
}

.redefine-spark-left {
  left: -6px;
}

.redefine-center {
  display: flex;
  align-items: center;
  justify-content: center;
  perspective: 700px;
}

.redefine-logo {
  width: 100%;
  height: auto;
  max-width: 180px;
  transform-style: preserve-3d;
  transition: transform 0.2s ease-out;
  will-change: transform;
}

.redefine-ctas {
  display: flex;
  justify-content: center;
  gap: 1rem;
  flex-wrap: wrap;
}

.redefine-btn {
  display: inline-flex;
  align-items: center;
  gap: 0.75rem;
  font-family: inherit;
  font-size: 0.95rem;
  font-weight: 600;
  border: none;
  border-radius: 8px;
  padding: 0.2rem;
  padding-left: 1.25rem;
  cursor: pointer;
}

.redefine-btn-primary {
  background: linear-gradient(90deg, color-mix(in srgb, var(--text-color) 85%, white 15%) 0%, color-mix(in srgb, var(--text-color) 85%, black 15%) 100%);
  color: #04150b;
}

.redefine-btn-secondary {
  background: #1c1c1c;
  border: 1px solid rgba(255, 255, 255, 0.12);
  color: #f0f0f0;
}

.redefine-arrow {
  width: 34px;
  height: 34px;
  border-radius: 6px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1rem;
}

.redefine-btn-primary .redefine-arrow {
  background: rgba(4, 21, 11, 0.2);
}

.redefine-btn-secondary .redefine-arrow {
  background: rgba(255, 255, 255, 0.08);
}

@media (max-width: 800px) {
  .redefine-layout {
    grid-template-columns: minmax(0, 1fr);
  }

  .redefine-heading {
    font-size: 1.75rem;
  }
}

.pill-grid {
  display: flex;
  flex-wrap: wrap;
  gap: 0.6rem;
}

.pill-tag {
  display: inline-flex;
  align-items: center;
  gap: 0.4rem;
  background: color-mix(in srgb, var(--text-color) 12%, transparent);
  color: var(--text-color);
  border: 1px solid color-mix(in srgb, var(--text-color) 25%, transparent);
  border-radius: 999px;
  padding: 0.4rem 0.8rem;
  font-size: 0.8rem;
  font-weight: 600;
  white-space: nowrap;
}

.pill-icon {
  width: 14px;
  height: 14px;
  flex-shrink: 0;
}

@media (max-width: 800px) {
  .agentic-panel {
    padding: 0.5rem 1.5rem;
  }

  .agentic-row {
    gap: 1.25rem;
  }

  .agentic-num {
    font-size: 1.1rem;
  }
}

.statement {
  position: relative;
  width: 100%;
  min-height: 100vh;
  overflow: hidden;
  font-family: var(--font-main);
}

.statement-bg {
  position: absolute;
  inset: 0;
  background:
    radial-gradient(ellipse 55% 35% at 12% 18%, color-mix(in srgb, var(--text-color) 65%, white 15%), transparent 60%),
    radial-gradient(ellipse 45% 30% at 75% 8%, rgba(3, 12, 6, 0.95), transparent 55%),
    radial-gradient(ellipse 60% 40% at 88% 48%, color-mix(in srgb, var(--text-color) 50%, transparent), transparent 55%),
    radial-gradient(ellipse 50% 35% at 22% 72%, rgba(2, 10, 5, 0.95), transparent 55%),
    radial-gradient(ellipse 55% 40% at 62% 88%, color-mix(in srgb, var(--text-color) 70%, white 20%), transparent 60%),
    linear-gradient(125deg, #03110a 0%, #0a3018 35%, #04180c 60%, #0e3d1f 100%);
}

.statement-bg::after {
  content: "";
  position: absolute;
  inset: 0;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='200' height='200'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.9' numOctaves='2' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23n)'/%3E%3C/svg%3E");
  opacity: 0.12;
  mix-blend-mode: overlay;
}

@media (max-width: 800px) {
  .statement {
    min-height: 380px;
  }
}

.feature {
  padding: 2rem 2rem 6rem;
  font-family: var(--font-main);
}

.feature-heading {
  text-align: center;
  font-size: 2rem;
  font-weight: 400;
  color: #d4d4d4;
  margin-bottom: 2.5rem;
}

.feature-card {
  max-width: 1100px;
  margin: 0 auto;
  background: #141414;
  border-radius: 20px;
  display: grid;
  grid-template-columns: 1fr 1fr;
  overflow: hidden;
}

.feature-left {
  padding: 3rem;
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
}

.feature-left h3 {
  font-size: 1.7rem;
  font-weight: 500;
  color: #f2f2f2;
  line-height: 1.3;
}

.checklist {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 0.9rem;
}

.checklist li {
  color: #c9c9c9;
  font-size: 1rem;
}

.checklist li::before {
  content: "\2713";
  color: var(--text-color);
  font-weight: 700;
  margin-right: 0.6rem;
}

.docs-btn {
  align-self: flex-start;
  background: color-mix(in srgb, var(--text-color) 15%, transparent);
  color: var(--text-color);
  border: 1px solid color-mix(in srgb, var(--text-color) 40%, transparent);
  font-family: inherit;
  font-size: 0.95rem;
  padding: 0.8rem 1.4rem;
  border-radius: 8px;
  cursor: pointer;
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  margin-top: 0.5rem;
}

.feature-right {
  position: relative;
  min-height: 320px;
}

.gradient-bg {
  position: absolute;
  inset: 0;
  background:
    radial-gradient(ellipse at 20% 20%, color-mix(in srgb, var(--text-color) 32%, transparent), transparent 55%),
    radial-gradient(ellipse at 75% 15%, color-mix(in srgb, var(--text-color) 22%, transparent), transparent 50%),
    radial-gradient(ellipse at 85% 85%, color-mix(in srgb, var(--text-color) 38%, transparent), transparent 55%),
    radial-gradient(ellipse at 15% 85%, color-mix(in srgb, var(--text-color) 20%, transparent), transparent 55%),
    linear-gradient(160deg, #0c1810 0%, #050a07 100%);
}

.code-card {
  position: absolute;
  left: 6%;
  right: 6%;
  top: 50%;
  transform: translateY(-50%);
  background: rgba(10, 10, 10, 0.85);
  border-radius: 12px;
  padding: 1.5rem 1.75rem;
  font-family: var(--font-main);
  font-size: 0.85rem;
  line-height: 2;
}

.code-comment {
  color: #6b6b6b;
}

.code-fn {
  color: #ffffff;
}

.code-str {
  color: #ffb454;
}

.code-key {
  color: var(--text-color);
}

@media (max-width: 800px) {
  .feature-card {
    grid-template-columns: minmax(0, 1fr);
  }

  .feature-right {
    min-height: 260px;
  }
}

.agent-diagram {
  position: relative;
  z-index: 1;
  padding: 3rem 2rem 4rem;
  max-width: 1200px;
  margin: 0 auto;
  font-family: var(--font-main);
  text-shadow: 0 1px 3px rgba(0, 0, 0, 0.85), 0 2px 14px rgba(0, 0, 0, 0.6);
}

.agent-canvas {
  position: relative;
  width: 100%;
  aspect-ratio: 1200 / 620;
}

.agent-lines {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
}

.agent-node {
  position: absolute;
  width: 30%;
  max-width: 320px;
}

.agent-node h3 {
  font-size: 1.6rem;
  font-weight: 700;
  color: #f5f5f5;
  letter-spacing: -0.01em;
  margin-bottom: 0.5rem;
}

.agent-node p {
  font-size: 0.85rem;
  color: #dcdcdc;
  line-height: 1.6;
}

.agent-node-tl {
  left: 3%;
  top: 6%;
}

.agent-node-tr {
  right: 3%;
  top: 6%;
  text-align: right;
}

.agent-node-bl {
  left: 3%;
  top: 44%;
}

.agent-node-br {
  right: 3%;
  top: 51%;
  text-align: right;
}

.agent-center {
  position: absolute;
  left: 50%;
  top: 41%;
  transform: translate(-50%, 0);
  width: 25%;
  min-width: 240px;
}

.agent-center-box {
  border: 1px solid var(--text-color);
  border-radius: 10px;
  padding: 1.5rem 1.25rem;
  text-align: center;
  color: var(--text-color);
  font-weight: 700;
  font-size: 1.3rem;
  line-height: 1.35;
  background: rgba(5, 12, 6, 0.65);
  backdrop-filter: blur(3px);
}

.agent-caption {
  position: absolute;
  left: 50%;
  top: 75%;
  transform: translateX(-50%);
  text-align: center;
  width: 80%;
}

.agent-caption-title {
  color: var(--text-color);
  font-weight: 700;
  font-size: 0.85rem;
  letter-spacing: 0.04em;
  margin-bottom: 0.5rem;
}

.agent-caption-sub {
  color: #b3b3b3;
  font-size: 0.9rem;
}

.agent-pills {
  display: flex;
  align-items: center;
  justify-content: center;
  flex-wrap: wrap;
  gap: 0.75rem;
  margin-top: 2.5rem;
}

.agent-pill {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  border: 1px solid color-mix(in srgb, var(--text-color) 30%, transparent);
  border-radius: 999px;
  padding: 0.6rem 1.2rem;
  background: rgba(5, 12, 6, 0.5);
  font-size: 0.85rem;
  font-weight: 700;
  letter-spacing: 0.03em;
  color: var(--text-color);
}

.agent-pill svg {
  width: 16px;
  height: 16px;
  stroke: currentColor;
}

.agent-pill-accent {
  color: #f5c518;
  border-color: color-mix(in srgb, #f5c518 35%, transparent);
}

.agent-pill-x {
  color: #6f6f6f;
  font-size: 1.1rem;
}

.agent-tagline {
  text-align: center;
  font-size: 1.5rem;
  font-weight: 700;
  color: #f5f5f5;
  margin-top: 2rem;
}

@media (max-width: 900px) {
  .agent-canvas {
    aspect-ratio: auto;
    display: flex;
    flex-direction: column;
    gap: 2rem;
  }

  .agent-lines {
    display: none;
  }

  .agent-node,
  .agent-center,
  .agent-caption {
    position: static;
    width: 100%;
    max-width: none;
    transform: none;
    text-align: center;
  }

  .agent-node-tr,
  .agent-node-br {
    text-align: center;
  }

  .agent-tagline {
    font-size: 1.2rem;
  }
}

.closing {
  text-align: center;
  padding: 4rem 2rem 5rem;
  max-width: 780px;
  margin: 0 auto;
  position: relative;
}

.closing-logo {
  width: 90px;
  height: 90px;
  margin: 0 auto 1.75rem;
  opacity: 0.9;
}

.closing-logo img {
  width: 100%;
  height: 100%;
  object-fit: contain;
  filter: drop-shadow(0 0 22px color-mix(in srgb, var(--text-color) 55%, transparent));
}

.closing-heading {
  font-size: 2.75rem;
  font-weight: 700;
  color: #f5f5f5;
  line-height: 1.3;
  letter-spacing: -0.01em;
  margin-bottom: 1rem;
}

.closing-sub {
  color: #a3a3a3;
  font-size: 1.05rem;
  margin-bottom: 2.25rem;
}

.closing-ctas {
  display: flex;
  justify-content: center;
  gap: 1rem;
  flex-wrap: wrap;
}

.site-footer {
  max-width: 1100px;
  margin: 0 auto;
  padding: 3rem 2rem 2rem;
  border-top: 1px solid rgba(255, 255, 255, 0.08);
}

.footer-top {
  display: grid;
  grid-template-columns: 1.4fr 1fr 1fr;
  gap: 2.5rem;
  margin-bottom: 2.5rem;
}

.footer-brand .nick {
  margin-bottom: 0.85rem;
}

.footer-tagline {
  color: #a3a3a3;
  font-size: 0.9rem;
  max-width: 260px;
  margin-bottom: 1.5rem;
  line-height: 1.5;
}

.footer-socials {
  display: flex;
  gap: 0.6rem;
}

.social-icon {
  width: 36px;
  height: 36px;
  border-radius: 50%;
  border: 1px solid color-mix(in srgb, var(--text-color) 25%, transparent);
  color: var(--text-color);
  display: flex;
  align-items: center;
  justify-content: center;
  text-decoration: none;
  transition: background 0.2s, color 0.2s;
}

.social-icon svg {
  width: 16px;
  height: 16px;
}

.social-icon:hover {
  background: var(--text-color);
  color: #000;
}

.footer-col h4 {
  font-size: 0.75rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.12em;
  color: #8a8a8a;
  margin-bottom: 1.1rem;
}

.footer-col a {
  display: block;
  color: #c9c9c9;
  font-size: 0.9rem;
  text-decoration: none;
  margin-bottom: 0.8rem;
}

.footer-col a:hover {
  color: var(--text-color);
}

.footer-link-btn {
  display: block;
  background: none;
  border: none;
  padding: 0;
  color: #c9c9c9;
  font-family: inherit;
  font-size: 0.9rem;
  text-decoration: none;
  margin-bottom: 0.8rem;
  cursor: pointer;
  text-align: left;
}

.footer-link-btn:hover {
  color: var(--text-color);
}

.footer-bottom {
  border-top: 1px solid rgba(255, 255, 255, 0.08);
  padding-top: 1.5rem;
  text-align: center;
  color: #7a7a7a;
  font-size: 0.85rem;
}

@media (max-width: 800px) {
  .closing-heading {
    font-size: 2rem;
  }

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

@media (max-width: 520px) {
  .footer-top {
    grid-template-columns: minmax(0, 1fr);
  }
}

/* x402 payment calculator modal (About) */

.x402-modal-overlay {
  position: fixed;
  inset: 0;
  background: rgba(5, 8, 6, 0.94);
  backdrop-filter: blur(6px);
  display: flex;
  align-items: flex-start;
  justify-content: center;
  padding: 6.5rem 1.5rem 3rem;
  overflow: hidden;
  z-index: 100;
}

.x402-modal-overlay[hidden] {
  display: none;
}

.x402-modal-panel {
  position: relative;
  width: 100%;
  max-width: 1100px;
  max-height: 100%;
  overflow-y: auto;
  overflow-x: hidden;
  display: flex;
  flex-direction: column;
  gap: 1.25rem;
}

.x402-modal-close {
  position: absolute;
  top: -0.5rem;
  right: -0.5rem;
  width: 36px;
  height: 36px;
  border-radius: 50%;
  background: #141414;
  border: 1px solid color-mix(in srgb, var(--text-color) 30%, transparent);
  color: var(--text-color);
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
}

.x402-modal-close svg {
  width: 16px;
  height: 16px;
}

.x402-card {
  background: #141414;
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: 16px;
  padding: 1.75rem 2rem;
}

.x402-card h3 {
  font-size: 1.15rem;
  color: var(--text-color);
  margin-bottom: 0.6rem;
}

.x402-intro p {
  color: #c9c9c9;
  font-size: 0.92rem;
  line-height: 1.6;
  max-width: 720px;
}

.x402-powered {
  margin-top: 1rem;
  padding-top: 1rem;
  border-top: 1px solid rgba(255, 255, 255, 0.08);
  font-size: 0.78rem;
  color: #7a7a7a;
}

.x402-grid {
  display: grid;
  grid-template-columns: 2fr 1fr;
  gap: 1.25rem;
  align-items: start;
}

.x402-transfer {
  display: flex;
  flex-direction: column;
  gap: 0.4rem;
}

.x402-transfer h3 {
  margin-bottom: 0.75rem;
}

.x402-label {
  font-size: 0.78rem;
  color: #9a9a9a;
  margin-top: 0.9rem;
  margin-bottom: 0.4rem;
}

.x402-input {
  width: 100%;
  background: #0d0d0d;
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 8px;
  padding: 0.7rem 0.9rem;
  color: #f2f2f2;
  font-family: var(--font-main);
  font-size: 0.95rem;
}

.x402-input:focus {
  outline: none;
  border-color: var(--text-color);
}

.x402-chain-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1rem;
}

.x402-select-wrap {
  position: relative;
}

.x402-chain-dot {
  position: absolute;
  left: 0.9rem;
  top: 50%;
  transform: translateY(-50%);
  width: 9px;
  height: 9px;
  border-radius: 50%;
  pointer-events: none;
}

.x402-select {
  width: 100%;
  background: #0d0d0d;
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 8px;
  padding: 0.7rem 0.9rem 0.7rem 2rem;
  color: #f2f2f2;
  font-family: var(--font-main);
  font-size: 0.95rem;
  cursor: pointer;
}

.x402-select:focus {
  outline: none;
  border-color: var(--text-color);
}

.x402-info-box {
  display: flex;
  align-items: flex-start;
  gap: 0.65rem;
  background: color-mix(in srgb, var(--text-color) 10%, transparent);
  border: 1px solid color-mix(in srgb, var(--text-color) 30%, transparent);
  border-radius: 10px;
  padding: 0.9rem 1.1rem;
  margin-top: 1.1rem;
}

.x402-info-dot {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: var(--text-color);
  margin-top: 0.3rem;
  flex-shrink: 0;
}

.x402-info-title {
  font-size: 0.85rem;
  font-weight: 600;
  color: var(--text-color);
  margin-bottom: 0.15rem;
}

.x402-info-sub {
  font-size: 0.8rem;
  color: #a3a3a3;
}

.x402-fee-box {
  background: #0d0d0d;
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: 10px;
  padding: 1rem 1.1rem;
  margin-top: 1.1rem;
}

.x402-fee-title {
  font-size: 0.78rem;
  color: #9a9a9a;
  margin-bottom: 0.6rem;
}

.x402-fee-row {
  display: flex;
  justify-content: space-between;
  font-size: 0.85rem;
  color: #e0e0e0;
  padding: 0.35rem 0;
}

.x402-fee-row span:first-child {
  color: #8a8a8a;
}

.x402-muted {
  color: #8a8a8a !important;
  font-size: 0.78rem !important;
}

.x402-btn-primary {
  width: 100%;
  margin-top: 1.1rem;
  background: rgba(255, 255, 255, 0.06);
  color: #b0b0b0;
  border: 1px solid rgba(255, 255, 255, 0.12);
  border-radius: 8px;
  padding: 0.85rem;
  font-family: var(--font-main);
  font-size: 0.95rem;
  font-weight: 600;
  cursor: pointer;
}

.x402-btn-primary:hover {
  border-color: var(--text-color);
  color: var(--text-color);
}

.x402-btn-primary:disabled {
  cursor: not-allowed;
  opacity: 0.6;
}

.x402-btn-primary--ready {
  background: var(--text-color);
  color: #0d0d0d;
  border-color: var(--text-color);
}

.x402-btn-primary--ready:hover {
  color: #0d0d0d;
  opacity: 0.9;
}

.x402-btn-secondary {
  width: 100%;
  margin-top: 0.6rem;
  background: transparent;
  color: #e0e0e0;
  border: 1px solid rgba(255, 255, 255, 0.12);
  border-radius: 8px;
  padding: 0.85rem;
  font-family: var(--font-main);
  font-size: 0.95rem;
  font-weight: 600;
  cursor: pointer;
}

.x402-btn-secondary:hover {
  border-color: var(--text-color);
  color: var(--text-color);
}

.x402-side {
  display: flex;
  flex-direction: column;
  gap: 1.25rem;
}

.x402-side .x402-card p {
  color: #a3a3a3;
  font-size: 0.85rem;
  line-height: 1.5;
}

.x402-mrdn {
  background: color-mix(in srgb, var(--text-color) 8%, #141414);
  border-color: color-mix(in srgb, var(--text-color) 25%, transparent);
}

.x402-mrdn-hint {
  margin-top: 1.5rem;
  text-align: center;
  color: #7a7a7a !important;
  font-size: 0.8rem !important;
}

@media (max-width: 800px) {
  .x402-grid {
    grid-template-columns: minmax(0, 1fr);
  }

  .x402-chain-row {
    grid-template-columns: minmax(0, 1fr);
  }
}

/* stats modal */

.stats-heading-wrap {
  text-align: center;
  margin-bottom: 1.5rem;
}

.stats-heading {
  font-size: 2rem;
  font-weight: 400;
  color: #d4d4d4;
  margin-bottom: 0.75rem;
}

.stats-heading .highlight {
  font-size: 1.6rem;
  font-weight: 700;
}

.stats-sub {
  color: #a3a3a3;
  font-size: 0.95rem;
}

.stats-cards {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1rem;
  margin-bottom: 1.25rem;
}

.stats-card {
  background: #141414;
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: 14px;
  padding: 1.25rem 1.5rem;
  text-align: center;
}

.stats-card-label {
  font-size: 0.78rem;
  color: #9a9a9a;
  margin-bottom: 0.5rem;
}

.stats-card-value {
  font-size: 1.4rem;
  font-weight: 700;
  color: #f2f2f2;
  margin-bottom: 0.3rem;
}

.stats-card-hint {
  font-size: 0.72rem;
  color: #7a7a7a;
}

.stats-chart-head {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 1.25rem;
}

.stats-chart-head h3 {
  font-size: 1.05rem;
  color: #f2f2f2;
}

.x402-period-toggle {
  display: inline-flex;
  background: #0d0d0d;
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: 8px;
  padding: 0.25rem;
  gap: 0.25rem;
}

.x402-period-btn {
  background: transparent;
  border: none;
  color: #9a9a9a;
  font-family: var(--font-main);
  font-size: 0.82rem;
  font-weight: 600;
  padding: 0.4rem 0.9rem;
  border-radius: 6px;
  cursor: pointer;
}

.x402-period-btn--active {
  background: color-mix(in srgb, var(--text-color) 20%, transparent);
  color: var(--text-color);
}

.stats-chart-wrap {
  position: relative;
}

.stats-svg {
  width: 100%;
  height: 260px;
  display: block;
  overflow: visible;
}

.x402-chart-tooltip {
  position: absolute;
  transform: translate(-50%, -100%) translateY(-10px);
  background: #1c1c1e;
  border: 1px solid rgba(255, 255, 255, 0.12);
  border-radius: 8px;
  padding: 0.5rem 0.7rem;
  pointer-events: none;
  white-space: nowrap;
  box-shadow: 0 4px 16px rgba(0, 0, 0, 0.4);
  z-index: 5;
}

.x402-chart-tooltip-date {
  font-size: 0.72rem;
  color: #a3a3a3;
  margin-bottom: 0.15rem;
}

.x402-chart-tooltip-value {
  font-size: 0.9rem;
  font-weight: 700;
  color: var(--text-color);
}

.stats-legend {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  border-top: 1px solid rgba(255, 255, 255, 0.08);
  margin-top: 1rem;
}

.stats-legend-dot {
  width: 8px;
  height: 8px;
  border-radius: 2px;
  background: var(--text-color);
}

@media (max-width: 800px) {
  .stats-cards {
    grid-template-columns: minmax(0, 1fr);
  }
}

/* docs modal (shared multi-page docs layout) */

.docs-layout {
  display: grid;
  grid-template-columns: 200px 1fr;
  gap: 2rem;
  align-items: start;
}

.docs-nav {
  position: sticky;
  top: 0;
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
}

.docs-nav-group-label {
  font-size: 0.7rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.06em;
  color: #6f6f6f;
  margin-bottom: 0.5rem;
}

.docs-nav-link {
  display: block;
  width: 100%;
  text-align: left;
  background: transparent;
  border: none;
  border-left: 2px solid transparent;
  color: #a3a3a3;
  font-family: var(--font-main);
  font-size: 0.83rem;
  padding: 0.35rem 0 0.35rem 0.7rem;
  cursor: pointer;
}

.docs-nav-link:hover {
  color: #e5e5e5;
}

.docs-nav-link-active {
  color: var(--text-color);
  border-left-color: var(--text-color);
  font-weight: 700;
}

.docs-content {
  max-width: 680px;
  min-width: 0;
  max-height: 68vh;
  overflow-y: auto;
  padding-right: 0.5rem;
}

.docs-page-title {
  font-size: 1.4rem;
  color: #f5f5f5;
  margin-bottom: 1.1rem;
}

.docs-content p {
  font-size: 0.88rem;
  color: #c9c9c9;
  line-height: 1.65;
  margin-bottom: 1rem;
}

.docs-content code {
  background: rgba(255, 255, 255, 0.08);
  border-radius: 4px;
  padding: 0.1rem 0.4rem;
  font-family: var(--font-main);
  font-size: 0.85em;
  color: #f5f5f5;
}

.docs-code {
  background: #0d0d0d;
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: 10px;
  padding: 1rem 1.15rem;
  font-family: var(--font-main);
  font-size: 0.8rem;
  line-height: 1.7;
  color: #e5e5e5;
  overflow-x: auto;
  margin-bottom: 1rem;
  white-space: pre;
}

.docs-list {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 0.6rem;
  margin-bottom: 1rem;
}

.docs-list li {
  font-size: 0.88rem;
  color: #c9c9c9;
  line-height: 1.6;
}

.docs-table {
  width: 100%;
  border-collapse: collapse;
  font-size: 0.85rem;
  margin-bottom: 1rem;
}

.docs-table th {
  text-align: left;
  color: #7a7a7a;
  font-weight: 600;
  font-size: 0.72rem;
  text-transform: uppercase;
  letter-spacing: 0.03em;
  padding-bottom: 0.6rem;
  border-bottom: 1px solid rgba(255, 255, 255, 0.08);
}

.docs-table td {
  padding: 0.6rem 0;
  color: #e5e5e5;
  border-bottom: 1px solid rgba(255, 255, 255, 0.06);
}

.docs-table tr:last-child td {
  border-bottom: none;
}

.docs-network-grid {
  display: flex;
  flex-wrap: wrap;
  gap: 0.6rem;
  margin-bottom: 1rem;
}

.docs-network-chip {
  background: #141414;
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: 6px;
  padding: 0.4rem 0.8rem;
  font-size: 0.8rem;
  color: #e5e5e5;
}

.docs-faq-item {
  margin-bottom: 1.4rem;
}

.docs-faq-q {
  font-size: 0.92rem;
  color: #f5f5f5;
  margin-bottom: 0.35rem;
}

.docs-faq-a {
  margin-bottom: 0;
}

.docs-pager {
  display: flex;
  justify-content: space-between;
  gap: 1rem;
  margin-top: 2rem;
  padding-top: 1.25rem;
  border-top: 1px solid rgba(255, 255, 255, 0.08);
}

.docs-pager-btn {
  display: flex;
  flex-direction: column;
  gap: 0.2rem;
  background: transparent;
  border: none;
  cursor: pointer;
  font-family: var(--font-main);
  text-align: left;
}

.docs-pager-btn-next {
  align-items: flex-end;
  text-align: right;
  margin-left: auto;
}

.docs-pager-label {
  font-size: 0.7rem;
  color: #6f6f6f;
}

.docs-pager-title {
  font-size: 0.88rem;
  font-weight: 700;
  color: var(--text-color);
}

@media (max-width: 800px) {
  .docs-layout {
    grid-template-columns: minmax(0, 1fr);
  }

  .docs-nav {
    position: static;
    flex-direction: row;
    flex-wrap: wrap;
    gap: 0.5rem 1.25rem;
  }
}
