:root {
  --bg: #0b0714;
  --bg-soft: #120b24;
  --surface: rgba(255, 255, 255, 0.045);
  --surface-soft: rgba(255, 255, 255, 0.07);
  --surface-muted: rgba(255, 255, 255, 0.03);
  --text: #f3eefc;
  --text-soft: #b7abd8;
  --plum: #ad82ea;
  --plum-deep: #140b22;
  --royal-violet: #4a2a7a;
  --gold: #c8a063;
  --gold-bright: #d8aa5f;
  --magenta: #e0559e;
  --magenta-bright: #ef7ab5;
  --violet-glow: #9d6fe0;
  --line: rgba(201, 150, 67, 0.22);
  --shadow: 0 18px 42px rgba(0, 0, 0, 0.55);
  --shadow-deep: 0 24px 90px rgba(0, 0, 0, 0.7);
  --font-heading: "Cormorant Garamond", Georgia, serif;
  --font-body: "Inter", Arial, sans-serif;
}

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

html {
  scroll-behavior: smooth;
  scroll-padding-top: 88px;
  overflow-x: hidden;
}

body {
  position: relative;
  margin: 0;
  color: var(--text);
  background: radial-gradient(ellipse at top, #1a0f2e, #0b0714 62%);
  font-family: var(--font-body);
  line-height: 1.6;
}

body.product-page {
  background: radial-gradient(ellipse at top, #1a0f2e, #0b0714 55%);
}

/* ---- Ambient moving smoke ---- */

.smoke-bg {
  position: fixed;
  inset: 0;
  z-index: 0;
  overflow: hidden;
  pointer-events: none;
}

.smoke-blob {
  position: absolute;
  width: 65vmax;
  height: 65vmax;
  border-radius: 50%;
  filter: blur(65px);
  opacity: 0.85;
  will-change: transform;
}

.smoke-blob--1 {
  top: -20vmax;
  left: -15vmax;
  background: radial-gradient(circle, var(--magenta) 0%, transparent 68%);
  animation: smokeDrift1 34s ease-in-out infinite;
}

.smoke-blob--2 {
  top: 10vmax;
  right: -20vmax;
  background: radial-gradient(circle, var(--violet-glow) 0%, transparent 68%);
  animation: smokeDrift2 42s ease-in-out infinite;
}

.smoke-blob--3 {
  bottom: -25vmax;
  left: 10vmax;
  background: radial-gradient(circle, var(--royal-violet) 0%, transparent 68%);
  animation: smokeDrift3 38s ease-in-out infinite;
}

.smoke-blob--4 {
  bottom: -10vmax;
  right: -10vmax;
  width: 50vmax;
  height: 50vmax;
  background: radial-gradient(circle, var(--magenta-bright) 0%, transparent 68%);
  opacity: 0.65;
  animation: smokeDrift4 46s ease-in-out infinite;
}

.smoke-ribbon {
  position: absolute;
  width: 78vmax;
  height: 12vmax;
  border-radius: 999px;
  background: linear-gradient(90deg, transparent, rgba(242, 214, 226, 0.22), rgba(138, 81, 180, 0.36), transparent);
  filter: blur(38px);
  mix-blend-mode: screen;
  opacity: 0.48;
  will-change: transform, opacity;
}

.smoke-ribbon--1 {
  left: -22vmax;
  top: 32vmax;
  transform: rotate(-18deg);
  animation: smokeRibbonFlow 38s ease-in-out infinite;
}

.smoke-ribbon--2 {
  right: -22vmax;
  top: 78vmax;
  transform: rotate(16deg);
  animation: smokeRibbonFlowAlt 44s ease-in-out infinite;
}

@keyframes smokeDrift1 {
  0%, 100% { transform: translate(0, 0) scale(1); }
  33% { transform: translate(8vmax, 6vmax) scale(1.15); }
  66% { transform: translate(-4vmax, 10vmax) scale(0.95); }
}

@keyframes smokeDrift2 {
  0%, 100% { transform: translate(0, 0) scale(1); }
  40% { transform: translate(-10vmax, 8vmax) scale(1.1); }
  75% { transform: translate(-4vmax, -6vmax) scale(0.92); }
}

@keyframes smokeDrift3 {
  0%, 100% { transform: translate(0, 0) scale(1); }
  30% { transform: translate(6vmax, -8vmax) scale(1.08); }
  70% { transform: translate(10vmax, 2vmax) scale(0.96); }
}

@keyframes smokeDrift4 {
  0%, 100% { transform: translate(0, 0) scale(1); }
  50% { transform: translate(-8vmax, -6vmax) scale(1.12); }
}

@keyframes smokeRibbonFlow {
  0%, 100% { transform: translateX(-4vmax) rotate(-18deg); opacity: 0.28; }
  50% { transform: translateX(18vmax) rotate(-10deg); opacity: 0.68; }
}

@keyframes smokeRibbonFlowAlt {
  0%, 100% { transform: translateX(8vmax) rotate(16deg); opacity: 0.24; }
  50% { transform: translateX(-16vmax) rotate(9deg); opacity: 0.6; }
}

.home-page > *:not(.smoke-bg),
.product-page > *:not(.smoke-bg) {
  position: relative;
  z-index: 1;
}

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

a {
  color: inherit;
}

button,
input,
select,
textarea {
  font: inherit;
}

.skip-link {
  position: absolute;
  top: -4rem;
  left: 1rem;
  z-index: 1000;
  padding: 0.75rem 1rem;
  color: #fff;
  background: var(--plum-deep);
  border: 1px solid var(--gold);
  border-radius: 999px;
}

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

.container {
  width: min(1200px, calc(100% - 32px));
  margin-inline: auto;
}

h1,
h2,
h3,
h4,
.logo-copy strong,
.sidecard-title,
.offer-card strong,
.founder-quote,
.founder-title {
  font-family: var(--font-heading);
  font-weight: 600;
  line-height: 1;
}

h1 {
  margin: 0;
  font-size: 5.6rem;
  letter-spacing: 0;
}

h2 {
  margin: 0;
  font-size: 4.2rem;
  letter-spacing: 0;
}

h3 {
  margin: 0;
  font-size: 1.8rem;
}

p {
  margin: 0 0 1rem;
}

ul {
  margin: 0;
  padding-left: 1.2rem;
}

.eyebrow,
.offer-label {
  margin: 0 0 0.8rem;
  color: var(--gold);
  font-size: 0.76rem;
  font-weight: 800;
  letter-spacing: 0.32em;
  text-transform: uppercase;
}

.section {
  position: relative;
  padding: 96px 0;
}

.section > .container {
  position: relative;
  z-index: 1;
}

.floral-accent {
  position: absolute;
  z-index: 0;
  width: 230px;
  height: auto;
  opacity: 0.3;
  pointer-events: none;
}

.floral-systems {
  right: -62px;
  bottom: -118px;
  width: 260px;
  opacity: 0.28;
  transform: rotate(-16deg);
}

.floral-platforms {
  left: -78px;
  top: 42px;
  width: 210px;
  opacity: 0.26;
  transform: rotate(18deg);
}

.floral-method {
  right: -56px;
  top: -88px;
  width: 250px;
  opacity: 0.18;
  transform: rotate(20deg);
}

.floral-offers {
  right: -58px;
  top: 70px;
  width: 235px;
  opacity: 0.27;
  transform: rotate(10deg);
}

.floral-testimonials {
  left: -74px;
  bottom: -118px;
  width: 245px;
  opacity: 0.17;
  transform: rotate(-22deg);
}

.floral-about {
  right: -86px;
  top: 180px;
  width: 285px;
  opacity: 0.24;
  transform: rotate(14deg);
}

.floral-faq {
  left: -72px;
  bottom: -112px;
  width: 215px;
  opacity: 0.25;
  transform: rotate(20deg);
}

.floral-intake {
  right: -68px;
  top: -98px;
  width: 245px;
  opacity: 0.16;
  transform: rotate(-18deg);
}

.floral-contact {
  right: -60px;
  top: -86px;
  width: 230px;
  opacity: 0.27;
  transform: rotate(-14deg);
}

.section-light {
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.05), rgba(157, 111, 224, 0.08)),
    rgba(18, 11, 36, 0.32);
}

.section-soft {
  background: linear-gradient(180deg, rgba(21, 13, 41, 0.4), rgba(26, 15, 46, 0.4));
}

.section-dark {
  color: #f8f4fc;
  background:
    linear-gradient(135deg, rgba(20, 11, 34, 0.5), rgba(33, 16, 50, 0.4) 60%, rgba(74, 42, 122, 0.45));
}

.section-night,
.section-obsidian,
.section-pricing {
  color: #f8f4fc;
  background:
    linear-gradient(135deg, rgba(20, 11, 34, 0.5), rgba(33, 16, 50, 0.4) 60%, rgba(74, 42, 122, 0.45));
}

