@import url("https://fonts.googleapis.com/css2?family=Poppins:wght@400;500;600;700;800;900&display=swap");

:root {
  --font-main: "Poppins", Arial, Helvetica, sans-serif;
  --ink: #1f1428;
  --plum: #4b2a5c;
  --grape: #75509c;
  --lavender: #9c86c6;
  --mist: #f5f1fa;
  --white: #ffffff;
  --mint: #c9b7e8;
  --gold: #f2c979;
  --line: rgba(75, 42, 92, 0.16);
  --shadow: 0 22px 60px rgba(31, 20, 40, 0.14);
}

/* Homepage v2: editorial software house direction */
.sm-home-v2 {
  --sm-ink: #1d1521;
  --sm-purple: #431e4f;
  --sm-purple-deep: #431e4f;
  --sm-lavender: #b794db;
  --sm-lilac: #f3ecf9;
  --sm-line: #ded8e2;
  --sm-muted: #6d6670;
  --sm-gold: #e7c56b;
  color: var(--sm-ink);
  background: #fff;
  font-family: "Poppins", sans-serif;
}

.sm-home-v2 *,
.sm-home-v2 *::before,
.sm-home-v2 *::after {
  box-sizing: border-box;
}

.sm-home-v2 a {
  color: inherit;
  text-decoration: none;
}

.sm-home-v2 h1,
.sm-home-v2 h2,
.sm-home-v2 h3,
.sm-home-v2 p {
  margin-top: 0;
}

.sm-kicker {
  margin-bottom: 18px;
  color: var(--sm-purple);
  font-size: 0.75rem;
  font-weight: 700;
  line-height: 1.5;
  text-transform: uppercase;
}

.sm-hero {
  display: grid;
  grid-template-columns: minmax(0, 1.08fr) minmax(420px, 0.92fr);
  min-height: 620px;
  padding: 82px max(5vw, calc((100vw - 1240px) / 2));
  overflow: hidden;
  color: #fff;
  background: var(--sm-purple-deep);
  border-top: 4px solid var(--sm-lavender);
}

.sm-hero-copy {
  align-self: center;
  max-width: 720px;
  padding-right: clamp(32px, 6vw, 92px);
}

.sm-hero .sm-kicker {
  color: var(--sm-lavender);
}

.sm-hero h1 {
  max-width: 760px;
  margin-bottom: 24px;
  font-size: clamp(2.8rem, 4.5vw, 4.6rem);
  font-weight: 700;
  line-height: 1.02;
  letter-spacing: 0;
}

.sm-hero-lead {
  max-width: 650px;
  margin-bottom: 34px;
  color: #d8cedc;
  font-size: 1.08rem;
  line-height: 1.75;
}

.sm-actions {
  display: flex;
  align-items: center;
  gap: 28px;
  flex-wrap: wrap;
}

.sm-btn {
  display: inline-flex;
  min-height: 50px;
  align-items: center;
  justify-content: center;
  gap: 16px;
  padding: 13px 20px;
  border: 1px solid transparent;
  border-radius: 4px;
  font-size: 0.9rem;
  font-style: normal;
  font-weight: 700;
  transition: transform 160ms ease, color 160ms ease, background-color 160ms ease;
}

.sm-btn:hover {
  transform: translateY(-2px);
}

.sm-btn span {
  font-size: 1.2rem;
}

.sm-btn-light {
  color: var(--sm-purple-deep) !important;
  background: #fff;
}

.sm-btn-dark {
  color: #fff !important;
  background: var(--sm-purple-deep);
}

.sm-text-link {
  display: inline-flex;
  align-items: center;
  gap: 9px;
  padding-bottom: 5px;
  border-bottom: 1px solid currentColor;
  font-size: 0.9rem;
  font-weight: 600;
}

.sm-hero-system {
  align-self: center;
  min-width: 0;
  border: 1px solid rgba(255, 255, 255, 0.2);
  background: rgba(255, 255, 255, 0.05);
}

.sm-system-head {
  display: flex;
  min-height: 76px;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  padding: 18px 22px;
  border-bottom: 1px solid rgba(255, 255, 255, 0.2);
}

.sm-system-head span,
.sm-system-head strong {
  font-size: 0.72rem;
}

.sm-system-head span {
  color: #cbb8dc;
  text-transform: uppercase;
}

.sm-system-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
}

.sm-system-grid a {
  display: grid;
  min-height: 172px;
  align-content: space-between;
  padding: 22px;
  border-right: 1px solid rgba(255, 255, 255, 0.2);
  border-bottom: 1px solid rgba(255, 255, 255, 0.2);
  transition: background-color 180ms ease;
}

.sm-system-grid a:nth-child(even) {
  border-right: 0;
}

.sm-system-grid a:hover {
  background: rgba(183, 148, 219, 0.14);
}

.sm-system-grid small {
  color: var(--sm-lavender);
  font-weight: 700;
}

.sm-system-grid strong {
  margin-top: 20px;
  font-size: 1.65rem;
}

.sm-system-grid span {
  max-width: 180px;
  color: #cbbfce;
  font-size: 0.76rem;
  line-height: 1.55;
}

.sm-system-foot {
  display: flex;
  justify-content: space-between;
  padding: 15px 22px;
  color: #cbb8dc;
  font-size: 0.66rem;
  font-weight: 600;
  text-transform: uppercase;
}

.sm-proofbar {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  width: min(100% - 40px, 1240px);
  margin: 0 auto;
  border-right: 1px solid var(--sm-line);
  border-left: 1px solid var(--sm-line);
}

.sm-proofbar span {
  display: flex;
  min-height: 92px;
  align-items: center;
  gap: 12px;
  padding: 18px 22px;
  border-right: 1px solid var(--sm-line);
  color: var(--sm-muted);
  font-size: 0.74rem;
  font-weight: 600;
}

.sm-proofbar span:last-child {
  border-right: 0;
}

.sm-proofbar b {
  color: var(--sm-purple);
  font-size: 1.15rem;
}

.sm-intro,
.sm-services,
.sm-work,
.sm-industries,
.sm-process,
.sm-insights,
.sm-faq {
  width: min(100% - 40px, 1240px);
  margin: 0 auto;
}

.sm-intro {
  display: grid;
  grid-template-columns: 0.7fr 1.3fr;
  gap: 70px;
  padding: 118px 0 110px;
  border-bottom: 1px solid var(--sm-line);
}

.sm-intro h2,
.sm-section-head h2,
.sm-lms-copy h2,
.sm-industries h2,
.sm-pricing h2,
.sm-faq h2 {
  margin-bottom: 20px;
  font-size: clamp(2rem, 3.5vw, 3.7rem);
  font-weight: 700;
  line-height: 1.12;
  letter-spacing: 0;
}

.sm-intro div > p {
  max-width: 760px;
  margin-bottom: 0;
  color: var(--sm-muted);
  font-size: 1.05rem;
  line-height: 1.85;
}

.sm-services,
.sm-work,
.sm-process,
.sm-insights,
.sm-faq {
  padding: 108px 0;
}

.sm-section-head {
  display: flex;
  align-items: end;
  justify-content: space-between;
  gap: 44px;
  margin-bottom: 52px;
}

.sm-section-head > div {
  max-width: 760px;
}

.sm-section-head h2 {
  margin-bottom: 0;
}

.sm-section-head > a {
  flex: 0 0 auto;
  padding-bottom: 5px;
  border-bottom: 1px solid var(--sm-ink);
  font-size: 0.84rem;
  font-weight: 700;
}

.sm-service-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  border-top: 1px solid var(--sm-line);
  border-left: 1px solid var(--sm-line);
}

.sm-service-grid > a {
  display: flex;
  min-height: 315px;
  flex-direction: column;
  padding: 28px;
  border-right: 1px solid var(--sm-line);
  border-bottom: 1px solid var(--sm-line);
  background: #fff;
  transition: color 180ms ease, background-color 180ms ease;
}

.sm-service-grid > a:hover {
  color: #fff;
  background: var(--sm-purple);
}

.sm-service-grid > a > span {
  margin-bottom: 42px;
  color: var(--sm-purple);
  font-size: 0.68rem;
  font-weight: 700;
  text-transform: uppercase;
}

.sm-service-grid > a:hover > span,
.sm-service-grid > a:hover p {
  color: #d9cde0;
}

.sm-service-grid h3 {
  margin-bottom: 15px;
  font-size: 1.45rem;
  line-height: 1.25;
}

.sm-service-grid p {
  margin-bottom: 28px;
  color: var(--sm-muted);
  font-size: 0.88rem;
  line-height: 1.7;
}

.sm-service-grid strong {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
  margin-top: auto;
  font-size: 0.78rem;
}

.sm-service-grid i {
  font-size: 1.1rem;
  font-style: normal;
}

.sm-service-grid .sm-service-feature {
  grid-column: span 2;
  color: #fff;
  background: var(--sm-purple);
  box-shadow: inset 0 4px 0 var(--sm-lavender);
}

.sm-service-grid .sm-service-feature > span,
.sm-service-grid .sm-service-feature p {
  color: #d9cde0;
}

.sm-service-grid .sm-service-feature h3 {
  max-width: 700px;
  font-size: clamp(1.8rem, 3vw, 3rem);
}

.sm-lms-spotlight {
  display: grid;
  grid-template-columns: minmax(0, 0.85fr) minmax(540px, 1.15fr);
  gap: clamp(48px, 7vw, 100px);
  align-items: center;
  padding: 110px max(5vw, calc((100vw - 1240px) / 2));
  background: var(--sm-lilac);
}

.sm-lms-copy p:not(.sm-kicker) {
  margin-bottom: 24px;
  color: var(--sm-muted);
  line-height: 1.8;
}

.sm-lms-copy ul {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 12px 24px;
  margin: 0 0 34px;
  padding: 0;
  list-style: none;
}

.sm-lms-copy li {
  padding-left: 18px;
  position: relative;
  font-size: 0.8rem;
  font-weight: 600;
}

.sm-lms-copy li::before {
  content: "";
  width: 6px;
  height: 6px;
  position: absolute;
  top: 7px;
  left: 0;
  border-radius: 50%;
  background: var(--sm-purple);
}

.sm-portal-ui {
  display: grid;
  grid-template-columns: 145px minmax(0, 1fr);
  min-height: 470px;
  overflow: hidden;
  border: 1px solid #d2c8d9;
  border-radius: 6px;
  box-shadow: 0 28px 70px rgba(45, 27, 55, 0.15);
  background: #fff;
}

.sm-portal-nav {
  display: flex;
  flex-direction: column;
  gap: 8px;
  padding: 25px 18px;
  color: #d9cde0;
  background: var(--sm-purple-deep);
}

.sm-portal-nav b {
  margin-bottom: 35px;
  color: #fff;
  font-size: 0.9rem;
}

.sm-portal-nav button {
  width: 100%;
  padding: 11px 10px;
  border: 0;
  border-bottom: 1px solid rgba(255, 255, 255, 0.12);
  border-radius: 3px;
  color: #e4d9e9;
  text-align: left;
  background: transparent;
  font: inherit;
  font-size: 0.68rem;
  font-weight: 600;
  cursor: pointer;
  transition: color 160ms ease, background-color 160ms ease;
}

.sm-portal-nav button:hover,
.sm-portal-nav button:focus-visible,
.sm-portal-nav button.is-active {
  color: var(--sm-purple);
  outline: none;
  background: var(--sm-lavender);
}

.sm-portal-panel {
  min-height: 418px;
}

.sm-portal-panel[hidden] {
  display: none;
}

.sm-portal-panel.is-active {
  animation: sm-portal-reveal 220ms ease both;
}

@keyframes sm-portal-reveal {
  from { opacity: 0; transform: translateY(5px); }
  to { opacity: 1; transform: translateY(0); }
}

.sm-portal-main {
  min-width: 0;
  padding: 25px;
}

.sm-portal-top {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
  padding-bottom: 22px;
  border-bottom: 1px solid var(--sm-line);
  font-size: 0.73rem;
}

.sm-portal-top b {
  color: var(--sm-purple);
}

.sm-portal-stats {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 10px;
  margin: 24px 0;
}

.sm-portal-stats article {
  display: grid;
  min-height: 125px;
  align-content: space-between;
  padding: 14px;
  border: 1px solid var(--sm-line);
  border-radius: 4px;
}

.sm-portal-stats small,
.sm-portal-stats span {
  color: var(--sm-muted);
  font-size: 0.61rem;
}

.sm-portal-stats strong {
  font-size: 1.75rem;
}

.sm-portal-list {
  display: grid;
  gap: 0;
  border: 1px solid var(--sm-line);
  border-radius: 4px;
}

.sm-portal-list > strong,
.sm-portal-list > span {
  padding: 14px;
  border-bottom: 1px solid var(--sm-line);
  font-size: 0.69rem;
}

.sm-portal-list > span {
  display: grid;
  grid-template-columns: 48px 1fr auto;
  align-items: center;
  gap: 10px;
}

.sm-portal-list > span:last-child {
  border-bottom: 0;
}

.sm-portal-list i {
  color: var(--sm-muted);
  font-style: normal;
}

.sm-portal-list span b {
  color: #76578c;
  font-size: 0.62rem;
}

.sm-work-grid {
  display: grid;
  grid-template-columns: 1.4fr repeat(2, minmax(0, 0.8fr));
  gap: 20px;
}

.sm-work-grid > a {
  overflow: hidden;
  border: 1px solid var(--sm-line);
  border-radius: 6px;
  background: #fff;
  transition: border-color 180ms ease, transform 180ms ease;
}

.sm-work-grid > a:hover {
  border-color: var(--sm-lavender);
  transform: translateY(-3px);
}

.sm-work-grid .sm-work-large {
  grid-row: span 2;
}

.sm-work-grid figure {
  --preview-height: 230px;
  height: var(--preview-height);
  margin: 0;
  overflow: hidden;
  background: #f1edf3;
}

.sm-work-grid .sm-work-large figure {
  --preview-height: 560px;
}

.sm-work-grid img {
  width: 100%;
  height: auto;
  min-height: 100%;
  display: block;
  object-fit: cover;
  object-position: top center;
  transition: transform 9000ms cubic-bezier(0.16, 1, 0.3, 1);
}

.sm-work-grid a:hover img {
  transform: translateY(calc(var(--preview-height) - 100%));
}

.sm-work-grid a > div {
  padding: 20px;
}

.sm-work-grid span {
  color: var(--sm-purple);
  font-size: 0.67rem;
  font-weight: 700;
  text-transform: uppercase;
}

.sm-work-grid h3 {
  margin: 8px 0 0;
  font-size: 1.35rem;
}

.sm-work-grid p {
  margin: 12px 0 0;
  color: var(--sm-muted);
  font-size: 0.82rem;
  line-height: 1.65;
}

.sm-industries {
  display: grid;
  grid-template-columns: 0.8fr 1.2fr;
  gap: 80px;
  padding: 108px 0;
  border-top: 1px solid var(--sm-line);
}

.sm-industry-links {
  border-top: 1px solid var(--sm-line);
}

.sm-industry-links a {
  display: grid;
  grid-template-columns: 0.65fr 1.35fr;
  gap: 24px;
  padding: 19px 4px;
  border-bottom: 1px solid var(--sm-line);
  transition: padding-left 180ms ease, color 180ms ease;
}

.sm-industry-links a:hover {
  padding-left: 12px;
  color: var(--sm-purple);
}

.sm-industry-links span {
  color: var(--sm-muted);
  font-size: 0.76rem;
}

.sm-industry-links strong {
  font-size: 0.84rem;
}

.sm-process {
  border-top: 1px solid var(--sm-line);
}

.sm-process .sm-section-head > p {
  max-width: 300px;
  margin-bottom: 5px;
  color: var(--sm-muted);
  font-size: 0.88rem;
  line-height: 1.7;
}

.sm-process-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  margin: 0 0 28px;
  padding: 0;
  border-top: 1px solid var(--sm-line);
  border-left: 1px solid var(--sm-line);
  list-style: none;
}

.sm-process-grid li {
  min-height: 245px;
  padding: 25px;
  border-right: 1px solid var(--sm-line);
  border-bottom: 1px solid var(--sm-line);
}

.sm-process-grid span {
  display: block;
  margin-bottom: 58px;
  color: var(--sm-purple);
  font-size: 0.73rem;
  font-weight: 700;
}

.sm-process-grid h3 {
  margin-bottom: 12px;
  font-size: 1.2rem;
}

.sm-process-grid p {
  margin-bottom: 0;
  color: var(--sm-muted);
  font-size: 0.8rem;
  line-height: 1.7;
}

.sm-process-link {
  color: var(--sm-purple) !important;
}

.sm-pricing {
  padding: 110px max(5vw, calc((100vw - 1240px) / 2));
  color: #fff;
  background: var(--sm-purple-deep);
}

.sm-pricing .sm-kicker {
  color: var(--sm-lavender);
}

.sm-pricing-head {
  display: flex;
  align-items: end;
  justify-content: space-between;
  gap: 48px;
  margin-bottom: 48px;
}

.sm-pricing-head > div:first-child {
  max-width: 700px;
}

.sm-pricing-head p:not(.sm-kicker) {
  max-width: 600px;
  margin-bottom: 0;
  color: #cbbfce;
  line-height: 1.7;
}

.sm-pricing .currency-toggle {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  min-width: 220px;
  padding: 4px;
  border: 1px solid rgba(255, 255, 255, 0.25);
  border-radius: 5px;
  background: rgba(255, 255, 255, 0.06);
}

.sm-pricing .currency-toggle::before {
  content: none;
}

.sm-pricing .currency-toggle button {
  min-height: 36px;
  border: 0;
  border-radius: 3px;
  color: #d9cde0;
  background: transparent;
  font: inherit;
  font-size: 0.72rem;
  font-weight: 700;
  cursor: pointer;
}

.sm-pricing .currency-toggle button.active {
  color: var(--sm-purple-deep);
  background: #fff;
}

.sm-price-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  border-top: 1px solid rgba(255, 255, 255, 0.22);
  border-left: 1px solid rgba(255, 255, 255, 0.22);
}

.sm-price-grid article {
  display: flex;
  min-height: 510px;
  flex-direction: column;
  padding: 26px;
  border-right: 1px solid rgba(255, 255, 255, 0.22);
  border-bottom: 1px solid rgba(255, 255, 255, 0.22);
  color: var(--sm-ink);
  background: #fff;
}

.sm-price-grid .sm-price-featured {
  background: var(--sm-lilac);
  box-shadow: inset 0 4px 0 var(--sm-lavender);
}

.sm-price-grid article > span {
  color: var(--sm-purple);
  font-size: 0.72rem;
  font-weight: 700;
  text-transform: uppercase;
}

.sm-price-grid h3 {
  min-height: 70px;
  margin: 28px 0 8px;
  font-size: 1.55rem;
  line-height: 1.2;
}

.sm-price-grid p {
  min-height: 54px;
  margin-bottom: 24px;
  color: var(--sm-muted);
  font-size: 0.78rem;
  line-height: 1.6;
}

.sm-price-grid ul {
  display: grid;
  gap: 11px;
  margin: 0 0 28px;
  padding: 20px 0 0;
  border-top: 1px solid var(--sm-line);
  list-style: none;
}

.sm-price-grid li {
  padding-left: 16px;
  position: relative;
  color: #4f4852;
  font-size: 0.74rem;
  line-height: 1.5;
}

.sm-price-grid li::before {
  content: "+";
  position: absolute;
  left: 0;
  color: #76578c;
  font-weight: 700;
}

.sm-price-grid a {
  display: flex;
  min-height: 44px;
  align-items: center;
  justify-content: center;
  margin-top: auto;
  border: 1px solid var(--sm-purple);
  border-radius: 4px;
  color: #fff;
  background: var(--sm-purple);
  font-size: 0.76rem;
  font-weight: 700;
}

.sm-insights {
  border-bottom: 1px solid var(--sm-line);
}

.sm-insight-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  border-top: 1px solid var(--sm-line);
  border-left: 1px solid var(--sm-line);
}

.sm-insight-grid a {
  display: flex;
  min-height: 270px;
  flex-direction: column;
  padding: 26px;
  border-right: 1px solid var(--sm-line);
  border-bottom: 1px solid var(--sm-line);
}

.sm-insight-grid span {
  color: var(--sm-purple);
  font-size: 0.68rem;
  font-weight: 700;
  text-transform: uppercase;
}

.sm-insight-grid h3 {
  margin: 36px 0 28px;
  font-size: 1.2rem;
  line-height: 1.45;
}

.sm-insight-grid strong {
  margin-top: auto;
  color: var(--sm-purple);
  font-size: 0.74rem;
}

.sm-faq {
  display: grid;
  grid-template-columns: 0.8fr 1.2fr;
  gap: 80px;
}

.sm-faq-list {
  border-top: 1px solid var(--sm-line);
}

.sm-faq details {
  border-bottom: 1px solid var(--sm-line);
}

.sm-faq summary {
  padding: 22px 34px 22px 0;
  position: relative;
  cursor: pointer;
  font-size: 0.9rem;
  font-weight: 700;
  list-style: none;
}

.sm-faq summary::-webkit-details-marker {
  display: none;
}

.sm-faq summary::after {
  content: "+";
  position: absolute;
  top: 20px;
  right: 4px;
  color: var(--sm-purple);
  font-size: 1.25rem;
}

.sm-faq details[open] summary::after {
  content: "-";
}

.sm-faq details p {
  max-width: 620px;
  margin-bottom: 22px;
  color: var(--sm-muted);
  font-size: 0.84rem;
  line-height: 1.75;
}

.sm-final-cta {
  padding: 96px max(5vw, calc((100vw - 1240px) / 2));
  text-align: center;
  color: #fff;
  background: var(--sm-purple);
  box-shadow: inset 0 4px 0 var(--sm-lavender);
}

body:has(.sm-home-v2) .brand-mark,
body:has(.sm-home-v2) .header-cta {
  background: #431e4f;
}

body:has(.sm-home-v2) .site-nav > a.active {
  color: #431e4f;
}

body:has(.sm-home-v2) .payment-marquee {
  background: #431e4f;
}

@media (prefers-reduced-motion: reduce) {
  .sm-portal-panel.is-active,
  .sm-btn,
  .sm-work-grid > a,
  .sm-work-grid img,
  .academy-project-grid img {
    animation: none;
    transition: none;
  }
}

.sm-final-cta .sm-kicker {
  color: var(--sm-lavender);
}

.sm-final-cta h2 {
  max-width: 940px;
  margin: 0 auto 34px;
  font-size: clamp(2.15rem, 4.5vw, 4.6rem);
  line-height: 1.1;
  letter-spacing: 0;
}

.sm-final-cta > div {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 28px;
  flex-wrap: wrap;
}

@media (max-width: 1100px) {
  .sm-hero {
    grid-template-columns: 1fr 0.9fr;
    min-height: 560px;
    padding: 64px 34px;
  }

  .sm-hero h1 {
    font-size: 3.65rem;
  }

  .sm-lms-spotlight {
    grid-template-columns: 1fr;
    padding: 88px 34px;
  }

  .sm-portal-ui {
    width: 100%;
    max-width: 760px;
  }

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

  .sm-price-grid article {
    min-height: 480px;
  }
}

@media (max-width: 820px) {
  .sm-hero {
    grid-template-columns: 1fr;
    gap: 54px;
    min-height: auto;
    padding: 68px 28px;
  }

  .sm-hero-copy {
    max-width: 680px;
    padding-right: 0;
  }

  .sm-hero h1 {
    font-size: clamp(2.8rem, 8vw, 4.5rem);
  }

  .sm-hero-system {
    width: 100%;
  }

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

  .sm-proofbar span:nth-child(2) {
    border-right: 0;
  }

  .sm-proofbar span:nth-child(-n+2) {
    border-bottom: 1px solid var(--sm-line);
  }

  .sm-intro,
  .sm-industries,
  .sm-faq {
    grid-template-columns: 1fr;
    gap: 34px;
  }

  .sm-intro,
  .sm-services,
  .sm-work,
  .sm-industries,
  .sm-process,
  .sm-insights,
  .sm-faq {
    padding: 78px 0;
  }

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

  .sm-service-grid .sm-service-feature {
    grid-column: span 2;
  }

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

  .sm-work-grid .sm-work-large {
    grid-column: span 2;
    grid-row: auto;
  }

  .sm-work-grid .sm-work-large figure {
    height: 430px;
  }

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

  .sm-pricing {
    padding: 80px 28px;
  }

  .sm-pricing-head {
    align-items: start;
    flex-direction: column;
  }

  .sm-insight-grid {
    grid-template-columns: 1fr;
  }

  .sm-insight-grid a {
    min-height: 220px;
  }
}

