:root {
  --black: #050008;
  --black-soft: #0c0610;
  --black-card: rgba(15, 6, 23, 0.76);
  --purple: #a535ff;
  --purple-bright: #d178ff;
  --purple-soft: #b98ad4;
  --purple-deep: #3b075f;
  --text: #fffaff;
  --muted: #cdbed7;
  --line: rgba(209, 120, 255, 0.30);
  --line-strong: rgba(209, 120, 255, 0.62);
  --glass: rgba(18, 8, 28, 0.72);
  --shadow: 0 28px 90px rgba(77, 10, 126, 0.34);
  --shadow-soft: 0 18px 55px rgba(0, 0, 0, 0.34);
  --radius-xl: 34px;
  --radius-lg: 26px;
  --radius-md: 18px;
  --shell: min(1180px, calc(100% - 32px));
}

* { box-sizing: border-box; }

html {
  scroll-behavior: smooth;
  scroll-padding-top: 110px;
}

body {
  margin: 0;
  color: var(--text);
  font-family: Inter, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  background:
    radial-gradient(circle at 82% 4%, rgba(150, 41, 245, .27), transparent 31rem),
    radial-gradient(circle at 4% 30%, rgba(85, 10, 138, .34), transparent 29rem),
    radial-gradient(circle at 80% 78%, rgba(115, 21, 182, .16), transparent 28rem),
    linear-gradient(145deg, #040006 0%, #0b0610 42%, #12051c 100%);
  min-height: 100vh;
  overflow-x: hidden;
}

body::selection {
  background: var(--purple);
  color: white;
}

img { max-width: 100%; display: block; }

a { color: inherit; text-decoration: none; }

button, a { -webkit-tap-highlight-color: transparent; }

.skip-link {
  position: fixed;
  left: 16px;
  top: -60px;
  z-index: 1000;
  padding: 12px 16px;
  border-radius: 10px;
  background: white;
  color: black;
  transition: top .2s ease;
}

.skip-link:focus { top: 16px; }

.sr-only {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0,0,0,0);
  white-space: nowrap;
  border: 0;
}

.page-atmosphere {
  position: fixed;
  inset: 0;
  pointer-events: none;
  z-index: -5;
  overflow: hidden;
}

.glow {
  position: absolute;
  border-radius: 999px;
  filter: blur(75px);
}

.glow-one {
  width: 34rem;
  height: 34rem;
  top: 3rem;
  right: -10rem;
  background: rgba(166, 53, 255, .18);
}

.glow-two {
  width: 28rem;
  height: 28rem;
  left: -12rem;
  top: 45%;
  background: rgba(123, 25, 192, .18);
}

.glow-three {
  width: 24rem;
  height: 24rem;
  right: 10%;
  bottom: -8rem;
  background: rgba(209, 120, 255, .11);
}

.grid-noise {
  position: absolute;
  inset: 0;
  opacity: .055;
  background-image:
    linear-gradient(90deg, rgba(255,255,255,.05) 1px, transparent 1px),
    linear-gradient(rgba(255,255,255,.04) 1px, transparent 1px);
  background-size: 58px 58px;
  mask-image: linear-gradient(to bottom, rgba(0,0,0,.9), transparent 88%);
}

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

.site-header {
  position: sticky;
  top: 0;
  z-index: 100;
  width: var(--shell);
  margin: 0 auto;
  padding: 20px 0;
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 22px;
  background: linear-gradient(to bottom, rgba(5,0,8,.92), rgba(5,0,8,.64), transparent);
  backdrop-filter: blur(12px);
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 26px;
  min-width: 0;
}

.brand-monogram,
.footer-monogram {
  font-family: Cinzel, Georgia, serif;
  color: var(--purple-bright);
  text-shadow: 0 0 28px rgba(209, 120, 255, .72);
}

.brand-monogram {
  font-size: 88px;
  line-height: 1;
}

.brand-copy {
  display: grid;
  gap: 3px;
}

