:root {
  color-scheme: dark;
  --ink: #141414;
  --paper: #f7f7f7;
  --white: #f8f8f8;
  --muted: #a5a5a5;
  --line: rgba(255, 255, 255, 0.12);
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  min-width: 320px;
  background: var(--paper);
  color: var(--white);
  font-family: "Inter", -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  font-weight: 300;
  text-rendering: optimizeLegibility;
  -webkit-font-smoothing: antialiased;
}

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

.hero {
  position: relative;
  min-height: 830px;
  overflow: hidden;
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.045) 0, rgba(255, 255, 255, 0) 32%),
    var(--ink);
}

.site-header {
  position: relative;
  z-index: 5;
  display: flex;
  align-items: center;
  justify-content: space-between;
  width: min(1440px, calc(100% - 96px));
  min-height: 88px;
  margin: 0 auto;
  border-bottom: 1px solid var(--line);
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 12px;
}

.brand img {
  display: block;
  width: 42px;
  height: 42px;
  border-radius: 10px;
  object-fit: cover;
}

.brand span {
  font-size: 20px;
  font-weight: 700;
  letter-spacing: -0.65px;
}

.sign-in {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 11px 0 9px;
  border-bottom: 1px solid rgba(255, 255, 255, 0.52);
  color: #ededed;
  font-size: 13px;
  font-weight: 300;
  letter-spacing: -0.1px;
  transition: border-color 180ms ease, color 180ms ease;
}

.sign-in:hover,
.sign-in:focus-visible {
  color: #ffffff;
  border-color: #ffffff;
}

.hero-inner {
  width: min(1440px, calc(100% - 96px));
  margin: 0 auto;
  padding: 28px 0 82px;
}

.art-row {
  position: relative;
  display: grid;
  grid-template-columns: 1.08fr 0.62fr 1.18fr 1.02fr 0.95fr;
  align-items: center;
  gap: clamp(8px, 1.45vw, 24px);
  width: 100%;
  height: clamp(285px, 27vw, 390px);
  padding: 0 clamp(2px, 2vw, 28px);
}

.art-row::before {
  content: "";
  position: absolute;
  inset: 9% 2% 0;
  background: radial-gradient(ellipse at center, rgba(255, 255, 255, 0.065), transparent 67%);
  filter: blur(24px);
  pointer-events: none;
}

.art-cell {
  position: relative;
  display: grid;
  place-items: center;
  height: 100%;
  isolation: isolate;
}

.art-cell::after {
  content: "";
  position: absolute;
  bottom: 5%;
  left: 50%;
  z-index: -2;
  width: 66%;
  height: 12%;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.075);
  filter: blur(17px);
  transform: translateX(-50%);
}

.art-glow {
  position: absolute;
  z-index: -1;
  width: 82%;
  aspect-ratio: 1;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(255, 255, 255, 0.2) 0, rgba(255, 255, 255, 0.075) 32%, rgba(255, 255, 255, 0) 70%);
  filter: blur(12px);
}

.art-cell img {
  display: block;
  max-width: 100%;
  max-height: 100%;
  object-fit: contain;
  filter: drop-shadow(0 0 10px rgba(255, 255, 255, 0.2)) drop-shadow(0 18px 28px rgba(0, 0, 0, 0.4));
  transform-origin: center;
}

.art-butterfly img {
  width: min(100%, 218px);
  transform: rotate(-8deg) translateY(3%);
}

.art-leaf img {
  width: min(100%, 118px);
  height: 88%;
  transform: rotate(7deg) translateY(1%);
}

.art-bird img {
  width: min(100%, 252px);
  transform: rotate(-3deg) translateY(-1%);
}

.art-moon img {
  width: min(100%, 260px);
  transform: rotate(8deg) translateY(2%);
}

.art-flower img {
  width: min(100%, 222px);
  transform: rotate(-9deg) translateY(4%);
}

.hero-copy {
  max-width: 840px;
  margin-top: 26px;
}

.eyebrow {
  margin: 0 0 20px;
  color: #989898;
  font-size: 11px;
  font-weight: 300;
  letter-spacing: 0.16em;
  line-height: 1.5;
  text-transform: uppercase;
}

h1 {
  max-width: 820px;
  margin: 0;
  color: #f3f3f3;
  font-size: clamp(42px, 5.15vw, 76px);
  font-weight: 300;
  letter-spacing: -0.065em;
  line-height: 0.99;
}

.hero-text {
  max-width: 670px;
  margin: 26px 0 0;
  color: var(--muted);
  font-size: clamp(14px, 1.05vw, 16px);
  font-weight: 300;
  letter-spacing: -0.025em;
  line-height: 1.75;
}

.hero-actions {
  display: flex;
  align-items: center;
  gap: 30px;
  margin-top: 30px;
}