@media (max-width: 560px) {
  .sm-hero {
    gap: 42px;
    padding: 54px 20px;
  }

  .sm-hero h1 {
    margin-bottom: 20px;
    font-size: 2.55rem;
  }

  .sm-hero-lead {
    font-size: 0.95rem;
  }

  .sm-actions {
    align-items: flex-start;
    flex-direction: column;
    gap: 20px;
  }

  .sm-system-head {
    align-items: flex-start;
    flex-direction: column;
    gap: 8px;
  }

  .sm-system-grid a {
    min-height: 145px;
    padding: 16px;
  }

  .sm-system-grid strong {
    font-size: 1.25rem;
  }

  .sm-system-foot {
    display: none;
  }

  .sm-proofbar {
    width: 100%;
    grid-template-columns: 1fr;
    border-right: 0;
    border-left: 0;
  }

  .sm-proofbar span,
  .sm-proofbar span:nth-child(2) {
    min-height: 66px;
    border-right: 0;
    border-bottom: 1px solid var(--sm-line);
  }

  .sm-intro,
  .sm-services,
  .sm-work,
  .sm-industries,
  .sm-process,
  .sm-insights,
  .sm-faq {
    width: min(100% - 32px, 1240px);
    padding: 64px 0;
  }

  .sm-intro h2,
  .sm-section-head h2,
  .sm-lms-copy h2,
  .sm-industries h2,
  .sm-pricing h2,
  .sm-faq h2 {
    font-size: 2rem;
  }

  .sm-section-head {
    align-items: flex-start;
    flex-direction: column;
    gap: 22px;
    margin-bottom: 34px;
  }

  .sm-service-grid,
  .sm-price-grid,
  .sm-process-grid {
    grid-template-columns: 1fr;
  }

  .sm-service-grid .sm-service-feature {
    grid-column: auto;
  }

  .sm-service-grid > a {
    min-height: 265px;
    padding: 22px;
  }

  .sm-lms-spotlight {
    padding: 66px 20px;
  }

  .sm-lms-copy ul {
    grid-template-columns: 1fr;
  }

  .sm-portal-ui {
    grid-template-columns: 1fr;
    min-height: auto;
  }

  .sm-portal-nav {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    padding: 16px;
  }

  .sm-portal-nav b {
    grid-column: span 2;
    margin-bottom: 8px;
  }

  .sm-portal-nav button {
    text-align: center;
  }

  .sm-portal-stats {
    grid-template-columns: 1fr;
  }

  .sm-portal-stats article {
    min-height: 105px;
  }

  .sm-portal-list > span {
    grid-template-columns: 42px 1fr;
  }

  .sm-portal-list span b {
    display: none;
  }

  .sm-work-grid {
    grid-template-columns: 1fr;
  }

  .sm-work-grid .sm-work-large {
    grid-column: auto;
  }

  .sm-work-grid .sm-work-large figure,
  .sm-work-grid figure {
    height: 280px;
  }

  .sm-industry-links a {
    grid-template-columns: 1fr;
    gap: 7px;
  }

  .sm-process-grid li {
    min-height: auto;
  }

  .sm-process-grid span {
    margin-bottom: 28px;
  }

  .sm-pricing {
    padding: 66px 20px;
  }

  .sm-pricing .currency-toggle {
    width: 100%;
    min-width: 0;
  }

  .sm-price-grid article {
    min-height: 465px;
  }

  .sm-final-cta {
    padding: 68px 20px;
  }

  .sm-final-cta h2 {
    font-size: 2.25rem;
  }
}

/* LMS portal page */
.lms-body {
  background: #ffffff;
  color: #21152b;
  font-family: "Poppins", Arial, Helvetica, sans-serif;
}

.lms-body .site-header {
  border-bottom-color: rgba(74, 46, 92, 0.1);
  background: rgba(255, 255, 255, 0.94);
  box-shadow: 0 14px 40px rgba(48, 31, 64, 0.08);
}

.lms-white-page {
  background:
    linear-gradient(180deg, #ffffff 0%, #fbf8ff 38%, #ffffff 100%);
  color: #21152b;
}

.lms-white-page h1,
.lms-white-page h2,
.lms-white-page h3,
.lms-white-page strong {
  color: #241632;
}

.lms-white-page p,
.lms-white-page li {
  color: #675d70;
}

.lms-white-page .eyebrow {
  color: #7f5cb7;
}

.lms-clean-hero {
  position: relative;
  display: grid;
  grid-template-columns: minmax(0, 1.02fr) minmax(330px, 0.7fr);
  gap: 52px;
  align-items: center;
  width: min(1200px, calc(100% - 40px));
  margin: 0 auto;
  padding: 96px 0 72px;
}

.lms-clean-hero::before {
  content: "";
  position: absolute;
  inset: 28px -24px auto auto;
  z-index: 0;
  width: min(480px, 42vw);
  height: 480px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(154, 125, 196, 0.2), rgba(154, 125, 196, 0));
  pointer-events: none;
}

.lms-clean-hero > * {
  position: relative;
  z-index: 1;
}

.lms-clean-hero h1 {
  max-width: 820px;
  margin: 10px 0 18px;
  font-size: clamp(40px, 5.2vw, 72px);
  line-height: 1.02;
  letter-spacing: 0;
}

.lms-clean-hero .concept-copy > p:not(.eyebrow) {
  max-width: 690px;
  font-size: 18px;
  line-height: 1.8;
}

.lms-clean-hero .btn.secondary {
  border-color: rgba(74, 46, 92, 0.18);
  color: #4a2e5c;
  background: #ffffff;
}

.lms-hero-panel {
  display: grid;
  gap: 18px;
  min-height: 420px;
  padding: 34px;
  border: 1px solid rgba(74, 46, 92, 0.12);
  border-radius: 8px;
  background:
    linear-gradient(145deg, #ffffff 0%, #f6f0ff 100%);
  box-shadow: 0 28px 70px rgba(74, 46, 92, 0.16);
}

.lms-hero-panel span {
  width: max-content;
  padding: 9px 13px;
  border-radius: 999px;
  background: rgba(154, 125, 196, 0.14);
  color: #5f3d84;
  font-size: 12px;
  font-weight: 900;
  text-transform: uppercase;
  letter-spacing: 0.08em;
}

.lms-hero-panel strong {
  max-width: 360px;
  font-size: clamp(32px, 4vw, 54px);
  line-height: 1.04;
}

.lms-hero-panel p {
  max-width: 410px;
  font-size: 16px;
  line-height: 1.8;
}

.lms-hero-panel .concept-tags {
  align-self: end;
}

.lms-hero-panel .concept-tags b {
  border-color: rgba(74, 46, 92, 0.12);
  background: #ffffff;
  color: #4a2e5c;
  box-shadow: 0 10px 24px rgba(74, 46, 92, 0.08);
}

.lms-white-page .lms-showcase,
.lms-white-page .concept-services,
.lms-white-page .agency-proof,
.lms-white-page .agency-pricing {
  width: min(1200px, calc(100% - 40px));
}

.lms-white-page .lms-showcase {
  padding: 78px 0;
  border-top: 1px solid rgba(74, 46, 92, 0.1);
}

.lms-white-page .lms-showcase h2,
.lms-white-page .agency-proof h2,
.lms-white-page .agency-pricing h2 {
  color: #241632;
}

.lms-white-page .lms-showcase p {
  color: #675d70;
}

.lms-white-page .lms-grid {
  grid-template-columns: repeat(2, minmax(0, 1fr));
}

.lms-white-page .lms-grid article,
.lms-white-page .concept-services article,
.lms-white-page .pricing-grid article,
.lms-white-page .project-shot-grid article {
  border: 1px solid rgba(74, 46, 92, 0.12);
  border-radius: 8px;
  background: #ffffff;
  box-shadow: 0 18px 44px rgba(46, 26, 62, 0.08);
}

.lms-white-page .lms-grid span {
  background: #9a7dc4;
  color: #ffffff;
}

.lms-white-page .lms-grid h3,
.lms-white-page .concept-services h2 {
  color: #241632;
}

.lms-white-page .concept-services {
  padding: 58px 0 78px;
}

.lms-white-page .concept-services article {
  min-height: 250px;
}

.lms-white-page .concept-services article > span {
  color: #7f5cb7;
}

.lms-white-page .concept-services p {
  color: #675d70;
}

.lms-white-page .agency-proof {
  padding: 78px 0;
  border-top: 1px solid rgba(74, 46, 92, 0.1);
}

.lms-white-page .project-shot-grid strong {
  color: #241632;
}

.lms-white-page .project-shot-grid a {
  color: #6e4b9a;
}

.lms-white-page .agency-pricing {
  padding: 62px;
  border: 1px solid rgba(74, 46, 92, 0.1);
  border-radius: 8px;
  background:
    radial-gradient(circle at 9% 4%, rgba(156, 134, 198, 0.14), transparent 30%),
    linear-gradient(180deg, #ffffff 0%, #fbf8ff 100%);
  box-shadow: 0 26px 70px rgba(46, 26, 62, 0.1);
}

.lms-white-page .pricing-heading {
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto;
  align-items: end;
  gap: 24px;
}

.lms-white-page .pricing-heading .eyebrow,
.lms-white-page .pricing-heading h2,
.lms-white-page .pricing-heading p {
  grid-column: 1;
}

.currency-toggle {
  position: relative;
  display: inline-flex;
  grid-column: 2;
  grid-row: 1 / span 3;
  align-self: end;
  isolation: isolate;
  padding: 5px;
  border: 1px solid rgba(74, 46, 92, 0.14);
  border-radius: 999px;
  background: #ffffff;
  box-shadow: 0 12px 32px rgba(46, 26, 62, 0.1);
}

.currency-toggle::before {
  content: "";
  position: absolute;
  top: 5px;
  bottom: 5px;
  left: 5px;
  z-index: 0;
  width: calc((100% - 10px) / 3);
  border-radius: 999px;
  background: #4a2e5c;
  transform: translateX(0);
  transition: transform 280ms cubic-bezier(0.22, 1, 0.36, 1), background 220ms ease;
}

.currency-toggle[data-active="gbp"]::before {
  transform: translateX(100%);
}

.currency-toggle[data-active="usd"]::before {
  transform: translateX(200%);
}

.currency-toggle button {
  position: relative;
  z-index: 1;
  min-width: 74px;
  padding: 10px 16px;
  border: 0;
  border-radius: 999px;
  background: transparent;
  color: #4a2e5c;
  font: inherit;
  font-size: 13px;
  font-weight: 900;
  cursor: pointer;
}

.currency-toggle button.active {
  color: #ffffff;
}

.lms-white-page .lms-pricing-grid {
  grid-template-columns: repeat(4, minmax(0, 1fr));
}

.lms-white-page .pricing-grid article {
  min-height: 560px;
  padding: 22px;
}

.lms-white-page .detailed-pricing article {
  grid-template-rows: auto auto auto 1fr auto auto;
  gap: 12px;
}

.detailed-pricing article {
  grid-template-rows: auto auto auto 1fr auto auto;
  gap: 12px;
}

.service-pricing .detailed-pricing article {
  min-height: 560px;
}

.pricing-detail {
  display: grid;
  gap: 8px;
  align-content: start;
}

.pricing-detail strong {
  color: var(--plum);
  font-size: 13px;
  font-weight: 900;
}

.lms-white-page .pricing-detail strong {
  color: #4a2e5c;
}

.pricing-detail ul {
  margin: 0;
}

.pricing-note {
  align-self: end;
  padding: 12px;
  border: 1px solid rgba(74, 46, 92, 0.12);
  border-radius: 8px;
  background: rgba(156, 134, 198, 0.08);
  color: #675d70;
  font-size: 13px;
  font-weight: 800;
  line-height: 1.55;
}

.lms-white-page .pricing-grid article.popular-price {
  border-color: rgba(154, 125, 196, 0.48);
  background: linear-gradient(180deg, #ffffff 0%, #f5efff 100%);
}

.lms-white-page .pricing-grid article > span {
  color: #7f5cb7;
}

.lms-white-page .pricing-grid h3 {
  color: #241632;
  font-size: clamp(24px, 2.3vw, 32px);
  line-height: 1.08;
}

.lms-white-page .pricing-grid p,
.lms-white-page .pricing-grid li {
  color: #675d70;
}

.lms-white-page .pricing-grid a {
  background: #4a2e5c;
  color: #ffffff;
}

.lms-white-page .concept-cta {
  width: min(1200px, calc(100% - 40px));
  margin-top: 0;
  margin-bottom: 78px;
  border: 0;
  background: linear-gradient(135deg, #4a2e5c 0%, #9a7dc4 100%);
  box-shadow: 0 24px 64px rgba(74, 46, 92, 0.22);
}

.lms-white-page .concept-cta h2 {
  color: #ffffff;
}

.lms-white-page .lms-faq {
  padding: 82px 0;
  border-top: 1px solid rgba(74, 46, 92, 0.1);
}

.lms-white-page .lms-faq h2 {
  color: #241632;
}

.lms-white-page .lms-faq article {
  border-color: rgba(74, 46, 92, 0.12);
  background: #ffffff;
  box-shadow: 0 18px 44px rgba(46, 26, 62, 0.08);
}

.lms-white-page .lms-faq h3 {
  color: #241632;
}

.lms-white-page .lms-faq p {
  color: #675d70;
}

@media (max-width: 980px) {
  .lms-clean-hero,
  .lms-white-page .lms-showcase,
  .lms-white-page .agency-proof,
  .lms-white-page .pricing-heading {
    grid-template-columns: 1fr;
  }

  .currency-toggle {
    grid-column: 1;
    grid-row: auto;
    justify-self: start;
  }

  .lms-white-page .lms-grid,
  .lms-white-page .lms-pricing-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .lms-white-page .pricing-grid article.popular-price {
    transform: none;
  }
}

@media (max-width: 640px) {
  .lms-clean-hero {
    width: min(100% - 32px, 1200px);
    padding: 62px 0 48px;
  }

  .lms-clean-hero h1 {
    font-size: 36px;
  }

  .lms-hero-panel {
    min-height: auto;
    padding: 24px;
  }

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

  .currency-toggle {
    width: 100%;
  }

  .currency-toggle button {
    flex: 1;
  }
}

* {
  box-sizing: border-box;
}

body {
  margin: 0;
  color: var(--ink);
  background: var(--white);
  font-family: var(--font-main);
  line-height: 1.6;
}

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

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

.site-header {
  position: sticky;
  top: 0;
  z-index: 20;
  display: grid;
  grid-template-columns: auto 1fr auto;
  align-items: center;
  gap: 24px;
  padding: 16px clamp(20px, 5vw, 72px);
  background: rgba(255, 255, 255, 0.94);
  border-bottom: 1px solid var(--line);
  backdrop-filter: blur(18px);
  transform: translateY(0);
  box-shadow: 0 0 0 rgba(31, 20, 40, 0);
  transition: padding 260ms ease, background 260ms ease, box-shadow 260ms ease, transform 260ms ease;
  animation: headerDrop 620ms cubic-bezier(0.22, 1, 0.36, 1) both;
}

.site-header.is-scrolled {
  padding-top: 10px;
  padding-bottom: 10px;
  background: rgba(255, 255, 255, 0.88);
  box-shadow: 0 18px 44px rgba(31, 20, 40, 0.12);
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  min-width: max-content;
  color: var(--plum);
}

.brand-official {
  width: 140px;
  min-width: 140px;
  height: 58px;
  overflow: hidden;
}

.brand-logo-crop {
  display: block;
  width: 140px;
  height: 58px;
  overflow: hidden;
  position: relative;
}

.brand-logo-crop img {
  width: 169px;
  max-width: none;
  height: 169px;
  position: absolute;
  top: 50%;
  left: 50%;
  object-fit: contain;
  transform: translate(-50%, -50%);
  transition: transform 180ms ease;
}

.footer-brand.brand-official {
  width: 170px;
  min-width: 170px;
  height: 72px;
  padding: 0;
  background: transparent;
}

.footer-brand .brand-logo-crop {
  width: 150px;
  height: 64px;
}

.footer-brand .brand-logo-crop img {
  width: 180px;
  height: 180px;
}

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

.academy-project-grid > a,
.academy-project-grid > article {
  overflow: hidden;
  border: 1px solid var(--line);
  border-radius: 6px;
  background: #fff;
}

.academy-project-grid figure {
  --preview-height: 380px;
  height: var(--preview-height);
  margin: 0;
  overflow: hidden;
  background: #f1edf3;
}

.academy-project-grid img {
  width: 100%;
  height: auto;
  min-height: 100%;
  display: block;
  object-fit: cover;
  object-position: top center;
  transition: transform 9000ms cubic-bezier(0.16, 1, 0.3, 1);
}

.academy-project-grid a:hover img {
  transform: translateY(calc(var(--preview-height) - 100%));
}

.academy-project-grid > * > div {
  padding: 20px;
}

.academy-project-grid span {
  color: var(--plum);
  font-size: 0.72rem;
  font-weight: 800;
  text-transform: uppercase;
}

.academy-project-grid h3 {
  margin: 7px 0 8px;
  font-size: 1.25rem;
}

.academy-project-grid p {
  margin: 0;
  color: var(--muted);
  font-size: 0.86rem;
  line-height: 1.65;
}

.brand-mark {
  display: grid;
  width: 42px;
  height: 42px;
  place-items: center;
  color: var(--white);
  background: linear-gradient(135deg, var(--plum), var(--lavender));
  border-radius: 8px;
  font-weight: 800;
  font-size: 24px;
  transition: transform 260ms ease, box-shadow 260ms ease;
}

.brand:hover .brand-mark {
  transform: rotate(-7deg) translateY(-2px);
  box-shadow: 0 14px 30px rgba(75, 42, 92, 0.22);
}

.brand-official:hover .brand-logo-crop img {
  transform: translate(-50%, -50%) scale(1.025);
}

.brand strong,
.brand small {
  display: block;
  line-height: 1;
}

.brand strong {
  font-size: 24px;
  letter-spacing: 0;
}

.brand small {
  margin-top: 3px;
  color: var(--grape);
  font-size: 15px;
  font-weight: 700;
}

.site-nav {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: clamp(12px, 1.4vw, 22px);
  font-size: 14px;
  font-weight: 700;
}

.site-nav a,
.nav-more summary {
  position: relative;
  padding: 8px 2px;
  color: rgba(31, 20, 40, 0.72);
  transition: color 180ms ease;
}

.site-nav a::after,
.nav-more summary::before {
  content: "";
  position: absolute;
  right: 0;
  bottom: 0;
  left: 0;
  height: 2px;
  border-radius: 999px;
  background: linear-gradient(90deg, var(--plum), var(--lavender));
  transform: scaleX(0);
  transform-origin: left;
  transition: transform 220ms ease;
}

.site-nav a:hover,
.site-nav a.active,
.nav-more:hover summary,
.nav-more.active summary,
.nav-more[open] summary {
  color: var(--plum);
}

.site-nav a:hover::after,
.site-nav a.active::after,
.nav-more:hover summary::before,
.nav-more[open] summary::before {
  transform: scaleX(1);
}

.nav-more {
  position: relative;
}

.nav-more summary {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  list-style: none;
  cursor: pointer;
}

.nav-more summary::-webkit-details-marker {
  display: none;
}

.nav-more summary::after {
  content: "";
  width: 7px;
  height: 7px;
  border-right: 2px solid currentColor;
  border-bottom: 2px solid currentColor;
  transform: rotate(45deg) translateY(-2px);
  transition: transform 180ms ease;
}

.nav-more[open] summary::after {
  transform: rotate(225deg) translateY(-1px);
}

.nav-dropdown {
  position: absolute;
  top: calc(100% + 12px);
  right: 0;
  z-index: 30;
  display: grid;
  min-width: 190px;
  padding: 10px;
  border: 1px solid rgba(75, 42, 92, 0.12);
  border-radius: 8px;
  background: rgba(255, 255, 255, 0.98);
  box-shadow: 0 22px 54px rgba(31, 20, 40, 0.16);
}

.nav-dropdown a {
  padding: 10px 12px;
  border-radius: 8px;
}

.nav-dropdown a:hover,
.nav-dropdown a.active {
  background: rgba(156, 134, 198, 0.13);
}

.legal-page {
  background:
    linear-gradient(180deg, #ffffff 0%, #fbf8ff 48%, #ffffff 100%);
}

.legal-content {
  display: grid;
  gap: 18px;
  max-width: 980px;
}

.legal-content article {
  padding: 28px;
  border: 1px solid rgba(75, 42, 92, 0.12);
  border-radius: 8px;
  background: #ffffff;
  box-shadow: 0 16px 42px rgba(31, 20, 40, 0.07);
}

.legal-content h2 {
  margin: 0 0 10px;
  color: var(--plum);
  font-size: 24px;
}

.legal-content p {
  margin: 0;
  color: rgba(31, 20, 40, 0.72);
}

.legal-content a {
  color: var(--grape);
  font-weight: 900;
}

.header-cta,
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 44px;
  padding: 12px 18px;
  border: 0;
  border-radius: 8px;
  font-weight: 800;
  cursor: pointer;
  transition: transform 180ms ease, box-shadow 180ms ease, background 180ms ease;
}

.header-cta,
.btn.primary {
  color: var(--white);
  background: linear-gradient(135deg, var(--plum), var(--grape));
  box-shadow: 0 18px 34px rgba(75, 42, 92, 0.24);
}

.btn.secondary {
  color: var(--plum);
  background: var(--white);
  border: 1px solid var(--line);
}

.btn.light {
  color: var(--plum);
  background: var(--white);
  box-shadow: 0 16px 34px rgba(31, 20, 40, 0.16);
}

.btn:hover,
.header-cta:hover {
  transform: translateY(-2px);
}

.nav-toggle {
  display: none;
  width: 44px;
  height: 44px;
  border: 1px solid var(--line);
  border-radius: 8px;
  color: var(--plum);
  background: var(--white);
  cursor: pointer;
  place-items: center;
  gap: 4px;
  padding: 10px;
}

.nav-toggle span {
  display: block;
  width: 22px;
  height: 2px;
  border-radius: 999px;
  background: currentColor;
  transition: transform 180ms ease, opacity 180ms ease;
}

.nav-toggle.is-open span:nth-child(1) {
  transform: translateY(6px) rotate(45deg);
}

.nav-toggle.is-open span:nth-child(2) {
  opacity: 0;
}

.nav-toggle.is-open span:nth-child(3) {
  transform: translateY(-6px) rotate(-45deg);
}

.hero {
  position: relative;
  min-height: 720px;
  display: grid;
  align-items: end;
  overflow: hidden;
  color: var(--white);
  background: var(--plum);
}

.hero-media {
  position: absolute;
  inset: 0;
}

.hero-media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  opacity: 0.9;
}

.hero-media::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(90deg, rgba(31, 20, 40, 0.72), rgba(75, 42, 92, 0.38) 48%, rgba(31, 20, 40, 0.08));
}

.hero-content {
  position: relative;
  width: min(760px, calc(100% - 40px));
  margin: 0 auto 72px;
  padding-right: min(10vw, 120px);
}

.hero-premium {
  min-height: 620px;
  align-items: stretch;
}

.hero-studio {
  color: var(--ink);
  background:
    linear-gradient(135deg, rgba(245, 241, 250, 0.95), rgba(255, 255, 255, 0.96) 58%, rgba(156, 134, 198, 0.28)),
    var(--white);
}

.hero-studio::before {
  content: "";
  position: absolute;
  inset: auto 0 0 0;
  height: 34%;
  background: linear-gradient(180deg, transparent, rgba(156, 134, 198, 0.12));
}

.hero-premium .hero-media img {
  object-position: center top;
  filter: saturate(1.05) contrast(1.04);
}

.hero-premium .hero-media::after {
  background:
    radial-gradient(circle at 78% 22%, rgba(156, 134, 198, 0.22), transparent 30%),
    linear-gradient(90deg, rgba(31, 20, 40, 0.94), rgba(75, 42, 92, 0.76) 46%, rgba(31, 20, 40, 0.2));
}

.hero-premium-inner {
  position: relative;
  display: grid;
  grid-template-columns: minmax(0, 0.95fr) minmax(360px, 0.85fr);
  gap: clamp(30px, 6vw, 82px);
  align-items: center;
  width: min(1240px, calc(100% - 40px));
  margin: 0 auto;
  padding: clamp(58px, 8vh, 92px) 0;
}

.hero-premium .hero-content {
  width: 100%;
  margin: 0;
  padding: 0;
}

.hero-premium h1 {
  max-width: 720px;
  color: var(--plum);
  font-size: clamp(38px, 5vw, 68px);
  line-height: 1.06;
}

.hero-studio .eyebrow {
  color: var(--grape);
}

.hero-studio .hero-copy {
  max-width: 620px;
  color: rgba(31, 20, 40, 0.72);
}

.hero-command {
  min-height: 650px;
  color: var(--white);
  background:
    radial-gradient(circle at 82% 18%, rgba(156, 134, 198, 0.18), transparent 28%),
    linear-gradient(135deg, #23162d 0%, #4b2a5c 52%, #705194 100%);
}

.hero-command::before {
  content: "";
  position: absolute;
  inset: 0;
  background:
    linear-gradient(rgba(255, 255, 255, 0.035) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255, 255, 255, 0.035) 1px, transparent 1px);
  background-size: 46px 46px;
  mask-image: linear-gradient(180deg, rgba(0, 0, 0, 0.95), transparent);
}

.hero-command .hero-premium-inner {
  grid-template-columns: minmax(0, 0.9fr) minmax(360px, 0.78fr);
}

.hero-command h1 {
  max-width: 720px;
  color: var(--white);
  font-size: clamp(38px, 5vw, 66px);
  line-height: 1.08;
}

.hero-command .eyebrow {
  color: var(--mint);
}

.hero-command .hero-copy {
  max-width: 620px;
  color: rgba(255, 255, 255, 0.76);
}

.hero-command .btn.secondary {
  color: var(--white);
  background: rgba(255, 255, 255, 0.1);
  border-color: rgba(255, 255, 255, 0.25);
}

.command-proof {
  grid-template-columns: repeat(3, minmax(110px, 1fr));
  max-width: 560px;
}

.command-proof span {
  color: rgba(255, 255, 255, 0.72);
  background: rgba(255, 255, 255, 0.1);
  border-color: rgba(255, 255, 255, 0.16);
  box-shadow: none;
}

.command-proof b {
  color: var(--mint);
}

.command-center {
  position: relative;
  display: grid;
  gap: 14px;
  padding: 18px;
  border: 1px solid rgba(255, 255, 255, 0.16);
  border-radius: 8px;
  background: rgba(255, 255, 255, 0.1);
  box-shadow: 0 30px 90px rgba(0, 0, 0, 0.25);
  backdrop-filter: blur(20px);
}

.command-logo {
  overflow: hidden;
  height: 156px;
  border-radius: 8px;
  background: var(--plum);
}

.command-logo img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center 28%;
}

.command-card,
.command-grid div,
.command-line {
  border: 1px solid rgba(255, 255, 255, 0.16);
  border-radius: 8px;
  background: rgba(255, 255, 255, 0.11);
}

.primary-command {
  padding: 22px;
}

.primary-command span {
  color: var(--mint);
  font-size: 12px;
  font-weight: 900;
  text-transform: uppercase;
}

.primary-command strong {
  display: block;
  margin: 8px 0;
  color: var(--white);
  font-size: 25px;
  line-height: 1.12;
}

.primary-command p {
  margin: 0;
  color: rgba(255, 255, 255, 0.72);
}

.command-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 12px;
}

.command-grid div {
  padding: 18px;
}

.command-grid strong {
  display: block;
  color: var(--white);
  font-size: 28px;
  line-height: 1;
}

