:root {
  --bg: #7c6597;
  --bg-deep: #5e4b76;
  --paper: #f7f4ef;
  --paper-strong: #fdfbf8;
  --ink: #252427;
  --muted: #62606d;
  --line: rgba(107, 91, 129, 0.18);
  --line-strong: rgba(111, 88, 140, 0.34);
  --purple: #8a6eb7;
  --purple-deep: #6f548f;
  --lilac: #c9b7ea;
  --pink: #f278b7;
  --blue: #7dd4f5;
  --gold: #f5bc63;
  --gold-deep: #de9d33;
  --shadow-soft: 0 22px 50px rgba(58, 45, 75, 0.16);
  --shadow-card: 0 18px 36px rgba(67, 52, 86, 0.12);
  --radius-xl: 34px;
  --radius-lg: 28px;
  --radius-md: 22px;
  --radius-sm: 16px;
  --heading-font: "Arial Rounded MT Bold", "Trebuchet MS", "Segoe UI", sans-serif;
  --body-font: "Trebuchet MS", "Segoe UI", Arial, sans-serif;
}

*,
*::before,
*::after {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  min-width: 320px;
  color: var(--ink);
  font-family: var(--body-font);
  background: linear-gradient(180deg, #fcf9f3 0%, #f4ede3 100%);
}

body::before,
body::after {
  display: none;
}

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

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

p,
li,
summary {
  font-size: 1rem;
  line-height: 1.6;
}

.skip-link {
  position: absolute;
  top: -3rem;
  left: 1rem;
  z-index: 100;
  padding: 0.75rem 1rem;
  border-radius: 999px;
  background: var(--ink);
  color: #fff;
}

.skip-link:focus {
  top: 1rem;
}

.page-shell {
  width: min(1180px, calc(100% - 2rem));
  margin: 0 auto;
  padding: 1.35rem 0 2.8rem;
}

.masthead {
  padding-bottom: 1rem;
  border-bottom: 1px solid rgba(110, 98, 126, 0.12);
}

.masthead-row {
  display: grid;
  grid-template-columns: 1fr auto 1fr;
  align-items: center;
  gap: 1rem;
}

.nav-cluster {
  display: flex;
  align-items: center;
  gap: 1.35rem;
  font-size: 0.95rem;
}

.nav-cluster-right {
  justify-content: flex-end;
}

.nav-cluster a {
  color: var(--ink);
}

.nav-cluster a:hover,
.nav-cluster a:focus-visible,
.footer-links a:hover,
.footer-links a:focus-visible {
  color: var(--purple-deep);
}

.brand {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.7rem;
  font-family: var(--heading-font);
  font-size: 1.32rem;
  font-weight: 700;
}

.brand-mark {
  width: 2rem;
  height: 2rem;
  object-fit: contain;
  flex-shrink: 0;
}

.contact-pill {
  display: inline-flex;
  align-items: center;
  gap: 0.35rem;
  padding: 0.5rem 0.9rem;
  border: 1px solid rgba(222, 157, 51, 0.44);
  border-radius: 999px;
  background: #fffdf6;
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.8);
  position: relative;
  overflow: hidden;
  isolation: isolate;
  transition:
    border-color 220ms ease,
    box-shadow 220ms ease,
    color 220ms ease,
    background-color 220ms ease,
    background-image 220ms ease;
}

.contact-pill::before {
  content: "";
  position: absolute;
  inset: 1px;
  z-index: -1;
  border-radius: inherit;
  background: linear-gradient(135deg, rgba(255, 255, 255, 0.92), rgba(245, 188, 99, 0.28));
  opacity: 0;
  transition: opacity 220ms ease;
}

.contact-pill span {
  transition: color 220ms ease;
}

.contact-pill:hover,
.contact-pill:focus-visible {
  border-color: rgba(222, 157, 51, 0.68);
  box-shadow:
    0 0 0 1px rgba(255, 255, 255, 0.84) inset,
    0 10px 24px rgba(222, 157, 51, 0.12),
    0 1px 0 rgba(255, 255, 255, 0.96) inset;
  background-image: linear-gradient(180deg, rgba(255, 255, 255, 0.96), rgba(249, 239, 217, 0.92));
}

.contact-pill:hover::before,
.contact-pill:focus-visible::before {
  opacity: 1;
}

.contact-pill:hover span,
.contact-pill:focus-visible span {
  color: var(--ink);
}

