:root {
  font-family: "Nunito", "Segoe UI", system-ui, -apple-system, sans-serif;
  color-scheme: light;
  --page: #fffaf2;
  --ink: #15122a;
  --muted: #5e5a76;
  --line: #e6deef;
  --surface: #ffffff;
  --surface-alt: #f3f0ff;
  --blue: #177ddc;
  --purple: #7a4ee8;
  --pink: #e94d8f;
  --orange: #ff8a3d;
  --green: #168f64;
  --shadow: 0 20px 42px rgba(31, 28, 62, 0.12);
}

* {
  box-sizing: border-box;
}

body {
  margin: 0;
  min-height: 100vh;
  background:
    linear-gradient(135deg, rgba(23, 125, 220, 0.12), transparent 34%),
    linear-gradient(315deg, rgba(255, 138, 61, 0.14), transparent 38%),
    var(--page);
  color: var(--ink);
}

a {
  color: inherit;
}

.site-shell {
  width: min(1120px, calc(100% - 32px));
  margin: 0 auto;
}

.site-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
  padding: 24px 0;
}

.brand-link {
  display: inline-grid;
  gap: 4px;
  text-decoration: none;
}

.brand-logo {
  width: max-content;
  font-family: "Baloo 2", "Nunito", system-ui, sans-serif;
  font-size: clamp(2.1rem, 6vw, 3.3rem);
  font-weight: 800;
  line-height: 0.9;
  letter-spacing: 0;
  position: relative;
}

.brand-logo::after {
  content: "";
  position: absolute;
  left: 0;
  bottom: -0.18rem;
  width: 100%;
  height: 0.15rem;
  border-radius: 999px;
  background: linear-gradient(90deg, var(--blue), var(--pink), var(--orange));
}

.brand-logo__key {
  background: linear-gradient(135deg, var(--blue), var(--purple));
  background-clip: text;
  -webkit-background-clip: text;
  color: transparent;
  -webkit-text-fill-color: transparent;
}

.brand-logo__moji {
  background: linear-gradient(135deg, var(--pink), var(--orange));
  background-clip: text;
  -webkit-background-clip: text;
  color: transparent;
  -webkit-text-fill-color: transparent;
}

.brand-tagline {
  margin: 0;
  color: var(--muted);
  font-weight: 800;
}

.site-nav {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  justify-content: flex-end;
}

.site-nav a,
.button-link {
  min-height: 42px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 10px 15px;
  border-radius: 999px;
  border: 1px solid var(--line);
  background: rgba(255, 255, 255, 0.78);
  color: var(--ink);
  text-decoration: none;
  font-weight: 800;
}

.site-nav a:hover,
.site-nav a:focus-visible,
.button-link:hover,
.button-link:focus-visible {
  border-color: var(--blue);
  outline: none;
  box-shadow: 0 0 0 4px rgba(23, 125, 220, 0.12);
}

.button-link--primary {
  background: linear-gradient(135deg, var(--blue), var(--purple));
  color: #ffffff;
  border-color: transparent;
  box-shadow: 0 14px 28px rgba(23, 125, 220, 0.22);
}

.page-hero {
  display: grid;
  grid-template-columns: minmax(0, 1.05fr) minmax(300px, 0.95fr);
  gap: clamp(24px, 5vw, 56px);
  align-items: center;
  padding: clamp(32px, 7vw, 76px) 0 36px;
}

.eyebrow {
  margin: 0 0 10px;
  color: var(--green);
  font-weight: 900;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  font-size: 0.78rem;
}

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

h1 {
  margin-bottom: 16px;
  font-family: "Baloo 2", "Nunito", system-ui, sans-serif;
  font-size: clamp(2.4rem, 8vw, 4.6rem);
  line-height: 0.98;
  letter-spacing: 0;
}

h2 {
  font-family: "Baloo 2", "Nunito", system-ui, sans-serif;
  font-size: clamp(1.8rem, 4vw, 2.6rem);
  line-height: 1.05;
  letter-spacing: 0;
}

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

.lede {
  color: var(--muted);
  font-size: clamp(1.08rem, 2.4vw, 1.28rem);
  line-height: 1.62;
  max-width: 62ch;
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-top: 24px;
}

.product-shot {
  background: var(--surface);
  border: 1px solid var(--line);
  border-radius: 8px;
  box-shadow: var(--shadow);
  padding: clamp(14px, 3vw, 22px);
}

.product-shot img {
  display: block;
  width: 100%;
  height: auto;
  border-radius: 8px;
}

.section {
  padding: clamp(34px, 7vw, 72px) 0;
}

.section--band {
  width: 100vw;
  margin-left: calc(50% - 50vw);
  background: rgba(255, 255, 255, 0.66);
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
}

.section--band > .site-shell {
  padding-top: clamp(34px, 7vw, 72px);
  padding-bottom: clamp(34px, 7vw, 72px);
}

.grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 16px;
}

.card,
.price-card {
  background: var(--surface);
  border: 1px solid var(--line);
  border-radius: 8px;
  padding: 20px;
  box-shadow: 0 12px 28px rgba(31, 28, 62, 0.08);
}

.card p,
.price-card p,
.resource-list p {
  color: var(--muted);
  line-height: 1.55;
}

.check-list,
.resource-list {
  display: grid;
  gap: 12px;
  padding: 0;
  margin: 20px 0 0;
  list-style: none;
}

.check-list li,
.resource-list li {
  padding-left: 30px;
  position: relative;
  line-height: 1.55;
}

.check-list li::before,
.resource-list li::before {
  content: "";
  position: absolute;
  left: 0;
  top: 0.45em;
  width: 14px;
  height: 14px;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--green), var(--blue));
}

.pricing-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 16px;
}

.price {
  margin: 10px 0 8px;
  font-family: "Baloo 2", "Nunito", system-ui, sans-serif;
  font-size: 2.3rem;
  font-weight: 800;
}

.price-note {
  display: inline-flex;
  width: max-content;
  max-width: 100%;
  padding: 4px 9px;
  border-radius: 999px;
  background: var(--surface-alt);
  color: var(--purple);
  font-size: 0.8rem;
  font-weight: 900;
}

.quote-strip {
  display: grid;
  gap: 10px;
  padding: 22px;
  border-left: 5px solid var(--orange);
  background: rgba(255, 255, 255, 0.72);
  border-radius: 8px;
}

.quote-strip p {
  margin: 0;
  color: var(--muted);
  line-height: 1.6;
}

.site-footer {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: space-between;
  gap: 14px;
  color: var(--muted);
  padding: 28px 0 36px;
  border-top: 1px solid var(--line);
}

.site-footer nav {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
}

@media (max-width: 820px) {
  .site-header {
    align-items: flex-start;
    flex-direction: column;
  }

  .site-nav {
    justify-content: flex-start;
  }

  .page-hero,
  .grid,
  .pricing-grid {
    grid-template-columns: 1fr;
  }

  .page-hero {
    padding-top: 22px;
  }
}
