/* Theme tokens: edit these values first when moving the page into another builder. */
:root {
  --bg: #06070a;
  --bg-2: #0c1017;
  --panel: rgba(15, 20, 30, 0.9);
  --panel-soft: rgba(255, 255, 255, 0.045);
  --reading-surface: rgba(13, 19, 28, 0.92);
  --reading-surface-soft: rgba(22, 31, 43, 0.72);
  --ink: #ffffff;
  --soft: #e9edf3;
  --muted: #aeb7c4;
  --line: rgba(255, 255, 255, 0.14);
  --gold: #d9a441;
  --gold-2: #f2cf82;
  --blue: #42bcff;
  --blue-soft: rgba(66, 188, 255, 0.14);
  --shadow: 0 28px 80px rgba(0, 0, 0, 0.45);
  --radius: 8px;
  --max-width: 1180px;
}

/* Page reset: keeps spacing and sizing predictable for beginners. */
* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  min-height: 100vh;
  margin: 0;
  color: var(--ink);
  font-family: Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  line-height: 1.5;
  background:
    radial-gradient(circle at 87% 12%, rgba(217, 164, 65, 0.075), transparent 24rem),
    radial-gradient(circle at 8% 48%, rgba(66, 188, 255, 0.055), transparent 30rem),
    linear-gradient(135deg, #06070a 0%, #090d14 48%, #06070a 100%),
    var(--bg);
}

body::before {
  position: fixed;
  inset: 0;
  z-index: -1;
  pointer-events: none;
  content: "";
  background:
    linear-gradient(rgba(255, 255, 255, 0.018) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255, 255, 255, 0.018) 1px, transparent 1px);
  background-size: 128px 128px;
  mask-image: linear-gradient(to bottom, rgba(0, 0, 0, 0.56), transparent 88%);
}

body::after { position: fixed; inset: 0; z-index: -1; pointer-events: none; content: ""; opacity: 0.82; background: radial-gradient(circle at 13% 18%, rgba(242, 207, 130, 0.34) 0 1px, transparent 1.7px), radial-gradient(circle at 79% 28%, rgba(66, 188, 255, 0.28) 0 1px, transparent 1.7px), radial-gradient(circle at 25% 61%, rgba(66, 188, 255, 0.2) 0 1px, transparent 1.7px), radial-gradient(circle at 86% 76%, rgba(217, 164, 65, 0.24) 0 1px, transparent 1.7px), linear-gradient(118deg, transparent 0 17%, rgba(66, 188, 255, 0.055) 17.08% 17.16%, transparent 17.25% 100%), linear-gradient(76deg, transparent 0 64%, rgba(217, 164, 65, 0.05) 64.08% 64.16%, transparent 64.25% 100%), linear-gradient(151deg, transparent 0 43%, rgba(255, 255, 255, 0.028) 43.08% 43.15%, transparent 43.24% 100%); mask-image: linear-gradient(to bottom, rgba(0, 0, 0, 0.72), transparent 94%); }

.ambient-intelligence-layer { position: fixed; inset: 0; z-index: 2; width: 100%; height: 100%; pointer-events: none; opacity: 0.78; mask-image: linear-gradient(90deg, rgba(0, 0, 0, 0.78), transparent 30%, transparent 70%, rgba(0, 0, 0, 0.78)), linear-gradient(to bottom, rgba(0, 0, 0, 0.78), transparent 96%); -webkit-mask-image: linear-gradient(90deg, rgba(0, 0, 0, 0.78), transparent 30%, transparent 70%, rgba(0, 0, 0, 0.78)), linear-gradient(to bottom, rgba(0, 0, 0, 0.78), transparent 96%); }

main, .site-footer { position: relative; z-index: 1; }

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

a {
  color: inherit;
}

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

button {
  cursor: pointer;
}

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

h1,
h2,
h3 {
  text-wrap: balance;
}

p {
  color: var(--muted);
}

/* Shared layout helpers: reusable sections make CMS migration easier. */
.container {
  width: min(var(--max-width), calc(100% - 32px));
  margin: 0 auto;
}

.section-band {
  padding: clamp(56px, 7vw, 104px) 0;
}

main section {
  scroll-margin-top: 118px;
}

.eyebrow {
  margin-bottom: 10px;
  color: var(--gold-2);
  font-size: 0.76rem;
  font-weight: 900;
  letter-spacing: 0;
  text-transform: uppercase;
}

h1,
h2 {
  font-family: Georgia, "Times New Roman", serif;
  font-weight: 500;
  line-height: 0.98;
}

h1 {
  margin-bottom: 12px;
  font-size: clamp(3.5rem, 9vw, 7.8rem);
}

h2 {
  margin-bottom: 16px;
  font-size: clamp(2.25rem, 5vw, 4.6rem);
}

h3 {
  margin-bottom: 10px;
  color: var(--soft);
  font-size: clamp(1.15rem, 2vw, 1.45rem);
  line-height: 1.15;
}

.primary-button,
.secondary-button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 46px;
  border-radius: var(--radius);
  font-weight: 900;
  text-decoration: none;
  padding: 12px 16px;
}

.primary-button {
  border: 1px solid var(--gold);
  background: var(--gold);
  color: #171106;
}

.secondary-button {
  border: 1px solid rgba(66, 188, 255, 0.55);
  background: var(--blue-soft);
  color: #dff5ff;
}

.primary-button:hover,
.secondary-button:hover {
  transform: translateY(-1px);
}

input:focus,
select:focus,
textarea:focus,
button:focus,
a:focus {
  outline: 2px solid rgba(66, 188, 255, 0.78);
  outline-offset: 3px;
}

/* Header: sticky but compact so the hero still shows the next section below. */
.site-header {
  position: sticky;
  top: 0;
  z-index: 20;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  width: min(var(--max-width), calc(100% - 32px));
  margin: 0 auto;
  padding: 14px 0;
  background: rgba(6, 7, 10, 0.88);
  backdrop-filter: blur(18px);
}

.brand-lockup {
  display: inline-flex;
  align-items: center;
  min-width: 0;
  gap: 12px;
  text-decoration: none;
}

.brand-lockup strong,
.brand-lockup small {
  display: block;
}

.brand-lockup strong {
  color: var(--ink);
  font-size: 1rem;
  font-weight: 900;
}

.brand-lockup small {
  color: var(--muted);
  font-size: 0.78rem;
  font-weight: 750;
}

.brand-mark {
  display: grid;
  place-items: center;
  flex: 0 0 auto;
  width: 40px;
  height: 40px;
  border: 1px solid rgba(217, 164, 65, 0.72);
  border-radius: var(--radius);
  color: var(--gold-2);
  font-size: 0.78rem;
  font-weight: 900;
}

.site-nav {
  display: flex;
  align-items: center;
  justify-content: flex-end;
  flex-wrap: wrap;
  gap: 6px;
}

.site-nav a {
  border: 1px solid transparent;
  border-radius: var(--radius);
  color: var(--soft);
  font-size: 0.88rem;
  font-weight: 850;
  text-decoration: none;
  padding: 9px 10px;
}

.site-nav a:hover {
  border-color: rgba(255, 255, 255, 0.16);
  background: rgba(255, 255, 255, 0.06);
}

/* Hero: brand first, visual support second. */
.hero {
  min-height: min(650px, 76vh);
  display: flex;
  align-items: center;
  position: relative;
  overflow: hidden;
  background: linear-gradient(90deg, rgba(6, 7, 10, 0.94) 0%, rgba(6, 7, 10, 0.88) 54%, rgba(6, 7, 10, 0.78) 100%);
  padding-top: clamp(28px, 3.5vw, 46px);
  padding-bottom: clamp(32px, 4vw, 52px);
}

.hospitality-signal-field {
  position: absolute;
  inset: 0;
  z-index: 0;
  width: 100%;
  height: 100%;
  pointer-events: none;
  opacity: 0.82;
  mix-blend-mode: screen;
}

.hero-grid {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: minmax(0, 0.82fr) minmax(480px, 1.08fr);
  align-items: center;
  gap: clamp(24px, 3.5vw, 52px);
}

.hero-copy {
  max-width: 730px;
}

.hero-copy h1 {
  max-width: 700px;
  font-size: clamp(2.6rem, 3.85vw, 4.15rem);
  line-height: 1;
}

.hero-tagline {
  margin-bottom: 18px;
  color: var(--gold-2);
  font-size: clamp(1.25rem, 2vw, 1.65rem);
  font-weight: 850;
}

.hero-lede {
  max-width: 640px;
  margin-bottom: 26px;
  color: var(--soft);
  font-size: clamp(1.05rem, 2vw, 1.28rem);
}

.hero-actions,
.audience-strip {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
}

.audience-strip {
  margin-top: 22px;
}

.audience-strip span {
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: rgba(255, 255, 255, 0.045);
  color: var(--muted);
  font-size: 0.86rem;
  font-weight: 850;
  padding: 8px 10px;
}

.hero-media {
  position: relative;
  isolation: isolate;
  margin: 0;
  min-height: 440px;
  background: transparent;
  transition: opacity 700ms ease, transform 900ms cubic-bezier(0.2, 0.8, 0.2, 1);
}

.hero-media::before,
.hero-media::after {
  content: "";
  position: absolute;
  z-index: 2;
  pointer-events: none;
}

.hero-media::before {
  inset: -2px;
  width: auto;
  background:
    linear-gradient(90deg, rgba(6, 7, 10, 1) 0%, rgba(6, 7, 10, 0.94) 13%, rgba(6, 7, 10, 0) 36%, rgba(6, 7, 10, 0) 72%, rgba(6, 7, 10, 0.24) 100%),
    radial-gradient(ellipse at 100% 0%, rgba(6, 7, 10, 0.46), transparent 47%),
    radial-gradient(ellipse at 100% 100%, rgba(6, 7, 10, 0.52), transparent 50%);
}

.hero-media::after {
  inset: auto -2px -2px -2px;
  height: 24%;
  background: linear-gradient(0deg, rgba(6, 7, 10, 0.96), rgba(6, 7, 10, 0));
}

.hero-media.is-changing {
  opacity: 0.22;
  transform: translateY(8px);
}

/* Approved hero rotation uses a slow cross-fade without a content-change lift. */
.hero-media.is-rotation-enabled {
  transition: opacity 1100ms cubic-bezier(0.22, 0.74, 0.24, 1), transform 1100ms cubic-bezier(0.22, 0.74, 0.24, 1);
}

.hero-media.is-rotation-changing {
  opacity: 0.04;
  transform: none;
}

.hero-media picture {
  display: block;
  min-height: inherit;
}

.hero-media img {
  display: block;
  width: 100%;
  height: clamp(440px, 40vw, 520px);
  min-height: 440px;
  aspect-ratio: 16 / 10;
  object-fit: cover;
  object-position: center;
  filter: saturate(0.9) contrast(1.04);
}

.hero-scene-caption {
  position: absolute;
  z-index: 3;
  right: clamp(10px, 2vw, 28px);
  bottom: clamp(8px, 1.5vw, 20px);
  display: grid;
  max-width: 300px;
  gap: 2px;
  border-left: 2px solid var(--gold);
  background: rgba(6, 7, 10, 0.72);
  backdrop-filter: blur(10px);
  padding: 9px 12px;
}

.hero-scene-caption strong {
  color: var(--white);
  font-size: 0.82rem;
}

.hero-scene-caption span {
  color: var(--muted);
  font-size: 0.68rem;
}

/* Problem: direct, practical language for operators. */
.problem {
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
  background: rgba(6, 7, 10, 0.72);
}