main {
  padding-top: 1.8rem;
}

.hero,
.panel {
  position: relative;
  overflow: hidden;
}

.hero {
  display: flex;
  align-items: center;
  min-height: clamp(34rem, 86vh, 48rem);
  padding: 3rem 0 4rem;
  border-bottom: 1px solid rgba(110, 98, 126, 0.12);
}

.hero-copy {
  position: relative;
  z-index: 1;
  max-width: 920px;
  margin: 0 auto;
  text-align: center;
}

.panel-intro,
.panel-head,
.package-grid,
.sample-band,
.close-hero,
.close-path,
.close-tail-band,
.panel-footer {
  position: relative;
  z-index: 1;
}

.section-kicker,
.card-kicker {
  margin: 0;
  font-size: 0.92rem;
  color: var(--purple-deep);
}

.section-kicker {
  margin-bottom: 1rem;
}

h1,
h2,
h3 {
  margin: 0;
  font-family: var(--heading-font);
  font-weight: 700;
  letter-spacing: -0.04em;
}

h1 {
  font-size: clamp(3rem, 7vw, 5.8rem);
  line-height: 0.97;
}

h2 {
  font-size: clamp(2rem, 4vw, 3.45rem);
  line-height: 1.08;
}

h3 {
  font-size: 1.65rem;
  line-height: 1.1;
}

.headline-line {
  display: block;
}

.hero-heading {
  display: block;
  margin: 0 auto;
}

.hero-title .headline-line {
  white-space: nowrap;
}

.close-title .headline-line {
  text-wrap: balance;
}

[data-reveal-text] .reveal-word {
  display: inline-block;
  opacity: 0;
  filter: blur(6px);
  transform: translateY(1.05rem);
  transition:
    opacity 520ms cubic-bezier(0.22, 1, 0.36, 1),
    transform 620ms cubic-bezier(0.22, 1, 0.36, 1),
    filter 520ms ease;
  transition-delay: calc(var(--word-index, 0) * 42ms);
  will-change: opacity, transform, filter;
}

[data-reveal-text].is-visible .reveal-word {
  opacity: 1;
  filter: blur(0);
  transform: translateY(0);
}

[data-reveal-block] {
  opacity: 0;
  transform: translateY(1.7rem);
  transition:
    opacity 620ms cubic-bezier(0.22, 1, 0.36, 1),
    transform 720ms cubic-bezier(0.22, 1, 0.36, 1);
  will-change: opacity, transform;
}

[data-reveal-block].is-visible {
  opacity: 1;
  transform: translateY(0);
}

.hero-badge {
  position: absolute;
  top: clamp(7rem, 17vw, 11rem);
  left: calc(50% + clamp(11rem, 16vw, 15.5rem));
  width: clamp(6.2rem, 11vw, 8.3rem);
  transform: translateY(-50%);
  filter: drop-shadow(0 16px 28px rgba(67, 52, 86, 0.16));
  pointer-events: none;
}

.hero-proof {
  margin: 1.35rem auto 0;
  color: var(--muted);
  max-width: 38rem;
  font-size: clamp(1.3rem, 2.2vw, 1.85rem);
  font-weight: 700;
  line-height: 1.08;
  letter-spacing: -0.03em;
}

.hero-lower {
  display: flex;
  justify-content: center;
  margin-top: 2rem;
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 0.8rem;
}

.cta,
.card-cta {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.45rem;
  min-height: 3rem;
  padding: 0.78rem 1.15rem;
  border-radius: 999px;
  font-weight: 700;
  position: relative;
  overflow: hidden;
  isolation: isolate;
  transition:
    box-shadow 220ms ease,
    border-color 220ms ease,
    color 220ms ease,
    background-color 220ms ease,
    background-image 220ms ease;
}

.cta::before,
.card-cta::before,
.close-cta::before,
.support-link::before {
  content: "";
  position: absolute;
  inset: 1px;
  z-index: -1;
  border-radius: inherit;
  opacity: 0;
  transition: opacity 220ms ease;
}

.cta-primary,
.card-cta {
  border: 1px solid rgba(222, 157, 51, 0.46);
  background: #fffdf6;
  box-shadow: 0 10px 20px rgba(222, 157, 51, 0.12);
}

.cta-primary::before,
.card-cta::before,
.close-cta::before,
.support-link::before {
  background: linear-gradient(135deg, rgba(255, 255, 255, 0.94), rgba(245, 188, 99, 0.26));
}