.section-night h2,
.section-night h3,
.section-night p,
.section-obsidian h2,
.section-obsidian h3,
.section-obsidian p,
.section-pricing h2,
.section-pricing h3,
.section-pricing p,
.section-night .eyebrow,
.section-obsidian .eyebrow,
.section-pricing .eyebrow {
  color: inherit;
}

.section-platform {
  background: linear-gradient(180deg, rgba(21, 13, 41, 0.4), rgba(26, 15, 46, 0.4));
}

.contact-section {
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.05), rgba(157, 111, 224, 0.08)),
    rgba(18, 11, 36, 0.32);
}

.section-heading.compact {
  max-width: 760px;
  margin-bottom: 2rem;
}

.section-heading.compact.dark,
.section-dark .eyebrow,
.section-dark h2,
.section-dark h3,
.section-dark p {
  color: inherit;
}

.section-copy,
.hero-lead,
.hero-metrics dd,
.pillar-card p,
.method-grid p,
.offer-card p,
.offer-card li,
.about-panel p,
.faq-list p,
.contact-card,
.product-footer,
.site-footer,
.product-header .back-link,
.product-hero .lead {
  color: var(--text-soft);
}

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.55rem;
  min-height: 50px;
  padding: 0.8rem 1.4rem;
  border: 1px solid currentColor;
  border-radius: 4px;
  font-size: 0.95rem;
  font-weight: 700;
  text-decoration: none;
  cursor: pointer;
  transition: transform 180ms ease, box-shadow 180ms ease, background 180ms ease, border-color 180ms ease;
}

.btn:hover,
.btn:focus-visible {
  transform: translateY(-2px);
}

.btn-small {
  min-height: 42px;
  padding: 0.7rem 1rem;
  font-size: 0.85rem;
}

.btn-gold {
  color: #fff7ea;
  background: linear-gradient(180deg, var(--gold-bright), var(--gold));
  border-color: rgba(185, 131, 40, 0.55);
  box-shadow: 0 14px 30px rgba(201, 150, 67, 0.22);
}

.btn-gold:hover,
.btn-gold:focus-visible {
  box-shadow: 0 18px 34px rgba(201, 150, 67, 0.3);
}

.btn-ghost {
  color: var(--text);
  background: rgba(255, 255, 255, 0.06);
  border-color: rgba(201, 150, 67, 0.4);
}

.btn-ghost:hover,
.btn-ghost:focus-visible {
  background: rgba(255, 255, 255, 0.1);
  border-color: var(--gold);
}

.home-page .site-header {
  position: sticky;
  top: 0;
  z-index: 100;
  background: rgba(11, 7, 20, 0.86);
  backdrop-filter: blur(10px);
  border-bottom: 1px solid rgba(201, 150, 67, 0.18);
}

.header-shell {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1.25rem;
  padding: 1rem 0;
}

.logo-brand {
  display: inline-flex;
  align-items: center;
  gap: 0.75rem;
  text-decoration: none;
}

.logo-mark {
  display: inline-grid;
  place-items: center;
  width: 42px;
  height: 42px;
  color: var(--gold);
  border: 1px solid rgba(201, 150, 67, 0.4);
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.05);
  box-shadow: inset 0 0 0 1px rgba(255, 255, 255, 0.08);
}

.logo-image {
  display: block;
  height: 44px;
  width: auto;
  padding: 0.4rem 0.85rem;
  border-radius: 10px;
  background: rgba(244, 240, 249, 0.96);
  box-shadow: 0 6px 18px rgba(0, 0, 0, 0.25);
}

.logo-image-hero {
  display: block;
  width: min(100%, 480px);
  height: auto;
  margin: 0 auto 2rem;
  padding: 1.1rem 1.6rem;
  border-radius: 16px;
  background: rgba(244, 240, 249, 0.97);
  box-shadow: var(--shadow-deep);
}

.logo-copy {
  display: grid;
  gap: 0.15rem;
}