.split-section {
  display: grid;
  grid-template-columns: minmax(0, 0.9fr) minmax(320px, 1.1fr);
  gap: clamp(28px, 5vw, 72px);
  align-items: start;
}

.problem .split-section {
  grid-template-columns: minmax(360px, 0.9fr) minmax(440px, 1.1fr);
  align-items: center;
}

.problem-copy {
  max-width: 580px;
}

.problem h2 {
  max-width: 12ch;
  margin-bottom: 22px;
  font-size: clamp(2.8rem, 4.6vw, 4.8rem);
  line-height: 1.01;
}

.problem-intro {
  max-width: 48ch;
  margin-bottom: 0;
  color: var(--soft);
  font-size: clamp(1rem, 1.25vw, 1.12rem);
  line-height: 1.65;
}

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

.problem-list article {
  display: grid;
  grid-template-columns: 48px minmax(0, 1fr);
  gap: 16px;
  min-height: 86px;
  align-items: start;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: var(--panel-soft);
  padding: 18px;
}

.problem-list span {
  color: var(--blue);
  font-weight: 950;
}

.problem-list p {
  margin-bottom: 0;
  color: var(--soft);
}

.section-heading {
  max-width: 760px;
  margin-bottom: 28px;
}

.section-heading p {
  font-size: 1.04rem;
}

.platform-proof {
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
  background: rgba(6, 7, 10, 0.76);
}

.platform-proof-grid,
.notebooklm-grid {
  display: grid;
  grid-template-columns: minmax(280px, 0.66fr) minmax(560px, 1.34fr);
  align-items: center;
  gap: clamp(28px, 3.5vw, 48px);
}

/* The consulting framework needs enough room for its headline at desktop
   widths. This keeps the two columns balanced without letting a long word
   overlap the operating-rhythm panel. */
.platform-proof-grid {
  grid-template-columns: minmax(0, 0.86fr) minmax(0, 1.14fr);
}

.platform-proof-grid > * {
  min-width: 0;
}

.platform-proof h2 {
  font-size: clamp(2.25rem, 4.2vw, 4rem);
  text-wrap: pretty;
}

.platform-proof-list {
  display: grid;
  gap: 10px;
  margin: 24px 0 0;
  padding: 0;
  list-style: none;
}

.platform-proof-list li {
  position: relative;
  color: var(--soft);
  padding: 4px 0 4px 26px;
  background: transparent;
}

.platform-proof-list li::before {
  content: "✓";
  position: absolute;
  left: 0;
  color: var(--gold-2);
  font-weight: 900;
}

.platform-proof-closing {
  max-width: 34ch;
  margin: 16px 0 0;
  padding: 13px 0 0 14px;
  border-top: 1px solid rgba(217, 164, 65, 0.22);
  border-left: 2px solid var(--gold-2);
  color: var(--soft);
  font-size: 0.96rem;
  font-weight: 700;
  line-height: 1.48;
}

.platform-decision-rhythm {
  display: flex;
  flex-direction: column;
  padding: clamp(24px, 4vw, 42px);
  border: 1px solid rgba(217, 164, 65, 0.3);
  border-radius: calc(var(--radius) * 1.4);
  background:
    radial-gradient(circle at 88% 8%, rgba(217, 164, 65, 0.11), transparent 34%),
    linear-gradient(145deg, rgba(23, 27, 34, 0.98), rgba(8, 10, 14, 0.98));
  box-shadow: var(--shadow);
}

.platform-rhythm-kicker {
  margin: 0 0 10px;
  color: var(--gold-2);
  font-size: 0.72rem;
  font-weight: 800;
  letter-spacing: 0.14em;
  text-transform: uppercase;
}

.platform-decision-rhythm h3 {
  margin: 0;
  color: var(--white);
  font-size: clamp(1.42rem, 2.2vw, 2rem);
  line-height: 1.12;
}

.platform-decision-rhythm ol {
  display: grid;
  gap: 16px;
  margin: 28px 0 24px;
  padding: 0;
  list-style: none;
}

.platform-decision-rhythm li {
  display: grid;
  grid-template-columns: 34px minmax(0, 1fr);
  gap: 13px;
  align-items: start;
  padding-bottom: 16px;
  border-bottom: 1px solid rgba(255, 255, 255, 0.12);
}

.platform-decision-rhythm li:last-child {
  padding-bottom: 0;
  border-bottom: 0;
}

.platform-decision-rhythm li > span {
  color: var(--gold-2);
  font-size: 0.73rem;
  font-weight: 900;
  letter-spacing: 0.08em;
}

.platform-decision-rhythm li strong {
  display: block;
  color: var(--white);
  font-size: 0.96rem;
}

.platform-decision-rhythm li p {
  margin: 5px 0 0;
  color: var(--soft);
  font-size: 0.9rem;
  line-height: 1.52;
}

.platform-rhythm-footer {
  margin: auto 0 0;
  padding-top: 17px;
  border-top: 1px solid rgba(217, 164, 65, 0.26);
  color: var(--gold-1);
  font-size: 0.9rem;
  font-weight: 700;
}

.platform-proof-media {
  position: relative;
  margin: 0;
  overflow: hidden;
  border: 1px solid rgba(217, 164, 65, 0.3);
  border-radius: calc(var(--radius) * 1.4);
  background: var(--panel);
  box-shadow: var(--shadow);
}

.platform-proof-media img {
  display: block;
  width: 100%;
  height: auto;
}

.platform-proof-summary {
  position: absolute;
  inset: 0 0 0 auto;
  display: grid;
  width: 40%;
  align-content: center;
  gap: 12px;
  border-left: 1px solid rgba(217, 164, 65, 0.38);
  padding: clamp(18px, 2.4vw, 30px);
  background:
    linear-gradient(90deg, rgba(5, 7, 10, 0.93), rgba(5, 7, 10, 0.99)),
    rgba(5, 7, 10, 0.98);
}

.platform-proof-summary span {
  display: grid;
  gap: 2px;
  border-bottom: 1px solid rgba(255, 255, 255, 0.11);
  padding: 0 0 12px;
  color: var(--muted);
  font-size: clamp(0.72rem, 1vw, 0.86rem);
}

.platform-proof-summary span:last-child {
  border-bottom: 0;
  padding-bottom: 0;
}

.platform-proof-summary strong {
  color: var(--gold-2);
  font-size: clamp(0.84rem, 1.2vw, 1rem);
}

.notebooklm-overview {
  background:
    radial-gradient(circle at 82% 35%, rgba(22, 100, 150, 0.16), transparent 34%),
    rgba(9, 13, 20, 0.68);
}

.notebooklm-guardrails {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin-top: 22px;
}

.notebooklm-guardrails span {
  border: 1px solid rgba(67, 188, 255, 0.3);
  border-radius: 999px;
  background: rgba(14, 74, 107, 0.16);
  color: #9ddcff;
  font-size: 0.72rem;
  font-weight: 850;
  padding: 7px 10px;
}

.notebooklm-video-shell {
  position: relative;
  min-height: 380px;
  overflow: hidden;
  border-radius: calc(var(--radius) * 1.5);
  background:
    linear-gradient(0deg, rgba(6, 7, 10, 0.84), rgba(6, 7, 10, 0.08)),
    url("/assets/hero-event-promotion.jpg") center / cover;
  box-shadow: var(--shadow);
}

.notebooklm-video-shell video {
  width: 100%;
  min-height: 380px;
  object-fit: cover;
}

.notebooklm-video-placeholder {
  position: absolute;
  inset: auto 0 0;
  display: grid;
  gap: 5px;
  padding: clamp(22px, 4vw, 40px);
  background: linear-gradient(0deg, rgba(6, 7, 10, 0.98), rgba(6, 7, 10, 0));
}

.notebooklm-video-placeholder span {
  color: #80d5ff;
  font-size: 0.72rem;
  font-weight: 900;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.notebooklm-video-placeholder strong {
  color: var(--white);
  font-family: var(--display);
  font-size: clamp(1.35rem, 3vw, 2rem);
}

.notebooklm-video-placeholder p {
  max-width: 580px;
  margin: 0;
  color: var(--muted);
}

/* Feature cards: repeated cards are safe to rearrange in WordPress, Webflow, or Carrd. */
.help-grid,
.steps-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 14px;
}

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

.feature-card,
.step-card,
.deliverable-list article,
.offer-points article {
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: rgba(12, 16, 23, 0.88);
  box-shadow: 0 18px 48px rgba(0, 0, 0, 0.22);
}

.feature-card {
  min-height: 210px;
  padding: 22px;
}

.feature-kicker {
  display: inline-block;
  margin-bottom: 18px;
  color: var(--blue);
  font-size: 0.78rem;
  font-weight: 900;
  text-transform: uppercase;
}

.feature-card p,
.step-card p {
  margin-bottom: 0;
}

/* Offer section: darker band with clear audit packaging. */
.audit-offer {
  border-top: 1px solid rgba(217, 164, 65, 0.28);
  border-bottom: 1px solid rgba(217, 164, 65, 0.28);
  background:
    linear-gradient(135deg, rgba(217, 164, 65, 0.13), transparent 36%),
    rgba(8, 11, 16, 0.9);
}

.conversion-cta {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: clamp(28px, 5vw, 64px);
}

.conversion-cta > div {
  max-width: 780px;
}

.conversion-cta h2 {
  margin-bottom: 14px;
}

.conversion-cta p:last-child {
  max-width: 700px;
  margin-bottom: 0;
  color: var(--soft);
  font-size: 1.02rem;
}

.conversion-cta .primary-button {
  flex: 0 0 auto;
}

.offer-grid {
  display: grid;
  grid-template-columns: minmax(0, 0.9fr) minmax(320px, 1.1fr);
  gap: clamp(28px, 5vw, 64px);
  align-items: center;
}

.offer-copy p {
  max-width: 620px;
  margin-bottom: 22px;
  color: var(--soft);
  font-size: 1.06rem;
}

.offer-points {
  display: grid;
  gap: 12px;
}

.offer-points article {
  padding: 20px;
}

.offer-points strong,
.deliverable-list strong {
  display: block;
  margin-bottom: 6px;
  color: var(--soft);
  font-size: 1rem;
}

.offer-points p {
  margin-bottom: 0;
}

.step-card {
  min-height: 230px;
  padding: 22px;
}

.step-card span {
  display: grid;
  place-items: center;
  width: 42px;
  height: 42px;
  margin-bottom: 28px;
  border: 1px solid rgba(217, 164, 65, 0.68);
  border-radius: var(--radius);
  color: var(--gold-2);
  font-weight: 950;
}

/* Deliverables: includes real sample images from the local asset pack. */
.deliverables {
  background: rgba(6, 7, 10, 0.82);
}

.deliverables-grid {
  display: grid;
  grid-template-columns: minmax(0, 0.85fr) minmax(320px, 1.15fr);
  gap: clamp(26px, 5vw, 60px);
  align-items: start;
}

.deliverables-grid > div:first-child p {
  color: var(--soft);
  font-size: 1.05rem;
}

.deliverable-list {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 12px;
}

.deliverable-list article {
  min-height: 150px;
  padding: 20px;
}

.deliverable-list span {
  color: var(--muted);
}

.outcome-strip {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 14px;
  margin-top: 30px;
}

.outcome-card {
  min-height: 270px;
  border: 1px solid rgba(255, 255, 255, 0.14);
  border-radius: var(--radius);
  background:
    linear-gradient(145deg, rgba(217, 164, 65, 0.14), transparent 42%),
    rgba(12, 16, 23, 0.9);
  box-shadow: var(--shadow);
  padding: clamp(22px, 3vw, 30px);
}