.cta-secondary {
  border: 1px solid rgba(111, 84, 143, 0.18);
  background: rgba(255, 255, 255, 0.7);
}

.cta-secondary::before {
  background: linear-gradient(135deg, rgba(255, 255, 255, 0.92), rgba(201, 183, 234, 0.34));
}

.cta span,
.contact-pill span {
  transition: color 220ms ease;
}

.cta:hover,
.cta:focus-visible,
.card-cta:hover,
.card-cta:focus-visible,
.close-cta:hover,
.close-cta:focus-visible,
.support-link:hover,
.support-link:focus-visible {
  color: var(--ink);
}

.cta:hover::before,
.cta:focus-visible::before,
.card-cta:hover::before,
.card-cta:focus-visible::before,
.close-cta:hover::before,
.close-cta:focus-visible::before,
.support-link:hover::before,
.support-link:focus-visible::before {
  opacity: 1;
}

.cta-primary:hover,
.cta-primary:focus-visible,
.card-cta:hover,
.card-cta:focus-visible,
.close-cta:hover,
.close-cta:focus-visible,
.support-link:hover,
.support-link:focus-visible {
  border-color: rgba(222, 157, 51, 0.7);
  box-shadow:
    0 0 0 1px rgba(255, 255, 255, 0.82) inset,
    0 12px 28px rgba(222, 157, 51, 0.12),
    0 1px 0 rgba(255, 255, 255, 0.94) inset;
  background-image: linear-gradient(180deg, rgba(255, 255, 255, 0.98), rgba(249, 239, 217, 0.94));
}

.cta-secondary:hover,
.cta-secondary:focus-visible {
  border-color: rgba(111, 84, 143, 0.34);
  box-shadow:
    0 0 0 1px rgba(255, 255, 255, 0.78) inset,
    0 12px 26px rgba(111, 84, 143, 0.08),
    0 1px 0 rgba(255, 255, 255, 0.92) inset;
  background-image: linear-gradient(180deg, rgba(255, 255, 255, 0.96), rgba(235, 229, 246, 0.92));
}

.cta:hover span,
.cta:focus-visible span {
  color: currentcolor;
}

.sparkle {
  position: absolute;
  z-index: 0;
  width: 1.9rem;
  opacity: 0.7;
  pointer-events: none;
}

.sparkle-a {
  top: 5.2rem;
  left: 1rem;
}

.sparkle-b {
  top: 7.9rem;
  right: 1.4rem;
  width: 1.75rem;
}

.sparkle-c {
  right: 3.2rem;
  bottom: 2.2rem;
  width: 1.65rem;
}

.sparkle-d {
  top: 1rem;
  left: 1rem;
  width: 1.85rem;
}

.sparkle-e {
  right: 1.25rem;
  bottom: 1.25rem;
  width: 1.75rem;
}

.focus-stage {
  position: relative;
  height: 230vh;
  margin-top: 2.6rem;
}

.focus-frame {
  position: sticky;
  top: 7vh;
  display: flex;
  align-items: center;
  min-height: 86vh;
}

.focus-panel {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 100%;
  min-height: 82vh;
  padding: clamp(1.8rem, 4vw, 3.2rem);
  border-radius: calc(var(--radius-xl) + 10px);
  background:
    radial-gradient(circle at center, rgba(245, 188, 99, 0.12), rgba(245, 188, 99, 0) 38%);
}

.focus-title {
  display: grid;
  justify-items: center;
  gap: clamp(0.7rem, 1.8vw, 1.15rem);
  margin: 0;
  text-align: center;
  font-size: clamp(3.5rem, 8.8vw, 7.4rem);
  line-height: 0.92;
  letter-spacing: -0.07em;
}

.focus-line {
  display: inline-flex;
  align-items: baseline;
  gap: 0.18em;
  transition:
    color 220ms ease;
}

.focus-token {
  color: rgba(37, 36, 39, 0.22);
  transition: color 220ms ease;
}

.focus-token.is-active {
  color: var(--ink);
}

.story-row {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 1.4rem;
}

.story-row-stats {
  position: relative;
  width: min(96%, 1108px);
  margin: 3.4rem auto 0;
  padding: 0 1rem 1.8rem;
}