.command-grid span {
  color: rgba(255, 255, 255, 0.68);
  font-size: 13px;
  font-weight: 800;
}

.command-line {
  display: grid;
  grid-template-columns: auto 1fr;
  gap: 12px;
  align-items: center;
  padding: 16px;
}

.command-line span {
  width: 12px;
  height: 12px;
  border-radius: 999px;
  background: var(--mint);
  box-shadow: 0 0 0 6px rgba(156, 134, 198, 0.16);
}

.command-line p {
  margin: 0;
  color: rgba(255, 255, 255, 0.74);
  font-size: 14px;
}

.hero-calm {
  min-height: 650px;
  color: var(--white);
  background:
    radial-gradient(circle at 80% 18%, rgba(156, 134, 198, 0.2), transparent 30%),
    linear-gradient(135deg, #24162f 0%, #4b2a5c 52%, #8061a8 100%);
}

.hero-calm::before {
  content: "";
  position: absolute;
  inset: 0;
  background:
    linear-gradient(rgba(255, 255, 255, 0.035) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255, 255, 255, 0.035) 1px, transparent 1px);
  background-size: 54px 54px;
  mask-image: linear-gradient(180deg, rgba(0, 0, 0, 0.92), transparent 80%);
}

.hero-calm .hero-premium-inner {
  grid-template-columns: minmax(0, 0.92fr) minmax(340px, 0.78fr);
  align-items: center;
  gap: clamp(42px, 7vw, 96px);
}

.hero-calm h1 {
  max-width: 740px;
  color: var(--white);
  font-size: clamp(40px, 5.4vw, 72px);
  line-height: 1.08;
}

.hero-calm .eyebrow {
  color: var(--mint);
}

.hero-calm .hero-copy {
  max-width: 650px;
  color: rgba(255, 255, 255, 0.78);
}

.hero-calm .btn.secondary {
  color: var(--white);
  background: rgba(255, 255, 255, 0.1);
  border-color: rgba(255, 255, 255, 0.24);
}

.hero-note {
  max-width: 580px;
  margin: 24px 0 0;
  padding-left: 18px;
  border-left: 3px solid var(--mint);
  color: rgba(255, 255, 255, 0.72);
  font-weight: 800;
}

.calm-showcase {
  position: relative;
  display: grid;
  gap: 16px;
}

.brand-direction {
  align-self: center;
  padding: 28px;
  border: 1px solid rgba(255, 255, 255, 0.16);
  border-radius: 8px;
  background: rgba(255, 255, 255, 0.1);
  box-shadow: 0 30px 90px rgba(0, 0, 0, 0.22);
  backdrop-filter: blur(18px);
}

.direction-image {
  overflow: hidden;
  height: 190px;
  border-radius: 8px;
  background: rgba(255, 255, 255, 0.12);
}

.direction-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center 26%;
}

.direction-quote {
  padding: 0 0 18px;
}

.direction-quote span {
  color: var(--mint);
  font-size: 12px;
  font-weight: 900;
  text-transform: uppercase;
}

.direction-quote blockquote {
  margin: 12px 0 0;
  color: var(--white);
  font-size: clamp(28px, 3vw, 44px);
  font-weight: 900;
  line-height: 1.16;
}

.direction-points {
  display: grid;
  gap: 8px;
}

.direction-points p {
  margin: 0;
  padding: 14px 16px;
  border: 1px solid rgba(255, 255, 255, 0.14);
  border-radius: 8px;
  color: rgba(255, 255, 255, 0.76);
  background: rgba(255, 255, 255, 0.08);
  font-weight: 800;
}

.direction-mini-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 10px;
  margin-top: 8px;
}

.direction-mini-grid div {
  display: grid;
  gap: 3px;
  padding: 16px;
  border: 1px solid rgba(255, 255, 255, 0.14);
  border-radius: 8px;
  background: rgba(255, 255, 255, 0.08);
}

.direction-mini-grid strong {
  color: var(--mint);
  font-size: 17px;
}

.direction-mini-grid span {
  color: rgba(255, 255, 255, 0.72);
  font-weight: 800;
}

.calm-logo-card {
  overflow: hidden;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: var(--white);
  box-shadow: 0 28px 80px rgba(31, 20, 40, 0.12);
}

.calm-logo-card img {
  width: 100%;
  aspect-ratio: 1.22;
  object-fit: cover;
  object-position: center top;
}

.calm-service-list {
  display: grid;
  gap: 10px;
}

.calm-service-list div {
  display: grid;
  grid-template-columns: auto 1fr;
  gap: 14px;
  align-items: center;
  padding: 16px 18px;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: rgba(255, 255, 255, 0.82);
  box-shadow: 0 12px 32px rgba(31, 20, 40, 0.06);
}

.calm-service-list span {
  display: grid;
  width: 36px;
  height: 36px;
  place-items: center;
  border-radius: 8px;
  color: var(--plum);
  background: var(--mint);
  font-size: 13px;
  font-weight: 900;
}

.calm-service-list p {
  margin: 0;
  color: rgba(31, 20, 40, 0.72);
  font-weight: 800;
}

.hero-proof {
  display: grid;
  grid-template-columns: repeat(2, minmax(180px, 1fr));
  gap: 12px;
  max-width: 650px;
  margin-top: 28px;
}

.hero-proof span {
  display: grid;
  gap: 4px;
  padding: 16px 18px;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: rgba(255, 255, 255, 0.72);
  box-shadow: 0 12px 30px rgba(31, 20, 40, 0.06);
  color: rgba(31, 20, 40, 0.66);
  font-size: 14px;
  font-weight: 700;
}

.hero-proof b {
  color: var(--plum);
  font-size: 16px;
}

.hero-showcase {
  position: relative;
  min-height: 470px;
}

.showcase-window {
  overflow: hidden;
  border: 1px solid rgba(75, 42, 92, 0.16);
  border-radius: 8px;
  background: var(--white);
  box-shadow: 0 30px 90px rgba(31, 20, 40, 0.17);
}

.window-bar {
  display: flex;
  gap: 7px;
  padding: 14px 16px;
  border-bottom: 1px solid var(--line);
  background: var(--white);
}

.window-bar span {
  width: 10px;
  height: 10px;
  border-radius: 999px;
  background: var(--lavender);
}

.window-bar span:nth-child(2) {
  background: var(--mint);
}

.window-bar span:nth-child(3) {
  background: var(--gold);
}

.showcase-window img {
  width: 100%;
  aspect-ratio: 1.08;
  object-fit: cover;
  object-position: center top;
}

.showcase-card {
  position: absolute;
  right: -14px;
  bottom: 18px;
  width: min(330px, 88%);
  padding: 22px;
  border: 1px solid rgba(255, 255, 255, 0.68);
  border-radius: 8px;
  background: rgba(255, 255, 255, 0.88);
  box-shadow: 0 22px 60px rgba(31, 20, 40, 0.16);
  backdrop-filter: blur(16px);
}

.showcase-card span {
  color: var(--grape);
  font-size: 12px;
  font-weight: 900;
  text-transform: uppercase;
}

.showcase-card strong {
  display: block;
  margin: 8px 0;
  color: var(--plum);
  font-size: 22px;
  line-height: 1.1;
}

.showcase-card p {
  margin: 0;
  color: rgba(31, 20, 40, 0.68);
  font-size: 14px;
}

.hero-panel {
  padding: 22px;
  border: 1px solid rgba(255, 255, 255, 0.22);
  border-radius: 8px;
  color: var(--white);
  background: rgba(255, 255, 255, 0.13);
  box-shadow: 0 28px 80px rgba(0, 0, 0, 0.25);
  backdrop-filter: blur(22px);
}

.panel-topline {
  margin-bottom: 24px;
  color: var(--mint);
  font-size: 13px;
  font-weight: 900;
  text-transform: uppercase;
}

.panel-score {
  padding-bottom: 22px;
  border-bottom: 1px solid rgba(255, 255, 255, 0.18);
}

.panel-score strong {
  display: block;
  font-size: 54px;
  line-height: 0.95;
}

.panel-score span {
  color: rgba(255, 255, 255, 0.76);
  font-weight: 700;
}

.panel-row {
  display: flex;
  justify-content: space-between;
  gap: 18px;
  padding: 16px 0;
  border-bottom: 1px solid rgba(255, 255, 255, 0.14);
}

.panel-row:last-child {
  border-bottom: 0;
}

.panel-row span {
  color: rgba(255, 255, 255, 0.72);
}

.panel-row b {
  color: var(--mint);
}

.eyebrow {
  margin: 0 0 12px;
  color: var(--grape);
  font-size: 13px;
  font-weight: 900;
  letter-spacing: 0;
  text-transform: uppercase;
}

.hero .eyebrow {
  color: var(--mint);
}

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

h1,
h2,
h3 {
  line-height: 1.08;
  letter-spacing: 0;
}

h1 {
  margin-bottom: 20px;
  font-size: clamp(44px, 7vw, 86px);
  font-weight: 900;
}

h2 {
  font-size: clamp(30px, 4vw, 54px);
  font-weight: 900;
}

h3 {
  font-size: 24px;
  font-weight: 800;
}

.hero-copy {
  max-width: 600px;
  color: rgba(255, 255, 255, 0.88);
  font-size: clamp(16px, 1.45vw, 19px);
}

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

.section {
  width: min(1180px, calc(100% - 40px));
  margin: 0 auto;
  padding: 82px 0;
}

.trust-strip {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: 1px;
  color: var(--white);
  background: var(--line);
}

.trust-strip span {
  display: grid;
  min-height: 86px;
  place-items: center;
  padding: 18px;
  background: var(--ink);
  color: rgba(255, 255, 255, 0.76);
  font-size: 13px;
  font-weight: 800;
  text-align: center;
  text-transform: uppercase;
}

.metrics {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 18px;
}

.metric,
.service-card,
.values-grid article,
.service-detail-grid article,
.portfolio-card,
.package-row article {
  border: 1px solid var(--line);
  border-radius: 8px;
  background: var(--white);
  box-shadow: 0 10px 35px rgba(31, 20, 40, 0.06);
}

.metric {
  padding: 30px;
  background: linear-gradient(180deg, var(--white), var(--mist));
}

.metric strong {
  display: block;
  color: var(--plum);
  font-size: 50px;
  line-height: 1;
}

.metric span {
  color: rgba(31, 20, 40, 0.68);
  font-weight: 700;
}

.split {
  display: grid;
  grid-template-columns: minmax(0, 0.95fr) minmax(280px, 0.8fr);
  gap: 54px;
  align-items: start;
}

.split p:last-child {
  color: rgba(31, 20, 40, 0.72);
  font-size: 19px;
}

.intro-copy {
  display: grid;
  gap: 16px;
}

.premium-intro h2 {
  max-width: 680px;
}

.service-grid,
.values-grid,
.service-detail-grid,
.portfolio-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 18px;
  padding-top: 0;
}

.service-card {
  min-height: 290px;
  padding: 28px;
}

.service-card span,
.timeline span {
  display: inline-grid;
  width: 46px;
  height: 46px;
  margin-bottom: 28px;
  place-items: center;
  color: var(--plum);
  background: var(--mint);
  border-radius: 8px;
  font-weight: 900;
}

.service-card p,
.values-grid p,
.service-detail-grid p,
.portfolio-card p,
.timeline p,
.team-columns p,
.package-row p,
.contact-info p,
.signature-card p,
.process-grid p {
  color: rgba(31, 20, 40, 0.7);
}

.section-heading.wide {
  max-width: 780px;
  margin-bottom: 36px;
}

.signature-services {
  padding-top: 40px;
}

.signature-grid {
  display: grid;
  grid-template-columns: 1.1fr 0.95fr 0.95fr;
  gap: 18px;
}

.signature-card {
  min-height: 290px;
  padding: 30px;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: var(--white);
  box-shadow: 0 16px 50px rgba(31, 20, 40, 0.08);
}

.signature-card.large {
  grid-row: span 2;
  min-height: 598px;
  color: var(--white);
  background:
    linear-gradient(180deg, rgba(75, 42, 92, 0.25), rgba(31, 20, 40, 0.94)),
    url("../images/socion-markon-brand.jpeg") center / cover;
}

.signature-card.accent {
  background: linear-gradient(135deg, rgba(156, 134, 198, 0.35), rgba(245, 241, 250, 0.95));
}

.signature-card span,
.process-grid span,
.package-row article > span {
  display: inline-grid;
  min-width: 44px;
  height: 36px;
  margin-bottom: 46px;
  place-items: center;
  color: var(--plum);
  background: var(--mint);
  border-radius: 8px;
  font-size: 13px;
  font-weight: 900;
}

.signature-card.large span {
  color: var(--white);
  background: rgba(255, 255, 255, 0.18);
}

.signature-card.large p {
  color: rgba(255, 255, 255, 0.8);
}

.signature-card.large a {
  display: inline-flex;
  margin-top: 28px;
  color: var(--mint);
  font-weight: 900;
}

.brand-system {
  display: grid;
  grid-template-columns: minmax(320px, 0.9fr) minmax(0, 1fr);
  gap: 58px;
  align-items: center;
}

.system-visual {
  display: grid;
  grid-template-columns: repeat(2, minmax(120px, 1fr));
  gap: 14px;
  min-height: 420px;
  padding: 18px;
  border-radius: 8px;
  background: linear-gradient(135deg, var(--plum), var(--lavender));
  box-shadow: var(--shadow);
}

.system-card {
  display: grid;
  place-items: center;
  border: 1px solid rgba(255, 255, 255, 0.22);
  border-radius: 8px;
  color: var(--white);
  background: rgba(255, 255, 255, 0.13);
  font-size: 22px;
  font-weight: 900;
}

.primary-system {
  grid-row: span 2;
  min-height: 250px;
  background: rgba(255, 255, 255, 0.22);
}

.brand-system p {
  max-width: 640px;
  color: rgba(31, 20, 40, 0.72);
  font-size: 18px;
}

.brand-system .btn {
  margin-top: 14px;
}

.process-preview {
  width: 100%;
  padding-right: clamp(20px, 5vw, 72px);
  padding-left: clamp(20px, 5vw, 72px);
  background: var(--mist);
}

.process-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 16px;
}

.process-grid article {
  min-height: 280px;
  padding: 28px;
  border: 1px solid rgba(75, 42, 92, 0.12);
  border-radius: 8px;
  background: var(--white);
}

.case-study-band {
  display: grid;
  grid-template-columns: 1fr 0.85fr;
  gap: 48px;
  align-items: center;
  padding: 110px clamp(20px, 5vw, 72px);
  color: var(--white);
  background:
    linear-gradient(90deg, rgba(31, 20, 40, 0.96), rgba(75, 42, 92, 0.72)),
    url("../images/socion-markon-brand.jpeg") center / cover;
}

.case-copy {
  max-width: 740px;
}

.case-copy .eyebrow {
  color: var(--mint);
}

.case-copy p {
  color: rgba(255, 255, 255, 0.78);
  font-size: 18px;
}

.case-stats {
  display: grid;
  gap: 14px;
}

.case-stats div {
  display: grid;
  grid-template-columns: auto 1fr;
  gap: 18px;
  align-items: center;
  padding: 22px;
  border: 1px solid rgba(255, 255, 255, 0.18);
  border-radius: 8px;
  background: rgba(255, 255, 255, 0.1);
  backdrop-filter: blur(16px);
}

.case-stats strong {
  color: var(--mint);
  font-size: 24px;
}

.case-stats span {
  color: rgba(255, 255, 255, 0.82);
  font-weight: 700;
}

.package-showcase {
  padding-bottom: 56px;
}

.premium-packages article {
  position: relative;
  overflow: hidden;
  min-height: 390px;
  padding: 34px;
}

.premium-packages article > span {
  margin-bottom: 30px;
  padding: 0 12px;
}

.premium-packages ul {
  display: grid;
  gap: 10px;
  margin: 24px 0 0;
  padding-left: 20px;
  color: var(--plum);
  font-weight: 700;
}

.featured-package {
  color: var(--white);
  background: linear-gradient(135deg, var(--plum), var(--grape)) !important;
  transform: translateY(-18px);
}

.featured-package p,
.featured-package li {
  color: rgba(255, 255, 255, 0.82);
}

.featured-package h3 {
  color: var(--white);
}

.testimonial-section {
  display: grid;
  gap: 22px;
  max-width: 980px;
  text-align: center;
}

.quote-mark {
  margin: 0 auto;
  display: grid;
  width: 70px;
  height: 70px;
  place-items: center;
  border-radius: 8px;
  color: var(--white);
  background: var(--plum);
  font-weight: 900;
}

blockquote {
  margin: 0;
  color: var(--plum);
  font-size: clamp(28px, 4vw, 54px);
  font-weight: 900;
  line-height: 1.14;
}

.testimonial-section p {
  color: rgba(31, 20, 40, 0.64);
  font-weight: 800;
}

.final-cta {
  display: grid;
  grid-template-columns: 1fr auto;
  gap: 30px;
  align-items: center;
  width: calc(100% - 40px);
  margin-bottom: 88px;
  padding: clamp(46px, 7vw, 82px);
  border-radius: 8px;
  color: var(--white);
  background:
    radial-gradient(circle at 100% 0%, rgba(156, 134, 198, 0.28), transparent 28%),
    linear-gradient(135deg, var(--ink), var(--plum));
  box-shadow: var(--shadow);
}

.final-cta .eyebrow {
  color: var(--mint);
}

.final-cta p {
  max-width: 760px;
  color: rgba(255, 255, 255, 0.78);
}

.feature-band,
.pricing-band,
.team-band {
  display: grid;
  grid-template-columns: 1fr auto;
  gap: 30px;
  align-items: center;
  width: 100%;
  padding: 84px clamp(20px, 5vw, 72px);
  color: var(--white);
  background: linear-gradient(135deg, var(--plum), var(--grape));
}

.feature-band .eyebrow,
.pricing-band .eyebrow,
.team-band .eyebrow {
  color: var(--mint);
}

.feature-band p,
.pricing-band p,
.team-band p {
  max-width: 760px;
  color: rgba(255, 255, 255, 0.82);
}

.work-preview {
  display: grid;
  grid-template-columns: 0.75fr 1fr;
  gap: 38px;
}

.work-list {
  display: grid;
  gap: 10px;
}

.work-list a {
  padding: 20px 24px;
  border-left: 5px solid var(--gold);
  border-radius: 8px;
  color: var(--plum);
  background: var(--mist);
  font-size: 22px;
  font-weight: 900;
}

.page-hero {
  width: min(980px, calc(100% - 40px));
  margin: 0 auto;
  padding: 118px 0 72px;
}

.page-hero.compact {
  padding-bottom: 44px;
}

.page-hero h1 {
  color: var(--plum);
  font-size: clamp(44px, 7vw, 82px);
}

.page-hero p:last-child {
  max-width: 720px;
  color: rgba(31, 20, 40, 0.7);
  font-size: 20px;
}

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

.values-grid article,
.service-detail-grid article,
.portfolio-card,
.package-row article {
  padding: 28px;
}

.team-band {
  grid-template-columns: 0.8fr 1fr;
}

.team-columns {
  display: grid;
  gap: 16px;
}

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

.service-detail-grid h2 {
  font-size: 28px;
}

.section-heading-row {
  display: flex;
  align-items: end;
  justify-content: space-between;
  gap: 24px;
  margin-bottom: 30px;
}

.section-heading-row > div {
  max-width: 760px;
}

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

.linked-services a {
  position: relative;
  display: grid;
  min-height: 360px;
  padding: 28px;
  align-content: start;
  border: 1px solid rgba(74, 46, 92, 0.11);
  border-radius: 8px;
  background:
    linear-gradient(135deg, rgba(255, 255, 255, 0.92), rgba(246, 240, 255, 0.86)),
    radial-gradient(circle at top right, rgba(156, 134, 198, 0.18), transparent 38%);
  color: inherit;
  text-decoration: none;
  box-shadow: 0 20px 48px rgba(46, 26, 62, 0.08);
  transition: transform 260ms ease, border-color 260ms ease, box-shadow 260ms ease;
}

.linked-services a:hover {
  transform: translateY(-7px);
  border-color: rgba(156, 134, 198, 0.45);
  box-shadow: 0 30px 68px rgba(46, 26, 62, 0.14);
}

.linked-services a > span {
  display: inline-grid;
  width: 46px;
  height: 38px;
  margin-bottom: 24px;
  place-items: center;
  border-radius: 8px;
  background: var(--plum);
  color: var(--white);
  font-weight: 900;
}

.linked-services h2 {
  margin: 0 0 12px;
}

.linked-services p {
  color: #675d70;
}

.linked-services strong {
  align-self: end;
  margin-top: 22px;
  color: #6e4b9a;
  font-weight: 900;
}

.service-detail-grid ul {
  margin: 18px 0 0;
  padding-left: 20px;
  color: var(--plum);
  font-weight: 700;
}

.service-proof-strip {
  display: grid;
  grid-template-columns: 0.82fr 1.18fr;
  gap: 30px;
  align-items: start;
  padding: 64px;
  border: 1px solid rgba(74, 46, 92, 0.11);
  border-radius: 8px;
  background: linear-gradient(135deg, #4a2e5c 0%, #7b5aa8 100%);
  box-shadow: 0 26px 72px rgba(46, 26, 62, 0.18);
}

.service-proof-strip h2,
.service-proof-strip p {
  color: var(--white);
}

.service-proof-strip > div:first-child > p:last-child {
  color: rgba(255, 255, 255, 0.72);
}

.service-testimonial-grid {
  display: grid;
  gap: 14px;
}

.service-testimonial-grid article {
  padding: 22px;
  border: 1px solid rgba(255, 255, 255, 0.14);
  border-radius: 8px;
  background: rgba(255, 255, 255, 0.09);
}

.service-testimonial-grid p {
  margin-top: 0;
  color: rgba(255, 255, 255, 0.8);
}

.service-testimonial-grid strong {
  color: var(--white);
}

.package-row {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 14px;
}

.package-row article {
  color: var(--ink);
}

.package-row h3 {
  color: var(--plum);
}

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

.portfolio-card {
  min-height: 250px;
  background:
    linear-gradient(135deg, rgba(156, 134, 198, 0.16), rgba(156, 134, 198, 0.2)),
    var(--white);
}

a.portfolio-card {
  display: block;
  color: inherit;
  text-decoration: none;
  transition: transform 220ms ease, box-shadow 220ms ease, border-color 220ms ease;
}

a.portfolio-card:hover {
  transform: translateY(-6px);
  border-color: rgba(156, 134, 198, 0.42);
  box-shadow: 0 24px 58px rgba(75, 42, 92, 0.13);
}

.portfolio-card strong {
  display: inline-block;
  margin-top: 18px;
  color: var(--plum);
  font-size: 14px;
  font-weight: 900;
}

.portfolio-card span {
  display: inline-block;
  margin-bottom: 30px;
  color: var(--grape);
  font-size: 13px;
  font-weight: 900;
  text-transform: uppercase;
}

.timeline {
  display: grid;
  gap: 18px;
  max-width: 920px;
}

.timeline article {
  display: grid;
  grid-template-columns: auto 1fr;
  gap: 24px;
  padding: 28px;
  border: 1px solid var(--line);
  border-radius: 8px;
}

.timeline span {
  margin-bottom: 0;
}

.contact-layout {
  display: grid;
  grid-template-columns: 0.8fr 1.2fr;
  gap: 28px;
  align-items: start;
  padding-top: 20px;
}

.contact-info,
.contact-form {
  padding: 32px;
  border: 1px solid var(--line);
  border-radius: 8px;
}

.contact-info {
  background: var(--mist);
}

.contact-info a {
  display: block;
  margin: 14px 0;
  color: var(--plum);
  font-weight: 900;
}

.note {
  margin-top: 28px;
  font-size: 14px;
}

.contact-form {
  display: grid;
  gap: 18px;
  background: var(--white);
  box-shadow: var(--shadow);
}

label {
  display: grid;
  gap: 8px;
  color: var(--plum);
  font-weight: 900;
}

input,
select,
textarea {
  width: 100%;
  border: 1px solid var(--line);
  border-radius: 8px;
  padding: 14px 16px;
  color: var(--ink);
  font: inherit;
}

textarea {
  resize: vertical;
}

.form-status {
  min-height: 24px;
  margin: 0;
  color: var(--grape);
  font-weight: 800;
}

.site-footer {
  display: grid;
  grid-template-columns: 1fr auto;
  gap: 34px;
  padding: 54px clamp(20px, 5vw, 72px) 28px;
  color: rgba(255, 255, 255, 0.78);
  background: var(--ink);
}

.footer-brand {
  margin-bottom: 18px;
  color: var(--white);
}

.footer-brand small {
  color: var(--lavender);
}

.site-footer p {
  max-width: 480px;
}

.footer-links {
  display: flex;
  flex-wrap: wrap;
  gap: 18px;
  align-content: start;
  color: var(--white);
  font-weight: 800;
}

.footer-legal {
  grid-column: 1 / -1;
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
  margin-top: 10px;
  padding-top: 18px;
  border-top: 1px solid rgba(255, 255, 255, 0.12);
  color: rgba(255, 255, 255, 0.58);
  font-size: 13px;
  font-weight: 800;
}

.footer-legal a:hover,
.footer-legal a.active {
  color: var(--mint);
}

.premium-footer {
  display: block;
  padding: 0;
  border-top: 1px solid rgba(255, 255, 255, 0.12);
  background:
    radial-gradient(circle at 18% 0%, rgba(156, 134, 198, 0.18), transparent 32%),
    var(--ink);
}

.footer-main {
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto minmax(280px, 0.5fr);
  gap: 34px;
  align-items: start;
  padding: 58px clamp(20px, 5vw, 72px) 28px;
}

.footer-main p {
  max-width: 500px;
  color: rgba(255, 255, 255, 0.68);
}

.footer-chat {
  display: grid;
  gap: 7px;
  padding: 20px;
  border: 1px solid rgba(47, 143, 91, 0.42);
  border-radius: 8px;
  background:
    radial-gradient(circle at 18px 18px, rgba(47, 143, 91, 0.28), transparent 34%),
    rgba(255, 255, 255, 0.08);
  box-shadow: 0 20px 50px rgba(20, 12, 28, 0.22);
}

.footer-chat span {
  color: #6fd39a;
  font-size: 12px;
  font-weight: 900;
  text-transform: uppercase;
}

.footer-chat strong {
  color: var(--white);
  font-size: 19px;
}

.footer-chat small {
  color: rgba(255, 255, 255, 0.68);
  font-weight: 900;
}

.payment-marquee {
  overflow: hidden;
  padding: 24px 0;
  border-top: 1px solid rgba(201, 183, 232, 0.16);
  border-bottom: 1px solid rgba(201, 183, 232, 0.16);
  background:
    linear-gradient(90deg, rgba(31, 20, 40, 0.98), rgba(75, 42, 92, 0.96), rgba(31, 20, 40, 0.98));
}

.payment-track {
  display: flex;
  width: max-content;
  gap: 14px;
  animation: paymentMarquee 26s linear infinite;
}

.payment-logo {
  position: relative;
  display: inline-grid;
  width: 150px;
  height: 58px;
  flex: 0 0 auto;
  place-items: center;
  border: 1px solid rgba(201, 183, 232, 0.22);
  border-radius: 8px;
  background: rgba(255, 255, 255, 0.08);
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.08);
}

