:root {
  --accent: #de6b1f;
  --accent-strong: #c45610;
  --accent-panel: #955543;
  --accent-secondary: #996353;
  --accent-icon: #996353;
  --accent-alt: #6741c7;
  --accent-alt-strong: #5530af;
  --ink: #232323;
  --ink-muted: rgba(35, 35, 35, 0.86);
  --ink-soft: rgba(35, 35, 35, 0.72);
  --line-soft: rgba(35, 35, 35, 0.12);
  --shadow-soft: rgba(20, 20, 20, 0.08);
  --soft: #e4d6cf;
  --paper: #fbf5ef;
  --white: #ffffff;
  --radius-sm: 0.7rem;
  --radius-md: 1rem;
  --radius-lg: 1.4rem;
  --magda-accent: var(--accent);
  --magda-accent-strong: var(--accent-strong);
  --magda-accent-panel: var(--accent-panel);
  --magda-accent-secondary: var(--accent-secondary);
  --magda-accent-icon: var(--accent-icon);
  --magda-accent-alt: var(--accent-alt);
  --magda-accent-alt-strong: var(--accent-alt-strong);
  --magda-ink: var(--ink);
  --magda-soft: var(--soft);
  --magda-paper: var(--paper);
}

:root[data-accent-mode="violet"] .wrapper.style1:before,
:root[data-accent-mode="violet"] .wrapper.style1:after {
  background-image: url("data:image/svg+xml;charset=utf8,%3Csvg xmlns='http://www.w3.org/2000/svg' width='100' height='100' viewBox='0 0 100 100' preserveAspectRatio='none'%3E%3Cpolygon points='0,0 0,100 100,100' style='fill:%236741c7%3B' /%3E%3C/svg%3E") !important;
}

* {
  box-sizing: border-box;
}

body {
  margin: 0;
  background: var(--magda-paper);
  color: var(--magda-ink);
  line-height: 1.7;
}

html,
body {
  overflow-x: hidden;
}

a {
  color: inherit;
}

a:not(.button) {
  color: var(--magda-accent-alt);
}

.wrap {
  width: min(1080px, calc(100% - 2rem));
  margin: 0 auto;
}

.hero,
.section {
  padding: 3.5rem 0;
}

.workbook-page .wrapper {
  padding: 4.25rem 0;
  overflow: hidden;
}

.workbook-page .wrapper:first-child {
  padding-top: 0;
}

.workbook-hero-section {
  position: relative;
  background:
    radial-gradient(circle at 20% 20%, rgba(255, 255, 255, 0.08), transparent 28%),
    linear-gradient(135deg, #4f36c9 0%, #5746e3 45%, #4436d7 100%);
  padding: 0 !important;
}

.workbook-hero-section h1,
.workbook-hero-section h2,
.workbook-hero-section h3,
.workbook-hero-section .lead,
.workbook-hero-section .workbook-hero-meta li {
  color: #ffffff;
}

.workbook-hero-section .eyebrow {
  color: rgba(255, 255, 255, 0.78);
}

.workbook-page .inner {
  margin: 0 auto;
  max-width: 100%;
  width: min(72rem, calc(100% - 2rem));
}

[id] {
  scroll-margin-top: calc(var(--site-header-height, 4.75rem) + 1rem);
}

.eyebrow {
  margin: 0 0 1rem;
  text-transform: uppercase;
  letter-spacing: 0.14em;
  font-size: 0.8rem;
  color: var(--magda-accent-alt);
}

header.major p,
.wrapper.style1 header.major p,
.wrapper.style2 header.major p,
.wrapper.style2.alt header.major p,
#footer form header.major p {
  color: var(--magda-accent-alt) !important;
}

h1,
h2,
h3 {
  line-height: 1.1;
  margin: 0 0 1rem;
  color: var(--magda-ink);
}

h1 {
  font-size: clamp(2.4rem, 5vw, 4rem);
}

h2 {
  font-size: clamp(1.7rem, 3vw, 2.5rem);
}

.lead {
  max-width: 42rem;
  font-size: 1.08rem;
  line-height: 1.8;
}

#header,
.button.large.primary,
input.button.large,
input[type="submit"] {
  background-color: var(--magda-accent);
}

a.button,
.button,
input.button,
input[type="submit"] {
  background-color: var(--magda-accent) !important;
  color: #fff !important;
  border-color: rgba(255, 255, 255, 0.28) !important;
  box-shadow: 0 0 0 1px rgba(255, 255, 255, 0.12), 0 0.45rem 0.9rem rgba(255, 255, 255, 0.12);
  text-shadow: none;
  text-decoration: none;
  border-radius: var(--radius-sm);
  transition: background-color 0.2s ease, border-color 0.2s ease, transform 0.2s ease, box-shadow 0.2s ease;
}

a.button.is-ghost-light,
.button.is-ghost-light,
input.button.is-ghost-light,
input[type="submit"].is-ghost-light,
button.is-ghost-light {
  background-color: transparent !important;
  border-color: rgba(255, 255, 255, 0.35) !important;
  box-shadow: inset 0 0 0 1px rgba(255, 255, 255, 0.35) !important;
  color: #fff !important;
}

a.button.is-ghost-light:hover,
a.button.is-ghost-light:focus,
.button.is-ghost-light:hover,
.button.is-ghost-light:focus,
input.button.is-ghost-light:hover,
input.button.is-ghost-light:focus,
input[type="submit"].is-ghost-light:hover,
input[type="submit"].is-ghost-light:focus,
button.is-ghost-light:hover,
button.is-ghost-light:focus {
  background-color: rgba(255, 255, 255, 0.16) !important;
  border-color: rgba(255, 255, 255, 0.5) !important;
  box-shadow: inset 0 0 0 1px rgba(255, 255, 255, 0.5), 0 0.5rem 1rem rgba(20, 20, 20, 0.14) !important;
  color: #fff !important;
  transform: translateY(-1px);
}

a.button.is-ghost-light:active,
.button.is-ghost-light:active,
input.button.is-ghost-light:active,
input[type="submit"].is-ghost-light:active,
button.is-ghost-light:active {
  background-color: rgba(255, 255, 255, 0.24) !important;
  border-color: rgba(255, 255, 255, 0.42) !important;
  box-shadow: inset 0 0 0 1px rgba(255, 255, 255, 0.42) !important;
  color: #fff !important;
  transform: translateY(0);
}

a.button.is-secondary,
.button.is-secondary,
input.button.is-secondary,
input[type="submit"].is-secondary,
button.is-secondary,
.wrapper.style2 a.button.is-secondary,
.wrapper.style2 .button.is-secondary,
.wrapper.style2.alt a.button.is-secondary,
.wrapper.style2.alt .button.is-secondary,
ul.actions a.button.is-secondary {
  background-color: var(--magda-accent-secondary) !important;
  border-color: rgba(255, 255, 255, 0.28) !important;
  box-shadow: 0 0 0 1px rgba(255, 255, 255, 0.12), 0 0.45rem 0.9rem rgba(255, 255, 255, 0.12) !important;
  color: #fff !important;
}

a.button.is-secondary:hover,
a.button.is-secondary:focus,
.button.is-secondary:hover,
.button.is-secondary:focus,
input.button.is-secondary:hover,
input.button.is-secondary:focus,
input[type="submit"].is-secondary:hover,
input[type="submit"].is-secondary:focus,
button.is-secondary:hover,
button.is-secondary:focus,
.wrapper.style2 a.button.is-secondary:hover,
.wrapper.style2 a.button.is-secondary:focus,
.wrapper.style2 .button.is-secondary:hover,
.wrapper.style2 .button.is-secondary:focus,
.wrapper.style2.alt a.button.is-secondary:hover,
.wrapper.style2.alt a.button.is-secondary:focus,
.wrapper.style2.alt .button.is-secondary:hover,
.wrapper.style2.alt .button.is-secondary:focus,
ul.actions a.button.is-secondary:hover,
ul.actions a.button.is-secondary:focus {
  background-color: #7f4737 !important;
  border-color: #7f4737 !important;
  box-shadow: 0 0.5rem 1rem rgba(20, 20, 20, 0.14) !important;
  color: #fff !important;
}

a.button.is-secondary:active,
.button.is-secondary:active,
input.button.is-secondary:active,
input[type="submit"].is-secondary:active,
button.is-secondary:active,
.wrapper.style2 a.button.is-secondary:active,
.wrapper.style2 .button.is-secondary:active,
.wrapper.style2.alt a.button.is-secondary:active,
.wrapper.style2.alt .button.is-secondary:active,
ul.actions a.button.is-secondary:active {
  background-color: #6f3d2f !important;
  border-color: #6f3d2f !important;
  box-shadow: none !important;
  color: #fff !important;
}

input[type="text"],
input[type="email"],
input[type="tel"],
textarea,
select {
  background-color: rgba(255, 255, 255, 0.82) !important;
  color: var(--magda-ink) !important;
  border-color: var(--line-soft) !important;
}

.wrapper.style2 a.button,
.wrapper.style2 a.button:hover,
.wrapper.style2 a.button:active,
.wrapper.style2 a.button:focus,
.wrapper.style2 .button,
.wrapper.style2 .button:hover,
.wrapper.style2 .button:active,
.wrapper.style2 .button:focus,
.wrapper.style2.alt a.button,
.wrapper.style2.alt a.button:hover,
.wrapper.style2.alt a.button:active,
.wrapper.style2.alt a.button:focus,
.wrapper.style2.alt .button,
.wrapper.style2.alt .button:hover,
.wrapper.style2.alt .button:active,
.wrapper.style2.alt .button:focus,
ul.actions a.button:not(.is-secondary):not(.is-ghost-light),
ul.actions a.button:not(.is-secondary):not(.is-ghost-light):hover,
ul.actions a.button:not(.is-secondary):not(.is-ghost-light):active,
ul.actions a.button:not(.is-secondary):not(.is-ghost-light):focus {
  background-color: var(--magda-accent) !important;
  color: #fff !important;
  border-color: var(--magda-accent) !important;
}

a.button:hover,
a.button:focus,
.button:hover,
.button:focus,
input.button:hover,
input.button:focus,
input[type="submit"]:hover,
input[type="submit"]:focus,
.wrapper.style2 a.button,
.wrapper.style2 .button,
.wrapper.style2.alt a.button,
.wrapper.style2.alt .button,
ul.actions a.button:not(.is-secondary):not(.is-ghost-light) {
  color: #fff !important;
}

