:root {
  color-scheme: light;
  --blue: #125df4;
  --blue-deep: #063bb1;
  --purple: #7a31d8;
  --green: #24a954;
  --lime: #d7ff68;
  --orange: #ff8a00;
  --yellow: #ffd43d;
  --ink: #071c4a;
  --muted: #53617d;
  --line: #c9d8ff;
  --soft-blue: #eef5ff;
  --soft-green: #edfbea;
  --white: #ffffff;
  --shadow: 0 18px 45px rgba(9, 37, 91, 0.16);
  --radius: 8px;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  background:
    linear-gradient(90deg, rgba(18, 93, 244, 0.07) 1px, transparent 1px),
    linear-gradient(180deg, rgba(18, 93, 244, 0.05) 1px, transparent 1px),
    #ffffff;
  background-size: 48px 48px;
  color: var(--ink);
  font-family:
    ui-rounded,
    "SF Pro Rounded",
    "Avenir Next",
    Inter,
    system-ui,
    -apple-system,
    BlinkMacSystemFont,
    "Segoe UI",
    sans-serif;
  line-height: 1.5;
}

a {
  color: inherit;
}

img,
svg {
  display: block;
}

button,
input,
textarea {
  font: inherit;
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 20;
  display: grid;
  grid-template-columns: auto 1fr auto;
  align-items: center;
  gap: 24px;
  min-height: 72px;
  padding: 12px clamp(18px, 4vw, 56px);
  background: rgba(255, 255, 255, 0.88);
  border-bottom: 1px solid rgba(18, 93, 244, 0.16);
  backdrop-filter: blur(18px);
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  text-decoration: none;
}

.brand-mark {
  display: grid;
  width: 42px;
  aspect-ratio: 1;
  place-items: center;
  color: var(--white);
  font-size: 1.45rem;
  font-weight: 1000;
  background: linear-gradient(145deg, var(--blue), var(--purple));
  border: 3px solid var(--white);
  border-radius: 50%;
  box-shadow: 0 8px 18px rgba(18, 93, 244, 0.25);
}

.brand strong,
.brand em {
  display: block;
  font-size: 0.98rem;
  font-style: normal;
  font-weight: 1000;
  line-height: 0.95;
}

.brand em {
  color: var(--purple);
}

.nav-links {
  justify-self: center;
  display: flex;
  align-items: center;
  gap: 8px;
  padding: 6px;
  background: var(--soft-blue);
  border: 1px solid rgba(18, 93, 244, 0.14);
  border-radius: 999px;
}

.nav-links a {
  padding: 8px 13px;
  color: var(--blue-deep);
  font-size: 0.92rem;
  font-weight: 850;
  text-decoration: none;
  border-radius: 999px;
}

.nav-links a:hover {
  background: var(--white);
  box-shadow: 0 6px 14px rgba(18, 93, 244, 0.12);
}

.header-cta,
.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 9px;
  min-height: 46px;
  padding: 12px 18px;
  border: 0;
  border-radius: 999px;
  cursor: pointer;
  font-weight: 950;
  text-decoration: none;
  transition:
    transform 180ms ease,
    box-shadow 180ms ease,
    background 180ms ease;
}

.header-cta {
  color: var(--white);
  background: var(--orange);
  box-shadow: 0 10px 20px rgba(255, 138, 0, 0.28);
}

.header-cta svg,
.button svg {
  width: 19px;
  height: 19px;
  fill: none;
  stroke: currentColor;
  stroke-linecap: round;
  stroke-linejoin: round;
  stroke-width: 2.4;
}

.button:hover,
.header-cta:hover,
.project-chip:hover {
  transform: translateY(-2px);
}

.primary {
  color: var(--white);
  background: var(--orange);
  box-shadow: 0 16px 26px rgba(255, 138, 0, 0.28);
}

.secondary {
  color: var(--blue-deep);
  background: var(--white);
  border: 2px solid rgba(18, 93, 244, 0.26);
}