.payment-logo svg {
  width: 92px;
  height: 34px;
  color: var(--mint);
  fill: currentColor;
  filter: drop-shadow(0 8px 18px rgba(201, 183, 232, 0.12));
}

.payment-logo.visa svg,
.payment-logo.stripe svg {
  color: #ffffff;
}

.payment-logo.mastercard svg,
.payment-logo.paypal svg {
  color: var(--mint);
}

.payment-logo.bank svg,
.payment-logo.wise svg {
  color: var(--lavender);
}

.payment-logo:hover svg {
  color: #ffffff;
}

.premium-footer .copyright {
  margin: 0;
  padding: 12px clamp(20px, 5vw, 72px) 28px;
  color: rgba(255, 255, 255, 0.54);
}

.premium-footer .footer-legal {
  margin: 0;
  padding: 18px clamp(20px, 5vw, 72px) 0;
}

.copyright {
  grid-column: 1 / -1;
  margin: 0;
  padding-top: 0;
  border-top: 0;
  font-size: 14px;
}

.whatsapp-float {
  position: fixed;
  right: 22px;
  bottom: 22px;
  z-index: 40;
  display: inline-flex;
  align-items: center;
  gap: 8px;
  min-height: 54px;
  padding: 0;
  border-radius: 999px;
  color: var(--ink);
  background: transparent;
  box-shadow: none;
  font-weight: 900;
}

.whatsapp-icon {
  display: grid;
  width: 52px;
  height: 52px;
  place-items: center;
  border-radius: 999px;
  color: var(--white);
  background: #4b2a5c;
  box-shadow: 0 16px 38px rgba(75, 42, 92, 0.28);
  font-size: 12px;
  font-weight: 900;
}

.whatsapp-icon svg {
  width: 28px;
  height: 28px;
  fill: currentColor;
}

.whatsapp-label {
  display: grid;
  gap: 1px;
  padding: 9px 14px;
  border: 1px solid rgba(75, 42, 92, 0.18);
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.94);
  box-shadow: 0 14px 34px rgba(31, 20, 40, 0.12);
}

.whatsapp-label b {
  color: var(--plum);
  font-size: 12px;
  line-height: 1;
}

.whatsapp-label small {
  color: rgba(31, 20, 40, 0.68);
  font-size: 12px;
  font-weight: 900;
}

.concept-page {
  min-height: calc(100vh - 76px);
}

.concept-hero {
  position: relative;
  display: grid;
  width: min(1200px, calc(100% - 40px));
  margin: 0 auto;
  padding: clamp(72px, 10vw, 118px) 0;
}

.concept-hero h1 {
  max-width: 850px;
  font-size: clamp(42px, 6.5vw, 86px);
}

.concept-hero p {
  max-width: 650px;
  font-size: 19px;
}

.split-hero,
.product-hero {
  grid-template-columns: minmax(0, 1fr) minmax(320px, 0.72fr);
  gap: 70px;
  align-items: center;
}

.option-one {
  color: var(--white);
  background:
    radial-gradient(circle at 84% 16%, rgba(156, 134, 198, 0.22), transparent 28%),
    linear-gradient(135deg, #24162f, #4b2a5c 55%, #8061a8);
}

.option-one .eyebrow,
.option-three .eyebrow,
.option-four .eyebrow {
  color: var(--mint);
}

.option-one .concept-panel {
  padding: 34px;
  border: 1px solid rgba(255, 255, 255, 0.18);
  border-radius: 8px;
  background: rgba(255, 255, 255, 0.11);
  box-shadow: 0 30px 80px rgba(0, 0, 0, 0.22);
}

.concept-panel span {
  color: var(--mint);
  font-weight: 900;
  text-transform: uppercase;
}

.concept-panel blockquote {
  margin: 16px 0 26px;
  color: var(--white);
  font-size: clamp(30px, 3vw, 46px);
}

.concept-tags {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
}

.concept-tags b {
  padding: 10px 14px;
  border-radius: 999px;
  color: var(--plum);
  background: var(--mint);
}

.figma-3d-stage {
  --tilt-x: 0deg;
  --tilt-y: 0deg;
  position: relative;
  min-height: 520px;
  perspective: 1100px;
  transform-style: preserve-3d;
  animation: stageEnter 980ms cubic-bezier(0.22, 1, 0.36, 1) 180ms both;
}

.figma-3d-stage::before {
  content: "";
  position: absolute;
  inset: 12% -6% 5% 4%;
  border-radius: 8px;
  background:
    linear-gradient(rgba(255, 255, 255, 0.07) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255, 255, 255, 0.07) 1px, transparent 1px);
  background-size: 30px 30px;
  opacity: 0.58;
  transform: rotateX(65deg) translateZ(-90px);
  pointer-events: none;
}

.figma-three-canvas {
  position: absolute;
  inset: -8% -8% -4% -8%;
  z-index: 0;
  width: 116%;
  height: 112%;
  opacity: 0.72;
  pointer-events: none;
}

.figma-orbit {
  position: absolute;
  z-index: 1;
  inset: 44px 22px 46px 22px;
  border: 1px solid rgba(201, 183, 232, 0.32);
  border-radius: 50%;
  transform: rotateX(66deg) rotateZ(-20deg);
  animation: orbitSpin 14s linear infinite;
}

.figma-orbit::after {
  content: "";
  position: absolute;
  top: -7px;
  left: 48%;
  width: 14px;
  height: 14px;
  border-radius: 50%;
  background: var(--mint);
  box-shadow: 0 0 28px rgba(201, 183, 232, 0.95);
}

.figma-canvas-card,
.figma-board,
.figma-floating-note {
  position: absolute;
  z-index: 2;
  border: 1px solid rgba(255, 255, 255, 0.18);
  border-radius: 8px;
  background: rgba(255, 255, 255, 0.1);
  box-shadow: 0 28px 74px rgba(15, 8, 23, 0.3);
  backdrop-filter: blur(18px);
}

.figma-canvas-card {
  inset: 70px 28px 72px 36px;
  padding: 20px;
  transform:
    rotateX(calc(9deg + var(--tilt-y)))
    rotateY(calc(-16deg + var(--tilt-x)))
    rotateZ(-2deg)
    translateZ(46px);
  transform-style: preserve-3d;
  transition: transform 220ms ease;
  animation: canvasFloat 6.5s ease-in-out infinite;
}

.canvas-toolbar {
  display: flex;
  align-items: center;
  gap: 8px;
  padding-bottom: 18px;
}

.canvas-toolbar i {
  width: 10px;
  height: 10px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.44);
}

.canvas-toolbar b {
  margin-left: auto;
  color: var(--white);
  font-size: 13px;
  font-weight: 900;
}

.canvas-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 10px;
  transform: translateZ(28px);
}

.canvas-grid span {
  min-height: 58px;
  border-radius: 8px;
  background: linear-gradient(135deg, rgba(255, 255, 255, 0.88), rgba(201, 183, 232, 0.78));
  animation: tilePulse 4.6s ease-in-out infinite;
}

.canvas-grid span:nth-child(3n) {
  background: linear-gradient(135deg, rgba(242, 201, 121, 0.92), rgba(255, 255, 255, 0.7));
  animation-delay: 540ms;
}

.canvas-grid span:nth-child(4n) {
  background: linear-gradient(135deg, rgba(117, 80, 156, 0.92), rgba(201, 183, 232, 0.72));
  animation-delay: 900ms;
}

.canvas-flow {
  display: grid;
  grid-template-columns: 1.2fr 0.8fr 1fr;
  gap: 10px;
  margin-top: 12px;
  transform: translateZ(44px);
}

.canvas-flow em {
  height: 12px;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.42);
  animation: flowPulse 2.8s ease-in-out infinite;
}

.canvas-flow em:nth-child(2) {
  animation-delay: 220ms;
}

.canvas-flow em:nth-child(3) {
  animation-delay: 440ms;
}

.figma-board {
  z-index: 2;
  display: grid;
  gap: 6px;
  width: 188px;
  padding: 18px;
  transform-style: preserve-3d;
}

.figma-board span {
  color: var(--mint);
  font-size: 12px;
  font-weight: 900;
  text-transform: uppercase;
}

.figma-board strong {
  color: var(--white);
  font-size: 28px;
  line-height: 1;
}

.figma-board small {
  color: rgba(255, 255, 255, 0.68);
  font-weight: 800;
}

.layer-one {
  top: 30px;
  left: 8px;
  transform: rotateX(10deg) rotateY(-22deg) translateZ(98px);
  animation: layerFloat 5.6s ease-in-out infinite;
}

.layer-two {
  right: 0;
  top: 150px;
  transform: rotateX(8deg) rotateY(-18deg) translateZ(128px);
  animation: layerFloat 6.1s ease-in-out 500ms infinite;
}

.layer-three {
  bottom: 28px;
  left: 44px;
  transform: rotateX(12deg) rotateY(-16deg) translateZ(112px);
  animation: layerFloat 6.4s ease-in-out 900ms infinite;
}

.figma-floating-note {
  right: 42px;
  bottom: 28px;
  z-index: 3;
  display: flex;
  gap: 10px;
  align-items: center;
  padding: 14px 16px;
  color: var(--plum);
  background: rgba(255, 255, 255, 0.88);
  transform: rotateX(14deg) rotateY(-18deg) translateZ(166px);
  animation: noteFloat 4.8s ease-in-out infinite;
}

.figma-floating-note b,
.figma-floating-note span,
.figma-floating-note small {
  font-weight: 900;
}

.concept-services,
.concept-metrics,
.editorial-lines,
.minimal-strip {
  display: grid;
  width: min(1200px, calc(100% - 40px));
  margin: 0 auto;
  gap: 16px;
  padding-bottom: 80px;
}

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

.concept-services article,
.concept-metrics div {
  padding: 28px;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: rgba(255, 255, 255, 0.9);
  box-shadow: 0 18px 45px rgba(31, 20, 40, 0.08);
}

.concept-services h2 {
  color: var(--plum);
  font-size: 28px;
}

.option-one .concept-services article {
  border-color: rgba(255, 255, 255, 0.16);
  background: rgba(255, 255, 255, 0.1);
}

.option-one .concept-services h2,
.option-one .concept-services p {
  color: var(--white);
}

.option-two {
  background: linear-gradient(135deg, var(--white), var(--mist));
}

.centered-hero {
  justify-items: center;
  text-align: center;
}

.centered-hero h1 {
  color: var(--plum);
}

.centered-hero p {
  color: rgba(31, 20, 40, 0.7);
}

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

.concept-metrics strong {
  display: block;
  color: var(--plum);
  font-size: 52px;
}

.concept-metrics span {
  color: rgba(31, 20, 40, 0.66);
  font-weight: 800;
}

.option-three {
  color: var(--white);
  background: #211528;
}

.editorial-hero {
  grid-template-columns: 1.15fr 0.85fr;
  gap: 64px;
  align-items: end;
}

.editorial-hero h1 {
  color: var(--white);
}

.editorial-hero p {
  color: rgba(255, 255, 255, 0.74);
}

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

.editorial-lines p {
  margin: 0;
  padding: 28px;
  border-top: 1px solid rgba(255, 255, 255, 0.18);
  color: var(--mint);
  font-size: 28px;
  font-weight: 900;
}

.option-four {
  color: var(--white);
  background:
    linear-gradient(135deg, rgba(36, 22, 47, 0.95), rgba(75, 42, 92, 0.86)),
    var(--plum);
}

.product-stack {
  display: grid;
  gap: 12px;
}

.product-stack div {
  padding: 22px 26px;
  border: 1px solid rgba(255, 255, 255, 0.16);
  border-radius: 8px;
  background: rgba(255, 255, 255, 0.1);
  color: var(--white);
  font-size: 22px;
  font-weight: 900;
  box-shadow: 0 18px 45px rgba(0, 0, 0, 0.14);
}

.product-stack div:nth-child(2),
.product-stack div:nth-child(4) {
  transform: translateX(34px);
}

.option-five {
  background: var(--white);
}

.minimal-hero {
  min-height: 620px;
  align-content: center;
  justify-items: start;
}

.minimal-hero h1 {
  max-width: 760px;
  color: var(--plum);
}

.minimal-hero p {
  color: rgba(31, 20, 40, 0.68);
}

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

.minimal-strip span {
  padding: 22px;
  border-top: 1px solid var(--line);
  color: var(--plum);
  font-weight: 900;
}

.concept-wide,
.concept-steps,
.concept-cta {
  width: min(1200px, calc(100% - 40px));
  margin: 0 auto;
}

.concept-wide {
  padding: 78px 0;
  border-top: 1px solid rgba(255, 255, 255, 0.16);
}

.concept-wide h2 {
  max-width: 900px;
  color: inherit;
  font-size: clamp(32px, 4vw, 58px);
}

.concept-wide p:last-child {
  max-width: 760px;
  color: rgba(255, 255, 255, 0.72);
  font-size: 18px;
}

.concept-wide.light {
  border-color: var(--line);
}

.concept-wide.light h2 {
  color: var(--plum);
}

.concept-wide.light p:last-child {
  color: rgba(31, 20, 40, 0.68);
}

.concept-wide.dark h2 {
  color: var(--white);
}

.concept-steps {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 16px;
  padding-bottom: 84px;
}

.concept-steps article {
  padding: 28px;
  border: 1px solid rgba(255, 255, 255, 0.16);
  border-radius: 8px;
  background: rgba(255, 255, 255, 0.1);
}

.concept-steps.light article {
  border-color: var(--line);
  background: var(--white);
  box-shadow: 0 18px 45px rgba(31, 20, 40, 0.08);
}

.concept-steps span {
  display: inline-grid;
  min-width: 42px;
  height: 36px;
  margin-bottom: 32px;
  padding: 0 12px;
  place-items: center;
  border-radius: 8px;
  color: var(--plum);
  background: var(--mint);
  font-weight: 900;
}

.concept-steps h3 {
  color: inherit;
}

.concept-steps p {
  color: rgba(255, 255, 255, 0.72);
}

.concept-steps.light p {
  color: rgba(31, 20, 40, 0.68);
}

.concept-cta {
  display: grid;
  grid-template-columns: 1fr auto;
  gap: 24px;
  align-items: center;
  padding: 44px;
  border: 1px solid rgba(255, 255, 255, 0.16);
  border-radius: 8px;
  background: rgba(255, 255, 255, 0.1);
  transform: translateY(-38px);
}

.concept-cta h2 {
  margin: 0;
  color: inherit;
  font-size: clamp(28px, 3vw, 42px);
}

.concept-cta.soft {
  border-color: var(--line);
  color: var(--plum);
  background: var(--white);
  box-shadow: 0 18px 45px rgba(31, 20, 40, 0.08);
}

.concept-cta.dark {
  color: var(--white);
}

.editorial-cards article,
.product-cards article {
  background: rgba(255, 255, 255, 0.1);
  border-color: rgba(255, 255, 255, 0.16);
}

.editorial-cards h2,
.editorial-cards p,
.product-cards h2,
.product-cards p {
  color: var(--white);
}

.agency-trust,
.agency-proof,
.agency-industries,
.agency-pricing,
.agency-faq {
  width: min(1200px, calc(100% - 40px));
  margin: 0 auto;
}

.agency-trust {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: 1px;
  padding-bottom: 70px;
}

.agency-trust span {
  display: grid;
  min-height: 78px;
  place-items: center;
  padding: 16px;
  border: 1px solid rgba(255, 255, 255, 0.14);
  color: rgba(255, 255, 255, 0.75);
  background: rgba(255, 255, 255, 0.08);
  font-size: 13px;
  font-weight: 900;
  text-align: center;
  text-transform: uppercase;
}

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

.agency-services article {
  min-height: 280px;
}

.linked-home-services a {
  display: block;
  min-height: 280px;
  padding: 28px;
  border: 1px solid rgba(255, 255, 255, 0.14);
  border-radius: 8px;
  background: rgba(255, 255, 255, 0.08);
  color: inherit;
  text-decoration: none;
  transition: transform 260ms ease, border-color 260ms ease, background 260ms ease, box-shadow 260ms ease;
}

.linked-home-services a:hover {
  transform: translateY(-8px);
  border-color: rgba(201, 183, 232, 0.52);
  background: rgba(255, 255, 255, 0.12);
  box-shadow: 0 28px 70px rgba(31, 20, 40, 0.22);
}

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

.industry-link-grid a {
  display: grid;
  gap: 10px;
  min-height: 230px;
  padding: 26px;
  border: 1px solid rgba(75, 42, 92, 0.12);
  border-radius: 8px;
  background: #ffffff;
  color: #241632;
  text-decoration: none;
  box-shadow: 0 18px 45px rgba(75, 42, 92, 0.08);
  transition: transform 220ms ease, box-shadow 220ms ease, border-color 220ms ease;
}

.industry-link-grid a:hover {
  transform: translateY(-6px);
  border-color: rgba(156, 134, 198, 0.44);
  box-shadow: 0 24px 58px rgba(75, 42, 92, 0.13);
}

.industry-link-grid span {
  color: #7f5cb7;
  font-size: 12px;
  font-weight: 900;
  text-transform: uppercase;
}

.industry-link-grid strong {
  color: #241632;
  font-size: 24px;
  line-height: 1.15;
}

.industry-link-grid p {
  margin: 0;
  color: #675d70;
  font-weight: 700;
  line-height: 1.7;
}

.industry-deliverables,
.industry-stack {
  width: min(1120px, calc(100% - 40px));
  margin: 0 auto;
}

.industry-deliverables h2,
.industry-stack h2 {
  max-width: 760px;
  color: #241632;
}

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

.industry-deliverable-grid article {
  min-height: 150px;
  padding: 24px;
  border: 1px solid rgba(75, 42, 92, 0.12);
  border-radius: 8px;
  background: #ffffff;
  box-shadow: 0 18px 45px rgba(75, 42, 92, 0.08);
}

.industry-deliverable-grid strong {
  color: #241632;
  line-height: 1.45;
}

.industry-stack div {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-top: 24px;
}

.industry-stack span {
  padding: 12px 16px;
  border: 1px solid rgba(75, 42, 92, 0.12);
  border-radius: 999px;
  color: #5d3b80;
  background: #f5efff;
  font-weight: 900;
}

.agency-services article > span {
  display: inline-grid;
  width: 44px;
  height: 36px;
  margin-bottom: 34px;
  place-items: center;
  border-radius: 8px;
  color: var(--plum);
  background: var(--mint);
  font-weight: 900;
}

.linked-home-services a > span {
  display: inline-grid;
  width: 44px;
  height: 36px;
  margin-bottom: 34px;
  place-items: center;
  border-radius: 8px;
  color: var(--plum);
  background: var(--mint);
  font-weight: 900;
}

.agency-proof {
  display: grid;
  grid-template-columns: 0.9fr 1.1fr;
  gap: 46px;
  align-items: start;
  padding: 84px 0;
  border-top: 1px solid rgba(255, 255, 255, 0.16);
}

.agency-proof h2,
.agency-industries h2,
.agency-pricing h2,
.agency-faq h2 {
  color: var(--white);
}

.proof-list {
  display: grid;
  gap: 12px;
}

.proof-list article,
.proof-list a {
  display: grid;
  gap: 7px;
  padding: 22px;
  border: 1px solid rgba(255, 255, 255, 0.14);
  border-radius: 8px;
  background: rgba(255, 255, 255, 0.08);
  color: inherit;
  text-decoration: none;
}

.proof-list a:hover {
  border-color: rgba(156, 134, 198, 0.42);
  box-shadow: 0 24px 58px rgba(75, 42, 92, 0.12);
}

.proof-list em {
  color: #7f5cb7;
  font-size: 12px;
  font-style: normal;
  font-weight: 900;
  text-transform: uppercase;
}

.proof-list strong {
  color: var(--mint);
  font-size: 20px;
}

.proof-list span {
  color: rgba(255, 255, 255, 0.72);
  font-weight: 700;
}

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

.agency-industries {
  padding: 84px 0;
  border-top: 1px solid rgba(255, 255, 255, 0.16);
}

.agency-industries h2 {
  max-width: 820px;
}

.agency-industries div {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-top: 28px;
}

.agency-industries span {
  padding: 12px 16px;
  border: 1px solid rgba(255, 255, 255, 0.16);
  border-radius: 999px;
  color: rgba(255, 255, 255, 0.78);
  background: rgba(255, 255, 255, 0.08);
  font-weight: 900;
}

.agency-pricing {
  padding: 84px 0;
  border-top: 1px solid rgba(255, 255, 255, 0.16);
}

.pricing-heading {
  max-width: 780px;
  margin-bottom: 34px;
}

.pricing-heading > p {
  color: rgba(255, 255, 255, 0.68);
  font-weight: 700;
}

.agency-pricing .currency-toggle {
  margin-top: 20px;
  border-color: rgba(255, 255, 255, 0.16);
  background: rgba(255, 255, 255, 0.1);
  box-shadow: 0 16px 42px rgba(20, 12, 28, 0.18);
}

.agency-pricing .currency-toggle button {
  color: rgba(255, 255, 255, 0.82);
}

.agency-pricing .currency-toggle button.active {
  color: var(--plum);
}

.agency-pricing .currency-toggle::before {
  background: var(--mint);
}