a.button:hover,
a.button:focus,
.button:hover,
.button:focus,
input.button:hover,
input.button:focus,
input[type="submit"]:hover,
input[type="submit"]:focus,
.wrapper.style2 a.button:hover,
.wrapper.style2 a.button:focus,
.wrapper.style2 .button:hover,
.wrapper.style2 .button:focus,
.wrapper.style2.alt a.button:hover,
.wrapper.style2.alt a.button:focus,
.wrapper.style2.alt .button:hover,
.wrapper.style2.alt .button:focus,
ul.actions a.button:not(.is-secondary):not(.is-ghost-light):hover,
ul.actions a.button:not(.is-secondary):not(.is-ghost-light):focus,
#banner .button:hover,
#banner .button:focus {
  background-color: var(--magda-accent-strong) !important;
  border-color: var(--magda-accent-strong) !important;
  transform: translateY(-1px);
  box-shadow: 0 0.5rem 1rem rgba(20, 20, 20, 0.14);
  color: #fff !important;
}

a.button:active,
.button:active,
input.button:active,
input[type="submit"]:active,
.wrapper.style2 a.button:active,
.wrapper.style2 .button:active,
.wrapper.style2.alt a.button:active,
.wrapper.style2.alt .button:active,
ul.actions a.button:not(.is-secondary):not(.is-ghost-light):active,
#banner .button:active {
  background-color: #a9553e !important;
  border-color: #a9553e !important;
  transform: translateY(0);
  box-shadow: none !important;
  color: #fff !important;
}

.actions {
  margin-top: 1.25rem;
  text-align: center;
}

.grid,
.two-col {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 1.5rem;
}

main img,
.image img,
.hero-photo img,
.posts .image img,
.timeline .image img {
  border-radius: var(--radius-lg);
}

.grid > article,
.two-col > article,
.posts article,
.spotlights article,
.tiles article,
.features li {
  border-radius: var(--radius-md);
}

.card {
  background: rgba(255, 255, 255, 0.78);
  border: 1px solid var(--line-soft);
  padding: 1.75rem;
  box-shadow: 0 1rem 2rem var(--shadow-soft);
  border-radius: var(--radius-md);
}

.service-overview-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 1.5rem;
  align-items: stretch;
  margin-top: 2rem;
}

.product-promo-grid,
.product-split-grid,
.product-price-grid {
  display: grid;
  gap: 1.5rem;
}

.product-promo-grid,
.product-split-grid {
  grid-template-columns: repeat(2, minmax(0, 1fr));
  align-items: center;
}

.workbook-hero-grid {
  display: grid;
  grid-template-columns: minmax(0, 1.05fr) minmax(18rem, 0.95fr);
  gap: 0;
  align-items: center;
  padding: 2.75rem 0;
}

.workbook-hero-copy {
  padding: 4.5rem 4.5rem 3.25rem;
  max-width: 42rem;
}

.workbook-hero-copy > * {
  opacity: 0;
  transform: translateY(1.2rem);
  animation: workbookHeroFadeUp 0.7s ease forwards;
}

.workbook-hero-copy > *:nth-child(1) {
  animation-delay: 0.08s;
}

.workbook-hero-copy > *:nth-child(2) {
  animation-delay: 0.16s;
}

.workbook-hero-copy > *:nth-child(3) {
  animation-delay: 0.24s;
}

.workbook-hero-copy > *:nth-child(4) {
  animation-delay: 0.32s;
}

.workbook-hero-copy .lead {
  margin-bottom: 0;
  max-width: 32rem;
  font-size: 1.05rem;
  line-height: 1.8;
}

.workbook-hero-copy h1 {
  font-size: clamp(2.8rem, 5vw, 4.5rem);
  line-height: 1.08;
  margin-bottom: 1rem;
}

.workbook-hero-chip-row {
  display: flex;
  flex-wrap: wrap;
  gap: 0.7rem;
  margin: 1.35rem 0 0;
}

.workbook-hero-chip-row span {
  display: inline-flex;
  align-items: center;
  min-height: 2rem;
  padding: 0.35rem 0.8rem;
  border: 1px solid rgba(35, 35, 35, 0.1);
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.76);
  color: var(--magda-ink);
  font-size: 0.83rem;
  font-weight: 700;
  letter-spacing: 0.04em;
}

.workbook-hero-meta {
  margin: 1.35rem 0 0;
  padding-left: 1.1rem;
}

.workbook-hero-meta li {
  margin-bottom: 0.45rem;
  color: var(--ink-muted);
}

.workbook-hero-visual {
  min-height: 24rem;
}

.workbook-hero-visual-wrap {
  display: flex;
  justify-content: center;
  align-items: center;
  width: 100%;
}

.workbook-hero-panel {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 100%;
  padding: 1.25rem 2rem;
  border-radius: var(--radius-lg);
  background: linear-gradient(180deg, rgba(255, 255, 255, 0.92), rgba(240, 232, 223, 0.94));
  box-shadow: 0 1.35rem 3rem rgba(20, 20, 20, 0.18);
}

.workbook-hero-stage {
  position: relative;
  overflow: hidden;
  width: 100%;
  height: clamp(20rem, 31vw, 27rem);
  opacity: 0;
  transform: translateY(1.4rem);
  animation: workbookHeroFadeUp 0.85s ease 0.32s forwards;
}

.workbook-hero-sheet {
  position: absolute;
  border-radius: 1.8rem;
  transform: rotate(10deg);
}

.workbook-hero-sheet-a {
  width: 9.5rem;
  height: 24rem;
  top: -2rem;
  left: -1rem;
  background: rgba(94, 123, 255, 0.7);
}

.workbook-hero-sheet-b {
  width: 11rem;
  height: 7.5rem;
  right: 5rem;
  bottom: 3.5rem;
  background: #f6bc2d;
  transform: rotate(12deg);
}

.workbook-hero-device,
.workbook-hero-magda {
  position: absolute;
  display: block;
}

.workbook-hero-device {
  width: auto;
  height: 86%;
  max-width: 74%;
  left: 3.2rem;
  top: 50%;
  transform: translateY(-50%);
  z-index: 2;
  filter: drop-shadow(0 1.4rem 2rem rgba(20, 20, 20, 0.2));
}

.workbook-hero-magda {
  width: auto;
  height: 84%;
  max-width: 54%;
  right: 0.6rem;
  bottom: 0;
  z-index: 3;
  filter: drop-shadow(0 1.1rem 1.6rem rgba(20, 20, 20, 0.18));
}

@media screen and (min-width: 981px) and (max-width: 1440px) and (max-height: 860px) {
  .workbook-hero-grid {
    padding: 2rem 0 1.5rem;
  }

  .workbook-hero-copy {
    padding: 3.75rem 3.75rem 2.25rem;
  }

  .workbook-hero-copy h1 {
    font-size: clamp(2.55rem, 4.3vw, 3.7rem);
    line-height: 1.04;
  }

  .workbook-hero-copy .lead {
    font-size: 0.98rem;
    line-height: 1.65;
  }

  .workbook-hero-stage {
    height: clamp(17.5rem, 26vw, 22.5rem);
  }

  .workbook-hero-panel {
    padding: 1rem 1.65rem;
  }
}

@media screen and (min-width: 981px) and (max-width: 1440px) and (max-height: 760px) {
  .workbook-hero-grid {
    padding: 1.5rem 0 1rem;
  }

  .workbook-hero-copy {
    padding: 3.1rem 3.1rem 1.85rem;
  }

  .workbook-hero-copy h1 {
    font-size: clamp(2.25rem, 3.8vw, 3.1rem);
  }

  .workbook-hero-copy .eyebrow {
    font-size: 0.78rem;
  }

  .workbook-hero-copy .lead {
    font-size: 0.93rem;
    line-height: 1.55;
  }

  .workbook-hero-stage {
    height: clamp(15.5rem, 23vw, 19rem);
  }
}

.workbook-editorial-stack {
  display: flex;
  flex-direction: column;
  gap: 2.25rem;
}

.workbook-editorial-split {
  display: grid;
  grid-template-columns: minmax(15rem, 0.8fr) minmax(0, 1.2fr);
  gap: 2rem;
  align-items: center;
}

.workbook-editorial-split.is-reversed {
  grid-template-columns: minmax(0, 1.2fr) minmax(15rem, 0.8fr);
}

.workbook-figure-stage {
  position: relative;
  min-height: 22rem;
  border-radius: var(--radius-lg);
  overflow: hidden;
  background: linear-gradient(180deg, rgba(103, 65, 199, 0.12), rgba(255, 255, 255, 0.78));
}

.workbook-figure-stage::before {
  content: "";
  position: absolute;
  inset: auto auto 1.25rem 1.25rem;
  width: 7.5rem;
  height: 7.5rem;
  border-radius: 1.5rem;
  background: rgba(246, 188, 45, 0.62);
  transform: rotate(10deg);
  transition: transform 0.28s ease, opacity 0.28s ease;
}

.workbook-figure-stage.is-advanced::before {
  left: auto;
  right: 1rem;
  top: 1.25rem;
  bottom: auto;
  background: rgba(149, 85, 67, 0.24);
}

.workbook-figure-stage img {
  position: absolute;
  inset: auto 50% 0 auto;
  transform: translateX(50%);
  height: 108%;
  width: auto;
  max-width: none;
  object-fit: contain;
}

.workbook-figure-stage.is-beginner img {
  height: 118%;
  bottom: -1.2rem;
}

.workbook-figure-stage.is-advanced img {
  height: 112%;
  bottom: -0.8rem;
}

.workbook-plain-visual {
  display: flex;
  align-items: center;
  justify-content: center;
}

.workbook-plain-visual img {
  display: block;
  width: auto;
  max-width: min(100%, 20rem);
  max-height: 28rem;
  height: auto;
  border-radius: var(--radius-lg);
  object-fit: contain;
}

.workbook-plain-visual.is-tablet {
  justify-content: flex-end;
}

.workbook-plain-visual.is-tablet img {
  max-width: min(100%, 21rem);
  max-height: 24rem;
}

.workbook-editorial-copy p,
.workbook-editorial-copy li {
  color: var(--ink-muted);
}

.workbook-editorial-copy h3 {
  font-size: clamp(1.45rem, 2vw, 2rem);
}