.outcome-card span {
  display: inline-block;
  margin-bottom: 28px;
  color: var(--blue);
  font-size: 0.78rem;
  font-weight: 950;
  text-transform: uppercase;
}

.outcome-card h3 {
  max-width: 360px;
  color: var(--ink);
  font-family: Georgia, "Times New Roman", serif;
  font-size: clamp(1.65rem, 3vw, 2.45rem);
  font-weight: 500;
  line-height: 1.04;
}

.outcome-card p {
  margin-bottom: 0;
  color: var(--soft);
}

/* Founder note: a quieter section before the form. */
.founder {
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
  background:
    linear-gradient(90deg, rgba(66, 188, 255, 0.1), transparent 42%),
    rgba(10, 14, 21, 0.84);
}

.founder-note {
  max-width: 900px;
}

.founder-note blockquote {
  margin-bottom: 22px;
  color: var(--ink);
  font-family: Georgia, "Times New Roman", serif;
  font-size: clamp(1.7rem, 4vw, 3rem);
  line-height: 1.08;
}

.founder-note p:last-child {
  max-width: 700px;
  margin-bottom: 0;
  color: var(--soft);
  font-size: 1.08rem;
}

/* Contact form: mailto only, so there is no backend dependency. */
.contact-grid {
  display: grid;
  grid-template-columns: minmax(0, 0.86fr) minmax(360px, 1.14fr);
  gap: clamp(28px, 5vw, 64px);
  align-items: start;
}

.contact-intro {
  position: sticky;
  top: 112px;
}

.contact-intro h2 {
  max-width: 640px;
  font-size: clamp(2.55rem, 5.2vw, 4.35rem);
  line-height: 1;
}

.contact-grid > div p {
  color: var(--soft);
  font-size: 1.05rem;
}

.founder-credibility {
  margin-top: 28px;
  padding-left: 14px;
  border-left: 2px solid var(--gold);
  color: var(--ink) !important;
  font-weight: 750;
}

.contact-form {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 14px;
  border: 1px solid var(--line);
  border-radius: 22px;
  background:
    linear-gradient(155deg, rgba(26, 37, 52, 0.94), rgba(10, 15, 23, 0.97) 62%),
    var(--panel);
  box-shadow: var(--shadow);
  padding: clamp(22px, 3vw, 32px);
}

.intake-form-heading {
  padding-bottom: 20px;
  border-bottom: 1px solid rgba(255, 255, 255, 0.11);
}

.intake-form-heading .eyebrow { margin-bottom: 8px; }

.intake-form-heading h3 {
  max-width: 680px;
  margin-bottom: 8px;
  color: var(--ink);
  font-family: Georgia, "Times New Roman", serif;
  font-size: clamp(1.55rem, 2.5vw, 2.15rem);
  font-weight: 500;
  line-height: 1.12;
}

.intake-form-heading p:last-child {
  max-width: 660px;
  margin: 0;
  color: var(--muted);
  line-height: 1.6;
}

.intake-section-label {
  display: flex;
  align-items: center;
  gap: 10px;
  margin-top: 10px;
  padding-top: 4px;
}

.intake-section-label span {
  color: var(--gold-2);
  font-size: 0.72rem;
  font-weight: 800;
  letter-spacing: 0.1em;
}

.intake-section-label strong {
  color: var(--soft);
  font-size: 0.82rem;
  font-weight: 720;
  letter-spacing: 0.06em;
  text-transform: uppercase;
}

/* The final invitation receives one calm arrival cue, then rests. It does not
   repeat, animate the button, or alter form behavior. */
@keyframes contact-form-arrival {
  0% {
    border-color: rgba(217, 164, 65, 0.1);
    box-shadow: 0 0 0 rgba(217, 164, 65, 0), var(--shadow);
  }
  52% {
    border-color: rgba(217, 164, 65, 0.62);
    box-shadow: 0 0 34px rgba(217, 164, 65, 0.15), var(--shadow);
  }
  100% {
    border-color: var(--line);
    box-shadow: var(--shadow);
  }
}

@media (prefers-reduced-motion: no-preference) {
  .contact.is-contact-ready .contact-form {
    animation: contact-form-arrival 950ms ease-out 180ms both;
  }
}

/* Candidate-only first-contact compression. The explicit selector prevents
   the form grid rules from overriding the semantic hidden attribute. */
.contact-form [data-compression-field][hidden] {
  display: none !important;
}

.spam-trap {
  position: absolute !important;
  left: -10000px !important;
  width: 1px !important;
  height: 1px !important;
  overflow: hidden !important;
}

.contact-form label {
  display: grid;
  gap: 7px;
  min-width: 0;
}

.contact-form span {
  color: var(--soft);
  font-size: 0.86rem;
  font-weight: 680;
}

.full-field {
  grid-column: 1 / -1;
}

input,
select,
textarea {
  width: 100%;
  min-width: 0;
  border: 1px solid rgba(255, 255, 255, 0.16);
  border-radius: 11px;
  background: rgba(5, 9, 15, 0.72);
  color: var(--ink);
  padding: 11px 12px;
}

.campaign-intake-context {
  max-width: 560px;
  margin: 30px 0 24px;
  padding: 22px;
  border: 1px solid rgba(217, 164, 65, 0.28);
  border-radius: 18px;
  background:
    linear-gradient(145deg, rgba(217, 164, 65, 0.08), transparent 46%),
    rgba(14, 22, 33, 0.78);
}

.campaign-intake-context[hidden] { display: none !important; }
.campaign-intake-context .eyebrow { margin-bottom: 7px; font-size: 0.7rem; }
.campaign-intake-context > strong {
  display: block;
  margin-bottom: 8px;
  color: var(--ink);
  font-family: Georgia, "Times New Roman", serif;
  font-size: clamp(1.35rem, 2.4vw, 1.8rem);
  font-weight: 500;
  line-height: 1.18;
}
.campaign-intake-context > p:not(.eyebrow) { margin-bottom: 14px; color: var(--muted); line-height: 1.6; }
.campaign-intake-context ul { display: grid; gap: 8px; margin: 0; padding: 0; list-style: none; }
.campaign-intake-context li { position: relative; padding-left: 18px; color: var(--soft); font-size: 0.9rem; line-height: 1.45; }
.campaign-intake-context li::before { position: absolute; left: 0; color: var(--gold-2); content: "·"; }

html[data-intake-mode="campaign-kit"] .contact {
  background:
    radial-gradient(circle at 12% 18%, rgba(217, 164, 65, 0.11), transparent 28%),
    radial-gradient(circle at 88% 38%, rgba(66, 188, 255, 0.08), transparent 34%),
    linear-gradient(180deg, rgba(9, 14, 22, 0.98), rgba(6, 8, 12, 0.98));
}

html[data-intake-mode="campaign-kit"] .contact-form {
  border-color: rgba(217, 164, 65, 0.26);
  box-shadow: 0 30px 90px rgba(0, 0, 0, 0.42);
}

html[data-intake-mode="campaign-kit"] .founder-credibility {
  border-left-color: rgba(66, 188, 255, 0.7);
}

input,
select {
  min-height: 46px;
}

select {
  color-scheme: dark;
}

textarea {
  min-height: 130px;
  resize: vertical;
}

input::placeholder,
textarea::placeholder {
  color: rgba(174, 183, 196, 0.72);
}

.contact-form button {
  border: 1px solid var(--gold);
}

.form-status {
  min-height: 22px;
  margin: 0;
  color: var(--gold-2);
  font-size: 0.9rem;
  font-weight: 800;
}

.conversion-example {
  max-width: 700px;
  margin: 18px 0 0;
  padding: 12px 14px;
  border-left: 2px solid var(--blue);
  background: rgba(66, 188, 255, 0.06);
  color: var(--soft);
  font-size: 0.93rem;
  line-height: 1.5;
}

.conversion-example strong { color: var(--ink); }

.submission-path {
  padding: 13px 14px;
  border: 1px solid rgba(217, 164, 65, 0.32);
  border-radius: 10px;
  background: rgba(217, 164, 65, 0.05);
}

.submission-path > strong {
  display: block;
  color: var(--gold-2);
  font-size: 0.82rem;
  letter-spacing: 0.04em;
  text-transform: uppercase;
}

.submission-path ol {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 10px;
  margin: 10px 0 0;
  padding: 0;
  list-style: none;
}

.submission-path li { color: var(--soft); font-size: 0.85rem; line-height: 1.35; }
.submission-path li b { margin-right: 5px; color: var(--gold-2); }
.submission-path li span { color: inherit; font: inherit; }

/* Footer: conversion links stay useful without pretending unverified social profiles exist. */
.site-footer {
  border-top: 1px solid var(--line);
  padding: 40px 0 22px;
  background: rgba(6, 7, 10, 0.92);
}

.footer-grid {
  display: grid;
  grid-template-columns: minmax(260px, 1.5fr) repeat(3, minmax(150px, 1fr));
  gap: 28px;
}

.footer-brand,
.footer-grid nav {
  display: grid;
  align-content: start;
  gap: 8px;
}

.footer-brand strong,
.footer-grid nav strong {
  color: var(--soft);
}

.footer-brand p {
  max-width: 320px;
  margin: 4px 0 0;
}

.footer-grid a {
  color: var(--muted);
  font-size: 0.86rem;
  font-weight: 750;
  text-decoration: none;
}

.footer-grid a:hover {
  color: var(--gold-2);
}

.footer-bottom {
  display: flex;
  justify-content: space-between;
  gap: 16px;
  border-top: 1px solid var(--line);
  margin-top: 30px;
  padding-top: 18px;
  color: var(--muted);
  font-size: 0.78rem;
}