.service-page {
  background:
    linear-gradient(180deg, #ffffff 0%, #fbf8ff 45%, #ffffff 100%);
}

.service-hero {
  display: grid;
  width: min(1120px, calc(100% - 40px));
  margin: 0 auto;
  padding: 96px 0 64px;
  text-align: center;
  justify-items: center;
}

.service-hero h1 {
  max-width: 920px;
  margin: 14px 0 18px;
  color: var(--plum);
  font-size: clamp(44px, 5vw, 76px);
  line-height: 1.02;
}

.service-hero > p:not(.eyebrow) {
  max-width: 680px;
  margin: 0;
  color: #675d70;
  font-size: 18px;
  font-weight: 700;
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  justify-content: center;
  margin-top: 28px;
}

.service-split,
.service-testimonials,
.service-related {
  width: min(1120px, calc(100% - 40px));
  margin: 0 auto;
}

.service-split {
  display: grid;
  grid-template-columns: 0.86fr 1.14fr;
  gap: 34px;
  align-items: start;
  padding: 54px;
  border: 1px solid rgba(74, 46, 92, 0.1);
  border-radius: 8px;
  background: #ffffff;
  box-shadow: 0 24px 64px rgba(46, 26, 62, 0.1);
}

.service-split h2,
.service-testimonials h2,
.service-related h2 {
  color: var(--plum);
}

.service-split p {
  color: #675d70;
  font-weight: 700;
}

.feature-list {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 12px;
  margin: 0;
  padding: 0;
  list-style: none;
}

.feature-list li {
  min-height: 88px;
  padding: 18px;
  border: 1px solid rgba(74, 46, 92, 0.1);
  border-radius: 8px;
  background: rgba(156, 134, 198, 0.08);
  color: var(--plum);
  font-weight: 900;
}

.service-pricing {
  width: min(1200px, calc(100% - 40px));
  margin: 78px auto 0;
  padding: 64px;
  border: 1px solid rgba(255, 255, 255, 0.16);
  border-radius: 8px;
  color: var(--white);
  background:
    radial-gradient(circle at 12% 0%, rgba(201, 183, 232, 0.24), transparent 32%),
    radial-gradient(circle at 90% 14%, rgba(242, 201, 121, 0.12), transparent 30%),
    linear-gradient(135deg, #2f1d3d 0%, #4a2e5c 52%, #8d73b4 100%);
  box-shadow: 0 30px 82px rgba(46, 26, 62, 0.22);
}

.service-pricing .pricing-heading {
  max-width: 860px;
}

.service-pricing .pricing-heading > p {
  color: rgba(255, 255, 255, 0.76);
}

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

.service-price-grid article {
  grid-template-rows: auto minmax(82px, auto) minmax(80px, auto) 1fr auto;
  min-height: 455px;
  border-color: rgba(255, 255, 255, 0.78);
  background: #ffffff;
  box-shadow: 0 22px 58px rgba(28, 15, 39, 0.18);
}

.service-price-grid article > span {
  color: #7f5cb7;
}

.service-price-grid h3 {
  color: #241632;
}

.service-price-grid p,
.service-price-grid li {
  color: #675d70;
}

.service-price-grid a {
  color: #ffffff;
  background: linear-gradient(135deg, #4a2e5c, #7b5aa8);
  box-shadow: 0 14px 30px rgba(74, 46, 92, 0.2);
}

.service-price-grid .popular-price {
  border-color: rgba(201, 183, 232, 0.76);
  background: linear-gradient(180deg, #ffffff 0%, #f5efff 100%) !important;
}

.service-process h2:first-of-type {
  color: var(--plum);
}

.service-testimonials {
  padding: 84px 0;
}

.service-testimonials > div {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 16px;
}

.service-testimonials article {
  display: grid;
  min-height: 220px;
  padding: 30px;
  border: 1px solid rgba(74, 46, 92, 0.11);
  border-radius: 8px;
  background: #ffffff;
  box-shadow: 0 18px 44px rgba(46, 26, 62, 0.08);
}

.service-testimonials article p {
  margin-top: 0;
  color: #4f4558;
  font-size: 20px;
  font-weight: 800;
}

.service-testimonials strong {
  align-self: end;
  color: var(--plum);
}

.service-testimonials span {
  color: #7a6d82;
  font-weight: 800;
}

.service-related {
  padding: 0 0 78px;
}

.service-related div {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 14px;
  margin-top: 20px;
}

.service-related a {
  display: grid;
  min-height: 94px;
  place-items: center;
  padding: 18px;
  border: 1px solid rgba(74, 46, 92, 0.12);
  border-radius: 8px;
  background: #ffffff;
  color: var(--plum);
  font-weight: 900;
  text-align: center;
  text-decoration: none;
  box-shadow: 0 14px 34px rgba(46, 26, 62, 0.07);
  transition: transform 240ms ease, border-color 240ms ease;
}

.service-related a:hover {
  transform: translateY(-5px);
  border-color: rgba(156, 134, 198, 0.46);
}

.service-page .concept-cta {
  margin-top: 0;
  margin-bottom: 78px;
  border: 0;
  color: #ffffff;
  background:
    radial-gradient(circle at 14% 12%, rgba(255, 255, 255, 0.18), transparent 32%),
    linear-gradient(135deg, #4a2e5c 0%, #8d73b4 100%);
  box-shadow: 0 26px 70px rgba(74, 46, 92, 0.24);
}

.service-page .concept-cta h2 {
  color: #ffffff;
}

.service-page .concept-cta .btn.light,
.lms-white-page .concept-cta .btn.light {
  color: #4a2e5c;
  background: linear-gradient(135deg, #ffffff 0%, #f5efff 100%);
  box-shadow: 0 18px 42px rgba(20, 12, 28, 0.22);
}

.service-page .concept-cta .btn.light:hover,
.lms-white-page .concept-cta .btn.light:hover {
  box-shadow: 0 24px 52px rgba(20, 12, 28, 0.3);
}

.lms-white-page .agency-pricing .currency-toggle {
  border-color: rgba(74, 46, 92, 0.14);
  background: #ffffff;
  box-shadow: 0 12px 32px rgba(46, 26, 62, 0.1);
}

.lms-white-page .agency-pricing .currency-toggle button {
  color: #4a2e5c;
}

.lms-white-page .agency-pricing .currency-toggle button.active {
  color: #ffffff;
}

.lms-white-page .agency-pricing .currency-toggle::before {
  background: #4a2e5c;
}

.pricing-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 16px;
  align-items: stretch;
}

.pricing-grid article {
  display: grid;
  grid-template-rows: auto minmax(96px, auto) minmax(86px, auto) 1fr auto;
  min-height: 430px;
  padding: 28px;
  border: 1px solid rgba(255, 255, 255, 0.16);
  border-radius: 8px;
  background: rgba(255, 255, 255, 0.09);
}

.pricing-grid article > span {
  color: var(--mint);
  font-size: 13px;
  font-weight: 900;
  text-transform: uppercase;
}

.pricing-grid h3 {
  margin: 18px 0 12px;
  color: var(--white);
  font-size: 42px;
  line-height: 1.08;
}

.pricing-grid p,
.pricing-grid li {
  color: rgba(255, 255, 255, 0.72);
}

.pricing-grid ul {
  display: grid;
  align-content: start;
  gap: 10px;
  margin: 22px 0;
  padding-left: 18px;
}

.pricing-grid a {
  align-self: end;
  margin-top: auto;
  padding: 12px 14px;
  border-radius: 8px;
  color: var(--plum);
  background: var(--white);
  font-weight: 900;
  text-align: center;
}

.popular-price {
  background: rgba(156, 134, 198, 0.16) !important;
  box-shadow: 0 24px 70px rgba(0, 0, 0, 0.18);
}

.service-pricing .pricing-grid article {
  border-color: rgba(255, 255, 255, 0.78);
  background: #ffffff;
  box-shadow: 0 22px 58px rgba(28, 15, 39, 0.18);
}

.service-pricing .pricing-grid article > span {
  color: #7f5cb7;
}

.service-pricing .pricing-grid h3 {
  color: #241632;
}

.service-pricing .pricing-grid p,
.service-pricing .pricing-grid li {
  color: #675d70;
}

.service-pricing .pricing-grid a {
  color: #ffffff;
  background: linear-gradient(135deg, #4a2e5c, #7b5aa8);
  box-shadow: 0 14px 30px rgba(74, 46, 92, 0.2);
}

.service-pricing .pricing-grid .popular-price {
  border-color: rgba(201, 183, 232, 0.76);
  background: linear-gradient(180deg, #ffffff 0%, #f5efff 100%) !important;
}

.agency-faq {
  padding: 84px 0 120px;
  border-top: 1px solid rgba(255, 255, 255, 0.16);
}

.agency-faq > div {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 16px;
  margin-top: 28px;
}

.agency-faq article {
  padding: 24px;
  border: 1px solid rgba(255, 255, 255, 0.14);
  border-radius: 8px;
  background: rgba(255, 255, 255, 0.08);
}

.agency-faq h3 {
  color: var(--white);
}

.agency-faq p {
  color: rgba(255, 255, 255, 0.72);
}

.lms-teaser {
  display: grid;
  grid-template-columns: 1fr auto;
  gap: 28px;
  align-items: center;
  width: min(1200px, calc(100% - 40px));
  margin: 0 auto;
  padding: 56px;
  border: 1px solid rgba(255, 255, 255, 0.16);
  border-radius: 8px;
  background: rgba(255, 255, 255, 0.1);
}

.lms-teaser h2 {
  color: var(--white);
}

.lms-teaser p:last-child {
  max-width: 720px;
  color: rgba(255, 255, 255, 0.72);
}

.lms-showcase,
.seo-stack {
  width: min(1200px, calc(100% - 40px));
  margin: 0 auto;
  padding: 84px 0;
  border-top: 1px solid rgba(255, 255, 255, 0.16);
}

.lms-showcase {
  display: grid;
  grid-template-columns: 0.85fr 1.15fr;
  gap: 42px;
  align-items: start;
}

.lms-showcase h2,
.seo-stack h2 {
  color: var(--white);
}

.lms-showcase p {
  color: rgba(255, 255, 255, 0.72);
}

.lms-grid {
  display: grid;
  gap: 14px;
}

.lms-grid article {
  padding: 24px;
  border: 1px solid rgba(255, 255, 255, 0.14);
  border-radius: 8px;
  background: rgba(255, 255, 255, 0.08);
}

.lms-grid span {
  display: inline-block;
  margin-bottom: 18px;
  padding: 8px 12px;
  border-radius: 999px;
  color: var(--plum);
  background: var(--mint);
  font-size: 12px;
  font-weight: 900;
  text-transform: uppercase;
}

.lms-grid h3 {
  color: var(--white);
}

.lms-grid p {
  margin: 0;
}

.seo-stack div {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-top: 28px;
}

.seo-stack span {
  padding: 12px 16px;
  border: 1px solid rgba(255, 255, 255, 0.16);
  border-radius: 999px;
  color: rgba(255, 255, 255, 0.8);
  background: rgba(255, 255, 255, 0.08);
  font-weight: 900;
}

.project-shot-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 16px;
}

.project-shot-grid article {
  overflow: hidden;
  border: 1px solid rgba(255, 255, 255, 0.14);
  border-radius: 8px;
  background: rgba(255, 255, 255, 0.08);
}

.project-shot-grid img {
  width: 100%;
  aspect-ratio: 1.45;
  object-fit: cover;
  object-position: top center;
  background: rgba(255, 255, 255, 0.08);
}

.project-shot-grid strong,
.project-shot-grid a {
  display: block;
  padding-right: 18px;
  padding-left: 18px;
}

.project-shot-grid strong {
  padding-top: 16px;
  color: var(--white);
  font-size: 20px;
}

.project-shot-grid a {
  padding-bottom: 18px;
  color: var(--mint);
  font-weight: 900;
}

@media (max-width: 900px) {
  .split-hero,
  .product-hero,
  .editorial-hero {
    grid-template-columns: 1fr;
  }

  .concept-services,
  .concept-metrics,
  .editorial-lines,
  .minimal-strip,
  .concept-steps,
  .concept-cta,
  .lms-teaser,
  .agency-services,
  .agency-trust,
  .agency-proof,
  .lms-showcase,
  .project-shot-grid,
  .pricing-grid,
  .agency-faq > div,
  .service-proof-strip,
  .service-split {
    grid-template-columns: 1fr;
  }

  .linked-services,
  .service-price-grid,
  .service-testimonials > div,
  .service-related div {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .popular-price {
    transform: none;
  }

  .concept-cta {
    transform: none;
    margin-bottom: 40px;
    padding: 28px;
  }

  .product-stack div:nth-child(2),
  .product-stack div:nth-child(4) {
    transform: none;
  }
}

@media (max-width: 980px) {
  .site-header {
    grid-template-columns: auto auto;
  }

  .nav-toggle {
    display: grid;
    place-items: center;
    justify-self: end;
  }

  .site-nav {
    display: none;
    grid-column: 1 / -1;
    justify-content: start;
    padding-top: 12px;
  }

  .site-nav.open {
    display: grid;
    gap: 8px;
  }

  .nav-more {
    width: 100%;
  }

  .nav-more summary {
    width: max-content;
  }

  .nav-dropdown {
    position: static;
    min-width: 0;
    margin: 6px 0 0 12px;
    background: rgba(156, 134, 198, 0.08);
    box-shadow: none;
  }

  .header-cta {
    display: none;
  }

  .hero {
    min-height: 600px;
  }

  .hero-premium-inner {
    grid-template-columns: 1fr;
    align-items: center;
    padding: 56px 0;
  }

  .hero-command .hero-premium-inner {
    grid-template-columns: 1fr;
  }

  .hero-calm .hero-premium-inner {
    grid-template-columns: 1fr;
  }

  .hero-showcase {
    min-height: 420px;
    max-width: 620px;
  }

  .figma-3d-stage {
    min-height: 480px;
    max-width: 620px;
  }

  .command-center {
    max-width: 620px;
  }

  .calm-showcase {
    max-width: 620px;
  }

  .hero-content {
    margin-bottom: 48px;
    padding-right: 0;
  }

  .metrics,
  .service-grid,
  .values-grid,
  .service-detail-grid,
  .portfolio-grid,
  .package-row,
  .process-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .split,
  .work-preview,
  .feature-band,
  .pricing-band,
  .team-band,
  .contact-layout,
  .brand-system,
  .case-study-band,
  .final-cta {
    grid-template-columns: 1fr;
  }

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

  .signature-card.large {
    grid-row: auto;
    min-height: 390px;
  }

  .featured-package {
    transform: none;
  }
}

@media (max-width: 640px) {
  .site-header {
    padding: 14px 18px;
  }

  .brand strong {
    font-size: 20px;
  }

  .hero {
    min-height: auto;
  }

  .hero-premium {
    min-height: auto;
  }

  .hero-premium-inner {
    width: min(100% - 32px, 1240px);
    padding: 42px 0;
  }

  h1 {
    font-size: 38px;
  }

  .hero-premium h1 {
    font-size: 36px;
    line-height: 1.08;
  }

  .hero-command h1 {
    font-size: 34px;
  }

  .hero-calm h1 {
    font-size: 34px;
  }

  .hero-copy {
    font-size: 15px;
  }

  .hero-proof {
    grid-template-columns: 1fr;
  }

  .command-proof {
    grid-template-columns: 1fr;
  }

  .command-center {
    padding: 14px;
  }

  .command-logo {
    height: 128px;
  }

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

  .hero-calm::before {
    background-size: 42px 42px;
  }

  .hero-showcase {
    min-height: auto;
  }

  .showcase-card {
    position: static;
    width: 100%;
    margin-top: 14px;
  }

  .figma-3d-stage {
    min-height: 390px;
  }

  .figma-canvas-card {
    inset: 62px 14px 58px 14px;
  }

  .figma-board {
    width: 148px;
    padding: 14px;
  }

  .figma-board strong {
    font-size: 22px;
  }

  .layer-one {
    left: 0;
  }

  .layer-two {
    right: 0;
    top: 126px;
  }

  .layer-three {
    left: 18px;
    bottom: 18px;
  }

  .figma-floating-note {
    right: 18px;
    bottom: 18px;
  }

  .section {
    width: min(100% - 32px, 1160px);
    padding: 48px 0;
  }

  .metrics,
  .service-grid,
  .values-grid,
  .service-detail-grid,
  .portfolio-grid,
  .package-row,
  .process-grid,
  .trust-strip,
  .signature-grid,
  .linked-services,
  .service-price-grid,
  .feature-list,
  .service-testimonials > div,
  .service-related div {
    grid-template-columns: 1fr;
  }

  .section-heading-row {
    display: grid;
    align-items: start;
  }

  .linked-services a {
    min-height: auto;
  }

  .service-proof-strip,
  .service-split,
  .service-pricing,
  .lms-white-page .agency-pricing {
    padding: 28px;
  }

  .service-hero {
    padding: 62px 0 42px;
  }

  .service-hero h1 {
    font-size: 36px;
  }

  .feature-band,
  .pricing-band,
  .team-band {
    padding: 58px 18px;
  }

  .process-preview,
  .case-study-band {
    padding: 58px 18px;
  }

  .system-visual {
    min-height: 320px;
  }

  .system-card {
    font-size: 17px;
  }

  .premium-packages article {
    min-height: auto;
  }

  blockquote {
    font-size: 28px;
  }

  .final-cta {
    width: calc(100% - 32px);
    margin-bottom: 58px;
    padding: 34px 22px;
  }

  .page-hero {
    width: min(100% - 32px, 980px);
    padding-top: 76px;
  }

  .timeline article {
    grid-template-columns: 1fr;
  }

  .contact-info,
  .contact-form {
    padding: 24px;
  }

  .site-footer {
    grid-template-columns: 1fr;
  }

  .whatsapp-float {
    right: 14px;
    bottom: 14px;
    min-height: 48px;
    gap: 6px;
  }

  .whatsapp-icon {
    width: 48px;
    height: 48px;
  }

  .whatsapp-label {
    padding: 8px 12px;
  }

  .whatsapp-label small {
    font-size: 11px;
  }
}

/* Premium homepage motion */
.concept-page.option-one .concept-hero .concept-copy > *,
.concept-page.option-one .concept-hero .concept-panel {
  animation: homeRiseIn 820ms cubic-bezier(0.22, 1, 0.36, 1) both;
}

.concept-page.option-one .concept-hero .concept-copy > *:nth-child(2) {
  animation-delay: 90ms;
}

.concept-page.option-one .concept-hero .concept-copy > *:nth-child(3) {
  animation-delay: 170ms;
}

.concept-page.option-one .concept-hero .concept-copy > *:nth-child(4) {
  animation-delay: 250ms;
}

.concept-page.option-one .concept-hero .concept-panel {
  animation-delay: 220ms;
}

.concept-page.option-one .concept-panel {
  position: relative;
  overflow: hidden;
}

.concept-page.option-one .concept-panel::after {
  content: "";
  position: absolute;
  inset: -45% auto auto -35%;
  width: 55%;
  height: 180%;
  background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.18), transparent);
  transform: rotate(18deg) translateX(-120%);
  animation: panelSweep 5.8s ease-in-out 1.2s infinite;
  pointer-events: none;
}

.agency-command {
  display: grid;
  grid-template-columns: minmax(0, 0.9fr) minmax(420px, 1.1fr);
  gap: 42px;
  align-items: center;
  width: min(1200px, calc(100% - 40px));
  margin: 0 auto;
  padding: 20px 0 84px;
}

.command-copy h2 {
  margin: 12px 0 18px;
  max-width: 720px;
  color: var(--white);
  font-size: clamp(38px, 4.5vw, 66px);
  line-height: 1.02;
}

.command-copy > p:not(.eyebrow) {
  max-width: 640px;
  color: rgba(255, 255, 255, 0.72);
  font-size: 18px;
  line-height: 1.82;
}

.command-metrics {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 12px;
  margin-top: 28px;
}

.command-metrics span {
  display: grid;
  gap: 4px;
  padding: 18px;
  border: 1px solid rgba(255, 255, 255, 0.14);
  border-radius: 8px;
  background: rgba(255, 255, 255, 0.08);
}

.command-metrics strong {
  color: var(--white);
  font-size: 25px;
}

.command-metrics small {
  color: rgba(255, 255, 255, 0.62);
  font-weight: 800;
}

.command-dashboard {
  position: relative;
  overflow: hidden;
  padding: 26px;
  border: 1px solid rgba(255, 255, 255, 0.16);
  border-radius: 8px;
  background:
    radial-gradient(circle at 18% 12%, rgba(201, 183, 232, 0.18), transparent 32%),
    linear-gradient(145deg, rgba(255, 255, 255, 0.13), rgba(255, 255, 255, 0.05));
  box-shadow: 0 32px 86px rgba(20, 12, 28, 0.28);
}

.command-dashboard::before {
  content: "";
  position: absolute;
  inset: 0;
  background-image:
    linear-gradient(rgba(255, 255, 255, 0.05) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255, 255, 255, 0.05) 1px, transparent 1px);
  background-size: 34px 34px;
  mask-image: linear-gradient(180deg, rgba(0, 0, 0, 0.78), transparent);
  pointer-events: none;
}

.dash-top,
.dash-grid,
.dash-progress {
  position: relative;
  z-index: 1;
}

.dash-top {
  display: flex;
  justify-content: space-between;
  gap: 16px;
  align-items: center;
  margin-bottom: 18px;
}

.dash-top span,
.dash-top b {
  color: var(--white);
  font-weight: 900;
}

.dash-top b {
  padding: 8px 12px;
  border-radius: 999px;
  background: rgba(201, 183, 232, 0.18);
  color: var(--mint);
  font-size: 13px;
}

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

.dash-grid article {
  min-height: 142px;
  padding: 20px;
  border: 1px solid rgba(255, 255, 255, 0.14);
  border-radius: 8px;
  background: rgba(255, 255, 255, 0.09);
  transition: transform 260ms ease, background 260ms ease, border-color 260ms ease;
}

.dash-grid article:hover {
  transform: translateY(-6px);
  border-color: rgba(201, 183, 232, 0.48);
  background: rgba(255, 255, 255, 0.13);
}

.dash-grid small {
  display: block;
  color: var(--mint);
  font-weight: 900;
  text-transform: uppercase;
}

.dash-grid strong {
  display: block;
  margin: 18px 0 7px;
  color: var(--white);
  font-size: 22px;
}

.dash-grid em {
  color: rgba(255, 255, 255, 0.62);
  font-style: normal;
  font-weight: 800;
}

.dash-progress {
  overflow: hidden;
  height: 9px;
  margin-top: 20px;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.1);
}

.dash-progress span {
  display: block;
  width: 72%;
  height: 100%;
  border-radius: inherit;
  background: linear-gradient(90deg, var(--mint), var(--white), var(--lavender));
  animation: dashboardProgress 3.8s ease-in-out infinite;
}

.process-board {
  position: relative;
  display: grid;
  gap: 34px;
  width: min(1200px, calc(100% - 40px));
  margin: 0 auto;
  padding: 82px 0 88px;
  border-top: 1px solid rgba(255, 255, 255, 0.16);
}

.process-board::before {
  content: "";
  position: absolute;
  inset: 54px auto auto 32%;
  width: 360px;
  height: 360px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(201, 183, 232, 0.16), rgba(201, 183, 232, 0));
  pointer-events: none;
}

.process-board-intro,
.process-board-steps {
  position: relative;
  z-index: 1;
}

.process-board-intro {
  display: grid;
  justify-items: center;
  max-width: 820px;
  margin: 0 auto;
  text-align: center;
  padding: 0;
  border: 1px solid rgba(255, 255, 255, 0.14);
  border-radius: 8px;
  border-color: transparent;
  background: transparent;
  box-shadow: none;
}

.process-board-intro h2 {
  margin: 12px 0 16px;
  color: var(--white);
  font-size: clamp(34px, 4vw, 58px);
  line-height: 1.05;
}

.process-board-intro p:last-child {
  max-width: 520px;
  color: rgba(255, 255, 255, 0.72);
  font-size: 17px;
  line-height: 1.8;
}

.process-board-steps {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 18px;
  align-items: stretch;
  padding-top: 18px;
}

.process-board-steps::before {
  content: none;
}

.process-board-steps article {
  position: relative;
  z-index: 2;
  display: grid;
  grid-template-columns: 1fr;
  gap: 22px;
  min-height: 270px;
  padding: 28px;
  border: 1px solid rgba(255, 255, 255, 0.12);
  border-radius: 8px;
  background: rgba(255, 255, 255, 0.08);
  box-shadow: 0 18px 46px rgba(20, 12, 28, 0.14);
}

.process-board-steps article:nth-child(1) {
  grid-column: auto;
  grid-row: auto;
}

.process-board-steps article:nth-child(2) {
  grid-column: auto;
  grid-row: auto;
}

.process-board-steps article:nth-child(3) {
  grid-column: auto;
  grid-row: auto;
}

.process-board-steps article:nth-child(4) {
  grid-column: auto;
  grid-row: auto;
}

.process-board-steps article::after {
  content: "";
  position: absolute;
  inset: 0;
  border-radius: inherit;
  background: linear-gradient(90deg, rgba(201, 183, 232, 0.14), transparent 52%);
  opacity: 0;
  transition: opacity 260ms ease;
}

.process-board-steps article:hover::after {
  opacity: 1;
}

.process-board-steps article:not(:last-child)::before {
  content: "";
  position: absolute;
  top: 50%;
  right: -30px;
  z-index: 4;
  width: 44px;
  height: 18px;
  background:
    linear-gradient(90deg, rgba(201, 183, 232, 0.1), rgba(201, 183, 232, 0.9));
  clip-path: polygon(0 42%, 72% 42%, 72% 18%, 100% 50%, 72% 82%, 72% 58%, 0 58%);
  transform: translateY(-50%);
  filter: drop-shadow(0 0 12px rgba(201, 183, 232, 0.42));
  animation: laneArrowPulse 1.9s ease-in-out infinite;
}

.process-board-steps article:nth-child(2)::before {
  animation-delay: 180ms;
}

.process-board-steps article:nth-child(3)::before {
  animation-delay: 360ms;
}

.process-board-steps span {
  position: relative;
  z-index: 2;
  display: grid;
  width: 64px;
  height: 64px;
  place-items: center;
  border-radius: 50%;
  background: var(--mint);
  color: var(--plum);
  font-weight: 900;
  box-shadow: 0 0 0 8px rgba(201, 183, 232, 0.14);
}

.process-board-steps div {
  position: relative;
  z-index: 1;
}

.process-board-steps h3 {
  margin: 0 0 10px;
  color: var(--white);
  font-size: 26px;
}

.process-board-steps p {
  margin: 0;
  color: rgba(255, 255, 255, 0.72);
  line-height: 1.75;
}

.concept-page.option-one .agency-trust span {
  animation: softFloat 5.2s ease-in-out infinite;
}

.concept-page.option-one .agency-trust span:nth-child(2),
.concept-page.option-one .agency-trust span:nth-child(4) {
  animation-delay: 800ms;
}

.concept-page.option-one .agency-services article,
.concept-page.option-one .pricing-grid article,
.concept-page.option-one .proof-list article,
.concept-page.option-one .concept-steps article,
.concept-page.option-one .process-board-steps article {
  transition: transform 260ms ease, border-color 260ms ease, background 260ms ease, box-shadow 260ms ease;
}

.concept-page.option-one .agency-services article:hover,
.concept-page.option-one .pricing-grid article:hover,
.concept-page.option-one .proof-list article:hover,
.concept-page.option-one .concept-steps article:hover,
.concept-page.option-one .process-board-steps article:hover {
  transform: translateY(-8px);
  border-color: rgba(201, 183, 232, 0.52);
  box-shadow: 0 28px 70px rgba(31, 20, 40, 0.22);
}

.motion-reveal {
  opacity: 0;
  transform: translateY(34px);
  transition: opacity 720ms ease, transform 720ms cubic-bezier(0.22, 1, 0.36, 1);
  transition-delay: var(--reveal-delay, 0ms);
}

.motion-reveal.is-visible {
  opacity: 1;
  transform: translateY(0);
}

.motion-reveal.is-visible .agency-services article,
.motion-reveal.is-visible .linked-home-services a,
.motion-reveal.is-visible .pricing-grid article,
.motion-reveal.is-visible .concept-steps article,
.motion-reveal.is-visible .process-board-steps article,
.motion-reveal.is-visible .proof-list article {
  animation: cardCascade 720ms cubic-bezier(0.22, 1, 0.36, 1) both;
}

.motion-reveal.is-visible article:nth-child(2),
.motion-reveal.is-visible span:nth-child(2) {
  animation-delay: 80ms;
}

.motion-reveal.is-visible article:nth-child(3),
.motion-reveal.is-visible span:nth-child(3) {
  animation-delay: 150ms;
}

.motion-reveal.is-visible article:nth-child(4),
.motion-reveal.is-visible span:nth-child(4) {
  animation-delay: 220ms;
}

.motion-reveal.is-visible article:nth-child(5),
.motion-reveal.is-visible span:nth-child(5) {
  animation-delay: 290ms;
}

.motion-reveal.is-visible article:nth-child(6) {
  animation-delay: 360ms;
}

.concept-page.option-one {
  overflow: hidden;
}

.figma-motion-shell {
  --motion-x: 0deg;
  --motion-y: 0deg;
  --scroll-depth: 0;
  position: relative;
  isolation: isolate;
  perspective: 1200px;
  transform-style: preserve-3d;
}

.section-motion-layer {
  position: absolute;
  inset: 12px;
  z-index: -1;
  overflow: hidden;
  border-radius: 8px;
  pointer-events: none;
  opacity: 0.78;
  transform:
    translate3d(0, calc(var(--scroll-depth) * -22px), -80px)
    rotateX(calc(var(--motion-y) * 0.42))
    rotateY(calc(var(--motion-x) * 0.42));
  transition: transform 220ms ease;
}

.section-motion-layer::before,
.section-motion-layer::after {
  content: "";
  position: absolute;
  pointer-events: none;
}

.section-motion-layer::before {
  inset: 0;
  background:
    linear-gradient(rgba(255, 255, 255, 0.055) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255, 255, 255, 0.055) 1px, transparent 1px);
  background-size: 42px 42px;
  mask-image: radial-gradient(circle at 50% 50%, #000 0%, transparent 72%);
  animation: figmaGridDrift 18s linear infinite;
}

.section-motion-layer::after {
  width: 240px;
  height: 240px;
  border: 1px solid rgba(201, 183, 232, 0.22);
  border-radius: 50%;
  background: radial-gradient(circle, rgba(201, 183, 232, 0.16), transparent 62%);
  transform: translate3d(14%, 18%, 0) rotateX(68deg);
  animation: figmaSectionOrbit 12s ease-in-out infinite;
}

.agency-trust.figma-motion-shell .section-motion-layer {
  inset: -24px 0 18px;
}

.agency-trust span {
  position: relative;
  overflow: hidden;
  transform: translateZ(18px);
  transition: transform 260ms ease, border-color 260ms ease, background 260ms ease;
}

.agency-trust span::after {
  content: "";
  position: absolute;
  inset: auto 16px 14px;
  height: 2px;
  border-radius: 999px;
  background: linear-gradient(90deg, transparent, var(--mint), transparent);
  opacity: 0;
  transform: scaleX(0.3);
  transition: opacity 260ms ease, transform 260ms ease;
}

.agency-trust span:hover {
  transform: translateY(-7px) translateZ(42px);
  border-color: rgba(201, 183, 232, 0.48);
  background: rgba(255, 255, 255, 0.13);
}

.agency-trust span:hover::after {
  opacity: 1;
  transform: scaleX(1);
}

.concept-wide.figma-motion-shell,
.lms-teaser.figma-motion-shell,
.agency-command.figma-motion-shell,
.agency-proof.figma-motion-shell,
.process-board.figma-motion-shell,
.agency-pricing.figma-motion-shell,
.agency-faq.figma-motion-shell,
.concept-cta.figma-motion-shell,
.payment-marquee.figma-motion-shell {
  transform:
    translate3d(0, calc(var(--scroll-depth) * -16px), 0)
    rotateX(calc(var(--motion-y) * 0.22))
    rotateY(calc(var(--motion-x) * 0.22));
  transition: transform 220ms ease;
}

.concept-wide.figma-motion-shell {
  overflow: hidden;
  border: 1px solid rgba(255, 255, 255, 0.12);
  background:
    radial-gradient(circle at 16% 12%, rgba(201, 183, 232, 0.16), transparent 30%),
    rgba(255, 255, 255, 0.06);
  box-shadow: 0 30px 90px rgba(20, 12, 28, 0.18);
}

.concept-wide.figma-motion-shell::after {
  content: "";
  position: absolute;
  right: 42px;
  bottom: 34px;
  width: 140px;
  height: 82px;
  border: 1px solid rgba(255, 255, 255, 0.16);
  border-radius: 8px;
  background:
    linear-gradient(90deg, rgba(201, 183, 232, 0.28) 18%, transparent 18% 28%, rgba(255, 255, 255, 0.13) 28% 58%, transparent 58%),
    rgba(255, 255, 255, 0.06);
  transform: rotateX(54deg) rotateZ(-8deg) translateZ(36px);
  animation: miniFrameFloat 5.6s ease-in-out infinite;
  pointer-events: none;
}

.command-copy,
.command-dashboard,
.lms-teaser > div,
.lms-teaser > a,
.agency-proof > div,
.proof-list,
.pricing-heading,
.pricing-grid,
.agency-faq > .eyebrow,
.agency-faq > h2,
.agency-faq > div,
.concept-cta > h2,
.concept-cta > a {
  position: relative;
  z-index: 1;
}

.command-dashboard,
.lms-teaser,
.proof-list article,
.linked-home-services a,
.pricing-grid article,
.agency-faq article,
.process-board-steps article {
  transform-style: preserve-3d;
}

.command-dashboard {
  transform:
    translate3d(0, calc(var(--scroll-depth) * -18px), 40px)
    rotateX(calc(5deg + var(--motion-y) * 0.3))
    rotateY(calc(-9deg + var(--motion-x) * 0.32));
  transition: transform 240ms ease;
}

.dash-grid article,
.command-metrics span {
  animation: figmaCardBreathe 5.8s ease-in-out infinite;
}

.dash-grid article:nth-child(2),
.command-metrics span:nth-child(2) {
  animation-delay: 420ms;
}

.dash-grid article:nth-child(3),
.command-metrics span:nth-child(3) {
  animation-delay: 840ms;
}

.dash-grid article:nth-child(4) {
  animation-delay: 1260ms;
}

.linked-home-services a,
.proof-list article,
.pricing-grid article,
.agency-faq article,
.process-board-steps article {
  position: relative;
  overflow: hidden;
}

.linked-home-services a::after,
.proof-list article::before,
.pricing-grid article::before,
.agency-faq article::before {
  content: "";
  position: absolute;
  inset: -80% auto auto -60%;
  width: 72%;
  height: 220%;
  background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.14), transparent);
  transform: rotate(18deg) translateX(-120%);
  opacity: 0;
  pointer-events: none;
}

