/* ========================================
   Offer / Landing Page Styles
   Self-contained stylesheet for the unlisted offer pages
   (spark, vision, technology). Mirrors the live site's dark
   theme + brand tokens from styles.css / case-study.css.
   ======================================== */

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

:root {
  --primary: #3a9be0;
  --primary-dark: #0e74b7;
  --accent: #e87a54;
  --accent-hover: #d96840;
  --success: #7dc244;
  --bg-dark: #0b1627;
  --bg-section: #0f1f3a;
  --bg-card: #172a48;
  --bg-card-hover: #1c3056;
  --text-primary: #e8edf5;
  --text-secondary: #8ea2bf;
  --text-muted: #7a92b2;
  --border: #1e3456;
  --border-hover: #2d466a;
  --gradient-text: linear-gradient(135deg, #3a9be0 0%, #7dc244 50%, #e87a54 100%);
  --radius: 8px;
  --radius-lg: 16px;
  --font-body: 'Inter', system-ui, -apple-system, sans-serif;
  --font-heading: 'Space Grotesk', 'Inter', system-ui, sans-serif;
}

html { scroll-behavior: smooth; }

body {
  font-family: var(--font-body);
  background: var(--bg-dark);
  color: var(--text-primary);
  line-height: 1.7;
  -webkit-font-smoothing: antialiased;
  overflow-x: hidden;
}

a { color: var(--primary); text-decoration: none; }
a:hover { color: var(--accent); }

.of-wrap { max-width: 1080px; margin: 0 auto; padding: 0 40px; }
.of-narrow { max-width: 780px; }

/* ── Nav (slim: logo only, links home) ── */
.of-nav {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 100;
  padding: 14px 40px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  background: rgba(11, 22, 39, 0.9);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  border-bottom: 1px solid rgba(30, 52, 86, 0.5);
}
.of-nav-logo { display: flex; align-items: center; }
.of-nav-logo img { height: 30px; }
.of-nav-badge {
  font-size: 0.6875rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  color: var(--text-muted);
}

/* ── Buttons ── */
.of-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  padding: 16px 34px;
  font-family: var(--font-body);
  font-weight: 600;
  font-size: 1rem;
  border-radius: 6px;
  border: none;
  cursor: pointer;
  transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
  white-space: nowrap;
}
.of-btn svg { width: 20px; height: 20px; }
.of-btn-primary {
  background: var(--accent);
  color: #fff;
  box-shadow: 0 8px 30px rgba(232, 122, 84, 0.22);
}
.of-btn-primary:hover {
  background: var(--accent-hover);
  color: #fff;
  transform: translateY(-2px);
  box-shadow: 0 12px 40px rgba(232, 122, 84, 0.35);
}
.of-btn-ghost {
  background: transparent;
  color: var(--text-primary);
  border: 1px solid var(--border-hover);
}
.of-btn-ghost:hover {
  color: var(--text-primary);
  border-color: var(--primary);
  background: rgba(58, 155, 224, 0.06);
}
.of-btn-lg { padding: 18px 40px; font-size: 1.0625rem; }
.of-btn-block { width: 100%; }

/* ── Hero ── */
.of-hero {
  position: relative;
  padding: 130px 40px 60px;
  text-align: center;
  overflow: hidden;
}
.of-hero::before {
  content: '';
  position: absolute;
  inset: 0;
  background: radial-gradient(ellipse at 50% 0%, rgba(58, 155, 224, 0.12) 0%, transparent 55%),
              radial-gradient(ellipse at 80% 40%, rgba(232, 122, 84, 0.06) 0%, transparent 55%);
  pointer-events: none;
}
.of-hero-inner { position: relative; max-width: 860px; margin: 0 auto; }

.of-badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 6px 16px;
  margin-bottom: 24px;
  font-size: 0.75rem;
  font-weight: 600;
  letter-spacing: 0.04em;
  color: var(--primary);
  background: rgba(58, 155, 224, 0.1);
  border: 1px solid rgba(58, 155, 224, 0.2);
  border-radius: 100px;
}
.of-badge-dot {
  width: 7px; height: 7px;
  border-radius: 50%;
  background: var(--success);
  box-shadow: 0 0 0 3px rgba(125, 194, 68, 0.2);
}

.of-h1 {
  font-family: var(--font-heading);
  font-size: clamp(2.4rem, 5.6vw, 4.4rem);
  font-weight: 700;
  line-height: 1.04;
  letter-spacing: -0.02em;
  margin-bottom: 20px;
  color: #fff; /* pure white reserved for the primary headline */
}
.of-gradient {
  background: var(--gradient-text);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}
.of-subtitle {
  font-size: 1.1875rem;
  color: var(--text-secondary);
  line-height: 1.6;
  max-width: 680px;
  margin: 0 auto 36px;
}

/* ── Two-column hero (keeps the full video + CTA above the fold) ── */
@media (min-width: 921px) {
  .of-hero { padding-top: 116px; }
  .of-hero-split {
    display: grid;
    grid-template-columns: minmax(0, 1.02fr) minmax(0, 1.05fr);
    gap: 48px;
    align-items: center;
    text-align: left;
    max-width: 1200px;
  }
  .of-hero-split .of-subtitle { max-width: 520px; margin-left: 0; margin-right: 0; }
  .of-hero-split .of-badge { align-self: flex-start; }
  .of-hero-media { min-width: 0; }
  .of-hero-media .of-video { margin: 0; max-width: 100%; }
  .of-hero-media .of-eyebrow { text-align: left !important; }
}