.workbook-scenario-band {
  display: grid;
  grid-template-columns: minmax(0, 0.9fr) minmax(0, 1.1fr);
  gap: 1.5rem;
  align-items: center;
  margin-top: 1rem;
  padding: 1.4rem 0 0;
  border-top: 1px solid rgba(35, 35, 35, 0.12);
}

.workbook-scenario-band h3 {
  margin-bottom: 0;
}

.workbook-scenario-band > p {
  margin: 0;
  color: var(--ink-muted);
  font-size: 1rem;
  line-height: 1.8;
}

.workbook-scenario-band-strong {
  margin-top: 2.25rem;
  padding: 2rem;
  border-top: 0;
  border-radius: var(--radius-lg);
  background: linear-gradient(135deg, rgba(103, 65, 199, 0.08), rgba(255, 255, 255, 0.92));
}

.workbook-scenario-band-strong > div > p:last-child {
  margin-bottom: 0;
  color: var(--ink-muted);
}

.workbook-scenario-visual {
  position: relative;
  min-height: 16rem;
}

.workbook-scenario-visual img {
  position: absolute;
  right: 0;
  bottom: -2rem;
  width: min(100%, 22rem);
}

.workbook-process-grid {
  display: grid;
  grid-template-columns: minmax(0, 1.15fr) minmax(15rem, 0.85fr);
  gap: 2rem;
  align-items: start;
  margin-top: 1.6rem;
}

.workbook-content-grid {
  align-items: stretch;
}

.workbook-timeline {
  margin-top: 0;
}

.workbook-timeline > section {
  display: block;
  position: relative;
  background: transparent;
  border: 0;
  border-radius: 0;
  padding: 0 0 2.25rem 0;
  margin: 0;
  box-shadow: none;
}

.workbook-timeline > section::before {
  display: none;
}

.workbook-timeline > section:last-child {
  padding-bottom: 0;
}

.workbook-timeline > section > header {
  display: block;
  width: auto;
  min-width: 0;
  margin: 0 0 0.7rem 0;
  padding: 0;
  flex: none;
}

.workbook-timeline header h4 {
  color: var(--magda-ink);
  margin: 0;
  font-size: clamp(1.05rem, 1.8vw, 1.22rem);
  line-height: 1.3;
  text-transform: none;
}

.workbook-timeline header p {
  color: var(--magda-accent-alt);
  text-transform: uppercase;
  letter-spacing: 0.1em;
  font-size: 0.78rem;
  font-weight: 700;
  margin: 0 0 0.4rem 0;
  line-height: 1.2;
}

.workbook-timeline .content {
  margin: 0;
  padding: 0;
  flex: none;
  min-width: 0;
}

.workbook-timeline .content p {
  color: var(--ink-muted);
  margin: 0;
}

.product-promo-card,
.product-visual-card,
.product-price-card {
  min-height: 100%;
}

.home-workbook-promo {
  display: grid;
  grid-template-columns: minmax(0, 1.05fr) minmax(18rem, 0.95fr);
  gap: 2.2rem;
  align-items: center;
}

.home-workbook-promo-copy .lead {
  max-width: 38rem;
  margin-bottom: 0;
  color: var(--ink-muted);
}

.home-workbook-promo-strip {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 1rem;
  margin: 1.5rem 0 1rem;
  padding: 1rem 0 1.1rem;
  border-top: 1px solid rgba(35, 35, 35, 0.12);
  border-bottom: 1px solid rgba(35, 35, 35, 0.12);
}

.home-workbook-promo-strip div {
  display: flex;
  flex-direction: column;
  gap: 0.18rem;
}

.home-workbook-promo-strip strong {
  color: var(--magda-ink);
  font-size: 1rem;
  line-height: 1.2;
}

.home-workbook-promo-strip span {
  color: var(--ink-soft);
  font-size: 0.92rem;
  line-height: 1.5;
}

.home-workbook-promo-note {
  margin: 0;
  color: var(--ink-muted);
}

.home-workbook-promo-copy .actions {
  margin-top: 1.5rem;
  justify-content: flex-start;
}

.home-workbook-promo-visual {
  display: flex;
  justify-content: center;
}

.home-workbook-promo-stage {
  position: relative;
  width: min(100%, 31rem);
  height: clamp(21rem, 33vw, 25rem);
}

.home-workbook-promo-shape {
  position: absolute;
  border-radius: 1.5rem;
  transition: transform 0.28s ease, opacity 0.28s ease;
}

.home-workbook-promo-shape-a {
  left: 0.4rem;
  top: 1.5rem;
  width: 8rem;
  height: 8rem;
  background: rgba(103, 65, 199, 0.16);
  transform: rotate(-10deg);
}

.home-workbook-promo-shape-b {
  right: 1.2rem;
  bottom: 1rem;
  width: 9rem;
  height: 5.6rem;
  background: rgba(246, 188, 45, 0.5);
  transform: rotate(11deg);
}

.home-workbook-promo-device,
.home-workbook-promo-page {
  position: absolute;
  display: block;
  transition: transform 0.28s ease, filter 0.28s ease;
}

.home-workbook-promo-device {
  left: 50%;
  top: 50%;
  width: min(100%, 15.2rem);
  transform: translate(-50%, -50%);
  z-index: 4;
  filter: drop-shadow(0 1.25rem 2rem rgba(20, 20, 20, 0.18));
}

.home-workbook-promo-page {
  border-radius: 1rem;
  box-shadow: 0 1rem 2rem rgba(20, 20, 20, 0.12);
}

.home-workbook-promo-page.is-notes {
  left: 0.8rem;
  bottom: 2rem;
  width: 34%;
  transform: rotate(-8deg);
  z-index: 1;
}

.home-workbook-promo-page.is-exercise {
  right: 0.9rem;
  top: 1.6rem;
  width: 38%;
  transform: rotate(8deg);
  z-index: 2;
}

.home-workbook-promo-stage:hover .home-workbook-promo-device {
  transform: translate(-50%, calc(-50% - 0.2rem)) scale(1.02);
  filter: drop-shadow(0 1.5rem 2.3rem rgba(20, 20, 20, 0.22));
}

.home-workbook-promo-stage:hover .home-workbook-promo-page.is-notes {
  transform: translateY(-0.2rem) rotate(-4deg);
}

.home-workbook-promo-stage:hover .home-workbook-promo-page.is-exercise {
  transform: translateY(-0.2rem) rotate(4deg);
}

.home-workbook-promo-stage:hover .home-workbook-promo-shape-a {
  transform: rotate(-6deg) translate(-0.1rem, -0.12rem);
}

.home-workbook-promo-stage:hover .home-workbook-promo-shape-b {
  transform: rotate(14deg) translate(0.12rem, -0.12rem);
}

.product-promo-points,
.product-detail-list {
  margin: 1.15rem 0 0;
  padding-left: 1.1rem;
}

.product-promo-points li,
.product-detail-list li {
  margin-bottom: 0.45rem;
}

.product-visual-card {
  display: flex;
  align-items: center;
  justify-content: center;
  min-height: 20rem;
  background: linear-gradient(180deg, rgba(103, 65, 199, 0.06), rgba(228, 214, 207, 0.54));
}

.product-visual-card img {
  width: min(100%, 28rem);
  max-height: 32rem;
  object-fit: contain;
  object-position: center center;
}

.product-visual-card.is-workbook {
  padding: 1rem;
}

.product-visual-card.is-workbook img {
  filter: drop-shadow(0 1rem 1.8rem rgba(20, 20, 20, 0.12));
}

.workbook-content-visual {
  min-height: 27rem;
  padding: 0;
}

.workbook-process-visual {
  position: relative;
  min-height: 31rem;
  border-radius: var(--radius-lg);
  background: linear-gradient(180deg, rgba(103, 65, 199, 0.08), rgba(255, 255, 255, 0.85));
  overflow: hidden;
}

.workbook-process-visual::before {
  content: "";
  position: absolute;
  left: 1rem;
  top: 1rem;
  width: 6rem;
  height: 6rem;
  border-radius: 1.4rem;
  background: rgba(246, 188, 45, 0.58);
  transform: rotate(-14deg);
}

.workbook-process-page {
  position: absolute;
  display: block;
  border-radius: 1rem;
  box-shadow: 0 1rem 2.2rem rgba(20, 20, 20, 0.14);
  transition: transform 0.28s ease, box-shadow 0.28s ease;
}

.workbook-process-page.is-chapters {
  width: 41%;
  left: 0.9rem;
  top: 1.4rem;
  transform: rotate(-8deg);
}

.workbook-process-page.is-lecture {
  width: 50%;
  right: 1.2rem;
  top: 2rem;
  transform: rotate(7deg);
}

.workbook-process-page.is-exercise {
  width: 43%;
  left: 1.7rem;
  bottom: 2.1rem;
  transform: rotate(-5deg);
}

.workbook-process-page.is-notes {
  width: 38%;
  right: 1.75rem;
  bottom: 1.15rem;
  transform: rotate(6deg);
}

.workbook-process-visual:hover .workbook-process-page.is-chapters {
  transform: rotate(-11deg) translate(-0.15rem, -0.2rem);
}

.workbook-process-visual:hover .workbook-process-page.is-lecture {
  transform: rotate(10deg) translate(0.15rem, -0.25rem);
}

.workbook-process-visual:hover .workbook-process-page.is-exercise {
  transform: rotate(-7deg) translate(-0.2rem, 0.1rem);
}

.workbook-process-visual:hover .workbook-process-page.is-notes {
  transform: rotate(8deg) translate(0.2rem, 0);
}

.workbook-process-visual:hover .workbook-process-page {
  box-shadow: 0 1.15rem 2.4rem rgba(20, 20, 20, 0.18);
}

.workbook-hero-device,
.workbook-hero-magda,
.workbook-hero-sheet,
.workbook-preview-device {
  transition: transform 0.28s ease, filter 0.28s ease;
}

.workbook-hero-stage:hover .workbook-hero-device,
.workbook-preview-collage:hover .workbook-preview-device {
  filter: drop-shadow(0 1.5rem 2.2rem rgba(20, 20, 20, 0.22));
}

.workbook-hero-stage:hover .workbook-hero-device {
  transform: translateY(-50%) translateX(-0.15rem) scale(1.015);
}

.workbook-hero-stage:hover .workbook-hero-magda {
  transform: translateY(-0.2rem) scale(1.02);
  filter: drop-shadow(0 1.2rem 1.8rem rgba(20, 20, 20, 0.2));
}