.hero {
  position: relative;
  isolation: isolate;
  display: grid;
  grid-template-columns: minmax(0, 0.95fr) minmax(360px, 0.78fr);
  align-items: center;
  gap: clamp(28px, 4vw, 70px);
  min-height: calc(100vh - 72px);
  overflow: hidden;
  padding: clamp(44px, 7vw, 92px) clamp(18px, 5vw, 72px) 60px;
}

.hero::before {
  content: "";
  position: absolute;
  inset: auto -8vw -22vh 34vw;
  z-index: -2;
  height: 54vh;
  background: linear-gradient(90deg, rgba(36, 169, 84, 0.22), rgba(18, 93, 244, 0.12));
  clip-path: polygon(4% 36%, 90% 0, 100% 72%, 12% 100%);
}

.hero-copy {
  max-width: 800px;
}

.overline {
  display: inline-block;
  margin: 0 0 14px;
  color: var(--blue-deep);
  font-size: clamp(1rem, 1.8vw, 1.25rem);
  font-weight: 1000;
}

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

h1 {
  max-width: 780px;
  margin-bottom: 18px;
  color: var(--blue);
  font-size: clamp(4.1rem, 10vw, 9rem);
  font-weight: 1000;
  letter-spacing: 0;
  line-height: 0.78;
  text-wrap: balance;
  text-shadow:
    0 5px 0 rgba(255, 255, 255, 0.9),
    0 14px 24px rgba(18, 93, 244, 0.16);
}

h1 span {
  display: block;
}

h1 span:last-child {
  color: var(--purple);
}

.hero-subtitle {
  max-width: 690px;
  margin-bottom: 26px;
  color: #182b5e;
  font-size: clamp(1.18rem, 2vw, 1.55rem);
  font-weight: 760;
  line-height: 1.35;
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-bottom: 34px;
}

.quick-facts {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 12px;
  max-width: 610px;
  margin: 0;
}

.quick-facts div {
  min-width: 0;
  padding: 14px 16px;
  background: rgba(255, 255, 255, 0.88);
  border: 2px solid rgba(18, 93, 244, 0.16);
  border-radius: var(--radius);
  box-shadow: 0 10px 22px rgba(9, 37, 91, 0.08);
}

.quick-facts dt {
  color: var(--muted);
  font-size: 0.8rem;
  font-weight: 900;
  text-transform: uppercase;
}

.quick-facts dd {
  margin: 2px 0 0;
  color: var(--blue-deep);
  font-size: clamp(1.1rem, 2vw, 1.35rem);
  font-weight: 1000;
}

.hero-media {
  position: relative;
  justify-self: center;
  width: min(100%, 430px);
  transform: rotate(2deg);
  animation: float-poster 6s ease-in-out infinite;
}

.hero-media::before {
  content: "";
  position: absolute;
  inset: 8% -8% -7% 11%;
  z-index: -1;
  background: linear-gradient(135deg, rgba(255, 212, 61, 0.95), rgba(36, 169, 84, 0.7));
  border-radius: 26px;
  transform: rotate(-6deg);
}

.hero-media img {
  width: 100%;
  height: auto;
  border: 8px solid var(--white);
  border-radius: 20px;
  box-shadow: var(--shadow);
}

.hero-art {
  position: absolute;
  inset: 0;
  z-index: -1;
  pointer-events: none;
}

.spark {
  position: absolute;
  width: 42px;
  aspect-ratio: 1;
}

.spark::before,
.spark::after {
  content: "";
  position: absolute;
  inset: 0;
  margin: auto;
  background: var(--yellow);
}

.spark::before {
  width: 100%;
  height: 24%;
  border-radius: 999px;
}

.spark::after {
  width: 24%;
  height: 100%;
  border-radius: 999px;
}

.spark-one {
  top: 12%;
  left: 3.5%;
  transform: rotate(20deg);
}

.spark-two {
  top: 16%;
  right: 38%;
  width: 32px;
  transform: rotate(45deg);
}

.spark-two::before,
.spark-two::after {
  background: var(--purple);
}