.story-row-stats::before {
  content: "";
  position: absolute;
  inset: 1.6rem 8% -0.6rem;
  z-index: -1;
  border-radius: 42px;
  background: radial-gradient(circle at center, rgba(201, 183, 234, 0.16), rgba(201, 183, 234, 0) 68%);
  filter: blur(14px);
}

.story-panel {
  position: relative;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  min-height: clamp(16rem, 38vh, 21rem);
  padding: clamp(1.6rem, 3.5vw, 2.7rem);
  border: 1px solid var(--line);
  border-radius: var(--radius-xl);
  background: linear-gradient(180deg, rgba(252, 248, 241, 0.98), rgba(243, 235, 225, 0.94));
  box-shadow: var(--shadow-card);
  overflow: hidden;
}

.story-stat-panel {
  justify-content: space-between;
  background: linear-gradient(180deg, rgba(255, 255, 255, 0.92), rgba(244, 237, 227, 0.92));
}

.story-stat-panel-accent {
  background: linear-gradient(180deg, rgba(246, 240, 252, 0.96), rgba(232, 220, 246, 0.9));
}

.story-panel strong {
  font-family: var(--heading-font);
  font-size: clamp(3.2rem, 8vw, 5.8rem);
  line-height: 0.9;
  letter-spacing: -0.06em;
}

.story-panel p {
  max-width: 12ch;
  margin: 1rem 0 0;
  font-size: clamp(1.3rem, 2.1vw, 1.8rem);
  font-weight: 700;
  line-height: 1.02;
  letter-spacing: -0.04em;
}

.panel-services {
  width: min(90%, 1068px);
  min-height: 29rem;
  margin-top: 6.2rem;
  margin-left: 0;
  margin-right: auto;
  padding: 3rem 2.3rem 3.15rem;
  border-radius: 40px;
  border-color: rgba(111, 84, 143, 0.16);
  background:
    radial-gradient(circle at 84% 28%, rgba(201, 183, 234, 0.18), rgba(201, 183, 234, 0) 17rem),
    linear-gradient(135deg, rgba(249, 246, 241, 0.98), rgba(252, 250, 246, 0.96));
  box-shadow: 0 26px 54px rgba(72, 57, 91, 0.08);
}

.panel-services::before {
  content: "";
  position: absolute;
  width: 16rem;
  height: 16rem;
  left: -4.8rem;
  bottom: -8.6rem;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(245, 188, 99, 0.12), rgba(245, 188, 99, 0) 68%);
  pointer-events: none;
}

.services-copy {
  display: grid;
  gap: 0.85rem;
  align-content: start;
}

.services-kicker,
.sample-kicker {
  margin: 0;
  color: var(--purple-deep);
  font-size: 0.92rem;
  font-weight: 700;
  letter-spacing: 0.05em;
  text-transform: uppercase;
}

.services-copy h2 {
  max-width: 8ch;
  font-size: clamp(2.2rem, 3.2vw, 3.4rem);
  line-height: 0.95;
}

.services-bar {
  width: min(8rem, 100%);
  height: 0.45rem;
  border-radius: 999px;
  background: linear-gradient(90deg, rgba(245, 188, 99, 0.92), rgba(201, 183, 234, 0.44));
}

.services-layout {
  display: grid;
  grid-template-columns: minmax(0, 0.95fr) minmax(0, 1.35fr);
  gap: 3rem;
  align-items: start;
}

.service-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 0.95rem;
  margin-top: 0;
  padding: 1.15rem;
  border-radius: 32px;
  background: linear-gradient(180deg, rgba(255, 255, 255, 0.42), rgba(255, 255, 255, 0.16));
}

.service-tile {
  display: flex;
  flex-direction: column;
  margin: 0;
  padding: 0.82rem;
  border: 1px solid rgba(111, 84, 143, 0.14);
  border-radius: var(--radius-md);
  background: linear-gradient(180deg, rgba(255, 255, 255, 0.9), rgba(245, 238, 230, 0.92));
  box-shadow: var(--shadow-card);
}

.service-tile img {
  width: 100%;
  aspect-ratio: 1 / 1;
  border-radius: 1.35rem;
  object-fit: cover;
}

.service-tile figcaption {
  margin-top: 0.75rem;
  text-align: center;
  font-size: clamp(0.96rem, 1.15vw, 1.12rem);
  font-weight: 700;
  letter-spacing: -0.03em;
  text-transform: none;
}

