:root {
  color-scheme: light;
  --aura-violet: #6124c7;
  --aura-bright-violet: #8c52f5;
  --aura-ink: #22172e;
  --muted: #746b7c;
  --surface: #f7f2ff;
  --line: #e7e0eb;
  --white: #ffffff;
  font-family: Inter, ui-rounded, "SF Pro Rounded", "SF Pro Display", -apple-system,
    BlinkMacSystemFont, "Segoe UI", sans-serif;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  color: var(--aura-ink);
  background: var(--white);
  -webkit-font-smoothing: antialiased;
}

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

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

:focus-visible {
  outline: 3px solid var(--aura-bright-violet);
  outline-offset: 4px;
}

.skip-link {
  position: fixed;
  z-index: 100;
  top: 10px;
  left: 10px;
  padding: 10px 14px;
  color: white;
  background: var(--aura-violet);
  border-radius: 10px;
  transform: translateY(-150%);
}

.skip-link:focus {
  transform: translateY(0);
}

.brand-header,
.brand-hero,
.brand-section,
.usage-note,
.brand-footer {
  width: min(1180px, calc(100% - 48px));
  margin-inline: auto;
}

.brand-header {
  display: flex;
  min-height: 100px;
  align-items: center;
  justify-content: space-between;
  gap: 28px;
}

.brand-home img {
  border-radius: 16px;
  box-shadow: 0 10px 28px rgb(97 36 199 / 22%);
}

.brand-header nav,
.brand-footer {
  display: flex;
  align-items: center;
  gap: 28px;
  font-size: 14px;
  font-weight: 750;
}

.brand-header a:hover,
.brand-footer a:hover {
  color: var(--aura-violet);
}

.brand-hero {
  display: grid;
  min-height: 680px;
  grid-template-columns: 0.95fr 1.05fr;
  align-items: center;
  gap: 72px;
  padding: 72px 0 96px;
}

.eyebrow {
  margin: 0 0 18px;
  color: var(--aura-violet);
  font-size: 12px;
  font-weight: 850;
  letter-spacing: 0.14em;
  text-transform: uppercase;
}

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

h1 {
  max-width: 700px;
  margin-bottom: 24px;
  font-size: clamp(64px, 7vw, 104px);
  line-height: 0.91;
  letter-spacing: -0.075em;
}

h2 {
  margin-bottom: 22px;
  font-size: clamp(42px, 5vw, 72px);
  line-height: 0.95;
  letter-spacing: -0.06em;
}

h3 {
  margin-bottom: 8px;
  font-size: 22px;
}

.lede,
.section-heading > p:last-child,
.usage-note > p {
  color: var(--muted);
  font-size: 19px;
  line-height: 1.65;
}

.kit-download {
  display: inline-flex;
  align-items: center;
  gap: 18px;
  margin-top: 18px;
  padding: 16px 20px;
  color: white;
  background: var(--aura-violet);
  border-radius: 16px;
  box-shadow: 0 14px 32px rgb(97 36 199 / 22%);
  font-weight: 800;
}

.kit-download:hover {
  background: var(--aura-ink);
}

.hero-mark {
  display: grid;
  aspect-ratio: 1.25;
  place-items: center;
  padding: 15%;
  background:
    radial-gradient(circle at 75% 20%, var(--aura-bright-violet), transparent 44%),
    var(--aura-violet);
  border-radius: 48px;
  box-shadow: 0 30px 90px rgb(97 36 199 / 28%);
}

.brand-section {
  padding: 120px 0;
}

.brand-section--soft {
  width: 100%;
  padding-inline: max(24px, calc((100% - 1180px) / 2));
  background: var(--surface);
}

.section-heading {
  max-width: 760px;
  margin-bottom: 56px;
}

.swatch-grid,
.wordmark-grid,
.icon-grid,
.background-grid {
  display: grid;
  gap: 22px;
}

.swatch-grid {
  grid-template-columns: repeat(4, 1fr);
}