.workbook-hero-stage:hover .workbook-hero-sheet-a {
  transform: rotate(13deg) translate(-0.15rem, -0.2rem);
}

.workbook-hero-stage:hover .workbook-hero-sheet-b {
  transform: rotate(15deg) translate(0.15rem, -0.2rem);
}

.workbook-preview-collage:hover .workbook-preview-device {
  transform: translateY(-0.2rem);
}

.workbook-editorial-split .workbook-figure-stage img,
.workbook-scenario-visual img {
  transition: transform 0.28s ease, filter 0.28s ease;
}

.workbook-editorial-split:hover .workbook-figure-stage img {
  transform: translateX(50%) translateY(-0.2rem) scale(1.02);
  filter: drop-shadow(0 1rem 1.5rem rgba(20, 20, 20, 0.16));
}

.workbook-editorial-split:hover .workbook-figure-stage::before {
  transform: rotate(14deg) translate(-0.15rem, -0.2rem) scale(1.03);
  opacity: 0.92;
}

.workbook-scenario-band:hover .workbook-scenario-visual img {
  transform: translateY(-0.2rem) scale(1.02);
  filter: drop-shadow(0 1rem 1.5rem rgba(20, 20, 20, 0.16));
}

.workbook-editorial-split .workbook-plain-visual img,
.workbook-scenario-band .workbook-plain-visual img {
  transition: none;
  filter: none;
  transform: none;
}

.workbook-preview-collage {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
  min-height: clamp(18rem, 30vw, 24rem);
}

.workbook-preview-device {
  position: relative;
  display: block;
  box-shadow: 0 1rem 2rem rgba(20, 20, 20, 0.14);
}

.workbook-preview-device {
  width: min(100%, 24rem);
  max-width: 100%;
  margin: 0 auto;
  left: auto;
  top: auto;
  z-index: 2;
  filter: drop-shadow(0 1.35rem 2rem rgba(20, 20, 20, 0.18));
}

.workbook-copy-panel {
  padding: 1rem 0;
}

.workbook-copy-panel p {
  color: var(--ink-muted);
}

.workbook-section-lead {
  max-width: 42rem;
  margin: 0 auto;
  text-align: center;
  color: var(--ink-muted);
  font-size: 1.03rem;
}

.workbook-feature-band {
  margin: 2.2rem 0 0;
  align-items: stretch;
  justify-content: space-between;
}

.workbook-feature-band li {
  display: flex;
  flex-direction: column;
  align-items: center;
  min-height: 100%;
  padding: 0;
  border: 0;
  border-radius: 0;
  background: transparent;
  box-shadow: none;
  text-align: center;
  transition: transform 0.24s ease;
}

.workbook-feature-band .icon.major {
  background: rgba(103, 65, 199, 0.12);
  color: var(--magda-accent-alt);
  box-shadow: none;
  transition: transform 0.24s ease, background-color 0.24s ease, box-shadow 0.24s ease;
}

.workbook-feature-band h4 {
  width: 100%;
  margin-bottom: 0.35rem;
  font-size: 0.95rem;
}

.workbook-feature-band p {
  margin-bottom: 0;
  color: var(--ink-muted);
  font-size: 0.95rem;
}

.workbook-feature-band li:hover {
  transform: translateY(-0.18rem);
}

.workbook-feature-band li:hover .icon.major {
  transform: translateY(-0.15rem) scale(1.05);
  background: rgba(103, 65, 199, 0.18);
  box-shadow: 0 0.9rem 1.6rem rgba(20, 20, 20, 0.08);
}

.workbook-inside-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 2rem;
  margin-top: 2.4rem;
  padding-top: 1.8rem;
  border-top: 1px solid rgba(35, 35, 35, 0.12);
}

.workbook-list-block h3 {
  margin-bottom: 0.8rem;
}

.workbook-list-block li {
  color: var(--ink-muted);
}

.workbook-compare-band {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 1.25rem;
  align-items: stretch;
  margin-bottom: 1.5rem;
  padding: 1.3rem 0 1.45rem;
  border-top: 1px solid rgba(35, 35, 35, 0.12);
  border-bottom: 1px solid rgba(35, 35, 35, 0.12);
  background: transparent;
}

.workbook-compare-band div {
  padding: 0.25rem 0;
}

.workbook-compare-band strong {
  display: block;
  margin-bottom: 0.35rem;
  color: var(--magda-ink);
}

.workbook-compare-band p {
  margin: 0;
  color: var(--ink-muted);
  line-height: 1.75;
}

.product-price-grid {
  grid-template-columns: repeat(2, minmax(0, 1fr));
  align-items: stretch;
}

.product-price-card {
  position: relative;
}

.product-price-card.is-featured {
  border-color: rgba(103, 65, 199, 0.22);
  box-shadow: 0 1rem 2.25rem rgba(20, 20, 20, 0.1);
  transform: translateY(-0.35rem);
}

.workbook-section .product-price-grid {
  margin-top: 0.5rem;
}

.workbook-testimonials-stage {
  display: flex;
  flex-direction: column;
  gap: 1.75rem;
}

.workbook-testimonial-main,
.workbook-testimonial-note {
  position: relative;
  overflow: hidden;
}

.workbook-testimonial-main::before,
.workbook-testimonial-note::before {
  content: "\201C";
  position: absolute;
  font-family: Georgia, "Times New Roman", serif;
  line-height: 1;
  color: rgba(103, 65, 199, 0.14);
  pointer-events: none;
}

.workbook-testimonial-main {
  padding: 2.4rem 2.4rem 2.2rem;
  border-radius: calc(var(--radius-lg) + 0.2rem);
  background: linear-gradient(135deg, rgba(103, 65, 199, 0.14), rgba(255, 255, 255, 0.96));
  box-shadow: 0 1rem 2rem rgba(20, 20, 20, 0.08);
  transition: transform 0.24s ease, box-shadow 0.24s ease;
}

.workbook-testimonial-main::before {
  right: 1.35rem;
  top: 0.8rem;
  font-size: 7rem;
}

.workbook-testimonial-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 1.4rem;
  align-items: start;
}

.workbook-testimonial-note {
  min-height: 100%;
  padding: 1.8rem 1.8rem 1.65rem;
  border: 1px solid rgba(35, 35, 35, 0.08);
  border-radius: var(--radius-lg);
  background: rgba(255, 255, 255, 0.92);
  box-shadow: 0 0.9rem 1.8rem rgba(20, 20, 20, 0.06);
  transition: transform 0.24s ease, box-shadow 0.24s ease;
}

.workbook-testimonial-note::before {
  left: 1rem;
  top: 0.55rem;
  font-size: 4.5rem;
}

.workbook-testimonial-note.is-left {
  transform: rotate(-1.2deg);
}

.workbook-testimonial-note.is-right {
  transform: translateY(1.2rem) rotate(1.4deg);
}

.workbook-testimonial-main .eyebrow {
  margin-bottom: 0.85rem;
}

.workbook-testimonial-text {
  position: relative;
  z-index: 1;
  margin: 0;
  color: var(--magda-ink);
  line-height: 1.9;
}

.workbook-testimonial-main .workbook-testimonial-text {
  max-width: 56rem;
  font-size: 1.18rem;
}

.workbook-testimonial-note .workbook-testimonial-text {
  padding-top: 1rem;
  color: var(--ink-muted);
}

.workbook-testimonial-note:hover {
  transform: translateY(-0.18rem) rotate(0deg);
  box-shadow: 0 1.1rem 2rem rgba(20, 20, 20, 0.09);
}

.workbook-testimonial-main:hover {
  transform: translateY(-0.16rem);
  box-shadow: 0 1.15rem 2.1rem rgba(20, 20, 20, 0.1);
}

.workbook-final-section .inner {
  max-width: 72rem;
}

