:root {
  --ink: #17142f;
  --deep: #111025;
  --violet: #342b65;
  --lilac: #8f83c7;
  --pearl: #f8f3e9;
  --cream: #eee4d2;
  --gold: #e8aa58;
  --gold-light: #ffd89c;
  --line: rgba(23, 20, 47, 0.15);
  --display: "Playfair Display", Georgia, serif;
  --sans: "Manrope", "DM Sans", sans-serif;
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
  margin: 0;
  background: var(--pearl);
  color: var(--ink);
  font-family: var(--sans);
  overflow-x: hidden;
}
body.halo-open { overflow: hidden; }
button, input, select, textarea { font: inherit; }
button, a { -webkit-tap-highlight-color: transparent; }
button { color: inherit; }
a { color: inherit; text-decoration: none; }

.skip-link {
  position: fixed; left: 1rem; top: -5rem; z-index: 200;
  background: white; padding: .8rem 1rem; border-radius: 999px;
}
.skip-link:focus { top: 1rem; }
.noise {
  position: fixed; inset: 0; pointer-events: none; z-index: 150; opacity: .035;
  background-image: radial-gradient(circle at 20% 30%, currentColor 0 .4px, transparent .6px), radial-gradient(circle at 70% 65%, currentColor 0 .35px, transparent .55px);
  background-size: 6px 7px, 9px 11px;
}
.cursor-glow {
  position: fixed; width: 25rem; height: 25rem; border-radius: 50%;
  background: radial-gradient(circle, rgba(255, 212, 150, .12), transparent 68%);
  transform: translate(-50%, -50%); pointer-events: none; z-index: 3;
}

.site-header {
  position: absolute; z-index: 20; top: 0; left: 0; right: 0;
  height: 6.6rem; display: flex; align-items: center; padding: 0 4.5vw;
  color: white; border-bottom: 1px solid rgba(255,255,255,.16);
}
.brand { display: inline-flex; align-items: center; gap: .8rem; font-weight: 700; letter-spacing: .16em; }
.brand-orbit { position: relative; width: 2.2rem; height: 2.2rem; border: 1px solid currentColor; border-radius: 50%; }
.brand-orbit::before, .brand-orbit::after {
  content: ""; position: absolute; border: 1px solid currentColor; border-radius: 50%;
  left: 50%; top: 50%; transform: translate(-50%, -50%) rotate(45deg);
}
.brand-orbit::before { width: 2.8rem; height: .65rem; opacity: .6; }
.brand-orbit::after { width: .65rem; height: 2.8rem; opacity: .35; }
.brand-orbit i { position: absolute; width: .35rem; height: .35rem; background: var(--gold-light); border-radius: 50%; top: -.15rem; left: 50%; }
.brand-name { font-size: .84rem; white-space: nowrap; }
.site-header nav { display: flex; gap: 2rem; margin-left: auto; margin-right: 2.5rem; }
.site-header nav a { font-size: .78rem; opacity: .75; transition: opacity .2s; }
.site-header nav a:hover { opacity: 1; }
.header-cta {
  display: flex; align-items: center; gap: .65rem; border: 1px solid rgba(255,255,255,.4);
  color: white; background: rgba(255,255,255,.08); padding: .8rem 1.1rem;
  border-radius: 999px; cursor: pointer; backdrop-filter: blur(12px);
}
.pulse-dot { width: .45rem; height: .45rem; background: var(--gold-light); border-radius: 50%; box-shadow: 0 0 0 .3rem rgba(255,216,156,.15); }