.zigzag {
  position: absolute;
  right: 6%;
  bottom: 11%;
  width: 92px;
  height: 20px;
  background:
    linear-gradient(135deg, transparent 35%, var(--green) 35% 52%, transparent 52%) 0 0 / 24px 20px;
  transform: rotate(8deg);
}

section:not(.hero) {
  scroll-margin-top: 86px;
  padding: clamp(64px, 8vw, 110px) clamp(18px, 5vw, 72px);
}

.section-copy {
  max-width: 760px;
  margin-bottom: 30px;
}

.section-copy h2,
.about-copy h2,
.details-panel h2,
.reserve-copy h2 {
  margin-bottom: 12px;
  color: var(--ink);
  font-size: clamp(2.2rem, 5vw, 4.6rem);
  font-weight: 1000;
  line-height: 0.95;
  text-wrap: balance;
}

.section-copy p,
.about-copy p,
.details-panel p,
.reserve-copy p {
  max-width: 680px;
  color: var(--muted);
  font-size: clamp(1rem, 1.6vw, 1.2rem);
  font-weight: 700;
}

.build-lab {
  background: linear-gradient(180deg, rgba(238, 245, 255, 0.72), rgba(237, 251, 234, 0.88));
}

.lab-grid {
  display: grid;
  grid-template-columns: minmax(260px, 0.8fr) minmax(320px, 1.2fr);
  gap: 22px;
  align-items: stretch;
}

.project-picker {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 12px;
}

.project-chip {
  display: grid;
  grid-template-columns: 42px 1fr;
  align-items: center;
  gap: 12px;
  min-height: 76px;
  padding: 14px;
  color: var(--ink);
  text-align: left;
  background: var(--white);
  border: 2px solid rgba(18, 93, 244, 0.15);
  border-radius: var(--radius);
  box-shadow: 0 12px 24px rgba(9, 37, 91, 0.08);
  cursor: pointer;
  font-size: clamp(0.98rem, 1.5vw, 1.15rem);
  font-weight: 950;
  transition:
    border-color 180ms ease,
    box-shadow 180ms ease,
    transform 180ms ease;
}

.project-chip.active {
  color: var(--white);
  background: linear-gradient(135deg, var(--blue), var(--purple));
  border-color: transparent;
  box-shadow: 0 18px 34px rgba(18, 93, 244, 0.26);
}

.chip-icon {
  display: grid;
  width: 42px;
  aspect-ratio: 1;
  place-items: center;
  background: var(--soft-blue);
  border-radius: 50%;
}

.project-chip.active .chip-icon {
  background: rgba(255, 255, 255, 0.18);
}

.chip-icon::before {
  content: "";
  width: 22px;
  aspect-ratio: 1;
  background: currentColor;
}

.globe::before {
  border: 3px solid currentColor;
  border-radius: 50%;
  background:
    linear-gradient(currentColor, currentColor) 50% 0 / 3px 100% no-repeat,
    linear-gradient(currentColor, currentColor) 0 50% / 100% 3px no-repeat;
}

.phone::before {
  width: 16px;
  border: 3px solid currentColor;
  border-radius: 5px;
  background: transparent;
}

.game::before {
  width: 25px;
  height: 17px;
  border: 3px solid currentColor;
  border-radius: 8px;
  background: transparent;
}

.bot::before {
  border-radius: 6px;
  background:
    radial-gradient(circle at 35% 45%, currentColor 0 2px, transparent 2.5px),
    radial-gradient(circle at 65% 45%, currentColor 0 2px, transparent 2.5px);
  border: 3px solid currentColor;
}

.heart::before {
  clip-path: polygon(50% 88%, 12% 50%, 10% 28%, 23% 12%, 43% 18%, 50% 30%, 57% 18%, 77% 12%, 90% 28%, 88% 50%);
}

.star::before {
  clip-path: polygon(50% 0, 61% 35%, 98% 35%, 68% 56%, 80% 92%, 50% 70%, 20% 92%, 32% 56%, 2% 35%, 39% 35%);
}