.panel {
  margin-top: 2.2rem;
  padding: 2rem;
  border: 1px solid var(--line);
  border-radius: var(--radius-xl);
  background: rgba(249, 246, 241, 0.92);
  box-shadow: 0 10px 30px rgba(91, 76, 110, 0.06);
}

.panel-sample {
  width: min(80%, 940px);
  min-height: 15rem;
  margin-top: 6rem;
  margin-left: auto;
  padding: 2.3rem 2.15rem;
  border-radius: 36px 44px 36px 36px;
  background: linear-gradient(135deg, rgba(255, 249, 238, 0.98), rgba(248, 235, 212, 0.92));
  border-color: rgba(222, 157, 51, 0.22);
  box-shadow: 0 22px 46px rgba(131, 101, 61, 0.08);
}

.panel-sample::before {
  content: "";
  position: absolute;
  width: 12rem;
  height: 12rem;
  right: -3rem;
  top: 50%;
  transform: translateY(-50%);
  border-radius: 50%;
  background: radial-gradient(circle, rgba(255, 255, 255, 0.46), rgba(255, 255, 255, 0) 70%);
  pointer-events: none;
}

.panel-packages {
  width: min(94%, 1098px);
  min-height: 35rem;
  margin-top: 6.6rem;
  margin-left: auto;
  padding: 2.85rem 2.1rem 2.55rem;
  border-radius: 42px;
  border-color: rgba(111, 84, 143, 0.18);
  background:
    radial-gradient(circle at 86% 14%, rgba(218, 207, 239, 0.14), rgba(218, 207, 239, 0) 22rem),
    linear-gradient(180deg, rgba(249, 246, 252, 0.98), rgba(251, 248, 242, 0.97) 36%, rgba(248, 241, 233, 0.95));
  box-shadow: 0 28px 56px rgba(84, 65, 109, 0.08);
}

.panel-head {
  display: grid;
  grid-template-columns: 1fr auto;
  gap: 1.5rem;
  align-items: start;
}

.panel-head p {
  max-width: 16rem;
  margin: 0;
  color: var(--ink);
  font-size: clamp(1.35rem, 2vw, 1.7rem);
  font-weight: 700;
  line-height: 1.02;
  letter-spacing: -0.04em;
  text-align: right;
}

.panel-head-single {
  grid-template-columns: 1fr;
}

.panel-head-single h2 {
  max-width: 14ch;
  font-size: clamp(2rem, 3.2vw, 3rem);
}

.package-head h2 {
  max-width: 8ch;
}

.sample-band {
  display: grid;
  grid-template-columns: 1fr auto;
  gap: 2.4rem;
  align-items: center;
  min-height: 10.5rem;
}

.sample-copy {
  display: grid;
  grid-template-columns: auto 1fr;
  gap: 1rem;
  align-items: center;
}

.sample-emblem {
  width: clamp(4.6rem, 8vw, 6rem);
  height: clamp(4.6rem, 8vw, 6rem);
  flex-shrink: 0;
}

.sample-copy h2 {
  max-width: 13ch;
  font-size: clamp(1.85rem, 2.8vw, 2.8rem);
  line-height: 0.96;
}

.package-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 1.1rem;
  margin-top: 2.6rem;
}

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

.package-card {
  display: flex;
  flex-direction: column;
  gap: 1.05rem;
  padding: 1.45rem;
  border: 2px solid var(--line-strong);
  border-radius: 28px;
  background:
    radial-gradient(circle at 88% 10%, rgba(245, 188, 99, 0.18), rgba(245, 188, 99, 0) 7rem),
    linear-gradient(180deg, rgba(255, 255, 255, 0.94), rgba(249, 244, 237, 0.98));
  box-shadow: 0 18px 34px rgba(67, 52, 86, 0.1);
  overflow: hidden;
}

.package-card-top {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  gap: 0.8rem;
}

.card-plan {
  display: grid;
  gap: 0.25rem;
}

.card-kicker {
  color: var(--muted);
  font-weight: 400;
}

.card-window {
  margin: 0;
  color: var(--muted);
  font-size: 0.95rem;
  font-weight: 400;
  letter-spacing: 0;
}

.card-emblem-shell {
  display: grid;
  place-items: center;
  width: 4.15rem;
  height: 4.15rem;
  flex-shrink: 0;
  border-radius: 1.3rem;
  background: linear-gradient(180deg, rgba(255, 246, 228, 0.98), rgba(244, 210, 140, 0.98));
  border: 1px solid rgba(222, 176, 91, 0.5);
  box-shadow:
    0 12px 24px rgba(67, 52, 86, 0.1),
    0 1px 0 rgba(255, 255, 255, 0.78) inset;
}