.workbook-cta-band {
  position: relative;
  display: grid;
  grid-template-columns: minmax(14rem, 0.85fr) minmax(0, 1.15fr);
  gap: 2rem;
  align-items: center;
  padding: 3.4rem 2.25rem 2rem;
  border-radius: var(--radius-lg);
  background: linear-gradient(135deg, #4f36c9 0%, #5746e3 65%, #4436d7 100%);
  box-shadow: 0 1rem 2rem rgba(20, 20, 20, 0.12);
}

.workbook-cta-band > .eyebrow {
  position: absolute;
  top: 1.1rem;
  left: 2.25rem;
  margin: 0;
  z-index: 1;
}

.workbook-cta-band-copy {
  text-align: left;
}

.workbook-cta-band h2,
.workbook-cta-band .eyebrow,
.workbook-cta-band-copy p {
  color: #ffffff;
}

.workbook-cta-band-copy p {
  max-width: none;
}

.workbook-cta-band-visual {
  display: flex;
  justify-content: center;
}

.workbook-cta-cover {
  width: min(100%, 19rem);
  filter: drop-shadow(0 1rem 1.6rem rgba(20, 20, 20, 0.22));
}

.workbook-cta-band .actions {
  margin-top: 0.15rem;
  margin-bottom: 1rem;
  display: flex;
  flex-direction: column;
  gap: 0.85rem;
  align-items: flex-start;
}

.workbook-cta-band .actions li {
  width: auto;
  max-width: 100%;
  padding-left: 0;
}

.workbook-cta-band .actions .button {
  width: auto;
  max-width: 100%;
  height: auto;
  min-height: 3.25rem;
  white-space: normal;
  line-height: 1.35;
  padding-top: 0.8rem;
  padding-bottom: 0.8rem;
}

.workbook-hero-actions {
  justify-content: center;
  margin-top: 2rem;
}

@keyframes workbookHeroFadeUp {
  0% {
    opacity: 0;
    transform: translateY(1.2rem);
  }

  100% {
    opacity: 1;
    transform: translateY(0);
  }
}

.price-badge {
  display: inline-flex;
  align-items: center;
  min-height: 2rem;
  padding: 0.35rem 0.8rem;
  margin-bottom: 1rem;
  border-radius: 999px;
  background: rgba(103, 65, 199, 0.12);
  color: var(--magda-accent-alt);
  font-size: 0.76rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.price-value {
  margin: 0.9rem 0 0.55rem;
  font-size: 2.1rem;
  font-weight: 700;
  line-height: 1;
  color: var(--magda-ink);
}

.price-meta {
  color: var(--ink-muted);
}

.modal-backdrop {
  position: fixed;
  inset: 0;
  z-index: 10020;
  display: flex;
  align-items: flex-start;
  justify-content: center;
  overflow: hidden;
  padding: calc(var(--site-header-height, 4.75rem) + 1rem) 1.5rem 1.5rem;
  background: rgba(18, 17, 24, 0.62);
  backdrop-filter: blur(8px);
}

.modal-backdrop[hidden] {
  display: none !important;
}

.modal-dialog {
  position: relative;
  width: min(100%, 42rem);
  max-height: calc(100vh - var(--site-header-height, 4.75rem) - 2rem);
  overflow: hidden;
  background: #ffffff;
  border: 1px solid rgba(35, 35, 35, 0.12);
  border-radius: var(--radius-lg);
  box-shadow: 0 1.4rem 3rem rgba(0, 0, 0, 0.18);
}

.modal-scroll {
  max-height: calc(100vh - var(--site-header-height, 4.75rem) - 2rem);
  margin: 0.35rem 0.45rem 0.45rem 0;
  padding-right: 0.1rem;
}

.modal-scroll.simplebar-scrollable-y {
  padding-right: 0;
}

.modal-scroll .simplebar-mask,
.modal-scroll .simplebar-offset,
.modal-scroll .simplebar-content-wrapper {
  border-radius: inherit;
}

.modal-scroll .simplebar-content {
  padding-right: 0.2rem;
}

.modal-scroll .simplebar-track.simplebar-vertical::before,
.modal-scroll .simplebar-track.simplebar-vertical::after,
.modal-scroll .simplebar-track.simplebar-horizontal::before,
.modal-scroll .simplebar-track.simplebar-horizontal::after {
  content: none !important;
}

.modal-scroll .simplebar-track.simplebar-vertical {
  top: 0.35rem;
  right: 0.1rem;
  bottom: 0.35rem;
  width: 0.62rem;
  background: transparent;
}

.modal-scroll .simplebar-scrollbar:before {
  left: 0;
  right: 0;
  top: 0;
  bottom: 0;
  opacity: 1;
  background: rgba(103, 65, 199, 0.5);
  border: 0.14rem solid rgba(255, 255, 255, 0.96);
  border-radius: 999px;
}

.modal-scroll .simplebar-scrollbar.simplebar-visible:before,
.modal-scroll:hover .simplebar-scrollbar:before {
  opacity: 1;
}

.modal-scroll .simplebar-track.simplebar-vertical .simplebar-scrollbar:hover:before,
.modal-scroll .simplebar-track.simplebar-vertical .simplebar-scrollbar.simplebar-hover:before {
  background: rgba(103, 65, 199, 0.66);
}

.modal-close {
  position: absolute;
  top: 0.5rem;
  right: 0.55rem;
  width: 3.25rem;
  height: 3.25rem;
  padding: 0;
  border: 0;
  border-radius: 0;
  background: transparent;
  color: var(--magda-ink);
  cursor: pointer;
  display: block;
  font-size: 0;
  overflow: visible;
  text-indent: 0;
  text-align: center;
  text-decoration: none;
  appearance: none;
  -webkit-appearance: none;
  box-shadow: none;
  outline: none;
  transform-origin: center;
  transition: transform 0.18s ease, color 0.18s ease;
  z-index: 2;
}

.modal-close::before {
  -moz-osx-font-smoothing: grayscale;
  -webkit-font-smoothing: antialiased;
  content: "\f00d";
  display: block;
  font-family: "Font Awesome 5 Free";
  font-size: 1.1rem;
  font-style: normal;
  font-variant: normal;
  font-weight: 900;
  height: 1rem;
  line-height: 1rem;
  position: absolute;
  right: 0.95rem;
  text-indent: 0;
  text-rendering: auto;
  text-transform: none !important;
  top: 1rem;
  width: 1rem;
}

.modal-close:hover,
.modal-close:focus {
  transform: scale(1.1);
  color: var(--magda-accent-alt);
}

.modal-content {
  padding: 2rem;
}

.modal-content header {
  margin-bottom: 1.5rem;
}

.modal-content header p {
  margin-bottom: 0.45rem;
}

.modal-content header .eyebrow {
  margin-bottom: 0.85rem;
}

.modal-content header h2 {
  margin-bottom: 1rem;
  padding-right: 3.25rem;
}

.modal-product-summary {
  display: grid;
  grid-template-columns: 6rem minmax(0, 1fr);
  gap: 1rem;
  align-items: center;
  margin: 1rem 0 1.25rem;
  padding: 1rem;
  background: rgba(103, 65, 199, 0.06);
  border: 1px solid rgba(35, 35, 35, 0.08);
  border-radius: var(--radius-md);
}

.modal-product-summary img {
  width: 100%;
  height: auto;
  display: block;
  filter: drop-shadow(0 0.8rem 1.2rem rgba(20, 20, 20, 0.08));
}

.modal-product-summary p {
  margin: 0;
  color: var(--ink-muted);
}

.modal-content form .fields {
  margin-top: 1rem;
}

.modal-content form .field {
  margin-bottom: 1rem;
}

.modal-content form label {
  display: block;
  margin-bottom: 0.45rem;
  font-size: 0.9rem;
  font-weight: 700;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  color: var(--magda-ink);
}

.modal-content form input:not([type="checkbox"]):not([type="radio"]),
.modal-content form textarea,
.modal-content form select {
  width: 100%;
}

.modal-content .field-help {
  margin: 0.45rem 0 0;
  color: var(--ink-soft);
  font-size: 0.92rem;
}

.honeypot-field {
  position: absolute !important;
  left: -9999px !important;
  top: auto !important;
  width: 1px !important;
  height: 1px !important;
  overflow: hidden !important;
  opacity: 0 !important;
  pointer-events: none !important;
}

.modal-content .consent-field {
  position: relative;
  display: block;
  padding-left: 0.1rem;
}

.modal-content .consent-field input[type="checkbox"] {
  position: absolute;
  left: 0;
  top: 0;
  width: 1em;
  margin: 0;
}

.modal-content .consent-field label {
  margin: 0;
  font-size: 0.95rem;
  font-weight: 400;
  letter-spacing: 0;
  line-height: 1.4;
  text-transform: none;
  color: var(--ink-muted);
}

.modal-content input[type="checkbox"] + label:before {
  top: 0.02rem;
}

.modal-content input[type="checkbox"]:checked + label:before {
  background-color: var(--magda-accent-alt);
  border-color: var(--magda-accent-alt);
  color: #ffffff;
}

.modal-content input[type="checkbox"]:focus + label:before {
  border-color: var(--magda-accent-alt);
  box-shadow: 0 0 0 1px var(--magda-accent-alt);
}

.modal-content [data-contact-status] {
  margin: 1rem 0 0;
}

.modal-content .actions {
  margin-top: 1.4rem;
  text-align: center;
}

.priority-offer-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 1.5rem;
  margin-top: 2rem;
}

.priority-offer-card {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 0.9rem;
  min-height: 100%;
}

.priority-offer-card p {
  margin: 0;
  color: var(--ink-muted);
}

.priority-offer-card .actions {
  margin-top: auto;
  width: 100%;
  text-align: left;
}

.service-overview-section-intro {
  max-width: 38rem;
  margin: 2.75rem auto 0;
  text-align: center;
}

.service-overview-card {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  height: 100%;
  background: rgba(255, 255, 255, 0.88);
}

.service-overview-card h3,
.service-detail-card h2 {
  margin-bottom: 0.85rem;
  color: var(--magda-ink);
}

.service-overview-card p {
  flex: 1 1 auto;
  margin-bottom: 0;
  color: var(--ink-muted);
}

.service-detail-card,
.service-detail-card h2,
.service-detail-card p,
.service-detail-card li,
.service-detail-card ul {
  color: var(--ink-muted);
}

.service-detail-card .eyebrow {
  color: var(--magda-accent-alt) !important;
}

.service-overview-link {
  display: inline-flex;
  align-items: center;
  margin-top: 1rem;
  font-size: 0.82rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-decoration: none;
  text-transform: uppercase;
  color: var(--magda-accent-alt) !important;
}

.service-overview-link:hover,
.service-overview-link:focus {
  color: var(--magda-accent-alt-strong) !important;
}

.service-overview-link::after {
  content: "→";
  margin-left: 0.45rem;
  font-size: 0.95em;
}

.service-detail-card {
  scroll-margin-top: 6.5rem;
  transition: box-shadow 0.35s ease, border-color 0.35s ease, background-color 0.35s ease;
}

.service-detail-card:target {
  animation: service-target-highlight 2.1s ease;
  border-color: color-mix(in srgb, var(--magda-accent-alt) 44%, rgba(35, 35, 35, 0.12)) !important;
  box-shadow: 0 0 0 1px rgba(255, 255, 255, 0.12), 0 1rem 2rem var(--shadow-soft), 0 0 0 0.35rem color-mix(in srgb, var(--magda-accent-alt) 18%, transparent);
}

@keyframes service-target-highlight {
  0% {
    background-color: color-mix(in srgb, var(--magda-accent-alt) 14%, rgba(255, 255, 255, 0.92));
    border-color: color-mix(in srgb, var(--magda-accent-alt) 65%, rgba(35, 35, 35, 0.12));
    box-shadow: 0 0 0 0.45rem color-mix(in srgb, var(--magda-accent-alt) 22%, transparent);
  }

  100% {
    background-color: rgba(255, 255, 255, 0.78);
    border-color: color-mix(in srgb, var(--magda-accent-alt) 44%, rgba(35, 35, 35, 0.12));
    box-shadow: 0 0 0 1px rgba(255, 255, 255, 0.12), 0 1rem 2rem var(--shadow-soft), 0 0 0 0.35rem color-mix(in srgb, var(--magda-accent-alt) 18%, transparent);
  }
}

.card p:last-child,
.card ul:last-child {
  margin-bottom: 0;
}

.card ul,
.list {
  padding-left: 1.1rem;
  margin: 1rem 0 0;
}

.note,
.placeholder {
  background: var(--soft);
  padding: 1.5rem;
  border-radius: var(--radius-md);
}

.section.alt {
  background: var(--soft);
}

.podcast-page-shell .wrapper {
  padding: 4.25rem 0;
  overflow: hidden;
}

.podcast-page-shell .wrapper:first-child {
  padding-top: 0;
}

.podcast-page-shell .inner {
  margin: 0 auto;
  max-width: 100%;
  width: min(72rem, calc(100% - 2rem));
}

.podcast-hero-section {
  position: relative;
  background: #171717;
}

.podcast-hero-grid {
  display: grid;
  grid-template-columns: minmax(0, 1.05fr) minmax(18rem, 0.95fr);
  gap: 0;
  align-items: center;
  padding: 2.75rem 0;
}

.podcast-hero-copy {
  padding: 4.5rem 4.5rem 3.25rem;
  max-width: 43rem;
}

.podcast-hero-copy .eyebrow {
  color: rgba(255, 255, 255, 0.74);
}

.podcast-hero-copy > * {
  opacity: 0;
  transform: translateY(1.2rem);
  animation: workbookHeroFadeUp 0.7s ease forwards;
}

.podcast-hero-copy > *:nth-child(1) { animation-delay: 0.08s; }
.podcast-hero-copy > *:nth-child(2) { animation-delay: 0.16s; }
.podcast-hero-copy > *:nth-child(3) { animation-delay: 0.24s; }
.podcast-hero-copy > *:nth-child(4) { animation-delay: 0.32s; }
.podcast-hero-copy > *:nth-child(5) { animation-delay: 0.4s; }

.podcast-hero-copy h1 {
  font-size: clamp(2.9rem, 5vw, 4.6rem);
  line-height: 1.04;
  margin-bottom: 1rem;
  color: #ffffff;
}

.podcast-hero-copy .lead {
  margin-bottom: 0;
  max-width: 35rem;
  font-size: 1.08rem;
  line-height: 1.82;
  color: #ffffff;
}

.podcast-hero-supporting {
  max-width: 33rem;
  margin: 1.25rem 0 0;
  color: rgba(255, 255, 255, 0.82);
}

.podcast-hero-actions {
  margin-top: 1.9rem;
}

.podcast-hero-chip-row {
  display: flex;
  flex-wrap: wrap;
  gap: 0.7rem;
  margin: 1.4rem 0 0;
}

.podcast-hero-chip-row span {
  display: inline-flex;
  align-items: center;
  min-height: 2rem;
  padding: 0.38rem 0.82rem;
  border: 1px solid rgba(255, 255, 255, 0.14);
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.08);
  color: #ffffff;
  font-size: 0.82rem;
  font-weight: 700;
  letter-spacing: 0.04em;
}

