:root {
  --bg: #070b0f;
  --bg-2: #0c1117;
  --panel: #101720;
  --panel-2: #151e28;
  --paper: #f7f1df;
  --text: #f7f1df;
  --muted: #b7b1a2;
  --muted-2: #7e8791;
  --line: rgba(255, 255, 255, .095);
  --line-strong: rgba(246, 214, 103, .32);
  --gold: #d6a823;
  --gold-2: #f6d667;
  --lime: #b6ef42;
  --green: #22845c;
  --green-2: #79d9a8;
  --danger: #f16666;
  --shadow: 0 22px 70px rgba(0, 0, 0, .46);
  --glow: 0 20px 70px rgba(214, 168, 35, .19);
  --radius: 8px;
  --display: 'Cinzel', Georgia, 'Times New Roman', serif;
  --sans: 'Inter', ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
  --surface-texture: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='48' height='48' viewBox='0 0 48 48'%3E%3Cpath d='M0 0H48M0 0V48' fill='none' stroke='%23f6d667' stroke-opacity='.035' stroke-width='1'/%3E%3Ccircle cx='24' cy='24' r='.75' fill='%23f6d667' fill-opacity='.045'/%3E%3C/svg%3E");
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
  margin: 0;
  overflow-x: hidden;
  background:
    var(--surface-texture) 0 0 / 48px 48px repeat,
    radial-gradient(circle at 78% 8%, rgba(214, 168, 35, .13), transparent 28rem),
    radial-gradient(circle at 12% 28%, rgba(182, 239, 66, .055), transparent 24rem),
    linear-gradient(180deg, #080c11, var(--bg) 48rem);
  color: var(--text);
  font-family: var(--sans);
  font-size: 16px;
  line-height: 1.65;
  letter-spacing: 0;
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
}
a { color: inherit; text-decoration: none; }
button, input, select { font: inherit; letter-spacing: 0; }
button { cursor: pointer; }
img, iframe { display: block; max-width: 100%; }

.skip-link {
  position: fixed;
  left: -10000px;
  top: 12px;
  z-index: 1000;
  padding: 10px 14px;
  border-radius: 4px;
  background: var(--gold-2);
  color: #111;
  font-weight: 800;
}
.skip-link:focus { left: 12px; }

.container { width: min(1160px, calc(100% - 36px)); margin-inline: auto; }
.narrow { width: min(800px, calc(100% - 36px)); }
.center { text-align: center; }
.section { position: relative; padding: 106px 0; }
section[id] { scroll-margin-top: 78px; }
.section-lg { height: calc(100svh - 82px); min-height: 720px; padding: 108px 0 72px; }
.section-alt {
  border-block: 1px solid var(--line);
  background:
    linear-gradient(180deg, rgba(255, 255, 255, .022), rgba(255, 255, 255, .01)),
    radial-gradient(circle at 50% 0%, rgba(214, 168, 35, .06), transparent 34rem);
}
#about { padding-top: 40px; border-top: 1px solid var(--line); background: rgba(12, 17, 23, .48); }

.site-header {
  position: fixed;
  inset: 0 0 auto;
  z-index: 100;
  border-bottom: 1px solid transparent;
  transition: background .25s ease, border-color .25s ease, backdrop-filter .25s ease;
}
.site-header.is-scrolled,
.site-header.is-open {
  border-bottom-color: var(--line);
  background: rgba(7, 11, 15, .9);
  backdrop-filter: blur(18px);
}
.header-inner { display: flex; align-items: center; justify-content: space-between; gap: 24px; height: 78px; }
.brand { display: inline-flex; align-items: center; min-width: 0; line-height: 1; }
.public-brand { gap: 12px; color: var(--text); }
.public-brand-mark { position: relative; display: grid; width: 50px; height: 50px; place-items: center; flex: 0 0 50px; overflow: hidden; border: 1px solid rgba(225, 191, 99, .58); border-radius: 16px; background: radial-gradient(circle at 50% 42%, rgba(225, 191, 99, .18), transparent 40%), linear-gradient(145deg, rgba(225, 191, 99, .16), rgba(15, 77, 53, .18)); color: var(--gold-2); font-family: var(--display); font-size: 27px; font-weight: 900; box-shadow: 0 0 0 5px rgba(225, 191, 99, .035), 0 16px 38px rgba(0, 0, 0, .24); }
.public-brand-mark span { position: relative; z-index: 2; }
.public-brand-mark::before, .public-brand-mark::after { content: ''; position: absolute; inset: 7px; border: 1px solid rgba(225, 191, 99, .45); border-radius: 13px; transform: rotate(45deg); pointer-events: none; }
.public-brand-mark::after { inset: 12px; border-color: rgba(225, 191, 99, .28); border-radius: 50%; transform: none; }
.public-brand-name { color: var(--text); font-family: var(--display); font-size: 1.08rem; font-weight: 800; letter-spacing: .13em; text-shadow: 0 0 24px rgba(225, 191, 99, .16); }
.site-nav { display: flex; align-items: center; gap: 27px; }
.site-nav a:not(.btn) { color: rgba(247, 241, 223, .76); font-size: .78rem; font-weight: 800; text-transform: uppercase; }
.site-nav a:hover { color: var(--gold-2); }
.mobile-toggle { display: none; }

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 50px;
  padding: 0 28px;
  border: 1px solid rgba(255, 255, 255, .08);
  border-radius: 8px;
  background: linear-gradient(135deg, var(--gold), var(--gold-2));
  color: #151006;
  font-size: .72rem;
  font-weight: 900;
  text-transform: uppercase;
  box-shadow: 0 16px 48px rgba(214, 168, 35, .22), inset 0 1px 0 rgba(255, 255, 255, .38);
  transition: transform .2s ease, box-shadow .2s ease, filter .2s ease;
}
.btn:hover { transform: translateY(-2px); box-shadow: 0 22px 62px rgba(214, 168, 35, .32); filter: saturate(1.08); }
.btn:focus-visible, input:focus-visible, select:focus-visible, a:focus-visible { outline: 3px solid rgba(182, 239, 66, .72); outline-offset: 3px; }
.btn:disabled { cursor: not-allowed; opacity: .55; transform: none; }
.btn-small { min-height: 40px; padding-inline: 18px; }
.btn-block { width: 100%; }
.btn-outline { border-color: rgba(214, 168, 35, .52); background: rgba(255, 255, 255, .025); color: var(--gold-2); box-shadow: none; }
.btn-outline:hover { background: rgba(214, 168, 35, .105); }