.card-emblem {
  width: 2.3rem;
  height: 2.3rem;
  display: block;
}

.card-price-row {
  display: flex;
  align-items: flex-start;
  justify-content: flex-start;
  gap: 0.8rem;
}

.card-price-row h3 {
  margin: 0;
  font-size: clamp(2.5rem, 4vw, 3.6rem);
  line-height: 0.92;
  color: var(--ink);
}

.card-summary {
  margin: 0;
  color: var(--ink);
  max-width: none;
  font-size: 1rem;
  font-weight: 400;
  line-height: 1.45;
  letter-spacing: 0;
}

.card-benefits {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 0.45rem 1rem;
  margin: 0;
  padding: 0;
  list-style: none;
}

.card-benefits li {
  position: relative;
  padding-left: 0.95rem;
  font-size: 0.98rem;
  font-weight: 400;
  line-height: 1.45;
  color: var(--muted);
}

.card-benefits li::before {
  content: "";
  position: absolute;
  left: 0;
  top: 0.62rem;
  width: 0.3rem;
  height: 0.3rem;
  border-radius: 50%;
  background: currentcolor;
}

.package-card .card-cta {
  align-self: stretch;
  margin-top: auto;
  justify-content: center;
  min-height: 3.2rem;
}

.accent-mark {
  box-shadow: inset 0 -0.42em 0 rgba(245, 188, 99, 0.75);
}

.panel-close {
  margin-top: 6.4rem;
  padding: 2.9rem 2.35rem 3.3rem;
  background:
    linear-gradient(180deg, rgba(250, 246, 239, 0.96), rgba(244, 236, 225, 0.92));
}

.close-hero {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(17rem, 21rem);
  align-items: start;
  justify-content: space-between;
  gap: 2.35rem;
}

.close-title {
  max-width: 8.7ch;
}

.close-hero-side {
  display: grid;
  gap: 1rem;
  justify-items: stretch;
}

.close-hero-visual {
  margin: 0;
  padding: 1rem;
  border: 1px solid rgba(111, 84, 143, 0.12);
  border-radius: var(--radius-lg);
  background: linear-gradient(180deg, rgba(255, 255, 255, 0.88), rgba(245, 236, 224, 0.94));
  box-shadow: var(--shadow-card);
}

.close-hero-visual img {
  width: 100%;
}

.close-cta {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 3.2rem;
  padding: 0.85rem 1.2rem;
  border-radius: 999px;
  border: 1px solid rgba(222, 157, 51, 0.46);
  background: #fffdf6;
  box-shadow: 0 10px 20px rgba(222, 157, 51, 0.12);
  font-weight: 700;
  white-space: nowrap;
  position: relative;
  overflow: hidden;
  isolation: isolate;
  transition:
    border-color 220ms ease,
    box-shadow 220ms ease,
    background-color 220ms ease,
    background-image 220ms ease,
    color 220ms ease;
}

.close-path {
  display: grid;
  gap: 1.4rem;
  margin-top: 2.9rem;
}

.close-step {
  display: grid;
  grid-template-columns: auto 1fr;
  gap: 1.1rem;
  align-items: center;
  width: min(100%, 67rem);
  padding: 1.15rem 1.35rem;
  border: 1px solid rgba(111, 84, 143, 0.12);
  border-radius: 30px;
  background: linear-gradient(180deg, rgba(255, 255, 255, 0.88), rgba(243, 235, 226, 0.94));
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.72);
  justify-self: start;
}

.close-step-shift {
  width: min(100%, 63rem);
  margin-left: 2.8rem;
}

.close-step-accent {
  width: min(100%, 59rem);
  margin-left: 5.4rem;
  background: linear-gradient(180deg, rgba(249, 240, 253, 0.96), rgba(235, 222, 246, 0.9));
}

.close-step-art {
  width: 4.1rem;
  height: 4.1rem;
  flex-shrink: 0;
}

.close-step-copy {
  display: grid;
  gap: 0.16rem;
}

.close-step-index {
  display: inline-flex;
  align-items: center;
  justify-content: flex-start;
  width: auto;
  height: auto;
  border-radius: 0;
  background: none;
  color: var(--purple-deep);
  font-size: 0.84rem;
  font-weight: 700;
  letter-spacing: 0.08em;
}