.podcast-hero-visual-wrap {
  display: flex;
  justify-content: center;
  align-items: center;
  width: 100%;
}

.podcast-hero-panel {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 100%;
  padding: 1.6rem 1.8rem;
  background: transparent;
  box-shadow: none;
}

.podcast-hero-stage {
  position: relative;
  overflow: hidden;
  width: 100%;
  height: clamp(21rem, 32vw, 27rem);
  opacity: 0;
  transform: translateY(1.4rem);
  animation: workbookHeroFadeUp 0.85s ease 0.32s forwards;
}

.podcast-hero-brand,
.podcast-hero-cover,
.podcast-hero-spotify {
  position: absolute;
  display: block;
  transition: transform 0.28s ease, filter 0.28s ease;
}

.podcast-hero-brand {
  left: 1rem;
  top: 1rem;
  width: 44%;
  max-width: 14rem;
  padding: 0.7rem 0.8rem;
  border-radius: 1rem;
  background: #171717;
  box-shadow: none;
  z-index: 6;
}

.podcast-hero-logo {
  display: block;
  width: 100%;
  height: auto;
  border-radius: 0;
}

.podcast-hero-spotify {
  right: 3rem;
  bottom: 1rem;
  z-index: 5;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 3.6rem;
  height: 3.6rem;
  border-radius: 999px;
  background: #1db954;
  box-shadow: 0 1rem 2rem rgba(0, 0, 0, 0.22);
  color: #ffffff;
  font-size: 1.6rem;
}

.podcast-hero-shape {
  position: absolute;
  border-radius: 0.95rem;
  transition: transform 0.28s ease, opacity 0.28s ease;
}

.podcast-hero-shape-a {
  left: 0.6rem;
  bottom: 2.1rem;
  width: 7.6rem;
  height: 4.7rem;
  background: rgba(246, 188, 45, 0.74);
  transform: rotate(-10deg);
}

.podcast-hero-shape-b {
  right: 1.2rem;
  top: 3rem;
  width: 8.1rem;
  height: 5rem;
  background: rgba(103, 65, 199, 0.36);
  transform: rotate(9deg);
}

.podcast-hero-cover {
  border-radius: 1.15rem;
  box-shadow: 0 1rem 2.1rem rgba(0, 0, 0, 0.26);
}

.podcast-hero-cover.is-main {
  width: 46%;
  right: 2.6rem;
  bottom: 1.35rem;
  z-index: 4;
}

.podcast-hero-cover.is-left {
  width: 29%;
  left: 2.7rem;
  bottom: 1.5rem;
  transform: rotate(-9deg);
  z-index: 1;
}

.podcast-hero-cover.is-right {
  width: 28%;
  right: 1rem;
  top: 6.4rem;
  transform: rotate(9deg);
  z-index: 2;
}

.podcast-hero-stage:hover .podcast-hero-brand {
  transform: translateY(-0.18rem);
}

.podcast-hero-stage:hover .podcast-hero-spotify {
  transform: translateY(-0.16rem) scale(1.03);
}

.podcast-hero-stage:hover .podcast-hero-cover.is-main {
  transform: translateY(-0.2rem) scale(1.02);
  filter: drop-shadow(0 1.35rem 2.15rem rgba(0, 0, 0, 0.24));
}

.podcast-hero-stage:hover .podcast-hero-cover.is-left {
  transform: rotate(-6deg) translateY(-0.18rem);
}

.podcast-hero-stage:hover .podcast-hero-cover.is-right {
  transform: rotate(6deg) translateY(-0.18rem);
}

.podcast-hero-stage:hover .podcast-hero-shape-a {
  transform: rotate(-6deg) translate(-0.12rem, -0.12rem);
}

.podcast-hero-stage:hover .podcast-hero-shape-b {
  transform: rotate(13deg) translate(0.12rem, -0.14rem);
}

@media screen and (min-width: 981px) and (max-width: 1440px) and (max-height: 860px) {
  .podcast-hero-grid {
    padding: 2rem 0 1.4rem;
  }

  .podcast-hero-copy {
    padding: 3.75rem 3.75rem 2.2rem;
  }

  .podcast-hero-copy h1 {
    font-size: clamp(2.5rem, 4.2vw, 3.65rem);
  }

  .podcast-hero-copy .lead,
  .podcast-hero-supporting {
    font-size: 0.98rem;
    line-height: 1.68;
  }

  .podcast-hero-actions {
    margin-top: 1.35rem;
  }

  .podcast-hero-stage {
    height: clamp(18rem, 27vw, 22.5rem);
  }

  .podcast-hero-brand {
    max-width: 12.25rem;
  }

  .podcast-hero-spotify {
    right: 2.2rem;
    width: 3.15rem;
    height: 3.15rem;
  }
}

@media screen and (min-width: 981px) and (max-width: 1440px) and (max-height: 760px) {
  .podcast-hero-grid {
    padding: 1.45rem 0 1rem;
  }

  .podcast-hero-copy {
    padding: 3rem 3.1rem 1.7rem;
  }

  .podcast-hero-copy .eyebrow {
    font-size: 0.78rem;
  }

  .podcast-hero-copy h1 {
    font-size: clamp(2.2rem, 3.7vw, 3.1rem);
  }

  .podcast-hero-copy .lead,
  .podcast-hero-supporting {
    font-size: 0.93rem;
    line-height: 1.56;
  }

  .podcast-hero-supporting {
    margin-top: 0.85rem;
  }

  .podcast-hero-stage {
    height: clamp(15.75rem, 24vw, 19.5rem);
  }

  .podcast-hero-brand {
    left: 0.8rem;
    top: 0.8rem;
    max-width: 10.5rem;
    padding: 0.55rem 0.65rem;
  }

  .podcast-hero-spotify {
    right: 1.7rem;
    bottom: 0.8rem;
    width: 2.8rem;
    height: 2.8rem;
    font-size: 1.2rem;
  }

  .podcast-hero-cover.is-main {
    right: 1.9rem;
    bottom: 1rem;
  }

  .podcast-hero-cover.is-left {
    left: 1.9rem;
    bottom: 1.1rem;
  }

  .podcast-hero-cover.is-right {
    right: 0.75rem;
    top: 5.35rem;
  }
}

.podcast-editorial-split {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(18rem, 0.9fr);
  gap: 2rem;
  align-items: center;
}

.podcast-copy-panel p {
  color: var(--ink-muted);
}

.podcast-topic-cloud {
  position: relative;
  display: flex;
  flex-wrap: wrap;
  gap: 0.75rem;
  align-content: start;
  padding: 1.15rem 2.8rem 0 0;
}

.podcast-topic-cloud span {
  display: inline-flex;
  align-items: center;
  min-height: 1.6rem;
  padding: 0;
  color: rgba(23, 23, 23, 0.78);
  font-size: 0.9rem;
  font-weight: 700;
  letter-spacing: 0.04em;
  transition: transform 0.24s ease, color 0.24s ease, letter-spacing 0.24s ease;
}

.podcast-topic-cloud .podcast-topic-cloud-mark {
  position: absolute;
  right: 0;
  top: -0.35rem;
  min-height: 0;
  color: rgba(103, 65, 199, 0.24);
  font-size: clamp(3.8rem, 7vw, 5.8rem);
  font-weight: 700;
  line-height: 1;
  pointer-events: none;
}

.podcast-topic-cloud span:not(.podcast-topic-cloud-mark)::before {
  content: "#";
  margin-right: 0.18rem;
  color: #6741c7;
}

.podcast-topic-cloud span:nth-child(2) {
  transform: translate(0.05rem, 0.16rem) rotate(-2deg);
}

.podcast-topic-cloud span:nth-child(3) {
  transform: translate(0.38rem, -0.06rem) rotate(1deg);
}

.podcast-topic-cloud span:nth-child(4) {
  transform: translate(-0.08rem, 0.22rem) rotate(-1deg);
}

.podcast-topic-cloud span:nth-child(5) {
  transform: translate(0.28rem, 0.3rem) rotate(1deg);
}

.podcast-topic-cloud span:nth-child(6) {
  transform: translate(-0.16rem, 0.04rem) rotate(-1deg);
}

.podcast-topic-cloud span:nth-child(7) {
  transform: translate(0.16rem, 0.22rem) rotate(1deg);
}

