/* -------------------- RESET -------------------- */
*, *::before, *::after {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

img {
  max-width: 100%;
}

/* -------------------- TOKENS -------------------- */
:root {
  --color-bg: #131318;
  --color-bg-secondary: #1A1A20;
  --color-accent: #F5F3EE;
  --color-text-secondary: #A0A0A8;
  --color-text-muted: #6B6B75;
  --color-text-tertiary: #55555E;
  --color-border: #2A2A32;
  --font: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
  --section-spacing: 120px;
}

/* -------------------- BASE -------------------- */
html {
  font-size: 16px;
}

body {
  font-family: var(--font);
  background: var(--color-bg);
  color: var(--color-accent);
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  overflow-x: hidden;
}

/* -------------------- SVG SYMBOLS (hidden) -------------------- */
.svg-defs {
  position: absolute;
  width: 0;
  height: 0;
  overflow: hidden;
}

/* -------------------- HERO -------------------- */
.hero {
  min-height: 100vh;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  padding: 48px 24px;
  position: relative;
}

.hero__mark {
  width: min(480px, 75vw);
  height: auto;
  color: var(--color-accent);
}

.hero__tagline {
  margin-top: 40px;
  font-size: clamp(15px, 2vw, 18px);
  font-weight: 400;
  color: var(--color-text-secondary);
  letter-spacing: 0.04em;
}

.hero__scroll {
  position: absolute;
  bottom: 48px;
  display: flex;
  flex-direction: column;
  align-items: center;
}

.hero__scroll-line {
  width: 1px;
  height: 56px;
  background: linear-gradient(to bottom, var(--color-text-muted), transparent);
  animation: scroll-pulse 2.5s ease-in-out infinite;
}

@keyframes scroll-pulse {
  0%, 100% { opacity: 0.2; }
  50% { opacity: 0.8; }
}

/* -------------------- SLOGAN -------------------- */
.slogan {
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 200px 24px;
}

.slogan__text {
  font-size: clamp(48px, 10vw, 120px);
  font-weight: 700;
  letter-spacing: -0.04em;
  line-height: 1.0;
  text-align: center;
  opacity: 0;
  transform: scale(0.2);
  filter: blur(20px);
}

.slogan__text.is-visible {
  animation: slogan-fly-in 1.4s cubic-bezier(0.16, 1, 0.3, 1) both;
}

@keyframes slogan-fly-in {
  from {
    opacity: 0;
    transform: scale(0.2);
    filter: blur(20px);
  }
  to {
    opacity: 1;
    transform: scale(1);
    filter: blur(0);
  }
}


/* -------------------- WATERMARK -------------------- */
.watermark {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  width: 70vw;
  height: auto;
  opacity: 0.025;
  pointer-events: none;
  z-index: 0;
  fill: var(--color-accent);
}

.watermark--right {
  right: -15vw;
}

.watermark--left {
  left: -15vw;
}

/* -------------------- OUR PALETTE -------------------- */
.palette {
  padding: var(--section-spacing) 0;
  position: relative;
  overflow: hidden;
}

.palette--dark {
  background: var(--color-bg);
}

.palette--light {
  background: #F5F3EE;
}

.palette__inner {
  padding: 0 24px 0 48px;
  position: relative;
  z-index: 1;
  margin-bottom: 80px;
}

.palette__philosophy {
  font-size: clamp(32px, 6vw, 56px);
  font-weight: 700;
  line-height: 1.1;
  color: var(--color-accent);
  letter-spacing: -0.04em;
}

/* --- Cascade Bars --- */
.palette__bars {
  display: flex;
  flex-direction: column;
  position: relative;
  z-index: 1;
}

.palette__bar {
  display: flex;
  align-items: center;
  position: relative;
  margin-top: -32px;
}

.palette__bar:first-child {
  margin-top: 0;
}

.palette__bar--1 { z-index: 3; }
.palette__bar--2 { z-index: 2; }
.palette__bar--3 { z-index: 1; }

.palette__bars--inverted .palette__bar--3 { z-index: 1; }
.palette__bars--inverted .palette__bar--2 { z-index: 2; }
.palette__bars--inverted .palette__bar--1 { z-index: 3; }

.palette__bars--right .palette__bar {
  justify-content: flex-end;
}

/* --- Bar Fill --- */
.palette__bar-fill {
  height: 100px;
  background: var(--bar-color);
  border-radius: 0 9999px 9999px 0;
}

.palette__bars--right .palette__bar-fill {
  border-radius: 9999px 0 0 9999px;
}

.palette__bar--1 .palette__bar-fill {
  width: 0;
  height: 140px;
  transition: width 1.8s cubic-bezier(0.16, 1, 0.3, 1);
}

.palette__bar--2 .palette__bar-fill {
  width: 0;
  transition: width 1.8s cubic-bezier(0.16, 1, 0.3, 1) 0.15s;
}

.palette__bar--3 .palette__bar-fill {
  width: 0;
  transition: width 1.8s cubic-bezier(0.16, 1, 0.3, 1) 0.3s;
}

/* Light: inverted order — shortest first, accent last */
.palette__bars--inverted .palette__bar--3 .palette__bar-fill {
  transition-delay: 0s;
}

.palette__bars--inverted .palette__bar--2 .palette__bar-fill {
  transition-delay: 0.15s;
}

.palette__bars--inverted .palette__bar--1 .palette__bar-fill {
  transition-delay: 0.3s;
}

.palette__bars.is-visible .palette__bar--1 .palette__bar-fill {
  width: 61.8%;
}

.palette__bars.is-visible .palette__bar--2 .palette__bar-fill {
  width: 50%;
}

.palette__bars.is-visible .palette__bar--3 .palette__bar-fill {
  width: 38.2%;
}

/* --- Bar Meta --- */
.palette__bar-meta {
  display: flex;
  align-items: baseline;
  gap: 12px;
  padding-left: 24px;
}

.palette__bars--right .palette__bar-meta {
  padding-left: 0;
  padding-right: 24px;
}

.palette__bar-name {
  font-size: 14px;
  font-weight: 600;
}

.palette--dark .palette__bar-name {
  color: var(--color-accent);
}

.palette--light .palette__bar-name {
  color: #131318;
}

/* --- HEX Copy Button --- */
.palette__swatch-hex {
  font-size: 12px;
  font-weight: 500;
  font-family: 'SF Mono', 'Fira Code', monospace;
  background: none;
  border: none;
  cursor: pointer;
  padding: 0;
  text-align: left;
  position: relative;
}

.palette--dark .palette__swatch-hex {
  color: var(--color-text-muted);
}

.palette--light .palette__swatch-hex {
  color: #7A786F;
}

.palette__swatch-hex:hover {
  color: var(--color-accent);
}

.palette--light .palette__swatch-hex:hover {
  color: #131318;
}

.palette__swatch-hex.copied,
.palette__swatch-hex.copied:hover {
  color: #34D399;
}

.palette__swatch-hex.copied::after {
  content: 'copied';
  position: absolute;
  left: 0;
  font-size: 10px;
  font-weight: 500;
  white-space: nowrap;
}

.palette--dark .palette__swatch-hex.copied::after {
  top: calc(100% + 4px);
}

.palette--light .palette__swatch-hex.copied::after {
  bottom: calc(100% + 4px);
}


/* -------------------- OUR MARK -------------------- */
.mark {
  padding: var(--section-spacing) 0;
}

.mark--light {
  background: #F5F3EE;
}

.mark--dark {
  background: #131318;
  padding-bottom: 160px;
  padding-top: 120px;
}

.mark--dark .mark__variant-name {
  color: #F5F3EE;
}

.mark--dark .mark__variant-dl {
  color: #6B6B75;
}

.mark--dark .mark__variant-dl:hover {
  color: #F5F3EE;
}

.mark--dark .mark__variant {
  flex-direction: row-reverse;
}

.mark--dark .mark__variant-info {
  align-items: flex-end;
}

.mark--dark .mark__variant-downloads {
  justify-content: flex-end;
}

.mark__inner {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 48px;
}

.mark__title {
  font-size: clamp(32px, 6vw, 56px);
  font-weight: 700;
  line-height: 1.1;
  color: #131318;
  letter-spacing: -0.04em;
  margin-bottom: 96px;
}

/* --- Variants --- */
.mark__variants {
  display: flex;
  flex-direction: column;
  gap: 120px;
}

.mark__variant {
  display: flex;
  align-items: center;
  gap: 48px;
}

.mark__variant-img {
  flex-shrink: 0;
}

.mark__variant-img--icon {
  width: 48px;
  height: auto;
}

.mark__variant-img--wordmark {
  width: 280px;
  height: auto;
}

.mark__variant-img--combined {
  width: 360px;
  height: auto;
}

.mark__variant-img--slogan-h {
  width: 420px;
  height: auto;
}

.mark__variant-img--slogan-v {
  width: 320px;
  height: auto;
}

.mark__variant-info {
  display: flex;
  flex-direction: column;
  gap: 6px;
}

.mark__variant-name {
  font-size: 15px;
  font-weight: 600;
  color: #131318;
}

.mark__variant-note {
  font-size: 13px;
  font-weight: 400;
  color: #7A786F;
  line-height: 1.5;
}

.mark__variant-downloads {
  display: flex;
  gap: 16px;
  margin-top: 4px;
}

.mark__variant-dl {
  font-size: 12px;
  font-weight: 500;
  color: #7A786F;
  text-decoration: none;
  font-family: 'SF Mono', 'Fira Code', monospace;
}

.mark__variant-dl:hover {
  color: #131318;
}

/* --- Rules (Clear Space + Min Sizes) --- */
.mark__rules {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 64px;
  margin-top: 160px;
  margin-bottom: 120px;
}

.mark__rule-title {
  font-size: clamp(24px, 4vw, 36px);
  font-weight: 700;
  letter-spacing: -0.03em;
  margin-bottom: 32px;
}

.mark--light .mark__rule-title {
  color: #131318;
}

.mark--dark .mark__rule-title {
  color: #F5F3EE;
}

.mark__rule-desc {
  font-size: 14px;
  font-weight: 400;
  color: #6B6B75;
  margin-bottom: 32px;
}

.mark__clearspace-demos {
  display: flex;
  gap: 48px;
  align-items: center;
  flex-wrap: wrap;
}

.mark__clearspace-img {
  border: 1px dashed #3A3A45;
  border-radius: 8px;
  height: 180px;
  width: auto;
}

/* --- Minimum Sizes --- */
.mark__minsizes-row {
  display: flex;
  gap: 48px;
  align-items: flex-end;
  flex-wrap: wrap;
}

.mark__minsize-item {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 12px;
}

.mark__minsize-value {
  font-size: 12px;
  font-weight: 500;
  color: #7A786F;
  font-family: 'SF Mono', 'Fira Code', monospace;
}

/* --- Don'ts --- */
.mark__donts {
  margin-bottom: 0;
}

.mark__donts-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 32px;
}