.close-step h3 {
  font-size: clamp(1.25rem, 1.7vw, 1.55rem);
  line-height: 1;
}

.close-step p {
  max-width: 19rem;
  margin: 0.18rem 0 0;
  color: var(--muted);
  font-size: 0.9rem;
  font-weight: 700;
  line-height: 1.1;
}

.close-tail-band {
  margin-top: 3.4rem;
  padding: 2.25rem 2.1rem 2.35rem;
  border: 1px solid rgba(111, 84, 143, 0.12);
  border-radius: 34px;
  background: linear-gradient(180deg, rgba(255, 255, 255, 0.86), rgba(245, 236, 224, 0.92));
  box-shadow:
    0 18px 36px rgba(67, 52, 86, 0.08),
    inset 0 1px 0 rgba(255, 255, 255, 0.82);
}

.close-tail-line {
  max-width: 15ch;
  margin: 0;
  font-size: clamp(2.15rem, 4vw, 3.5rem);
  font-weight: 700;
  line-height: 0.98;
  letter-spacing: -0.05em;
}

.close-meta {
  display: grid;
  gap: 1rem;
  width: min(100%, 31rem);
  margin-top: 2rem;
  margin-left: auto;
  padding: 1.2rem 1.2rem 1.05rem;
  border: 1px solid rgba(111, 84, 143, 0.12);
  border-radius: 30px;
  background: linear-gradient(180deg, rgba(255, 255, 255, 0.84), rgba(245, 237, 226, 0.9));
  box-shadow:
    0 16px 32px rgba(67, 52, 86, 0.08),
    inset 0 1px 0 rgba(255, 255, 255, 0.78);
}

.support-strip {
  display: grid;
  grid-template-columns: 1fr;
  gap: 0.8rem;
  align-items: center;
  margin-top: 0;
  padding-top: 0.9rem;
  border-top: 1px solid rgba(110, 98, 126, 0.1);
  color: var(--muted);
}

.support-copy {
  display: inline-flex;
  align-items: center;
  gap: 0.7rem;
}

.support-mark {
  width: 1.6rem;
  height: 1.6rem;
  object-fit: contain;
}

.support-strip p {
  margin: 0;
  font-size: 0.92rem;
  font-weight: 700;
}

.support-link {
  display: inline-flex;
  align-items: center;
  justify-content: flex-start;
  min-height: 2.6rem;
  width: fit-content;
  max-width: 100%;
  padding: 0.55rem 0.9rem;
  border-radius: 999px;
  background: #fff;
  border: 1px solid rgba(111, 84, 143, 0.16);
  font-weight: 700;
  position: relative;
  overflow: hidden;
  isolation: isolate;
  transition:
    border-color 220ms ease,
    box-shadow 220ms ease,
    background-color 220ms ease,
    background-image 220ms ease,
    color 220ms ease;
}

.panel-footer {
  display: grid;
  gap: 0.9rem;
  align-items: start;
  margin-top: 0;
  padding-top: 0;
  border-top: 0;
  color: var(--muted);
}

.footer-head {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
}

.footer-note {
  display: inline-flex;
  align-items: center;
  gap: 0.65rem;
  margin: 0;
}

.footer-note img {
  width: 1.15rem;
  height: 1.15rem;
  flex-shrink: 0;
}

.footer-year {
  margin: 0;
  font-size: 0.84rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: rgba(101, 88, 119, 0.72);
}

.footer-links {
  display: flex;
  flex-wrap: wrap;
  justify-content: flex-start;
  gap: 0.55rem;
}

.footer-links a {
  display: inline-flex;
  align-items: center;
  min-height: 2.1rem;
  padding: 0.45rem 0.75rem;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.72);
  border: 1px solid rgba(111, 84, 143, 0.12);
  font-size: 0.92rem;
  font-weight: 700;
  color: var(--muted);
}

@keyframes float-up {
  from {
    opacity: 0;
    transform: translateY(18px);
  }

  to {
    opacity: 1;
    transform: translateY(0);
  }
}

.hero,
.panel {
  animation: float-up 520ms ease both;
}

.panel-packages {
  animation-delay: 90ms;
}

.panel-close {
  animation-delay: 170ms;
}