.logo-copy strong {
  color: var(--plum);
  font-size: 1rem;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.logo-copy small {
  color: var(--text-soft);
  font-size: 0.72rem;
  letter-spacing: 0.18em;
  text-transform: uppercase;
}

.site-nav {
  display: flex;
  align-items: center;
  gap: 1.2rem;
  flex-wrap: wrap;
  justify-content: center;
}

.site-nav a {
  color: var(--text);
  font-size: 0.92rem;
  text-decoration: none;
}

.site-nav a:hover,
.site-nav a:focus-visible {
  color: var(--plum);
}

.hero-section {
  position: relative;
  overflow: hidden;
  padding: 40px 0 56px;
}

.hero-shell {
  position: relative;
  display: grid;
  grid-template-columns: minmax(0, 0.95fr) minmax(340px, 0.7fr);
  align-items: center;
  gap: 3.5rem;
  min-height: 560px;
  padding: 4rem 4.25rem;
  border: 1px solid rgba(201, 150, 67, 0.3);
  background:
    radial-gradient(circle at 15% 20%, rgba(224, 85, 158, 0.16), transparent 55%),
    radial-gradient(circle at 85% 80%, rgba(124, 79, 214, 0.2), transparent 55%),
    rgba(255, 255, 255, 0.03);
  box-shadow: var(--shadow-deep);
  overflow: hidden;
}

.hero-shell::before,
.hero-shell::after {
  content: "";
  position: absolute;
  inset: 14px;
  border: 1px solid rgba(201, 150, 67, 0.28);
  pointer-events: none;
}

.hero-shell::after {
  inset: 22px;
  border-color: rgba(157, 111, 224, 0.16);
}

.hero-copy {
  position: relative;
  z-index: 2;
  max-width: 700px;
  padding: 12px 0;
}

.hero-copy h1,
.product-hero h1 {
  color: var(--text);
}

.hero-copy h1 {
  max-width: 13.5ch;
  font-size: 4rem;
  line-height: 1.02;
}

.hero-lead {
  max-width: 58ch;
  margin-top: 1.4rem;
  font-size: 1.08rem;
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 0.85rem;
  margin-top: 1.6rem;
}

.hero-visual {
  position: relative;
  z-index: 2;
  min-height: 430px;
  display: grid;
  align-items: center;
}

.hero-floral {
  position: absolute;
  right: -1rem;
  bottom: -4rem;
  z-index: 0;
  width: min(88%, 420px);
  opacity: 0.42;
  pointer-events: none;
}

.hero-card {
  position: relative;
  z-index: 1;
  width: min(100%, 430px);
  margin-left: auto;
  padding: 2rem;
  border: 1px solid rgba(201, 150, 67, 0.3);
  border-radius: 8px;
  background: rgba(20, 11, 34, 0.6);
  backdrop-filter: blur(16px);
  box-shadow: var(--shadow-deep);
}

.hero-card::before {
  content: "\2726";
  display: block;
  margin-bottom: 1.1rem;
  color: var(--gold);
  font-size: 2.4rem;
  line-height: 1;
}

.hero-card h2 {
  color: var(--plum);
  font-size: 2.75rem;
}

.hero-card ul {
  display: grid;
  gap: 0.55rem;
  margin-top: 1.2rem;
  padding: 0;
  list-style: none;
}

.hero-card li {
  padding-top: 0.55rem;
  border-top: 1px solid rgba(91, 58, 131, 0.12);
  color: var(--text-soft);
}

.essence-grid,
.platform-grid,
.about-grid,
.faq-grid,
.contact-grid {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(330px, 0.8fr);
  gap: 4rem;
  align-items: start;
}

.platform-grid {
  align-items: center;
}

.contact-grid {
  grid-template-columns: minmax(0, 0.95fr) minmax(460px, 0.85fr);
  align-items: center;
}

.standard-card,
.pillar-card,
.offer-card,
.founder-card,
.faq-list details,
.contact-card {
  border: 1px solid rgba(201, 150, 67, 0.18);
  border-radius: 8px;
  background: rgba(255, 255, 255, 0.04);
  backdrop-filter: blur(12px);
  box-shadow: var(--shadow);
}

.standard-card {
  padding: 1.5rem;
  align-self: start;
}

.platform-callout {
  margin: 1.4rem 0 0;
  padding: 1.1rem 1.2rem;
  border: 1px solid rgba(201, 150, 67, 0.18);
  border-radius: 18px;
  background: rgba(255, 255, 255, 0.04);
  box-shadow: var(--shadow);
}

.platform-callout p {
  margin: 0;
  color: var(--plum);
  font-family: var(--font-heading);
  font-size: 1.45rem;
  line-height: 1.2;
}

.platform-copy {
  display: grid;
  gap: 0.9rem;
}

.split {
  display: grid;
  grid-template-columns: minmax(0, 0.9fr) minmax(0, 1.1fr);
  gap: 4rem;
  align-items: center;
}

.product-hero .split {
  align-items: center;
}

.hero-content {
  max-width: 640px;
}

.hero-content .hero-actions {
  margin-top: 1.4rem;
}

.product-hero .eyebrow,
.product-hero .lead,
.product-hero .upgrade-hint {
  color: rgba(248, 244, 252, 0.82);
}

.product-hero h1 {
  color: #fff;
}

.product-hero .hero-actions {
  margin-top: 1.4rem;
}

.standard-card p:last-child {
  margin-bottom: 0;
  color: var(--plum);
  font-size: 1.25rem;
  line-height: 1.4;
}

.pillar-grid,
.offer-grid,
.product-grid,
.method-grid,
.hero-metrics {
  display: grid;
  gap: 1rem;
}

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

.pillar-card {
  padding: 1.35rem;
}

.pillar-icon {
  display: inline-grid;
  place-items: center;
  width: 50px;
  height: 50px;
  margin-bottom: 1rem;
  color: #fff;
  border-radius: 50%;
  background: linear-gradient(180deg, var(--royal-violet), var(--plum));
  box-shadow: 0 14px 28px rgba(76, 42, 115, 0.22);
  font-weight: 800;
}

.pillar-card h3,
.offer-card h3 {
  color: var(--plum);
  margin-bottom: 0.7rem;
}

.method-shell {
  display: grid;
  gap: 1.5rem;
}

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

.method-grid article {
  padding: 1.4rem;
  border: 1px solid rgba(245, 229, 255, 0.12);
  border-radius: 18px;
  background: rgba(255, 255, 255, 0.06);
}

.method-grid span {
  display: inline-block;
  margin-bottom: 0.9rem;
  color: var(--gold-bright);
  font-size: 0.82rem;
  font-weight: 800;
  letter-spacing: 0.3em;
}

.method-grid h3 {
  color: #fff;
  margin-bottom: 0.75rem;
}

.offer-grid {
  grid-template-columns: repeat(3, minmax(0, 1fr));
  margin-top: 1rem;
}

.offer-card {
  padding: 1.45rem;
}

.offer-card.featured {
  border-color: rgba(201, 150, 67, 0.4);
  background:
    radial-gradient(circle at 30% 0%, rgba(201, 150, 67, 0.16), transparent 18rem),
    radial-gradient(circle at 90% 100%, rgba(224, 85, 158, 0.1), transparent 16rem),
    rgba(255, 255, 255, 0.05);
}

.price {
  margin: 0.9rem 0 1rem;
  color: var(--gold);
  font-family: var(--font-heading);
  font-size: 3.4rem;
  line-height: 1;
}

.offer-card ul {
  margin: 1rem 0 1.2rem;
}

.offer-card li + li {
  margin-top: 0.4rem;
}

.product-suite {
  margin-top: 2rem;
  padding: 1.5rem;
  border: 1px solid rgba(201, 150, 67, 0.16);
  border-radius: 8px;
  background: rgba(255, 255, 255, 0.03);
  box-shadow: var(--shadow);
}

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

.product-grid article {
  display: grid;
  gap: 0.65rem;
  align-content: start;
  padding: 1.2rem;
  border: 1px solid rgba(201, 150, 67, 0.16);
  border-radius: 8px;
  background: rgba(255, 255, 255, 0.04);
  transition: border-color 180ms ease, transform 180ms ease;
}

.product-grid article:hover {
  border-color: rgba(201, 150, 67, 0.4);
  transform: translateY(-2px);
}

.product-grid strong {
  color: var(--plum);
  font-family: var(--font-heading);
  font-size: 1.4rem;
}

.product-grid span {
  color: var(--gold);
  font-weight: 800;
}

.product-grid a:not(.btn) {
  color: var(--plum);
  font-weight: 700;
  text-decoration-thickness: 1px;
  text-underline-offset: 0.18em;
}

.about-panel {
  padding-right: 1rem;
}

.about-grid {
  align-items: stretch;
}

.about-cta {
  margin-top: 2rem;
  padding: 1.6rem;
  border: 1px solid rgba(201, 150, 67, 0.18);
  border-radius: 8px;
  background: rgba(255, 255, 255, 0.04);
  box-shadow: var(--shadow);
  text-align: center;
}

.about-cta h3 {
  color: var(--plum);
  margin-bottom: 0.75rem;
}

.principles-list {
  display: grid;
  gap: 0.75rem;
  margin-top: 1.2rem;
  padding-left: 1.1rem;
}

.founder-card {
  position: sticky;
  top: 108px;
  align-self: start;
  overflow: hidden;
  padding: 1.2rem;
}

.founder-card figure {
  position: relative;
  margin: 0;
}

.founder-card figure::before {
  content: "";
  position: absolute;
  inset: -18%;
  z-index: 0;
  background:
    radial-gradient(circle, var(--magenta) 0%, transparent 60%),
    radial-gradient(circle at 70% 30%, var(--violet-glow) 0%, transparent 55%);
  filter: blur(50px);
  opacity: 0.55;
}

.founder-card img {
  position: relative;
  z-index: 1;
  width: 100%;
  aspect-ratio: 1;
  object-fit: cover;
  object-position: center top;
  border-radius: 8px;
  -webkit-mask-image: radial-gradient(circle at center, black 62%, transparent 92%);
  mask-image: radial-gradient(circle at center, black 62%, transparent 92%);
  filter: saturate(1.05) contrast(1.03);
}

.founder-title {
  margin: 1rem 0 0.6rem;
  color: var(--gold);
  font-size: 1rem;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.founder-quote {
  margin: 0;
  color: var(--plum);
  font-size: 2rem;
  line-height: 1.15;
}

.faq-list {
  display: grid;
  gap: 0.9rem;
}

.faq-list details {
  padding: 1.15rem 1.2rem;
}

.faq-list summary {
  color: var(--plum);
  cursor: pointer;
  font-family: var(--font-heading);
  font-size: 1.45rem;
}

.faq-list p {
  margin-top: 0.9rem;
}

.final-cta {
  background:
    radial-gradient(circle at 80% 0%, rgba(201, 150, 67, 0.1), transparent 18rem),
    linear-gradient(135deg, var(--plum-deep), #381a55);
}

.final-panel {
  max-width: 980px;
  margin-inline: auto;
  padding: 4rem;
  border: 1px solid rgba(201, 150, 67, 0.2);
  border-radius: 8px;
  background: rgba(255, 255, 255, 0.06);
  box-shadow: var(--shadow-deep);
}

.intake-heading {
  max-width: 760px;
  margin: 0 auto 2rem;
  text-align: center;
}

.final-cta h2,
.final-cta p,
.final-cta .eyebrow {
  color: #f8f4fc;
}

.audit-form {
  display: grid;
  gap: 1rem;
}

.field-row,
.field {
  display: grid;
  gap: 0.45rem;
}

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

.three-column {
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 1rem;
}

.audit-form label {
  color: #fff;
  font-size: 0.76rem;
  font-weight: 800;
  letter-spacing: 0.14em;
  text-transform: uppercase;
}

.audit-form label span {
  color: var(--gold-bright);
}

.audit-form input,
.audit-form select,
.audit-form textarea {
  width: 100%;
  min-height: 48px;
  padding: 0.8rem 0.95rem;
  color: #fff;
  border: 1px solid rgba(245, 229, 255, 0.24);
  border-radius: 4px;
  background: rgba(18, 8, 29, 0.46);
  outline: none;
  transition: border-color 180ms ease, box-shadow 180ms ease, background 180ms ease;
}

.audit-form textarea {
  min-height: 112px;
  resize: vertical;
}

.audit-form select {
  color-scheme: dark;
}

.audit-form input:focus,
.audit-form select:focus,
.audit-form textarea:focus {
  border-color: rgba(201, 150, 67, 0.8);
  background: rgba(18, 8, 29, 0.62);
  box-shadow: 0 0 0 3px rgba(201, 150, 67, 0.15);
}

.audit-form .is-invalid {
  border-color: #ffb2b2;
  box-shadow: 0 0 0 3px rgba(255, 178, 178, 0.14);
}

.audit-form .btn {
  justify-self: center;
  min-width: min(100%, 240px);
  margin-top: 0.5rem;
}

.form-status,
.field-error {
  margin: 0;
}

.form-status {
  min-height: 1.5rem;
  text-align: center;
}

.form-status.show {
  padding: 0.85rem 1rem;
  border-radius: 4px;
}

.form-status.success {
  color: #fff;
  border: 1px solid rgba(201, 150, 67, 0.3);
  background: rgba(201, 150, 67, 0.12);
}

.form-status.error,
.field-error {
  color: #ffd4d4;
}

.form-status.error {
  border: 1px solid rgba(255, 178, 178, 0.28);
  background: rgba(101, 31, 49, 0.18);
}

.contact-card {
  display: grid;
  grid-template-columns: 1fr;
  gap: 1.4rem;
  padding: 2rem;
  align-self: center;
}

.contact-card a {
  color: var(--plum);
  text-decoration-thickness: 1px;
  text-underline-offset: 0.18em;
  overflow-wrap: break-word;
  word-break: break-word;
}

.site-footer {
  display: flex;
  justify-content: space-between;
  gap: 1rem;
  padding: 1.15rem max(16px, calc((100vw - 1200px) / 2));
  border-top: 1px solid rgba(201, 150, 67, 0.16);
  background: rgba(0, 0, 0, 0.3);
}

.site-footer p,
.product-footer p {
  margin: 0;
  font-size: 0.76rem;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

/* ---- 2026 Arcana homepage refresh ---- */

.arcana-refresh {
  background:
    radial-gradient(circle at 12% 8%, rgba(138, 81, 180, 0.36), transparent 34rem),
    radial-gradient(circle at 86% 12%, rgba(217, 76, 112, 0.26), transparent 30rem),
    linear-gradient(180deg, #10091f 0%, #090611 42%, #140b22 100%);
}

.refresh-header .logo-image {
  background: transparent;
  border: 1px solid rgba(244, 240, 249, 0.12);
  padding: 0;
}

.refresh-hero {
  position: relative;
  padding: 56px 0 72px;
  overflow: hidden;
}

.refresh-hero-shell {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(330px, 0.78fr);
  gap: 3.5rem;
  align-items: center;
  min-height: 680px;
}

.refresh-hero-copy h1 {
  max-width: 12ch;
  color: var(--text);
  font-size: clamp(3.8rem, 8vw, 7.8rem);
  line-height: 0.98;
}

.refresh-brand-card {
  position: relative;
  min-height: 560px;
  border: 1px solid var(--line);
  border-radius: 8px;
  overflow: hidden;
  box-shadow: var(--shadow-deep);
  background: rgba(28, 15, 46, 0.54);
}

.refresh-brand-card::before {
  content: "";
  position: absolute;
  inset: 0;
  z-index: 1;
  background:
    radial-gradient(circle at 70% 22%, rgba(250, 174, 123, 0.18), transparent 16rem),
    linear-gradient(180deg, transparent 52%, rgba(9, 6, 17, 0.92));
}

.refresh-brand-card img {
  width: 100%;
  height: 100%;
  min-height: 560px;
  object-fit: cover;
  object-position: 34% center;
}

.refresh-brand-panel {
  position: absolute;
  inset-inline: 1.1rem;
  bottom: 1.1rem;
  z-index: 2;
  display: grid;
  gap: 0.45rem;
  padding: 1rem;
  border: 1px solid rgba(250, 174, 123, 0.3);
  border-radius: 8px;
  background: rgba(12, 7, 22, 0.74);
  backdrop-filter: blur(14px);
}

.refresh-brand-panel span {
  color: var(--gold);
  font-size: 0.72rem;
  font-weight: 800;
  letter-spacing: 0.2em;
  text-transform: uppercase;
}

.refresh-brand-panel strong {
  font-family: var(--font-heading);
  font-size: 2rem;
  line-height: 1;
}

.refresh-band {
  overflow: hidden;
}

.friction-grid,
.service-grid,
.method-track {
  display: grid;
  gap: 1rem;
}

.friction-grid {
  grid-template-columns: repeat(5, minmax(0, 1fr));
}

.friction-grid article,
.service-card,
.method-track li,
.refresh-stack aside {
  border: 1px solid rgba(201, 150, 67, 0.18);
  border-radius: 8px;
  background: rgba(255, 255, 255, 0.04);
  box-shadow: var(--shadow);
}

.friction-grid article {
  padding: 1.2rem;
  color: var(--text);
  font-weight: 700;
}

.section-light .friction-grid article,
.section-light .method-track li,
.section-soft .service-card {
  color: var(--text);
  background: rgba(28, 15, 46, 0.22);
}

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

.service-card {
  padding: 1.35rem;
}

.service-card span {
  color: var(--gold);
  font-size: 1.5rem;
}

.service-card h3,
.method-track span {
  color: var(--plum);
}

.service-card p,
.method-track p {
  color: var(--text-soft);
}

.stack-grid {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(290px, 0.55fr);
  gap: 2rem;
  align-items: center;
}

.refresh-stack aside {
  padding: 1.5rem;
  border-color: rgba(250, 174, 123, 0.28);
}

.refresh-stack aside p {
  color: var(--gold);
  font-weight: 800;
}

.refresh-stack aside strong {
  font-family: var(--font-heading);
  font-size: 2.2rem;
  line-height: 1;
}

.method-track {
  grid-template-columns: repeat(5, minmax(0, 1fr));
  margin: 2.2rem 0 0;
  padding: 0;
  list-style: none;
}

.method-track li {
  min-height: 180px;
  padding: 1.1rem;
}

.method-track span {
  font-family: var(--font-heading);
  font-size: 2rem;
}

.refresh-founder .about-panel {
  align-self: center;
}

@media (max-width: 1080px) {
  .refresh-hero-shell,
  .stack-grid {
    grid-template-columns: 1fr;
  }

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

@media (max-width: 680px) {
  .refresh-hero-shell {
    min-height: auto;
  }

  .refresh-hero-copy h1 {
    font-size: 3.35rem;
  }

  .refresh-brand-card,
  .refresh-brand-card img {
    min-height: 420px;
  }

  .friction-grid,
  .service-grid,
  .method-track {
    grid-template-columns: 1fr;
  }
}

/* Product pages */
.product-header {
  position: sticky;
  top: 0;
  z-index: 20;
  padding: 1rem 0;
  background: rgba(11, 7, 20, 0.9);
  backdrop-filter: blur(10px);
  border-bottom: 1px solid rgba(201, 150, 67, 0.18);
}

.product-header .container,
.product-footer .container {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 1rem;
}

.product-header .logo-brand {
  color: var(--plum);
}

.back-link {
  color: var(--plum);
  text-decoration: none;
  font-weight: 700;
}

.back-link:hover,
.back-link:focus-visible {
  text-decoration: underline;
}

.product-hero h1 {
  color: #fff;
  margin: 0.8rem 0;
}

.lead {
  font-size: 1.18rem;
}

.mockup-shadow {
  border: 1px solid rgba(124, 88, 172, 0.14);
  border-radius: 8px;
  box-shadow: var(--shadow);
}

.product-image {
  width: min(100%, 720px);
  margin-inline: auto;
  object-fit: contain;
}

.product-image-portrait {
  max-height: 720px;
}

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

.feature-list {
  display: grid;
  gap: 0.85rem;
  list-style: none;
  padding: 0;
}

.feature-list li {
  position: relative;
  padding-left: 1.3rem;
}

.feature-list li::before {
  content: "*";
  position: absolute;
  left: 0;
  color: var(--gold);
}

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

.outcome-card,
.method-item {
  padding: 1.4rem;
  border: 1px solid rgba(201, 150, 67, 0.16);
  border-radius: 8px;
  background: rgba(255, 255, 255, 0.04);
  box-shadow: var(--shadow);
}

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

.gold-text {
  display: block;
  margin-bottom: 0.75rem;
  color: var(--gold);
  font-family: var(--font-heading);
  font-size: 2rem;
}

.credit-panel {
  padding: 3rem;
  border: 1px solid rgba(201, 150, 67, 0.16);
  border-radius: 8px;
  background: rgba(255, 255, 255, 0.04);
  box-shadow: var(--shadow);
  text-align: center;
}

.product-footer {
  padding: 2rem 0;
  border-top: 1px solid rgba(201, 150, 67, 0.16);
  background: rgba(0, 0, 0, 0.3);
}

.text-center {
  text-align: center;
}

.styled-box {
  padding: 4rem 2rem;
  text-align: center;
  border: 1px solid rgba(201, 150, 67, 0.18);
  border-radius: 8px;
  background: rgba(255, 255, 255, 0.04);
  box-shadow: var(--shadow);
}

@media (max-width: 1080px) {
  .hero-shell,
  .essence-grid,
  .platform-grid,
  .faq-grid,
  .contact-grid,
  .details-grid {
    grid-template-columns: 1fr;
  }

  .hero-shell {
    min-height: auto;
    gap: 2.5rem;
    padding: 3rem;
  }

  .essence-grid,
  .platform-grid,
  .faq-grid,
  .contact-grid,
  .details-grid,
  .split {
    gap: 2rem;
  }

  .pillar-grid,
  .offer-grid,
  .method-grid,
  .product-grid,
  .outcome-grid,
  .method-trio {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .hero-copy h1 {
    max-width: none;
    font-size: 3.7rem;
  }

  .hero-visual {
    min-height: 360px;
  }

  .hero-card {
    margin-left: 0;
  }

  .hero-floral {
    right: 0;
    bottom: -2rem;
    width: min(52%, 280px);
  }

  .founder-card {
    top: 92px;
  }
}

@media (max-width: 820px) {
  .header-shell,
  .product-header .container,
  .product-footer .container,
  .site-footer {
    flex-direction: column;
    align-items: stretch;
  }

  .site-nav {
    justify-content: flex-start;
    gap: 0.9rem 1rem;
  }

  .hero-shell {
    padding: 20px;
  }

  .hero-card {
    padding: 1.35rem;
  }

  .hero-visual {
    min-height: auto;
    padding-top: 2rem;
  }

  .hero-floral {
    top: 0;
    right: -1.5rem;
    bottom: auto;
    width: 170px;
    opacity: 0.28;
  }

  .hero-metrics,
  .pillar-grid,
  .offer-grid,
  .method-grid,
  .product-grid,
  .outcome-grid,
  .method-trio,
  .about-grid,
  .two-column,
  .three-column,
  .experience-steps {
    grid-template-columns: 1fr;
  }

  .hero-metrics {
    gap: 0.75rem;
  }

  .founder-card {
    position: static;
  }

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

  .hero-metrics div {
    padding: 0.95rem;
  }

  .section {
    padding: 72px 0;
  }

  .final-panel,
  .credit-panel {
    padding: 1.5rem;
  }

  .price {
    font-size: 2.8rem;
  }
}

@media (max-width: 560px) {
  .container {
    width: min(100% - 20px, 1200px);
  }

  h1 {
    font-size: 3.8rem;
  }

  .hero-copy h1 {
    font-size: 3.35rem;
  }

  h2 {
    font-size: 2.75rem;
  }

  .hero-section {
    padding-top: 24px;
  }

  .standard-card,
  .pillar-card,
  .offer-card,
  .founder-card,
  .faq-list details,
  .contact-card {
    border-radius: 16px;
  }
}

/* ---- Magic accents ---- */

@keyframes twinkle {
  0%, 100% { opacity: 0.55; transform: scale(0.85) rotate(0deg); }
  50% { opacity: 1; transform: scale(1.2) rotate(10deg); }
}

.hero-rule {
  display: flex;
  align-items: center;
  gap: 0.9rem;
  margin: 1.6rem 0;
  color: var(--gold);
}

.hero-rule::before,
.hero-rule::after {
  content: "";
  flex: 1;
  height: 1px;
  background: linear-gradient(90deg, transparent, rgba(201, 150, 67, 0.5), transparent);
}

.hero-rule span {
  display: inline-block;
  font-size: 1.15rem;
  animation: twinkle 2.6s ease-in-out infinite;
}

/* ---- Tool badges (Services page) ---- */

.tool-list {
  display: flex;
  flex-wrap: wrap;
  gap: 0.6rem;
  margin-top: 1.2rem;
  padding: 0;
  list-style: none;
}

.tool-list li {
  padding: 0.45rem 0.9rem;
  border: 1px solid rgba(201, 150, 67, 0.3);
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.05);
  color: var(--text);
  font-size: 0.85rem;
  font-weight: 600;
  transition: border-color 180ms ease, box-shadow 180ms ease, transform 180ms ease;
}

.tool-list li:hover {
  border-color: var(--gold);
  box-shadow: 0 8px 20px rgba(201, 150, 67, 0.2);
  transform: translateY(-2px);
}

/* ---- About page content blocks ---- */

.about-copy,
.story,
.working-together {
  position: relative;
  margin-top: 2.8rem;
  padding-top: 2.3rem;
}

.about-copy::before,
.story::before,
.working-together::before {
  content: "\2726";
  position: absolute;
  top: 0;
  left: 0;
  color: var(--gold);
  font-size: 1.15rem;
  animation: twinkle 3.2s ease-in-out infinite;
}

.about-copy h3,
.story h3,
.working-together h3 {
  color: var(--plum);
  margin-bottom: 0.9rem;
}

.about-copy .principles-list strong,
.story .principles-list strong {
  color: var(--plum);
}

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

.experience-steps article {
  position: relative;
  padding: 1.5rem 1.5rem 1.4rem;
  border: 1px solid rgba(201, 150, 67, 0.16);
  border-radius: 8px;
  background: rgba(255, 255, 255, 0.04);
  box-shadow: var(--shadow);
  transition: border-color 180ms ease, box-shadow 180ms ease, transform 180ms ease;
}

.experience-steps article::before {
  content: "\2726";
  display: block;
  margin-bottom: 0.6rem;
  color: var(--gold);
  font-size: 1.1rem;
}

.experience-steps article:hover {
  border-color: rgba(201, 150, 67, 0.4);
  box-shadow: 0 18px 34px rgba(201, 150, 67, 0.16);
  transform: translateY(-3px);
}

.experience-steps h3 {
  color: var(--plum);
  font-size: 1.1rem;
  margin-bottom: 0.5rem;
}

.experience-steps p {
  margin: 0;
  color: var(--text-soft);
}

/* ---- Module catalog and guided assessment ---- */

.modules-hero-grid {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(300px, 0.46fr);
  gap: 2rem;
  align-items: center;
}

.modules-hero h1 {
  max-width: 11ch;
}

.module-total-card,
.recommendation-card {
  padding: 1.5rem;
  border: 1px solid rgba(201, 150, 67, 0.22);
  border-radius: 8px;
  background:
    radial-gradient(circle at 90% 10%, rgba(224, 85, 158, 0.13), transparent 14rem),
    rgba(255, 255, 255, 0.05);
  box-shadow: var(--shadow);
}

.module-total-card strong {
  display: block;
  margin-bottom: 0.85rem;
  color: #fff;
  font-family: var(--font-heading);
  font-size: 2.35rem;
  line-height: 1;
}

.module-total-card p:last-child,
.modules-assessment-cta p {
  color: var(--text-soft);
}

.module-group {
  margin-top: 2.4rem;
}

.module-group-heading {
  display: flex;
  align-items: end;
  justify-content: space-between;
  gap: 1rem;
  margin-bottom: 1rem;
  padding-bottom: 0.75rem;
  border-bottom: 1px solid rgba(201, 150, 67, 0.18);
}

.module-group-heading h3 {
  color: var(--gold);
  font-size: 2rem;
}

.module-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 1rem;
}

.module-card {
  display: grid;
  gap: 0.7rem;
  align-content: start;
  min-height: 310px;
  padding: 1.2rem;
  border: 1px solid rgba(201, 150, 67, 0.18);
  border-radius: 8px;
  background:
    radial-gradient(circle at 100% 0%, rgba(157, 111, 224, 0.12), transparent 10rem),
    rgba(28, 15, 46, 0.34);
  box-shadow: var(--shadow);
  transition: border-color 180ms ease, transform 180ms ease;
}

.module-card:hover {
  border-color: rgba(201, 150, 67, 0.42);
  transform: translateY(-2px);
}

.module-number {
  color: var(--gold);
  font-family: var(--font-heading);
  font-size: 2.6rem;
  line-height: 1;
}

.module-card h3 {
  color: var(--plum);
  font-size: 2rem;
}

.module-card p {
  min-height: 3.2rem;
  color: var(--text-soft);
}

.module-card strong {
  color: var(--gold);
  font-size: 1.15rem;
}

.module-card .btn {
  align-self: end;
  width: 100%;
}

.assessment-section {
  text-align: left;
}

.assessment-panel {
  max-width: 1180px;
}

.assessment-layout {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(300px, 0.42fr);
  gap: 1.5rem;
  align-items: start;
}

.assessment-form fieldset {
  display: grid;
  gap: 1rem;
  margin: 0;
  padding: 1.25rem;
  border: 1px solid rgba(245, 229, 255, 0.16);
  border-radius: 8px;
  background: rgba(255, 255, 255, 0.035);
}

.assessment-form fieldset + fieldset {
  margin-top: 0.35rem;
}

.assessment-form legend {
  padding: 0 0.4rem;
  color: var(--gold);
  font-family: var(--font-heading);
  font-size: 1.55rem;
}

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

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

.choice-grid label {
  display: grid;
  grid-template-columns: auto 1fr;
  gap: 0.55rem;
  align-items: start;
  min-height: 52px;
  padding: 0.72rem 0.8rem;
  color: var(--text);
  border: 1px solid rgba(245, 229, 255, 0.16);
  border-radius: 6px;
  background: rgba(18, 8, 29, 0.38);
  cursor: pointer;
  text-transform: none;
  letter-spacing: 0;
  font-size: 0.9rem;
  font-weight: 700;
}

.choice-grid input {
  width: 1rem;
  min-height: auto;
  margin: 0.2rem 0 0;
  accent-color: var(--gold);
}

.form-note {
  color: var(--text-soft);
  font-size: 0.92rem;
}

.recommendation-card {
  position: sticky;
  top: 96px;
}

.recommendation-card h2 {
  color: #fff;
  font-size: 2.8rem;
}

.recommendation-card p {
  color: var(--text-soft);
}

.recommendation-card ul {
  display: grid;
  gap: 0.65rem;
  margin: 1rem 0;
  padding: 0;
  list-style: none;
}

.recommendation-card li {
  display: grid;
  gap: 0.15rem;
  padding: 0.75rem;
  border: 1px solid rgba(201, 150, 67, 0.16);
  border-radius: 6px;
  background: rgba(255, 255, 255, 0.045);
}

.recommendation-card li span {
  color: var(--gold);
  font-family: var(--font-heading);
  font-size: 1.35rem;
  line-height: 1;
}

.recommendation-card li strong {
  color: var(--plum);
}

.recommendation-card li small {
  color: var(--text-soft);
}

.recommendation-card > strong {
  display: block;
  margin-bottom: 1rem;
  color: var(--gold);
}

@media (max-width: 1080px) {
  .module-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .modules-hero-grid,
  .assessment-layout {
    grid-template-columns: 1fr;
  }

  .recommendation-card {
    position: static;
  }
}

@media (max-width: 820px) {
  .choice-grid,
  .choice-grid.compact,
  .module-grid {
    grid-template-columns: 1fr;
  }

  .module-group-heading {
    align-items: start;
    flex-direction: column;
  }
}

@media (prefers-reduced-motion: reduce) {
  *,
  *::before,
  *::after {
    scroll-behavior: auto !important;
    transition: none !important;
    animation: none !important;
  }
}

/* ---- Brand restoration: refined Arcana identity ---- */

:root {
  --bg: #f4f0f8;
  --bg-soft: #ebe3f2;
  --surface: rgba(255, 255, 255, 0.82);
  --surface-soft: rgba(255, 255, 255, 0.94);
  --surface-muted: rgba(91, 58, 130, 0.055);
  --text: #271b32;
  --text-soft: #675d72;
  --plum: #5f3b86;
  --plum-deep: #190f23;
  --royal-violet: #4c2d72;
  --gold: #b88b4a;
  --gold-bright: #cda15f;
  --magenta: #6e4a88;
  --magenta-bright: #8b6ca6;
  --violet-glow: #745096;
  --line: rgba(92, 58, 132, 0.16);
  --shadow: 0 18px 48px rgba(41, 28, 52, 0.12);
  --shadow-deep: 0 26px 80px rgba(16, 9, 24, 0.24);
}

body,
body.product-page,
.arcana-refresh {
  color: var(--text);
  background:
    linear-gradient(180deg, rgba(244, 240, 248, 0.96), rgba(235, 227, 242, 0.96)),
    #f4f0f8;
}

.smoke-bg,
.smoke-field,
.smoke-blob,
.smoke-ribbon,
.smoke-orb,
.floral-accent {
  display: none !important;
}

h1,
h2,
h3,
h4,
.founder-quote {
  color: var(--plum-deep);
}

p,
li,
.section-copy,
.hero-lead,
.product-hero .lead,
.offer-card p,
.offer-card li,
.about-panel p,
.faq-list p,
.contact-card,
.product-footer,
.site-footer {
  color: var(--text-soft);
}

.eyebrow,
.offer-label,
.module-number,
.gold-text {
  color: var(--gold);
}

.home-page .site-header,
.product-header {
  background: rgba(244, 240, 248, 0.92);
  border-bottom: 1px solid rgba(92, 58, 132, 0.12);
  box-shadow: 0 10px 30px rgba(41, 28, 52, 0.08);
}

.header-shell {
  padding: 0.85rem 0;
}

.logo-image,
.refresh-header .logo-image {
  height: 52px;
  padding: 0.4rem 0.75rem;
  border: 1px solid rgba(92, 58, 132, 0.1);
  border-radius: 0;
  background: rgba(244, 240, 248, 0.9);
  box-shadow: none;
}

.logo-brand {
  color: var(--plum);
  font-family: var(--font-heading);
  font-size: 1.05rem;
  letter-spacing: 0.2em;
  text-transform: uppercase;
}

.logo-brand span {
  color: var(--gold);
}

.site-nav a,
.back-link,
.product-header .back-link {
  color: var(--plum-deep);
}

.site-nav a:hover,
.site-nav a:focus-visible,
.back-link:hover,
.back-link:focus-visible {
  color: var(--gold);
}

.btn {
  border-radius: 0;
  box-shadow: none;
  letter-spacing: 0.03em;
}

.btn-gold {
  color: #fffaf2;
  background: linear-gradient(180deg, #c99f61, #a97835);
  border-color: rgba(130, 91, 38, 0.6);
  box-shadow: 0 14px 26px rgba(184, 139, 74, 0.18);
}

.btn-ghost {
  color: var(--plum);
  background: rgba(255, 255, 255, 0.55);
  border-color: rgba(95, 59, 134, 0.26);
}

.btn-ghost:hover,
.btn-ghost:focus-visible {
  color: var(--plum-deep);
  background: rgba(255, 255, 255, 0.88);
  border-color: var(--gold);
}

.refresh-hero,
.product-hero,
.section-obsidian.modules-hero {
  color: #f7f1fb;
  background:
    linear-gradient(90deg, rgba(12, 7, 16, 0.9), rgba(34, 18, 48, 0.78)),
    url("../images/arcana-reference-hero.png") center / cover no-repeat;
}

.refresh-hero {
  padding: 72px 0 84px;
}

.refresh-hero::after,
.product-hero::after {
  content: "";
  position: absolute;
  inset: auto 0 0;
  height: 1px;
  background: linear-gradient(90deg, transparent, rgba(184, 139, 74, 0.85), transparent);
}

.refresh-hero-copy h1,
.product-hero h1,
.modules-hero h1 {
  color: #f7f1fb;
  text-shadow: 0 2px 18px rgba(0, 0, 0, 0.42);
}

.refresh-hero-copy .hero-lead,
.product-hero .lead,
.modules-hero .lead {
  color: rgba(247, 241, 251, 0.82);
}

.refresh-brand-card {
  min-height: 520px;
  border: 1px solid rgba(184, 139, 74, 0.42);
  border-radius: 0;
  background: rgba(23, 13, 32, 0.78);
  box-shadow: var(--shadow-deep);
}

.refresh-brand-card img {
  min-height: 520px;
  opacity: 0.72;
  filter: saturate(0.88) contrast(0.98);
}

.refresh-brand-card::before {
  background:
    linear-gradient(180deg, rgba(20, 12, 28, 0.1), rgba(20, 12, 28, 0.92)),
    linear-gradient(90deg, rgba(20, 12, 28, 0.6), transparent 44%);
}

.refresh-brand-panel {
  border-radius: 0;
  border-color: rgba(184, 139, 74, 0.42);
  background: rgba(16, 9, 24, 0.78);
}

.section,
.refresh-band {
  background: transparent;
}

.section-light,
.section-soft,
.contact-section {
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.48), rgba(255, 255, 255, 0.2)),
    transparent;
}

.section-dark,
.section-night,
.final-cta,
.refresh-stack {
  color: #f7f1fb;
  background:
    linear-gradient(135deg, rgba(25, 15, 35, 0.96), rgba(54, 31, 76, 0.94));
}

.section-dark h2,
.section-dark h3,
.section-dark p,
.section-night h2,
.section-night h3,
.section-night p,
.final-cta h2,
.final-cta p,
.refresh-stack h2,
.refresh-stack p {
  color: #f7f1fb;
}

.section-heading.compact {
  max-width: 820px;
}

.section-heading.compact::after,
.module-group-heading::after {
  content: "";
  display: block;
  width: 96px;
  height: 1px;
  margin-top: 1.2rem;
  background: var(--gold);
}

.friction-grid article,
.service-card,
.method-track li,
.standard-card,
.pillar-card,
.offer-card,
.founder-card,
.faq-list details,
.contact-card,
.module-card,
.module-total-card,
.recommendation-card,
.experience-steps article,
.outcome-card,
.method-item,
.credit-panel,
.product-suite,
.styled-box,
.final-panel,
.assessment-form fieldset {
  border: 1px solid rgba(95, 59, 134, 0.14);
  border-radius: 0;
  background: rgba(255, 255, 255, 0.72);
  box-shadow: var(--shadow);
  backdrop-filter: none;
}

.section-dark .service-card,
.section-dark .method-grid article,
.section-night .final-panel,
.final-cta .final-panel,
.refresh-stack aside,
.module-total-card,
.recommendation-card,
.assessment-section .final-panel,
.assessment-form fieldset {
  border-color: rgba(184, 139, 74, 0.28);
  background: rgba(255, 255, 255, 0.055);
}

.service-card h3,
.method-track span,
.module-card h3,
.product-grid strong,
.pillar-card h3,
.offer-card h3,
.about-cta h3,
.experience-steps h3,
.faq-list summary {
  color: var(--plum);
}

.section-dark .service-card h3,
.section-dark .method-grid h3,
.section-night .module-card h3,
.recommendation-card h2,
.assessment-section h1,
.assessment-section h2,
.assessment-form legend {
  color: #f7f1fb;
}

.friction-grid article,
.section-light .friction-grid article,
.section-light .method-track li,
.section-soft .service-card,
.module-card p,
.service-card p,
.method-track p,
.experience-steps p {
  color: var(--text-soft);
}

.stack-grid aside,
.refresh-stack aside {
  border-radius: 0;
}

.refresh-stack aside p,
.refresh-stack aside strong {
  color: #f7f1fb;
}

.method-track li,
.module-card {
  min-height: unset;
}

.module-grid {
  gap: 1.05rem;
}

.module-card {
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.82), rgba(255, 255, 255, 0.62));
}

.module-card:hover,
.product-grid article:hover,
.experience-steps article:hover {
  border-color: rgba(184, 139, 74, 0.55);
  box-shadow: 0 22px 54px rgba(41, 28, 52, 0.16);
}

.choice-grid label {
  border-color: rgba(184, 139, 74, 0.2);
  border-radius: 0;
  background: rgba(255, 255, 255, 0.08);
}

.audit-form input,
.audit-form select,
.audit-form textarea {
  color: #f7f1fb;
  border-radius: 0;
  background: rgba(255, 255, 255, 0.08);
}

.audit-form input::placeholder,
.audit-form textarea::placeholder {
  color: rgba(247, 241, 251, 0.48);
}

.tool-list li {
  color: var(--plum);
  border-color: rgba(95, 59, 134, 0.16);
  border-radius: 0;
  background: rgba(255, 255, 255, 0.62);
}

.founder-card figure::before {
  display: none;
}

.founder-card img {
  border-radius: 0;
  -webkit-mask-image: none;
  mask-image: none;
}

.founder-quote {
  color: var(--gold);
}

.product-footer,
.site-footer {
  border-top: 1px solid rgba(95, 59, 134, 0.12);
  background: rgba(244, 240, 248, 0.86);
}

@media (max-width: 820px) {
  .refresh-hero {
    padding: 48px 0 60px;
  }

  .logo-image,
  .refresh-header .logo-image {
    height: 44px;
  }
}

/* ---- Arcana atmosphere: align static pages with the rebuilt homepage ---- */

:root {
  --bg: #080513;
  --bg-soft: #12091f;
  --surface: rgba(255, 255, 255, 0.075);
  --surface-soft: rgba(255, 255, 255, 0.12);
  --surface-muted: rgba(255, 255, 255, 0.045);
  --text: #f6eefb;
  --text-soft: rgba(246, 238, 251, 0.66);
  --plum: #a15bc9;
  --plum-deep: #12091f;
  --royal-violet: #6d45a0;
  --gold: #d3a25f;
  --gold-bright: #f3c98a;
  --magenta: #e05c9b;
  --magenta-bright: #ff8bce;
  --violet-glow: #b491ff;
  --line: rgba(243, 201, 138, 0.24);
  --shadow: 0 24px 70px rgba(0, 0, 0, 0.32);
  --shadow-deep: 0 30px 90px rgba(0, 0, 0, 0.45);
}

body,
body.product-page,
.arcana-refresh {
  color: var(--text);
  background:
    radial-gradient(circle at 12% 8%, rgba(109, 69, 160, 0.42), transparent 28rem),
    radial-gradient(circle at 88% 12%, rgba(224, 92, 155, 0.28), transparent 30rem),
    linear-gradient(180deg, #11091f 0%, #080513 44%, #130921 100%);
}

body.product-page::before {
  content: "";
  position: fixed;
  inset: -10vh 0 auto;
  z-index: 0;
  height: 120vh;
  pointer-events: none;
  opacity: 0.6;
  background-image:
    radial-gradient(circle, rgba(255, 194, 133, 0.8) 0 1px, transparent 1.5px),
    radial-gradient(circle, rgba(246, 238, 251, 0.58) 0 1px, transparent 1.5px);
  background-position: 0 0, 42px 62px;
  background-size: 140px 180px, 190px 230px;
  animation: stardustFallStatic 42s linear infinite;
}

body.product-page::after {
  content: "";
  position: fixed;
  left: 12vw;
  top: -6rem;
  z-index: 0;
  width: 16px;
  height: 10px;
  border-radius: 70% 30% 70% 30%;
  pointer-events: none;
  opacity: 0.72;
  background: linear-gradient(135deg, rgba(245, 165, 214, 0.96), rgba(116, 74, 170, 0.44));
  box-shadow:
    32vw -3rem 0 rgba(224, 92, 155, 0.46),
    64vw 2rem 0 rgba(180, 145, 255, 0.42);
  animation: petalFallStatic 24s ease-in-out infinite;
}

@keyframes stardustFallStatic {
  from { transform: translate3d(0, -14vh, 0); }
  to { transform: translate3d(0, 14vh, 0); }
}

@keyframes petalFallStatic {
  0% { transform: translate3d(0, -10vh, 0) rotate(0deg); opacity: 0; }
  12% { opacity: 0.74; }
  55% { transform: translate3d(7vw, 48vh, 0) rotate(190deg); }
  100% { transform: translate3d(-4vw, 112vh, 0) rotate(390deg); opacity: 0; }
}

.smoke-bg,
.smoke-blob,
.smoke-ribbon {
  display: block !important;
}

.smoke-blob {
  opacity: 0.5;
  filter: blur(48px);
  mix-blend-mode: screen;
}

.smoke-blob--1 {
  background: radial-gradient(circle, rgba(180, 145, 255, 0.72), transparent 68%);
}

.smoke-blob--2 {
  background: radial-gradient(circle, rgba(224, 92, 155, 0.68), transparent 70%);
}

.smoke-blob--3 {
  background: radial-gradient(circle, rgba(65, 113, 190, 0.46), transparent 68%);
}

.smoke-blob--4 {
  background: radial-gradient(circle, rgba(255, 139, 206, 0.44), transparent 68%);
}

h1,
h2,
h3,
h4,
.founder-quote,
.product-hero h1,
.modules-hero h1,
.assessment-section h1,
.assessment-section h2,
.recommendation-card h2 {
  color: var(--text);
}

h1,
.product-hero h1,
.modules-hero h1 {
  font-size: clamp(3.4rem, 6vw, 5.8rem);
  line-height: 0.98;
}

h2 {
  font-size: clamp(2.5rem, 4.5vw, 4.6rem);
}

p,
li,
.section-copy,
.hero-lead,
.product-hero .lead,
.offer-card p,
.offer-card li,
.about-panel p,
.faq-list p,
.contact-card,
.product-footer,
.site-footer {
  color: var(--text-soft);
}

.eyebrow,
.offer-label,
.module-number,
.gold-text,
.assessment-form legend {
  color: var(--gold-bright);
}

.product-header,
.home-page .site-header {
  background: rgba(8, 5, 19, 0.78);
  border-bottom: 1px solid rgba(243, 201, 138, 0.18);
  box-shadow: 0 18px 42px rgba(0, 0, 0, 0.24);
  backdrop-filter: blur(18px);
}

.logo-image,
.refresh-header .logo-image {
  border: 0;
  background: transparent;
  box-shadow: none;
}

.logo-brand,
.product-header .logo-brand,
.site-nav a,
.back-link,
.product-header .back-link {
  color: var(--text);
}

.logo-brand span,
.site-nav a:hover,
.site-nav a:focus-visible,
.back-link:hover,
.back-link:focus-visible {
  color: var(--gold-bright);
}

.btn {
  border-radius: 999px;
}

.btn-gold {
  color: #1f1029;
  background: linear-gradient(135deg, #f9d095, var(--gold));
  border-color: rgba(243, 201, 138, 0.5);
  box-shadow: 0 16px 34px rgba(211, 162, 95, 0.22);
}

.btn-ghost {
  color: var(--text);
  background: rgba(255, 255, 255, 0.07);
  border-color: rgba(243, 201, 138, 0.35);
}

.btn-ghost:hover,
.btn-ghost:focus-visible {
  color: #1f1029;
  background: var(--gold-bright);
  border-color: var(--gold-bright);
}

.product-hero,
.refresh-hero,
.section-obsidian.modules-hero {
  color: var(--text);
  background:
    radial-gradient(circle at 80% 12%, rgba(224, 92, 155, 0.22), transparent 28rem),
    radial-gradient(circle at 12% 18%, rgba(180, 145, 255, 0.18), transparent 26rem),
    linear-gradient(135deg, rgba(28, 13, 45, 0.9), rgba(13, 7, 23, 0.88)),
    url("../images/tas-brand-hero.png") center / cover no-repeat;
  overflow: hidden;
}

.product-hero::before,
.section-dark::before,
.section-night::before,
.section-light::before,
.section-soft::before {
  content: "";
  position: absolute;
  inset: 0;
  z-index: 0;
  pointer-events: none;
  background:
    radial-gradient(circle at 20% 12%, rgba(180, 145, 255, 0.14), transparent 22rem),
    radial-gradient(circle at 82% 18%, rgba(224, 92, 155, 0.12), transparent 24rem);
}

.product-hero > .container,
.section-dark > .container,
.section-night > .container,
.section-light > .container,
.section-soft > .container {
  position: relative;
  z-index: 1;
}

.section,
.refresh-band,
.section-light,
.section-soft,
.contact-section,
.section-platform {
  background: transparent;
}

.section-dark,
.section-night,
.final-cta,
.refresh-stack {
  color: var(--text);
  background:
    radial-gradient(circle at 12% 10%, rgba(243, 201, 138, 0.1), transparent 18rem),
    linear-gradient(135deg, rgba(20, 9, 33, 0.86), rgba(54, 22, 72, 0.64));
}

.section-dark h2,
.section-dark h3,
.section-dark p,
.section-night h2,
.section-night h3,
.section-night p,
.final-cta h2,
.final-cta p,
.refresh-stack h2,
.refresh-stack p {
  color: inherit;
}

.friction-grid article,
.service-card,
.method-track li,
.standard-card,
.pillar-card,
.offer-card,
.founder-card,
.faq-list details,
.contact-card,
.module-card,
.module-total-card,
.recommendation-card,
.experience-steps article,
.outcome-card,
.method-item,
.credit-panel,
.product-suite,
.styled-box,
.final-panel,
.assessment-form fieldset,
.product-grid article {
  border: 1px solid rgba(243, 201, 138, 0.22);
  border-radius: 22px;
  background:
    radial-gradient(circle at 100% 0%, rgba(243, 201, 138, 0.08), transparent 12rem),
    rgba(255, 255, 255, 0.075);
  box-shadow: var(--shadow);
  backdrop-filter: blur(10px);
}

.module-card {
  background:
    radial-gradient(circle at 100% 0%, rgba(161, 91, 201, 0.14), transparent 10rem),
    rgba(255, 255, 255, 0.07);
}

.service-card h3,
.method-track span,
.module-card h3,
.product-grid strong,
.pillar-card h3,
.offer-card h3,
.about-cta h3,
.experience-steps h3,
.faq-list summary,
.recommendation-card li strong {
  color: var(--gold-bright);
}

.module-card p,
.service-card p,
.method-track p,
.experience-steps p,
.recommendation-card p,
.recommendation-card li small,
.form-note {
  color: var(--text-soft);
}

.choice-grid label,
.audit-form input,
.audit-form select,
.audit-form textarea {
  color: var(--text);
  border-color: rgba(243, 201, 138, 0.18);
  border-radius: 16px;
  background: rgba(255, 255, 255, 0.075);
}

.audit-form input::placeholder,
.audit-form textarea::placeholder {
  color: rgba(246, 238, 251, 0.48);
}

.tool-list li {
  color: var(--text);
  border-color: rgba(243, 201, 138, 0.2);
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.075);
}

.product-image,
.founder-card img {
  border-radius: 20px;
}

.product-footer,
.site-footer {
  border-top: 1px solid rgba(243, 201, 138, 0.16);
  background: rgba(8, 5, 19, 0.72);
}

@media (max-width: 820px) {
  h1,
  .product-hero h1,
  .modules-hero h1 {
    font-size: 3.2rem;
  }

  .product-header .container,
  .product-footer .container {
    align-items: flex-start;
  }
}

/* ---- Static page polish after visual QA ---- */

.product-page h1,
.product-page .product-hero h1,
.product-page .modules-hero h1 {
  font-size: clamp(3.05rem, 5vw, 4.9rem);
  line-height: 1;
  max-width: 12.5ch;
}

.product-page h2,
.product-page .section-heading h2 {
  font-size: clamp(2.25rem, 3.9vw, 3.9rem);
  line-height: 1.04;
}

.product-page .section-heading.compact {
  max-width: 900px;
}

.product-page .product-hero .lead {
  max-width: 76ch;
  font-size: 1.06rem;
}

.product-page .product-hero {
  min-height: auto;
}

.product-page .modules-hero-grid {
  align-items: center;
}

.product-page .about-panel h1 {
  font-size: clamp(3rem, 4.8vw, 4.7rem);
  line-height: 1;
}

.founder-card {
  background:
    radial-gradient(circle at 50% 12%, rgba(180, 145, 255, 0.14), transparent 18rem),
    rgba(255, 255, 255, 0.075);
}

.founder-card figure {
  overflow: visible;
}

.founder-card img {
  clip-path: none;
  transform: none;
  object-fit: cover;
  object-position: center;
}

.founder-card figcaption {
  position: relative;
  z-index: 2;
  margin-top: -0.35rem;
}

@media (max-width: 820px) {
  .product-page h1,
  .product-page .product-hero h1,
  .product-page .modules-hero h1,
  .product-page .about-panel h1 {
    font-size: 3rem;
  }

  .product-page h2,
  .product-page .section-heading h2 {
    font-size: 2.45rem;
  }
}

/* ---- Guided assessment layout repair ---- */

.assessment-section {
  padding-top: clamp(3.2rem, 6vw, 5.8rem);
}

.assessment-section .assessment-panel {
  max-width: min(1180px, calc(100% - 2rem));
  padding: clamp(1.25rem, 3vw, 2rem);
  overflow: visible;
}

.assessment-section .intake-heading {
  max-width: 860px;
  margin: 0 auto clamp(1.6rem, 3vw, 2.4rem);
  text-align: center;
}

.assessment-section .intake-heading .eyebrow {
  margin-bottom: 0.55rem;
}

.product-page .assessment-section .intake-heading h1,
.assessment-section .intake-heading h1 {
  max-width: 15.5ch;
  margin: 0 auto 0.85rem;
  font-size: clamp(3rem, 4.6vw, 4.65rem);
  line-height: 0.96;
}

.assessment-section .intake-heading p:not(.eyebrow) {
  max-width: 760px;
  margin: 0 auto;
  color: rgba(246, 238, 251, 0.78);
  font-size: clamp(0.98rem, 1.2vw, 1.08rem);
}

.assessment-layout {
  grid-template-columns: minmax(0, 1fr) minmax(360px, 0.46fr);
  gap: clamp(1.1rem, 2.4vw, 1.75rem);
}

.assessment-form fieldset,
.recommendation-card {
  border-radius: 22px;
}

.assessment-form legend {
  font-size: clamp(1.35rem, 2vw, 1.8rem);
  line-height: 1;
}

.recommendation-card {
  width: 100%;
  padding: clamp(1.25rem, 2vw, 1.6rem);
  overflow: hidden;
}

.recommendation-card .eyebrow {
  margin-bottom: 0.75rem;
}

.product-page .recommendation-card h2,
.recommendation-card h2 {
  max-width: 12.5ch;
  margin-bottom: 0.85rem;
  font-size: clamp(2.2rem, 2.7vw, 3.1rem);
  line-height: 1.02;
}

.recommendation-card p {
  font-size: 0.98rem;
}

.choice-grid label {
  min-width: 0;
}

@media (max-width: 1120px) {
  .assessment-layout {
    grid-template-columns: 1fr;
  }

  .recommendation-card {
    position: static;
  }

  .product-page .recommendation-card h2,
  .recommendation-card h2 {
    max-width: 15ch;
  }
}

@media (max-width: 820px) {
  .assessment-section .assessment-panel {
    max-width: min(100% - 1rem, 720px);
    padding: 1rem;
  }

  .product-page .assessment-section .intake-heading h1,
  .assessment-section .intake-heading h1 {
    max-width: 10.8ch;
    font-size: clamp(2.75rem, 13vw, 3.8rem);
  }

  .assessment-section .intake-heading {
    text-align: left;
  }

  .assessment-section .intake-heading h1,
  .assessment-section .intake-heading p {
    margin-left: 0;
    margin-right: 0;
  }

  .product-page .recommendation-card h2,
  .recommendation-card h2 {
    font-size: clamp(2.2rem, 10vw, 3rem);
  }

  .assessment-form fieldset,
  .recommendation-card {
    padding: 1rem;
  }
}