.podcast-topic-cloud span:nth-child(8) {
  transform: translate(0.42rem, -0.04rem) rotate(-1deg);
}

.podcast-topic-cloud span:nth-child(9) {
  transform: translate(0.04rem, 0.16rem) rotate(1deg);
}

.podcast-topic-cloud span:not(.podcast-topic-cloud-mark):hover {
  transform: translateY(-0.16rem) scale(1.03);
  color: var(--magda-ink);
  letter-spacing: 0.055em;
}

.podcast-support-band {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(12rem, 15rem);
  grid-template-areas:
    "copy visual"
    "actions visual";
  gap: 1.5rem;
  align-items: center;
  margin-top: 2.3rem;
  padding: 2rem;
  border-radius: var(--radius-lg);
  background: linear-gradient(135deg, rgba(103, 65, 199, 0.08), rgba(255, 255, 255, 0.94));
}

.podcast-support-band > div:first-child {
  grid-area: copy;
}

.podcast-support-band p:last-child {
  margin-bottom: 0;
  color: var(--ink-muted);
}

.podcast-support-band .actions {
  grid-area: actions;
  justify-content: flex-start;
  margin-top: -0.25rem;
}

.podcast-support-visual {
  grid-area: visual;
  align-self: start;
  position: relative;
  width: min(100%, 15rem);
  min-height: 9rem;
  margin: 0 auto;
}

.podcast-support-shape {
  position: absolute;
  border-radius: 1rem;
  transition: transform 0.28s ease, opacity 0.28s ease;
}

.podcast-support-shape.is-violet {
  left: 0.6rem;
  top: 0.6rem;
  width: 5rem;
  height: 3.4rem;
  background: rgba(103, 65, 199, 0.2);
  transform: rotate(-10deg);
}

.podcast-support-shape.is-gold {
  right: 0.55rem;
  bottom: 0.6rem;
  width: 4.6rem;
  height: 3rem;
  background: rgba(246, 188, 45, 0.58);
  transform: rotate(11deg);
}

.podcast-support-token {
  position: absolute;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-width: 8.8rem;
  min-height: 3.2rem;
  padding: 0.7rem 0.95rem;
  border-radius: 1rem;
  background: rgba(255, 255, 255, 0.92);
  box-shadow: 0 1rem 1.8rem rgba(20, 20, 20, 0.08);
  color: var(--magda-ink);
  transition: transform 0.24s ease, box-shadow 0.24s ease;
}

.podcast-support-token img {
  display: block;
  max-width: 100%;
  width: auto;
  height: 1.2rem;
}

.podcast-support-token.is-spotify {
  left: 0.2rem;
  top: 1.1rem;
}

.podcast-support-token.is-spotify img {
  height: 1.05rem;
}

.podcast-support-token.is-coffee {
  right: 0.2rem;
  bottom: 1rem;
}

.podcast-support-token.is-coffee img {
  height: 0.92rem;
}

.podcast-support-band:hover .podcast-support-token.is-spotify {
  transform: translateY(-0.14rem) rotate(-1deg);
  box-shadow: 0 1.1rem 2rem rgba(20, 20, 20, 0.1);
}

.podcast-support-band:hover .podcast-support-token.is-coffee {
  transform: translateY(-0.14rem) rotate(1deg);
  box-shadow: 0 1.1rem 2rem rgba(20, 20, 20, 0.1);
}

.podcast-support-band:hover .podcast-support-shape.is-violet {
  transform: rotate(-6deg) translate(-0.12rem, -0.08rem);
}

.podcast-support-band:hover .podcast-support-shape.is-gold {
  transform: rotate(14deg) translate(0.12rem, -0.08rem);
}

.podcast-platform-band {
  display: grid;
  grid-template-columns: minmax(16rem, 0.86fr) minmax(0, 1.14fr);
  gap: 2.25rem;
  align-items: center;
  margin-bottom: 2.5rem;
}

.podcast-platform-visual {
  display: flex;
  justify-content: center;
  align-items: center;
}

.podcast-platform-stage {
  position: relative;
  width: min(100%, 24rem);
  min-height: 23rem;
}

.podcast-platform-shape {
  position: absolute;
  border-radius: 1rem;
  transition: transform 0.28s ease, opacity 0.28s ease;
}

.podcast-platform-shape.is-violet {
  left: 0.6rem;
  top: 2.4rem;
  width: 8rem;
  height: 5rem;
  background: rgba(103, 65, 199, 0.26);
  transform: rotate(-12deg);
}

.podcast-platform-shape.is-gold {
  right: 1rem;
  bottom: 1.8rem;
  width: 7.2rem;
  height: 4.4rem;
  background: rgba(246, 188, 45, 0.64);
  transform: rotate(10deg);
}

.podcast-platform-cover {
  position: relative;
  display: block;
  width: min(100%, 18.5rem);
  margin: 0 auto;
  border-radius: 1.25rem;
  box-shadow: 0 1.25rem 2.4rem rgba(20, 20, 20, 0.16);
  z-index: 2;
  transition: transform 0.28s ease, filter 0.28s ease;
}

.podcast-platform-spotify {
  position: absolute;
  right: 0.1rem;
  top: 0.9rem;
  z-index: 3;
  display: inline-flex;
  align-items: center;
  gap: 0.55rem;
  padding: 0.6rem 0.95rem;
  border-radius: 999px;
  background: rgba(18, 18, 18, 0.96);
  box-shadow: 0 1rem 1.8rem rgba(20, 20, 20, 0.18);
  color: #ffffff;
  font-size: 0.88rem;
  font-weight: 700;
  letter-spacing: 0.04em;
}

.podcast-platform-spotify .icon {
  color: #1db954;
  font-size: 1.1rem;
}

.podcast-platform-band:hover .podcast-platform-cover {
  transform: translateY(-0.18rem) scale(1.02);
  filter: drop-shadow(0 1.1rem 1.8rem rgba(20, 20, 20, 0.14));
}

.podcast-platform-band:hover .podcast-platform-shape.is-violet {
  transform: rotate(-8deg) translate(-0.12rem, -0.1rem);
}

.podcast-platform-band:hover .podcast-platform-shape.is-gold {
  transform: rotate(13deg) translate(0.12rem, -0.1rem);
}

.podcast-platform-copy p:not(.eyebrow) {
  color: var(--ink-muted);
}

.podcast-final-band {
  display: grid;
  grid-template-columns: minmax(12rem, 0.72fr) minmax(0, 1.28fr);
  gap: 2rem;
  align-items: center;
  padding: 2rem;
  border-radius: var(--radius-lg);
  background: linear-gradient(135deg, rgba(18, 18, 18, 0.96), rgba(38, 38, 38, 0.96));
  box-shadow: 0 1.35rem 3rem rgba(20, 20, 20, 0.2);
}

.podcast-final-brand {
  display: flex;
  justify-content: center;
  align-items: center;
  padding: 1rem;
}

.podcast-final-brand img {
  display: block;
  width: min(100%, 17rem);
  height: auto;
  border-radius: 0;
}

.podcast-final-copy .eyebrow,
.podcast-final-copy h2,
.podcast-final-copy p {
  color: #ffffff;
}

.podcast-final-copy p {
  margin-bottom: 0;
  max-width: 34rem;
}

.podcast-final-copy .actions {
  margin-top: 1.5rem;
}

.site-subpage-footer {
  background: #f7efe9;
  border-top: 1px solid rgba(35, 35, 35, 0.12);
  padding: 0;
}

.site-subpage-footer .inner {
  display: grid;
  grid-template-columns: minmax(0, 1.1fr) minmax(0, 0.9fr) minmax(0, 0.9fr);
  gap: 1.5rem;
  align-items: start;
  margin: 0 auto;
  width: min(72rem, calc(100% - 2rem));
  padding-top: 1.35rem;
  padding-bottom: 0.9rem;
}

.site-subpage-footer .footer-column h4,
.site-subpage-footer .footer-column p,
.site-subpage-footer .footer-column li,
.site-subpage-footer .footer-column a,
.site-subpage-footer .copyright {
  color: var(--magda-ink);
  font-size: 0.92rem;
}

.site-subpage-footer .footer-column {
  border-radius: var(--radius-md);
}

.site-subpage-footer .footer-column h4 {
  margin-bottom: 0.5rem;
  font-size: 0.9rem;
  font-weight: 700;
  letter-spacing: 0.04em;
  text-transform: uppercase;
}

.site-subpage-footer .footer-brand-title {
  margin: 0 0 0.45rem;
  font-size: 1.1rem;
  line-height: 1.2;
  color: var(--magda-ink);
}

.site-subpage-footer .footer-brand-copy {
  margin: 0;
  max-width: 25rem;
  color: rgba(35, 35, 35, 0.82);
}

.site-subpage-footer .footer-links-list,
.site-subpage-footer .footer-contact-list {
  list-style: none;
  margin: 0;
  padding: 0;
}

.site-subpage-footer .footer-links-list li,
.site-subpage-footer .footer-contact-list li {
  margin: 0 0 0.35rem;
}

.site-subpage-footer .footer-links-list li:last-child,
.site-subpage-footer .footer-contact-list li:last-child {
  margin-bottom: 0;
}

.site-subpage-footer .footer-links-list a,
.site-subpage-footer .footer-contact-list a,
.site-subpage-footer .copyright a {
  color: var(--magda-accent);
  font-weight: 700;
  text-decoration: none;
}

.site-subpage-footer .footer-links-list a:hover,
.site-subpage-footer .footer-links-list a:focus,
.site-subpage-footer .footer-contact-list a:hover,
.site-subpage-footer .footer-contact-list a:focus,
.site-subpage-footer .copyright a:hover,
.site-subpage-footer .copyright a:focus {
  color: var(--magda-accent-strong);
}

.site-subpage-footer .copyright {
  display: block;
  margin: 0;
  padding: 0.55rem 1rem 0.35rem;
  text-align: center;
  font-size: 0.84rem;
  line-height: 1.45;
  border-top: 1px solid rgba(35, 35, 35, 0.12);
}