.mark__dont-item {
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.mark__dont-display {
  aspect-ratio: 4/3;
  background: #1A1A20;
  border: 1px solid #2A2A32;
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 24px;
  overflow: hidden;
}

.mark__dont-display img {
  width: 50%;
  height: auto;
}

.mark__dont-display--stretch img {
  transform: scaleX(1.6);
}

.mark__dont-display--rotate img {
  transform: rotate(15deg);
}

.mark__dont-display--shadow img {
  filter: drop-shadow(0 0 40px rgba(245, 243, 238, 0.8)) drop-shadow(0 0 80px rgba(245, 243, 238, 0.5)) drop-shadow(0 4px 12px rgba(245, 243, 238, 0.6));
}

.mark__dont-badge {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  font-size: 13px;
  font-weight: 500;
  color: #DC2626;
}

.mark__dont-badge-icon {
  width: 16px;
  height: 16px;
  border-radius: 50%;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-size: 11px;
  font-weight: 700;
  line-height: 1;
  background: rgba(220, 38, 38, 0.1);
  color: #DC2626;
}

/* -------------------- TYPE -------------------- */
.type {
  background: #131318;
  padding: var(--section-spacing) 0;
}

.type__inner {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 48px;
}

.type__header {
  padding: 0 24px 0 48px;
  margin-bottom: 120px;
}

.type__title {
  font-size: clamp(32px, 6vw, 56px);
  font-weight: 700;
  line-height: 1.1;
  color: #F5F3EE;
  letter-spacing: -0.04em;
}

.type__title-sub {
  font-size: clamp(20px, 3vw, 32px);
  font-weight: 500;
  color: #4A4A52;
  margin-left: 32px;
}

/* --- Rules --- */
.type__rules {
  display: flex;
  flex-direction: column;
  gap: 48px;
}

.type__rule-sample {
  font-size: clamp(32px, 5vw, 56px);
  font-weight: 600;
  color: #F5F3EE;
  line-height: 1.1;
  letter-spacing: -0.03em;
}

.type__rule-sample--strike {
  text-decoration: line-through;
  text-decoration-color: rgba(220, 38, 38, 0.4);
  text-decoration-thickness: 2px;
  color: #3A3A45;
}

/* -------------------- CLEAR SPACE -------------------- */
.clearspace {
  background: #F5F3EE;
  padding: 160px 0;
}

.clearspace__inner {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 48px;
}

.clearspace__title {
  font-size: clamp(32px, 6vw, 56px);
  font-weight: 700;
  line-height: 1.1;
  color: #131318;
  letter-spacing: -0.04em;
  margin-bottom: 24px;
}

.clearspace__desc {
  font-size: 16px;
  font-weight: 500;
  color: #7A786F;
  margin-bottom: 80px;
  max-width: 480px;
}

.clearspace__demos {
  display: flex;
  gap: 64px;
  align-items: center;
  flex-wrap: wrap;
}

.clearspace__img {
  border: 1px dashed #C8C5BA;
  border-radius: 8px;
  height: 200px;
  width: auto;
}

/* -------------------- DON'TS -------------------- */
.donts {
  background: #F5F3EE;
  padding: 160px 0 200px;
}

.donts__inner {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 48px;
}

.donts__title {
  font-size: clamp(32px, 6vw, 56px);
  font-weight: 700;
  line-height: 1.1;
  color: #131318;
  letter-spacing: -0.04em;
  margin-bottom: 120px;
}

/* --- Full-width Rows --- */
.donts__row {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 64px 0;
}

.donts__row + .donts__row {
  border-top: 1px solid #C8C5BA;
}

.donts__display {
  display: flex;
  align-items: center;
  justify-content: center;
  flex: 1;
  min-height: 120px;
}

.donts__display img {
  width: 280px;
  height: auto;
  transition: transform 1.2s cubic-bezier(0.16, 1, 0.3, 1), filter 1.2s cubic-bezier(0.16, 1, 0.3, 1);
}

/* --- Distortion: starts clean, animates on scroll --- */
.donts__display--stretch img {
  transform: scaleX(1);
}

.donts__row.is-visible .donts__display--stretch img {
  transform: scaleX(1.6);
}

.donts__display--rotate img {
  transform: rotate(0deg);
}

.donts__row.is-visible .donts__display--rotate img {
  transform: rotate(15deg);
}

.donts__display--shadow img {
  filter: drop-shadow(0 0 0 transparent);
}

.donts__row.is-visible .donts__display--shadow img {
  filter: drop-shadow(0 0 40px rgba(19, 19, 24, 0.6)) drop-shadow(0 0 80px rgba(19, 19, 24, 0.35)) drop-shadow(0 4px 12px rgba(19, 19, 24, 0.5));
}

/* --- Label --- */
.donts__label {
  font-size: clamp(18px, 3vw, 24px);
  font-weight: 600;
  color: #131318;
  white-space: nowrap;
  flex-shrink: 0;
}

/* -------------------- CO-BRANDING -------------------- */
.partners {
  background: #131318;
  padding: 200px 0;
}

.partners__layout {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 48px;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 96px;
  align-items: center;
}

.partners__title {
  font-size: clamp(32px, 6vw, 56px);
  font-weight: 700;
  line-height: 1.1;
  color: #F5F3EE;
  letter-spacing: -0.04em;
  margin-bottom: 24px;
}

.partners__intro {
  font-size: 16px;
  font-weight: 500;
  color: #6B6B75;
  line-height: 1.6;
}

.partners__examples {
  display: flex;
  flex-direction: column;
  gap: 240px;
}

.partners__example {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 12px;
}

.partners__rule {
  font-size: 13px;
  font-weight: 500;
  color: #6B6B75;
  font-family: 'SF Mono', 'Fira Code', monospace;
  line-height: 1.5;
  text-align: center;
  max-width: 320px;
}

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

.partners__lockup .partners__logo:first-child {
  justify-self: end;
}

.partners__lockup .partners__logo:last-child {
  justify-self: start;
}

.partners__lockup--wide {
  gap: 36px;
}

.partners__lockup-label {
  font-size: 14px;
  font-weight: 500;
  color: #6B6B75;
  display: block;
  width: 100%;
}

.partners__logo--icon {
  height: 56px;
  width: auto;
}

.partners__logo--full {
  height: 56px;
  width: auto;
}

.partners__logo--full:first-child {
  height: 64px;
}

.partners__divider {
  width: 1px;
  height: 80px;
  background: rgba(245, 243, 238, 0.2);
}

/* -------------------- DOWNLOADS -------------------- */
.downloads {
  padding: 160px 24px 200px;
  position: relative;
  overflow: hidden;
}

.downloads__inner {
  max-width: 1000px;
  margin: 0 auto;
  position: relative;
  z-index: 1;
}

.downloads__label {
  font-size: 13px;
  font-weight: 500;
  letter-spacing: 0.1em;
  color: var(--color-text-muted);
  margin-bottom: 80px;
  text-transform: lowercase;
}

.downloads__intro {
  font-size: clamp(20px, 3vw, 28px);
  font-weight: 400;
  line-height: 1.5;
  color: var(--color-text-secondary);
  margin-bottom: 120px;
  max-width: 700px;
}

.downloads__grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 32px;
}

