:root {
  --page-bg: #f4f4f4;
  --card-bg: #ffffff;
  --ink: #020202;
  --muted: #515151;
  --soft-muted: #8a8a8a;
  --violet: #8e26ff;
  --magenta: #fc0185;
  --mint: #6e7cff;
  --vista: #ef1193;
  --studio: #a22fff;
  --radius-large: 26px;
  --radius-card: 24px;
  --shadow-soft: 0 28px 70px rgba(11, 11, 16, 0.035);
}

* {
  box-sizing: border-box;
}

html {
  background: #ffffff;
  color: var(--ink);
  font-family: Montserrat, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  scroll-behavior: smooth;
}

body {
  margin: 0;
  min-width: 320px;
  background: #ffffff;
  text-rendering: geometricPrecision;
  -webkit-font-smoothing: antialiased;
}

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

.page-shell {
  width: min(100% - 40px, 1220px);
  margin: 34px auto;
  padding: 38px min(7vw, 86px) 40px;
  overflow: hidden;
  background: var(--page-bg);
  border-radius: var(--radius-large);
}

.hero {
  display: grid;
  justify-items: center;
  padding: 4px 0 56px;
  text-align: center;
}

.brand-mark {
  width: 202px;
  height: auto;
  margin-bottom: 24px;
}

h1,
h2,
p {
  margin: 0;
}

.hero h1 {
  max-width: 870px;
  font-size: 48px;
  line-height: 48px;
  letter-spacing: 0;
  font-weight: 800;
}

.hero h1 span,
.hero h1 strong {
  display: block;
  font-size: 48px;
  line-height: 48px;
  font-weight: 800;
  letter-spacing: 0;
}

.hero h1 strong {
  display: inline-block;
  margin-top: 3px;
  margin-bottom: -12px;
  padding-bottom: 12px;
  background: linear-gradient(90deg, var(--violet) 3%, var(--magenta) 96%);
  background-clip: text;
  -webkit-background-clip: text;
  color: transparent;
}

.hero p {
  width: min(100%, 805px);
  margin-top: 28px;
  font-size: 19px;
  line-height: 1.24;
  font-weight: 500;
}

.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border-radius: 999px;
  font-size: 13px;
  font-weight: 800;
  line-height: 1;
  white-space: nowrap;
  transition: transform 180ms ease, box-shadow 180ms ease, background 180ms ease;
}

.button:hover {
  transform: translateY(-1px);
}

.button-primary {
  width: 200px;
  height: 50px;
  padding: 0;
  margin-top: 67px;
  color: #ffffff;
  background: #000000;
  box-shadow: 0 16px 36px rgba(0, 0, 0, 0.12);
}

.button-primary:hover {
  box-shadow: 0 20px 42px rgba(0, 0, 0, 0.17);
}

.button-outline {
  width: 128px;
  height: 32px;
  padding: 0;
  border: 2px solid #000000;
  font-size: 11px;
  background: #ffffff;
}

.button-outline:hover {
  background: #000000;
  color: #ffffff;
}

.product-card {
  display: grid;
  justify-items: center;
  gap: 16px;
  margin: 10px auto 68px;
  padding: 32px 46px 34px;
  background: var(--card-bg);
  border-radius: var(--radius-card);
  box-shadow: var(--shadow-soft);
}

.product-card img {
  display: block;
  width: min(100%, 1000px);
  height: auto;
  margin-top: 2px;
  object-fit: contain;
}

.product-copy {
  display: grid;
  justify-items: center;
  gap: 21px;
  margin-top: -2px;
  text-align: center;
}

.product-copy h2 {
  font-size: 48px;
  line-height: 48px;
  letter-spacing: 0;
  font-weight: 800;
}

.product-card-mint h2 {
  color: var(--mint);
}

.product-card-vista h2 {
  color: var(--vista);
}

.product-card-studio h2 {
  color: var(--studio);
}

.product-copy p {
  color: #000000;
  font-size: 17px;
  line-height: 1.35;
  font-weight: 500;
}

footer {
  padding: 4px 0 0;
  text-align: center;
}

footer p {
  color: var(--soft-muted);
  font-size: 17px;
  font-weight: 500;
}

@media (max-width: 1100px) {
  .hero h1 {
    font-size: 48px;
    line-height: 48px;
  }

  .hero p {
    font-size: 17px;
  }

  .product-copy h2 {
    font-size: 48px;
    line-height: 48px;
  }
}

@media (max-width: 760px) {
  .page-shell {
    width: min(100% - 20px, 1220px);
    margin: 10px auto;
    padding: 26px 16px 32px;
    border-radius: 22px;
  }

  .hero {
    padding-bottom: 40px;
  }

  .brand-mark {
    width: 132px;
    margin-bottom: 20px;
  }

  .hero h1 {
    font-size: 48px;
    line-height: 48px;
  }

  .hero p {
    margin-top: 22px;
    max-width: 32rem;
  }

  .button-primary {
    margin-top: 38px;
  }

  .product-card {
    gap: 10px;
    margin-bottom: 38px;
    padding: 18px 12px 28px;
    border-radius: 18px;
  }

  .product-card img {
    width: min(112%, 720px);
    max-width: none;
  }

  .product-copy {
    gap: 17px;
  }

  .product-copy h2 {
    font-size: 48px;
    line-height: 48px;
  }

  footer p {
    font-size: 14px;
  }
}

@media (max-width: 430px) {
  .hero h1 {
    font-size: 48px;
    line-height: 48px;
  }

  .hero p,
  .product-copy p {
    font-size: 14px;
  }

}