.motion-reveal.is-visible .linked-home-services a::after,
.motion-reveal.is-visible .proof-list article::before,
.motion-reveal.is-visible .pricing-grid article::before,
.motion-reveal.is-visible .agency-faq article::before {
  animation: frameSweep 4.8s ease-in-out infinite;
}

.linked-home-services a:hover,
.proof-list article:hover,
.pricing-grid article:hover,
.agency-faq article:hover {
  transform:
    translateY(-9px)
    translateZ(46px)
    rotateX(calc(var(--motion-y) * 0.18))
    rotateY(calc(var(--motion-x) * 0.18));
}

.lms-teaser.figma-motion-shell {
  overflow: hidden;
  box-shadow: 0 30px 88px rgba(20, 12, 28, 0.18);
}

.lms-teaser.figma-motion-shell::after {
  content: "";
  position: absolute;
  right: 30px;
  top: 24px;
  width: 230px;
  height: 120px;
  border: 1px solid rgba(201, 183, 232, 0.24);
  border-radius: 8px;
  background:
    linear-gradient(90deg, rgba(255, 255, 255, 0.12) 18%, transparent 18% 28%, rgba(255, 255, 255, 0.08) 28% 62%, transparent 62%),
    linear-gradient(180deg, rgba(201, 183, 232, 0.14), rgba(255, 255, 255, 0.04));
  transform: rotateX(64deg) rotateZ(7deg) translateZ(-8px);
  animation: lmsPanelDrift 6.4s ease-in-out infinite;
  pointer-events: none;
}

.process-board-steps article {
  animation: processDepthFloat 6.2s ease-in-out infinite;
}

.process-board-steps article:nth-child(2) {
  animation-delay: 280ms;
}

.process-board-steps article:nth-child(3) {
  animation-delay: 560ms;
}

.process-board-steps article:nth-child(4) {
  animation-delay: 840ms;
}

.agency-pricing.figma-motion-shell {
  overflow: visible;
}

.agency-pricing .currency-toggle {
  position: relative;
  z-index: 2;
}

.pricing-grid article {
  transform: translateZ(22px);
}

.pricing-grid article:hover {
  transform: translateY(-10px) translateZ(58px);
}

.agency-faq article {
  animation: faqPanelFloat 6.5s ease-in-out infinite;
}

.agency-faq article:nth-child(2) {
  animation-delay: 420ms;
}

.agency-faq article:nth-child(3) {
  animation-delay: 840ms;
}

.concept-cta.figma-motion-shell {
  overflow: hidden;
  box-shadow: 0 38px 110px rgba(20, 12, 28, 0.24);
}

.concept-cta.figma-motion-shell::before {
  content: "";
  position: absolute;
  inset: 18px;
  border: 1px solid rgba(255, 255, 255, 0.14);
  border-radius: 8px;
  transform: translateZ(-30px);
  pointer-events: none;
}

.concept-cta.figma-motion-shell::after {
  content: "";
  position: absolute;
  inset: -20% -12%;
  background: conic-gradient(from 180deg, transparent, rgba(201, 183, 232, 0.18), transparent 32%);
  animation: ctaConicSpin 10s linear infinite;
  pointer-events: none;
}

.payment-marquee.figma-motion-shell {
  overflow: hidden;
}

.payment-logo {
  position: relative;
  transform: translateZ(24px);
  animation: paymentLogoFloat 5.8s ease-in-out infinite;
}

.payment-logo:nth-child(2n) {
  animation-delay: 600ms;
}

.payment-logo:nth-child(3n) {
  animation-delay: 1100ms;
}

.whatsapp-float {
  animation: whatsappBreathe 4.5s ease-in-out infinite;
}