.downloads__item {
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.downloads__preview {
  aspect-ratio: 4/3;
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 32px;
}

.downloads__preview--dark {
  background: #131318;
  border: 1px solid var(--color-border);
}

.downloads__preview--light {
  background: #F5F3EE;
}

.downloads__preview img {
  width: 48px;
  height: auto;
}

.downloads__img--wide {
  width: 80% !important;
}

.downloads__name {
  font-size: 15px;
  font-weight: 600;
  color: var(--color-accent);
  margin-top: 8px;
}

.downloads__links {
  display: flex;
  gap: 16px;
}

.downloads__link {
  font-size: 13px;
  font-weight: 500;
  color: var(--color-text-muted);
  text-decoration: none;
}

.downloads__link:hover {
  color: var(--color-accent);
}

/* -------------------- FOOTER -------------------- */
.footer {
  padding: 200px 48px 120px;
  display: flex;
  flex-direction: column;
  align-items: flex-end;
  gap: 32px;
  position: relative;
  background: #131318;
}

.footer__logo {
  width: 32px;
  height: auto;
  fill: #F5F3EE;
  opacity: 0.3;
  position: relative;
  z-index: 1;
}

.footer__statement {
  font-size: 14px;
  font-weight: 500;
  line-height: 1.6;
  color: #6B6B75;
  text-align: right;
  max-width: 300px;
  position: relative;
  z-index: 1;
  font-family: 'SF Mono', 'Fira Code', monospace;
}

.footer__domain {
  font-size: 13px;
  font-weight: 500;
  color: #55555E;
  letter-spacing: 0.05em;
  position: relative;
  z-index: 1;
}

.outro {
  display: block;
  min-height: 500px;
  background: #131318;
}

/* -------------------- RESPONSIVE -------------------- */
@media (max-width: 640px) {
  :root {
    --section-spacing: 80px;
  }

  /* --- Palette --- */
  .palette__inner {
    padding: 0 24px;
    margin-bottom: 48px;
  }

  .palette__bar {
    margin-top: -8px;
  }

  .palette__bar-fill {
    height: 44px;
  }

  .palette__bar--1 .palette__bar-fill {
    height: 56px;
  }

  .palette__bar-meta {
    padding-left: 16px;
    flex-direction: column;
    gap: 2px;
  }

  .palette__bars--right .palette__bar-meta {
    padding-right: 16px;
  }

  .palette__swatch-hex.copied::after {
    display: none;
  }

  /* --- Mark (Logo Downloads) --- */
  .mark__inner {
    padding: 0 24px;
  }

  .mark__title {
    margin-bottom: 56px;
  }

  .mark__variants {
    gap: 64px;
  }

  .mark__variant {
    flex-direction: column;
    align-items: flex-start;
    gap: 16px;
  }

  .mark__variant-img {
    flex-shrink: 1;
    max-width: 100%;
  }

  .mark__variant-img--icon {
    width: 36px;
  }

  .mark__variant-img--combined,
  .mark__variant-img--slogan-h,
  .mark__variant-img--slogan-v {
    width: 80%;
  }

  .mark--dark {
    padding-bottom: 80px;
  }

  .mark--dark .mark__variant {
    flex-direction: column;
    align-items: flex-start;
  }

  .mark--dark .mark__variant-info {
    align-items: flex-start;
  }

  .mark--dark .mark__variant-downloads {
    justify-content: flex-start;
  }

  /* --- Clear Space --- */
  .clearspace {
    padding: 80px 0;
  }

  .clearspace__inner {
    padding: 0 24px;
  }

  .clearspace__demos {
    flex-direction: column;
    gap: 32px;
  }

  .clearspace__img {
    width: 100%;
    height: auto;
  }

  /* --- Don'ts --- */
  .donts {
    padding: 80px 0 120px;
  }

  .donts__inner {
    padding: 0 24px;
  }

  .donts__title {
    margin-bottom: 64px;
  }

  .donts__row {
    flex-direction: column;
    gap: 24px;
    text-align: center;
    padding: 40px 0;
  }

  .donts__display img {
    width: 200px;
  }

  /* --- Co-Branding --- */
  .partners {
    padding: 120px 0;
  }

  .partners__layout {
    grid-template-columns: 1fr;
    gap: 48px;
    padding: 0 24px;
  }

  .partners__examples {
    gap: 80px;
  }

  .partners__lockup {
    grid-template-columns: 3fr auto 2fr;
    gap: 12px;
    max-width: 100%;
  }

  .partners__lockup--wide {
    grid-template-columns: 1fr auto 1fr;
    gap: 24px;
  }

  .partners__logo--full {
    height: auto;
    max-height: 36px;
    max-width: 100%;
  }

  .partners__logo--full:first-child {
    height: auto;
    max-height: 42px;
  }

  .partners__logo--icon {
    height: 36px;
  }

  .partners__divider {
    height: 52px;
  }

  /* --- Type --- */
  .type__header {
    padding: 0 24px;
    margin-bottom: 64px;
  }

  .type__inner {
    padding: 0 24px;
  }

  .type__title-sub {
    display: block;
    margin-left: 0;
    margin-top: 8px;
  }

  .type__rules {
    gap: 32px;
  }

  /* --- Footer --- */
  .footer {
    padding: 123px 24px 80px;
  }

  .slogan {
    padding: 120px 24px;
  }

  .outro {
    min-height: 120px;
  }

  .downloads__grid {
    grid-template-columns: 1fr;
    gap: 48px;
  }
}