.hero { min-height: 100svh; position: relative; display: grid; align-items: center; color: white; background: var(--deep); overflow: hidden; }
.hero-image { position: absolute; inset: 0; width: 100%; height: 100%; object-fit: cover; object-position: 55% center; opacity: .83; transform: scale(1.025); animation: hero-breathe 18s ease-in-out infinite alternate; }
.hero-vignette { position: absolute; inset: 0; background: linear-gradient(90deg, rgba(11,10,31,.96) 0%, rgba(17,16,39,.75) 38%, rgba(17,16,39,.06) 72%), linear-gradient(0deg, rgba(11,10,31,.4), transparent 40%); }
.hero-aurora { position: absolute; inset: -20%; background: radial-gradient(circle at 30% 40%, rgba(119,86,176,.25), transparent 30%); filter: blur(30px); animation: drift 14s ease-in-out infinite alternate; }
.hero-content { position: relative; z-index: 2; width: min(46rem, 88vw); margin-left: 8vw; padding-top: 6rem; }
.eyebrow { display: flex; align-items: center; gap: .7rem; text-transform: uppercase; letter-spacing: .2em; font-size: .66rem; font-weight: 600; }
.eyebrow span { width: 2.4rem; height: 1px; background: var(--gold-light); }
h1, h2 { font-family: var(--display); font-weight: 500; margin: 0; line-height: .98; letter-spacing: -.045em; }
h1 { font-size: clamp(4rem, 7.4vw, 8.5rem); margin: 1.4rem 0 1.6rem; }
h1 em, h2 em { color: var(--gold-light); font-weight: 500; }
.hero-copy { color: rgba(255,255,255,.72); font-size: clamp(.95rem, 1.2vw, 1.1rem); line-height: 1.75; max-width: 36rem; }
.hero-actions { display: flex; align-items: center; gap: 1.8rem; margin-top: 2.2rem; }
.primary-action {
  position: relative; border: 0; background: var(--gold-light); color: var(--ink); border-radius: 999px;
  display: flex; align-items: center; gap: 2.8rem; padding: .55rem .55rem .55rem 1.4rem; cursor: pointer; font-weight: 600;
  box-shadow: 0 1rem 3rem rgba(232,170,88,.2); transition: transform .25s, box-shadow .25s;
}
.primary-action:hover { transform: translateY(-3px); box-shadow: 0 1.3rem 3.4rem rgba(232,170,88,.32); }
.primary-action b { display: grid; place-items: center; width: 2.5rem; height: 2.5rem; border-radius: 50%; background: var(--ink); color: white; font-weight: 400; }
.text-action { font-size: .8rem; border-bottom: 1px solid rgba(255,255,255,.4); padding-bottom: .35rem; }
.text-action span { margin-left: .55rem; }
.availability { display: flex; align-items: center; gap: .5rem; font-size: .68rem; opacity: .66; margin-top: 1.5rem; }
.availability i { width: .4rem; height: .4rem; background: #8be0b5; border-radius: 50%; }
.hero-signal { position: absolute; right: 4.5vw; bottom: 2.8rem; z-index: 2; display: flex; align-items: center; gap: .8rem; font-size: .55rem; letter-spacing: .17em; opacity: .75; }
.hero-signal i { width: 3.5rem; height: 1px; background: rgba(255,255,255,.5); }
.scroll-cue { position: absolute; z-index: 2; left: 2.5vw; bottom: 2.8rem; writing-mode: vertical-rl; font-size: .48rem; letter-spacing: .24em; opacity: .55; display: flex; align-items: center; gap: 1rem; }
.scroll-cue span { width: 1px; height: 3rem; background: white; }

.section-number { font-size: .58rem; letter-spacing: .2em; font-weight: 700; color: #7a7188; }
.section-number.light { color: rgba(255,255,255,.55); }
.manifesto { min-height: 42rem; padding: 9rem 8vw; display: grid; grid-template-columns: 1fr 3fr; align-items: start; background: var(--pearl); }
.manifesto-copy { position: relative; max-width: 64rem; }
.manifesto-copy > p { font-family: var(--display); font-size: clamp(2.4rem, 4.5vw, 5.4rem); line-height: 1.13; margin: 0; letter-spacing: -.035em; color: #504a60; }
.manifesto-copy strong { color: var(--ink); font-weight: 500; }
.manifesto-copy small { display: block; margin: 3rem 0 0 auto; max-width: 31rem; line-height: 1.8; color: #716b7b; font-size: .86rem; }
.floating-star { position: absolute; right: 8%; top: -2rem; color: var(--gold); animation: star-spin 9s linear infinite; }

.rituals { position: relative; min-height: 70rem; background: var(--deep); color: white; padding: 8rem 7vw 0; overflow: hidden; }
.rituals::before { content: ""; position: absolute; inset: 0; background: radial-gradient(circle at 68% 45%, rgba(113,87,175,.25), transparent 32%), radial-gradient(circle at 10% 90%, rgba(232,170,88,.11), transparent 28%); }
.rituals-intro { position: relative; z-index: 3; width: 34%; }
.rituals h2, .journey h2, .care h2, .final-call h2 { font-size: clamp(3.6rem, 6vw, 7rem); }
.rituals-intro > p:not(.section-number) { color: rgba(255,255,255,.58); line-height: 1.75; font-size: .85rem; max-width: 27rem; }
.line-action { border: 0; border-bottom: 1px solid rgba(255,255,255,.4); padding: 0 0 .45rem; background: none; color: white; cursor: pointer; margin-top: 1rem; font-size: .78rem; }
.line-action span { color: var(--gold-light); margin-left: 1rem; }
.service-orbit { position: absolute; right: 2vw; top: 3rem; width: 62vw; height: 60rem; }
.orbit-rings, .orbit-rings i { position: absolute; inset: 50% auto auto 50%; border: 1px solid rgba(255,255,255,.14); border-radius: 50%; transform: translate(-50%, -50%); }
.orbit-rings { width: 42rem; height: 42rem; }
.orbit-rings i:nth-child(1) { width: 28rem; height: 28rem; }
.orbit-rings i:nth-child(2) { width: 54rem; height: 54rem; }
.orbit-rings i:nth-child(3) { width: 10rem; height: 10rem; border-style: dashed; animation: star-spin 18s linear infinite; }
.orbit-core { position: absolute; left: 50%; top: 50%; transform: translate(-50%, -50%); width: 14rem; height: 14rem; border-radius: 50%; background: radial-gradient(circle at 40% 35%, #7d6db4, #332c68 50%, #16132d 72%); box-shadow: 0 0 5rem rgba(143,131,199,.35), inset -1rem -1rem 3rem rgba(0,0,0,.28); display: grid; place-content: center; text-align: center; }
.orbit-core::after { content: ""; position: absolute; inset: -.8rem; border: 1px solid rgba(255,216,156,.36); border-radius: 50%; clip-path: inset(0 44% 0 0); animation: star-spin 12s linear infinite; }
.orbit-core span, .orbit-core small { font-size: .5rem; letter-spacing: .18em; opacity: .65; }
.orbit-core strong { font-family: var(--display); font-size: 3.4rem; font-weight: 500; color: var(--gold-light); }
.service-node { position: absolute; width: 9.5rem; height: 9.5rem; border-radius: 50%; border: 1px solid rgba(255,255,255,.18); background: rgba(255,255,255,.04); color: white; backdrop-filter: blur(10px); display: flex; flex-direction: column; justify-content: center; align-items: center; cursor: pointer; transition: .3s; }
.service-node:hover { transform: scale(1.08); background: rgba(255,216,156,.12); border-color: var(--gold-light); }
.service-node span { font-size: .48rem; opacity: .5; margin-bottom: .6rem; }
.service-node strong { font-family: var(--display); font-weight: 500; font-size: 1.15rem; }
.service-node small { color: var(--gold-light); margin-top: .3rem; font-size: .68rem; }
.node-one { left: 8%; top: 18%; }
.node-two { right: 5%; top: 30%; }
.node-three { left: 10%; bottom: 12%; }
.node-four { right: 16%; bottom: 8%; }
.addons-ribbon { position: absolute; bottom: 0; left: 0; right: 0; height: 8rem; border-top: 1px solid rgba(255,255,255,.14); display: grid; grid-template-columns: 1.4fr repeat(3, 1fr); align-items: center; padding: 0 7vw; gap: 2rem; background: rgba(8,7,25,.38); backdrop-filter: blur(8px); }
.addons-ribbon > span { color: var(--gold-light); font-size: .55rem; letter-spacing: .16em; }
.addons-ribbon div { display: flex; align-items: center; justify-content: space-between; border-left: 1px solid rgba(255,255,255,.15); padding-left: 1.4rem; }
.addons-ribbon b { font-family: var(--display); font-size: 1rem; font-weight: 500; }
.addons-ribbon i { font-style: normal; font-size: .7rem; color: var(--gold-light); }

.journey { padding: 9rem 8vw; min-height: 58rem; background: #eee8de; }
.journey-heading { display: flex; align-items: end; justify-content: space-between; margin-bottom: 6rem; }
.journey-heading .section-number { align-self: start; }
.journey-line { list-style: none; padding: 0; margin: 0 0 0 20%; border-top: 1px solid var(--line); display: grid; grid-template-columns: repeat(4, 1fr); }
.journey-line li { position: relative; padding: 2.5rem 2rem 0 0; min-height: 15rem; }
.journey-line li::before { content: ""; position: absolute; top: -.38rem; left: 0; width: .7rem; height: .7rem; border-radius: 50%; background: var(--gold); box-shadow: 0 0 0 .4rem rgba(232,170,88,.16); }
.journey-line > li > span { font-size: .56rem; letter-spacing: .15em; color: #938b9a; }
.journey-line strong { display: block; font-family: var(--display); font-size: 1.35rem; font-weight: 500; margin: 1.8rem 0 .8rem; }
.journey-line p { font-size: .76rem; line-height: 1.7; color: #736c78; max-width: 12rem; }

.care { position: relative; min-height: 52rem; background: #26204b; color: white; padding: 8rem; overflow: hidden; display: grid; grid-template-columns: 1.5fr 1fr; align-items: center; }
.care-content { position: relative; z-index: 2; max-width: 46rem; }
.care-content > p:not(.section-number) { color: rgba(255,255,255,.64); line-height: 1.8; max-width: 36rem; }
.care-content ul { display: grid; grid-template-columns: 1fr 1fr; list-style: none; padding: 0; margin: 3rem 0 0; gap: 1rem 2rem; font-size: .78rem; }
.care-content li span { color: var(--gold-light); margin-right: .6rem; }
.care-quote { position: relative; z-index: 2; justify-self: end; width: 19rem; height: 19rem; border: 1px solid rgba(255,255,255,.18); border-radius: 50%; display: grid; place-content: center; text-align: center; }
.care-quote::before, .care-quote::after { content: ""; position: absolute; border: 1px solid rgba(255,216,156,.18); border-radius: 50%; inset: -1.5rem; }
.care-quote::after { inset: 1.4rem; }
.care-quote span { font-size: .5rem; letter-spacing: .2em; color: var(--gold-light); }
.care-quote p { font-family: var(--display); font-size: 1.45rem; line-height: 1.4; }
.care-halo { position: absolute; right: -10rem; top: 50%; width: 50rem; height: 50rem; transform: translateY(-50%); border-radius: 50%; background: radial-gradient(circle, rgba(182,155,232,.26), transparent 62%); }
.care-halo i { position: absolute; inset: 10%; border: 1px solid rgba(255,255,255,.09); border-radius: 50%; }
.care-halo i:nth-child(2) { inset: 22%; }
.care-halo i:nth-child(3) { inset: 34%; }

.final-call { min-height: 42rem; position: relative; padding: 7rem 2rem; display: flex; flex-direction: column; align-items: center; justify-content: center; text-align: center; background: var(--deep); color: white; overflow: hidden; }
.final-glow { position: absolute; width: 45rem; height: 45rem; border-radius: 50%; background: radial-gradient(circle, rgba(121,92,177,.45), transparent 64%); }
.final-call > *:not(.final-glow) { position: relative; }
.final-call .eyebrow { margin-bottom: 1.4rem; }
.final-call h2 { max-width: 64rem; }
.light-button { margin-top: 2.6rem; }

footer { background: #0c0b1b; color: white; padding: 4rem 6vw 2rem; display: grid; grid-template-columns: 1.2fr 1fr 1fr; gap: 3rem; }
.footer-brand { align-self: start; }
.footer-contact, .footer-links { display: flex; flex-direction: column; gap: .7rem; font-size: .72rem; color: rgba(255,255,255,.58); }
.footer-contact a { color: var(--gold-light); font-family: var(--display); font-size: 1.6rem; }
.footer-links a { color: white; }
.footer-note { grid-column: 1 / -1; border-top: 1px solid rgba(255,255,255,.1); padding-top: 1.5rem; margin: 1rem 0 0; font-size: .58rem; opacity: .4; }

.halo-shell { position: fixed; inset: 0; z-index: 180; }
.halo-backdrop { position: absolute; inset: 0; border: 0; background: rgba(8,7,24,.72); backdrop-filter: blur(12px); cursor: default; }
.halo-panel { position: absolute; top: 0; right: 0; bottom: 0; width: min(34rem, 100%); background: #f8f5ef; box-shadow: -2rem 0 7rem rgba(0,0,0,.32); display: flex; flex-direction: column; animation: panel-in .4s cubic-bezier(.2,.75,.25,1); }
.halo-header { display: flex; align-items: center; justify-content: space-between; padding: 1.4rem 1.5rem; border-bottom: 1px solid var(--line); }
.halo-identity { display: flex; align-items: center; gap: .8rem; }
.halo-avatar { width: 2.8rem; height: 2.8rem; border-radius: 50%; display: grid; place-items: center; color: var(--gold-light); background: radial-gradient(circle at 35% 30%, #806cb5, #211b49 65%); box-shadow: 0 0 1.2rem rgba(74,55,125,.3); }
.halo-identity strong { display: block; font-family: var(--display); font-size: 1.1rem; }
.halo-identity > div:last-child > span { display: flex; align-items: center; gap: .35rem; font-size: .58rem; color: #756f7e; }
.halo-identity i { width: .35rem; height: .35rem; border-radius: 50%; background: #5bc98e; }
.icon-button { width: 2.4rem; height: 2.4rem; border-radius: 50%; border: 1px solid var(--line); background: none; font-size: 1.4rem; cursor: pointer; }
.halo-progress { height: 2px; background: #e2ddd5; }
.halo-progress span { display: block; height: 100%; width: 4%; background: linear-gradient(90deg, var(--violet), var(--gold)); transition: width .45s; }
.chat-log { flex: 1; overflow-y: auto; padding: 1.8rem 1.4rem; scroll-behavior: smooth; }
.message { display: flex; align-items: flex-start; gap: .7rem; margin: 0 0 1rem; animation: message-in .32s ease; }
.message.user { flex-direction: row-reverse; }
.message-mark { flex: 0 0 auto; width: 1.65rem; height: 1.65rem; border-radius: 50%; background: var(--violet); position: relative; }
.message-mark::after { content: "✦"; color: var(--gold-light); font-size: .55rem; position: absolute; inset: 0; display: grid; place-items: center; }
.message.user .message-mark { background: #dad3c7; }
.message.user .message-mark::after { content: "YOU"; color: #676071; font-size: .35rem; font-weight: 700; }
.message-body { max-width: 84%; padding: .85rem 1rem; background: white; border-radius: .35rem 1rem 1rem 1rem; box-shadow: 0 .45rem 1.5rem rgba(44,36,69,.07); font-size: .82rem; line-height: 1.6; white-space: pre-line; }
.message.user .message-body { background: var(--violet); color: white; border-radius: 1rem .35rem 1rem 1rem; }
.composer { min-height: 9rem; border-top: 1px solid var(--line); padding: 1rem 1.4rem; background: white; }
.choice-grid { display: flex; flex-wrap: wrap; gap: .55rem; }
.choice-button { border: 1px solid #d6d0c8; background: #faf8f4; border-radius: 999px; padding: .68rem .9rem; cursor: pointer; font-size: .72rem; transition: .2s; }
.choice-button:hover, .choice-button:focus-visible { border-color: var(--violet); background: #f1edf8; outline: none; transform: translateY(-1px); }
.input-row { display: flex; gap: .5rem; }
.text-input, .select-input { width: 100%; min-width: 0; border: 1px solid #d6d0c8; border-radius: .8rem; padding: .8rem .9rem; background: #faf8f4; outline: none; font-size: .78rem; }
.text-input:focus, .select-input:focus { border-color: var(--violet); box-shadow: 0 0 0 .2rem rgba(52,43,101,.1); }
.send-button { border: 0; min-width: 3rem; border-radius: .8rem; background: var(--violet); color: white; cursor: pointer; }
.helper-text { display: block; color: #7a7381; font-size: .6rem; line-height: 1.5; margin-top: .6rem; }
.ai-note { display: flex; align-items: flex-start; gap: .55rem; color: #70677c; font-size: .64rem; line-height: 1.55; margin: .8rem 0 0; }
.ai-note span { color: var(--gold); }
.upload-label { display: grid; place-items: center; border: 1px dashed #beb6c6; border-radius: 1rem; padding: 1.2rem; cursor: pointer; background: #faf8f4; text-align: center; font-size: .72rem; }
.upload-label span { display: block; font-size: 1.4rem; color: var(--violet); margin-bottom: .3rem; }
.photo-preview { width: 4rem; height: 4rem; object-fit: cover; border-radius: .7rem; margin-top: .7rem; }
.quote-sheet { background: var(--deep); color: white; border-radius: 1.1rem; padding: 1.2rem; margin: .5rem 0; }
.quote-sheet h3 { font-family: var(--display); font-size: 1.5rem; margin: 0 0 1rem; font-weight: 500; }
.quote-line { display: flex; justify-content: space-between; gap: 1rem; border-bottom: 1px solid rgba(255,255,255,.12); padding: .55rem 0; font-size: .7rem; }
.quote-line span:last-child { color: var(--gold-light); white-space: nowrap; }
.quote-line.included span:last-child { color: #9be3b9; font-weight: 600; }
.quote-total { display: flex; justify-content: space-between; align-items: end; margin-top: 1rem; }
.quote-total span { font-size: .6rem; letter-spacing: .12em; }
.quote-total strong { font-family: var(--display); color: var(--gold-light); font-size: 1.8rem; font-weight: 500; }
.whatsapp-button { display: flex; align-items: center; justify-content: center; width: 100%; border: 0; border-radius: 999px; padding: .85rem; background: #1f9d62; color: white; font-weight: 700; cursor: pointer; }
.restart-button { display: block; margin: .7rem auto 0; border: 0; background: none; text-decoration: underline; cursor: pointer; color: #6f6877; font-size: .65rem; }
.halo-disclaimer { margin: 0; padding: .65rem 1.4rem; background: #eee9e1; color: #7c7482; font-size: .54rem; text-align: center; }

@keyframes hero-breathe { to { transform: scale(1.075) translateX(1%); } }
@keyframes drift { to { transform: translate(6%, -4%) rotate(8deg); } }
@keyframes star-spin { to { transform: rotate(360deg); } }
@keyframes panel-in { from { transform: translateX(100%); } }
@keyframes message-in { from { opacity: 0; transform: translateY(.5rem); } }

@media (max-width: 980px) {
  .site-header { padding: 0 1.3rem; }
  .site-header nav { display: none; }
  .header-cta { margin-left: auto; }
  .hero-content { margin-left: 6vw; }
  .manifesto { grid-template-columns: 1fr; gap: 3rem; }
  .rituals { min-height: 92rem; padding: 6rem 6vw 0; }
  .rituals-intro { width: 80%; }
  .service-orbit { top: 26rem; right: -10%; width: 120%; height: 57rem; transform: scale(.83); }
  .addons-ribbon { grid-template-columns: 1fr; height: auto; padding: 1.5rem 6vw; gap: .8rem; }
  .addons-ribbon div { border-left: 0; padding-left: 0; border-top: 1px solid rgba(255,255,255,.12); padding-top: .7rem; }
  .journey-line { margin-left: 0; grid-template-columns: 1fr 1fr; row-gap: 1rem; }
  .care { padding: 6rem 6vw; grid-template-columns: 1fr; }
  .care-quote { margin-top: 5rem; justify-self: center; }
  footer { grid-template-columns: 1fr 1fr; }
}

@media (max-width: 640px) {
  .cursor-glow, .scroll-cue, .hero-signal { display: none; }
  .site-header { height: 5rem; }
  .brand-name { font-size: .7rem; }
  .brand-orbit { transform: scale(.8); }
  .header-cta { font-size: .7rem; padding: .65rem .8rem; }
  .hero { min-height: 50rem; align-items: end; }
  .hero-image { object-position: 67% center; opacity: .64; }
  .hero-vignette { background: linear-gradient(0deg, rgba(11,10,31,.99) 7%, rgba(17,16,39,.68) 67%, rgba(17,16,39,.3)); }
  .hero-content { margin: 0; padding: 7rem 1.3rem 3.5rem; width: auto; }
  h1 { font-size: clamp(3.5rem, 17vw, 5.2rem); }
  .hero-actions { align-items: flex-start; flex-direction: column; gap: 1rem; }
  .manifesto { padding: 6rem 1.3rem; min-height: auto; }
  .manifesto-copy > p { font-size: 2.6rem; }
  .manifesto-copy small { margin-top: 2rem; }
  .rituals { min-height: auto; padding-left: 1.3rem; padding-right: 1.3rem; }
  .rituals-intro { width: 100%; }
  .rituals h2, .journey h2, .care h2, .final-call h2 { font-size: 3.5rem; }
  .service-orbit {
    position: relative;
    inset: auto;
    width: min(100%, 18.5rem);
    height: auto;
    margin: 3rem auto 0;
    transform: none;
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    justify-items: center;
    gap: 1rem .5rem;
  }
  .orbit-rings {
    width: min(88vw, 22rem);
    height: min(88vw, 22rem);
    z-index: 0;
  }
  .orbit-rings i:nth-child(1) { width: 15rem; height: 15rem; }
  .orbit-rings i:nth-child(2) { width: min(112vw, 28rem); height: min(112vw, 28rem); }
  .orbit-rings i:nth-child(3) { width: 7rem; height: 7rem; }
  .orbit-core {
    position: relative;
    left: auto;
    top: auto;
    transform: none;
    grid-column: 1 / -1;
    width: 11rem;
    height: 11rem;
    z-index: 1;
    margin-bottom: .75rem;
  }
  .orbit-core strong { font-size: 2.65rem; }
  .service-node,
  .node-one,
  .node-two,
  .node-three,
  .node-four {
    position: relative;
    inset: auto;
    width: min(9rem, 42vw);
    height: min(9rem, 42vw);
    z-index: 1;
  }
  .service-node strong { font-size: 1rem; }
  .addons-ribbon {
    position: relative;
    margin: 4rem -1.3rem 0;
  }
  .journey { padding: 6rem 1.3rem; }
  .journey-heading { display: block; margin-bottom: 4rem; }
  .journey-heading h2 { margin-top: 1.5rem; }
  .journey-line { grid-template-columns: 1fr; border-top: 0; border-left: 1px solid var(--line); padding-left: 1.5rem; }
  .journey-line li { min-height: auto; padding: 0 0 2.8rem; }
  .journey-line li::before { top: .15rem; left: -1.9rem; }
  .care { padding: 6rem 1.3rem; }
  .care-content ul { grid-template-columns: 1fr; }
  .care-quote { width: 16rem; height: 16rem; }
  .final-call { min-height: 38rem; }
  footer { grid-template-columns: 1fr; padding: 4rem 1.3rem 2rem; }
  .footer-note { grid-column: 1; }
  .halo-panel { width: 100%; }
  .chat-log { padding: 1.2rem .9rem; }
  .composer { padding: .9rem; }
}

@media (prefers-reduced-motion: reduce) {
  *, *::before, *::after { scroll-behavior: auto !important; animation-duration: .01ms !important; animation-iteration-count: 1 !important; transition-duration: .01ms !important; }
  .cursor-glow { display: none; }
}