@keyframes homeRiseIn {
  from {
    opacity: 0;
    transform: translateY(26px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

@keyframes figmaGridDrift {
  from {
    background-position: 0 0, 0 0;
  }
  to {
    background-position: 42px 42px, 42px 42px;
  }
}

@keyframes figmaSectionOrbit {
  0%,
  100% {
    translate: 0 0;
    opacity: 0.52;
  }
  50% {
    translate: 38px -28px;
    opacity: 0.9;
  }
}

@keyframes miniFrameFloat {
  0%,
  100% {
    translate: 0 0;
  }
  50% {
    translate: -12px -14px;
  }
}

@keyframes figmaCardBreathe {
  0%,
  100% {
    transform: translateY(0) translateZ(0);
  }
  50% {
    transform: translateY(-6px) translateZ(18px);
  }
}

@keyframes frameSweep {
  0%,
  42% {
    opacity: 0;
    transform: rotate(18deg) translateX(-120%);
  }
  58% {
    opacity: 1;
  }
  72%,
  100% {
    opacity: 0;
    transform: rotate(18deg) translateX(330%);
  }
}

@keyframes lmsPanelDrift {
  0%,
  100% {
    translate: 0 0;
  }
  50% {
    translate: -18px 12px;
  }
}

@keyframes processDepthFloat {
  0%,
  100% {
    translate: 0 0;
  }
  50% {
    translate: 0 -8px;
  }
}

@keyframes faqPanelFloat {
  0%,
  100% {
    translate: 0 0;
  }
  50% {
    translate: 0 -7px;
  }
}

@keyframes ctaConicSpin {
  from {
    transform: rotate(0deg);
  }
  to {
    transform: rotate(360deg);
  }
}

@keyframes paymentLogoFloat {
  0%,
  100% {
    translate: 0 0;
  }
  50% {
    translate: 0 -7px;
  }
}

@keyframes headerDrop {
  from {
    opacity: 0;
    transform: translateY(-18px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

@keyframes panelSweep {
  0%,
  46% {
    transform: rotate(18deg) translateX(-130%);
  }
  62%,
  100% {
    transform: rotate(18deg) translateX(330%);
  }
}

@keyframes stageEnter {
  from {
    opacity: 0;
    transform: translateY(28px) scale(0.96);
  }
  to {
    opacity: 1;
    transform: translateY(0) scale(1);
  }
}

@keyframes orbitSpin {
  from {
    transform: rotateX(66deg) rotateZ(-20deg);
  }
  to {
    transform: rotateX(66deg) rotateZ(340deg);
  }
}

@keyframes canvasFloat {
  0%,
  100% {
    translate: 0 0;
  }
  50% {
    translate: 0 -12px;
  }
}

@keyframes layerFloat {
  0%,
  100% {
    translate: 0 0;
  }
  50% {
    translate: 0 -14px;
  }
}

@keyframes noteFloat {
  0%,
  100% {
    translate: 0 0;
  }
  50% {
    translate: 8px -10px;
  }
}

@keyframes tilePulse {
  0%,
  100% {
    opacity: 0.82;
    transform: translateZ(0);
  }
  50% {
    opacity: 1;
    transform: translateZ(12px);
  }
}

@keyframes flowPulse {
  0%,
  100% {
    opacity: 0.38;
    transform: scaleX(0.82);
  }
  50% {
    opacity: 0.9;
    transform: scaleX(1);
  }
}

@keyframes softFloat {
  0%,
  100% {
    transform: translateY(0);
  }
  50% {
    transform: translateY(-7px);
  }
}

@keyframes timelineGlow {
  from {
    background-position: 0 190%;
  }
  to {
    background-position: 0 -190%;
  }
}

@keyframes laneArrowPulse {
  0%,
  100% {
    opacity: 0.62;
    transform: translate(-3px, -50%);
  }
  50% {
    opacity: 1;
    transform: translate(4px, -50%);
  }
}

@keyframes dashboardProgress {
  0%,
  100% {
    transform: translateX(-8%);
  }
  50% {
    transform: translateX(18%);
  }
}

@keyframes paymentMarquee {
  from {
    transform: translateX(0);
  }
  to {
    transform: translateX(calc(-50% - 7px));
  }
}

@keyframes cardCascade {
  from {
    opacity: 0;
    transform: translateY(24px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

@keyframes whatsappBreathe {
  0%,
  100% {
    transform: translateY(0);
    box-shadow: 0 16px 42px rgba(74, 46, 92, 0.22);
  }
  50% {
    transform: translateY(-5px);
    box-shadow: 0 22px 52px rgba(74, 46, 92, 0.32);
  }
}

@media (prefers-reduced-motion: reduce) {
  *,
  *::before,
  *::after {
    animation-duration: 1ms !important;
    animation-iteration-count: 1 !important;
    scroll-behavior: auto !important;
    transition-duration: 1ms !important;
  }

  .motion-reveal {
    opacity: 1;
    transform: none;
  }
}

@media (max-width: 980px) {
  .industry-link-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

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

  .concept-wide.figma-motion-shell,
  .lms-teaser.figma-motion-shell,
  .agency-command.figma-motion-shell,
  .agency-proof.figma-motion-shell,
  .process-board.figma-motion-shell,
  .agency-pricing.figma-motion-shell,
  .agency-faq.figma-motion-shell,
  .concept-cta.figma-motion-shell,
  .payment-marquee.figma-motion-shell,
  .command-dashboard {
    transform: none;
  }

  .section-motion-layer {
    inset: 0;
    opacity: 0.48;
    transform: none;
  }

  .process-board {
    grid-template-columns: 1fr;
    padding: 68px 0;
  }

  .agency-command {
    grid-template-columns: 1fr;
  }

  .footer-main {
    grid-template-columns: 1fr;
  }

  .process-board-intro {
    min-height: auto;
  }

  .process-board-steps {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    min-height: auto;
    gap: 18px;
  }

  .process-board-steps article:nth-child(1),
  .process-board-steps article:nth-child(2),
  .process-board-steps article:nth-child(3),
  .process-board-steps article:nth-child(4) {
    grid-column: 1;
    grid-row: auto;
  }

  .process-board-steps::before {
    content: none;
  }

  .process-board-steps article {
    min-height: 245px;
  }

  .process-board-steps article:not(:last-child)::before {
    display: none;
  }
}

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

  .industry-deliverable-grid {
    grid-template-columns: 1fr;
  }

  .section-motion-layer::after,
  .concept-wide.figma-motion-shell::after,
  .lms-teaser.figma-motion-shell::after {
    display: none;
  }

  .process-board {
    width: min(100% - 32px, 1200px);
    gap: 24px;
    padding: 54px 0;
  }

  .agency-command {
    width: min(100% - 32px, 1200px);
    padding-bottom: 58px;
  }

  .command-metrics,
  .dash-grid {
    grid-template-columns: 1fr;
  }

  .command-dashboard {
    padding: 20px;
  }

  .payment-logo {
    width: 128px;
    height: 52px;
  }

  .process-board-intro {
    padding: 24px;
  }

  .process-board-steps article {
    min-height: auto;
    grid-template-columns: 52px 1fr;
    gap: 16px;
    padding: 18px;
  }

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

  .process-board-steps span {
    width: 52px;
    height: 52px;
    box-shadow: 0 0 0 6px rgba(201, 183, 232, 0.14);
  }
}

/* Calm white homepage reset */
body.home-white,
body:has(.concept-page.option-one) {
  background: #ffffff;
}

body.home-white *,
body:has(.concept-page.option-one) *,
.concept-page.option-one *,
.payment-marquee *,
.site-header {
  animation: none !important;
  transition-duration: 0ms !important;
}

.concept-page.option-one {
  color: #241632;
  background: #ffffff;
}

.concept-page.option-one .concept-hero {
  padding: 84px 0 70px;
}

.concept-page.option-one .concept-hero h1,
.concept-page.option-one .concept-wide h2,
.concept-page.option-one .command-copy h2,
.concept-page.option-one .agency-proof h2,
.concept-page.option-one .process-board-intro h2,
.concept-page.option-one .agency-faq h2 {
  color: #241632;
}

.concept-page.option-one .concept-hero p,
.concept-page.option-one .concept-wide p:last-child,
.concept-page.option-one .command-copy > p:not(.eyebrow),
.concept-page.option-one .agency-proof span,
.concept-page.option-one .process-board-intro p:last-child,
.concept-page.option-one .process-board-steps p,
.concept-page.option-one .agency-faq p,
.concept-page.option-one .lms-teaser p:last-child {
  color: #675d70;
}

.concept-page.option-one .eyebrow,
.concept-page.option-one .agency-trust span,
.concept-page.option-one .linked-home-services a > span,
.concept-page.option-one .proof-list strong,
.concept-page.option-one .process-board-steps span,
.concept-page.option-one .pricing-grid article > span {
  color: #6f4aa0;
}

.premium-static-panel {
  display: grid;
  gap: 18px;
  padding: 30px;
  border: 1px solid rgba(75, 42, 92, 0.12);
  border-radius: 8px;
  background: linear-gradient(180deg, #ffffff 0%, #f8f4fd 100%);
  box-shadow: 0 28px 70px rgba(75, 42, 92, 0.14);
}

.static-panel-top,
.static-panel-footer {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
}

.static-panel-top span,
.static-panel-top b {
  color: #241632;
  font-weight: 900;
}

.static-panel-top b,
.static-panel-footer span {
  padding: 8px 12px;
  border-radius: 999px;
  background: rgba(156, 134, 198, 0.14);
  color: #5d3b80;
  font-size: 12px;
  text-transform: uppercase;
}

.static-panel-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 14px;
}

.static-panel-grid article {
  min-height: 132px;
  padding: 20px;
  border: 1px solid rgba(75, 42, 92, 0.1);
  border-radius: 8px;
  background: #ffffff;
  box-shadow: 0 16px 36px rgba(75, 42, 92, 0.08);
}

.static-panel-grid small {
  display: block;
  color: #7f5cb7;
  font-weight: 900;
  text-transform: uppercase;
}

.static-panel-grid strong {
  display: block;
  margin: 16px 0 7px;
  color: #241632;
  font-size: 21px;
}

.static-panel-grid em {
  color: #675d70;
  font-style: normal;
  font-weight: 700;
}

.concept-page.option-one .agency-trust {
  padding-bottom: 56px;
}

.concept-page.option-one .agency-trust span,
.concept-page.option-one .concept-wide,
.concept-page.option-one .command-metrics span,
.concept-page.option-one .command-dashboard,
.concept-page.option-one .linked-home-services a,
.concept-page.option-one .lms-teaser,
.concept-page.option-one .proof-list article,
.concept-page.option-one .proof-list a,
.concept-page.option-one .process-board-steps article,
.concept-page.option-one .agency-faq article {
  border-color: rgba(75, 42, 92, 0.12);
  background: #ffffff;
  box-shadow: 0 18px 48px rgba(75, 42, 92, 0.08);
}

.concept-page.option-one .concept-wide {
  border-radius: 8px;
  padding: 56px clamp(22px, 4vw, 56px);
  border: 1px solid rgba(75, 42, 92, 0.1);
}

.concept-page.option-one .agency-trust span,
.concept-page.option-one .linked-home-services a {
  color: #241632;
}

.concept-page.option-one .linked-home-services h2,
.concept-page.option-one .linked-home-services p,
.concept-page.option-one .lms-teaser h2,
.concept-page.option-one .proof-list article strong,
.concept-page.option-one .proof-list a strong,
.concept-page.option-one .process-board-steps h3,
.concept-page.option-one .agency-faq h3 {
  color: #241632;
}

.concept-page.option-one .linked-home-services p {
  color: #675d70;
}

.concept-page.option-one .linked-home-services a > span,
.concept-page.option-one .process-board-steps span {
  background: #f0e8fb;
}

.concept-page.option-one .agency-command,
.concept-page.option-one .agency-proof,
.concept-page.option-one .process-board,
.concept-page.option-one .agency-faq {
  border-top-color: rgba(75, 42, 92, 0.12);
}

.concept-page.option-one .command-dashboard {
  background: #ffffff;
}

.concept-page.option-one .dash-top span,
.concept-page.option-one .dash-top b,
.concept-page.option-one .dash-grid strong,
.concept-page.option-one .command-metrics strong {
  color: #241632;
}

.concept-page.option-one .dash-grid article {
  border-color: rgba(75, 42, 92, 0.1);
  background: #fbf8ff;
}

.concept-page.option-one .dash-grid small,
.concept-page.option-one .dash-top b {
  color: #7f5cb7;
}

.concept-page.option-one .dash-grid em,
.concept-page.option-one .command-metrics small {
  color: #675d70;
}

.concept-page.option-one .dash-progress {
  background: #eee6f7;
}

.concept-page.option-one .dash-progress span {
  background: linear-gradient(90deg, #4b2a5c, #9c86c6);
}

.concept-page.option-one .agency-pricing {
  width: min(1240px, calc(100% - 40px));
  margin-top: 20px;
  padding: 74px 32px;
  border: 0;
  border-radius: 8px;
  background: linear-gradient(135deg, #241632 0%, #4b2a5c 62%, #75509c 100%);
  box-shadow: 0 30px 90px rgba(75, 42, 92, 0.22);
}

.concept-page.option-one .agency-pricing h2,
.concept-page.option-one .agency-pricing .pricing-heading > p,
.concept-page.option-one .agency-pricing .pricing-grid p,
.concept-page.option-one .agency-pricing .pricing-grid li {
  color: rgba(255, 255, 255, 0.78);
}

.concept-page.option-one .agency-pricing h2,
.concept-page.option-one .agency-pricing .pricing-grid h3 {
  color: #ffffff;
}

.concept-page.option-one .agency-pricing .eyebrow,
.concept-page.option-one .agency-pricing .pricing-grid article > span {
  color: #c9b7e8;
}

.concept-page.option-one .pricing-grid article {
  border-color: rgba(255, 255, 255, 0.18);
  background: rgba(255, 255, 255, 0.09);
  box-shadow: none;
}

.concept-page.option-one .agency-pricing .pricing-detail {
  padding: 0;
  background: transparent;
}

.concept-page.option-one .agency-pricing .pricing-detail strong {
  color: #ffffff;
}

.concept-page.option-one .agency-pricing .pricing-note {
  border-color: rgba(255, 255, 255, 0.18);
  background: rgba(255, 255, 255, 0.08);
  color: rgba(255, 255, 255, 0.76);
}

.concept-page.option-one .pricing-grid a {
  color: #4b2a5c;
  background: #ffffff;
}

.concept-page.option-one .popular-price {
  background: rgba(255, 255, 255, 0.14) !important;
}

.concept-page.option-one .concept-cta {
  width: min(1200px, calc(100% - 40px));
  margin: 28px auto 0;
  border-radius: 8px;
  background: linear-gradient(135deg, #4b2a5c, #7f5cb7);
}

.concept-page.option-one .concept-cta h2 {
  color: #ffffff;
}

.concept-page.option-one .concept-cta .btn.light {
  color: #4b2a5c;
  background: #ffffff;
}

.payment-marquee {
  border-top-color: rgba(201, 183, 232, 0.2);
  border-bottom-color: rgba(201, 183, 232, 0.2);
  background: linear-gradient(90deg, #241632 0%, #4b2a5c 50%, #241632 100%);
}

.payment-logo {
  border-color: rgba(255, 255, 255, 0.18);
  background: rgba(255, 255, 255, 0.08);
}

.payment-logo svg,
.payment-logo.visa svg,
.payment-logo.stripe svg,
.payment-logo.mastercard svg,
.payment-logo.paypal svg,
.payment-logo.bank svg,
.payment-logo.wise svg {
  color: #ffffff;
}

@media (max-width: 980px) {
  .premium-static-panel {
    min-height: auto;
  }
}

@media (max-width: 640px) {
  .concept-page.option-one .concept-hero {
    padding: 58px 0 46px;
  }

  .static-panel-grid {
    grid-template-columns: 1fr;
  }

  .concept-page.option-one .agency-pricing {
    width: min(100% - 32px, 1240px);
    padding: 48px 18px;
  }
}

/* Purple homepage canvas */
body.home-white,
body:has(.concept-page.option-one) {
  background:
    radial-gradient(circle at 84% 16%, rgba(156, 134, 198, 0.22), transparent 28%),
    linear-gradient(135deg, #24162f, #4b2a5c 55%, #8061a8);
}

.concept-page.option-one {
  color: #ffffff;
  background:
    radial-gradient(circle at 84% 16%, rgba(156, 134, 198, 0.22), transparent 28%),
    linear-gradient(135deg, #24162f, #4b2a5c 55%, #8061a8);
}

.concept-page.option-one .concept-hero h1,
.concept-page.option-one .command-copy h2,
.concept-page.option-one .agency-proof > div h2,
.concept-page.option-one .process-board-intro h2,
.concept-page.option-one .agency-faq > h2 {
  color: #ffffff;
}

.concept-page.option-one .concept-hero p,
.concept-page.option-one .command-copy > p:not(.eyebrow),
.concept-page.option-one .agency-proof > div,
.concept-page.option-one .process-board-intro p:last-child,
.concept-page.option-one .agency-faq > .eyebrow {
  color: rgba(255, 255, 255, 0.76);
}

.concept-page.option-one .eyebrow {
  color: #c9b7e8;
}

.concept-page.option-one .concept-wide,
.concept-page.option-one .command-metrics span,
.concept-page.option-one .command-dashboard,
.concept-page.option-one .linked-home-services a,
.concept-page.option-one .lms-teaser,
.concept-page.option-one .proof-list a,
.concept-page.option-one .process-board-steps article,
.concept-page.option-one .agency-faq article {
  border-color: rgba(255, 255, 255, 0.2);
  background: #ffffff;
  box-shadow: 0 22px 58px rgba(20, 12, 28, 0.18);
}

.concept-page.option-one .agency-command,
.concept-page.option-one .agency-proof,
.concept-page.option-one .process-board,
.concept-page.option-one .agency-faq {
  border-top-color: rgba(255, 255, 255, 0.16);
}

.concept-page.option-one .agency-trust span {
  border-color: rgba(255, 255, 255, 0.18);
  color: rgba(255, 255, 255, 0.82);
  background: rgba(255, 255, 255, 0.1);
  box-shadow: none;
}

.concept-page.option-one .concept-wide h2,
.concept-page.option-one .lms-teaser h2,
.concept-page.option-one .linked-home-services h2,
.concept-page.option-one .linked-home-services p,
.concept-page.option-one .proof-list a strong,
.concept-page.option-one .process-board-steps h3,
.concept-page.option-one .agency-faq h3,
.concept-page.option-one .dash-top span,
.concept-page.option-one .dash-top b,
.concept-page.option-one .dash-grid strong,
.concept-page.option-one .command-metrics strong {
  color: #241632;
}

.concept-page.option-one .concept-wide p:last-child,
.concept-page.option-one .lms-teaser p:last-child,
.concept-page.option-one .proof-list span,
.concept-page.option-one .process-board-steps p,
.concept-page.option-one .agency-faq p,
.concept-page.option-one .dash-grid em,
.concept-page.option-one .command-metrics small {
  color: #675d70;
}

/* Main LMS authority page upgrades */
.lms-main-hero {
  align-items: center;
}

.lms-search-tags {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-top: 24px;
}

.lms-search-tags span {
  padding: 9px 12px;
  border: 1px solid rgba(75, 42, 92, 0.14);
  border-radius: 999px;
  color: #4b2a5c;
  background: #f7f1fc;
  font-size: 0.82rem;
  font-weight: 800;
}

.lms-dashboard-preview {
  min-height: 420px;
}

.lms-dashboard-lines {
  display: grid;
  gap: 12px;
  margin: 22px 0;
}

.lms-dashboard-lines b {
  display: flex;
  justify-content: space-between;
  gap: 16px;
  padding: 14px 16px;
  border-radius: 8px;
  color: #ffffff;
  background: linear-gradient(135deg, #4b2a5c, #7f5cb7);
}

.lms-dashboard-lines em {
  color: #e6d9f8;
  font-style: normal;
}

.lms-ranking-intro,
.lms-workflow-section,
.lms-comparison-section,
.lms-seo-section,
.lms-content-hub {
  width: min(1200px, calc(100% - 40px));
  margin: 0 auto;
  padding: 72px 0;
}

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

.lms-ranking-intro article,
.lms-flow-grid article,
.seo-signal-grid article {
  border: 1px solid rgba(75, 42, 92, 0.14);
  border-radius: 8px;
  background: #ffffff;
  box-shadow: 0 20px 52px rgba(36, 22, 50, 0.08);
}

.lms-ranking-intro article {
  min-height: 170px;
  padding: 24px;
}

.lms-ranking-intro span,
.lms-flow-grid span {
  display: inline-flex;
  margin-bottom: 14px;
  padding: 7px 11px;
  border-radius: 999px;
  color: #4b2a5c;
  background: #f0e9f8;
  font-size: 0.76rem;
  font-weight: 800;
  text-transform: uppercase;
}

.lms-ranking-intro strong {
  display: block;
  color: #241632;
  line-height: 1.55;
}

.lms-module-grid article {
  min-height: 315px;
}

.lms-module-grid ul {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin: 18px 0 0;
  padding: 0;
  list-style: none;
}

.lms-module-grid li {
  padding: 7px 10px;
  border-radius: 999px;
  color: #4b2a5c;
  background: #f0e9f8;
  font-size: 0.78rem;
  font-weight: 700;
}

.lms-flow-grid,
.seo-signal-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 16px;
  margin-top: 30px;
}

.lms-flow-grid article,
.seo-signal-grid article {
  min-height: 225px;
  padding: 24px;
}

.lms-flow-grid h3,
.seo-signal-grid h3 {
  margin: 0 0 10px;
  color: #241632;
}

.comparison-table {
  display: grid;
  margin-top: 30px;
  overflow: hidden;
  border: 1px solid rgba(75, 42, 92, 0.14);
  border-radius: 8px;
  background: #ffffff;
  box-shadow: 0 22px 58px rgba(36, 22, 50, 0.08);
}

.comparison-table > div {
  display: grid;
  grid-template-columns: 1.1fr 1fr 1fr;
}

.comparison-table strong,
.comparison-table span {
  padding: 18px;
  border-bottom: 1px solid rgba(75, 42, 92, 0.1);
}

.comparison-table strong {
  color: #ffffff;
  background: #4b2a5c;
}

.comparison-table span {
  color: #675d70;
}

.comparison-table div:last-child span {
  border-bottom: 0;
}

.lms-content-hub .related-grid {
  margin-top: 24px;
}

.lms-final-cta {
  display: grid;
  gap: 18px;
  justify-items: center;
  text-align: center;
}

.lms-final-cta p {
  max-width: 780px;
  margin: 0;
  color: rgba(255, 255, 255, 0.78);
}

@media (max-width: 980px) {
  .lms-ranking-intro,
  .lms-flow-grid,
  .seo-signal-grid,
  .comparison-table > div {
    grid-template-columns: 1fr;
  }

  .comparison-table strong,
  .comparison-table span {
    border-bottom: 1px solid rgba(75, 42, 92, 0.1) !important;
  }
}

@media (max-width: 640px) {
  .lms-ranking-intro,
  .lms-workflow-section,
  .lms-comparison-section,
  .lms-seo-section,
  .lms-content-hub {
    width: min(100% - 32px, 1200px);
    padding: 48px 0;
  }

  .lms-dashboard-preview {
    min-height: auto;
  }
}

/* Blog content system */
.blog-page {
  background:
    linear-gradient(180deg, #ffffff 0%, #fbf9fe 42%, #f4eef9 100%);
  color: #241632;
}

.blog-index-hero,
.blog-post {
  width: min(1180px, calc(100% - 40px));
  margin: 0 auto;
}

.blog-index-hero {
  padding: 84px 0 56px;
}

.blog-index-hero h1,
.blog-hero h1 {
  max-width: 920px;
  margin: 0;
  color: #241632;
  font-size: clamp(2.25rem, 5vw, 4.65rem);
  line-height: 1.02;
  letter-spacing: 0;
}

.blog-hero h1 {
  max-width: 820px;
  font-size: clamp(1.85rem, 3vw, 2.85rem);
  line-height: 1.12;
}

.blog-index-hero p,
.blog-hero > p {
  max-width: 780px;
  color: #675d70;
  font-size: 1.05rem;
  line-height: 1.8;
}

.blog-hero > p {
  max-width: 700px;
  margin: 12px 0 0;
  font-size: 0.98rem;
  line-height: 1.65;
}

.blog-index-section {
  width: min(1180px, calc(100% - 40px));
  margin: 0 auto;
  padding: 58px 0;
  border-top: 1px solid rgba(75, 42, 92, 0.12);
}

.blog-card-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 18px;
}

.blog-card,
.related-grid a,
.blog-toc,
.blog-callout,
.blog-service-link,
.blog-faq-list article {
  border: 1px solid rgba(75, 42, 92, 0.14);
  border-radius: 8px;
  background: #ffffff;
  box-shadow: 0 18px 48px rgba(36, 22, 50, 0.08);
}

.blog-card {
  display: flex;
  flex-direction: column;
  gap: 10px;
  min-height: 235px;
  padding: 24px;
  color: inherit;
  text-decoration: none;
  transition: transform 0.22s ease, box-shadow 0.22s ease, border-color 0.22s ease;
}

.blog-card:hover,
.related-grid a:hover {
  transform: translateY(-4px);
  border-color: rgba(127, 92, 183, 0.38);
  box-shadow: 0 24px 64px rgba(75, 42, 92, 0.14);
}

.blog-card span {
  width: 42px;
  height: 42px;
  display: grid;
  place-items: center;
  border-radius: 50%;
  background: #f0e9f8;
  color: #4b2a5c;
  font-weight: 800;
}

.blog-card h3,
.related-grid strong {
  margin: 0;
  color: #241632;
  font-size: 1.12rem;
  line-height: 1.35;
}

.blog-card p,
.blog-card small,
.related-grid small,
.blog-toc a,
.blog-body p,
.blog-body li,
.blog-faq-list p {
  color: #675d70;
}

.blog-post {
  padding: 36px 0 68px;
}

.blog-hero {
  position: relative;
  display: grid;
  grid-template-columns: minmax(0, 1fr) 300px;
  gap: 24px;
  align-items: center;
  overflow: hidden;
  padding: 32px;
  border-radius: 8px;
  background:
    radial-gradient(circle at 94% 10%, rgba(201, 183, 232, 0.5), transparent 28%),
    linear-gradient(135deg, rgba(75, 42, 92, 0.08), rgba(156, 134, 198, 0.2)),
    #ffffff;
  box-shadow: 0 24px 70px rgba(36, 22, 50, 0.1);
}

.blog-hero > .eyebrow,
.blog-hero > h1,
.blog-hero > p,
.blog-hero > .blog-meta-row {
  grid-column: 1;
}

.blog-hero > .eyebrow {
  align-self: end;
}

.blog-hero > h1 {
  align-self: start;
}

.blog-hero-panel {
  grid-column: 2;
  grid-row: 1 / span 4;
}

.blog-hero::before {
  content: "";
  position: absolute;
  inset: auto -80px -150px auto;
  width: 360px;
  height: 360px;
  border-radius: 50%;
  background: rgba(75, 42, 92, 0.08);
  pointer-events: none;
}

.blog-hero > * {
  position: relative;
}

.blog-meta-row {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-top: 18px;
}

.blog-meta-row span,
.external-links a {
  display: inline-flex;
  align-items: center;
  min-height: 38px;
  padding: 8px 13px;
  border-radius: 999px;
  background: #f0e9f8;
  color: #4b2a5c;
  font-size: 0.86rem;
  font-weight: 700;
}

.blog-hero-panel {
  align-self: stretch;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  min-height: 205px;
  padding: 20px;
  border: 1px solid rgba(255, 255, 255, 0.2);
  border-radius: 8px;
  color: #ffffff;
  background: linear-gradient(135deg, #241632, #4b2a5c 66%, #7f5cb7);
  box-shadow: 0 24px 60px rgba(75, 42, 92, 0.22);
}

.blog-hero-panel span {
  color: #d9c9f2;
  font-size: 0.82rem;
  font-weight: 800;
  text-transform: uppercase;
}

.blog-hero-panel strong {
  display: block;
  max-width: 280px;
  color: #ffffff;
  font-size: 1.16rem;
  line-height: 1.2;
}

.blog-hero-panel ul {
  display: grid;
  grid-template-columns: 1fr;
  gap: 8px;
  margin: 0;
  padding: 0;
  list-style: none;
}

.blog-hero-panel li {
  min-height: 30px;
  display: flex;
  align-items: center;
  padding: 7px 10px;
  border-radius: 8px;
  color: rgba(255, 255, 255, 0.86);
  background: rgba(255, 255, 255, 0.1);
  font-size: 0.82rem;
  font-weight: 700;
}

.blog-layout {
  display: grid;
  grid-template-columns: 270px minmax(0, 1fr);
  gap: 34px;
  align-items: start;
  margin-top: 26px;
}

.blog-toc {
  position: sticky;
  top: 96px;
  display: grid;
  gap: 12px;
  padding: 22px;
}

.blog-toc strong {
  color: #241632;
}

.blog-toc a {
  text-decoration: none;
  font-weight: 700;
}

.blog-body {
  padding: 42px;
  border-radius: 8px;
  background: #ffffff;
  box-shadow: 0 22px 56px rgba(36, 22, 50, 0.07);
}

.blog-body > h2 {
  padding-top: 14px;
}

.blog-body > h2::after {
  content: "";
  display: block;
  width: 70px;
  height: 4px;
  margin-top: 12px;
  border-radius: 99px;
  background: linear-gradient(90deg, #4b2a5c, #9c86c6);
}

.blog-body h2 {
  margin: 38px 0 14px;
  color: #241632;
  font-size: clamp(1.45rem, 2.4vw, 2.2rem);
  line-height: 1.16;
}

.blog-body h3 {
  color: #241632;
}

.blog-body p,
.blog-body li {
  font-size: 1rem;
  line-height: 1.85;
}

.blog-body ol,
.blog-body ul {
  padding-left: 22px;
}

.blog-callout {
  padding: 26px;
  border-color: rgba(127, 92, 183, 0.28);
  background:
    linear-gradient(135deg, rgba(240, 233, 248, 0.92), rgba(255, 255, 255, 0.98));
}

.blog-callout h2 {
  margin-top: 0;
}

.blog-note {
  margin: 28px 0;
  padding: 22px 24px;
  border-left: 5px solid #b794db;
  border-radius: 0 8px 8px 0;
  background: #f7f3fa;
}

.blog-note strong {
  display: block;
  margin-bottom: 7px;
  color: #431e4f;
  font-size: 1.05rem;
}

.blog-note p,
.blog-service-link p {
  margin: 0;
}

.blog-body > ol:not(.detail-steps),
.blog-body > ul {
  display: grid;
  gap: 12px;
  margin: 22px 0;
  padding: 0;
  list-style: none;
}

.blog-body > ol:not(.detail-steps) {
  counter-reset: blog-step;
}

.blog-body > ol:not(.detail-steps) > li,
.blog-body > ul > li {
  position: relative;
  padding: 16px 18px 16px 56px;
  border: 1px solid rgba(75, 42, 92, 0.12);
  border-radius: 8px;
  background: #fbf9fe;
}

.blog-body > ol:not(.detail-steps) > li {
  counter-increment: blog-step;
}

.blog-body > ol:not(.detail-steps) > li::before,
.blog-body > ul > li::before {
  position: absolute;
  left: 16px;
  top: 16px;
  width: 26px;
  height: 26px;
  display: grid;
  place-items: center;
  border-radius: 50%;
  color: #ffffff;
  background: #4b2a5c;
  font-size: 0.74rem;
  font-weight: 800;
}

.blog-body > ol:not(.detail-steps) > li::before {
  content: counter(blog-step);
}

.blog-body > ul > li::before {
  content: "";
  background:
    radial-gradient(circle, #ffffff 0 28%, transparent 30%),
    #7f5cb7;
}

.blog-service-link {
  display: flex;
  justify-content: space-between;
  gap: 20px;
  align-items: center;
  margin: 34px 0;
  padding: 24px;
  background: linear-gradient(135deg, #241632, #4b2a5c);
}

.blog-service-link span,
.blog-service-link strong {
  display: block;
  color: #ffffff;
}

.blog-service-link span {
  color: rgba(255, 255, 255, 0.74);
  font-weight: 700;
}

.blog-service-link p {
  max-width: 650px;
  padding-top: 8px;
  color: rgba(255, 255, 255, 0.8);
  font-size: 0.92rem;
  line-height: 1.65;
}

.blog-service-link .btn.primary {
  flex: 0 0 auto;
  color: #4b2a5c;
  background: #ffffff;
}

.external-links {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
}

.external-links a {
  text-decoration: none;
}

.blog-source-list a {
  color: #431e4f;
  font-weight: 700;
  text-underline-offset: 3px;
}

.blog-faq-list {
  display: grid;
  gap: 14px;
}

.blog-faq-list article {
  padding: 22px;
  box-shadow: none;
}

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

.solution-grid article {
  min-height: 210px;
  padding: 24px;
  border: 1px solid rgba(75, 42, 92, 0.14);
  border-radius: 8px;
  background:
    linear-gradient(135deg, rgba(255, 255, 255, 0.98), rgba(240, 233, 248, 0.74)),
    #ffffff;
  box-shadow: 0 18px 46px rgba(36, 22, 50, 0.07);
}

.solution-grid span {
  display: inline-flex;
  margin-bottom: 12px;
  padding: 7px 11px;
  border-radius: 999px;
  color: #4b2a5c;
  background: #f0e9f8;
  font-size: 0.76rem;
  font-weight: 800;
  text-transform: uppercase;
}

.solution-grid h3 {
  margin: 0 0 10px;
  color: #241632;
}

.solution-grid p {
  margin: 0;
}

/* Work showcase */
.work-hero {
  position: relative;
  overflow: hidden;
}

.work-hero-stats {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
  margin-top: 28px;
}

.work-hero-stats span {
  min-width: 150px;
  padding: 16px 18px;
  border: 1px solid rgba(75, 42, 92, 0.14);
  border-radius: 8px;
  color: #675d70;
  background: #ffffff;
  box-shadow: 0 14px 38px rgba(36, 22, 50, 0.07);
}

.work-hero-stats strong {
  display: block;
  color: #4b2a5c;
  font-size: 1.85rem;
  line-height: 1;
}

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

.work-snapshot-grid article,
.deliverable-columns article,
.case-study-row a {
  border: 1px solid rgba(75, 42, 92, 0.14);
  border-radius: 8px;
  background: #ffffff;
  box-shadow: 0 20px 52px rgba(36, 22, 50, 0.08);
}

.work-snapshot-grid article {
  min-height: 245px;
  padding: 24px;
}

.work-snapshot-grid span {
  width: 42px;
  height: 42px;
  display: grid;
  place-items: center;
  margin-bottom: 20px;
  border-radius: 50%;
  color: #ffffff;
  background: linear-gradient(135deg, #4b2a5c, #9c86c6);
  font-weight: 800;
}

.work-snapshot-grid h3,
.deliverable-columns h3,
.case-study-row h3 {
  margin: 0 0 10px;
  color: #241632;
}

.work-snapshot-grid p,
.deliverable-columns p,
.case-study-row p,
.case-study-row li {
  color: #675d70;
}

.case-study-list {
  background: #fbf9fe;
}

.case-study-row {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 18px;
  margin-top: 18px;
}

.case-study-row a {
  display: flex;
  flex-direction: column;
  min-height: 330px;
  padding: 26px;
  color: inherit;
  text-decoration: none;
  transition: transform 0.22s ease, box-shadow 0.22s ease, border-color 0.22s ease;
}

.case-study-row a:hover {
  transform: translateY(-4px);
  border-color: rgba(127, 92, 183, 0.38);
  box-shadow: 0 28px 68px rgba(75, 42, 92, 0.14);
}

.case-study-row em {
  margin-bottom: 16px;
  color: #7f5cb7;
  font-size: 0.78rem;
  font-style: normal;
  font-weight: 800;
  text-transform: uppercase;
}

.case-study-row ul {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin: auto 0 18px;
  padding: 0;
  list-style: none;
}

.case-study-row li {
  padding: 7px 10px;
  border-radius: 999px;
  background: #f0e9f8;
  font-size: 0.78rem;
  font-weight: 700;
}

.case-study-row strong {
  color: #4b2a5c;
}

.deliverable-columns article {
  min-height: 180px;
  padding: 24px;
}

.work-cta {
  display: flex;
  justify-content: space-between;
  gap: 28px;
  align-items: center;
  border-radius: 8px;
  color: #ffffff;
  background: linear-gradient(135deg, #241632, #4b2a5c 62%, #7f5cb7);
}

.work-cta h2,
.work-cta p,
.work-cta .eyebrow {
  color: #ffffff;
}

.work-cta p {
  max-width: 760px;
  color: rgba(255, 255, 255, 0.78);
}

.work-cta .btn.light {
  flex: 0 0 auto;
  color: #4b2a5c;
  background: #ffffff;
}

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

.walkthrough-card {
  position: relative;
  display: grid;
  grid-template-columns: 44px minmax(0, 1fr);
  gap: 16px;
  align-items: start;
  min-height: 245px;
  padding: 24px;
  border: 1px solid rgba(75, 42, 92, 0.14);
  border-radius: 8px;
  background:
    linear-gradient(135deg, rgba(255, 255, 255, 0.96), rgba(247, 241, 252, 0.92)),
    #ffffff;
  box-shadow: 0 16px 40px rgba(36, 22, 50, 0.07);
  transition: transform 0.22s ease, box-shadow 0.22s ease, border-color 0.22s ease;
}

.walkthrough-card:hover {
  transform: translateY(-4px);
  border-color: rgba(127, 92, 183, 0.36);
  box-shadow: 0 24px 66px rgba(75, 42, 92, 0.14);
}

.walkthrough-number {
  width: 44px;
  height: 44px;
  display: grid;
  place-items: center;
  border-radius: 50%;
  color: #ffffff;
  background: linear-gradient(135deg, #4b2a5c, #7f5cb7);
  font-weight: 800;
}

.walkthrough-card h3 {
  margin: 0 0 8px;
  color: #241632;
  font-size: 1.12rem;
}

.walkthrough-card p {
  margin: 0;
  color: #4d4358;
}

.walkthrough-card small {
  display: block;
  margin-top: 14px;
  padding: 13px 14px;
  border-left: 4px solid #9c86c6;
  border-radius: 0 8px 8px 0;
  color: #5f5269;
  background: rgba(240, 233, 248, 0.74);
  font-weight: 600;
  line-height: 1.65;
}

.small-callout {
  margin-top: 22px;
}

.small-callout h3 {
  margin-top: 0;
}

.related-posts {
  margin-top: 48px;
  padding-top: 42px;
  border-top: 1px solid rgba(75, 42, 92, 0.12);
}

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

.related-grid a {
  display: grid;
  gap: 10px;
  min-height: 190px;
  padding: 22px;
  color: inherit;
  text-decoration: none;
  transition: transform 0.22s ease, box-shadow 0.22s ease, border-color 0.22s ease;
}

.related-grid span {
  color: #7f5cb7;
  font-size: 0.78rem;
  font-weight: 800;
  text-transform: uppercase;
}

@media (max-width: 900px) {
  .blog-card-grid,
  .blog-layout,
  .related-grid,
  .blog-hero,
  .walkthrough-grid,
  .solution-grid,
  .work-snapshot-grid,
  .deliverable-columns,
  .case-study-row {
    grid-template-columns: 1fr;
  }

  .work-cta {
    align-items: flex-start;
    flex-direction: column;
  }

  .blog-toc {
    position: static;
  }

  .blog-hero,
  .blog-body {
    padding: 28px;
  }
}

@media (max-width: 560px) {
  .blog-index-hero,
  .blog-post,
  .blog-index-section {
    width: min(100% - 28px, 1180px);
  }

  .blog-index-hero h1,
  .blog-hero h1 {
    font-size: 2.05rem;
  }

  .blog-service-link {
    align-items: flex-start;
    flex-direction: column;
  }

  .walkthrough-card {
    grid-template-columns: 1fr;
  }
}

/* Final launch polish for the homepage process and search-readiness section. */
.process-board {
  width: min(1180px, calc(100% - 40px));
  padding: clamp(52px, 7vw, 82px) 0;
  gap: clamp(26px, 4vw, 42px);
}

.process-board::before {
  inset: 36px auto auto 50%;
  width: 280px;
  height: 280px;
  transform: translateX(-50%);
  opacity: 0.65;
}

.process-board-intro {
  max-width: 760px;
}

.process-board-intro h2 {
  max-width: 760px;
  margin: 10px auto 14px;
  font-size: clamp(28px, 3.8vw, 48px);
  line-height: 1.12;
}

.process-board-intro p:last-child {
  max-width: 640px;
  margin-inline: auto;
  font-size: clamp(0.95rem, 1.2vw, 1.05rem);
  line-height: 1.7;
}

.process-board-steps {
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 16px;
  padding-top: 8px;
}

.process-board-steps article {
  min-height: 236px;
  padding: 24px;
  animation: none;
}

.process-board-steps article::after {
  background: linear-gradient(135deg, rgba(255, 255, 255, 0.11), transparent 58%);
}

.process-board-steps span {
  width: 54px;
  height: 54px;
  background: #c9b7e8;
  box-shadow: 0 0 0 7px rgba(201, 183, 232, 0.12);
}

.process-board-steps h3 {
  font-size: clamp(1.1rem, 1.9vw, 1.36rem);
  line-height: 1.25;
}

.process-board-steps p {
  font-size: 0.95rem;
  line-height: 1.65;
}

.search-ready-strip {
  width: min(1180px, calc(100% - 40px));
  margin: 0 auto 76px;
  padding: clamp(34px, 5vw, 54px);
  border: 1px solid rgba(75, 42, 92, 0.12);
  border-radius: 8px;
  background: #ffffff;
  box-shadow: 0 28px 82px rgba(36, 22, 50, 0.08);
}

.search-ready-heading {
  display: grid;
  gap: 12px;
  max-width: 760px;
  margin-bottom: 28px;
}

.search-ready-heading h2 {
  margin: 0;
  color: #241632;
  font-size: clamp(1.75rem, 3.2vw, 2.75rem);
  line-height: 1.12;
}

.search-ready-heading p:last-child {
  margin: 0;
  color: #5f5269;
  line-height: 1.75;
}

.search-ready-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 14px;
}

.search-ready-grid article {
  display: grid;
  gap: 10px;
  align-content: start;
  min-height: 210px;
  padding: 22px;
  border: 1px solid rgba(75, 42, 92, 0.1);
  border-radius: 8px;
  background: linear-gradient(180deg, #fbf8ff, #ffffff);
}

.search-ready-grid span {
  width: 38px;
  height: 38px;
  display: grid;
  place-items: center;
  border-radius: 50%;
  color: #ffffff;
  background: linear-gradient(135deg, #4b2a5c, #7f5cb7);
  font-size: 0.82rem;
  font-weight: 800;
}

.search-ready-grid h3 {
  margin: 4px 0 0;
  color: #241632;
  font-size: 1.05rem;
}

.search-ready-grid p {
  margin: 0;
  color: #5f5269;
  font-size: 0.92rem;
  line-height: 1.65;
}

@media (max-width: 980px) {
  .process-board {
    width: min(100% - 32px, 1180px);
  }

  .process-board-intro {
    text-align: left;
    justify-items: start;
    margin-inline: 0;
  }

  .process-board-intro p:last-child {
    margin-inline: 0;
  }

  .process-board-steps {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 14px;
  }

  .process-board-steps article:nth-child(1),
  .process-board-steps article:nth-child(2),
  .process-board-steps article:nth-child(3),
  .process-board-steps article:nth-child(4) {
    grid-column: auto;
    grid-row: auto;
  }

  .process-board-steps article {
    min-height: 210px;
    padding: 22px;
  }

  .process-board-steps article:not(:last-child)::before {
    content: none;
  }

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

@media (max-width: 640px) {
  .process-board {
    width: min(100% - 28px, 1180px);
    padding: 44px 0 48px;
  }

  .process-board::before {
    width: 180px;
    height: 180px;
    opacity: 0.45;
  }

  .process-board-intro h2 {
    font-size: 1.8rem;
  }

  .process-board-steps {
    grid-template-columns: 1fr;
    gap: 12px;
  }

  .process-board-steps article {
    grid-template-columns: 46px minmax(0, 1fr);
    min-height: auto;
    gap: 14px;
    padding: 16px;
  }

  .process-board-steps span {
    width: 46px;
    height: 46px;
    box-shadow: 0 0 0 5px rgba(201, 183, 232, 0.12);
  }

  .process-board-steps h3 {
    margin-bottom: 6px;
    font-size: 1.05rem;
  }

  .process-board-steps p {
    font-size: 0.9rem;
  }

  .search-ready-strip {
    width: min(100% - 28px, 1180px);
    margin-bottom: 52px;
    padding: 24px;
  }

  .search-ready-grid {
    grid-template-columns: 1fr;
  }

  .search-ready-grid article {
    min-height: auto;
    padding: 18px;
  }
}

/* LMS product page v3 */
.lms-product-v3 {
  --lp-primary: #431e4f;
  --lp-secondary: #b794db;
  --lp-ink: #211825;
  --lp-muted: #6d6570;
  --lp-line: #ded8e1;
  --lp-soft: #f5f1f8;
  color: var(--lp-ink);
  background: #ffffff;
  font-family: "Poppins", sans-serif;
}

.lms-product-v3 *,
.lms-product-v3 *::before,
.lms-product-v3 *::after {
  box-sizing: border-box;
}

.lms-product-v3 a {
  color: inherit;
  text-decoration: none;
}

.lms-product-v3 h1,
.lms-product-v3 h2,
.lms-product-v3 h3,
.lms-product-v3 p {
  margin-top: 0;
}

.lp-kicker {
  margin-bottom: 17px;
  color: var(--lp-primary);
  font-size: 0.72rem;
  font-weight: 700;
  line-height: 1.5;
  text-transform: uppercase;
}

.lp-hero {
  display: grid;
  grid-template-columns: minmax(0, 0.92fr) minmax(560px, 1.08fr);
  gap: clamp(52px, 7vw, 110px);
  min-height: 650px;
  align-items: center;
  padding: 72px max(5vw, calc((100vw - 1240px) / 2));
  border-top: 4px solid var(--lp-secondary);
  color: #ffffff;
  background: var(--lp-primary);
}

.lp-hero-copy {
  max-width: 650px;
}

.lp-hero .lp-kicker,
.lp-final .lp-kicker,
.lp-pricing .lp-kicker {
  color: var(--lp-secondary);
}

.lp-hero h1 {
  margin-bottom: 24px;
  font-size: clamp(2.8rem, 4.8vw, 4.8rem);
  font-weight: 700;
  line-height: 1.03;
  letter-spacing: 0;
}

.lp-hero-copy > p:not(.lp-kicker) {
  max-width: 620px;
  margin-bottom: 32px;
  color: #ded3e3;
  font-size: 1rem;
  line-height: 1.8;
}

.lp-actions,
.lp-final > div {
  display: flex;
  align-items: center;
  gap: 26px;
  flex-wrap: wrap;
}

.lp-btn {
  display: inline-flex;
  min-height: 50px;
  align-items: center;
  justify-content: center;
  gap: 16px;
  padding: 13px 20px;
  border: 1px solid transparent;
  border-radius: 4px;
  font-size: 0.84rem;
  font-weight: 700;
  transition: transform 160ms ease, background-color 160ms ease;
}

.lp-btn:hover {
  transform: translateY(-2px);
}

.lp-btn-primary,
.lp-btn-light {
  color: var(--lp-primary) !important;
  background: #ffffff;
}

.lp-link {
  display: inline-flex;
  padding-bottom: 4px;
  border-bottom: 1px solid currentColor;
  font-size: 0.82rem;
  font-weight: 700;
}

.lp-hero-points {
  display: flex;
  gap: 10px 22px;
  flex-wrap: wrap;
  margin: 30px 0 0;
  padding: 22px 0 0;
  border-top: 1px solid rgba(255, 255, 255, 0.2);
  list-style: none;
}

.lp-hero-points li {
  padding-left: 14px;
  position: relative;
  color: #ded3e3;
  font-size: 0.7rem;
}

.lp-hero-points li::before {
  content: "";
  width: 5px;
  height: 5px;
  position: absolute;
  top: 7px;
  left: 0;
  border-radius: 50%;
  background: var(--lp-secondary);
}

.lp-app {
  min-width: 0;
  overflow: hidden;
  border: 1px solid rgba(255, 255, 255, 0.25);
  border-radius: 6px;
  box-shadow: 0 30px 80px rgba(19, 8, 23, 0.28);
  color: var(--lp-ink);
  background: #ffffff;
}

.lp-app-head {
  display: flex;
  min-height: 64px;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
  padding: 16px 20px;
  border-bottom: 1px solid var(--lp-line);
  font-size: 0.7rem;
}

.lp-app-head span {
  color: var(--lp-primary);
  font-weight: 800;
}

.lp-app-head b {
  color: var(--lp-muted);
}

.lp-app-body {
  display: grid;
  grid-template-columns: 116px minmax(0, 1fr);
  min-height: 440px;
}

.lp-app-nav {
  display: flex;
  flex-direction: column;
  gap: 8px;
  padding: 18px 12px;
  background: #2d1236;
}

.lp-app-nav button {
  min-height: 42px;
  padding: 10px;
  border: 0;
  border-radius: 3px;
  color: #d9cde0;
  text-align: left;
  background: transparent;
  font: inherit;
  font-size: 0.66rem;
  font-weight: 700;
  cursor: pointer;
}

.lp-app-nav button:hover,
.lp-app-nav button:focus-visible,
.lp-app-nav button.is-active {
  color: var(--lp-primary);
  outline: none;
  background: var(--lp-secondary);
}

.lp-app-content {
  min-width: 0;
  padding: 22px;
}

.lp-role-panel {
  min-height: 396px;
}

.lp-role-panel[hidden] {
  display: none;
}

.lp-role-panel.is-active {
  animation: lp-panel-in 220ms ease both;
}

@keyframes lp-panel-in {
  from { opacity: 0; transform: translateY(5px); }
  to { opacity: 1; transform: translateY(0); }
}

.lp-panel-title {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 18px;
  padding-bottom: 20px;
  border-bottom: 1px solid var(--lp-line);
  font-size: 0.7rem;
}

.lp-panel-title b {
  color: var(--lp-primary);
}

.lp-stat-row {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 10px;
  margin: 20px 0;
}

.lp-stat-row article {
  display: grid;
  min-height: 118px;
  align-content: space-between;
  padding: 13px;
  border: 1px solid var(--lp-line);
  border-radius: 4px;
}

.lp-stat-row small,
.lp-stat-row span {
  color: var(--lp-muted);
  font-size: 0.58rem;
}

.lp-stat-row strong {
  color: var(--lp-primary);
  font-size: 1.65rem;
}

.lp-task-list {
  display: grid;
  border: 1px solid var(--lp-line);
  border-radius: 4px;
}

.lp-task-list > strong,
.lp-task-list > span {
  padding: 12px 13px;
  border-bottom: 1px solid var(--lp-line);
  font-size: 0.63rem;
}

.lp-task-list > span {
  display: grid;
  grid-template-columns: 46px 1fr auto;
  align-items: center;
  gap: 8px;
}

.lp-task-list > span:last-child {
  border-bottom: 0;
}

.lp-task-list i {
  color: var(--lp-muted);
  font-style: normal;
}

.lp-task-list span b {
  color: var(--lp-primary);
}

.lp-answer,
.lp-modules,
.lp-day-flow,
.lp-role-depth,
.lp-compare,
.lp-build-process,
.lp-proof,
.lp-guides,
.lp-faq {
  width: min(100% - 40px, 1240px);
  margin: 0 auto;
}

.lp-answer {
  display: grid;
  grid-template-columns: 0.6fr 1.4fr;
  gap: 70px;
  padding: 92px 0;
  border-bottom: 1px solid var(--lp-line);
}

.lp-answer h2,
.lp-section-heading h2,
.lp-role-depth > div:first-child h2,
.lp-pricing h2,
.lp-faq > div:first-child h2,
.lp-final h2 {
  margin-bottom: 20px;
  font-size: clamp(2rem, 3.5vw, 3.6rem);
  font-weight: 700;
  line-height: 1.12;
  letter-spacing: 0;
}

.lp-answer div p,
.lp-section-heading > p:last-child,
.lp-role-depth > div:first-child > p:last-child,
.lp-pricing-head > div > p:last-child,
.lp-final > p:not(.lp-kicker) {
  max-width: 760px;
  margin-bottom: 0;
  color: var(--lp-muted);
  font-size: 0.96rem;
  line-height: 1.8;
}

.lp-outcomes {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  width: min(100% - 40px, 1240px);
  margin: 0 auto;
  border-left: 1px solid var(--lp-line);
}

.lp-outcomes article {
  min-height: 190px;
  padding: 25px;
  border-right: 1px solid var(--lp-line);
  border-bottom: 1px solid var(--lp-line);
}

.lp-outcomes span {
  display: block;
  margin-bottom: 34px;
  color: var(--lp-secondary);
  font-size: 0.72rem;
  font-weight: 800;
}

.lp-outcomes strong {
  display: block;
  margin-bottom: 10px;
  font-size: 1rem;
}

.lp-outcomes p {
  margin-bottom: 0;
  color: var(--lp-muted);
  font-size: 0.76rem;
  line-height: 1.65;
}

.lp-modules,
.lp-day-flow,
.lp-role-depth,
.lp-compare,
.lp-build-process,
.lp-proof,
.lp-guides,
.lp-faq {
  padding: 104px 0;
}

.lp-section-heading {
  max-width: 830px;
  margin-bottom: 50px;
}

.lp-module-list {
  border-top: 1px solid var(--lp-line);
}

.lp-module-list article {
  display: grid;
  grid-template-columns: 60px minmax(0, 1.2fr) minmax(270px, 0.8fr);
  gap: 30px;
  align-items: start;
  padding: 28px 0;
  border-bottom: 1px solid var(--lp-line);
}

.lp-module-list article > span {
  color: var(--lp-secondary);
  font-size: 0.75rem;
  font-weight: 800;
}

.lp-module-list h3 {
  margin-bottom: 10px;
  font-size: 1.25rem;
}

.lp-module-list div p {
  max-width: 650px;
  margin-bottom: 0;
  color: var(--lp-muted);
  font-size: 0.82rem;
  line-height: 1.7;
}

.lp-module-list ul,
.lp-role-grid ul,
.lp-price-grid ul {
  margin: 0;
  padding: 0;
  list-style: none;
}

.lp-module-list ul {
  display: flex;
  gap: 7px;
  justify-content: flex-end;
  flex-wrap: wrap;
}

.lp-module-list li {
  padding: 7px 9px;
  border: 1px solid #d6c8df;
  border-radius: 3px;
  color: var(--lp-primary);
  font-size: 0.63rem;
  font-weight: 600;
  background: #fbf9fc;
}

.lp-day-flow,
.lp-compare,
.lp-guides {
  width: 100%;
  padding-right: max(5vw, calc((100vw - 1240px) / 2));
  padding-left: max(5vw, calc((100vw - 1240px) / 2));
  background: var(--lp-soft);
}

.lp-day-flow .lp-section-heading,
.lp-compare .lp-section-heading,
.lp-guides .lp-section-heading {
  width: min(100%, 830px);
}

.lp-day-flow ol,
.lp-build-process ol {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  margin: 0;
  padding: 0;
  border-top: 1px solid var(--lp-line);
  border-left: 1px solid var(--lp-line);
  list-style: none;
}

.lp-day-flow li,
.lp-build-process li {
  min-height: 225px;
  padding: 24px;
  border-right: 1px solid var(--lp-line);
  border-bottom: 1px solid var(--lp-line);
  background: #ffffff;
}

.lp-day-flow li span,
.lp-build-process li span {
  display: block;
  margin-bottom: 46px;
  color: var(--lp-secondary);
  font-size: 0.72rem;
  font-weight: 800;
}

.lp-day-flow h3,
.lp-build-process h3 {
  margin-bottom: 10px;
  font-size: 1.08rem;
}

.lp-day-flow li p,
.lp-build-process li p {
  margin-bottom: 0;
  color: var(--lp-muted);
  font-size: 0.77rem;
  line-height: 1.65;
}

.lp-role-depth {
  display: grid;
  grid-template-columns: 0.72fr 1.28fr;
  gap: 80px;
}

.lp-role-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  border-top: 1px solid var(--lp-line);
  border-left: 1px solid var(--lp-line);
}

.lp-role-grid article {
  min-height: 300px;
  padding: 25px;
  border-right: 1px solid var(--lp-line);
  border-bottom: 1px solid var(--lp-line);
}

.lp-role-grid article > span {
  display: inline-block;
  margin-bottom: 34px;
  color: var(--lp-primary);
  font-size: 0.7rem;
  font-weight: 800;
  text-transform: uppercase;
}

.lp-role-grid h3 {
  margin-bottom: 18px;
  font-size: 1.15rem;
}

.lp-role-grid ul,
.lp-price-grid ul {
  display: grid;
  gap: 10px;
}

.lp-role-grid li,
.lp-price-grid li {
  padding-left: 15px;
  position: relative;
  color: var(--lp-muted);
  font-size: 0.73rem;
  line-height: 1.5;
}

.lp-role-grid li::before,
.lp-price-grid li::before {
  content: "+";
  position: absolute;
  left: 0;
  color: var(--lp-secondary);
  font-weight: 800;
}

.lp-table {
  width: 100%;
  overflow: hidden;
  border: 1px solid var(--lp-line);
  border-radius: 5px;
  background: #ffffff;
}

.lp-table > div {
  display: grid;
  grid-template-columns: 1.1fr 0.85fr 1.05fr;
}

.lp-table > div:first-child {
  color: #ffffff;
  background: var(--lp-primary);
}

.lp-table strong,
.lp-table span {
  padding: 18px;
  border-right: 1px solid var(--lp-line);
  border-bottom: 1px solid var(--lp-line);
  font-size: 0.73rem;
  line-height: 1.5;
}

.lp-table > div > :last-child {
  border-right: 0;
}

.lp-table > div:last-child > * {
  border-bottom: 0;
}

.lp-table span:nth-child(2) {
  color: var(--lp-muted);
}

.lp-table span:nth-child(3) {
  color: var(--lp-primary);
  font-weight: 700;
  background: #faf7fc;
}

.lp-proof {
  border-top: 1px solid var(--lp-line);
}

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

@media (max-width: 900px) {
  .academy-project-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
}

@media (max-width: 620px) {
  .academy-project-grid {
    grid-template-columns: 1fr;
  }

  .academy-project-grid figure {
    --preview-height: 420px;
  }
}

.lp-proof-grid a {
  overflow: hidden;
  border: 1px solid var(--lp-line);
  border-radius: 5px;
  background: #ffffff;
}

.lp-proof-grid figure {
  --proof-preview-height: 360px;
  height: var(--proof-preview-height);
  margin: 0;
  overflow: hidden;
  background: var(--lp-soft);
}

.lp-proof-grid img {
  width: 100%;
  height: auto;
  min-height: 100%;
  display: block;
  object-fit: cover;
  object-position: top center;
  transition: transform 9000ms cubic-bezier(0.16, 1, 0.3, 1);
}

.lp-proof-grid a:hover img {
  transform: translateY(calc(var(--proof-preview-height) - 100%));
}

.lp-proof-grid span {
  display: block;
  padding: 16px;
  color: var(--lp-primary);
  font-size: 0.78rem;
  font-weight: 700;
}

.lp-pricing {
  padding: 104px max(5vw, calc((100vw - 1240px) / 2));
  color: #ffffff;
  background: var(--lp-primary);
}

.lp-pricing-head {
  display: flex;
  align-items: end;
  justify-content: space-between;
  gap: 50px;
  margin-bottom: 44px;
}

.lp-pricing-head > div:first-child {
  max-width: 760px;
}

.lp-pricing-head > div > p:last-child {
  color: #d9cde0;
}

.lp-pricing .currency-toggle {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  min-width: 220px;
  padding: 4px;
  border: 1px solid rgba(255, 255, 255, 0.3);
  border-radius: 4px;
  background: rgba(255, 255, 255, 0.06);
}

.lp-pricing .currency-toggle::before {
  content: none;
}

.lp-pricing .currency-toggle button {
  min-height: 36px;
  border: 0;
  border-radius: 3px;
  color: #ded3e3;
  background: transparent;
  font: inherit;
  font-size: 0.68rem;
  font-weight: 700;
  cursor: pointer;
}

.lp-pricing .currency-toggle button.active {
  color: var(--lp-primary);
  background: #ffffff;
}

.lp-price-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  border-top: 1px solid rgba(255, 255, 255, 0.22);
  border-left: 1px solid rgba(255, 255, 255, 0.22);
}

.lp-price-grid article {
  display: flex;
  min-height: 610px;
  flex-direction: column;
  padding: 25px;
  border-right: 1px solid rgba(255, 255, 255, 0.22);
  border-bottom: 1px solid rgba(255, 255, 255, 0.22);
  color: var(--lp-ink);
  background: #ffffff;
}

.lp-price-grid article.lp-popular {
  background: #f1e9f7;
  box-shadow: inset 0 4px 0 var(--lp-secondary);
}

.lp-price-grid article > span {
  color: var(--lp-primary);
  font-size: 0.7rem;
  font-weight: 800;
  text-transform: uppercase;
}

.lp-price-grid h3 {
  min-height: 68px;
  margin: 26px 0 10px;
  font-size: 1.45rem;
  line-height: 1.25;
}

.lp-price-grid article > p {
  min-height: 66px;
  margin-bottom: 20px;
  color: var(--lp-muted);
  font-size: 0.75rem;
  line-height: 1.6;
}

.lp-price-grid article > strong {
  min-height: 36px;
  padding-top: 16px;
  border-top: 1px solid var(--lp-line);
  font-size: 0.7rem;
}

.lp-price-grid ul {
  margin: 12px 0 22px;
}

.lp-price-grid small {
  min-height: 56px;
  margin-top: auto;
  color: var(--lp-muted);
  font-size: 0.63rem;
  line-height: 1.55;
}

.lp-price-grid a {
  display: flex;
  min-height: 44px;
  align-items: center;
  justify-content: center;
  margin-top: 18px;
  border: 1px solid var(--lp-primary);
  border-radius: 4px;
  color: #ffffff;
  background: var(--lp-primary);
  font-size: 0.7rem;
  font-weight: 700;
}

.lp-guides > div:last-child {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  border-top: 1px solid var(--lp-line);
  border-left: 1px solid var(--lp-line);
}

.lp-guides a {
  display: flex;
  min-height: 270px;
  flex-direction: column;
  padding: 25px;
  border-right: 1px solid var(--lp-line);
  border-bottom: 1px solid var(--lp-line);
  background: #ffffff;
}

.lp-guides a > span {
  color: var(--lp-primary);
  font-size: 0.68rem;
  font-weight: 700;
  text-transform: uppercase;
}

.lp-guides h3 {
  margin: 35px 0 12px;
  font-size: 1.12rem;
  line-height: 1.4;
}

.lp-guides a p {
  color: var(--lp-muted);
  font-size: 0.75rem;
  line-height: 1.6;
}

.lp-guides a strong {
  margin-top: auto;
  color: var(--lp-primary);
  font-size: 0.7rem;
}

.lp-faq {
  display: grid;
  grid-template-columns: 0.75fr 1.25fr;
  gap: 80px;
}

.lp-faq-list {
  border-top: 1px solid var(--lp-line);
}

.lp-faq details {
  border-bottom: 1px solid var(--lp-line);
}

.lp-faq summary {
  padding: 22px 34px 22px 0;
  position: relative;
  cursor: pointer;
  font-size: 0.84rem;
  font-weight: 700;
  list-style: none;
}

.lp-faq summary::-webkit-details-marker {
  display: none;
}

.lp-faq summary::after {
  content: "+";
  position: absolute;
  top: 19px;
  right: 4px;
  color: var(--lp-primary);
  font-size: 1.2rem;
}

.lp-faq details[open] summary::after {
  content: "-";
}

.lp-faq details p {
  max-width: 690px;
  margin-bottom: 22px;
  color: var(--lp-muted);
  font-size: 0.8rem;
  line-height: 1.75;
}

.lp-final {
  padding: 92px max(5vw, calc((100vw - 1240px) / 2));
  text-align: center;
  color: #ffffff;
  background: var(--lp-primary);
  box-shadow: inset 0 4px 0 var(--lp-secondary);
}

.lp-final h2 {
  max-width: 820px;
  margin-right: auto;
  margin-left: auto;
}

.lp-final > p:not(.lp-kicker) {
  margin-right: auto;
  margin-bottom: 30px;
  margin-left: auto;
  color: #ded3e3;
}

.lp-final > div {
  justify-content: center;
}

body:has(.lms-product-v3) .brand-mark,
body:has(.lms-product-v3) .header-cta {
  background: #431e4f;
}

body:has(.lms-product-v3) .site-nav > a.active {
  color: #431e4f;
}

body:has(.lms-product-v3) .payment-marquee {
  background: #431e4f;
}

@media (max-width: 1100px) {
  .lp-hero {
    grid-template-columns: 1fr;
    min-height: auto;
    padding: 76px 34px;
  }

  .lp-hero-copy {
    max-width: 760px;
  }

  .lp-app {
    width: 100%;
    max-width: 780px;
  }

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

  .lp-price-grid article {
    min-height: 570px;
  }
}

@media (max-width: 820px) {
  .lp-answer,
  .lp-role-depth,
  .lp-faq {
    grid-template-columns: 1fr;
    gap: 34px;
  }

  .lp-answer,
  .lp-modules,
  .lp-day-flow,
  .lp-role-depth,
  .lp-compare,
  .lp-build-process,
  .lp-proof,
  .lp-guides,
  .lp-faq {
    padding-top: 76px;
    padding-bottom: 76px;
  }

  .lp-outcomes,
  .lp-proof-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .lp-module-list article {
    grid-template-columns: 42px 1fr;
  }

  .lp-module-list ul {
    grid-column: 2;
    justify-content: flex-start;
  }

  .lp-pricing {
    padding: 78px 28px;
  }

  .lp-pricing-head {
    align-items: flex-start;
    flex-direction: column;
  }

  .lp-guides > div:last-child {
    grid-template-columns: 1fr;
  }

  .lp-guides a {
    min-height: 220px;
  }
}

@media (max-width: 620px) {
  .lp-hero {
    gap: 44px;
    padding: 58px 20px;
  }

  .lp-hero h1 {
    font-size: 2.6rem;
  }

  .lp-actions {
    align-items: flex-start;
    flex-direction: column;
    gap: 19px;
  }

  .lp-app-body {
    grid-template-columns: 1fr;
  }

  .lp-app-nav {
    display: grid;
    grid-template-columns: repeat(4, minmax(0, 1fr));
    padding: 9px;
  }

  .lp-app-nav button {
    min-width: 0;
    padding: 9px 5px;
    text-align: center;
  }

  .lp-app-content {
    padding: 16px;
  }

  .lp-stat-row {
    grid-template-columns: 1fr;
  }

  .lp-stat-row article {
    min-height: 96px;
  }

  .lp-task-list > span {
    grid-template-columns: 38px 1fr;
  }

  .lp-task-list span b {
    display: none;
  }

  .lp-answer,
  .lp-modules,
  .lp-role-depth,
  .lp-build-process,
  .lp-proof,
  .lp-faq {
    width: min(100% - 32px, 1240px);
  }

  .lp-answer h2,
  .lp-section-heading h2,
  .lp-role-depth > div:first-child h2,
  .lp-pricing h2,
  .lp-faq > div:first-child h2,
  .lp-final h2 {
    font-size: 2rem;
  }

  .lp-outcomes,
  .lp-role-grid,
  .lp-proof-grid,
  .lp-price-grid,
  .lp-day-flow ol,
  .lp-build-process ol {
    grid-template-columns: 1fr;
  }

  .lp-outcomes {
    width: 100%;
  }

  .lp-outcomes article {
    min-height: 150px;
  }

  .lp-module-list article {
    grid-template-columns: 1fr;
    gap: 13px;
  }

  .lp-module-list ul {
    grid-column: auto;
    margin-top: 8px;
  }

  .lp-day-flow,
  .lp-compare,
  .lp-guides {
    padding-right: 16px;
    padding-left: 16px;
  }

  .lp-day-flow li,
  .lp-build-process li {
    min-height: auto;
  }

  .lp-day-flow li span,
  .lp-build-process li span {
    margin-bottom: 26px;
  }

  .lp-role-grid article {
    min-height: auto;
  }

  .lp-table {
    overflow-x: auto;
  }

  .lp-table > div {
    min-width: 650px;
  }

  .lp-proof-grid figure {
    --proof-preview-height: 420px;
  }

  .lp-pricing {
    padding: 66px 20px;
  }

  .lp-pricing .currency-toggle {
    width: 100%;
    min-width: 0;
  }

  .lp-price-grid article {
    min-height: 555px;
  }

  .lp-final {
    padding: 68px 20px;
  }
}

@media (prefers-reduced-motion: reduce) {
  .lp-role-panel.is-active,
  .lp-btn,
  .lp-proof-grid img {
    animation: none;
    transition: none;
  }
}
