/*! tailwindcss v4.2.1 | MIT License | https://tailwindcss.com */
@layer theme {
  :root,
  :host {
    --font-sans: ui-sans-serif, system-ui, sans-serif, "Apple Color Emoji",
      "Segoe UI Emoji", "Segoe UI Symbol", "Noto Color Emoji";
    --font-mono: ui-monospace, SFMono-Regular, Menlo, Monaco, Consolas,
      "Liberation Mono", "Courier New", monospace;
    --spacing: 0.25rem;
    --default-font-family: var(--font-sans);
    --default-mono-font-family: var(--font-mono);
  }
}

/* Sales Radar full landing additions */
.site-header .brand,
.footer .brand {
  align-items: center;
}
.site-header .radar-mark,
.footer .radar-mark,
.integration-core .radar-mark {
  flex: 0 0 auto;
}
.site-header .radar-mark {
  transform: none;
}
.calculator {
  background:
    radial-gradient(circle at 82% 18%, #a8ff1a15, transparent 38%),
    #041319;
  max-width: none;
  padding-left: max(38px, 50vw - 602px);
  padding-right: max(38px, 50vw - 602px);
  border-top: 1px solid #173038;
  border-bottom: 1px solid #173038;
}
.calculator-shell {
  display: grid;
  grid-template-columns: 0.88fr 1.12fr;
  gap: 18px;
}
.calculator-inputs,
.calculator-results {
  border: 1px solid #294852;
  border-radius: 9px;
  background: linear-gradient(145deg, #0a2028, #06151b);
  padding: 30px;
}
.calculator-inputs {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 18px;
}
.calculator-inputs label {
  display: flex;
  flex-direction: column;
  gap: 10px;
}
.calculator-inputs label span {
  color: #9cb0b3;
  font-size: 12px;
  line-height: 1.45;
}
.calculator-inputs input {
  width: 100%;
  min-height: 58px;
  border: 1px solid #34525b;
  border-radius: 6px;
  background: #051218;
  color: #fff;
  padding: 0 16px;
  font: 700 19px/1 var(--font-geist-mono), monospace;
  outline: none;
}
.calculator-inputs input:focus {
  border-color: var(--lime);
  box-shadow: 0 0 0 3px #a8ff1a18;
}
.calculator-results {
  display: flex;
  flex-direction: column;
}
.calculator-results > small {
  color: var(--lime);
  letter-spacing: 1.5px;
  font-size: 9px;
  font-weight: 700;
}
.calculator-main-result {
  border-bottom: 1px solid var(--line);
  margin: 19px 0 20px;
  padding-bottom: 22px;
}
.calculator-main-result span,
.calculator-result-grid span {
  color: #91a4a7;
  font-size: 11px;
}
.calculator-main-result output {
  display: block;
  color: var(--lime);
  letter-spacing: -1.4px;
  margin-top: 10px;
  font-size: clamp(32px, 4vw, 48px);
  font-weight: 780;
}
.calculator-result-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 10px;
}
.calculator-result-grid div {
  border: 1px solid #203d46;
  border-radius: 6px;
  background: #071b22;
  padding: 15px;
}
.calculator-result-grid output {
  display: block;
  color: #ecf2f2;
  margin-top: 9px;
  font-size: 15px;
  font-weight: 740;
  white-space: nowrap;
}
.calculator-results > p {
  color: #7f9699;
  margin: 18px 0;
  font-size: 11px;
  line-height: 1.55;
}
.calculator-results .button {
  align-self: flex-start;
  min-width: 0;
}
.pricing-grid {
  grid-template-columns: repeat(3, 1fr);
}
@media (max-width: 980px) {
  .calculator-shell {
    grid-template-columns: 1fr;
  }
  .pricing-grid {
    grid-template-columns: 1fr;
  }
}
@media (max-width: 650px) {
  .calculator {
    padding-left: 18px;
    padding-right: 18px;
  }
  .calculator-inputs {
    grid-template-columns: 1fr;
    padding: 22px;
  }
  .calculator-results {
    padding: 22px;
  }
  .calculator-result-grid {
    grid-template-columns: 1fr;
  }
  .calculator-results .button {
    width: 100%;
  }
}
@layer base {
  *,
  :after,
  :before,
  ::backdrop {
    box-sizing: border-box;
    border: 0 solid;
    margin: 0;
    padding: 0;
  }
  ::file-selector-button {
    box-sizing: border-box;
    border: 0 solid;
    margin: 0;
    padding: 0;
  }
  html,
  :host {
    -webkit-text-size-adjust: 100%;
    tab-size: 4;
    line-height: 1.5;
    font-family: var(
      --default-font-family,
      ui-sans-serif,
      system-ui,
      sans-serif,
      "Apple Color Emoji",
      "Segoe UI Emoji",
      "Segoe UI Symbol",
      "Noto Color Emoji"
    );
    font-feature-settings: var(--default-font-feature-settings, normal);
    font-variation-settings: var(--default-font-variation-settings, normal);
    -webkit-tap-highlight-color: transparent;
  }
  hr {
    height: 0;
    color: inherit;
    border-top-width: 1px;
  }
  abbr:where([title]) {
    -webkit-text-decoration: underline dotted;
    text-decoration: underline dotted;
  }
  h1,
  h2,
  h3,
  h4,
  h5,
  h6 {
    font-size: inherit;
    font-weight: inherit;
  }
  a {
    color: inherit;
    -webkit-text-decoration: inherit;
    -webkit-text-decoration: inherit;
    -webkit-text-decoration: inherit;
    -webkit-text-decoration: inherit;
    text-decoration: inherit;
  }
  b,
  strong {
    font-weight: bolder;
  }
  code,
  kbd,
  samp,
  pre {
    font-family: var(
      --default-mono-font-family,
      ui-monospace,
      SFMono-Regular,
      Menlo,
      Monaco,
      Consolas,
      "Liberation Mono",
      "Courier New",
      monospace
    );
    font-feature-settings: var(--default-mono-font-feature-settings, normal);
    font-variation-settings: var(
      --default-mono-font-variation-settings,
      normal
    );
    font-size: 1em;
  }
  small {
    font-size: 80%;
  }
  sub,
  sup {
    vertical-align: baseline;
    font-size: 75%;
    line-height: 0;
    position: relative;
  }
  sub {
    bottom: -0.25em;
  }
  sup {
    top: -0.5em;
  }
  table {
    text-indent: 0;
    border-color: inherit;
    border-collapse: collapse;
  }
  :-moz-focusring {
    outline: auto;
  }
  progress {
    vertical-align: baseline;
  }
  summary {
    display: list-item;
  }
  ol,
  ul,
  menu {
    list-style: none;
  }
  img,
  svg,
  video,
  canvas,
  audio,
  iframe,
  embed,
  object {
    vertical-align: middle;
    display: block;
  }
  img,
  video {
    max-width: 100%;
    height: auto;
  }
  button,
  input,
  select,
  optgroup,
  textarea {
    font: inherit;
    font-feature-settings: inherit;
    font-variation-settings: inherit;
    letter-spacing: inherit;
    color: inherit;
    opacity: 1;
    background-color: #0000;
    border-radius: 0;
  }
  ::file-selector-button {
    font: inherit;
    font-feature-settings: inherit;
    font-variation-settings: inherit;
    letter-spacing: inherit;
    color: inherit;
    opacity: 1;
    background-color: #0000;
    border-radius: 0;
  }
  :where(select:is([multiple], [size])) optgroup {
    font-weight: bolder;
  }
  :where(select:is([multiple], [size])) optgroup option {
    padding-inline-start: 20px;
  }
  ::file-selector-button {
    margin-inline-end: 4px;
  }
  ::placeholder {
    opacity: 1;
  }
  @supports (not ((-webkit-appearance: -apple-pay-button))) or
    (contain-intrinsic-size: 1px) {
    ::placeholder {
      color: currentColor;
    }
    @supports (color: color-mix(in lab, red, red)) {
      ::placeholder {
        color: color-mix(in oklab, currentcolor 50%, transparent);
      }
    }
  }
  textarea {
    resize: vertical;
  }
  ::-webkit-search-decoration {
    -webkit-appearance: none;
  }
  ::-webkit-date-and-time-value {
    min-height: 1lh;
    text-align: inherit;
  }
  ::-webkit-datetime-edit {
    display: inline-flex;
  }
  ::-webkit-datetime-edit-fields-wrapper {
    padding: 0;
  }
  ::-webkit-datetime-edit {
    padding-block: 0;
  }
  ::-webkit-datetime-edit-year-field {
    padding-block: 0;
  }
  ::-webkit-datetime-edit-month-field {
    padding-block: 0;
  }
  ::-webkit-datetime-edit-day-field {
    padding-block: 0;
  }
  ::-webkit-datetime-edit-hour-field {
    padding-block: 0;
  }
  ::-webkit-datetime-edit-minute-field {
    padding-block: 0;
  }
  ::-webkit-datetime-edit-second-field {
    padding-block: 0;
  }
  ::-webkit-datetime-edit-millisecond-field {
    padding-block: 0;
  }
  ::-webkit-datetime-edit-meridiem-field {
    padding-block: 0;
  }
  ::-webkit-calendar-picker-indicator {
    line-height: 1;
  }
  :-moz-ui-invalid {
    box-shadow: none;
  }
  button,
  input:where([type="button"], [type="reset"], [type="submit"]) {
    appearance: button;
  }
  ::file-selector-button {
    appearance: button;
  }
  ::-webkit-inner-spin-button {
    height: auto;
  }
  ::-webkit-outer-spin-button {
    height: auto;
  }
  [hidden]:where(:not([hidden="until-found"])) {
    display: none !important;
  }
}
@layer components;
@layer utilities {
  .visible {
    visibility: visible;
  }
  .relative {
    position: relative;
  }
  .start {
    inset-inline-start: var(--spacing);
  }
  .table {
    display: table;
  }
  .antialiased {
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
  }
}
:root {
  --bg: #031016;
  --panel: #081a20;
  --line: #17353c;
  --text: #f5f8f6;
  --muted: #91a4a7;
  --lime: #a8ff1a;
  --green: #63d879;
  --amber: #ffbe22;
  --red: #ff554f;
}
* {
  box-sizing: border-box;
}
html {
  scroll-behavior: smooth;
}
body {
  background: var(--bg);
  color: var(--text);
  font-family: Arial, var(--font-geist-sans), sans-serif;
  margin: 0;
}
a {
  color: inherit;
  text-decoration: none;
}
main {
  background: radial-gradient(circle at 48% 4%, #0b232a 0, transparent 27%),
    var(--bg);
  overflow: hidden;
}
.site-header {
  z-index: 10;
  border-bottom: 1px solid #a8ff1a14;
  justify-content: space-between;
  align-items: center;
  max-width: 1440px;
  height: 86px;
  margin: auto;
  padding: 0 38px;
  display: flex;
  position: relative;
}
.brand {
  letter-spacing: -0.5px;
  align-items: center;
  gap: 12px;
  font-size: 22px;
  display: flex;
}
.radar-mark {
  border: 2px solid var(--lime);
  border-radius: 50%;
  width: 40px;
  height: 40px;
  display: inline-block;
  position: relative;
}
.radar-mark:before,
.radar-mark:after {
  content: "";
  border: 1px solid var(--lime);
  border-radius: 50%;
  position: absolute;
  inset: 6px;
}
.radar-mark:after {
  background: var(--lime);
  inset: 13px;
}
.radar-mark i {
  background: var(--lime);
  transform-origin: 0;
  width: 25px;
  height: 2px;
  position: absolute;
  top: 18px;
  left: 19px;
  transform: rotate(-45deg);
}
.radar-mark b {
  background: var(--lime);
  width: 7px;
  height: 7px;
  box-shadow: 0 0 15px var(--lime);
  border-radius: 50%;
  position: absolute;
  top: -1px;
  right: -3px;
}
nav {
  color: #c2cccd;
  gap: 34px;
  font-size: 14px;
  display: flex;
}
nav a:hover {
  color: var(--lime);
}
.header-cta {
  border: 1px solid #6e9f16;
  border-radius: 6px;
  padding: 13px 20px;
  font-size: 14px;
}
.hero {
  grid-template-columns: 0.78fr 1.22fr;
  align-items: center;
  gap: 50px;
  max-width: 1440px;
  min-height: 740px;
  margin: auto;
  padding: 50px 38px 82px;
  display: grid;
  position: relative;
}
.radar-field {
  background: repeating-radial-gradient(
      circle,
      transparent 0 65px,
      #a8ff1a12 66px 67px
    ),
    repeating-conic-gradient(
      from 0deg,
      #a8ff1a12 0 0.4deg,
      transparent 0.4deg 20deg
    );
  opacity: 0.7;
  border: 1px solid #a8ff1a1a;
  border-radius: 50%;
  width: 650px;
  height: 650px;
  position: absolute;
  top: -50px;
  left: -160px;
}
.radar-field:after {
  content: "";
  background: conic-gradient(from 30deg, #a8ff1a3b, #0000 22%, #0000);
  border-radius: 50%;
  position: absolute;
  inset: 0;
}
.radar-field span {
  background: var(--lime);
  width: 6px;
  height: 6px;
  box-shadow: 0 0 12px var(--lime);
  border-radius: 50%;
  position: absolute;
}
.radar-field span:first-child {
  top: 19%;
  left: 71%;
}
.radar-field span:nth-child(2) {
  top: 52%;
  left: 66%;
}
.radar-field span:nth-child(3) {
  top: 30%;
  left: 43%;
}
.radar-field span:nth-child(4) {
  top: 64%;
  left: 78%;
}
.hero-copy {
  z-index: 2;
  position: relative;
}
.eyebrow,
.section-heading > div > span,
.contact > div > span {
  color: var(--lime);
  letter-spacing: 2.1px;
  font-size: 12px;
  font-weight: 700;
}
.eyebrow i {
  background: var(--lime);
  width: 7px;
  height: 7px;
  box-shadow: 0 0 12px var(--lime);
  border-radius: 50%;
  margin-right: 8px;
  display: inline-block;
}
.hero h1 {
  letter-spacing: -2.7px;
  max-width: 610px;
  margin: 24px 0;
  font-size: 54px;
  line-height: 1.1;
}
.hero-copy > p {
  color: #9aabad;
  max-width: 570px;
  margin: 0;
  font-size: 20px;
  line-height: 1.5;
}
.hero-actions {
  align-items: center;
  gap: 25px;
  margin-top: 38px;
  display: flex;
}
.button {
  border-radius: 6px;
  justify-content: space-between;
  align-items: center;
  min-width: 330px;
  padding: 18px 22px;
  font-weight: 700;
  display: inline-flex;
}
.button.primary {
  background: var(--lime);
  color: #081108;
  box-shadow: 0 0 35px #a8ff1a24;
}
.button span {
  font-size: 25px;
}
.text-link {
  color: #bac6c7;
  font-size: 14px;
}
.trust-line {
  color: #809497;
  margin-top: 28px;
  font-size: 12px;
}
.trust-line span {
  color: var(--lime);
}
.trust-line b {
  color: #3a555b;
  margin: 0 7px;
  font-weight: 400;
}
.hero-dashboard {
  z-index: 2;
  background: linear-gradient(145deg, #0a1f25f7, #051318fa);
  border: 1px solid #3b662b;
  border-radius: 11px;
  padding: 21px;
  position: relative;
  box-shadow:
    0 30px 90px #0000006b,
    inset 0 0 50px #65ff4306;
}
.dash-head {
  justify-content: space-between;
  align-items: flex-start;
  margin-bottom: 18px;
  display: flex;
}
.dash-head small {
  color: #668086;
  letter-spacing: 1.2px;
  font-size: 9px;
}
.dash-head h2 {
  margin: 7px 0 0;
  font-size: 21px;
}
.dash-head > span {
  color: #c0ccce;
  border: 1px solid #29464d;
  border-radius: 5px;
  padding: 9px 12px;
  font-size: 11px;
}
.dash-top {
  background: #092028;
  border: 1px solid #1c3b42;
  border-radius: 6px;
  grid-template-columns: 0.66fr 1.34fr;
  display: grid;
  overflow: hidden;
}
.risk-total {
  border-right: 1px solid #1a3940;
  flex-direction: column;
  padding: 21px;
  display: flex;
}
.risk-total small {
  color: #93a6a9;
}
.risk-total strong {
  letter-spacing: -2px;
  margin: 12px 0 10px;
  font-size: 42px;
}
.risk-total em {
  color: var(--green);
  font-size: 11px;
  font-style: normal;
}
.chart {
  background: linear-gradient(#0000, #a8ff1a08);
  height: 170px;
  position: relative;
  overflow: hidden;
}
.chart-grid {
  background: repeating-linear-gradient(0deg, #0000 0 39px, #53707526 40px),
    repeating-linear-gradient(90deg, #0000 0 99px, #5370751a 100px);
  position: absolute;
  inset: 0;
}
.chart-line {
  background: var(--lime);
  height: 2px;
  position: absolute;
  top: 60%;
  left: 10%;
  right: 8%;
  transform: rotate(-10deg);
  box-shadow: 0 0 10px #a8ff1aa6;
}
.chart-line i {
  background: var(--lime);
  border-radius: 50%;
  width: 7px;
  height: 7px;
  position: absolute;
  top: -3px;
}
.chart-line i:first-child {
  left: 0;
}
.chart-line i:nth-child(2) {
  top: -10px;
  left: 18%;
}
.chart-line i:nth-child(3) {
  top: -19px;
  left: 40%;
}
.chart-line i:nth-child(4) {
  top: -22px;
  left: 60%;
}
.chart-line i:nth-child(5) {
  top: -30px;
  left: 80%;
}
.chart-line i:nth-child(6) {
  top: -42px;
  right: 0;
}
.chart-value {
  background: #254048;
  border-radius: 4px;
  padding: 6px 8px;
  font-size: 10px;
  position: absolute;
  top: 23%;
  right: 8%;
}
.dash-kpis {
  grid-template-columns: 0.75fr 0.75fr 1.3fr;
  gap: 10px;
  margin: 10px 0;
  display: grid;
}
.dash-kpis > div {
  background: #0b2229;
  border: 1px solid #1c3b42;
  border-radius: 6px;
  min-height: 87px;
  padding: 14px;
}
.dash-kpis strong {
  margin: 0 9px;
  font-size: 25px;
}
.dash-kpis div > i {
  border-radius: 50%;
  width: 14px;
  height: 14px;
  display: inline-block;
}
.dash-kpis i.green {
  background: var(--green);
  box-shadow: 0 0 9px var(--green);
}
.dash-kpis i.amber {
  background: var(--amber);
  box-shadow: 0 0 9px var(--amber);
}
.dash-kpis div > span {
  color: #a4b2b4;
  vertical-align: middle;
  font-size: 10px;
  line-height: 1.4;
  display: inline-block;
}
.risk-bars > span {
  margin-bottom: 9px;
  display: block !important;
}
.risk-bars b {
  height: 5px;
  display: flex;
}
.risk-bars b i:first-child {
  background: var(--green);
  width: 45%;
}
.risk-bars b i:nth-child(2) {
  background: var(--amber);
  width: 35%;
}
.risk-bars b i:nth-child(3) {
  background: var(--red);
  width: 20%;
}
.risk-bars small {
  color: #82979a;
  font-size: 9px;
}
.deal-table {
  border: 1px solid #1c3b42;
  border-radius: 6px;
  overflow: hidden;
}
.table-row {
  color: #afbec0;
  border-top: 1px solid #17343b;
  grid-template-columns: 0.7fr 0.9fr 1.2fr 0.6fr;
  gap: 10px;
  padding: 10px 13px;
  font-size: 10px;
  display: grid;
}
.table-row:first-child {
  border-top: 0;
}
.table-title {
  color: #728b8f;
  background: #102a31;
}
.table-row b {
  color: #fff;
}
.table-row em {
  color: #ff746e;
  background: #3a2022;
  border: 1px solid #723136;
  border-radius: 3px;
  width: max-content;
  padding: 3px 5px;
  font-style: normal;
}
.table-row em.medium {
  color: #ffd05b;
  background: #332d18;
  border-color: #67591d;
}
.section {
  max-width: 1280px;
  margin: auto;
  padding: 110px 38px;
}
.section-heading {
  justify-content: space-between;
  align-items: flex-end;
  gap: 60px;
  margin-bottom: 55px;
  display: flex;
}
.section-heading h2 {
  letter-spacing: -2px;
  margin: 14px 0 0;
  font-size: 46px;
  line-height: 1.1;
}
.section-heading > p {
  max-width: 420px;
  color: var(--muted);
  margin: 0;
  font-size: 16px;
  line-height: 1.6;
}
.product {
  border-top: 1px solid #10282e;
}
.source-grid {
  border-top: 1px solid var(--line);
  border-left: 1px solid var(--line);
  grid-template-columns: repeat(3, 1fr);
  display: grid;
}
.source-grid article {
  border-right: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
  background: #081a2073;
  gap: 20px;
  min-height: 142px;
  padding: 25px;
  display: flex;
}
.source-grid article > span {
  color: var(--lime);
  font-size: 11px;
}
.source-grid h3 {
  margin: 0 0 10px;
  font-size: 20px;
}
.source-grid p {
  color: var(--muted);
  margin: 0;
  font-size: 13px;
  line-height: 1.5;
}
.formula {
  color: #b7c4c5;
  background: linear-gradient(90deg, #0000, #a8ff1a0f, #0000);
  border: 1px solid #355426;
  border-top: 0;
  justify-content: center;
  align-items: center;
  gap: 30px;
  padding: 27px;
  display: flex;
}
.formula b {
  color: #54716f;
}
.formula strong {
  color: var(--lime);
}
.losses {
  background: #05151a;
  max-width: none;
  padding-left: max(38px, 50vw - 602px);
  padding-right: max(38px, 50vw - 602px);
}
.loss-list {
  border-top: 1px solid var(--line);
}
.loss-list article {
  border-bottom: 1px solid var(--line);
  grid-template-columns: 55px 1fr 1fr;
  align-items: center;
  gap: 25px;
  padding: 19px 8px;
  transition: all 0.2s;
  display: grid;
}
.loss-list article:hover {
  background: #0a2026;
  padding-left: 17px;
}
.loss-num {
  color: #526d71;
  font-size: 10px;
}
.loss-list small {
  color: var(--lime);
  text-transform: uppercase;
  letter-spacing: 1.4px;
  font-size: 9px;
}
.loss-list h3 {
  margin: 4px 0;
  font-size: 18px;
}
.loss-list p {
  color: #91a4a7;
  margin: 0;
  font-size: 14px;
}
.loss-callout {
  background: #0b211e;
  border: 1px solid #466826;
  grid-template-columns: 1.1fr 1.5fr auto;
  align-items: center;
  gap: 30px;
  margin-top: 35px;
  padding: 30px;
  display: grid;
}
.loss-callout span {
  color: var(--muted);
  font-size: 14px;
  line-height: 1.5;
}
.loss-callout a {
  color: var(--lime);
  font-weight: 700;
}
.audience-grid {
  grid-template-columns: repeat(3, 1fr);
  gap: 16px;
  display: grid;
}
.audience-grid article {
  border: 1px solid var(--line);
  background: linear-gradient(150deg, #0a2026, #061419);
  border-radius: 7px;
  padding: 30px;
}
.audience-grid article > span {
  color: var(--lime);
  font-size: 11px;
}
.audience-grid h3 {
  margin: 30px 0 15px;
  font-size: 28px;
}
.audience-grid p {
  color: var(--muted);
  min-height: 92px;
  line-height: 1.55;
}
.audience-grid ul,
.pricing-grid ul {
  border-top: 1px solid var(--line);
  margin: 20px 0 0;
  padding: 20px 0 0;
  list-style: none;
}
.audience-grid li,
.pricing-grid li {
  color: #bdc9ca;
  margin: 12px 0;
  font-size: 13px;
}
.audits {
  background: radial-gradient(circle at 50% 40%, #0a2524, #0000 60%);
}
.audit-grid {
  grid-template-columns: repeat(2, 1fr);
  gap: 14px;
  display: grid;
}
.audit-grid article {
  background: #071a20;
  border: 1px solid #1f4145;
  border-radius: 7px;
  padding: 26px;
}
.audit-top {
  justify-content: space-between;
  display: flex;
}
.audit-top span {
  text-transform: uppercase;
  color: #ff7d78;
  background: #321d21;
  border-radius: 3px;
  padding: 6px 8px;
  font-size: 10px;
}
.audit-top small {
  color: #637d81;
}
.audit-grid article > strong {
  margin: 30px 0 8px;
  font-size: 34px;
  display: block;
}
.audit-grid h3 {
  margin: 0 0 12px;
  font-size: 20px;
}
.audit-grid p {
  color: var(--muted);
  min-height: 48px;
  line-height: 1.55;
}
.audit-grid footer {
  border-top: 1px solid var(--line);
  color: #698287;
  justify-content: space-between;
  margin-top: 25px;
  padding-top: 18px;
  font-size: 11px;
  display: flex;
}
.audit-grid footer b {
  color: var(--lime);
}
.dashboard-grid {
  grid-template-columns: repeat(2, 1fr);
  gap: 16px;
  display: grid;
}
.dashboard-grid article {
  border: 1px solid var(--line);
  background: #07191f;
  border-radius: 7px;
  padding: 20px 25px 27px;
}
.dashboard-grid article > span {
  color: var(--lime);
  margin-top: 20px;
  font-size: 10px;
  display: block;
}
.dashboard-grid h3 {
  margin: 8px 0;
  font-size: 22px;
}
.dashboard-grid p {
  color: var(--muted);
  margin: 0;
}
.mock-chart {
  background: linear-gradient(#0b252c, #081a20);
  border: 1px solid #17383e;
  border-radius: 4px;
  align-items: flex-end;
  gap: 13px;
  height: 170px;
  padding: 25px;
  display: flex;
  position: relative;
}
.mock-chart:after {
  content: "";
  pointer-events: none;
  background: repeating-linear-gradient(0deg, #0000 0 39px, #5c7d811f 40px);
  position: absolute;
  inset: 0;
}
.bars i {
  background: linear-gradient(var(--lime), #31551a);
  z-index: 1;
  flex: 1;
  position: relative;
}
.bars i:first-child {
  height: 32%;
}
.bars i:nth-child(2) {
  height: 43%;
}
.bars i:nth-child(3) {
  height: 39%;
}
.bars i:nth-child(4) {
  height: 57%;
}
.bars i:nth-child(5) {
  height: 66%;
}
.bars i:nth-child(6) {
  height: 76%;
}
.bars i:nth-child(7) {
  height: 91%;
}
.people {
  align-items: center;
}
.people i {
  height: 70px;
  color: var(--lime);
  z-index: 1;
  background: #0d2c32;
  border: 1px solid #255059;
  border-radius: 5px;
  flex: 1;
  place-items: center;
  font-size: 23px;
  font-style: normal;
  display: grid;
}
.funnel {
  flex-direction: column;
  justify-content: center;
  align-items: center;
  gap: 5px;
}
.funnel i {
  background: linear-gradient(90deg, #31591d, var(--lime), #31591d);
  color: #0c1c0b;
  text-align: center;
  z-index: 1;
  height: 25px;
  padding-top: 6px;
  font-size: 11px;
  font-style: normal;
}
.funnel i:first-child {
  width: 90%;
}
.funnel i:nth-child(2) {
  width: 70%;
}
.funnel i:nth-child(3) {
  width: 50%;
}
.funnel i:nth-child(4) {
  width: 30%;
}
.tasks {
  flex-direction: column;
  justify-content: center;
  align-items: stretch;
}
.tasks i {
  border-left: 3px solid var(--lime);
  z-index: 1;
  background: #0c2930;
  padding: 11px;
  font-size: 12px;
  font-style: normal;
}
.steps {
  border-top: 1px solid var(--line);
  grid-template-columns: repeat(5, 1fr);
  margin: 0;
  padding: 0;
  list-style: none;
  display: grid;
}
.steps li {
  border-right: 1px solid var(--line);
  padding: 30px 22px;
}
.steps li:last-child {
  border: 0;
}
.steps span {
  width: 32px;
  height: 32px;
  color: var(--lime);
  border: 1px solid #547629;
  border-radius: 50%;
  place-items: center;
  font-size: 11px;
  display: grid;
}
.steps h3 {
  margin: 25px 0 10px;
  font-size: 18px;
}
.steps p {
  color: var(--muted);
  font-size: 13px;
  line-height: 1.5;
}
.pricing {
  background: #05151a;
  max-width: none;
  padding-left: max(38px, 50vw - 602px);
  padding-right: max(38px, 50vw - 602px);
}
.pricing-grid {
  grid-template-columns: repeat(3, 1fr);
  align-items: stretch;
  gap: 14px;
  display: grid;
}
.pricing-grid article {
  border: 1px solid var(--line);
  background: #071a20;
  border-radius: 7px;
  flex-direction: column;
  padding: 30px;
  display: flex;
}
.pricing-grid article.featured {
  border-color: #74ad26;
  transform: translateY(-12px);
  box-shadow: inset 0 0 60px #a8ff1a0b;
}
.pricing-grid article > div {
  color: var(--lime);
  justify-content: space-between;
  font-size: 11px;
  display: flex;
}
.pricing-grid article > div small {
  color: #82979a;
}
.pricing-grid article > strong {
  margin: 35px 0 10px;
  font-size: 30px;
}
.pricing-grid article > strong small {
  color: var(--muted);
  font-size: 11px;
  font-weight: 400;
}
.pricing-grid ul {
  flex: 1;
}
.pricing-grid a {
  text-align: center;
  color: var(--lime);
  border: 1px solid #537723;
  border-radius: 5px;
  margin-top: 20px;
  padding: 14px;
  font-size: 13px;
  font-weight: 700;
  display: block;
}
.pricing-grid .featured a {
  background: var(--lime);
  color: #071207;
}
.contact {
  background: radial-gradient(circle at 20% 10%, #a8ff1a1c, #0000 45%), #071b20;
  border: 1px solid #50762a;
  border-radius: 10px;
  grid-template-columns: 1.4fr 0.6fr;
  align-items: center;
  gap: 70px;
  max-width: 1204px;
  margin: 100px auto;
  padding: 65px;
  display: grid;
}
.contact h2 {
  letter-spacing: -2px;
  margin: 16px 0;
  font-size: 48px;
  line-height: 1.1;
}
.contact > div > p {
  color: var(--muted);
  max-width: 620px;
  line-height: 1.6;
}
.contact-card {
  background: #0a242a;
  border: 1px solid #234248;
  border-radius: 7px;
  flex-direction: column;
  padding: 27px;
  display: flex;
}
.contact-card small {
  color: #748c90;
}
.contact-card strong {
  margin: 8px 0 20px;
  font-size: 20px;
}
.contact-card a {
  border-top: 1px solid var(--line);
  justify-content: space-between;
  padding: 13px 0;
  font-size: 13px;
  display: flex;
}
.contact-card a span {
  color: var(--lime);
}
.footer {
  border-top: 1px solid var(--line);
  color: #83979a;
  grid-template-columns: 0.65fr 1fr 1.4fr;
  gap: 50px;
  max-width: 1280px;
  margin: auto;
  padding: 45px 38px 60px;
  font-size: 12px;
  display: grid;
}
.footer .brand {
  color: #fff;
  font-size: 18px;
}
.footer .radar-mark {
  transform-origin: 0;
  transform: scale(0.7);
}
.footer a {
  color: #b9c6c7;
  margin-top: 10px;
  display: block;
}
.legal {
  text-align: right;
}
.legal p {
  margin: 0 0 7px;
}
.legal a {
  margin-left: 15px;
  display: inline-block;
}
.legal-page {
  max-width: 850px;
  min-height: 100vh;
  margin: auto;
  padding: 70px 30px;
  background: var(--bg) !important;
}
.legal-page > a {
  color: var(--lime);
}
.legal-page h1 {
  margin: 55px 0 35px;
  font-size: 46px;
}
.legal-page h2 {
  margin: 35px 0 10px;
  font-size: 22px;
}
.legal-page p {
  color: #a7b6b8;
  line-height: 1.7;
}
@media (width<=1000px) {
  .site-header nav {
    display: none;
  }
  .hero {
    grid-template-columns: 1fr;
    padding-top: 60px;
  }
  .hero h1 {
    font-size: 50px;
  }
  .hero-dashboard {
    margin-top: 10px;
  }
  .section-heading {
    flex-direction: column;
    align-items: flex-start;
  }
  .source-grid {
    grid-template-columns: repeat(2, 1fr);
  }
  .steps {
    grid-template-columns: repeat(3, 1fr);
  }
  .pricing-grid {
    grid-template-columns: 1fr;
  }
  .pricing-grid article.featured {
    transform: none;
  }
  .contact {
    margin: 60px 30px;
  }
  .footer {
    grid-template-columns: 1fr 1fr;
  }
  .legal {
    text-align: left;
  }
}
@media (width<=650px) {
  .site-header {
    height: 70px;
    padding: 0 18px;
  }
  .header-cta {
    display: none;
  }
  .brand {
    font-size: 19px;
  }
  .radar-mark {
    width: 34px;
    height: 34px;
  }
  .hero {
    min-height: auto;
    padding: 45px 18px 65px;
    display: block;
  }
  .radar-field {
    width: 450px;
    height: 450px;
    left: -230px;
  }
  .hero h1 {
    letter-spacing: -1.6px;
    font-size: 39px;
  }
  .hero-copy > p {
    font-size: 17px;
  }
  .hero-actions {
    flex-direction: column;
    align-items: flex-start;
  }
  .button {
    width: 100%;
    min-width: 0;
  }
  .hero-dashboard {
    margin-top: 45px;
    padding: 12px;
  }
  .dash-top {
    grid-template-columns: 1fr;
  }
  .risk-total {
    border-bottom: 1px solid #1a3940;
    border-right: 0;
  }
  .dash-kpis {
    grid-template-columns: 1fr 1fr;
  }
  .risk-bars {
    grid-column: 1/-1;
  }
  .table-row {
    grid-template-columns: 0.7fr 1fr 0.7fr;
  }
  .table-row span:nth-child(3) {
    display: none;
  }
  .section {
    padding: 75px 18px;
  }
  .section-heading {
    gap: 20px;
    margin-bottom: 35px;
  }
  .section-heading h2 {
    letter-spacing: -1.3px;
    font-size: 34px;
  }
  .source-grid {
    grid-template-columns: 1fr;
  }
  .formula {
    flex-wrap: wrap;
    gap: 10px;
    font-size: 12px;
  }
  .loss-list article {
    grid-template-columns: 35px 1fr;
  }
  .loss-list article > p {
    grid-column: 2;
  }
  .loss-callout,
  .audience-grid,
  .audit-grid,
  .dashboard-grid {
    grid-template-columns: 1fr;
  }
  .audience-grid p {
    min-height: auto;
  }
  .steps {
    grid-template-columns: 1fr;
  }
  .steps li {
    border-right: 0;
    border-bottom: 1px solid var(--line);
  }
  .pricing {
    padding-left: 18px;
    padding-right: 18px;
  }
  .contact {
    grid-template-columns: 1fr;
    gap: 35px;
    margin: 50px 18px;
    padding: 35px 22px;
  }
  .contact h2 {
    font-size: 36px;
  }
  .footer {
    grid-template-columns: 1fr;
    padding: 35px 18px;
  }
  .legal {
    text-align: left;
  }
  .legal a {
    margin-left: 0;
    margin-right: 12px;
  }
  .dash-head > span {
    display: none;
  }
  .legal-page h1 {
    font-size: 35px;
  }
}
.founder {
  grid-template-columns: 0.8fr 1.2fr;
  align-items: center;
  gap: 72px;
  display: grid;
}
.founder-photo {
  background: #081a20;
  border: 1px solid #335a2c;
  border-radius: 10px;
  min-height: 650px;
  position: relative;
  overflow: hidden;
}
.founder-photo:after {
  content: "";
  background: linear-gradient(#0000 45%, #031016f5 100%);
  position: absolute;
  inset: 0;
}
.founder-photo img {
  object-fit: cover;
  object-position: center 38%;
  filter: saturate(0.84) contrast(1.03);
  width: 100%;
  height: 650px;
  display: block;
}
.founder-photo-caption {
  z-index: 2;
  flex-direction: column;
  display: flex;
  position: absolute;
  bottom: 28px;
  left: 30px;
  right: 30px;
}
.founder-photo-caption span,
.founder-story > span {
  color: var(--lime);
  letter-spacing: 1.8px;
  font-size: 11px;
  font-weight: 700;
}
.founder-photo-caption strong {
  margin: 8px 0 5px;
  font-size: 28px;
}
.founder-photo-caption small {
  color: #b7c5c5;
}
.founder-story h2 {
  letter-spacing: -2px;
  margin: 17px 0 28px;
  font-size: 48px;
  line-height: 1.08;
}
.founder-story p {
  color: var(--muted);
  margin: 0 0 18px;
  line-height: 1.7;
}
.founder-story .founder-lead {
  color: #d9e1e1;
  font-size: 19px;
  line-height: 1.55;
}
.founder-facts {
  grid-template-columns: repeat(3, 1fr);
  gap: 10px;
  margin: 30px 0;
  display: grid;
}
.founder-facts div {
  border: 1px solid var(--line);
  background: #081c22;
  border-radius: 6px;
  padding: 18px 15px;
}
.founder-facts strong {
  color: var(--lime);
  margin-bottom: 7px;
  font-size: 17px;
  display: block;
}
.founder-facts span {
  color: #8da0a3;
  font-size: 11px;
  line-height: 1.4;
}
.founder-link {
  max-width: 390px;
  color: var(--lime);
  border: 1px solid #5e8a26;
  border-radius: 6px;
  justify-content: space-between;
  align-items: center;
  padding: 16px 18px;
  font-size: 13px;
  font-weight: 700;
  display: flex;
}
.footer .founder-subscribe {
  background: #a8ff1a0b;
  border: 1px solid #35572a;
  border-radius: 6px;
  justify-content: space-between;
  align-items: center;
  width: 250px;
  margin-top: 14px;
  padding: 11px 13px;
  display: flex;
}
.founder-subscribe span {
  flex-direction: column;
  gap: 3px;
  display: flex;
}
.founder-subscribe small {
  letter-spacing: 1.2px;
  color: #6f888b;
  font-size: 8px;
}
.founder-subscribe strong {
  color: var(--lime);
  font-size: 12px;
}
.founder-subscribe b {
  color: var(--lime);
  font-size: 18px;
}
.footer .footer-vk {
  color: #7d9396;
  font-size: 10px;
}
@media (width<=1000px) {
  .founder {
    grid-template-columns: 1fr;
    gap: 45px;
  }
  .founder-photo {
    min-height: 560px;
  }
  .founder-photo img {
    height: 560px;
  }
}
@media (width<=650px) {
  .founder {
    padding-top: 70px;
  }
  .founder-photo,
  .founder-photo img {
    height: 500px;
    min-height: 500px;
  }
  .founder-photo-caption {
    bottom: 20px;
    left: 20px;
    right: 20px;
  }
  .founder-story h2 {
    letter-spacing: -1.3px;
    font-size: 35px;
  }
  .founder-story .founder-lead {
    font-size: 17px;
  }
  .founder-facts {
    grid-template-columns: 1fr;
  }
  .founder-link {
    max-width: none;
  }
}
.hero {
  grid-template-columns: 0.84fr 1.16fr;
  max-width: 1540px;
  min-height: 820px;
}
.hero h1 {
  max-width: 700px;
  font-size: 58px;
  font-weight: 750;
  line-height: 1.06;
}
.hero-copy > p {
  max-width: 660px;
}
.hero-dashboard {
  background: linear-gradient(145deg, #0c1926fa, #05101afc);
  border-color: #3a4c5c;
  padding: 18px;
  box-shadow:
    0 30px 100px #0d4eb247,
    inset 0 0 60px #4089ff06;
}
.control-kpis {
  grid-template-columns: repeat(4, 1fr);
  gap: 10px;
  display: grid;
}
.control-kpis > div {
  background: linear-gradient(145deg, #102131, #0a1722);
  border: 1px solid #24394b;
  border-radius: 7px;
  flex-direction: column;
  min-height: 120px;
  padding: 18px 16px;
  display: flex;
  position: relative;
  overflow: hidden;
}
.control-kpis small {
  color: #9eabb7;
  font-size: 11px;
}
.control-kpis strong {
  letter-spacing: -1px;
  white-space: nowrap;
  margin-top: 22px;
  font-size: 25px;
}
.control-kpis strong em {
  color: #b0bac3;
  letter-spacing: 0;
  font-size: 12px;
  font-style: normal;
  font-weight: 500;
}
.control-kpis div > i {
  height: 4px;
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
}
.amber-line {
  background: #ffb52e;
}
.lime-line {
  background: var(--lime);
}
.blue-line {
  background: #4f82ff;
}
.control-body {
  grid-template-columns: 1.55fr 0.9fr;
  gap: 12px;
  margin-top: 12px;
  display: grid;
}
.control-chart,
.today-list {
  background: #0a1925;
  border: 1px solid #23384a;
  border-radius: 7px;
  padding: 16px;
}
.control-chart h3,
.today-list h3 {
  color: #dce3e8;
  margin: 0 0 12px;
  font-size: 12px;
}
.control-chart .chart {
  height: 245px;
}
.control-chart .chart-line {
  box-shadow: none;
  transform: none;
}
.control-chart .chart-line.plan {
  background: #4f82ff;
  height: 2px;
  top: auto;
  bottom: 22%;
  transform: rotate(-12deg);
}
.control-chart .chart-line.risk {
  background: var(--lime);
  height: 2px;
  top: auto;
  bottom: 33%;
  transform: rotate(4deg);
}
.control-chart .chart-line.risk i {
  background: var(--lime);
}
.control-chart .chart-line.plan i {
  background: #4f82ff;
}
.chart-legend {
  color: #9aabb8;
  gap: 14px;
  font-size: 8px;
  display: flex;
  position: absolute;
  top: 5px;
  right: 6px;
}
.chart-legend span {
  align-items: center;
  gap: 4px;
  display: flex;
}
.chart-legend i {
  border-radius: 3px;
  width: 11px;
  height: 3px;
}
.chart-legend i.blue {
  background: #4f82ff;
}
.chart-legend i.lime {
  background: var(--lime);
}
.today-list {
  flex-direction: column;
  gap: 10px;
  display: flex;
}
.today-list > div {
  background: #10202e;
  border: 1px solid #263b4d;
  border-radius: 6px;
  grid-template-columns: auto 1fr auto;
  align-items: center;
  gap: 10px;
  min-height: 63px;
  padding: 11px;
  display: grid;
}
.today-list > div > i {
  border-radius: 50%;
  width: 9px;
  height: 9px;
}
.lime-dot {
  background: var(--lime);
  box-shadow: 0 0 8px var(--lime);
}
.blue-dot {
  background: #4f82ff;
  box-shadow: 0 0 8px #4f82ff;
}
.amber-dot {
  background: #ffb52e;
  box-shadow: 0 0 8px #ffb52e;
}
.today-list span {
  flex-direction: column;
  gap: 4px;
  display: flex;
}
.today-list b {
  font-size: 10px;
}
.today-list small {
  color: #8da0af;
  font-size: 9px;
}
.today-list em {
  color: #95a7b5;
  font-size: 20px;
  font-style: normal;
}
@media (width<=1100px) {
  .hero {
    grid-template-columns: 1fr;
  }
  .hero h1 {
    font-size: 52px;
  }
  .control-kpis {
    grid-template-columns: repeat(2, 1fr);
  }
}
@media (width<=650px) {
  .hero h1 {
    font-size: 39px;
  }
  .control-body {
    grid-template-columns: 1fr;
  }
  .control-kpis strong {
    font-size: 21px;
  }
  .control-kpis > div {
    min-height: 105px;
    padding: 14px 12px;
  }
  .control-chart .chart {
    height: 190px;
  }
}
.revenue-chart {
  background: linear-gradient(#0000, #4f82ff09);
  height: 245px;
  position: relative;
  overflow: hidden;
}
.revenue-chart svg {
  width: calc(100% - 32px);
  height: calc(100% - 40px);
  position: absolute;
  inset: 28px 16px 12px;
  overflow: visible;
}
.revenue-chart polyline {
  fill: none;
  stroke-width: 3px;
  stroke-linecap: round;
  stroke-linejoin: round;
}
.revenue-chart .plan-line {
  stroke: #4f82ff;
  filter: drop-shadow(0 0 5px #4f82ff8c);
}
.revenue-chart .risk-line {
  stroke: var(--lime);
  filter: drop-shadow(0 0 5px #a8ff1a6b);
}
.revenue-chart .plan-point {
  fill: #4f82ff;
  stroke: #fff;
  stroke-width: 2px;
}
.revenue-chart .risk-point {
  fill: var(--lime);
  stroke: #fff;
  stroke-width: 2px;
}
.revenue-chart .chart-grid {
  background: repeating-linear-gradient(0deg, #0000 0 45px, #69829521 46px),
    repeating-linear-gradient(90deg, #0000 0 95px, #69829514 96px);
  position: absolute;
  inset: 30px 15px 12px;
}
.outcomes {
  border-top: 1px solid #10282e;
}
.outcome-grid {
  grid-template-columns: repeat(4, 1fr);
  gap: 14px;
  display: grid;
}
.outcome-grid article {
  border: 1px solid var(--line);
  background: linear-gradient(145deg, #0b2029, #06151b);
  border-radius: 8px;
  flex-direction: column;
  justify-content: space-between;
  min-height: 190px;
  padding: 28px;
  display: flex;
}
.outcome-grid strong {
  color: var(--lime);
  font-size: 21px;
}
.outcome-grid span {
  color: #a4b3b6;
  font-size: 14px;
  line-height: 1.55;
}
.role-grid {
  grid-template-columns: repeat(4, 1fr);
  gap: 14px;
  display: grid;
}
.role-grid article {
  border: 1px solid var(--line);
  background: linear-gradient(145deg, #0b2029, #06151b);
  border-radius: 8px;
  min-height: 330px;
  padding: 28px;
  position: relative;
}
.role-grid article > span {
  color: var(--lime);
  font-size: 11px;
}
.role-grid h3 {
  margin: 42px 0 20px;
  font-size: 26px;
  line-height: 1.08;
}
.role-grid strong {
  color: #dce4e4;
  margin-bottom: 16px;
  font-size: 15px;
  line-height: 1.45;
  display: block;
}
.role-grid p {
  color: var(--muted);
  margin: 0;
  font-size: 13px;
  line-height: 1.65;
}
.role-grid article:after {
  content: "";
  background: linear-gradient(90deg, var(--lime), transparent);
  opacity: 0.55;
  height: 2px;
  position: absolute;
  bottom: 0;
  left: 28px;
  right: 28px;
}
.industries {
  background: #05151a;
  max-width: none;
  padding-left: max(38px, 50vw - 602px);
  padding-right: max(38px, 50vw - 602px);
}
.industry-grid {
  border-left: 1px solid var(--line);
  border-top: 1px solid var(--line);
  grid-template-columns: repeat(4, 1fr);
  display: grid;
}
.industry-grid article {
  border-right: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
  background: #081b228c;
  min-height: 170px;
  padding: 25px;
}
.industry-grid article > span {
  color: #5f797d;
  font-size: 10px;
}
.industry-grid h3 {
  margin: 30px 0 10px;
  font-size: 19px;
}
.industry-grid p {
  color: var(--muted);
  margin: 0;
  font-size: 12px;
  line-height: 1.55;
}
.industry-note {
  text-align: center;
  color: #91a4a7;
  max-width: 840px;
  margin: 28px auto 0;
  font-size: 13px;
  line-height: 1.6;
}
.integrations {
  border-top: 1px solid #10282e;
}
.integration-layout {
  grid-template-columns: 0.65fr 1.35fr;
  gap: 18px;
  display: grid;
}
.integration-core {
  background: radial-gradient(circle at 50% 45%, #a8ff1a21, #0000 48%), #081b22;
  border: 1px solid #6a9a2b;
  border-radius: 9px;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  min-height: 300px;
  display: flex;
}
.integration-core .radar-mark {
  width: 70px;
  height: 70px;
}
.integration-core strong {
  margin: 20px 0 8px;
  font-size: 30px;
}
.integration-core span {
  color: #8ca0a4;
  font-size: 12px;
}
.integration-sources {
  grid-template-columns: repeat(2, 1fr);
  gap: 10px;
  display: grid;
}
.integration-sources span {
  color: #cbd5d6;
  background: #071b22;
  border: 1px solid #20414a;
  border-radius: 7px;
  align-items: center;
  min-height: 68px;
  padding: 0 20px;
  font-weight: 700;
  display: flex;
  position: relative;
}
.integration-sources span:before {
  content: "";
  border: 1px solid var(--lime);
  border-radius: 50%;
  width: 8px;
  height: 8px;
  margin-right: 12px;
  box-shadow: 0 0 9px #a8ff1a73;
}
.api-note {
  background: #0a2028;
  border: 1px solid #31515a;
  border-radius: 7px;
  grid-template-columns: 0.9fr 1.5fr auto;
  align-items: center;
  gap: 30px;
  margin-top: 18px;
  padding: 25px;
  display: grid;
}
.api-note p {
  color: var(--muted);
  margin: 0;
  font-size: 13px;
  line-height: 1.55;
}
.api-note a {
  color: var(--lime);
  font-size: 13px;
  font-weight: 700;
}
.control-center {
  background: radial-gradient(circle at 45%, #2765be21, #0000 48%), #041219;
  max-width: none;
  padding-left: max(38px, 50vw - 602px);
  padding-right: max(38px, 50vw - 602px);
}
.control-showcase {
  grid-template-columns: 1.7fr 0.65fr;
  align-items: stretch;
  gap: 16px;
  display: grid;
}
.control-showcase > .hero-dashboard {
  min-width: 0;
}
.dashboard-roles {
  flex-direction: column;
  gap: 12px;
  display: flex;
}
.dashboard-roles article {
  background: #081c24;
  border: 1px solid #243d49;
  border-radius: 8px;
  flex: 1;
  padding: 22px;
}
.dashboard-roles span {
  color: var(--lime);
  text-transform: uppercase;
  letter-spacing: 1.2px;
  font-size: 10px;
}
.dashboard-roles strong {
  margin: 12px 0 8px;
  font-size: 18px;
  display: block;
}
.dashboard-roles p {
  color: var(--muted);
  margin: 0;
  font-size: 12px;
  line-height: 1.55;
}
.deal-section {
  border-top: 1px solid #10282e;
}
.deal-card {
  background: linear-gradient(145deg, #0a2029, #06151c);
  border: 1px solid #304c58;
  border-radius: 10px;
  max-width: 980px;
  margin: 0 auto;
  overflow: hidden;
  box-shadow: 0 35px 90px #00000040;
}
.deal-head {
  border-bottom: 1px solid var(--line);
  justify-content: space-between;
  align-items: flex-end;
  padding: 25px 28px;
  display: flex;
}
.deal-head small {
  letter-spacing: 1.5px;
  color: var(--lime);
  font-size: 9px;
}
.deal-head h3 {
  margin: 8px 0 0;
  font-size: 23px;
}
.deal-head > strong {
  font-size: 25px;
}
.deal-scores {
  grid-template-columns: 1fr 1fr;
  gap: 18px;
  padding: 24px 28px;
  display: grid;
}
.deal-scores > div {
  background: #081b23;
  border: 1px solid #203e49;
  border-radius: 7px;
  padding: 20px;
}
.deal-scores span {
  color: #9cb0b3;
  font-size: 11px;
}
.deal-scores strong {
  margin: 16px 0 12px;
  font-size: 38px;
  display: block;
}
.deal-scores strong small {
  color: #82979a;
  font-size: 14px;
}
.deal-scores div > i {
  background: #173239;
  border-radius: 5px;
  height: 5px;
  display: block;
  overflow: hidden;
}
.deal-scores div > i b {
  background: linear-gradient(90deg, #4f82ff, var(--lime));
  height: 100%;
  display: block;
}
.deal-risks {
  padding: 6px 28px 25px;
}
.deal-risks h4 {
  margin: 0 0 14px;
  font-size: 14px;
}
.deal-risks span {
  color: #ff928f;
  background: #2d1b20;
  border: 1px solid #6d3537;
  border-radius: 5px;
  margin: 0 7px 7px 0;
  padding: 8px 10px;
  font-size: 11px;
  display: inline-block;
}
.deal-action {
  background: #a8ff1a0b;
  border-top: 1px solid #375b35;
  flex-direction: column;
  gap: 9px;
  padding: 23px 28px;
  display: flex;
}
.deal-action span {
  color: var(--lime);
  text-transform: uppercase;
  letter-spacing: 1.4px;
  font-size: 9px;
}
.deal-action strong {
  font-size: 15px;
  line-height: 1.45;
}
.deal-action small {
  color: #8da3a5;
}
.audit {
  background: radial-gradient(circle at 15% 15%, #a8ff1a1c, #0000 40%), #071b20;
  border: 1px solid #527a2b;
  border-radius: 10px;
  grid-template-columns: 1.2fr 0.8fr;
  align-items: center;
  gap: 70px;
  max-width: 1204px;
  margin-top: 70px;
  margin-bottom: 70px;
  padding: 65px;
  display: grid;
}
.audit-copy > span {
  color: var(--lime);
  letter-spacing: 1.8px;
  font-size: 11px;
  font-weight: 700;
}
.audit-copy h2 {
  letter-spacing: -2px;
  margin: 16px 0 20px;
  font-size: 47px;
  line-height: 1.08;
}
.audit-copy > p {
  color: var(--muted);
  line-height: 1.65;
}
.audit-copy ul {
  grid-template-columns: 1fr 1fr;
  gap: 11px;
  margin: 28px 0 0;
  padding: 0;
  list-style: none;
  display: grid;
}
.audit-copy li {
  color: #c0cdce;
  font-size: 12px;
}
.audit-copy li:before {
  content: "✓";
  color: var(--lime);
  margin-right: 8px;
}
.audit-result {
  background: #0a232b;
  border: 1px solid #29464e;
  border-radius: 8px;
  flex-direction: column;
  padding: 28px;
  display: flex;
}
.audit-result > small {
  color: var(--lime);
  letter-spacing: 1.3px;
  font-size: 9px;
}
.audit-result > strong {
  margin: 9px 0 22px;
  font-size: 22px;
}
.audit-result > div {
  border-top: 1px solid var(--line);
  align-items: center;
  gap: 14px;
  padding: 13px 0;
  display: flex;
}
.audit-result > div span {
  width: 29px;
  height: 29px;
  color: var(--lime);
  border: 1px solid #52752d;
  border-radius: 50%;
  place-items: center;
  font-size: 9px;
  display: grid;
}
.audit-result > div p {
  color: #a8b8ba;
  margin: 0;
  font-size: 12px;
}
.audit-result .button {
  min-width: 0;
  margin-top: 14px;
  padding: 15px 17px;
  font-size: 13px;
}
.pricing-grid {
  grid-template-columns: repeat(4, 1fr);
}
.pricing-grid article {
  padding: 25px;
}
.pricing-grid article > strong {
  font-size: 24px;
}
.pricing-grid article.featured {
  transform: translateY(-8px);
}
.pricing-note {
  text-align: center;
  color: #758c90;
  margin: 25px 0 0;
  font-size: 11px;
}
.faq {
  border-top: 1px solid #10282e;
}
.faq-list {
  border-top: 1px solid var(--line);
  max-width: 980px;
  margin: 0 auto;
}
.faq-list details {
  border-bottom: 1px solid var(--line);
  padding: 0 8px;
}
.faq-list summary {
  cursor: pointer;
  justify-content: space-between;
  align-items: center;
  padding: 22px 0;
  font-size: 18px;
  font-weight: 700;
  list-style: none;
  display: flex;
}
.faq-list summary::-webkit-details-marker {
  display: none;
}
.faq-list summary span {
  width: 30px;
  height: 30px;
  color: var(--lime);
  border: 1px solid #49662e;
  border-radius: 50%;
  place-items: center;
  font-size: 18px;
  font-weight: 400;
  transition: all 0.2s;
  display: grid;
}
.faq-list details[open] summary span {
  transform: rotate(45deg);
}
.faq-list p {
  max-width: 810px;
  color: var(--muted);
  margin: 0;
  padding: 0 0 23px;
  font-size: 14px;
  line-height: 1.7;
}
@media (width<=1100px) {
  .outcome-grid,
  .role-grid,
  .industry-grid {
    grid-template-columns: repeat(2, 1fr);
  }
  .control-showcase {
    grid-template-columns: 1fr;
  }
  .dashboard-roles {
    grid-template-columns: repeat(3, 1fr);
    display: grid;
  }
  .pricing-grid {
    grid-template-columns: repeat(2, 1fr);
  }
  .audit {
    margin-left: 30px;
    margin-right: 30px;
  }
  .integration-layout {
    grid-template-columns: 1fr;
  }
  .integration-core {
    min-height: 230px;
  }
}
@media (width<=750px) {
  .outcome-grid,
  .role-grid,
  .industry-grid,
  .pricing-grid {
    grid-template-columns: 1fr;
  }
  .role-grid article {
    min-height: auto;
  }
  .integration-sources,
  .api-note,
  .dashboard-roles {
    grid-template-columns: 1fr;
  }
  .deal-head {
    flex-direction: column;
    align-items: flex-start;
    gap: 15px;
  }
  .deal-scores {
    grid-template-columns: 1fr;
  }
  .audit {
    grid-template-columns: 1fr;
    gap: 35px;
    margin: 45px 18px;
    padding: 38px 22px;
  }
  .audit-copy h2 {
    letter-spacing: -1.3px;
    font-size: 35px;
  }
  .audit-copy ul {
    grid-template-columns: 1fr;
  }
  .pricing-grid article.featured {
    transform: none;
  }
  .industry-grid {
    border-left: 0;
  }
  .industries,
  .control-center {
    padding-left: 18px;
    padding-right: 18px;
  }
  .control-kpis {
    grid-template-columns: 1fr 1fr;
  }
  .control-kpis strong {
    font-size: 20px;
  }
  .revenue-chart {
    height: 190px;
  }
  .control-body {
    grid-template-columns: 1fr;
  }
  .faq-list summary {
    font-size: 16px;
  }
  .outcome-grid article {
    min-height: 150px;
  }
}