@media (max-width: 900px) {
  .workbook-editorial-split.is-reversed .workbook-figure-stage {
    order: 1;
  }

  .workbook-editorial-split.is-reversed .workbook-editorial-copy {
    order: 2;
  }

  .grid,
  .two-col {
    grid-template-columns: 1fr;
  }

  .product-promo-grid,
  .product-split-grid,
  .product-price-grid,
  .priority-offer-grid,
  .home-workbook-promo-strip,
  .podcast-platform-band {
    grid-template-columns: 1fr;
  }

  .workbook-hero-grid,
  .workbook-editorial-split,
  .workbook-editorial-split.is-reversed,
  .workbook-process-grid,
  .workbook-inside-grid,
  .workbook-compare-band,
  .workbook-scenario-band,
  .workbook-cta-band,
  .home-workbook-promo,
  .podcast-hero-grid,
  .podcast-editorial-split,
  .podcast-final-band,
  .podcast-support-band {
    grid-template-columns: 1fr;
  }

  .podcast-support-band {
    grid-template-areas:
      "copy"
      "visual"
      "actions";
  }

  .service-overview-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .product-price-card.is-featured {
    transform: none;
  }

  .workbook-cta-band {
    grid-template-columns: 1fr;
  }

  .workbook-content-visual {
    min-height: auto;
  }

  .home-workbook-promo-copy .actions {
    justify-content: center;
  }

  .home-workbook-promo-stage {
    height: 21rem;
  }

  .podcast-hero-copy {
    padding: 3rem 3rem 2.2rem;
    max-width: none;
  }

  .podcast-hero-visual-wrap {
    padding: 0 1.4rem 2.4rem;
  }

  .podcast-support-band .actions {
    margin-top: 0;
  }

  .podcast-support-visual {
    width: min(100%, 14rem);
    min-height: 7.75rem;
  }

  .podcast-platform-stage {
    width: min(100%, 20rem);
    min-height: 19.5rem;
  }

  .podcast-platform-spotify {
    right: 0.3rem;
    top: 0.6rem;
  }

  .podcast-final-brand {
    justify-content: flex-start;
  }

  .site-subpage-footer .inner {
    grid-template-columns: 1fr;
    gap: 1rem;
  }

  .workbook-preview-device {
    position: relative;
    display: block;
    width: min(100%, 24rem);
    max-width: 100%;
    left: auto;
    top: auto;
    margin: 0 auto;
  }

  .workbook-testimonial-grid {
    grid-template-columns: 1fr;
  }

  .workbook-testimonial-note.is-left,
  .workbook-testimonial-note.is-right {
    transform: none;
  }

  .workbook-hero-grid,
  .workbook-hero-visual-wrap,
  .workbook-hero-panel {
    min-height: auto;
  }

  .workbook-hero-stage {
    height: clamp(18rem, 40vw, 23rem);
  }

  .workbook-hero-copy {
    order: 2;
    padding: 2.25rem 2rem 2.75rem;
    max-width: none;
  }

  .workbook-hero-visual-wrap {
    order: 1;
  }
}

@media (max-width: 640px) {
  .service-overview-grid {
    grid-template-columns: 1fr;
  }

  .modal-backdrop {
    padding: calc(var(--site-header-height, 3.7rem) + 0.8rem) 1rem 1rem;
  }

  .modal-content {
    padding: 1.5rem;
  }

  .modal-close {
    top: 0.25rem;
    right: 0.3rem;
    width: 3rem;
    height: 3rem;
  }

  .modal-close::before {
    right: 0.88rem;
    top: 0.92rem;
  }

  .modal-product-summary {
    grid-template-columns: 1fr;
  }

  .modal-product-summary img {
    width: min(10rem, 100%);
    margin: 0 auto;
  }

  .workbook-number-grid {
    grid-template-columns: 1fr;
  }

  .workbook-page .wrapper {
    padding: 3.5rem 0;
  }

  .workbook-hero-panel {
    min-height: auto;
    padding: 1rem;
  }

  .podcast-page-shell .wrapper {
    padding: 3.5rem 0;
  }

  .podcast-hero-grid {
    padding: 1.25rem 0 0.5rem;
  }

  .podcast-hero-panel {
    min-height: auto;
    padding: 1.1rem;
  }

  .podcast-hero-copy {
    order: 1;
    padding: 2.25rem 2rem 1.5rem;
  }

  .podcast-hero-visual-wrap {
    order: 2;
    padding: 0 0 1rem;
    min-height: auto;
  }

  .podcast-hero-stage {
    height: clamp(18rem, 52vw, 22rem);
  }

  .podcast-hero-brand {
    left: 0.7rem;
    top: 0.7rem;
    width: 45%;
    max-width: 12.5rem;
    padding: 0.55rem 0.6rem;
  }

  .podcast-hero-spotify {
    right: 2.2rem;
    bottom: 0.7rem;
    width: 3.1rem;
    height: 3.1rem;
    font-size: 1.35rem;
  }

  .podcast-hero-cover.is-main {
    width: 47%;
    right: 1.9rem;
    bottom: 1rem;
  }

  .podcast-hero-cover.is-left {
    width: 29%;
    left: 1.4rem;
    bottom: 1.15rem;
  }

  .podcast-hero-cover.is-right {
    width: 28%;
    right: 0.4rem;
    top: 5.4rem;
  }

  .workbook-hero-device {
    width: auto;
    height: 88%;
    max-width: 78%;
    left: 50%;
    top: 50%;
    transform: translate(-56%, -50%);
  }

  .workbook-hero-magda {
    width: auto;
    height: 78%;
    max-width: 48%;
    right: 0.2rem;
    bottom: 0;
  }

  .workbook-hero-stage:hover .workbook-hero-device {
    transform: translate(-56%, -50%) scale(1.015);
  }

  .workbook-hero-sheet-b {
    width: 7rem;
    height: 4.8rem;
    right: 2rem;
    bottom: 2.9rem;
  }

  .workbook-hero-grid {
    min-height: auto;
    padding: 1.25rem 0 0.5rem;
  }

  .workbook-hero-visual-wrap {
    order: 2;
    min-height: auto;
  }

  .workbook-hero-stage {
    height: 15.5rem;
  }

  .workbook-hero-copy {
    order: 1;
  }

  .workbook-hero-chip-row {
    gap: 0.55rem;
  }

  .workbook-hero-chip-row span {
    font-size: 0.76rem;
  }

  .home-workbook-promo-stage {
    height: 18.5rem;
  }

  .podcast-hero-stage {
    height: 17.25rem;
  }

  .podcast-hero-copy {
    padding: 2rem 1.5rem 1rem;
  }

  .podcast-hero-supporting {
    margin-top: 1rem;
  }

  .podcast-hero-brand {
    left: 0.45rem;
    top: 0.45rem;
    width: 46%;
    max-width: 11rem;
    padding: 0.45rem 0.5rem;
  }

  .podcast-hero-spotify {
    right: 1.2rem;
    bottom: 0.55rem;
    width: 2.7rem;
    height: 2.7rem;
    font-size: 1.15rem;
  }

  .podcast-hero-cover.is-main {
    width: 48%;
    right: 1rem;
    bottom: 0.8rem;
  }

  .podcast-hero-cover.is-left {
    width: 29%;
    left: 0.8rem;
    bottom: 0.9rem;
  }

  .podcast-hero-cover.is-right {
    width: 28%;
    right: 0.2rem;
    top: 4.85rem;
  }

  .podcast-hero-chip-row span,
  .podcast-topic-cloud span {
    font-size: 0.76rem;
  }

  .podcast-support-band,
  .podcast-final-band {
    padding: 1.5rem;
  }

  .podcast-support-band {
    grid-template-columns: 1fr;
  }

  .podcast-support-visual {
    width: min(100%, 15rem);
    margin: 0 auto;
  }

  .podcast-support-token {
    min-width: 7.8rem;
    min-height: 2.9rem;
  }

  .podcast-support-token.is-spotify {
    left: 0.1rem;
    top: 0.95rem;
  }

  .podcast-support-token.is-coffee {
    right: 0.1rem;
    bottom: 0.85rem;
  }

  .podcast-platform-stage {
    width: min(100%, 16rem);
    min-height: 16rem;
  }

  .site-subpage-footer .inner {
    padding-top: 1.1rem;
    padding-bottom: 0.75rem;
  }

  .podcast-platform-cover {
    width: min(100%, 14rem);
  }

  .podcast-platform-spotify {
    right: 0.1rem;
    top: 0.35rem;
    padding: 0.52rem 0.8rem;
    font-size: 0.8rem;
  }

  .home-workbook-promo-device {
    width: min(100%, 12rem);
  }

  .home-workbook-promo-page.is-notes {
    left: 0.5rem;
    bottom: 1.2rem;
    width: 36%;
  }

  .home-workbook-promo-page.is-exercise {
    right: 0.5rem;
    top: 1rem;
    width: 40%;
  }

  .workbook-spotlights article {
    margin-bottom: 1.5rem;
    padding: 1.7rem 1.7rem 1rem;
  }

  .workbook-figure-stage {
    min-height: 18rem;
  }

  .workbook-plain-visual img {
    max-width: min(100%, 18rem);
    max-height: 24rem;
  }

  .workbook-plain-visual.is-tablet img {
    max-width: min(100%, 19rem);
    max-height: 21rem;
  }

  .workbook-process-visual {
    min-height: 22rem;
  }

  .workbook-process-page.is-chapters {
    width: 44%;
    left: 0.8rem;
    top: 1rem;
  }

  .workbook-process-page.is-lecture {
    width: 54%;
    right: 0.85rem;
    top: 1.4rem;
  }

  .workbook-process-page.is-exercise {
    width: 45%;
    left: 1rem;
    bottom: 1.8rem;
  }

  .workbook-process-page.is-notes {
    width: 39%;
    right: 1rem;
    bottom: 0.9rem;
  }

  .workbook-testimonial-main {
    padding: 1.85rem 1.45rem 1.7rem;
  }

  .workbook-testimonial-main::before {
    right: 0.8rem;
    top: 0.65rem;
    font-size: 5.2rem;
  }

  .workbook-testimonial-note {
    padding: 1.55rem 1.35rem 1.45rem;
  }

  .workbook-scenario-band,
  .workbook-compare-band,
  .workbook-cta-band {
    gap: 1rem;
  }

  .workbook-feature-band li {
    padding: 0;
  }

  .workbook-cta-band-copy {
    text-align: center;
  }

  .workbook-cta-band > .eyebrow {
    left: 1.35rem;
  }

  .workbook-cta-band-visual {
    justify-content: center;
  }

  .workbook-cta-band {
    padding: 1.7rem 1.35rem;
    padding-top: 3rem;
  }
}