/* Tablet layout: stacks wide grids without creating tiny columns. */
@media (max-width: 980px) {
  .hero-grid,
  .split-section,
  .offer-grid,
  .deliverables-grid,
  .contact-grid,
  .platform-proof-grid,
  .notebooklm-grid {
    grid-template-columns: 1fr;
  }

  .hero {
    min-height: auto;
  }

  .problem .split-section {
    grid-template-columns: 1fr;
    align-items: start;
  }

  .problem-copy {
    max-width: 760px;
  }

  .problem h2 {
    max-width: 15ch;
  }

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

  .hero-media img {
    aspect-ratio: 3 / 2;
  }

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

  .conversion-cta {
    align-items: flex-start;
    flex-direction: column;
  }

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

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

/* Phone layout: simplified hero and single-column content. */
@media (max-width: 680px) {
  .container,
  .site-header {
    width: min(100% - 22px, var(--max-width));
  }

  .site-header {
    align-items: flex-start;
    flex-direction: column;
    position: relative;
    top: auto;
  }

  .site-nav {
    justify-content: flex-start;
  }

  .section-band {
    padding: 46px 0;
  }

  main section {
    scroll-margin-top: 12px;
  }

  .hero {
    padding-top: 34px;
    padding-bottom: 34px;
  }

  .hero-media {
    display: block;
    min-height: 300px;
    margin-top: 8px;
  }

  .hero-media picture,
  .hero-media img {
    min-height: 300px;
  }

  .hero-media img {
    height: 300px;
    aspect-ratio: 4 / 3;
    object-position: 63% center;
  }

  .hero-media::before {
    width: 18%;
  }

  .hero-scene-caption {
    display: none;
  }

  h1 {
    font-size: clamp(3.3rem, 16vw, 5rem);
  }

  .hero-lede {
    font-size: 1rem;
  }

  .hero-actions .primary-button,
  .hero-actions .secondary-button,
  .contact-form button {
    width: 100%;
  }

  .problem-list article {
    grid-template-columns: 1fr;
    min-height: auto;
  }

  .help-grid,
  .steps-grid,
  .deliverable-list,
  .outcome-strip,
  .contact-form {
    grid-template-columns: 1fr;
  }

  .platform-proof-media img {
    width: 155%;
    max-width: none;
    height: 270px;
    object-fit: cover;
    object-position: left center;
  }

  .platform-proof-summary {
    position: relative;
    width: auto;
    border-top: 1px solid rgba(217, 164, 65, 0.32);
    border-left: 0;
  }

  .feature-card,
  .step-card,
  .deliverable-list article {
    min-height: auto;
  }

  .notebooklm-video-shell,
  .notebooklm-video-shell video {
    min-height: 280px;
  }

  .footer-grid {
    grid-template-columns: 1fr;
  }

  .footer-bottom {
    align-items: flex-start;
    flex-direction: column;
  }
}

@media (prefers-reduced-motion: reduce) {
  .hospitality-signal-field {
    display: none;
  }

  html {
    scroll-behavior: auto;
  }

  .primary-button:hover,
  .secondary-button:hover {
    transform: none;
  }

  .hero-media,
  .hero-media img {
    transition: none;
  }

  body {
    background-attachment: scroll;
  }
}

/* Dedicated Campaign Kit fit-check: the public page uses the same restrained
   hospitality system as the main intake while keeping the sales context close. */
.campaign-kit-intake {
  border-top: 1px solid rgba(217, 164, 65, 0.18);
  background:
    radial-gradient(circle at 14% 16%, rgba(217, 164, 65, 0.08), transparent 24rem),
    linear-gradient(180deg, rgba(7, 12, 20, 0.98), rgba(6, 9, 15, 0.98));
}

.campaign-kit-intake-grid {
  display: grid;
  grid-template-columns: minmax(0, 0.9fr) minmax(520px, 1.1fr);
  gap: clamp(34px, 5vw, 72px);
  align-items: start;
}

.campaign-kit-intake-copy { position: sticky; top: 110px; }
.campaign-kit-intake-copy h2 { max-width: 760px; margin: 14px 0 18px; font-family: Georgia, "Times New Roman", serif; font-size: clamp(2.1rem, 4.6vw, 4.4rem); line-height: 1.04; }
.campaign-kit-intake-copy > p:not(.eyebrow):not(.campaign-kit-intake-alternative) { max-width: 700px; color: var(--muted); font-size: 1rem; line-height: 1.75; }
.campaign-kit-intake-promise { display: grid; gap: 9px; margin: 26px 0 20px; }
.campaign-kit-intake-promise article { display: grid; grid-template-columns: 36px minmax(0, 1fr); gap: 12px; align-items: start; padding: 14px; border: 1px solid rgba(230, 236, 246, 0.12); border-radius: 12px; background: rgba(14, 23, 35, 0.68); }
.campaign-kit-intake-promise article > span { display: grid; width: 32px; height: 32px; place-items: center; border: 1px solid rgba(217, 164, 65, 0.45); border-radius: 50%; color: var(--gold-2); font-size: 0.78rem; font-weight: 900; }
.campaign-kit-intake-promise strong,
.campaign-kit-intake-promise small { display: block; }
.campaign-kit-intake-promise strong { color: var(--ink); font-size: 0.94rem; }
.campaign-kit-intake-promise small { margin-top: 4px; color: var(--muted); font-size: 0.8rem; line-height: 1.45; }
.campaign-kit-intake-alternative { color: var(--soft); font-size: 0.88rem; line-height: 1.55; }
.campaign-kit-intake-alternative a { color: var(--gold-2); font-weight: 800; }

.campaign-kit-fit-form { border-color: rgba(217, 164, 65, 0.26); background: linear-gradient(155deg, rgba(18, 29, 43, 0.96), rgba(9, 15, 24, 0.98)); box-shadow: 0 28px 80px rgba(0, 0, 0, 0.32); }
.campaign-kit-form-heading { padding-bottom: 16px; border-bottom: 1px solid rgba(230, 236, 246, 0.11); }
.campaign-kit-form-heading h3 { margin: 3px 0 8px; color: var(--ink); font-family: Georgia, "Times New Roman", serif; font-size: clamp(1.5rem, 2.4vw, 2rem); }
.campaign-kit-form-heading > p:last-child { margin: 0; color: var(--muted); font-size: 0.84rem; line-height: 1.5; }
.campaign-kit-fit-form label > span { line-height: 1.35; }
.campaign-kit-fit-form .local-form-protection { border-left: 3px solid var(--gold-2); background: rgba(217, 164, 65, 0.07); padding: 11px 12px; }
.campaign-kit-fit-form .form-status[data-state="success"] { color: #8be0b8; }
.campaign-kit-fit-form .form-status[data-state="error"] { color: #ff9b9b; }

@media (max-width: 960px) {
  .campaign-kit-intake-grid { grid-template-columns: 1fr; }
  .campaign-kit-intake-copy { position: static; }
}


/* AI lead output: appears after the backend qualifies and saves the lead. */
.ai-output-panel {
  border: 1px solid rgba(66, 188, 255, 0.38);
  border-radius: var(--radius);
  background: rgba(6, 7, 10, 0.72);
  padding: 18px;
}

.output-header {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  gap: 16px;
  border-bottom: 1px solid var(--line);
  margin-bottom: 14px;
  padding-bottom: 12px;
}

.output-header h3 {
  margin-bottom: 0;
}

.lead-score {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-width: 84px;
  border: 1px solid rgba(217, 164, 65, 0.65);
  border-radius: var(--radius);
  color: var(--gold-2);
  font-weight: 950;
  padding: 10px 12px;
}

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

.output-grid article,
.email-output {
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: rgba(255, 255, 255, 0.04);
  padding: 14px;
}

.output-grid strong,
.email-output strong {
  display: block;
  color: var(--soft);
  margin-bottom: 6px;
}

.output-grid p,
.email-output p {
  margin-bottom: 0;
}

.email-output {
  margin-top: 12px;
}

.email-output pre {
  white-space: pre-wrap;
  color: var(--muted);
  font: inherit;
  margin: 10px 0 0;
}

.save-note {
  margin: 12px 0 0;
  color: var(--gold-2);
  font-weight: 850;
}

.form-status.error {
  color: #ff9b9b;
}

.form-status.success {
  color: #82f0bd;
}

@media (max-width: 680px) {
  .output-header,
  .output-grid {
    grid-template-columns: 1fr;
  }

  .output-header {
    display: grid;
  }
}


/* Emotional copy follows the problem, after the hero makes the next action clear. */
.problem-emotion {
  max-width: 48ch;
  margin: 18px 0 0;
  color: var(--gold-2);
  font-size: clamp(1rem, 1.8vw, 1.18rem);
  font-weight: 850;
  line-height: 1.45;
}

/* Conversion trust: evidence and human-control signals appear before the visitor evaluates details. */
.trust-band {
  border-top: 1px solid rgba(217, 164, 65, 0.28);
  border-bottom: 1px solid var(--line);
  background: rgba(8, 11, 16, 0.92);
  padding: 28px 0;
}

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

.trust-grid article {
  border-left: 2px solid var(--gold);
  padding: 8px 16px;
}

.trust-grid strong,
.trust-grid span {
  display: block;
}

.trust-grid strong {
  margin-bottom: 6px;
  color: var(--soft);
}

.trust-grid span {
  color: var(--muted);
  font-size: 0.9rem;
}

/* Sample proof: demonstrates the deliverable without claiming a client outcome. */
.sample-audit {
  background: linear-gradient(135deg, rgba(66, 188, 255, 0.07), transparent 42%), rgba(6, 7, 10, 0.88);
}

.sample-heading {
  display: grid;
  grid-template-columns: minmax(0, 1.25fr) minmax(280px, 0.75fr);
  gap: 32px;
  align-items: end;
  margin-bottom: 28px;
}

.sample-heading p:last-child {
  margin-bottom: 0;
}

/* Mini-Audit proof: one strong artifact and a fast owner-level value read. */
.audit-proof-grid {
  display: grid;
  grid-template-columns: minmax(0, .95fr) minmax(0, 1.05fr);
  gap: 28px;
  align-items: stretch;
}

.audit-proof-preview,
.audit-proof-content {
  border: 1px solid rgba(217, 164, 65, .28);
  border-radius: calc(var(--radius) * 1.4);
  background: linear-gradient(145deg, rgba(16, 25, 39, .96), rgba(7, 10, 15, .96));
  box-shadow: 0 24px 64px rgba(0, 0, 0, .34);
}

.audit-proof-preview {
  display: flex;
  flex-direction: column;
  overflow: hidden;
  color: var(--muted);
  text-decoration: none;
}

.audit-proof-preview picture {
  display: block;
  padding: 18px 18px 0;
}

.audit-proof-preview img {
  display: block;
  width: 100%;
  aspect-ratio: 16 / 10;
  object-fit: cover;
  border: 1px solid rgba(255, 255, 255, .1);
  border-radius: calc(var(--radius) * .8);
  transition: transform 220ms ease, filter 220ms ease;
}

.audit-proof-preview:hover img,
.audit-proof-preview:focus img {
  transform: scale(1.012);
  filter: brightness(1.06);
}

.audit-proof-preview span {
  padding: 14px 18px 16px;
  color: var(--muted);
  font-size: .78rem;
  letter-spacing: .04em;
}

.audit-proof-preview--artifact {
  min-height: 100%;
  padding: clamp(24px, 4vw, 38px);
  background:
    linear-gradient(135deg, rgba(20, 190, 255, .12), transparent 36%),
    linear-gradient(145deg, #0b1522, #06090e 78%);
}

.audit-artifact-header {
  display: flex;
  align-items: center;
  gap: 10px;
  color: var(--ink);
  font-size: .82rem;
}

.audit-artifact-header > span {
  display: grid;
  width: 31px;
  height: 31px;
  padding: 0;
  place-items: center;
  border: 1px solid var(--gold-2);
  border-radius: 9px;
  color: var(--gold-2);
  font: 700 .72rem/1 Georgia, "Times New Roman", serif;
  letter-spacing: .04em;
}

.audit-artifact-header em {
  margin-left: auto;
  color: var(--muted);
  font-size: .68rem;
  font-style: normal;
  letter-spacing: .07em;
  text-transform: uppercase;
}

.audit-artifact-title {
  margin: clamp(30px, 5vw, 52px) 0 28px;
}

.audit-artifact-title p,
.audit-artifact-columns span,
.audit-artifact-decision span {
  margin: 0 0 7px;
  color: var(--gold-2);
  font-size: .7rem;
  font-weight: 700;
  letter-spacing: .1em;
  text-transform: uppercase;
}

.audit-artifact-title h3 {
  max-width: 13ch;
  margin: 0;
  color: var(--ink);
  font: 600 clamp(1.8rem, 3vw, 2.8rem)/1.02 Georgia, "Times New Roman", serif;
}

.audit-artifact-columns {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 12px;
}

.audit-artifact-columns > div,
.audit-artifact-decision {
  padding: 16px;
  border: 1px solid rgba(255, 255, 255, .11);
  border-radius: 12px;
  background: rgba(255, 255, 255, .035);
}

.audit-artifact-columns span,
.audit-artifact-decision span {
  display: block;
}

.audit-artifact-columns strong,
.audit-artifact-decision strong {
  display: block;
  color: var(--ink);
  font: 600 1.02rem/1.2 Georgia, "Times New Roman", serif;
}

.audit-artifact-columns p {
  margin: 8px 0 0;
  color: var(--muted);
  font-size: .78rem;
  line-height: 1.45;
}

.audit-artifact-decision {
  margin-top: 12px;
  border-color: rgba(217, 164, 65, .35);
}

.audit-artifact-footer {
  margin: auto 0 0;
  padding-top: 22px;
  color: var(--muted);
  font-size: .7rem;
  letter-spacing: .05em;
}

.audit-proof-content {
  padding: clamp(24px, 4vw, 38px);
}

.audit-proof-kicker {
  margin: 0 0 18px;
  color: var(--gold-2);
  font-size: .76rem;
  font-weight: 700;
  letter-spacing: .11em;
  text-transform: uppercase;
}

.audit-proof-list {
  display: grid;
  gap: 16px;
  margin: 0;
  padding: 0;
  list-style: none;
}

.audit-proof-list li {
  display: grid;
  grid-template-columns: minmax(170px, .7fr) minmax(0, 1.3fr);
  gap: 14px;
  padding-bottom: 15px;
  border-bottom: 1px solid rgba(255, 255, 255, .1);
}

.audit-proof-list li:last-child {
  padding-bottom: 0;
  border-bottom: 0;
}

.audit-proof-list strong {
  color: var(--ink);
  font: 600 1.05rem/1.2 Georgia, "Times New Roman", serif;
}

.audit-proof-list span,
.audit-proof-note {
  color: var(--muted);
  font-size: .9rem;
  line-height: 1.55;
}

.audit-proof-note {
  margin: 22px 0 0;
  padding-top: 16px;
  border-top: 1px solid rgba(217, 164, 65, .2);
}

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

.condensed-audit-page {
  overflow: hidden;
  border: 1px solid rgba(217, 164, 65, .28);
  border-radius: calc(var(--radius) * 1.4);
  background: linear-gradient(180deg, rgba(14, 25, 42, .98), rgba(8, 13, 23, .98));
  box-shadow: 0 24px 64px rgba(0, 0, 0, .34);
}

.condensed-audit-page > a {
  display: block;
  overflow: hidden;
  border-bottom: 1px solid var(--line);
  background: #07111d;
}

.condensed-audit-page picture {
  display: block;
}

.condensed-audit-page img {
  display: block;
  width: 100%;
  aspect-ratio: 16 / 9;
  object-fit: contain;
  object-position: center;
  transition: filter 220ms ease;
}

.condensed-audit-page > a:hover img,
.condensed-audit-page > a:focus img {
  filter: brightness(1.08);
}

.condensed-audit-page > div {
  padding: 18px 18px 20px;
}

.condensed-audit-page span {
  display: block;
  margin-bottom: 8px;
  color: var(--gold-2);
  font-size: .7rem;
  font-weight: 950;
  letter-spacing: .12em;
  text-transform: uppercase;
}

.condensed-audit-page h3 {
  margin: 0 0 8px;
  color: var(--ink);
  font: 600 clamp(1.3rem, 2vw, 1.75rem)/1.08 Georgia, "Times New Roman", serif;
}

.condensed-audit-page p {
  margin: 0;
  font-size: .84rem;
  line-height: 1.55;
}

.condensed-audit-footer {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  margin-top: 24px;
  border-top: 1px solid var(--line);
  padding-top: 20px;
}

.condensed-audit-footer p {
  margin: 0;
  font-size: .76rem;
}

.condensed-audit-footer .primary-button {
  flex: 0 0 auto;
}

/* Problem-to-workflow selector: static, owner-focused choices with measured CTA clicks. */
.workflow-selector {
  border-top: 1px solid rgba(217, 164, 65, .22);
  background:
    radial-gradient(circle at 15% 15%, rgba(217, 164, 65, .1), transparent 30%),
    radial-gradient(circle at 88% 80%, rgba(66, 188, 255, .08), transparent 34%),
    rgba(8, 11, 17, .94);
}

.workflow-selector-heading {
  display: grid;
  grid-template-columns: minmax(0, 1.15fr) minmax(300px, .85fr);
  align-items: end;
  gap: 34px;
  margin-bottom: 28px;
}

.workflow-selector-heading h2 {
  max-width: 780px;
  margin-bottom: 0;
}

.workflow-selector-heading > p {
  margin-bottom: 4px;
}

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

.workflow-choice {
  position: relative;
  display: flex;
  min-height: 430px;
  flex-direction: column;
  overflow: hidden;
  border: 1px solid var(--line);
  border-radius: calc(var(--radius) * 1.4);
  padding: 24px;
  color: inherit;
  text-decoration: none;
  background:
    linear-gradient(145deg, rgba(21, 36, 56, .92), rgba(8, 14, 24, .97) 58%),
    var(--panel);
  box-shadow: 0 24px 64px rgba(0, 0, 0, .28);
  transition: border-color 180ms ease, transform 180ms ease, box-shadow 180ms ease;
}

.workflow-choice::after {
  position: absolute;
  inset: auto -70px -90px auto;
  width: 190px;
  height: 190px;
  border: 1px solid rgba(66, 188, 255, .16);
  border-radius: 50%;
  content: "";
}

.workflow-choice:hover,
.workflow-choice:focus-visible,
.workflow-choice.is-selected {
  border-color: rgba(217, 164, 65, .66);
  transform: translateY(-4px);
  box-shadow: 0 30px 76px rgba(0, 0, 0, .38);
}

.workflow-choice-number {
  display: grid;
  place-items: center;
  width: 42px;
  height: 42px;
  margin-bottom: 24px;
  border: 1px solid rgba(217, 164, 65, .55);
  border-radius: 50%;
  color: var(--gold-2);
  font-size: .78rem;
  font-weight: 950;
}

.workflow-choice-kicker {
  margin: 0 0 9px;
  color: var(--blue);
  font-size: .72rem;
  font-weight: 950;
  letter-spacing: .1em;
  text-transform: uppercase;
}

.workflow-choice h3 {
  margin: 0 0 12px;
  color: var(--ink);
  font: 600 clamp(1.55rem, 2.25vw, 2.05rem)/1.06 Georgia, "Times New Roman", serif;
}

.workflow-choice > p:not(.workflow-choice-kicker) {
  margin-bottom: 20px;
  font-size: .88rem;
}

.workflow-choice ol {
  display: flex;
  flex-wrap: wrap;
  gap: 7px;
  margin: auto 0 22px;
  padding: 0;
  list-style: none;
}

.workflow-choice li {
  border: 1px solid rgba(255, 255, 255, .11);
  border-radius: 999px;
  padding: 6px 9px;
  color: var(--soft);
  font-size: .68rem;
  font-weight: 750;
}

.workflow-choice strong {
  position: relative;
  z-index: 1;
  color: var(--gold-2);
  font-size: .8rem;
}

.workflow-selector-note {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin-top: 20px;
}

.workflow-selector-note span {
  border: 1px solid var(--line);
  border-radius: 999px;
  padding: 7px 10px;
  color: var(--muted);
  font-size: .68rem;
  font-weight: 750;
}

.form-reassurance {
  margin: -2px 0 0;
  color: var(--muted);
  font-size: 0.8rem;
  text-align: center;
}

@media (max-width: 980px) {
  .sample-heading {
    grid-template-columns: 1fr;
  }

  .audit-proof-grid {
    grid-template-columns: 1fr;
  }

  .audit-proof-list li {
    grid-template-columns: 1fr;
    gap: 5px;
  }

  .audit-artifact-columns {
    grid-template-columns: 1fr;
  }

  .condensed-audit-grid {
    grid-template-columns: 1fr;
  }

  .workflow-selector-heading,
  .workflow-choice-grid {
    grid-template-columns: 1fr;
  }

  .workflow-choice {
    min-height: 0;
  }

  .workflow-choice ol {
    margin-top: 8px;
  }
}

@media (max-width: 680px) {
  .trust-grid {
    grid-template-columns: 1fr;
  }

  .condensed-audit-footer {
    align-items: stretch;
    flex-direction: column;
  }

  .workflow-choice {
    padding: 21px;
  }

  .workflow-selector-heading {
    gap: 18px;
  }

  .hero-copy h1 {
    font-size: clamp(2.35rem, 10.5vw, 3.35rem);
  }

  .problem h2 {
    max-width: none;
    font-size: clamp(2.25rem, 11vw, 3.15rem);
  }

  .problem-list {
    grid-template-columns: 1fr;
  }
}

/* Persuasive color hierarchy: pressure feels darker, while relief and action feel warmer. */
.problem {
  border-color: rgba(255, 255, 255, 0.1);
  background:
    linear-gradient(135deg, rgba(2, 3, 6, 0.96), rgba(8, 12, 18, 0.88)),
    rgba(4, 6, 10, 0.92);
}

.problem .eyebrow {
  color: #c7d0dc;
}

.problem-list article {
  border-color: rgba(255, 255, 255, 0.11);
  background: rgba(255, 255, 255, 0.025);
  transition: border-color 180ms ease, background-color 180ms ease, transform 180ms ease;
}

.problem-list article:hover {
  border-color: rgba(217, 164, 65, 0.34);
  background: rgba(217, 164, 65, 0.055);
  transform: translateY(-2px);
}

#helps {
  background:
    radial-gradient(circle at 82% 20%, rgba(66, 188, 255, 0.075), transparent 32%),
    rgba(8, 11, 16, 0.72);
}

.feature-card {
  transition: border-color 180ms ease, transform 180ms ease, box-shadow 180ms ease;
}

.feature-card:hover {
  border-color: rgba(66, 188, 255, 0.34);
  transform: translateY(-3px);
  box-shadow: 0 22px 54px rgba(0, 0, 0, 0.3);
}

.audit-offer,
.contact {
  background:
    radial-gradient(circle at 16% 12%, rgba(217, 164, 65, 0.15), transparent 34%),
    radial-gradient(circle at 84% 45%, rgba(66, 188, 255, 0.075), transparent 38%),
    rgba(7, 9, 13, 0.92);
}

.primary-button,
.contact-form button {
  box-shadow: 0 12px 34px rgba(217, 164, 65, 0.2);
  transition: transform 180ms ease, box-shadow 180ms ease, background-color 180ms ease;
}

.primary-button:hover,
.contact-form button:hover {
  background: var(--gold-2);
  box-shadow: 0 16px 42px rgba(217, 164, 65, 0.3);
}

.outcome-card:nth-child(3) {
  border-color: rgba(217, 164, 65, 0.46);
  background:
    linear-gradient(145deg, rgba(217, 164, 65, 0.2), transparent 48%),
    rgba(12, 16, 23, 0.94);
}

.founder {
  border-color: rgba(217, 164, 65, 0.24);
  background:
    linear-gradient(110deg, rgba(217, 164, 65, 0.11), rgba(66, 188, 255, 0.045) 55%, transparent),
    rgba(10, 13, 18, 0.9);
}

.founder-note blockquote::before {
  display: block;
  width: 72px;
  height: 3px;
  margin-bottom: 24px;
  background: var(--gold);
  content: "";
}

@media (prefers-reduced-motion: reduce) {
  .problem-list article:hover,
  .feature-card:hover {
    transform: none;
  }
}

/* Cloudflare public intake additions. These styles exist only in the deployment copy. */
.contact-form select {
  width: 100%;
  min-height: 48px;
  border: 1px solid rgba(230, 236, 246, 0.16);
  border-radius: 10px;
  background: #10141b;
  color: #f6f7fb;
  padding: 0.8rem 0.9rem;
  font: inherit;
}

.contact-form small {
  color: var(--muted);
  font-weight: 400;
}

.honeypot {
  position: absolute !important;
  width: 1px;
  height: 1px;
  overflow: hidden;
  clip-path: inset(50%);
  white-space: nowrap;
  opacity: 0;
  pointer-events: none;
}

.turnstile-field {
  min-height: 66px;
}

.consent-field {
  display: grid !important;
  grid-template-columns: auto 1fr;
  gap: 0.75rem;
  align-items: start;
  color: var(--muted);
  line-height: 1.55;
}

.consent-field input {
  width: 1.1rem;
  height: 1.1rem;
  margin-top: 0.2rem;
  accent-color: var(--gold);
}

.legal-band {
  border-top: 1px solid rgba(230, 236, 246, 0.08);
  background: #090c11;
}

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

.legal-grid article {
  padding: clamp(1.3rem, 3vw, 2rem);
  border: 1px solid rgba(230, 236, 246, 0.1);
  border-radius: 16px;
  background: rgba(255, 255, 255, 0.025);
}

.legal-grid h2 {
  font-size: clamp(1.25rem, 2.5vw, 1.7rem);
}

/* Controlled Event Promotion Plan candidate. It stays hidden on the approved
   production page and is only visible through its explicit candidate URL. */
.candidate-event-review[hidden] {
  display: none !important;
}

.problem-solution {
  max-width: 560px;
  margin: 26px 0 0;
  padding: 18px 20px;
  border-left: 3px solid var(--gold);
  background: rgba(217, 164, 65, 0.08);
  color: var(--soft);
  font-size: 1.04rem;
}

.event-timeline {
  border-top: 1px solid rgba(217, 164, 65, 0.26);
  border-bottom: 1px solid rgba(217, 164, 65, 0.2);
  background: linear-gradient(120deg, rgba(9, 15, 25, 0.94), rgba(12, 18, 28, 0.72));
}

.event-timeline-heading,
.illustrative-proof-heading,
.continuity-grid {
  display: grid;
  grid-template-columns: minmax(0, 1.15fr) minmax(260px, 0.85fr);
  gap: clamp(1.5rem, 5vw, 5rem);
  align-items: end;
}

.event-timeline-heading p,
.illustrative-proof-heading > p,
.continuity-grid > p {
  margin-bottom: 8px;
  font-size: 1.05rem;
}

.event-timeline-list {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 1px;
  margin-top: 34px;
  padding: 1px;
  list-style: none;
  background: rgba(230, 236, 246, 0.14);
}

.event-timeline-list li {
  min-height: 228px;
  padding: 22px;
  background: rgba(10, 15, 24, 0.97);
}

.event-timeline-list span,
.illustrative-proof-grid span {
  display: block;
  margin-bottom: 14px;
  color: var(--gold-2);
  font-size: 0.73rem;
  font-weight: 900;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.event-timeline-list strong {
  display: block;
  margin-bottom: 10px;
  color: var(--soft);
  font-size: 1.15rem;
}

.event-timeline-list p {
  margin-bottom: 0;
  font-size: 0.98rem;
}

.event-timeline-cta {
  display: flex;
  justify-content: center;
  padding-top: 30px;
}

.illustrative-proof {
  background: rgba(7, 12, 20, 0.76);
}

/* Optional detail keeps first-time owner flow concise without removing proof. */
.consulting-deep-dive {
  border-top: 1px solid rgba(230, 236, 246, 0.1);
  border-bottom: 1px solid rgba(230, 236, 246, 0.1);
  background: rgba(7, 12, 20, 0.48);
}

.consulting-deep-dive > summary {
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto;
  gap: 5px 18px;
  width: min(var(--max-width), calc(100% - 32px));
  margin: 0 auto;
  border: 1px solid rgba(230, 190, 104, 0.34);
  border-radius: 14px;
  background: linear-gradient(105deg, rgba(230, 190, 104, 0.08), rgba(24, 33, 45, 0.72) 58%, rgba(66, 188, 255, 0.05));
  padding: 18px 20px;
  color: var(--gold-2);
  cursor: pointer;
}

.consulting-deep-dive > summary span {
  grid-column: 1;
  color: var(--muted);
  font-size: 0.78rem;
  font-weight: 800;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.consulting-deep-dive > summary strong { grid-column: 1; font-size: 1.05rem; }
.consulting-deep-dive > summary small { grid-column: 1; color: var(--soft); font-size: 0.82rem; }
.consulting-deep-dive > summary::after { content: "+"; grid-column: 2; grid-row: 1 / span 2; align-self: center; color: var(--gold-2); font-size: 1.5rem; font-weight: 300; line-height: 1; }
.consulting-deep-dive[open] > summary::after { content: "−"; }
.consulting-deep-dive > summary:hover { border-color: rgba(230, 190, 104, 0.62); background: linear-gradient(105deg, rgba(230, 190, 104, 0.12), rgba(24, 33, 45, 0.82) 58%, rgba(66, 188, 255, 0.08)); }
.consulting-deep-dive[open] > summary { border-bottom: 1px solid rgba(230, 236, 246, 0.1); }

.illustrative-proof-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 16px;
  margin-top: 32px;
}

.illustrative-proof-grid article {
  min-height: 236px;
  padding: clamp(1.25rem, 2vw, 1.75rem);
  border: 1px solid rgba(230, 236, 246, 0.14);
  border-top: 2px solid rgba(217, 164, 65, 0.78);
  background: rgba(15, 22, 34, 0.86);
}

.illustrative-proof-grid h3 {
  margin-bottom: 18px;
  font-family: Georgia, "Times New Roman", serif;
  font-size: clamp(1.55rem, 2.5vw, 2rem);
}

.illustrative-proof-grid p {
  margin-bottom: 12px;
}

.illustrative-proof-grid strong,
.illustrative-proof-outcome strong {
  color: var(--soft);
}

.illustrative-proof-outcome {
  display: flex;
  gap: 12px;
  margin-top: 16px;
  padding: 18px 20px;
  border: 1px solid rgba(66, 188, 255, 0.26);
  background: rgba(66, 188, 255, 0.08);
  color: var(--muted);
}

.pilot-continuity {
  padding-top: clamp(42px, 5vw, 72px);
  padding-bottom: clamp(42px, 5vw, 72px);
  border-top: 1px solid rgba(230, 236, 246, 0.1);
}

@media (max-width: 980px) {
  .event-timeline-list {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

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

@media (max-width: 720px) {
  .submission-path ol { grid-template-columns: 1fr; gap: 7px; }
  .legal-grid {
    grid-template-columns: 1fr;
  }

  .turnstile-field {
    overflow-x: auto;
  }

  .event-timeline-heading,
  .illustrative-proof-heading,
  .continuity-grid,
  .illustrative-proof-grid {
    grid-template-columns: 1fr;
  }

  .event-timeline-list {
    grid-template-columns: 1fr;
    gap: 1px;
  }

  .event-timeline-list li {
    min-height: 0;
  }

  .illustrative-proof-outcome {
    display: block;
  }

  .illustrative-proof-outcome strong {
    display: block;
    margin-bottom: 6px;
  }
}


/* ViOS embedded-module safeguards: production Turnstile is handled only on the
   public domain. Local intake retains save-first rate limiting and deduplication. */
.local-form-protection {
  margin: 0;
  border: 1px solid rgba(77, 188, 255, 0.3);
  border-radius: 10px;
  background: rgba(25, 102, 151, 0.09);
  padding: 12px 14px;
  color: var(--muted);
  font-size: 0.88rem;
  line-height: 1.55;
}

/* Brand comfort layer: these longer sections stay dark and premium, but their
   slightly lifted charcoal surface makes sustained reading easier than a flat
   black scroll. Gold remains reserved for important decisions and actions. */
#process,
.platform-proof,
.deliverables {
  border-top: 1px solid rgba(255, 255, 255, 0.08);
  border-bottom: 1px solid rgba(255, 255, 255, 0.06);
  background:
    linear-gradient(135deg, rgba(66, 188, 255, 0.035), transparent 42%),
    linear-gradient(180deg, var(--reading-surface-soft), var(--reading-surface));
}

#process .step-card,
.platform-proof-list li,
.deliverable-list article {
  background: rgba(24, 33, 45, 0.76);
}

/* Keep the framework checklist light and continuous rather than looking like
   three separate cards. This comes after the shared reading-surface rule. */
.platform-proof-list li {
  background: transparent;
}

/* Calm motion layer: gives the page a little life without distracting from the
   Mini-Audit decision. JavaScript only adds the visible state once a section
   reaches the reader, and this whole layer is disabled for reduced motion. */
@media (prefers-reduced-motion: no-preference) {
  main > section[data-motion-reveal] {
    opacity: 0;
    transform: translateY(18px);
    transition: opacity 600ms ease, transform 700ms cubic-bezier(0.22, 1, 0.36, 1);
  }

  main > section[data-motion-reveal].is-motion-visible {
    opacity: 1;
    transform: translateY(0);
  }

  .primary-button,
  .secondary-button,
  .site-nav a,
  .audience-strip span {
    transition: transform 180ms ease, box-shadow 180ms ease, color 180ms ease,
      border-color 180ms ease, background-color 180ms ease;
  }

  .primary-button:active,
  .secondary-button:active {
    transform: translateY(1px) scale(0.985);
  }

  .audience-strip span:hover {
    transform: translateY(-2px);
    border-color: rgba(217, 164, 65, 0.48);
  }

  .consulting-deep-dive {
    transition: border-color 180ms ease, background-color 180ms ease;
  }

  .consulting-deep-dive:hover {
    border-color: rgba(217, 164, 65, 0.38);
    background-color: rgba(217, 164, 65, 0.045);
  }

  /* Optional framework: the three decisions arrive in their real working
     order once the owner opens the section. It does not repeat or add a
     second ambient background. */
  .consulting-deep-dive.is-framework-ready .platform-decision-rhythm ol li {
    opacity: 0;
    transform: translateY(12px);
  }

  .consulting-deep-dive.is-framework-revealed .platform-decision-rhythm ol li {
    animation: framework-decision-arrival 520ms cubic-bezier(0.22, 1, 0.36, 1) both;
  }

  .consulting-deep-dive.is-framework-revealed .platform-decision-rhythm ol li:nth-child(2) {
    animation-delay: 140ms;
  }

  .consulting-deep-dive.is-framework-revealed .platform-decision-rhythm ol li:nth-child(3) {
    animation-delay: 280ms;
  }
}

@keyframes framework-decision-arrival {
  0% {
    opacity: 0;
    transform: translateY(12px);
  }
  62% {
    opacity: 1;
    transform: translateY(-1px);
  }
  100% {
    opacity: 1;
    transform: translateY(0);
  }
}

/* Campaign Kits: tangible productized consulting without turning the site into
   a generic print catalog. The full-width board makes the coordinated Canva-ready
   family readable before the supporting offer details. */
.campaign-kit-showcase {
  position: relative;
  overflow: hidden;
  border-top: 1px solid rgba(230, 190, 104, 0.2);
  border-bottom: 1px solid rgba(66, 188, 255, 0.16);
  background:
    radial-gradient(circle at 84% 26%, rgba(66, 188, 255, 0.1), transparent 28%),
    radial-gradient(circle at 12% 82%, rgba(217, 164, 65, 0.08), transparent 26%),
    rgba(8, 13, 22, 0.92);
}

.campaign-kit-heading {
  display: grid;
  grid-template-columns: minmax(0, 1.08fr) minmax(300px, 0.72fr);
  gap: clamp(2rem, 6vw, 6rem);
  align-items: end;
  margin-bottom: clamp(2rem, 5vw, 4.5rem);
}

.campaign-kit-heading p:last-child { margin: 0; color: var(--muted); font-size: 1.04rem; line-height: 1.75; }

.campaign-kit-feature {
  display: grid;
  grid-template-columns: minmax(0, 1fr);
  gap: clamp(2.25rem, 5vw, 4.5rem);
}

.campaign-kit-feature > .campaign-kit-board {
  order: -1;
  width: min(100%, 1040px);
  margin-inline: auto;
}

.campaign-kit-copy {
  width: min(100%, 980px);
  margin-inline: auto;
}

.campaign-kit-kicker {
  color: var(--gold-2);
  font-size: 0.78rem;
  font-weight: 850;
  letter-spacing: 0.11em;
  text-transform: uppercase;
}

.campaign-kit-copy > h3 {
  max-width: 720px;
  margin: 0 0 18px;
  font-family: Georgia, "Times New Roman", serif;
  font-size: clamp(1.8rem, 3.4vw, 3.2rem);
  line-height: 1.08;
}

.campaign-kit-copy > p:not(.campaign-kit-kicker):not(.campaign-kit-boundary) { max-width: 700px; color: var(--muted); }

.campaign-kit-signals {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin: 22px 0 4px;
}

.campaign-kit-signals span {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  border: 1px solid rgba(230, 236, 246, 0.12);
  border-radius: 999px;
  background: rgba(11, 18, 29, 0.76);
  padding: 7px 11px;
  color: rgba(238, 243, 249, 0.78);
  font-size: 0.72rem;
  letter-spacing: 0.035em;
}

.campaign-kit-signals b { color: var(--gold-2); font-size: 0.63rem; letter-spacing: 0.08em; }

.campaign-kit-contents {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 12px;
  margin: 28px 0 20px;
}

.campaign-kit-contents article {
  border: 1px solid rgba(230, 236, 246, 0.13);
  border-radius: 14px;
  background: rgba(19, 27, 39, 0.78);
  padding: 20px;
}

.campaign-kit-contents span { display: block; margin-bottom: 6px; color: var(--gold-2); font-size: 0.72rem; font-weight: 850; letter-spacing: 0.09em; text-transform: uppercase; }
.campaign-kit-contents strong { display: block; margin-bottom: 12px; font-size: 1rem; }
.campaign-kit-contents ul { margin: 0; padding-left: 1.1rem; color: var(--muted); font-size: 0.88rem; line-height: 1.65; }

.campaign-kit-preview-protection {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 12px;
  margin: 0 0 20px;
}

.campaign-kit-preview-protection article {
  border: 1px solid rgba(66, 188, 255, 0.16);
  border-radius: 14px;
  background: linear-gradient(145deg, rgba(11, 22, 35, 0.9), rgba(12, 17, 25, 0.9));
  padding: 18px 20px;
}

.campaign-kit-preview-protection span {
  display: block;
  margin-bottom: 7px;
  color: var(--gold-2);
  font-size: 0.68rem;
  font-weight: 850;
  letter-spacing: 0.1em;
  text-transform: uppercase;
}

.campaign-kit-preview-protection strong {
  display: block;
  margin-bottom: 8px;
  color: var(--ink);
  font-family: Georgia, "Times New Roman", serif;
  font-size: 1rem;
}

.campaign-kit-preview-protection p {
  margin: 0;
  color: var(--muted);
  font-size: 0.84rem;
  line-height: 1.58;
}

.campaign-kit-boundary {
  margin: 0;
  border-left: 2px solid rgba(217, 164, 65, 0.62);
  background: rgba(217, 164, 65, 0.06);
  padding: 14px 16px;
  color: var(--muted);
  font-size: 0.88rem;
  line-height: 1.62;
}

.campaign-kit-actions { display: flex; flex-wrap: wrap; gap: 14px 18px; align-items: center; margin-top: 24px; }
.campaign-kit-actions span { max-width: 280px; color: var(--soft); font-size: 0.78rem; line-height: 1.45; }

.campaign-kit-board {
  position: relative;
  overflow: hidden;
  width: 100%;
  margin: 0;
  border: 1px solid rgba(230, 236, 246, 0.15);
  border-radius: 24px;
  background: #080d15;
  box-shadow: 0 38px 100px rgba(0, 0, 0, 0.44), inset 0 1px rgba(255, 255, 255, 0.04);
}

.is-protected-preview {
  position: relative;
}

.campaign-kit-watermark {
  position: absolute;
  z-index: 4;
  top: clamp(18px, 3vw, 34px);
  right: clamp(16px, 3vw, 30px);
  max-width: calc(100% - 32px);
  border: 1px solid rgba(255, 255, 255, 0.36);
  border-radius: 999px;
  background: rgba(5, 9, 15, 0.76);
  box-shadow: 0 8px 28px rgba(0, 0, 0, 0.38);
  padding: 8px 12px;
  color: rgba(255, 255, 255, 0.9);
  font-size: clamp(0.56rem, 1vw, 0.7rem);
  font-weight: 850;
  letter-spacing: 0.1em;
  line-height: 1.2;
  text-align: center;
  text-transform: uppercase;
  pointer-events: none;
}

.campaign-kit-board::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, transparent 58%, rgba(5, 9, 15, 0.22));
  pointer-events: none;
}

.campaign-kit-board img {
  display: block;
  width: 100%;
  height: auto;
  aspect-ratio: auto;
  object-fit: contain;
  object-position: center;
}

.campaign-kit-board figcaption {
  position: relative;
  z-index: 2;
  display: grid;
  gap: 6px;
  border-top: 1px solid rgba(230, 236, 246, 0.12);
  background: linear-gradient(90deg, rgba(12, 22, 35, 0.98), rgba(16, 18, 25, 0.98));
  padding: 18px 20px 20px;
}

.campaign-kit-board figcaption span { color: var(--gold-2); font-size: 0.63rem; font-weight: 850; letter-spacing: 0.12em; text-transform: uppercase; }
.campaign-kit-board figcaption strong { font-family: Georgia, "Times New Roman", serif; font-size: 1.02rem; line-height: 1.35; }
.campaign-kit-board figcaption small { color: var(--soft); font-size: 0.7rem; line-height: 1.5; }

@media (max-width: 980px) {
  .campaign-kit-heading { grid-template-columns: 1fr; }
}

@media (max-width: 680px) {
  .campaign-kit-contents,
  .campaign-kit-preview-protection { grid-template-columns: 1fr; }
  .campaign-kit-watermark { top: 12px; right: 12px; }
}

/* Homepage Campaign Kit teaser: enough proof to create interest without turning
   the main landing page into a product catalog. */
.campaign-kit-teaser {
  border-top: 1px solid rgba(230, 190, 104, 0.2);
  border-bottom: 1px solid rgba(66, 188, 255, 0.16);
  background:
    radial-gradient(circle at 84% 24%, rgba(66, 188, 255, 0.1), transparent 28%),
    rgba(8, 13, 22, 0.92);
}

.campaign-kit-teaser-grid {
  display: grid;
  grid-template-columns: minmax(0, 0.82fr) minmax(420px, 1.18fr);
  gap: clamp(2rem, 5vw, 4.5rem);
  align-items: center;
}

.campaign-kit-teaser-copy h2 {
  max-width: 680px;
  font-size: clamp(2.15rem, 4.5vw, 4.4rem);
}

.campaign-kit-teaser-copy > p:not(.eyebrow) {
  max-width: 650px;
  color: var(--muted);
  line-height: 1.7;
}

.campaign-kit-teaser-copy > small {
  display: block;
  margin-top: 14px;
  color: var(--soft);
}

.campaign-kit-teaser-board {
  position: relative;
  overflow: hidden;
  margin: 0;
  border: 1px solid rgba(230, 236, 246, 0.16);
  border-radius: 20px;
  background: #080d15;
  box-shadow: 0 30px 80px rgba(0, 0, 0, 0.42);
}

.campaign-kit-teaser-board img {
  display: block;
  width: 100%;
  height: auto;
  aspect-ratio: auto;
  object-fit: contain;
  object-position: center;
}

.campaign-kit-teaser-board picture,
.campaign-kit-board picture { display: block; background: #080d15; }

.campaign-kit-teaser-board figcaption {
  display: grid;
  gap: 4px;
  padding: 14px 16px 16px;
  border-top: 1px solid rgba(230, 236, 246, 0.12);
  background: rgba(12, 22, 35, 0.98);
}

.campaign-kit-teaser-board figcaption strong { font-family: Georgia, "Times New Roman", serif; }
.campaign-kit-teaser-board figcaption span { color: var(--soft); font-size: 0.78rem; line-height: 1.45; }

/* Dedicated Campaign Kits page: a focused store-like decision surface, while
   intake, proofing, payment, and production remain human controlled. */
.campaign-kits-page { background: #06090f; }

.campaign-store-hero {
  padding-top: clamp(7rem, 12vw, 10rem);
  background:
    radial-gradient(circle at 78% 25%, rgba(66, 188, 255, 0.13), transparent 30%),
    radial-gradient(circle at 18% 78%, rgba(217, 164, 65, 0.09), transparent 24%),
    rgba(7, 12, 20, 0.96);
}

.campaign-store-hero-grid {
  display: grid;
  grid-template-columns: minmax(0, 1.25fr) minmax(320px, 0.75fr);
  gap: clamp(2rem, 6vw, 6rem);
  align-items: center;
}

.campaign-store-hero h1 {
  max-width: 900px;
  margin: 18px 0 20px;
  font-family: Georgia, "Times New Roman", serif;
  font-size: clamp(3rem, 7vw, 6.8rem);
  line-height: 0.98;
}

.campaign-store-lede { max-width: 760px; color: var(--muted); font-size: 1.08rem; line-height: 1.75; }

.campaign-store-promise {
  display: grid;
  gap: 14px;
  padding: clamp(1.5rem, 4vw, 2.5rem);
  border: 1px solid rgba(230, 190, 104, 0.3);
  border-radius: 22px;
  background: linear-gradient(145deg, rgba(17, 28, 42, 0.94), rgba(8, 14, 23, 0.94));
  box-shadow: var(--shadow);
}

.campaign-store-promise span,
.campaign-tier-label {
  color: var(--gold-2);
  font-size: 0.72rem;
  font-weight: 850;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.campaign-store-promise strong { font-family: Georgia, "Times New Roman", serif; font-size: clamp(1.5rem, 2.8vw, 2.3rem); line-height: 1.2; }
.campaign-store-promise p { margin: 0; color: var(--muted); line-height: 1.65; }
.campaign-store-promise ul { display: grid; gap: 8px; margin: 0; padding-left: 1.15rem; color: var(--muted); line-height: 1.5; }
.campaign-store-promise li::marker { color: var(--gold-2); }

.campaign-store-heading { max-width: 980px; }
.campaign-store-heading > p:last-child { max-width: 760px; color: var(--muted); line-height: 1.7; }

.campaign-tier-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 18px;
  align-items: stretch;
}

.campaign-tier-card {
  display: flex;
  flex-direction: column;
  min-width: 0;
  padding: clamp(1.4rem, 3vw, 2rem);
  border: 1px solid rgba(230, 236, 246, 0.14);
  border-radius: 20px;
  background: rgba(16, 25, 38, 0.86);
  box-shadow: 0 20px 55px rgba(0, 0, 0, 0.24);
}

.campaign-tier-card.is-featured {
  border-color: rgba(217, 164, 65, 0.62);
  background: linear-gradient(160deg, rgba(38, 31, 18, 0.72), rgba(14, 25, 39, 0.94));
  transform: translateY(-8px);
}

.campaign-tier-card h3 { margin: 10px 0 8px; color: var(--ink); font-family: Georgia, "Times New Roman", serif; font-size: clamp(1.55rem, 2.5vw, 2.2rem); }
.campaign-tier-card > p:not(.campaign-tier-label):not(.campaign-tier-price) { color: var(--muted); line-height: 1.55; }
.campaign-tier-price { margin: 5px 0 6px; color: var(--ink); font-size: clamp(1.8rem, 2.8vw, 2.4rem); font-weight: 900; }
.campaign-tier-price small { color: var(--soft); font-size: 0.72rem; font-weight: 700; }
.campaign-tier-card .campaign-tier-fit { margin: 2px 0 6px; border-left: 2px solid rgba(217, 164, 65, 0.52); padding-left: 11px; font-size: 0.84rem; }
.campaign-tier-fit strong { color: var(--ink); }
.campaign-tier-badge { align-self: flex-start; margin-top: 10px; border: 1px solid rgba(217, 164, 65, 0.38); border-radius: 999px; background: rgba(217, 164, 65, 0.09); padding: 6px 9px; color: var(--gold-2); font-size: 0.62rem; font-weight: 850; letter-spacing: 0.08em; text-transform: uppercase; }
.campaign-tier-card ul { flex: 1; margin: 12px 0 24px; padding-left: 1.15rem; color: var(--muted); line-height: 1.7; }
.campaign-tier-card .primary-button,
.campaign-tier-card .secondary-button { width: 100%; }
.campaign-tier-boundary { margin: 0 0 16px; border-top: 1px solid rgba(230, 236, 246, 0.1); padding-top: 12px; font-size: 0.8rem; }
.campaign-tier-boundary strong { color: var(--ink); }
.campaign-package-details { margin-top: 24px; }
.campaign-package-details > details { border: 1px solid rgba(217, 164, 65, 0.28); border-radius: 16px; background: rgba(10, 13, 18, 0.68); }
.campaign-package-details summary { display: flex; cursor: pointer; list-style: none; align-items: center; justify-content: space-between; gap: 18px; padding: 17px 20px; color: var(--ink); }
.campaign-package-details summary::-webkit-details-marker { display: none; }
.campaign-package-details summary span { font-weight: 850; }
.campaign-package-details summary small { color: var(--muted); font-size: 0.76rem; text-align: right; }
.campaign-package-details summary::after { content: "+"; flex: 0 0 auto; color: var(--gold-2); font-size: 1.25rem; font-weight: 900; }
.campaign-package-details details[open] summary::after { content: "−"; }
.campaign-package-scope-grid { display: grid; grid-template-columns: repeat(3, minmax(0, 1fr)); gap: 12px; border-top: 1px solid rgba(230, 236, 246, 0.1); padding: 18px; }
.campaign-package-scope-grid article { min-width: 0; border: 1px solid rgba(230, 236, 246, 0.11); border-radius: 13px; background: rgba(16, 25, 38, 0.7); padding: 16px; }
.campaign-package-scope-grid article > p { margin: 0 0 4px; color: var(--gold-2); font-size: 0.68rem; font-weight: 850; letter-spacing: 0.08em; text-transform: uppercase; }
.campaign-package-scope-grid h3 { margin: 0 0 10px; color: var(--ink); font-family: Georgia, "Times New Roman", serif; font-size: 1rem; }
.campaign-package-scope-grid ul { margin: 0; padding-left: 1rem; color: var(--muted); font-size: 0.8rem; line-height: 1.55; }
.campaign-package-expansion {
  margin: 0 18px 18px;
  border-top: 1px solid rgba(217, 164, 65, 0.22);
  padding: 16px 18px;
  color: var(--muted);
  font-size: 0.9rem;
  line-height: 1.6;
  text-align: center;
}
.campaign-package-expansion strong { color: var(--ink); }

.campaign-order-grid {
  display: grid;
  grid-template-columns: repeat(5, minmax(0, 1fr));
  gap: 12px;
}

.campaign-order-grid article {
  padding: 18px;
  border: 1px solid rgba(230, 236, 246, 0.13);
  border-radius: 15px;
  background: rgba(16, 25, 38, 0.76);
}

.campaign-order-grid span { display: inline-flex; margin-bottom: 16px; color: var(--gold-2); font-weight: 900; }
.campaign-order-grid h3 { color: var(--ink); font-size: 1.05rem; }
.campaign-order-grid p { margin: 0; color: var(--muted); font-size: 0.88rem; line-height: 1.55; }
.campaign-store-cta { border-top: 1px solid rgba(230, 190, 104, 0.18); }

.campaign-kit-faq {
  border-top: 1px solid rgba(66, 188, 255, 0.14);
  background: linear-gradient(180deg, rgba(7, 12, 20, 0.96), rgba(9, 15, 24, 0.98));
}

.campaign-kit-faq-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 12px;
  margin-top: 28px;
}

.campaign-kit-faq details {
  border: 1px solid rgba(230, 236, 246, 0.13);
  border-radius: 14px;
  background: rgba(16, 25, 38, 0.76);
  padding: 0 18px;
}

.campaign-kit-faq summary {
  cursor: pointer;
  padding: 18px 28px 18px 0;
  color: var(--ink);
  font-weight: 800;
  line-height: 1.4;
}

.campaign-kit-faq details[open] { border-color: rgba(217, 164, 65, 0.38); }
.campaign-kit-faq details p { margin: -2px 0 18px; color: var(--muted); font-size: 0.9rem; line-height: 1.65; }

@media (max-width: 980px) {
  .contact-intro {
    position: static;
  }

  .campaign-kit-teaser-grid,
  .campaign-store-hero-grid { grid-template-columns: 1fr; }
  .campaign-tier-grid { grid-template-columns: 1fr; }
  .campaign-tier-card.is-featured { transform: none; }
  .campaign-package-scope-grid { grid-template-columns: 1fr; }
  .campaign-order-grid { grid-template-columns: repeat(2, minmax(0, 1fr)); }
  .campaign-kit-faq-grid { grid-template-columns: 1fr; }
}

@media (max-width: 680px) {
  .campaign-kit-teaser-grid { grid-template-columns: 1fr; }
  .campaign-order-grid { grid-template-columns: 1fr; }
  .campaign-package-details summary { align-items: flex-start; }
  .campaign-package-details summary small { max-width: 150px; }
}


/* Public Venue Intelligence Guide. Every selector is intentionally scoped so
   the optional chat cannot alter the approved landing-page layout. */
.vi-chat-root {
  position: fixed;
  right: 20px;
  bottom: 20px;
  z-index: 1000;
  font-family: Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
}

.vi-chat-root[hidden],
.vi-chat-panel[hidden],
.vi-chat-verification[hidden] {
  display: none !important;
}

.vi-chat-launcher,
.vi-chat-form button,
.vi-chat-suggestions button,
.vi-chat-action {
  border: 1px solid rgba(217, 164, 65, 0.72);
  border-radius: 10px;
  background: #d9a441;
  color: #080b10;
  font: inherit;
  font-weight: 800;
  cursor: pointer;
}

.vi-chat-launcher {
  min-height: 48px;
  padding: 0 18px;
  box-shadow: 0 12px 36px rgba(0, 0, 0, 0.38);
}

.vi-chat-panel {
  position: absolute;
  right: 0;
  bottom: 60px;
  width: min(410px, calc(100vw - 32px));
  max-height: min(720px, calc(100vh - 100px));
  overflow: auto;
  padding: 18px;
  border: 1px solid rgba(230, 236, 246, 0.18);
  border-radius: 16px;
  background: #0b111b;
  color: #f5f7fb;
  box-shadow: 0 24px 64px rgba(0, 0, 0, 0.58);
}

.vi-chat-header {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  gap: 12px;
}

.vi-chat-header h2 {
  margin: 2px 0 0;
  font-family: Georgia, "Times New Roman", serif;
  font-size: 1.65rem;
}

.vi-chat-identity,
.vi-chat-support,
.vi-chat-disclosure,
.vi-chat-status,
.vi-chat-verification p {
  margin: 0;
}

.vi-chat-identity {
  color: #e6bd69;
  font-size: 0.72rem;
  font-weight: 800;
  letter-spacing: 0.04em;
}

.vi-chat-close {
  width: 36px;
  height: 36px;
  border: 1px solid rgba(230, 236, 246, 0.18);
  border-radius: 50%;
  background: transparent;
  color: #f5f7fb;
  font-size: 1.5rem;
  cursor: pointer;
}

.vi-chat-support {
  margin-top: 12px;
  color: #c3cad7;
  line-height: 1.45;
}

.vi-chat-disclosure {
  margin-top: 10px;
  padding: 10px 12px;
  border-left: 3px solid #d9a441;
  background: rgba(217, 164, 65, 0.08);
  color: #aeb8c9;
  font-size: 0.78rem;
  line-height: 1.45;
}

.vi-chat-suggestions,
.vi-chat-message-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin-top: 12px;
}

.vi-chat-suggestions button,
.vi-chat-action {
  padding: 8px 10px;
  background: rgba(217, 164, 65, 0.08);
  color: #f0c873;
  font-size: 0.78rem;
}

.vi-chat-transcript {
  display: grid;
  gap: 10px;
  max-height: 280px;
  margin-top: 14px;
  overflow-y: auto;
}

.vi-chat-message {
  max-width: 92%;
  padding: 10px 12px;
  border: 1px solid rgba(230, 236, 246, 0.12);
  border-radius: 12px;
  background: #111a28;
  color: #dbe1eb;
  line-height: 1.45;
  white-space: pre-wrap;
}

.vi-chat-message[data-role="user"] {
  justify-self: end;
  background: #15263b;
  color: #ffffff;
}

.vi-chat-message strong {
  display: block;
  margin-bottom: 4px;
  color: #f0c873;
  font-size: 0.72rem;
  text-transform: uppercase;
}

.vi-chat-verification {
  margin-top: 12px;
  padding: 10px;
  border: 1px solid rgba(66, 188, 255, 0.28);
  border-radius: 10px;
  background: rgba(66, 188, 255, 0.06);
  color: #c3cad7;
  font-size: 0.8rem;
}

.vi-chat-form {
  display: grid;
  gap: 8px;
  margin-top: 14px;
}

.vi-chat-form label {
  color: #f5f7fb;
  font-size: 0.78rem;
  font-weight: 800;
}

.vi-chat-form textarea {
  width: 100%;
  min-height: 70px;
  resize: vertical;
  border: 1px solid rgba(230, 236, 246, 0.2);
  border-radius: 10px;
  background: #070c13;
  color: #ffffff;
  font: inherit;
  padding: 10px;
}

.vi-chat-form-actions {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
}

.vi-chat-form-actions span,
.vi-chat-status {
  color: #9da8ba;
  font-size: 0.75rem;
}

.vi-chat-form button {
  min-width: 92px;
  padding: 10px 16px;
}

.vi-chat-form button:disabled,
.vi-chat-suggestions button:disabled {
  cursor: not-allowed;
  opacity: 0.55;
}

.vi-chat-launcher:focus-visible,
.vi-chat-close:focus-visible,
.vi-chat-form button:focus-visible,
.vi-chat-suggestions button:focus-visible,
.vi-chat-action:focus-visible,
.vi-chat-form textarea:focus-visible {
  outline: 3px solid #42bcff;
  outline-offset: 2px;
}

@media (max-width: 680px) {
  .vi-chat-root {
    right: 12px;
    bottom: 12px;
    left: 12px;
  }

  .vi-chat-launcher {
    display: block;
    margin-left: auto;
  }

  .vi-chat-panel {
    position: fixed;
    right: 0;
    bottom: 0;
    left: 0;
    width: 100%;
    max-height: min(82vh, 760px);
    border-radius: 18px 18px 0 0;
  }
}

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