.primary-action {
  display: inline-flex;
  align-items: center;
  justify-content: space-between;
  gap: 34px;
  min-width: 190px;
  padding: 15px 18px;
  background: #f3f3f3;
  color: var(--ink);
  border: 1px solid #f3f3f3;
  font-size: 13px;
  font-weight: 400;
  transition: background 180ms ease, color 180ms ease;
}

.primary-action:hover,
.primary-action:focus-visible {
  background: transparent;
  color: #ffffff;
}

.text-action {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  padding: 12px 0 8px;
  border-bottom: 1px solid rgba(255, 255, 255, 0.24);
  color: #b7b7b7;
  font-size: 13px;
  font-weight: 300;
  transition: border-color 180ms ease, color 180ms ease;
}

.text-action:hover,
.text-action:focus-visible {
  color: #ffffff;
  border-color: #ffffff;
}

.intro-strip {
  background: var(--paper);
  color: var(--ink);
  padding: 34px 48px 50px;
}

.steps {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 0;
  width: min(1440px, 100%);
  margin: 0 auto;
  padding: 0;
  border-top: 1px solid #d9d9d9;
  border-bottom: 1px solid #d9d9d9;
  list-style: none;
}

.steps li {
  display: grid;
  grid-template-columns: auto 1fr;
  gap: 18px;
  min-height: 142px;
  padding: 28px 34px 27px 0;
}

.steps li + li {
  padding-left: 34px;
  border-left: 1px solid #d9d9d9;
}

.step-number {
  padding-top: 3px;
  color: #777777;
  font-size: 10px;
  font-weight: 300;
  letter-spacing: 0.12em;
}

.steps h2 {
  margin: 0;
  font-size: 17px;
  font-weight: 300;
  letter-spacing: -0.035em;
  line-height: 1.25;
}

.steps p {
  max-width: 320px;
  margin: 9px 0 0;
  color: #777777;
  font-size: 12px;
  font-weight: 300;
  letter-spacing: -0.015em;
  line-height: 1.6;
}

:focus-visible {
  outline: 1px solid currentColor;
  outline-offset: 5px;
}

@media (max-width: 900px) {
  .hero {
    min-height: auto;
  }

  .site-header,
  .hero-inner {
    width: min(100% - 48px, 720px);
  }

  .hero-inner {
    padding-top: 24px;
    padding-bottom: 64px;
  }

  .art-row {
    height: 300px;
    gap: 0;
    padding-inline: 0;
  }

  .art-butterfly img,
  .art-bird img,
  .art-moon img,
  .art-flower img {
    width: 100%;
  }

  .hero-copy {
    margin-top: 22px;
  }

  .steps {
    grid-template-columns: 1fr;
  }

  .steps li {
    min-height: 0;
    padding: 25px 0;
  }

  .steps li + li {
    padding-left: 0;
    border-top: 1px solid #d9d9d9;
    border-left: 0;
  }
}

@media (max-width: 600px) {
  .site-header,
  .hero-inner {
    width: calc(100% - 34px);
  }

  .site-header {
    min-height: 72px;
  }

  .brand {
    gap: 9px;
  }

  .brand img {
    width: 36px;
    height: 36px;
    border-radius: 8px;
  }

  .brand span {
    font-size: 17px;
  }

  .hero-inner {
    padding: 18px 0 52px;
  }

  .art-row {
    grid-template-columns: repeat(5, minmax(0, 1fr));
    height: 202px;
    gap: 2px;
  }

  .art-leaf img {
    width: 84%;
    height: 80%;
  }

  .art-cell img {
    filter: drop-shadow(0 0 7px rgba(255, 255, 255, 0.16)) drop-shadow(0 12px 20px rgba(0, 0, 0, 0.35));
  }

  .art-glow {
    width: 120%;
  }

  .hero-copy {
    margin-top: 12px;
  }

  .eyebrow {
    margin-bottom: 14px;
    font-size: 9px;
  }

  h1 {
    font-size: clamp(39px, 12.2vw, 58px);
    line-height: 1.02;
  }

  .hero-text {
    margin-top: 20px;
    font-size: 13px;
    line-height: 1.7;
  }

  .hero-actions {
    align-items: stretch;
    flex-direction: column;
    gap: 12px;
    margin-top: 25px;
  }

  .primary-action {
    width: 100%;
  }

  .text-action {
    align-self: flex-start;
  }

  .intro-strip {
    padding: 25px 17px 38px;
  }

  .steps li {
    grid-template-columns: 30px 1fr;
  }
}

@media (prefers-reduced-motion: reduce) {
  html {
    scroll-behavior: auto;
  }

  *,
  *::before,
  *::after {
    transition-duration: 0.01ms !important;
  }
}