.idea-console {
  overflow: hidden;
  min-height: 390px;
  color: var(--white);
  background:
    radial-gradient(circle at 80% 12%, rgba(255, 212, 61, 0.24), transparent 28%),
    linear-gradient(145deg, #061a4d, #102f91 60%, #681eb5);
  border: 2px solid rgba(255, 255, 255, 0.48);
  border-radius: var(--radius);
  box-shadow: var(--shadow);
}

.console-top {
  display: flex;
  gap: 8px;
  padding: 16px;
  border-bottom: 1px solid rgba(255, 255, 255, 0.16);
}

.console-top span {
  width: 12px;
  aspect-ratio: 1;
  background: var(--orange);
  border-radius: 50%;
}

.console-top span:nth-child(2) {
  background: var(--yellow);
}

.console-top span:nth-child(3) {
  background: var(--green);
}

.console-body {
  position: relative;
  display: grid;
  align-content: center;
  min-height: 340px;
  padding: clamp(26px, 5vw, 54px);
}

.console-body::after {
  content: "</>";
  position: absolute;
  right: 26px;
  bottom: 16px;
  color: rgba(255, 255, 255, 0.12);
  font-size: clamp(4rem, 14vw, 11rem);
  font-weight: 1000;
  line-height: 1;
}

.console-label {
  position: relative;
  z-index: 1;
  width: max-content;
  margin-bottom: 14px;
  padding: 7px 11px;
  color: var(--lime);
  font-size: 0.85rem;
  font-weight: 1000;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  border: 1px solid rgba(215, 255, 104, 0.45);
  border-radius: 999px;
}

.idea-console h3 {
  position: relative;
  z-index: 1;
  max-width: 760px;
  margin-bottom: 14px;
  font-size: clamp(2rem, 4.8vw, 4.7rem);
  font-weight: 1000;
  line-height: 0.95;
  text-wrap: balance;
}

.idea-console p:not(.console-label) {
  position: relative;
  z-index: 1;
  max-width: 640px;
  color: rgba(255, 255, 255, 0.84);
  font-size: clamp(1rem, 1.7vw, 1.2rem);
  font-weight: 700;
}

.skill-bars {
  position: relative;
  z-index: 1;
  display: grid;
  gap: 10px;
  max-width: 520px;
  margin-top: 26px;
}

.skill-bars span {
  display: grid;
  grid-template-columns: 82px 1fr;
  align-items: center;
  gap: 12px;
  color: rgba(255, 255, 255, 0.88);
  font-size: 0.9rem;
  font-weight: 900;
}

.skill-bars span::after {
  content: "";
  height: 10px;
  background:
    linear-gradient(90deg, var(--lime) var(--level), rgba(255, 255, 255, 0.18) var(--level));
  border-radius: 999px;
}

.learn-section {
  background: #ffffff;
}

.learn-track {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 16px;
}

.learn-track article {
  position: relative;
  overflow: hidden;
  min-height: 300px;
  padding: 22px;
  background: var(--white);
  border: 2px solid rgba(18, 93, 244, 0.16);
  border-radius: var(--radius);
  box-shadow: 0 14px 28px rgba(9, 37, 91, 0.08);
}

.learn-track article::before {
  content: "";
  position: absolute;
  inset: 0 0 auto;
  height: 7px;
  background: linear-gradient(90deg, var(--blue), var(--green), var(--orange));
}

.number {
  display: inline-flex;
  margin-bottom: 42px;
  color: rgba(18, 93, 244, 0.2);
  font-size: 4.5rem;
  font-weight: 1000;
  line-height: 0.8;
}

.learn-track h3 {
  margin-bottom: 12px;
  color: var(--ink);
  font-size: clamp(1.25rem, 2vw, 1.6rem);
  font-weight: 1000;
  line-height: 1.05;
}

.learn-track p {
  color: var(--muted);
  font-weight: 720;
}

.about-section {
  display: grid;
  grid-template-columns: minmax(260px, 0.68fr) minmax(360px, 1fr);
  gap: clamp(26px, 5vw, 72px);
  align-items: center;
  background:
    radial-gradient(circle at 8% 18%, rgba(255, 212, 61, 0.2), transparent 24%),
    linear-gradient(180deg, #ffffff, rgba(238, 245, 255, 0.8));
}

.about-photo {
  position: relative;
  justify-self: center;
  width: min(100%, 420px);
}

.about-photo::before {
  content: "";
  position: absolute;
  inset: 11% -7% -5% 8%;
  z-index: 0;
  background: linear-gradient(145deg, var(--purple), var(--blue));
  border-radius: 28px;
  transform: rotate(-4deg);
}

.about-photo::after {
  content: "";
  position: absolute;
  right: -24px;
  top: 12%;
  width: 54px;
  aspect-ratio: 1;
  background: var(--yellow);
  clip-path: polygon(50% 0, 61% 36%, 100% 50%, 61% 64%, 50% 100%, 39% 64%, 0 50%, 39% 36%);
}

.about-photo img {
  position: relative;
  z-index: 1;
  width: 100%;
  max-height: 620px;
  object-fit: contain;
  object-position: center bottom;
  filter: drop-shadow(0 20px 32px rgba(9, 37, 91, 0.22));
}

.about-copy {
  max-width: 760px;
}

.about-label {
  display: inline-flex;
  width: max-content;
  margin-bottom: 14px;
  padding: 8px 12px;
  color: var(--blue-deep);
  background: var(--soft-blue);
  border: 1px solid rgba(18, 93, 244, 0.2);
  border-radius: 999px;
  font-size: 0.86rem;
  font-weight: 1000;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.about-copy p:not(.about-label) {
  margin-bottom: 18px;
}

.about-stats {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 12px;
  margin-top: 28px;
}

.about-stats div {
  min-width: 0;
  padding: 16px;
  background: var(--white);
  border: 2px solid rgba(18, 93, 244, 0.16);
  border-radius: var(--radius);
  box-shadow: 0 14px 28px rgba(9, 37, 91, 0.08);
}

.about-stats strong {
  display: block;
  color: var(--purple);
  font-size: clamp(1.35rem, 3vw, 2rem);
  font-weight: 1000;
  line-height: 1;
}

.about-stats span {
  display: block;
  margin-top: 8px;
  color: var(--muted);
  font-size: 0.92rem;
  font-weight: 850;
  line-height: 1.25;
}

.details-section {
  background: linear-gradient(180deg, #ffffff, var(--soft-blue));
}

.details-panel {
  display: grid;
  grid-template-columns: minmax(260px, 0.7fr) minmax(320px, 1fr);
  gap: 26px;
  max-width: 1180px;
  margin-inline: auto;
  padding: clamp(24px, 4vw, 46px);
  background: var(--white);
  border: 2px solid rgba(122, 49, 216, 0.18);
  border-radius: var(--radius);
  box-shadow: var(--shadow);
}

.details-list {
  display: grid;
  gap: 12px;
  margin: 0;
}

.details-list div {
  display: grid;
  grid-template-columns: minmax(100px, 0.42fr) 1fr;
  gap: 16px;
  align-items: baseline;
  padding: 13px 0;
  border-bottom: 2px dotted rgba(122, 49, 216, 0.28);
}

.details-list div:last-child {
  border-bottom: 0;
}

.details-list dt {
  color: var(--purple);
  font-size: 0.86rem;
  font-weight: 1000;
  text-transform: uppercase;
}

.details-list dd {
  margin: 0;
  color: var(--ink);
  font-size: clamp(1rem, 1.8vw, 1.24rem);
  font-weight: 850;
}

.reserve-section {
  display: grid;
  grid-template-columns: minmax(280px, 0.8fr) minmax(320px, 1fr);
  gap: 24px;
  align-items: start;
  color: var(--white);
  background:
    radial-gradient(circle at 90% 22%, rgba(255, 212, 61, 0.22), transparent 30%),
    linear-gradient(145deg, #052c82, #0d54e8 52%, #24a954);
}

.reserve-copy h2,
.reserve-copy p {
  color: var(--white);
}

.reserve-copy p {
  color: rgba(255, 255, 255, 0.84);
}

.registration-note {
  display: inline-flex;
  width: max-content;
  max-width: 100%;
  margin: 8px 0 0;
  padding: 10px 13px;
  color: var(--lime);
  background: rgba(255, 255, 255, 0.12);
  border: 1px solid rgba(215, 255, 104, 0.36);
  border-radius: var(--radius);
  font-weight: 1000;
}

.reserve-form {
  display: grid;
  gap: 14px;
  padding: clamp(18px, 3vw, 28px);
  background: rgba(255, 255, 255, 0.12);
  border: 1px solid rgba(255, 255, 255, 0.32);
  border-radius: var(--radius);
  box-shadow: 0 18px 36px rgba(0, 0, 0, 0.16);
  backdrop-filter: blur(14px);
}

.reserve-form label {
  display: grid;
  gap: 7px;
  color: rgba(255, 255, 255, 0.9);
  font-size: 0.95rem;
  font-weight: 900;
}

.reserve-form input,
.reserve-form textarea {
  width: 100%;
  color: var(--ink);
  background: var(--white);
  border: 2px solid transparent;
  border-radius: var(--radius);
  outline: none;
  padding: 13px 14px;
  font-size: 1rem;
  font-weight: 700;
  resize: vertical;
}

.reserve-form input:focus,
.reserve-form textarea:focus {
  border-color: var(--yellow);
  box-shadow: 0 0 0 4px rgba(255, 212, 61, 0.2);
}

.form-button {
  justify-self: start;
  margin-top: 6px;
}

.form-button:disabled {
  cursor: wait;
  opacity: 0.72;
  transform: none;
}

.form-trap {
  position: absolute;
  left: -10000px;
  width: 1px;
  height: 1px;
  overflow: hidden;
}

.form-status {
  min-height: 1.5em;
  margin: 0;
  color: rgba(255, 255, 255, 0.9);
  font-size: 0.95rem;
  font-weight: 850;
}

.form-status[data-state="success"] {
  color: var(--lime);
}

.form-status[data-state="error"] {
  color: #ffe1e1;
}

.site-footer {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 1px;
  background: rgba(18, 93, 244, 0.2);
}

.site-footer span {
  display: grid;
  min-height: 72px;
  place-items: center;
  padding: 12px;
  color: var(--blue-deep);
  background: var(--white);
  font-size: clamp(0.95rem, 1.5vw, 1.12rem);
  font-weight: 1000;
  text-align: center;
}

@keyframes float-poster {
  0%,
  100% {
    transform: rotate(2deg) translateY(0);
  }
  50% {
    transform: rotate(-1deg) translateY(-10px);
  }
}

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

@media (max-width: 980px) {
  .site-header {
    grid-template-columns: auto auto;
  }

  .nav-links {
    display: none;
  }

  .hero,
  .lab-grid,
  .about-section,
  .reserve-section {
    grid-template-columns: 1fr;
  }

  .hero {
    min-height: auto;
    padding-top: 54px;
  }

  .hero-media {
    width: min(86vw, 440px);
  }

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

  .about-photo {
    width: min(80vw, 390px);
  }

  .details-panel {
    grid-template-columns: 1fr;
  }

}

@media (max-width: 640px) {
  .site-header {
    grid-template-columns: minmax(0, 1fr) auto;
    gap: 12px;
    min-height: 66px;
  }

  .brand {
    min-width: 0;
  }

  .brand strong,
  .brand em {
    font-size: 0.9rem;
  }

  .header-cta {
    gap: 6px;
    width: 42px;
    min-height: 42px;
    padding: 0;
    overflow: hidden;
    font-size: 0;
  }

  .header-cta svg {
    width: 17px;
    height: 17px;
  }

  h1 {
    font-size: clamp(2.35rem, 14vw, 3.6rem);
  }

  .spark-two {
    display: none;
  }

  .quick-facts,
  .project-picker,
  .learn-track,
  .about-stats,
  .site-footer {
    grid-template-columns: 1fr;
  }

  .about-photo {
    width: min(88vw, 340px);
  }

  .project-chip {
    min-height: 66px;
  }

  .details-list div {
    grid-template-columns: 1fr;
    gap: 4px;
  }

}