.brand-copy strong {
  font-family: Cinzel, Georgia, serif;
  text-transform: uppercase;
  letter-spacing: .14em;
  font-size: 26px;
}

.brand-copy small {
  color: var(--purple-soft);
  text-transform: uppercase;
  letter-spacing: .22em;
  font-size: 15px;
}

nav {
  display: flex;
  gap: 28px;
  align-items: center;
}

nav a {
  position: relative;
  padding: 8px 0;
  color: var(--muted);
  font-size: 11px;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: .16em;
  transition: color .2s ease;
}

nav a::after {
  content: "";
  position: absolute;
  left: 0;
  right: 100%;
  bottom: 2px;
  height: 1px;
  background: var(--purple-bright);
  transition: right .22s ease;
}

nav a:hover,
nav a:focus-visible { color: var(--text); }

nav a:hover::after,
nav a:focus-visible::after { right: 0; }

.nav-toggle {
  display: none;
  border: 1px solid var(--line);
  border-radius: 12px;
  background: rgba(255,255,255,.03);
  width: 45px;
  height: 42px;
  padding: 10px;
}

.nav-toggle span:not(.sr-only) {
  display: block;
  height: 2px;
  margin: 4px 0;
  border-radius: 99px;
  background: white;
}

.hero {
  padding-top: 64px;
  min-height: 700px;
  display: grid;
  grid-template-columns: .95fr 1.05fr;
  gap: 58px;
  align-items: center;
}

.eyebrow {
  margin: 0;
  color: var(--purple-bright);
  text-transform: uppercase;
  letter-spacing: .20em;
  font-size: 11px;
  font-weight: 800;
}

h1, h2, h3, p { overflow-wrap: anywhere; }

h1,
h2 {
  font-family: Cinzel, Georgia, serif;
  margin: 0;
  letter-spacing: -.035em;
}