.hero {
  display: grid;
  place-items: center;
  overflow: hidden;
  text-align: center;
  background: #070b0f;
}
.hero::before {
  content: '';
  position: absolute;
  inset: 0;
  background:
    linear-gradient(90deg, rgba(7, 11, 15, .96) 0%, rgba(7, 11, 15, .74) 26%, rgba(7, 11, 15, .42) 54%, rgba(7, 11, 15, .74) 100%),
    linear-gradient(180deg, rgba(7, 11, 15, .38) 0%, rgba(7, 11, 15, .54) 55%, #070b0f 100%),
    url('/website/assets/heroChart.png') center / cover no-repeat;
  transform: scale(1.01);
}
.hero::after {
  content: '';
  position: absolute;
  inset: 0;
  pointer-events: none;
  background:
    radial-gradient(circle at 58% 38%, rgba(214, 168, 35, .18), transparent 22rem),
    linear-gradient(90deg, #070b0f 0%, transparent 17%, transparent 82%, #070b0f 100%);
}
.hero-content { position: relative; z-index: 2; width: min(980px, calc(100% - 36px)); }
.eyebrow { margin: 0 0 14px; color: var(--gold-2); font-size: .73rem; font-weight: 900; text-transform: uppercase; }
.eyebrow.green { color: var(--lime); }
h1, h2, h3 { margin: 0; letter-spacing: 0; }
h1, h2, .card h3, .timeline-item h3, .offer-box h3, .footer-grid h3 { font-family: var(--display); text-transform: uppercase; }
h1 { max-width: 960px; margin-inline: auto; font-size: 4.3rem; font-weight: 800; line-height: 1.02; text-shadow: 0 4px 34px rgba(0, 0, 0, .65); }
h1 span, h1 em, h2 span { color: var(--gold-2); font-style: normal; text-shadow: 0 0 30px rgba(214, 168, 35, .28); }
h1 em { display: block; }
h2 { font-size: 3.7rem; font-weight: 800; line-height: 1.02; }
.hero-copy, .section-copy { color: rgba(247, 241, 223, .72); font-size: 1.08rem; line-height: 1.78; }
.hero-copy { max-width: 760px; margin: 24px auto; }
.section-copy { margin: 18px auto 0; }
.proof-grid { display: grid; grid-template-columns: repeat(2, minmax(0, 1fr)); gap: 12px; max-width: 760px; margin: 28px auto 32px; }
.proof-grid div { display: flex; align-items: center; gap: 9px; min-width: 0; padding: 10px 14px; border: 1px solid var(--line); border-radius: 8px; background: rgba(16, 23, 32, .78); color: rgba(247, 241, 223, .87); text-align: left; font-size: .88rem; font-weight: 650; backdrop-filter: blur(8px); }
.proof-grid span { flex: 0 0 auto; color: var(--lime); font-weight: 900; }
.hero-actions { display: flex; flex-wrap: wrap; justify-content: center; gap: 12px; }

.split-cards { display: grid; grid-template-columns: repeat(2, minmax(0, 1fr)); gap: 26px; margin-top: 48px; align-items: stretch; }
.card {
  position: relative;
  display: flex;
  flex-direction: column;
  overflow: hidden;
  padding: 32px;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: linear-gradient(145deg, rgba(22, 31, 42, .94), rgba(11, 16, 22, .96));
  box-shadow: var(--shadow);
}
.card::before { content: ''; position: absolute; left: 0; right: 0; top: 0; height: 1px; background: linear-gradient(90deg, transparent, rgba(246, 214, 103, .34), transparent); }
.gold-card { border-color: rgba(214, 168, 35, .38); box-shadow: var(--glow); }
.card h3 { margin-bottom: 18px; font-size: 1.45rem; font-weight: 700; line-height: 1.18; }
.gold-card h3, .feature-card h3, .offer-box h3 { color: var(--gold-2); }
.check-list { display: grid; gap: 13px; margin: 0; padding: 0; list-style: none; color: rgba(247, 241, 223, .74); font-size: .95rem; line-height: 1.58; }
.check-list li { position: relative; padding-left: 31px; }
.check-list li::before { position: absolute; left: 0; top: .04em; display: grid; place-items: center; width: 20px; height: 20px; border-radius: 50%; font-size: .72rem; font-weight: 900; }
.check-list.success li::before { content: '\2713'; background: var(--lime); color: #111; }
.check-list.danger li::before { content: '\00D7'; background: var(--danger); color: #120a0a; }
.check-list.compact { gap: 9px; margin-top: 20px; font-size: .9rem; }
.quote { margin-top: 50px; color: rgba(247, 241, 223, .82); text-align: center; font-family: var(--display); font-size: 1.35rem; font-style: normal; line-height: 1.55; }
.quote cite { display: block; margin-top: 16px; color: var(--gold-2); font-family: var(--sans); font-size: .78rem; font-style: normal; font-weight: 800; text-transform: uppercase; }

.card-grid { display: grid; gap: 24px; margin-top: 48px; }
.card-grid.three { grid-template-columns: repeat(3, minmax(0, 1fr)); }
.feature-card { min-height: 100%; transition: transform .25s ease, border-color .25s ease, box-shadow .25s ease; }
.feature-card:hover { transform: translateY(-5px); border-color: rgba(214, 168, 35, .46); box-shadow: var(--glow); }
.value-card div, .step-icon { display: grid; place-items: center; width: 54px; height: 54px; border-radius: 8px; background: linear-gradient(135deg, rgba(214, 168, 35, .18), rgba(246, 214, 103, .08)); color: var(--gold-2); font-size: .78rem; font-weight: 900; box-shadow: inset 0 0 0 1px rgba(214, 168, 35, .2), 0 12px 36px rgba(0, 0, 0, .25); }
.feature-card .eyebrow { margin-bottom: 5px; }
.feature-card > p:not(.eyebrow) { margin: 0; color: rgba(247, 241, 223, .68); line-height: 1.72; }
.tag-row { display: flex; flex-wrap: wrap; gap: 8px; margin-top: auto; padding-top: 24px; }
.tag-row span { padding: 6px 10px; border: 1px solid rgba(255, 255, 255, .065); border-radius: 6px; background: rgba(255, 255, 255, .055); color: rgba(247, 241, 223, .76); font-size: .72rem; font-weight: 800; }
.plan-card h2 { margin-bottom: 18px; color: var(--paper); font-size: 3.55rem; line-height: .95; }
.plan-card .btn { margin-top: 20px; }
.recommended-plan::after { content: 'Most requested'; position: absolute; top: 16px; right: 16px; padding: 5px 8px; border-radius: 4px; background: var(--green); color: #fff; font-size: .62rem; font-weight: 900; text-transform: uppercase; }

.marketing-home .section-lg { height: auto; min-height: 100svh; padding-block: 132px 92px; }
.marketing-home .micro-proof { margin: 18px auto 0; color: var(--muted); font-size: .88rem; }
.marketing-home .micro-proof strong { color: var(--lime); }
.marketing-home .scroll-cue { position: absolute; left: 50%; bottom: 30px; z-index: 3; width: 18px; height: 34px; border: 2px solid rgba(214, 168, 35, .52); border-radius: 8px; transform: translateX(-50%); }
.marketing-home .scroll-cue::after { content: ''; position: absolute; top: 7px; left: 50%; width: 4px; height: 8px; border-radius: 2px; background: var(--gold-2); transform: translateX(-50%); animation: marketing-cue 1.4s infinite; }
@keyframes marketing-cue { 0% { opacity: 1; transform: translate(-50%, 0); } 100% { opacity: 0; transform: translate(-50%, 10px); } }
.marketing-home .feature-card .icon { display: grid; place-items: center; width: 54px; height: 54px; margin-bottom: 22px; border-radius: 8px; background: linear-gradient(135deg, rgba(214, 168, 35, .18), rgba(246, 214, 103, .08)); color: var(--gold-2); font-size: 1.22rem; font-weight: 900; box-shadow: inset 0 0 0 1px rgba(214, 168, 35, .2), 0 12px 36px rgba(0, 0, 0, .25); }
.marketing-home .feature-card > .green-text { margin: -8px 0 16px; color: var(--lime); font-size: .78rem; font-weight: 900; line-height: 1.35; text-transform: uppercase; }
.marketing-home .cta-row { margin-top: 36px; }
.marketing-home .offer-box { text-align: center; }
.marketing-home .offer-box > span { display: block; margin: 10px 0 16px; color: rgba(247, 241, 223, .7); }
.marketing-home .offer-box .btn-block { margin-top: 14px; }
.marketing-home .offer-box small { display: block; margin-top: 14px; color: var(--muted-2); }
.journey-heading { margin-bottom: 38px; }
.journey-heading .journey-subcopy { margin-top: 6px; }
.journey-option-grid { display: grid; grid-template-columns: repeat(2, minmax(0, 1fr)); gap: 24px; align-items: stretch; }
.marketing-home .journey-option-card { display: flex; flex-direction: column; min-height: 100%; text-align: left; }
.journey-option-card > span { display: block; min-height: 52px; margin: 0 0 4px; color: rgba(247, 241, 223, .7); line-height: 1.65; }
.journey-option-card .check-list { margin-bottom: 26px; }
.journey-option-actions { display: grid; grid-template-columns: repeat(2, minmax(0, 1fr)); gap: 12px; margin-top: auto; }
.journey-option-actions .btn-block { margin-top: 0; }
.journey-option-actions-right .btn { grid-column: 2; }
.journey-demo-card { border-color: rgba(121, 217, 168, .28); }
.journey-demo-card .journey-option-actions { grid-template-columns: 1fr; }
.legal-links { display: flex; flex-wrap: wrap; justify-content: center; gap: 8px 18px; margin-top: 18px; }
.legal-links a { color: var(--muted-2); font-size: .78rem; }
.legal-links a:hover { color: var(--gold-2); }
.risk-note { max-width: 920px; margin: 18px auto 0; color: rgba(174, 180, 187, .74); font-size: .78rem; line-height: 1.55; }
.sr-only { position: absolute; width: 1px; height: 1px; padding: 0; margin: -1px; overflow: hidden; clip: rect(0, 0, 0, 0); white-space: nowrap; border: 0; }

/* Public vendor-review marketing surfaces. */
.vendor-public .hero::before {
  background:
    linear-gradient(90deg, rgba(7, 11, 15, .96) 0%, rgba(7, 11, 15, .7) 46%, rgba(7, 11, 15, .94) 100%),
    linear-gradient(150deg, #0c141d 0%, #070b0f 48%, #131916 100%);
}
.vendor-public .hero::after { background: radial-gradient(circle at 68% 40%, rgba(214, 168, 35, .14), transparent 24rem); }
.vendor-public .plan-card h2 { min-height: 2.05em; font-size: 2.25rem; }
.vendor-public .plan-card .btn { margin-top: auto; }
.vendor-note { max-width: 940px; margin: 18px auto 0; color: rgba(174, 180, 187, .74); font-size: .78rem; line-height: 1.6; }

.product-hero { min-height: 720px; }
.product-hero-grid, .product-fact-grid { display: grid; grid-template-columns: minmax(0, 1fr) minmax(360px, .92fr); gap: 44px; align-items: center; }
.product-hero-copy { position: relative; z-index: 2; }
.product-hero-copy h1 { margin-inline: 0; }
.product-hero-copy .hero-copy { margin-inline: 0; }
.product-signal-strip { display: grid; grid-template-columns: repeat(2, minmax(0, 1fr)); gap: 1px; margin: 30px 0; overflow: hidden; border: 1px solid var(--line); border-radius: var(--radius); background: var(--line); }
.product-signal-strip > div { min-height: 92px; padding: 18px; background: rgba(16, 23, 32, .88); }
.product-signal-strip strong, .product-signal-strip span { display: block; }
.product-signal-strip strong { color: var(--green-2); font-size: 1rem; line-height: 1.2; }
.product-signal-strip span { margin-top: 7px; color: var(--muted); font-size: .73rem; line-height: 1.35; letter-spacing: .04em; text-transform: uppercase; }
.product-workflow-heading { max-width: 820px; margin-bottom: 38px; }
.product-workflow-heading h2 { max-width: 700px; margin: 0; font-size: 3.2rem; }
.product-workflow-heading .section-copy { margin: 16px 0 0; }
.product-architecture-grid { display: grid; grid-template-columns: repeat(3, minmax(0, 1fr)); gap: 18px; }
.product-architecture-card { min-height: 240px; padding: 28px; border-top: 2px solid rgba(214, 168, 35, .72); background: linear-gradient(155deg, rgba(22, 31, 42, .88), rgba(9, 14, 20, .96)); }
.product-architecture-card .eyebrow { margin-bottom: 18px; }
.product-architecture-card h3 { margin-bottom: 12px; font-size: 1.45rem; line-height: 1.16; }
.product-architecture-card p:last-child { margin: 0; color: var(--muted); line-height: 1.7; }
.visual-placeholder, .logo-placeholder {
  position: relative;
  display: grid;
  place-content: center;
  min-height: 360px;
  padding: 34px;
  overflow: hidden;
  border: 1px dashed rgba(246, 214, 103, .58);
  border-radius: var(--radius);
  background:
    linear-gradient(135deg, rgba(214, 168, 35, .11), transparent 42%),
    repeating-linear-gradient(135deg, rgba(247, 241, 223, .045) 0 1px, transparent 1px 18px),
    #0c141c;
  color: var(--text);
  text-align: center;
  box-shadow: var(--shadow);
}
.visual-placeholder::before {
  content: '';
  position: absolute;
  inset: 18px;
  border: 1px solid rgba(121, 217, 168, .24);
  border-radius: 5px;
  pointer-events: none;
}
.visual-placeholder > *, .logo-placeholder > * { position: relative; z-index: 1; }
.visual-placeholder span { color: var(--gold-2); font-size: .72rem; font-weight: 900; letter-spacing: .08em; text-transform: uppercase; }
.visual-placeholder strong { display: block; margin-top: 8px; font-family: var(--display); font-size: 1.75rem; line-height: 1.18; text-transform: uppercase; }
.visual-placeholder small { display: block; margin-top: 16px; color: var(--muted); font-size: .78rem; line-height: 1.55; }
.product-screenshot-placeholder { aspect-ratio: 16 / 10; min-height: 0; }
.product-chart-capture { position: relative; z-index: 2; margin: 0; overflow: hidden; border: 1px solid rgba(246, 214, 103, .42); border-radius: var(--radius); background: #121212; box-shadow: var(--shadow); }
.product-chart-capture img { display: block; width: 100%; aspect-ratio: 16 / 6; object-fit: contain; object-position: center; }
.product-chart-capture figcaption { padding: 13px 16px; border-top: 1px solid rgba(246, 214, 103, .22); color: var(--muted); font-size: .75rem; line-height: 1.5; }
.compact-placeholder { min-height: 220px; margin-top: auto; }
.compact-placeholder strong { font-size: 1.25rem; }
.product-options-copy h3, .product-options-section .gold-card h3 { margin-bottom: 12px; font-size: 1.7rem; }
.product-options-copy > p:not(.eyebrow) { color: var(--muted); line-height: 1.7; }
.options-summary { display: grid; gap: 13px; margin: 22px 0; }
.options-summary > div { padding: 14px 15px; border-left: 2px solid rgba(214, 168, 35, .7); background: rgba(255, 255, 255, .025); }
.options-summary dt { margin-bottom: 5px; color: var(--gold-2); font-size: .74rem; font-weight: 900; letter-spacing: .08em; text-transform: uppercase; }
.options-summary dd { margin: 0; color: var(--muted); font-size: .87rem; line-height: 1.58; }
.product-options-note { margin: 0; color: rgba(174, 180, 187, .75); font-size: .78rem; line-height: 1.55; }
.product-options-capture { margin: 18px 0 0; overflow: hidden; border: 1px solid rgba(246, 214, 103, .34); border-radius: 5px; background: #242424; }
.product-options-launch { display: block; width: 100%; padding: 0; overflow: hidden; border: 0; background: transparent; cursor: zoom-in; }
.product-options-capture img { display: block; width: 100%; max-height: 360px; object-fit: cover; object-position: top; transition: transform .25s ease; }
.product-options-launch:hover img, .product-options-launch:focus-visible img { transform: scale(1.02); }
.product-options-capture figcaption { padding: 11px 13px; color: var(--muted); font-size: .75rem; line-height: 1.45; }
.text-button { display: inline; padding: 0; border: 0; background: transparent; color: var(--green-2); font: inherit; text-decoration: underline; text-underline-offset: 3px; cursor: pointer; }
.image-overlay { position: fixed; z-index: 100; inset: 0; display: grid; place-items: center; padding: 28px; background: rgba(2, 5, 8, .88); backdrop-filter: blur(7px); }
.image-overlay[hidden] { display: none; }
body.has-image-overlay { overflow: hidden; }
.image-overlay-dialog { width: min(1120px, 100%); max-height: min(860px, calc(100svh - 56px)); overflow: auto; border: 1px solid rgba(246, 214, 103, .36); border-radius: var(--radius); background: #111820; box-shadow: 0 32px 80px rgba(0, 0, 0, .55); }
.image-overlay-header { display: flex; align-items: center; justify-content: space-between; gap: 18px; padding: 16px 20px; border-bottom: 1px solid var(--line); }
.image-overlay-header h2 { margin: 0; font-size: 1.25rem; }
.image-overlay-close { display: grid; width: 38px; height: 38px; place-items: center; border: 1px solid var(--line); border-radius: 50%; background: transparent; color: var(--text); font-size: 1.6rem; line-height: 1; cursor: pointer; }
.image-overlay-close:hover, .image-overlay-close:focus-visible { border-color: var(--gold); color: var(--gold-2); }
.image-overlay-dialog > img { display: block; width: 100%; height: auto; }
.product-fact-grid { align-items: start; }
.product-fact-grid h2 { font-size: 3rem; }
.product-fact-grid .section-copy { margin-inline: 0; }
.product-integration-action { margin-top: 28px; }
.product-facts { display: grid; gap: 12px; margin: 0; }
.product-facts > div { padding: 18px 20px; border: 1px solid var(--line); border-radius: var(--radius); background: rgba(16, 23, 32, .76); }
.product-facts dt { color: var(--gold-2); font-size: .7rem; font-weight: 900; letter-spacing: .08em; text-transform: uppercase; }
.product-facts dd { margin: 5px 0 0; color: var(--text); font-size: 1rem; font-weight: 700; }
.product-facts dd a { color: var(--green-2); text-decoration: underline; text-underline-offset: 3px; }
.integration-wordmark { display: grid; justify-items: center; gap: 12px; min-height: 132px; margin: 44px 0 0; padding: 24px 18px; border: 1px solid rgba(246, 214, 103, .28); border-radius: var(--radius); background: rgba(16, 23, 32, .52); }
.integration-wordmark img { display: block; width: min(100%, 480px); height: auto; max-height: 64px; object-fit: contain; }
.integration-wordmark figcaption { color: var(--muted); font-size: .76rem; letter-spacing: .05em; text-transform: uppercase; }

.timeline { max-width: 880px; }
.timeline-item { position: relative; display: grid; grid-template-columns: 72px 1fr; gap: 24px; padding: 0 0 32px; }
.timeline-item > div:last-child { padding: 24px 26px; border: 1px solid var(--line); border-radius: var(--radius); background: linear-gradient(145deg, rgba(22, 31, 42, .7), rgba(12, 17, 23, .78)); box-shadow: 0 18px 54px rgba(0, 0, 0, .25); }
.timeline-item:not(:last-child)::after { content: ''; position: absolute; left: 26px; top: 62px; bottom: -4px; width: 1px; background: linear-gradient(var(--gold), rgba(255, 255, 255, .1)); }
.timeline-item p { margin: 0 0 7px; color: rgba(246, 214, 103, .78); font-size: .72rem; font-weight: 900; text-transform: uppercase; }
.timeline-item h3 { margin-bottom: 8px; font-size: 1.45rem; line-height: 1.18; }
.timeline-item span { color: rgba(247, 241, 223, .68); line-height: 1.7; }
.step-icon { position: relative; z-index: 2; border-radius: 50%; background: linear-gradient(135deg, var(--gold), var(--gold-2)); color: #111; box-shadow: 0 0 34px rgba(214, 168, 35, .25); }

.value-grid { display: grid; grid-template-columns: repeat(5, minmax(0, 1fr)); gap: 18px; margin-top: 44px; }
.value-card { padding: 24px 18px; text-align: center; }
.value-card div { width: 48px; height: 48px; margin: 0 auto 16px; border-radius: 50%; }
.value-card h3 { margin-bottom: 9px; font-size: .9rem; line-height: 1.2; }
.value-card p { margin: 0; color: rgba(247, 241, 223, .63); font-size: .84rem; line-height: 1.62; }

.video-section { padding-top: 84px; }
.video-wrap { overflow: hidden; margin-top: 30px; aspect-ratio: 16 / 9; border: 1px solid var(--line); border-radius: var(--radius); background: #0f1720; box-shadow: var(--shadow); }
.video-wrap iframe { width: 100%; height: 100%; border: 0; }

.final-cta { border-top: 1px solid var(--line); background: radial-gradient(circle at 50% 50%, rgba(214, 168, 35, .105), transparent 42%); }
.cta-card { max-width: 1040px; display: grid; grid-template-columns: 1.05fr .95fr; gap: 46px; align-items: center; }
.cta-card h2 { font-size: 3.2rem; }
.cta-card > div > p:not(.eyebrow, .connection-note) { color: rgba(247, 241, 223, .72); line-height: 1.72; }
.connection-note { display: inline-flex; margin-top: 18px; padding: 9px 11px; border-left: 3px solid var(--gold); background: rgba(16, 23, 32, .8); color: #dbe5de; font-size: .78rem; }
.offer-box { padding: 28px; border: 1px solid rgba(214, 168, 35, .36); border-radius: var(--radius); background: linear-gradient(145deg, rgba(22, 31, 42, .98), rgba(10, 15, 21, .98)); box-shadow: var(--glow); }
.offer-box > p:first-child { margin: 0 0 3px; color: var(--muted); font-size: .78rem; font-weight: 800; text-transform: uppercase; }
.offer-box h3 { margin-bottom: 20px; font-size: 1.45rem; line-height: 1.14; }
.enrollment-form { display: grid; gap: 14px; text-align: left; }
.enrollment-form label { display: grid; gap: 7px; }
.enrollment-form label > span { color: var(--gold-2); font-size: .7rem; font-weight: 900; text-transform: uppercase; }
.enrollment-form input, .enrollment-form select { width: 100%; min-height: 48px; padding: 0 12px; border: 1px solid rgba(240, 205, 112, .32); border-radius: 5px; background: #070b0f; color: var(--text); }
.enrollment-form select option { color: #111; }
.enrollment-form small { color: var(--muted-2); font-size: .72rem; line-height: 1.5; }
.form-status { min-height: 24px; margin: 0; color: var(--green-2); font-size: .82rem; }
.form-status.error { color: #f0a29d; }

.risk-section { padding: 34px 0; border-top: 1px solid rgba(215, 119, 112, .3); background: #120e0d; }
.risk-section h2 { color: #e9c5c2; font-family: var(--sans); font-size: .78rem; font-weight: 900; text-transform: uppercase; }
.risk-section p { margin: 9px 0 0; color: #b8aaa8; font-size: .76rem; line-height: 1.65; }

.site-footer { padding: 70px 0 38px; border-top: 1px solid var(--line); background: #070a0e; }
.footer-grid { display: grid; grid-template-columns: 1.4fr .8fr .8fr; gap: 54px; justify-items: center; text-align: center; }
.footer-brand { margin-bottom: 16px; }
.footer-brand .public-brand-mark { width: 54px; height: 54px; flex-basis: 54px; font-size: 29px; }
.footer-grid .brand { margin-inline: auto; }
.footer-grid p, .footer-bottom { color: var(--muted-2); }
.footer-grid h3 { margin-bottom: 14px; color: var(--gold-2); font-size: .92rem; }
.footer-grid a:not(.brand) { display: block; margin: 8px 0; color: var(--muted); }
.footer-grid a:hover { color: var(--gold-2); }
.footer-bottom { display: flex; flex-direction: column; align-items: center; margin-top: 42px; padding-top: 28px; border-top: 1px solid var(--line); text-align: center; font-size: .82rem; }
.footer-bottom p, .footer-bottom .legal-links { width: min(100%, 1100px); margin-inline: auto; text-align: center; }
.footer-bottom p { margin-block: 6px; }
.product-footer .legal-links { justify-content: center; }

.checkout-result-page { display: grid; min-height: 100svh; place-items: center; padding: 24px; background: var(--bg); }
.checkout-result-card { width: min(720px, 100%); padding: 42px; border: 1px solid var(--line-strong); border-radius: var(--radius); background: linear-gradient(145deg, rgba(22, 31, 42, .98), rgba(10, 15, 21, .98)); box-shadow: var(--glow); }
.checkout-result-card .brand { margin-bottom: 40px; }
.checkout-result-card h1 { margin-bottom: 20px; font-size: 2.8rem; }
.checkout-result-card > p:not(.eyebrow) { color: var(--muted); }
.checkout-result-card .hero-actions { justify-content: flex-start; margin-top: 28px; }

@media (max-width: 980px) {
  h1 { font-size: 3.35rem; }
  h2 { font-size: 2.85rem; }
  .mobile-toggle { display: inline-flex; flex-direction: column; justify-content: center; gap: 5px; width: 44px; height: 44px; border: 1px solid var(--line); border-radius: 8px; background: rgba(255, 255, 255, .04); }
  .mobile-toggle span { display: block; width: 20px; height: 2px; margin-inline: auto; background: var(--text); transition: transform .2s ease, opacity .2s ease; }
  .site-header.is-open .mobile-toggle span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
  .site-header.is-open .mobile-toggle span:nth-child(2) { opacity: 0; }
  .site-header.is-open .mobile-toggle span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }
  .site-nav { position: absolute; left: 0; right: 0; top: 78px; display: grid; gap: 0; padding: 12px 18px 20px; border-bottom: 1px solid var(--line); background: rgba(7, 11, 15, .98); opacity: 0; pointer-events: none; transform: translateY(-12px); transition: opacity .2s ease, transform .2s ease; }
  .site-header.is-open .site-nav { opacity: 1; pointer-events: auto; transform: translateY(0); }
  .site-nav a { padding: 12px 4px; }
  .site-nav .btn { margin-top: 8px; }
  .card-grid.three, .cta-card, .journey-option-grid, .footer-grid { grid-template-columns: 1fr; }
  .plan-card { min-height: 0; }
  .value-grid { grid-template-columns: repeat(2, minmax(0, 1fr)); }
  .cta-card { gap: 28px; }
  .product-hero-grid, .product-fact-grid { grid-template-columns: 1fr; }
  .product-architecture-grid { grid-template-columns: 1fr; }
  .product-hero { min-height: auto; padding-top: 118px; }
}

@media (max-width: 700px) {
  .container, .narrow { width: min(100% - 24px, 1160px); }
  .section { padding: 68px 0; }
  .section-lg { height: auto; min-height: calc(100svh - 54px); padding: 82px 0 28px; }
  .marketing-home .section-lg { min-height: auto; padding: 96px 0 58px; }
  .marketing-home .scroll-cue { display: none; }
  h1 { font-size: 2.25rem; }
  h2 { font-size: 2.15rem; }
  .hero-content { width: min(100% - 24px, 980px); }
  .hero::before { background: linear-gradient(90deg, rgba(7, 11, 15, .94), rgba(7, 11, 15, .66)), url('/website/assets/heroChart.png') 62% center / cover no-repeat; }
  .hero-copy { font-size: .95rem; line-height: 1.6; }
  .proof-grid { gap: 8px; margin: 20px auto 24px; }
  .proof-grid div { align-items: flex-start; min-height: 62px; padding: 9px; font-size: .75rem; line-height: 1.4; }
  .hero-actions { display: grid; grid-template-columns: repeat(2, minmax(0, 1fr)); }
  .hero-actions .btn { width: 100%; }
  .split-cards, .footer-grid { grid-template-columns: 1fr; }
  .card { padding: 24px 20px; }
  .plan-card h2 { font-size: 3rem; }
  .timeline-item { grid-template-columns: 54px 1fr; gap: 16px; padding-bottom: 24px; }
  .timeline-item > div:last-child { padding: 20px 18px; }
  .timeline-item:not(:last-child)::after { left: 26px; }
  .offer-box { padding: 24px 20px; }
  .journey-option-actions { grid-template-columns: 1fr; }
  .journey-option-actions-right .btn { grid-column: 1; }
  .checkout-result-card { padding: 28px 20px; }
  .checkout-result-card h1 { font-size: 2rem; }
  .vendor-public .plan-card h2 { min-height: 0; font-size: 2rem; }
  .product-hero-grid { gap: 28px; }
  .product-signal-strip { grid-template-columns: 1fr; }
  .product-signal-strip > div { min-height: 0; }
  .product-workflow-heading h2 { font-size: 2.35rem; }
  .visual-placeholder { min-height: 260px; padding: 24px; }
  .product-screenshot-placeholder { aspect-ratio: 4 / 3; }
  .product-fact-grid h2 { font-size: 2.2rem; }
}

@media (max-width: 480px) {
  h1 { font-size: 2rem; }
  h2 { font-size: 1.9rem; }
  .proof-grid div { min-height: 68px; }
  .value-grid { grid-template-columns: 1fr; }
  .footer-grid { gap: 30px; }
  .public-brand { gap: 9px; }
  .public-brand-mark { width: 40px; height: 40px; flex-basis: 40px; border-radius: 13px; font-size: 22px; }
  .public-brand-mark::before { inset: 6px; border-radius: 10px; }
  .public-brand-mark::after { inset: 10px; }
  .public-brand-name { font-size: .88rem; }
  .footer-brand .public-brand-mark { width: 46px; height: 46px; flex-basis: 46px; font-size: 25px; }
}

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

/* Shared public-site dropdown treatment. */
.enrollment-form select{
  appearance:none;
  -webkit-appearance:none;
  padding-right:40px;
  background-color:#070b0f;
  background-image:
    linear-gradient(45deg,transparent 50%,var(--gold-2) 50%),
    linear-gradient(135deg,var(--gold-2) 50%,transparent 50%);
  background-position:calc(100% - 18px) 50%,calc(100% - 13px) 50%;
  background-size:5px 5px,5px 5px;
  background-repeat:no-repeat;
  color:var(--text);
  color-scheme:dark;
}
.enrollment-form select option{background:#0d141c;color:var(--text);}
.enrollment-form select:focus-visible{
  border-color:var(--gold-2);
  box-shadow:0 0 0 3px rgba(214,168,35,.16);
  outline:0;
}

/* Hide scrollbar chrome without disabling scroll. */
*{
  scrollbar-width:none!important;
  -ms-overflow-style:none!important;
}
*::-webkit-scrollbar{
  display:none!important;
  width:0!important;
  height:0!important;
}

/* Approved shared Kaivalya horizontal lockup. */
.public-brand-logo{
  display:block;
  width:auto;
  height:64px;
  max-width:100%;
  object-fit:contain;
  border:0;
  border-radius:0;
  background:none;
  box-shadow:none;
  filter:none;
}
.footer-brand .public-brand-logo{height:64px}
@media(max-width:720px){
  .public-brand-logo{height:50px}
  .footer-brand .public-brand-logo{height:54px}
}