@media (max-width: 1120px) {
  .story-row-stats {
    margin-top: 2.6rem;
    padding-bottom: 1.2rem;
  }

  .story-row-stats,
  .panel-services,
  .panel-sample,
  .panel-packages {
    width: 100%;
    margin-left: 0;
    margin-right: 0;
  }

  .panel-services,
  .panel-sample,
  .panel-packages {
    min-height: 0;
    margin-top: 4.6rem;
  }

  .panel-close {
    margin-top: 5rem;
    padding: 2.6rem 2rem 3rem;
  }

  .sample-band,
  .panel-head,
  .panel-footer,
  .close-hero,
  .services-layout {
    grid-template-columns: 1fr;
  }

  .hero-actions,
  .panel-footer {
    text-align: center;
    justify-content: center;
  }

  .story-row,
  .package-grid,
  .package-grid-duo {
    grid-template-columns: 1fr;
  }

  .panel-head p {
    max-width: none;
    text-align: left;
  }

  .story-panel {
    align-items: center;
    text-align: center;
  }

  .story-panel p,
  .close-tail-line,
  .close-title {
    max-width: none;
  }

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

  .sample-band {
    min-height: 0;
  }

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

  .close-tail-band {
    margin-top: 2.8rem;
    padding: 1.9rem 1.6rem 2rem;
  }

  .services-copy,
  .sample-copy {
    justify-items: center;
    text-align: center;
  }

  .close-hero {
    display: grid;
  }

  .close-hero-side {
    justify-items: center;
  }

  .close-hero-visual {
    width: min(100%, 22rem);
  }

  .close-step-shift,
  .close-step-accent {
    margin-left: 0;
  }

  .close-meta {
    width: min(100%, 34rem);
    justify-self: center;
  }

  .panel-footer {
    grid-template-columns: 1fr;
    justify-items: center;
    text-align: center;
  }

  .footer-head {
    width: 100%;
    flex-direction: column;
    align-items: center;
    gap: 0.45rem;
  }

  .footer-links {
    justify-content: center;
  }

  .support-strip {
    grid-template-columns: 1fr;
    justify-items: center;
    text-align: center;
  }

  .support-copy {
    justify-content: center;
  }

  .support-link {
    grid-column: auto;
  }
}

@media (max-width: 860px) {
  .page-shell {
    width: min(100% - 1rem, 1180px);
    margin: 0 auto;
    padding: 1rem 0 2rem;
  }

  .masthead-row {
    grid-template-columns: 1fr;
    justify-items: center;
  }

  .nav-cluster {
    flex-wrap: wrap;
    justify-content: center;
  }

  .hero {
    min-height: auto;
    padding: 2rem 0 3rem;
  }

  .focus-stage {
    height: 180vh;
  }

  .focus-frame {
    top: 5vh;
    min-height: 76vh;
  }

  .focus-panel {
    min-height: 70vh;
  }

  .hero-heading {
    display: block;
  }

  .hero-title .headline-line {
    white-space: normal;
  }

  .hero-badge {
    position: static;
    width: clamp(5.4rem, 24vw, 7rem);
    margin: 1rem auto 0;
    transform: none;
  }

  .story-panel,
  .close-step {
    min-height: 0;
  }

  .service-tile {
    padding: 1.1rem;
  }

  .close-step {
    grid-template-columns: 1fr;
    justify-items: center;
    text-align: center;
  }

  .close-step-copy {
    justify-items: center;
  }

  .sparkle-b,
  .sparkle-c {
    display: none;
  }
}

@media (max-width: 560px) {
  .service-grid {
    grid-template-columns: 1fr;
    padding: 0;
    background: none;
  }

  .card-benefits {
    grid-template-columns: 1fr;
  }

  .sample-copy {
    grid-template-columns: 1fr;
    justify-items: center;
    text-align: center;
  }

  .hero-actions,
  .footer-links {
    flex-direction: column;
  }

  .cta,
  .card-cta,
  .close-cta,
  .support-link,
  .contact-pill {
    width: 100%;
  }
}

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

  .focus-stage {
    height: auto;
  }

  .focus-frame {
    position: static;
    min-height: 0;
  }

  .focus-panel {
    min-height: 0;
  }

  .focus-line {
    color: inherit;
  }

  .focus-token {
    color: var(--ink);
  }

  [data-reveal-text] .reveal-word,
  [data-reveal-block] {
    opacity: 1;
    filter: none;
    transform: none;
    transition: none;
  }
}