h1 {
  max-width: 700px;
  margin: 18px 0 22px;
  font-size: clamp(58px, 7vw, 108px);
  line-height: .96;
  background: linear-gradient(180deg, #fff 18%, #f2dfff 54%, #a752df 100%);
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
  text-wrap: balance;
}

.mission-line {
  max-width: 680px;
  margin: 0 0 18px;
  color: #f6dcff;
  font-family: Italiana, Georgia, serif;
  font-size: clamp(24px, 3vw, 34px);
  line-height: 1.25;
}

.hero-intro {
  max-width: 620px;
  margin: 0;
  color: var(--muted);
  font-size: 17px;
  line-height: 1.8;
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
  margin-top: 32px;
}

.btn {
  min-height: 52px;
  padding: 0 24px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border: 1px solid var(--line);
  border-radius: 14px;
  font-size: 11px;
  font-weight: 800;
  letter-spacing: .11em;
  text-transform: uppercase;
  transition: transform .2s ease, box-shadow .2s ease, border-color .2s ease;
}

.btn:hover,
.btn:focus-visible {
  transform: translateY(-3px);
  border-color: var(--line-strong);
  box-shadow: var(--shadow);
}

.btn-primary {
  background: linear-gradient(135deg, #b43cff, #6b179f);
}

.btn-secondary {
  background: rgba(255,255,255,.035);
}

.hero-note {
  margin-top: 28px;
  display: inline-flex;
  align-items: center;
  gap: 10px;
  color: var(--muted);
  font-size: 13px;
}

.butterfly-mark { font-size: 19px; }

.hero-visual {
  position: relative;
  min-width: 0;
}

.hero-image-frame {
  position: relative;
  padding: 10px;
  border: 1px solid var(--line-strong);
  border-radius: 30px;
  background: linear-gradient(135deg, rgba(209,120,255,.13), rgba(255,255,255,.02));
  box-shadow: var(--shadow);
  overflow: hidden;
}

.hero-image-frame::after {
  content: "";
  position: absolute;
  inset: 10px;
  border-radius: 21px;
  box-shadow: inset 0 0 70px rgba(0,0,0,.26);
  pointer-events: none;
}

.hero-image-frame img {
  width: 100%;
  aspect-ratio: 1.91 / 1;
  object-fit: cover;
  border-radius: 21px;
}

.hero-badge {
  position: absolute;
  z-index: 3;
  display: grid;
  gap: 2px;
  min-width: 150px;
  padding: 13px 16px;
  border: 1px solid var(--line);
  border-radius: 16px;
  background: rgba(6, 1, 10, .83);
  box-shadow: var(--shadow-soft);
  backdrop-filter: blur(14px);
}

.hero-badge span {
  color: var(--muted);
  font-size: 9px;
  text-transform: uppercase;
  letter-spacing: .16em;
}

.hero-badge strong {
  font-family: Cinzel, serif;
  color: #f2d9ff;
  font-size: 14px;
}

.badge-top { top: -18px; right: 26px; }
.badge-bottom { bottom: -18px; left: 26px; }

.values-strip {
  margin-top: 58px;
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  border: 1px solid var(--line);
  border-radius: var(--radius-lg);
  background: rgba(9, 2, 14, .69);
  box-shadow: var(--shadow-soft);
  backdrop-filter: blur(15px);
  overflow: hidden;
}

.values-strip article {
  min-height: 118px;
  padding: 24px 22px;
  display: flex;
  gap: 13px;
  align-items: center;
  border-right: 1px solid rgba(209,120,255,.16);
}

.values-strip article:last-child { border-right: 0; }

.value-icon { font-size: 24px; }

.values-strip div { display: grid; gap: 6px; }

.values-strip strong {
  color: var(--purple-bright);
  font-size: 11px;
  text-transform: uppercase;
  letter-spacing: .12em;
}

.values-strip small {
  color: var(--muted);
  line-height: 1.45;
}

.section { margin-top: 118px; }

.section-heading h2,
.about-copy h2,
.promise-copy h2,
.final-cta h2 {
  font-size: clamp(42px, 5.6vw, 72px);
  line-height: 1.03;
}

.section-heading > p:last-child {
  color: var(--muted);
  line-height: 1.75;
}

.centered {
  max-width: 760px;
  margin: 0 auto 40px;
  text-align: center;
}

.centered h2 { margin: 12px 0 18px; }

.centered > p:last-child { margin: 0 auto; }

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

.platform-card {
  min-height: 300px;
  padding: 28px;
  position: relative;
  display: flex;
  flex-direction: column;
  overflow: hidden;
  border: 1px solid var(--line);
  border-radius: var(--radius-lg);
  background:
    radial-gradient(circle at top right, rgba(209,120,255,.20), transparent 44%),
    linear-gradient(145deg, rgba(25,9,36,.86), rgba(5,1,8,.76));
  box-shadow: var(--shadow-soft);
  transition: transform .24s ease, border-color .24s ease, box-shadow .24s ease;
}

.platform-card::before {
  content: "";
  position: absolute;
  inset: 0;
  opacity: .45;
  background: linear-gradient(120deg, rgba(255,255,255,.075), transparent 35%);
}

.platform-card > * { position: relative; }

.platform-card:hover,
.platform-card:focus-visible {
  transform: translateY(-8px);
  border-color: var(--line-strong);
  box-shadow: var(--shadow);
}

.platform-number {
  color: var(--purple-soft);
  font-size: 11px;
  font-weight: 800;
  letter-spacing: .14em;
}

.platform-name {
  margin: 34px 0 20px;
  font-size: clamp(38px, 4vw, 52px);
  font-weight: 900;
  letter-spacing: -.055em;
}

.depop .platform-name { color: #ff5038; }
.vinted .platform-name { color: #39ddd0; }
.poshmark .platform-name { color: white; }

.platform-copy {
  max-width: 290px;
  color: var(--muted);
  line-height: 1.65;
}

.platform-link {
  margin-top: auto;
  padding-top: 28px;
  color: #f4dcff;
  font-size: 11px;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: .11em;
}

.split-heading {
  display: grid;
  grid-template-columns: 1.1fr .9fr;
  gap: 50px;
  align-items: end;
}

.split-heading h2 {
  max-width: 760px;
  margin-top: 12px;
}

.split-heading > p {
  margin: 0;
  max-width: 520px;
}

.finds-grid {
  margin-top: 34px;
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 17px;
}

.finds-grid article {
  min-height: 260px;
  padding: 26px;
  border: 1px solid var(--line);
  border-radius: 22px;
  background: var(--black-card);
  box-shadow: var(--shadow-soft);
}

.finds-grid article > span {
  color: var(--purple-bright);
  font-size: 11px;
  font-weight: 900;
}

.finds-grid h3 {
  margin: 48px 0 14px;
  font-family: Cinzel, serif;
  font-size: 23px;
}

.finds-grid p {
  margin: 0;
  color: var(--muted);
  line-height: 1.65;
}

.about-section {
  padding: 44px;
  display: grid;
  grid-template-columns: .82fr 1.18fr;
  gap: 54px;
  align-items: center;
  border: 1px solid var(--line);
  border-radius: var(--radius-xl);
  background:
    radial-gradient(circle at 18% 50%, rgba(161,55,238,.20), transparent 32%),
    rgba(9,2,14,.72);
  box-shadow: var(--shadow-soft);
}

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

.portrait-placeholder {
  width: min(330px, 90%);
  aspect-ratio: .8;
  padding: 24px;
  display: grid;
  place-items: center;
  align-content: center;
  gap: 18px;
  border: 1px solid var(--line-strong);
  border-radius: 46% 46% 28px 28px;
  background:
    radial-gradient(circle at 50% 28%, rgba(255,255,255,.15), transparent 12%),
    linear-gradient(160deg, rgba(189,111,240,.28), rgba(28,6,43,.82));
  box-shadow: inset 0 0 70px rgba(209,120,255,.22), var(--shadow);
}

.portrait-initial {
  font-family: Italiana, Georgia, serif;
  font-size: 170px;
  line-height: 1;
  color: #ead3f8;
  text-shadow: 0 0 35px rgba(209,120,255,.55);
}

.portrait-caption {
  max-width: 220px;
  color: var(--muted);
  text-align: center;
  font-size: 10px;
  font-weight: 700;
  line-height: 1.5;
  text-transform: uppercase;
  letter-spacing: .16em;
}

.about-spark {
  position: absolute;
  color: var(--purple-bright);
  text-shadow: 0 0 30px rgba(209,120,255,.8);
}

.spark-one { left: 4%; top: 10%; font-size: 48px; }
.spark-two { right: 3%; bottom: 12%; font-size: 34px; }

.about-copy h2 { margin: 12px 0 24px; }

.about-copy p {
  color: var(--muted);
  font-size: 17px;
  line-height: 1.8;
}

.about-copy .about-lede {
  margin-bottom: -8px;
  color: #fff;
  font-family: Italiana, Georgia, serif;
  font-size: 31px;
}

.text-link {
  margin-top: 12px;
  display: inline-flex;
  gap: 8px;
  padding-bottom: 6px;
  border-bottom: 1px solid var(--purple-bright);
  color: #f0d5ff;
  font-size: 11px;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: .11em;
}

.promise-section {
  padding: 54px;
  display: grid;
  grid-template-columns: .35fr 1.65fr;
  gap: 46px;
  align-items: center;
  border: 1px solid var(--line-strong);
  border-radius: var(--radius-xl);
  background:
    radial-gradient(circle at 8% 50%, rgba(183,78,255,.26), transparent 31%),
    radial-gradient(circle at 100% 0%, rgba(209,120,255,.11), transparent 27%),
    linear-gradient(145deg, rgba(19,6,29,.95), rgba(7,1,11,.88));
  box-shadow: var(--shadow);
  overflow: hidden;
}

.promise-mark {
  width: 210px;
  aspect-ratio: 1;
  display: grid;
  place-items: center;
  justify-self: center;
  border: 1px solid var(--line-strong);
  border-radius: 50%;
  background:
    radial-gradient(circle, rgba(199,110,255,.24), rgba(33,7,49,.72) 58%, rgba(0,0,0,.30));
  box-shadow: inset 0 0 55px rgba(209,120,255,.22), 0 0 80px rgba(142,38,207,.28);
}

.promise-mark span {
  font-size: 74px;
  filter: drop-shadow(0 0 22px rgba(209,120,255,.74));
}

.promise-copy h2 { margin: 12px 0 20px; }

.promise-intro {
  max-width: 760px;
  color: #eadcf1;
  font-size: 18px;
  line-height: 1.8;
}

.promise-points {
  margin: 26px 0 22px;
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
}

.promise-points span {
  padding: 10px 13px;
  border: 1px solid rgba(209,120,255,.26);
  border-radius: 999px;
  background: rgba(255,255,255,.025);
  color: var(--muted);
  font-size: 12px;
}

.promise-disclaimer {
  max-width: 850px;
  color: var(--muted);
  line-height: 1.75;
  font-size: 14px;
}

.promise-status {
  margin-top: 24px;
  display: inline-flex;
  align-items: center;
  gap: 10px;
  color: #f0d8ff;
  font-size: 12px;
  font-weight: 700;
  letter-spacing: .04em;
}

.status-dot {
  width: 9px;
  height: 9px;
  border-radius: 50%;
  background: var(--purple-bright);
  box-shadow: 0 0 15px var(--purple-bright);
}

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

.future-grid article {
  min-height: 285px;
  padding: 28px;
  display: flex;
  flex-direction: column;
  border: 1px solid var(--line);
  border-radius: 24px;
  background:
    linear-gradient(145deg, rgba(25,8,36,.79), rgba(7,1,11,.75));
  box-shadow: var(--shadow-soft);
  transition: transform .2s ease, border-color .2s ease;
}

.future-grid article:hover {
  transform: translateY(-5px);
  border-color: var(--line-strong);
}

.future-icon { font-size: 31px; }

.future-grid h3 {
  margin: 34px 0 13px;
  font-family: Cinzel, serif;
  font-size: 23px;
  line-height: 1.25;
}

.future-grid p {
  margin: 0;
  color: var(--muted);
  line-height: 1.65;
}

.coming-label {
  margin-top: auto;
  padding-top: 24px;
  color: var(--purple-bright);
  font-size: 10px;
  font-weight: 900;
  text-transform: uppercase;
  letter-spacing: .18em;
}

.final-cta {
  margin-top: 118px;
  padding: 46px 50px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 44px;
  border: 1px solid var(--line);
  border-radius: var(--radius-xl);
  background:
    radial-gradient(circle at 80% 10%, rgba(199,99,255,.22), transparent 28%),
    rgba(12,3,18,.76);
  box-shadow: var(--shadow-soft);
}

.final-cta h2 {
  max-width: 780px;
  margin: 12px 0 16px;
}

.final-cta p:last-child {
  max-width: 700px;
  margin: 0;
  color: var(--muted);
  line-height: 1.7;
}

.site-footer {
  width: var(--shell);
  margin: 88px auto 28px;
  padding-top: 34px;
  border-top: 1px solid rgba(209,120,255,.22);
}

.footer-brand {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 14px;
}

.footer-monogram { font-size: 44px; }

.footer-brand div {
  display: grid;
  gap: 3px;
}

.footer-brand strong {
  font-family: Cinzel, serif;
  letter-spacing: .10em;
  text-transform: uppercase;
}

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

.footer-message {
  margin: 24px auto 30px;
  color: #ecd9f7;
  font-family: Italiana, Georgia, serif;
  text-align: center;
  font-size: 23px;
}

.footer-bottom {
  padding-top: 18px;
  display: flex;
  justify-content: space-between;
  gap: 20px;
  border-top: 1px solid rgba(209,120,255,.14);
  color: var(--muted);
  font-size: 12px;
}

.footer-bottom a:hover { color: white; }

@media (max-width: 1040px) {
  .hero {
    grid-template-columns: 1fr;
    padding-top: 40px;
  }

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

  .hero-visual {
    margin-top: 16px;
  }

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

  .values-strip article:nth-child(2) { border-right: 0; }
  .values-strip article:nth-child(-n+2) { border-bottom: 1px solid rgba(209,120,255,.16); }

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

  .platform-card:last-child {
    grid-column: 1 / -1;
  }

  .about-section {
    grid-template-columns: .9fr 1.1fr;
    gap: 38px;
  }

  .promise-section {
    grid-template-columns: 1fr;
  }

  .promise-mark {
    justify-self: start;
    width: 160px;
  }

  .final-cta {
    align-items: flex-start;
    flex-direction: column;
  }
}

@media (max-width: 760px) {
  html { scroll-padding-top: 86px; }

  .site-header {
    padding: 14px 0;
    background: rgba(5,0,8,.88);
  }

  .brand { gap: 14px; }
  .brand-monogram { font-size: 52px; }
  .brand-copy strong { font-size: 15px; }
  .brand-copy small { font-size: 10px; }

  .nav-toggle {
    display: block;
    flex: 0 0 auto;
  }

  nav {
    display: none;
    position: absolute;
    top: 70px;
    left: 0;
    right: 0;
    padding: 18px;
    flex-direction: column;
    align-items: stretch;
    gap: 4px;
    border: 1px solid var(--line);
    border-radius: 18px;
    background: rgba(8,1,12,.97);
    box-shadow: var(--shadow);
  }

  nav.is-open { display: flex; }

  nav a {
    padding: 13px 10px;
  }

  h1 { font-size: clamp(48px, 14vw, 72px); }
  .mission-line { font-size: 26px; }
  .hero { min-height: auto; gap: 30px; }

  .hero-actions {
    flex-direction: column;
  }

  .btn { width: 100%; }

  .badge-top {
    top: -14px;
    right: 12px;
  }

  .badge-bottom {
    bottom: -14px;
    left: 12px;
  }

  .hero-badge {
    min-width: 130px;
    padding: 10px 12px;
  }

  .values-strip,
  .platform-grid,
  .finds-grid,
  .future-grid,
  .split-heading,
  .about-section {
    grid-template-columns: 1fr;
  }

  .values-strip article {
    border-right: 0;
    border-bottom: 1px solid rgba(209,120,255,.16);
  }

  .values-strip article:last-child { border-bottom: 0; }

  .platform-card:last-child { grid-column: auto; }

  .section { margin-top: 84px; }

  .split-heading {
    gap: 20px;
    align-items: start;
  }

  .about-section,
  .promise-section {
    padding: 28px;
  }

  .about-art {
    min-height: 330px;
  }

  .portrait-placeholder {
    max-width: 270px;
  }

  .portrait-initial { font-size: 130px; }

  .promise-mark {
    width: 130px;
  }

  .promise-mark span { font-size: 56px; }

  .final-cta {
    margin-top: 84px;
    padding: 32px 26px;
  }

  .footer-bottom {
    flex-direction: column;
    align-items: center;
    text-align: center;
  }
}

@media (max-width: 480px) {
  :root { --shell: min(100% - 24px, 1180px); }

  .hero {
    padding-top: 28px;
  }

  .hero-intro {
    font-size: 16px;
  }

  .hero-note {
    align-items: flex-start;
  }

  .hero-image-frame {
    padding: 7px;
    border-radius: 22px;
  }

  .hero-image-frame img,
  .hero-image-frame::after {
    border-radius: 15px;
  }

  .badge-top { display: none; }

  .badge-bottom {
    position: relative;
    left: auto;
    bottom: auto;
    margin: 10px auto 0;
    width: fit-content;
  }

  .values-strip article {
    min-height: 100px;
    padding: 20px;
  }

  .section-heading h2,
  .about-copy h2,
  .promise-copy h2,
  .final-cta h2 {
    font-size: 38px;
  }

  .platform-card,
  .finds-grid article,
  .future-grid article {
    min-height: 240px;
  }

  .about-section {
    padding: 22px;
  }

  .promise-section {
    padding: 24px 22px;
  }
}