.swatch {
  overflow: hidden;
  border: 1px solid var(--line);
  border-radius: 24px;
  background: white;
}

.swatch__chip {
  display: block;
  height: 180px;
}

.swatch--primary .swatch__chip { background: var(--aura-violet); }
.swatch--bright .swatch__chip { background: var(--aura-bright-violet); }
.swatch--ink .swatch__chip { background: var(--aura-ink); }
.swatch--white .swatch__chip { background: white; border-bottom: 1px solid var(--line); }

.swatch div {
  display: grid;
  gap: 6px;
  padding: 22px;
}

.swatch strong {
  font-size: 18px;
}

.swatch code,
.swatch small {
  color: var(--muted);
}

.wordmark-grid {
  grid-template-columns: repeat(3, 1fr);
}

.asset-card {
  padding: 14px 14px 24px;
  border: 1px solid var(--line);
  border-radius: 28px;
  background: white;
}

.asset-card > h3,
.asset-card > p,
.asset-card > .download-row {
  margin-inline: 12px;
}

.asset-card > p {
  min-height: 48px;
  color: var(--muted);
}

.asset-preview {
  display: grid;
  min-height: 230px;
  place-items: center;
  margin-bottom: 22px;
  padding: 18%;
  border-radius: 20px;
}

.asset-preview--white {
  background: white;
  border: 1px solid var(--line);
}

.asset-preview--black {
  background: black;
}

.download-row,
.size-links {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 9px;
}

.download-row a,
.size-links a {
  padding: 9px 12px;
  color: var(--aura-violet);
  background: #eee4ff;
  border-radius: 999px;
  font-size: 13px;
  font-weight: 800;
}

.download-row a:hover,
.size-links a:hover {
  color: white;
  background: var(--aura-violet);
}

.size-links {
  margin-top: 28px;
}

.size-links strong {
  margin-right: 8px;
}

.icon-grid {
  grid-template-columns: repeat(3, minmax(0, 240px));
}

.icon-card {
  padding: 14px 14px 20px;
  border: 1px solid var(--line);
  border-radius: 28px;
  text-align: center;
}

.icon-card img {
  width: 100%;
  margin-bottom: 16px;
  border: 1px solid var(--line);
  border-radius: 22%;
}

.brand-section--ink {
  width: 100%;
  padding-inline: max(24px, calc((100% - 1180px) / 2));
  color: white;
  background: var(--aura-ink);
}

.brand-section--ink .eyebrow,
.brand-section--ink .section-heading > p:last-child {
  color: #cdb6ff;
}

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

.background-grid article {
  padding: 14px 14px 20px;
  background: rgb(255 255 255 / 7%);
  border: 1px solid rgb(255 255 255 / 12%);
  border-radius: 24px;
}

.background-grid img {
  margin-bottom: 18px;
  border-radius: 16px;
}

.background-grid strong,
.background-grid .download-row {
  margin-inline: 8px;
}

.background-grid .download-row {
  margin-top: 12px;
}

.usage-note {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 72px;
  padding: 120px 0;
}

.brand-footer {
  min-height: 130px;
  justify-content: space-between;
  border-top: 1px solid var(--line);
}

@media (max-width: 900px) {
  .brand-header nav {
    display: none;
  }

  .brand-hero,
  .usage-note {
    grid-template-columns: 1fr;
  }

  .brand-hero {
    gap: 42px;
  }

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

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

@media (max-width: 620px) {
  .brand-header,
  .brand-hero,
  .brand-section,
  .usage-note,
  .brand-footer {
    width: min(100% - 32px, 1180px);
  }

  .brand-hero,
  .brand-section,
  .usage-note {
    padding-block: 76px;
  }

  h1 {
    font-size: 58px;
  }

  .swatch-grid,
  .wordmark-grid,
  .icon-grid,
  .background-grid {
    grid-template-columns: 1fr;
  }

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

  .brand-footer {
    flex-direction: column;
    justify-content: center;
    gap: 10px;
  }
}

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