/* ── Video ── */
.of-video {
  position: relative;
  max-width: 820px;
  margin: 0 auto 32px;
}
.of-video-frame {
  position: relative;
  width: 100%;
  aspect-ratio: 16 / 9;
  border-radius: var(--radius-lg);
  overflow: hidden;
  border: 1px solid var(--border);
  background: #060d1a;
  box-shadow: 0 30px 80px rgba(0, 0, 0, 0.45);
}
.of-video-frame video,
.of-video-frame iframe {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  border: none;
  object-fit: cover;
}
/* Branded placeholder shown until the real .mp4 is dropped in */
.of-video-placeholder {
  position: absolute;
  inset: 0;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 16px;
  background:
    radial-gradient(ellipse at 50% 45%, rgba(58, 155, 224, 0.14) 0%, transparent 60%),
    linear-gradient(135deg, #0b1627 0%, #12233f 100%);
}
.of-video-play {
  width: 76px; height: 76px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  background: rgba(232, 122, 84, 0.14);
  border: 1px solid rgba(232, 122, 84, 0.4);
}
.of-video-play svg { width: 30px; height: 30px; fill: var(--accent); margin-left: 4px; }
.of-video-caption {
  font-family: var(--font-heading);
  font-size: 0.875rem;
  font-weight: 600;
  letter-spacing: 0.04em;
  color: var(--text-secondary);
}
.of-video-sub { font-size: 0.75rem; color: var(--text-muted); }

/* ── Generic sections ── */
.of-section { padding: 72px 40px; position: relative; }
.of-section-alt { background: var(--bg-section); }
.of-section-head { text-align: center; max-width: 720px; margin: 0 auto 48px; }
.of-eyebrow {
  display: inline-block;
  font-family: var(--font-heading);
  font-size: 0.75rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.14em;
  color: var(--primary);
  margin-bottom: 14px;
}
.of-h2 {
  font-family: var(--font-heading);
  font-size: 2.125rem;
  font-weight: 700;
  line-height: 1.2;
  letter-spacing: -0.01em;
  margin-bottom: 16px;
}
.of-lead {
  font-size: 1.0625rem;
  color: var(--text-secondary);
  line-height: 1.8;
}

/* ── How it works (3 steps) ── */
.of-steps {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
  max-width: 980px;
  margin: 0 auto;
}
.of-step {
  padding: 32px 28px;
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  transition: all 0.3s;
}
.of-step:hover { border-color: var(--border-hover); transform: translateY(-4px); }
.of-step-num {
  font-family: var(--font-heading);
  font-size: 0.875rem;
  font-weight: 700;
  width: 38px; height: 38px;
  display: flex; align-items: center; justify-content: center;
  border-radius: 50%;
  color: var(--primary);
  background: rgba(58, 155, 224, 0.12);
  border: 1px solid rgba(58, 155, 224, 0.25);
  margin-bottom: 18px;
}
.of-step h3 {
  font-family: var(--font-heading);
  font-size: 1.125rem;
  font-weight: 600;
  margin-bottom: 10px;
}
.of-step p { color: var(--text-secondary); font-size: 0.9375rem; }

/* ── How it works: product-peek flow (Concept B) ── */
.of-flow { max-width: 1000px; margin: 0 auto; display: flex; flex-direction: column; gap: 36px; position: relative; z-index: 1; }
.of-flow-row { display: grid; grid-template-columns: 1fr 1fr; gap: 48px; align-items: center; }
.of-flow-row.rev .of-flow-text { order: 2; }
.of-flow-row.rev .of-flow-vis { order: 1; }
.of-flow-badge { display: inline-flex; align-items: center; gap: 12px; margin-bottom: 16px; }
.of-flow-node { width: 42px; height: 42px; border-radius: 50%; display: flex; align-items: center; justify-content: center; flex-shrink: 0; background: radial-gradient(circle at 50% 35%, var(--bg-card-hover), #0e1f3a); border: 1px solid rgba(58,155,224,0.4); box-shadow: 0 0 26px rgba(58,155,224,0.16); }
.of-flow-node b { font-family: var(--font-heading); font-weight: 700; font-size: 1.1rem; background: var(--gradient-text); -webkit-background-clip: text; background-clip: text; -webkit-text-fill-color: transparent; }
.of-flow-step { font-family: var(--font-heading); font-weight: 700; font-size: 0.75rem; letter-spacing: 0.12em; text-transform: uppercase; color: var(--primary); }
.of-flow-text h3 { font-family: var(--font-heading); font-size: 1.4rem; color: #fff; margin: 0 0 12px; }
.of-flow-text p { color: var(--text-secondary); font-size: 1rem; line-height: 1.7; max-width: 42ch; margin: 0; }
/* product panel */
.of-panel { background: var(--bg-card); border: 1px solid var(--border); border-radius: 14px; box-shadow: 0 24px 60px rgba(0,0,0,0.35); overflow: hidden; }
.of-panel-head { display: flex; align-items: center; gap: 8px; padding: 12px 16px; border-bottom: 1px solid var(--border); font-size: 0.75rem; color: var(--text-muted); font-weight: 600; }
.of-panel-dot { width: 7px; height: 7px; border-radius: 50%; background: var(--success); box-shadow: 0 0 0 3px rgba(125,194,68,0.18); }
.of-panel-dot.blue { background: var(--primary); box-shadow: 0 0 0 3px rgba(58,155,224,0.18); }
.of-panel-dot.accent { background: var(--accent); box-shadow: 0 0 0 3px rgba(232,122,84,0.18); }
.of-panel-body { padding: 16px; }
.of-crow { display: flex; align-items: center; gap: 12px; padding: 9px 10px; border-radius: 8px; }
.of-crow + .of-crow { margin-top: 4px; }
.of-av { width: 30px; height: 30px; border-radius: 50%; display: flex; align-items: center; justify-content: center; font-size: 0.7rem; font-weight: 700; color: #fff; background: linear-gradient(135deg, var(--primary), var(--success)); flex-shrink: 0; font-family: var(--font-heading); }
.of-crow-txt { flex: 1; min-width: 0; }
.of-crow-name { font-size: 0.85rem; color: var(--text-primary); font-weight: 600; }
.of-crow-sub { font-size: 0.72rem; color: var(--text-muted); overflow: hidden; text-overflow: ellipsis; white-space: nowrap; }
.of-crow.on { background: rgba(125,194,68,0.1); border: 1px solid rgba(125,194,68,0.28); position: relative; overflow: hidden; }
.of-crow.on::after { content: ''; position: absolute; inset: 0; background: linear-gradient(90deg, transparent, rgba(58,155,224,0.12), transparent); animation: ofShimmer 1.9s infinite; }
@keyframes ofShimmer { 0% { transform: translateX(-100%); } 100% { transform: translateX(100%); } }
.of-verified { font-size: 0.68rem; font-weight: 700; color: var(--success); white-space: nowrap; }
.of-to { font-size: 0.78rem; color: var(--text-secondary); padding: 0 2px 10px; border-bottom: 1px solid var(--border); margin-bottom: 12px; }
.of-to b { color: var(--text-primary); }
.of-msg { background: var(--bg-section); border: 1px solid var(--border); border-radius: 10px; padding: 12px 14px; color: var(--text-secondary); font-size: 0.85rem; line-height: 1.6; }
.of-caret { display: inline-block; width: 2px; height: 1em; background: var(--primary); margin-left: 1px; vertical-align: text-bottom; animation: ofCaret 1s step-end infinite; }
@keyframes ofCaret { 0%, 50% { opacity: 1; } 51%, 100% { opacity: 0; } }
.of-sendrow { display: flex; align-items: center; justify-content: space-between; margin-top: 12px; gap: 12px; }
.of-chan { color: var(--text-muted); font-size: 0.72rem; }
.of-send { display: inline-flex; align-items: center; gap: 6px; background: var(--accent); color: #fff; font-weight: 600; font-size: 0.78rem; padding: 7px 16px; border-radius: 6px; }
.of-reply { background: rgba(58,155,224,0.08); border: 1px solid rgba(58,155,224,0.2); border-radius: 10px 10px 10px 2px; padding: 11px 14px; color: var(--text-primary); font-size: 0.85rem; }
.of-booked { display: inline-flex; align-items: center; gap: 8px; margin-top: 12px; background: rgba(125,194,68,0.14); border: 1px solid rgba(125,194,68,0.32); color: var(--success); font-weight: 600; font-size: 0.8rem; padding: 8px 14px; border-radius: 8px; }
.of-booked svg { width: 15px; height: 15px; }
@media (max-width: 820px) {
  .of-flow-row, .of-flow-row.rev { grid-template-columns: 1fr; gap: 22px; }
  .of-flow-row.rev .of-flow-text { order: 1; }
  .of-flow-row.rev .of-flow-vis { order: 2; }
}
@media (prefers-reduced-motion: reduce) { .of-crow.on::after, .of-caret { animation: none; } }

/* ── What's included (feature grid) ── */
.of-includes {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 16px;
  max-width: 820px;
  margin: 0 auto;
  list-style: none;
  padding: 0;
}
.of-includes li {
  display: flex;
  align-items: center;
  gap: 14px;
  padding: 22px 24px;
  color: var(--text-primary);
  font-size: 1rem;
  font-weight: 500;
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  transition: all 0.3s;
}
.of-includes li:hover { border-color: var(--border-hover); transform: translateY(-3px); }
.of-includes li::before {
  content: '';
  flex-shrink: 0;
  width: 30px; height: 30px;
  border-radius: 9px;
  background:
    url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='%237dc244' stroke-width='3'%3E%3Cpath d='M20 6L9 17l-5-5'/%3E%3C/svg%3E") center / 16px no-repeat,
    rgba(125, 194, 68, 0.14);
  border: 1px solid rgba(125, 194, 68, 0.25);
}
.of-includes li:last-child:nth-child(odd) { grid-column: 1 / -1; }
@media (max-width: 680px) { .of-includes { grid-template-columns: 1fr; } }

/* ── Client logo marquee (ported from styles.css) ── */
.of-logobar { padding: 40px 0; border-top: 1px solid rgba(58,155,224,0.08); border-bottom: 1px solid rgba(58,155,224,0.08); overflow: hidden; position: relative; }
.of-logobar::before { content: ''; position: absolute; top: 0; left: 0; right: 0; height: 1px; background: linear-gradient(90deg, transparent, rgba(58,155,224,0.15), rgba(232,122,84,0.1), transparent); }
.of-logobar-label { text-align: center; font-size: 0.6875rem; font-weight: 600; text-transform: uppercase; letter-spacing: 0.15em; color: var(--text-muted); margin-bottom: 28px; }
.of-logobar-track { overflow: hidden; mask-image: linear-gradient(to right, transparent 0%, black 10%, black 90%, transparent 100%); -webkit-mask-image: linear-gradient(to right, transparent 0%, black 10%, black 90%, transparent 100%); }
.of-logobar-slide { display: flex; gap: 56px; animation: ofLogoSlide 28s linear infinite; width: max-content; }
@keyframes ofLogoSlide { 0% { transform: translateX(0); } 100% { transform: translateX(-50%); } }
.of-logo-item { display: flex; align-items: center; color: var(--text-secondary); white-space: nowrap; opacity: 0.45; transition: opacity 0.3s; font-family: var(--font-heading); font-weight: 600; font-size: 1.0625rem; letter-spacing: 0.02em; }
.of-logo-item:hover { opacity: 0.85; }
@media (prefers-reduced-motion: reduce) { .of-logobar-slide { animation: none; justify-content: center; flex-wrap: wrap; } }

/* ── Social proof ── */
.of-logos {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: center;
  gap: 20px 48px;
  max-width: 900px;
  margin: 0 auto;
  opacity: 0.85;
}
.of-logo {
  font-family: var(--font-heading);
  font-weight: 600;
  font-size: 1.125rem;
  color: var(--text-muted);
  letter-spacing: 0.02em;
  padding: 8px 4px;
  /* Placeholder text logos. Swap for client logo <img> when available */
}
.of-quotes {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
  gap: 20px;
  max-width: 940px;
  margin: 48px auto 0;
}
.of-quote {
  padding: 28px;
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  text-align: left;
}
.of-quote p { color: var(--text-primary); font-size: 0.9375rem; margin-bottom: 16px; font-style: italic; }
.of-quote-meta { font-size: 0.8125rem; color: var(--text-muted); }
.of-quote-meta strong { color: var(--text-secondary); font-weight: 600; }

/* ── Pricing (single) ── */
.of-price-card {
  max-width: 460px;
  margin: 0 auto;
  padding: 44px 40px;
  text-align: center;
  background: var(--bg-card);
  border: 1px solid var(--border-hover);
  border-radius: var(--radius-lg);
  position: relative;
  overflow: hidden;
}
.of-price-card::before {
  content: '';
  position: absolute;
  top: 0; left: 0; right: 0;
  height: 3px;
  background: var(--gradient-text);
}
.of-price-name {
  font-family: var(--font-heading);
  font-size: 0.8125rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  color: var(--primary);
  margin-bottom: 16px;
}
.of-price {
  display: flex;
  align-items: baseline;
  justify-content: center;
  gap: 10px;
  margin-bottom: 8px;
}
.of-price-old {
  font-size: 1.375rem;
  color: var(--text-muted);
  text-decoration: line-through;
  text-decoration-color: var(--accent);
}
.of-price-now {
  font-family: var(--font-heading);
  font-size: 3.25rem;
  font-weight: 700;
  line-height: 1;
  color: var(--text-primary);
}
.of-price-per { font-size: 1rem; color: var(--text-secondary); }
.of-price-note { font-size: 0.875rem; color: var(--text-muted); margin: 12px 0 28px; }

/* ── Pricing tiers (3-up) ── */
.of-tiers {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
  max-width: 1000px;
  margin: 0 auto;
  align-items: center;
}
.of-tier {
  padding: 36px 28px;
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  text-align: center;
  position: relative;
}
.of-tier-decoy { opacity: 0.92; }
.of-tier-spark { opacity: 0.92; }
.of-tier-featured {
  border-color: var(--accent);
  background: linear-gradient(180deg, rgba(232, 122, 84, 0.08) 0%, var(--bg-card) 40%);
  box-shadow: 0 20px 60px rgba(232, 122, 84, 0.16);
  transform: scale(1.04);
  z-index: 2;
}
.of-tier-flag {
  position: absolute;
  top: -13px; left: 50%;
  transform: translateX(-50%);
  padding: 5px 16px;
  font-size: 0.6875rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  color: #fff;
  background: var(--accent);
  border-radius: 100px;
  white-space: nowrap;
}
.of-tier-name {
  font-family: var(--font-heading);
  font-size: 1.25rem;
  font-weight: 700;
  margin-bottom: 6px;
}
.of-tier-price {
  font-family: var(--font-heading);
  font-size: 2.25rem;
  font-weight: 700;
  line-height: 1;
  margin-bottom: 4px;
}
.of-tier-per { font-size: 0.9375rem; color: var(--text-secondary); font-weight: 400; }
.of-tier-desc {
  font-size: 0.875rem;
  color: var(--text-secondary);
  line-height: 1.6;
  margin: 16px 0 24px;
  min-height: 66px;
}
.of-tier .of-btn { width: 100%; padding: 13px 20px; font-size: 0.9375rem; }
.of-tier-decoy .of-btn,
.of-tier-spark .of-btn { background: transparent; border: 1px solid var(--border-hover); color: var(--text-primary); box-shadow: none; }
.of-tier-decoy .of-btn:hover,
.of-tier-spark .of-btn:hover { border-color: var(--primary); background: rgba(58, 155, 224, 0.06); transform: translateY(-2px); }

/* ── Downsell link ── */
.of-downsell { text-align: center; margin: 36px auto 0; }
.of-downsell a {
  font-size: 0.9375rem;
  color: var(--text-muted);
  border-bottom: 1px dashed rgba(138, 162, 191, 0.4);
  padding-bottom: 2px;
}
.of-downsell a:hover { color: var(--primary); border-color: var(--primary); }

/* ── FAQ ── */
.of-faq { max-width: 720px; margin: 0 auto; }
.of-faq-item {
  border: 1px solid var(--border);
  border-radius: var(--radius);
  background: var(--bg-card);
  margin-bottom: 12px;
  overflow: hidden;
}
.of-faq-item summary {
  list-style: none;
  cursor: pointer;
  padding: 20px 24px;
  font-family: var(--font-heading);
  font-weight: 600;
  font-size: 1.0625rem;
  color: var(--text-primary);
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 16px;
}
.of-faq-item summary::-webkit-details-marker { display: none; }
.of-faq-item summary::after {
  content: '+';
  font-size: 1.5rem;
  font-weight: 400;
  color: var(--primary);
  transition: transform 0.3s;
  line-height: 1;
}
.of-faq-item[open] summary::after { transform: rotate(45deg); }
.of-faq-item .of-faq-body {
  padding: 0 24px 20px;
  color: var(--text-secondary);
  font-size: 0.9375rem;
  line-height: 1.7;
}

/* ── Final CTA band ── */
.of-final {
  text-align: center;
  padding: 84px 40px;
  position: relative;
  overflow: hidden;
  background: linear-gradient(135deg, rgba(58, 155, 224, 0.1) 0%, rgba(232, 122, 84, 0.08) 100%);
  border-top: 1px solid rgba(58, 155, 224, 0.15);
}
.of-final .of-h2 { margin-bottom: 12px; }
.of-final p { color: var(--text-secondary); font-size: 1.0625rem; max-width: 560px; margin: 0 auto 32px; }

/* ── "What We Replace" value stack ── */
.of-stack {
  max-width: 780px;
  margin: 0 auto;
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: 0 24px 60px rgba(0,0,0,0.28);
}
.of-stack-cathead {
  padding: 16px 26px 8px;
  font-family: var(--font-heading);
  font-size: 0.6875rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  color: var(--primary);
  background: rgba(58,155,224,0.04);
  border-bottom: 1px solid rgba(30,52,86,0.5);
}
.of-stack-row {
  display: grid;
  grid-template-columns: 26px 1fr auto;
  gap: 14px;
  align-items: center;
  padding: 13px 26px;
  border-bottom: 1px solid rgba(30,52,86,0.5);
}
.of-stack-row:last-of-type { border-bottom: none; }
.of-stack-x {
  width: 22px; height: 22px;
  border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  background: rgba(232,122,84,0.12);
}
.of-stack-x svg { width: 12px; height: 12px; stroke: var(--accent); stroke-width: 3; }
.of-stack-cat { font-weight: 600; color: var(--text-primary); font-size: 0.95rem; }
.of-stack-replaces { display: block; font-size: 0.8125rem; color: var(--text-muted); margin-top: 1px; }
.of-stack-price { font-family: var(--font-heading); font-weight: 600; color: var(--text-secondary); white-space: nowrap; font-size: 0.95rem; }
.of-stack-total {
  display: flex; justify-content: space-between; align-items: baseline;
  padding: 20px 26px;
  background: rgba(232,122,84,0.07);
  border-top: 1px solid var(--border);
}
.of-stack-total-label { font-weight: 600; color: var(--text-primary); font-size: 0.95rem; }
.of-stack-total-val {
  font-family: var(--font-heading); font-size: 1.6rem; font-weight: 700;
  color: var(--text-muted); text-decoration: line-through; text-decoration-color: var(--accent);
}
.of-swap {
  max-width: 780px; margin: 20px auto 0;
  display: grid; grid-template-columns: 1fr auto 1fr; gap: 16px; align-items: center;
  text-align: center;
}
.of-swap-line { height: 1px; background: linear-gradient(90deg, transparent, var(--border-hover)); }
.of-swap-line.rev { background: linear-gradient(90deg, var(--border-hover), transparent); }
.of-swap-mid { font-size: 0.8125rem; color: var(--text-muted); text-transform: uppercase; letter-spacing: 0.08em; }
.of-swap-price {
  max-width: 480px; margin: 20px auto 0; text-align: center;
  padding: 28px; border-radius: var(--radius-lg);
  background: var(--bg-card); border: 1px solid var(--border-hover);
  position: relative; overflow: hidden;
}
.of-swap-price::before { content: ''; position: absolute; top: 0; left: 0; right: 0; height: 3px; background: var(--gradient-text); }
.of-swap-price .now { font-family: var(--font-heading); font-size: 2.6rem; font-weight: 700; color: var(--success); line-height: 1; }
.of-swap-price .was { color: var(--text-muted); text-decoration: line-through; text-decoration-color: var(--accent); margin-left: 10px; font-size: 1.125rem; }
.of-swap-price .per { color: var(--text-secondary); font-size: 1rem; }
.of-swap-price p { color: var(--text-secondary); font-size: 0.9375rem; margin-top: 8px; }

/* Interactive stack ledger (tick the tools you actually pay for) */
.of-stack-row { cursor: pointer; user-select: none; transition: opacity 0.2s, background 0.2s; }
.of-stack-row:hover { background: rgba(58,155,224,0.04); }
.of-stack-row:focus-visible { outline: 2px solid var(--primary); outline-offset: -2px; }
.of-stack-check {
  width: 22px; height: 22px; border-radius: 6px;
  border: 1px solid var(--border-hover);
  background: rgba(232,122,84,0.12);
  display: flex; align-items: center; justify-content: center;
  transition: all 0.2s; flex-shrink: 0;
}
.of-stack-check svg { width: 12px; height: 12px; stroke: var(--accent); stroke-width: 3; fill: none; opacity: 1; transition: opacity 0.2s; }
.of-stack-row.off .of-stack-check { background: transparent; border-color: var(--border); }
.of-stack-row.off .of-stack-check svg { opacity: 0; }
.of-stack-row.off .of-stack-cat, .of-stack-row.off .of-stack-replaces, .of-stack-row.off .of-stack-price { opacity: 0.38; }
.of-stack-row.off .of-stack-price { text-decoration: line-through; text-decoration-color: var(--text-muted); }
.of-stack-hint { text-align: center; font-size: 0.8125rem; color: var(--text-muted); margin: 14px auto 0; max-width: 780px; }

/* Client trust bar under hero */
.of-trustbar {
  display: flex; flex-wrap: wrap; align-items: center; justify-content: center;
  gap: 10px 30px; max-width: 900px; margin: 0 auto;
}
.of-trustbar-lbl { font-size: 0.75rem; text-transform: uppercase; letter-spacing: 0.1em; color: var(--text-muted); }
.of-trustbar-name { font-family: var(--font-heading); font-weight: 600; font-size: 1rem; color: var(--text-secondary); }

/* Urgency microcopy under a CTA */
.of-urgency { font-size: 0.8125rem; color: var(--text-muted); margin-top: 12px; }
.of-urgency strong { color: var(--success); font-weight: 600; }

/* Device-framed media caption plate */
.of-vidcap { margin-top: 12px; font-size: 0.8125rem; color: var(--text-muted); text-align: center; }


/* ── Animated multi-channel hub ── */
.of-hub { max-width: 840px; margin: 4px auto 0; position: relative; z-index: 1; }
.of-hub-svg { width: 100%; height: auto; display: block; overflow: visible; }
@media (prefers-reduced-motion: reduce) {
  .of-hub-svg animate, .of-hub-svg animateMotion { display: none; }
}

/* ── ROI band ── */
.of-roi {
  max-width: 840px; margin: 0 auto;
  padding: 32px 40px; border-radius: var(--radius-lg);
  background: linear-gradient(135deg, rgba(58,155,224,0.09) 0%, rgba(232,122,84,0.06) 100%);
  border: 1px solid rgba(58,155,224,0.15);
}
.of-roi p { color: var(--text-secondary); font-size: 1.0625rem; line-height: 1.8; margin-bottom: 0; }
.of-roi p + p { margin-top: 14px; }
.of-roi strong { color: var(--text-primary); font-weight: 600; }
.of-roi .hl { color: var(--success); font-weight: 700; }

/* ── Real results proof grid ── */
.of-results {
  display: grid; grid-template-columns: repeat(4, 1fr); gap: 16px;
  max-width: 1000px; margin: 0 auto;
}
.of-result {
  padding: 26px 20px; text-align: center;
  background: var(--bg-card); border: 1px solid var(--border); border-radius: var(--radius);
  transition: all 0.3s;
}
.of-result:hover { border-color: var(--border-hover); transform: translateY(-4px); }
.of-result-val { font-family: var(--font-heading); font-size: 1.9rem; font-weight: 700; color: var(--primary); line-height: 1; }
.of-result-val.accent { color: var(--accent); }
.of-result-val.green { color: var(--success); }
.of-result-lbl { font-size: 0.8125rem; color: var(--text-secondary); margin-top: 8px; line-height: 1.4; }
.of-result-client { display: block; font-size: 0.6875rem; text-transform: uppercase; letter-spacing: 0.06em; color: var(--text-muted); margin-top: 10px; }

/* ── Assurance row (risk reversal) ── */
.of-assurances { display: flex; flex-wrap: wrap; gap: 16px 28px; justify-content: center; margin-top: 28px; }
.of-assurance { display: inline-flex; align-items: center; gap: 8px; font-size: 0.9375rem; color: var(--text-secondary); }
.of-assurance svg { width: 18px; height: 18px; stroke: var(--success); fill: none; stroke-width: 2; flex-shrink: 0; }

@media (max-width: 860px) {
  .of-results { grid-template-columns: repeat(2, 1fr); }
}
@media (max-width: 768px) {
  .of-stack-row { grid-template-columns: 22px 1fr; }
  .of-stack-price { grid-column: 2; padding-left: 0; }
  .of-roi { padding: 26px 22px; }
}
@media (max-width: 480px) {
  .of-results { grid-template-columns: 1fr; }
}

/* ── ROI calculator ── */
.of-calc {
  max-width: 720px; margin: 0 auto;
  background: var(--bg-card); border: 1px solid var(--border);
  border-radius: var(--radius-lg); padding: 32px 36px;
}
.of-calc-row { margin-bottom: 22px; }
.of-calc-row:last-of-type { margin-bottom: 0; }
.of-calc-label { display: flex; justify-content: space-between; align-items: baseline; margin-bottom: 8px; font-size: 0.9375rem; color: var(--text-secondary); }
.of-calc-val { font-family: var(--font-heading); font-weight: 700; color: var(--primary); font-size: 1.0625rem; }
.of-calc input[type="range"] {
  -webkit-appearance: none; appearance: none;
  width: 100%; height: 6px; border-radius: 3px;
  background: var(--border-hover); outline: none;
}
.of-calc input[type="range"]::-webkit-slider-thumb {
  -webkit-appearance: none; appearance: none;
  width: 20px; height: 20px; border-radius: 50%;
  background: var(--accent); cursor: pointer; border: 3px solid var(--bg-card);
  box-shadow: 0 0 0 1px var(--accent);
}
.of-calc input[type="range"]::-moz-range-thumb {
  width: 20px; height: 20px; border-radius: 50%;
  background: var(--accent); cursor: pointer; border: 3px solid var(--bg-card);
}
.of-calc-out {
  margin-top: 26px; padding-top: 22px; border-top: 1px solid var(--border);
  display: flex; align-items: baseline; justify-content: space-between; flex-wrap: wrap; gap: 8px;
}
.of-calc-out-lbl { color: var(--text-secondary); font-size: 0.9375rem; }
.of-calc-out-val { font-family: var(--font-heading); font-size: 2.4rem; font-weight: 700; color: var(--success); line-height: 1; }
.of-calc-note { font-size: 0.8125rem; color: var(--text-muted); margin-top: 14px; }

/* ── Sticky mobile CTA bar ── */
.of-sticky {
  position: fixed; left: 0; right: 0; bottom: 0; z-index: 200;
  display: none;
  align-items: center; justify-content: space-between; gap: 14px;
  padding: 12px 18px calc(12px + env(safe-area-inset-bottom, 0px));
  background: rgba(11,22,39,0.94);
  backdrop-filter: blur(20px); -webkit-backdrop-filter: blur(20px);
  border-top: 1px solid var(--border-hover);
}
.of-sticky-price { font-size: 0.875rem; color: var(--text-secondary); }
.of-sticky-price s { color: var(--text-muted); text-decoration-color: var(--accent); }
.of-sticky-price b { font-family: var(--font-heading); color: #fff; font-size: 1.125rem; }
.of-sticky .of-btn { flex-shrink: 0; padding: 13px 22px; }
@media (max-width: 768px) {
  .of-sticky { display: flex; }
  body { padding-bottom: 76px; }
}

/* ── Exit-intent popup ── */
.of-exit {
  position: fixed; inset: 0; z-index: 1000;
  display: none; align-items: center; justify-content: center;
  padding: 20px;
}
.of-exit.open { display: flex; }
.of-exit-backdrop {
  position: absolute; inset: 0;
  background: rgba(6, 13, 26, 0.74);
  backdrop-filter: blur(6px); -webkit-backdrop-filter: blur(6px);
}
.of-exit-card {
  position: relative; z-index: 1;
  width: 100%; max-width: 480px;
  background: var(--bg-card);
  border: 1px solid var(--border-hover);
  border-radius: var(--radius-lg);
  padding: 42px 36px 30px;
  box-shadow: 0 40px 110px rgba(0, 0, 0, 0.55);
  overflow: hidden;
  animation: ofExitIn 0.35s cubic-bezier(0.16, 1, 0.3, 1);
}
.of-exit-card::before { content: ''; position: absolute; top: 0; left: 0; right: 0; height: 3px; background: var(--gradient-text); }
@keyframes ofExitIn { from { opacity: 0; transform: translateY(16px) scale(0.98); } to { opacity: 1; transform: none; } }
.of-exit-close {
  position: absolute; top: 12px; right: 12px;
  width: 34px; height: 34px; border: none; background: transparent;
  color: var(--text-muted); font-size: 1.5rem; line-height: 1; cursor: pointer; border-radius: 6px;
}
.of-exit-close:hover { color: var(--text-primary); background: rgba(255, 255, 255, 0.06); }
.of-exit-card h3 { font-family: var(--font-heading); font-size: 1.5rem; font-weight: 700; line-height: 1.2; color: #fff; margin: 8px 0 12px; }
.of-exit-card .sub { color: var(--text-secondary); font-size: 0.95rem; line-height: 1.6; margin-bottom: 20px; }
.of-exit-form { display: flex; flex-direction: column; gap: 10px; }
.of-exit-input {
  width: 100%; padding: 14px 16px;
  background: var(--bg-section); border: 1px solid var(--border-hover);
  border-radius: 6px; color: var(--text-primary); font-size: 1rem; font-family: var(--font-body);
}
.of-exit-input::placeholder { color: var(--text-muted); }
.of-exit-input:focus { outline: none; border-color: var(--primary); }
.of-exit-form .of-btn { width: 100%; }
.of-exit-consent { font-size: 0.75rem; color: var(--text-muted); text-align: center; margin-top: 12px; }
.of-exit-alt { text-align: center; margin-top: 14px; }
.of-exit-alt a { font-size: 0.8125rem; color: var(--text-muted); border-bottom: 1px dashed rgba(138, 162, 191, 0.4); padding-bottom: 2px; }
.of-exit-alt a:hover { color: var(--primary); border-color: var(--primary); }
.of-exit-success { text-align: center; padding: 8px 0; }
.of-exit-success h3 { color: var(--success); }

/* ========================================================
   Outbound Harmonization hub — ported verbatim from styles.css
   so it renders identically to the main site (compliant labels).
   ======================================================== */
.harmonization-visual { position: relative; width: 100%; max-width: 1000px; height: 600px; margin: 0 auto; }
.harm-hub { position: absolute; top: 50%; left: 50%; transform: translate(-50%, -50%); z-index: 10; }
.harm-hub-inner {
  width: 120px; height: 120px; background: var(--bg-card); border: 2px solid var(--primary); border-radius: 50%;
  display: flex; flex-direction: column; align-items: center; justify-content: center; gap: 4px; position: relative;
  box-shadow: 0 0 60px rgba(58, 155, 224, 0.15), 0 0 120px rgba(58, 155, 224, 0.05);
  animation: heartbeat 2.4s ease-in-out infinite;
}
@keyframes heartbeat {
  0%   { transform: scale(1);    box-shadow: 0 0 60px rgba(58,155,224,0.15), 0 0 120px rgba(58,155,224,0.05); }
  12%  { transform: scale(1.10); box-shadow: 0 0 80px rgba(58,155,224,0.25), 0 0 140px rgba(58,155,224,0.10); }
  24%  { transform: scale(0.97); box-shadow: 0 0 50px rgba(58,155,224,0.12), 0 0 100px rgba(58,155,224,0.04); }
  36%  { transform: scale(1.06); box-shadow: 0 0 70px rgba(58,155,224,0.20), 0 0 130px rgba(58,155,224,0.08); }
  48%  { transform: scale(1);    box-shadow: 0 0 60px rgba(58,155,224,0.15), 0 0 120px rgba(58,155,224,0.05); }
  100% { transform: scale(1);    box-shadow: 0 0 60px rgba(58,155,224,0.15), 0 0 120px rgba(58,155,224,0.05); }
}
.harm-hub-ring { position: absolute; inset: -12px; border-radius: 50%; border: 1px solid rgba(58, 155, 224, 0.15); animation: hubPulse 3s ease-in-out infinite; }
.harm-hub-ring-2 { inset: -24px; border-color: rgba(58, 155, 224, 0.08); animation-delay: 1.5s; }
.harm-hub-ring-3 { inset: -40px; border-color: rgba(58, 155, 224, 0.04); animation-delay: 0.8s; }
@keyframes hubPulse { 0%, 100% { transform: scale(1); opacity: 1; } 50% { transform: scale(1.08); opacity: 0.5; } }
.harm-hub-icon { color: var(--primary); }
.harm-hub-label { font-size: 0.625rem; font-weight: 700; text-transform: uppercase; letter-spacing: 0.1em; color: var(--primary); }
.harm-channel { position: absolute; z-index: 10; display: flex; flex-direction: column; align-items: center; gap: 6px; animation: channelFloat 4s ease-in-out infinite; }
.harm-ch-1 { top: 4%; left: 5%; --tx: 0; animation-delay: 0s; }
.harm-ch-2 { top: 4%; right: 5%; --tx: 0; animation-delay: 1s; }
.harm-ch-3 { bottom: 6%; left: 5%; --tx: 0; animation-delay: 0.5s; }
.harm-ch-4 { bottom: 6%; right: 5%; --tx: 0; animation-delay: 1.5s; }
.harm-ch-5 { top: 0%; left: 50%; --tx: -50%; animation-delay: 0.8s; }
.harm-ch-6 { bottom: 0%; left: 50%; --tx: -50%; animation-delay: 1.2s; }
@keyframes channelFloat { 0%, 100% { transform: translateX(var(--tx, 0)) translateY(0); } 50% { transform: translateX(var(--tx, 0)) translateY(-6px); } }
.harm-ch-icon { width: 56px; height: 56px; border-radius: 16px; display: flex; align-items: center; justify-content: center; background: var(--bg-card); border: 1px solid var(--border); transition: var(--transition, 0.3s ease); }
.harm-ch-1 .harm-ch-icon { color: #3a9be0; border-color: rgba(58, 155, 224, 0.3); box-shadow: 0 8px 32px rgba(58, 155, 224, 0.1); }
.harm-ch-2 .harm-ch-icon { color: #e87a54; border-color: rgba(232, 122, 84, 0.3); box-shadow: 0 8px 32px rgba(232, 122, 84, 0.1); }
.harm-ch-3 .harm-ch-icon { color: #7dc244; border-color: rgba(125, 194, 68, 0.3); box-shadow: 0 8px 32px rgba(125, 194, 68, 0.1); }
.harm-ch-4 .harm-ch-icon { color: #f5c542; border-color: rgba(245, 197, 66, 0.3); box-shadow: 0 8px 32px rgba(245, 197, 66, 0.1); }
.harm-ch-5 .harm-ch-icon { color: #c084fc; border-color: rgba(192, 132, 252, 0.3); box-shadow: 0 8px 32px rgba(192, 132, 252, 0.1); }
.harm-ch-6 .harm-ch-icon { color: #38bdf8; border-color: rgba(56, 189, 248, 0.3); box-shadow: 0 8px 32px rgba(56, 189, 248, 0.1); }
.harm-ch-name { font-family: var(--font-heading); font-size: 0.8125rem; font-weight: 600; color: var(--text-primary); }
.harm-ch-stat { font-size: 0.6875rem; color: var(--text-muted); }
.harm-lines { position: absolute; inset: 0; width: 100%; height: 100%; z-index: 1; }
.harm-path { animation: dashFlow 2s linear infinite; }
@keyframes dashFlow { 0% { stroke-dashoffset: 0; } 100% { stroke-dashoffset: -20; } }
.harm-dot { filter: drop-shadow(0 0 6px currentColor); }
.harm-timing { position: absolute; z-index: 10; display: flex; align-items: center; gap: 6px; font-size: 0.6875rem; font-weight: 600; color: var(--text-secondary); background: var(--bg-card); border: 1px solid var(--border); padding: 4px 12px; border-radius: 4px; }
.harm-timing-1 { top: 28%; left: 26%; transform: translate(-50%, -50%); }
.harm-timing-2 { top: 28%; left: 74%; transform: translate(-50%, -50%); }
.harm-timing-3 { top: 67%; left: 26%; bottom: auto; transform: translate(-50%, -50%); }
.harm-timing-4 { top: 67%; left: 74%; bottom: auto; right: auto; transform: translate(-50%, -50%); }
.harm-timing-5 { top: 32%; left: 50%; transform: translate(-50%, -50%); }
.harm-timing-6 { top: 68%; left: 50%; bottom: auto; right: auto; transform: translate(-50%, -50%); }
.harm-timing-dot { width: 6px; height: 6px; border-radius: 50%; background: #3a9be0; }
.harm-timing-dot-orange { background: #e87a54; }
.harm-timing-dot-green { background: #7dc244; }
.harm-timing-dot-yellow { background: #f5c542; }
.harm-timing-dot-purple { background: #c084fc; }
.harm-timing-dot-sky { background: #38bdf8; }
@media (max-width: 768px) {
  .harmonization-visual { height: 400px; }
  .harm-hub-inner { width: 90px; height: 90px; }
  .harm-hub-icon { width: 28px; height: 28px; }
  .harm-ch-icon { width: 44px; height: 44px; }
  .harm-ch-icon svg { width: 18px; height: 18px; }
  .harm-ch-1 { top: 4%; left: 2%; } .harm-ch-2 { top: 4%; right: 2%; }
  .harm-ch-3 { bottom: 4%; left: 2%; } .harm-ch-4 { bottom: 4%; right: 2%; }
  .harm-ch-5 { top: 0%; left: 50%; transform: translateX(-50%); } .harm-ch-6 { bottom: 0%; left: 50%; transform: translateX(-50%); }
  .harm-timing { display: none; }
}

/* ── Trustpilot reviews (ported from styles.css, data-driven) ── */
.tp-badge {
  display: inline-flex; align-items: center; gap: 6px; margin-top: 20px;
  padding: 8px 18px; background: rgba(0,182,122,0.08); border: 1px solid rgba(0,182,122,0.2);
  border-radius: 4px; font-size: 0.8125rem; color: var(--text-secondary);
}
.tp-badge:hover { border-color: rgba(0,182,122,0.4); color: var(--text-secondary); }
.tp-badge-text { font-weight: 600; color: #00b67a; }
.tp-badge-label { font-weight: 600; color: var(--text-primary); }
.reviews-marquee {
  margin-top: 44px; display: flex; flex-direction: column; gap: 16px; overflow: visible;
  mask-image: linear-gradient(to right, transparent 0%, black 8%, black 92%, transparent 100%);
  -webkit-mask-image: linear-gradient(to right, transparent 0%, black 8%, black 92%, transparent 100%);
}
.reviews-track { display: flex; gap: 16px; width: max-content; will-change: transform; }
.reviews-track-1 { animation: reviewScroll1 80s linear infinite; }
.reviews-track-2 { animation: reviewScroll2 90s linear infinite; }
@keyframes reviewScroll1 { 0% { transform: translateX(0); } 100% { transform: translateX(-50%); } }
@keyframes reviewScroll2 { 0% { transform: translateX(-50%); } 100% { transform: translateX(0); } }
.reviews-marquee:hover .reviews-track { animation-play-state: paused; }
.review-card {
  flex-shrink: 0; width: 340px; padding: 26px 28px 22px;
  background: var(--bg-card); border: 1px solid var(--border); border-radius: var(--radius);
  transition: border-color 0.3s, box-shadow 0.3s, transform 0.3s;
}
.review-card:hover { border-color: rgba(0,182,122,0.3); box-shadow: 0 8px 32px rgba(0,0,0,0.2), 0 0 20px rgba(0,182,122,0.06); transform: translateY(-2px); }
.review-stars { color: #00b67a; font-size: 0.875rem; letter-spacing: 2px; margin-bottom: 12px; }
.review-text { font-size: 0.875rem; line-height: 1.7; color: var(--text-secondary); margin: 0 0 16px; font-style: italic; }
.review-card:hover .review-text { color: var(--text-primary); }
.review-author { font-size: 0.8125rem; font-weight: 600; color: var(--text-primary); }
@media (prefers-reduced-motion: reduce) {
  .reviews-track-1, .reviews-track-2 { animation: none; }
  .reviews-marquee { mask-image: none; -webkit-mask-image: none; flex-wrap: wrap; }
  .reviews-track { flex-wrap: wrap; }
}

/* ── Footer ── */
.of-footer {
  padding: 40px;
  text-align: center;
  border-top: 1px solid var(--border);
  color: var(--text-muted);
  font-size: 0.8125rem;
}
.of-footer img { height: 26px; opacity: 0.8; margin-bottom: 14px; }
.of-footer p { margin-bottom: 8px; }
.of-footer-links { display: flex; gap: 20px; justify-content: center; margin-top: 12px; }
.of-footer-links a { color: var(--text-muted); font-size: 0.8125rem; }
.of-footer-links a:hover { color: var(--primary); }

/* ========================================================
   FLAIR LAYER: particles, orbs, cursor glow, grid, glow
   Ported from the main site (styles.css) so the offer pages
   carry the same premium feel. All decorative, pointer-safe.
   ======================================================== */

/* Hero background stage that holds the decorative layers */
.of-hero-bg {
  position: absolute;
  inset: 0;
  z-index: 0;
  overflow: hidden;
  pointer-events: none;
}
.of-hero .of-hero-inner { position: relative; z-index: 2; }

/* Particle star field (canvas painted by inline script) */
.of-particles {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  z-index: 1;
  pointer-events: none;
}

/* Cursor glow that trails the pointer */
.of-cursor-glow {
  position: fixed;
  width: 600px;
  height: 600px;
  border-radius: 50%;
  background: radial-gradient(circle, var(--primary-glow, rgba(14,116,183,0.15)) 0%, transparent 70%);
  pointer-events: none;
  z-index: 0;
  transform: translate(-50%, -50%);
  opacity: 0;
  transition: opacity 0.5s ease;
}
body:hover .of-cursor-glow { opacity: 1; }

/* Faint grid with a radial fade */
.of-grid {
  position: absolute;
  inset: 0;
  background-image:
    linear-gradient(rgba(255,255,255,0.02) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255,255,255,0.02) 1px, transparent 1px);
  background-size: 60px 60px;
  mask-image: radial-gradient(ellipse 80% 60% at 50% 40%, black 30%, transparent 100%);
  -webkit-mask-image: radial-gradient(ellipse 80% 60% at 50% 40%, black 30%, transparent 100%);
}

/* Floating blurred orbs (usable in any section marked position:relative) */
.of-orb {
  position: absolute;
  border-radius: 50%;
  filter: blur(60px);
  will-change: transform;
  pointer-events: none;
  z-index: 0;
}
.of-orb-1 { width: 500px; height: 500px; background: var(--primary); top: -12%; right: -6%; opacity: 0.12; animation: ofFloat 12s ease-in-out infinite; }
.of-orb-2 { width: 400px; height: 400px; background: var(--accent);  bottom: -8%; left: -6%; opacity: 0.10; animation: ofFloat 15s ease-in-out infinite reverse; }
.of-orb-3 { width: 320px; height: 320px; background: var(--success); top: 42%; left: 30%; opacity: 0.06; animation: ofFloat 10s ease-in-out infinite 3s; }
@keyframes ofFloat {
  0%, 100% { transform: translate(0, 0) scale(1); }
  33% { transform: translate(30px, -30px) scale(1.05); }
  66% { transform: translate(-20px, 20px) scale(0.95); }
}

/* Concentric hero rings */
.of-rings { position: absolute; top: 46%; left: 50%; transform: translate(-50%, -50%); width: 100%; height: 100%; pointer-events: none; }
.of-ring { position: absolute; top: 50%; left: 50%; transform: translate(-50%, -50%); border-radius: 50%; border: 1px solid rgba(58,155,224,0.05); }
.of-ring-1 { width: 480px; height: 480px; animation: ofRingPulse 8s ease-in-out infinite; }
.of-ring-2 { width: 760px; height: 760px; animation: ofRingPulse 8s ease-in-out infinite 2s; }
.of-ring-3 { width: 1040px; height: 1040px; animation: ofRingPulse 8s ease-in-out infinite 4s; }
@keyframes ofRingPulse {
  0%, 100% { opacity: 0.3; transform: translate(-50%, -50%) scale(1); }
  50% { opacity: 0.08; transform: translate(-50%, -50%) scale(1.08); }
}

/* Animated flowing gradient text (upgrades the static .of-gradient) */
.of-gradient {
  background: linear-gradient(135deg, #3a9be0 0%, #7dc244 25%, #e87a54 50%, #3a9be0 75%, #7dc244 100%);
  background-size: 300% 300%;
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  animation: ofGradientFlow 6s ease infinite;
}
@keyframes ofGradientFlow {
  0% { background-position: 0% 50%; }
  50% { background-position: 100% 50%; }
  100% { background-position: 0% 50%; }
}

/* Soft glow behind key headings */
.of-glow-heading {
  text-shadow: 0 0 24px rgba(58,155,224,0.28), 0 0 48px rgba(58,155,224,0.12), 0 0 90px rgba(58,155,224,0.05);
  transition: text-shadow 0.6s ease;
}
.of-glow-heading:hover {
  text-shadow: 0 0 32px rgba(58,155,224,0.45), 0 0 64px rgba(58,155,224,0.22), 0 0 120px rgba(58,155,224,0.1);
}

/* Shimmer sweep on the hero badge */
.of-badge { position: relative; overflow: hidden; }
.of-badge::after {
  content: '';
  position: absolute;
  top: -1px; left: -60%;
  width: 55%; height: calc(100% + 2px);
  background: linear-gradient(90deg, transparent, rgba(58,155,224,0.3), transparent);
  animation: ofBadgeShine 3.4s ease-in-out infinite;
}
@keyframes ofBadgeShine { 0% { left: -60%; } 50%, 100% { left: 120%; } }
.of-badge-dot { animation: ofDot 2s ease-in-out infinite; }
@keyframes ofDot { 0%, 100% { opacity: 1; transform: scale(1); } 50% { opacity: 0.5; transform: scale(1.5); } }

/* Sheen sweep on primary buttons */
.of-btn-glow { position: relative; overflow: hidden; }
.of-btn-glow::after {
  content: '';
  position: absolute;
  top: -2px; left: -60%;
  width: 55%; height: calc(100% + 4px);
  background: linear-gradient(90deg, transparent, rgba(255,255,255,0.16), transparent);
  animation: ofBtnShine 4.2s ease-in-out infinite;
}
@keyframes ofBtnShine { 0% { left: -60%; } 40%, 100% { left: 120%; } }

/* Sections that carry orbs need a stacking context above them */
.of-section, .of-final { position: relative; }
.of-section > .of-wrap, .of-section > .of-section-head, .of-section > .of-steps,
.of-section > .of-includes, .of-section > .of-tiers, .of-section > .of-faq,
.of-section > .of-quotes, .of-section > .of-logos, .of-section > .of-price-card,
.of-section > .of-downsell { position: relative; z-index: 1; }

/* ── Scroll animations ── */
[data-animate] {
  opacity: 0;
  transform: translateY(24px);
  transition: opacity 0.6s cubic-bezier(0.16, 1, 0.3, 1),
              transform 0.6s cubic-bezier(0.16, 1, 0.3, 1);
}
[data-animate].visible { opacity: 1; transform: translateY(0); }
@media (prefers-reduced-motion: reduce) {
  [data-animate] { opacity: 1; transform: none; transition: none; }
  html { scroll-behavior: auto; }
  .of-orb, .of-ring, .of-gradient, .of-badge::after, .of-badge-dot, .of-btn-glow::after { animation: none !important; }
  .of-particles, .of-cursor-glow { display: none; }
}

/* ── Responsive ── */
@media (max-width: 860px) {
  .of-steps { grid-template-columns: 1fr; max-width: 460px; }
  .of-tiers { grid-template-columns: 1fr; max-width: 420px; }
  .of-tier-featured, .of-tier-spark { transform: none; }
}
@media (max-width: 768px) {
  .of-wrap { padding: 0 20px; }
  .of-hero { padding: 110px 20px 48px; }
  .of-h1 { font-size: 2.125rem; }
  .of-subtitle { font-size: 1.0625rem; }
  .of-section { padding: 56px 20px; }
  .of-h2 { font-size: 1.75rem; }
  .of-nav { padding: 12px 20px; }
  .of-final { padding: 64px 20px; }
  .of-includes { padding: 28px 24px; }
}
@media (max-width: 480px) {
  .of-h1 { font-size: 1.75rem; }
  .of-price-now { font-size: 2.75rem; }
}

/* ── The problem: the scattered desk ─────────────────────────── */
.of-mess { display: grid; grid-template-columns: 1.25fr 1fr; gap: 40px; align-items: center; max-width: 1100px; margin: 0 auto; }
.of-mess-desk { position: relative; height: 560px; }
.of-mess-win {
  position: absolute; width: 45%; background: var(--bg-card); border: 1px solid var(--border); border-radius: 10px;
  box-shadow: 0 18px 40px rgba(0,0,0,0.35); font-size: 0.74rem; color: var(--text-secondary); overflow: hidden;
  transform: rotate(var(--r, 0deg)); transition: transform 0.4s, border-color 0.4s;
}
.of-mess-win:hover { border-color: var(--border-hover); transform: rotate(0deg) translateY(-3px); z-index: 5; }
.of-mess-win.owned { border-color: rgba(232,122,84,0.45); }
.of-mess-bar { display: flex; align-items: center; gap: 8px; padding: 7px 10px; border-bottom: 1px solid var(--border); background: rgba(255,255,255,0.02); }
.of-mess-dots { display: inline-flex; gap: 4px; }
.of-mess-dots i { width: 7px; height: 7px; border-radius: 50%; background: var(--border-hover); display: block; }
.of-mess-app { font-weight: 600; color: var(--text-primary); font-size: 0.72rem; white-space: nowrap; overflow: hidden; text-overflow: ellipsis; }
.of-mess-owner, .of-mess-bill { margin-left: auto; font-size: 0.62rem; font-weight: 600; padding: 2px 7px; border-radius: 999px; white-space: nowrap; }
.of-mess-owner { color: var(--accent); background: rgba(232,122,84,0.12); }
.of-mess-bill { color: var(--text-muted); background: rgba(142,162,191,0.12); }
.of-mess-body { padding: 10px 12px; display: flex; flex-direction: column; gap: 3px; line-height: 1.35; }
.of-mess-body b { color: var(--text-primary); font-weight: 600; overflow-wrap: anywhere; }
.of-mess-body em { font-style: normal; color: var(--text-muted); font-size: 0.68rem; }
.of-mess-stale { text-decoration: line-through; text-decoration-color: rgba(232,122,84,0.7); }
.of-mess-bad { color: var(--accent); }
.of-mess-tabs { flex-direction: row; flex-wrap: wrap; gap: 5px; }
.of-mess-tabs span { background: rgba(255,255,255,0.05); border: 1px solid var(--border); border-radius: 5px; padding: 3px 7px; font-size: 0.64rem; max-width: 100%; white-space: nowrap; overflow: hidden; text-overflow: ellipsis; }
.of-mess-tabs .of-mess-more { color: var(--accent); border-color: rgba(232,122,84,0.35); }
.of-mess-sheet { display: grid; grid-template-columns: repeat(4, 1fr); gap: 0; padding: 0; }
.of-mess-sheet span { padding: 8px 6px; border-right: 1px solid var(--border); font-family: ui-monospace, SFMono-Regular, Menlo, monospace; font-size: 0.68rem; text-align: center; }
.of-mess-sheet span:last-child { border-right: 0; color: var(--accent); }
.w1 { top: 0;     left: 0;     --r: -1.5deg; }
.w2 { top: 8px;   right: 0;    --r: 1.2deg; width: 47%; }
.w3 { top: 150px; left: 3%;    --r: 1deg; }
.w4 { top: 158px; right: 0;    --r: -1.2deg; width: 47%; }
.w5 { top: 322px; left: 0;     --r: -1deg; }
.w6 { top: 330px; right: 2%;   --r: 1.4deg; }
.w7 { bottom: 0;  left: 50%;   --r: 0deg; transform: translateX(-50%) rotate(-0.8deg); width: 52%; }
.w1, .w3, .w5 { animation: ofMessFloat 7s ease-in-out infinite; }
.w2, .w4, .w6 { animation: ofMessFloat 8s ease-in-out infinite reverse; }
@keyframes ofMessFloat { 0%, 100% { translate: 0 0; } 50% { translate: 0 -4px; } }
.w7:hover { transform: translateX(-50%) rotate(0deg) translateY(-3px); }
.of-mess-links { position: absolute; inset: 0; width: 100%; height: 100%; pointer-events: none; z-index: 0; }
.of-mess-links path { stroke: var(--accent); stroke-width: 1.5; stroke-dasharray: 5 7; fill: none; opacity: 0.55; animation: ofMessDash 1.6s linear infinite; }
.of-mess-win { z-index: 1; }
.of-mess-nosync {
  position: absolute; left: 50%; top: 53.5%; transform: translate(-50%, -50%); z-index: 3;
  background: rgba(11,22,39,0.92); border: 1px solid rgba(232,122,84,0.6); color: var(--accent);
  border-radius: 999px; padding: 6px 12px; font-size: 0.7rem; font-weight: 700; letter-spacing: 0.02em; white-space: nowrap;
  box-shadow: 0 0 0 6px rgba(232,122,84,0.08), 0 0 32px rgba(232,122,84,0.25);
}
.of-mess-nosync span { display: inline-block; font-size: 1rem; line-height: 0; margin-right: 4px; transform: translateY(2px); }
@keyframes ofMessDash { to { stroke-dashoffset: -24; } }

.of-mess-tally { display: flex; flex-direction: column; gap: 26px; }
.of-mess-stats { display: grid; grid-template-columns: repeat(3, 1fr); gap: 10px; }
.of-mess-stat { background: var(--bg-card); border: 1px solid var(--border); border-radius: var(--radius); padding: 16px 10px; text-align: center; }
.of-mess-stat b { display: block; font-family: var(--font-heading); font-size: 2rem; font-weight: 700; line-height: 1; color: var(--text-primary); }
.of-mess-stat span { display: block; margin-top: 6px; font-size: 0.72rem; color: var(--text-muted); text-transform: uppercase; letter-spacing: 0.06em; }
.of-mess-stat.bad { border-color: rgba(232,122,84,0.45); }
.of-mess-stat.bad b { color: var(--accent); }
.of-mess-costs { list-style: none; margin: 0; padding: 0; display: flex; flex-direction: column; gap: 14px; }
.of-mess-costs li { display: grid; grid-template-columns: 150px 1fr; gap: 14px; padding: 12px 0; border-top: 1px solid var(--border); font-size: 0.9rem; line-height: 1.5; }
.of-mess-costs li:last-child { border-bottom: 1px solid var(--border); }
.of-mess-cost-k { font-family: var(--font-heading); font-weight: 600; color: var(--text-primary); position: relative; padding-left: 16px; }
.of-mess-cost-k::before { content: ""; position: absolute; left: 0; top: 0.5em; width: 7px; height: 7px; border-radius: 50%; background: var(--accent); box-shadow: 0 0 0 3px rgba(232,122,84,0.18); }
.of-mess-cost-v { color: var(--text-secondary); }
.of-mess-kicker { font-family: var(--font-heading); font-size: 1.2rem; font-weight: 600; color: var(--text-primary); line-height: 1.4; margin: 0; padding-left: 16px; border-left: 3px solid var(--accent); }
@media (max-width: 960px) {
  .of-mess { grid-template-columns: 1fr; gap: 32px; }
  .of-mess-desk { height: 560px; max-width: 560px; margin: 0 auto; width: 100%; }
}
@media (max-width: 560px) {
  .of-mess-desk { height: auto; display: grid; grid-template-columns: 1fr 1fr; gap: 10px; }
  .of-mess-win, .w1, .w2, .w3, .w4, .w5, .w6, .w7 { position: static; width: auto; transform: none; --r: 0deg; }
  .w7 { grid-column: 1 / -1; }
  .of-mess-links, .of-mess-nosync { display: none; }
  .of-mess-dots { display: none; }
  .of-mess-app { white-space: normal; overflow: visible; }
  .of-mess-bar { flex-wrap: wrap; }
  .of-mess-costs li { grid-template-columns: 1fr; gap: 4px; }
}
@media (prefers-reduced-motion: reduce) { .of-mess-links path, .of-mess-win { animation: none; } }

/* ── Live demo (iframe of /demo, the homepage Command Center mockup) ── */
.of-demo-frame { max-width: 1180px; margin: 0 auto; }
.of-demo-frame iframe { display: block; width: 100%; height: 760px; border: 0; background: transparent; }
@media (max-width: 768px) { .of-demo-frame iframe { height: 720px; } }

/* ── Audit fixes ── */
a.of-video-placeholder { text-decoration: none; color: inherit; cursor: pointer; }
a.of-video-placeholder:hover .of-video-play { transform: scale(1.06); }
.of-tier-list { list-style: none; margin: 14px 0 18px; padding: 0; display: flex; flex-direction: column; gap: 7px; text-align: left; font-size: 0.85rem; color: var(--text-secondary); }
.of-tier-list li { position: relative; padding-left: 18px; line-height: 1.4; }
.of-tier-list li::before { content: ""; position: absolute; left: 0; top: 0.5em; width: 8px; height: 8px; border-radius: 50%; background: var(--primary); opacity: 0.8; }
.of-tier-featured .of-tier-list li::before { background: var(--accent); }
.of-shift { display: grid; grid-template-columns: 1fr 1fr; gap: 18px; max-width: 900px; margin: 0 auto; }
.of-shift-col { background: var(--bg-card); border: 1px solid var(--border); border-radius: var(--radius-lg); padding: 22px 24px; }
.of-shift-col.on { border-color: rgba(125,194,68,0.4); }
.of-shift-col h3 { font-family: var(--font-heading); font-size: 0.8rem; text-transform: uppercase; letter-spacing: 0.08em; color: var(--text-muted); margin: 0 0 12px; }
.of-shift-col.on h3 { color: var(--success); }
.of-shift-col ul { list-style: none; margin: 0; padding: 0; display: flex; flex-direction: column; gap: 9px; color: var(--text-secondary); font-size: 0.95rem; }
.of-shift-col li { position: relative; padding-left: 22px; line-height: 1.45; }
.of-shift-col li::before { content: "\00d7"; position: absolute; left: 0; top: -1px; color: var(--accent); font-weight: 700; }
.of-shift-col.on li::before { content: "\2713"; color: var(--success); }
.of-cta-next { font-size: 0.85rem; color: var(--text-muted); margin-top: 12px; line-height: 1.5; }
@media (max-width: 640px) { .of-shift { grid-template-columns: 1fr; } }

/* Reviews: clip at the section, never inside the marquee (a row was getting cut) */
.of-reviews { overflow: hidden; }
/* Tiers: outer cards share one height; Launch stays scaled up */
.of-tiers { align-items: stretch; }
.of-tier { display: flex; flex-direction: column; }
.of-tier .of-tier-list { flex: 1; }
.of-tier .of-btn { margin-top: auto; }
