:root {
  --ink: #172033;
  --muted: #647286;
  --line: #dbe3ea;
  --soft: #f5f7fa;
  --panel: #ffffff;
  --navy: #18283f;
  --teal: #0f9f98;
  --teal-dark: #0b6f72;
  --amber: #d99124;
  --green: #2ca85f;
  --red: #d84b55;
  --shadow: 0 18px 48px rgba(23, 32, 51, .12);
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  color: var(--ink);
  background: #f6f8fb;
  font-family: "Segoe UI", Arial, sans-serif;
  letter-spacing: 0;
}

a {
  color: inherit;
  text-decoration: none;
}

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

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

input,
select,
textarea {
  width: 100%;
  min-height: 42px;
  padding: 10px 12px;
  color: var(--ink);
  background: #fff;
  border: 1px solid var(--line);
  border-radius: 8px;
  outline: none;
}

textarea {
  resize: vertical;
}

input:focus,
select:focus,
textarea:focus {
  border-color: var(--teal);
  box-shadow: 0 0 0 3px rgba(15, 159, 152, .12);
}

label {
  display: grid;
  gap: 7px;
  color: #405064;
  font-size: 13px;
  font-weight: 700;
}

code {
  padding: 3px 6px;
  background: #eef4f5;
  border: 1px solid #d8e8ea;
  border-radius: 6px;
  color: #134f59;
  font-family: Consolas, "Courier New", monospace;
  font-size: 12px;
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 20;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  height: 74px;
  padding: 0 clamp(20px, 5vw, 72px);
  background: rgba(255, 255, 255, .92);
  border-bottom: 1px solid rgba(219, 227, 234, .8);
  backdrop-filter: blur(16px);
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  font-weight: 800;
  white-space: nowrap;
}

.brand img {
  width: 34px;
  height: 34px;
}

.site-header nav {
  display: flex;
  align-items: center;
  gap: 18px;
  color: #455467;
  font-size: 14px;
  font-weight: 700;
}

.lang-switch,
.sidebar-lang {
  display: inline-flex;
  align-items: center;
  gap: 6px;
}

.lang-switch a,
.sidebar-lang a {
  min-width: 34px;
  padding: 6px 8px;
  border: 1px solid var(--line);
  border-radius: 8px;
  text-align: center;
  font-size: 12px;
  font-weight: 900;
}

.lang-switch a.active,
.sidebar-lang a.active {
  color: #fff;
  background: var(--teal);
  border-color: var(--teal);
}

.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 44px;
  padding: 0 18px;
  border: 1px solid transparent;
  border-radius: 8px;
  background: linear-gradient(135deg, var(--teal), var(--teal-dark));
  color: #fff;
  box-shadow: 0 12px 24px rgba(15, 159, 152, .18);
  cursor: pointer;
  font-weight: 800;
}

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

.button.ghost {
  color: var(--ink);
  background: #fff;
  border-color: var(--line);
  box-shadow: none;
}

.button.small {
  min-height: 34px;
  padding: 0 12px;
  font-size: 13px;
}

.button.full {
  width: 100%;
}

.hero {
  min-height: clamp(520px, 76vh, 720px);
  padding: clamp(76px, 10vw, 132px) clamp(20px, 6vw, 86px);
}

.hero-product {
  position: relative;
  display: flex;
  align-items: center;
  isolation: isolate;
  overflow: hidden;
  color: #fff;
  background-image:
    linear-gradient(90deg, rgba(10, 20, 36, .88) 0%, rgba(10, 20, 36, .70) 37%, rgba(10, 20, 36, .18) 72%, rgba(10, 20, 36, .42) 100%),
    url("../img/hero-dashboard.png");
  background-size: cover;
  background-position: center;
}

.hero-product::after {
  content: "";
  position: absolute;
  inset: auto 0 0;
  height: 110px;
  background: linear-gradient(0deg, #f6f8fb, transparent);
  z-index: -1;
}

.hero-copy {
  width: min(760px, 100%);
}

.eyebrow {
  display: inline-flex;
  margin-bottom: 12px;
  color: var(--teal);
  font-size: 12px;
  font-weight: 900;
  letter-spacing: 0;
  text-transform: uppercase;
}

.hero .eyebrow {
  color: #65e1d5;
}

.hero h1 {
  max-width: 760px;
  margin: 0;
  font-size: 76px;
  line-height: .96;
  letter-spacing: 0;
}

.hero p {
  max-width: 650px;
  margin: 24px 0 0;
  color: rgba(255, 255, 255, .86);
  font-size: 22px;
  line-height: 1.45;
}

.hero-actions,
.result-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-top: 30px;
}

.hero-micro {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-top: 34px;
}

.hero-micro span {
  padding: 8px 12px;
  color: #dffaf8;
  background: rgba(255, 255, 255, .12);
  border: 1px solid rgba(255, 255, 255, .18);
  border-radius: 999px;
  font-size: 13px;
  font-weight: 800;
}

.section {
  padding: clamp(56px, 7vw, 96px) clamp(20px, 6vw, 86px);
}

.section-title {
  display: flex;
  align-items: end;
  justify-content: space-between;
  gap: 24px;
  max-width: 1160px;
  margin: 0 auto 28px;
}

.section-title h2,
.page-head h1,
.panel h2,
.result-screen h1 {
  margin: 0;
  letter-spacing: 0;
}

.section-title h2 {
  max-width: 720px;
  font-size: 44px;
  line-height: 1.04;
}

.feature-grid,
.pricing-grid,
.metric-grid,
.detail-grid,
.two-col,
.payment-layout,
.plan-editor-grid {
  display: grid;
  gap: 18px;
}

.feature-grid {
  grid-template-columns: repeat(3, minmax(0, 1fr));
  max-width: 1160px;
  margin: 0 auto;
}

.feature-card,
.price-card,
.panel,
.metric,
.auth-card {
  background: var(--panel);
  border: 1px solid var(--line);
  border-radius: 8px;
  box-shadow: 0 8px 28px rgba(23, 32, 51, .06);
}

.feature-card {
  min-height: 184px;
  padding: 26px;
}

.feature-card h3,
.price-card h3 {
  margin: 0 0 12px;
  font-size: 21px;
}

.feature-card p,
.price-card p,
.muted-panel p,
.result-screen p,
.small-note {
  color: var(--muted);
  line-height: 1.58;
}

.pricing-section {
  background: #edf4f3;
}

.pricing-grid {
  grid-template-columns: repeat(3, minmax(0, 1fr));
  max-width: 1160px;
  margin: 0 auto;
}

.price-card {
  display: grid;
  gap: 14px;
  padding: 26px;
}

.price {
  font-size: 36px;
  font-weight: 900;
}

.cta-band {
  max-width: 1160px;
  margin: 0 auto 56px;
  padding: 40px;
  color: #fff;
  background: linear-gradient(135deg, #172033, #0f7775);
  border-radius: 8px;
}

.cta-band h2 {
  margin: 0 0 10px;
  font-size: 40px;
}

.cta-band p {
  max-width: 720px;
  color: rgba(255, 255, 255, .78);
}

.site-footer {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
  padding: 28px clamp(20px, 5vw, 72px);
  color: #627085;
  background: #fff;
  border-top: 1px solid var(--line);
}

.flash {
  max-width: 1160px;
  margin: 16px auto;
  padding: 12px 16px;
  border-radius: 8px;
  font-weight: 700;
}

.flash.error {
  color: #8b222a;
  background: #ffecef;
  border: 1px solid #ffd1d7;
}

.flash.success {
  color: #176239;
  background: #e9f8ef;
  border: 1px solid #c7ecd5;
}

.auth-wrap {
  min-height: calc(100vh - 156px);
  display: grid;
  place-items: center;
  padding: 54px 20px;
  background:
    radial-gradient(circle at 15% 20%, rgba(15, 159, 152, .16), transparent 34%),
    linear-gradient(140deg, #f5f8fb, #edf3f4);
}

.auth-card {
  width: min(440px, 100%);
  padding: 32px;
}

.auth-card.wide {
  width: min(760px, 100%);
}

.auth-card h1 {
  margin: 0;
  font-size: 34px;
}

.auth-card p,
.muted {
  color: var(--muted);
}

.auth-card label {
  margin-top: 14px;
}

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

.portal {
  display: grid;
  grid-template-columns: 250px minmax(0, 1fr);
  min-height: 100vh;
  background: #f3f6f9;
}

.sidebar {
  position: sticky;
  top: 0;
  height: 100vh;
  display: flex;
  flex-direction: column;
  gap: 6px;
  padding: 22px 16px;
  color: #dce8f4;
  background: linear-gradient(180deg, #132238, #1a2a42);
}

.admin-sidebar {
  background: linear-gradient(180deg, #241d2e, #173042);
}

.portal-brand {
  margin-bottom: 18px;
  color: #fff;
}

.sidebar-lang {
  margin: 8px 0;
  padding: 8px 12px;
  color: #dce8f4;
}

.sidebar-lang span {
  margin-right: auto;
  color: rgba(220, 232, 244, .78);
  font-size: 12px;
  font-weight: 800;
}

.sidebar-lang a {
  color: #dce8f4;
  border-color: rgba(255, 255, 255, .22);
}

.sidebar > a,
.sidebar form .link-button {
  width: 100%;
  padding: 11px 12px;
  color: #dce8f4;
  background: transparent;
  border: 0;
  border-radius: 8px;
  text-align: left;
  cursor: pointer;
  font-weight: 700;
}

.sidebar > a:hover,
.sidebar form .link-button:hover {
  background: rgba(255, 255, 255, .10);
}

.portal-main {
  min-width: 0;
  padding: 24px clamp(18px, 3vw, 36px) 46px;
}

.topline,
.page-head,
.panel-title {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 18px;
}

.topline {
  min-height: 58px;
  margin-bottom: 22px;
  padding: 10px 14px;
  background: rgba(255, 255, 255, .78);
  border: 1px solid var(--line);
  border-radius: 8px;
}

.topline span,
.subtext {
  display: block;
  margin-top: 3px;
  color: var(--muted);
  font-size: 12px;
  font-weight: 600;
}

.page-head {
  margin: 0 0 20px;
}

.page-head h1 {
  font-size: 38px;
}

.metric-grid {
  grid-template-columns: repeat(3, minmax(0, 1fr));
  margin-bottom: 20px;
}

.admin-metrics {
  grid-template-columns: repeat(6, minmax(0, 1fr));
}

.metric {
  display: block;
  min-height: 112px;
  padding: 20px;
}

.metric span {
  color: var(--muted);
  font-size: 13px;
  font-weight: 800;
}

.metric strong {
  display: block;
  margin-top: 10px;
  font-size: 34px;
}

.two-col {
  grid-template-columns: 1.5fr .85fr;
}

.detail-grid {
  grid-template-columns: .95fr 1.05fr;
  margin-bottom: 18px;
}

.payment-layout {
  grid-template-columns: minmax(0, 1fr) 320px;
}

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

.panel {
  min-width: 0;
  padding: 22px;
}

.accent-panel {
  color: #fff;
  background: linear-gradient(135deg, #172033, #0d7b78);
  border: 0;
}

.accent-panel .eyebrow,
.accent-panel p {
  color: rgba(255, 255, 255, .78);
}

.license-key-box {
  margin-top: 24px;
  padding: 15px;
  overflow-wrap: anywhere;
  background: rgba(255, 255, 255, .14);
  border: 1px solid rgba(255, 255, 255, .18);
  border-radius: 8px;
  font-family: Consolas, "Courier New", monospace;
}

.table-wrap {
  width: 100%;
  overflow-x: auto;
}

table {
  width: 100%;
  border-collapse: collapse;
  min-width: 760px;
}

th,
td {
  padding: 12px 10px;
  border-bottom: 1px solid var(--line);
  text-align: left;
  vertical-align: top;
  font-size: 14px;
}

th {
  color: #526175;
  background: #f5f8fb;
  font-size: 12px;
  text-transform: uppercase;
}

.badge {
  display: inline-flex;
  align-items: center;
  min-height: 24px;
  padding: 3px 9px;
  border-radius: 999px;
  background: #eef3f7;
  color: #536275;
  font-size: 12px;
  font-weight: 900;
}

.badge.ok {
  color: #176239;
  background: #def6e8;
}

.badge.warn {
  color: #80500e;
  background: #fff2d9;
}

.badge.danger {
  color: #8b222a;
  background: #ffe5e9;
}

.list-row {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
  padding: 14px 0;
  border-bottom: 1px solid var(--line);
}

.info-list {
  display: grid;
  grid-template-columns: 140px minmax(0, 1fr);
  gap: 12px;
  margin: 0;
}

.info-list dt {
  color: var(--muted);
  font-weight: 800;
}

.info-list dd {
  margin: 0;
  overflow-wrap: anywhere;
}

.app-pricing {
  margin: 0 0 18px;
  max-width: none;
}

.plan-card select {
  margin-bottom: 8px;
}

.admin-create-license {
  margin-bottom: 18px;
}

.license-form-grid {
  align-items: end;
  margin-top: 16px;
}

.field-label {
  margin-top: 4px;
}

.payment-frame {
  min-height: 720px;
  padding: 0;
  overflow: hidden;
}

.payment-card-form {
  display: grid;
  gap: 16px;
}

.payment-card-form button:disabled {
  opacity: .55;
  cursor: not-allowed;
  transform: none;
}

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

.payment-amount-box {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 18px;
  padding: 16px;
  background: #f4f8f8;
  border: 1px solid var(--line);
  border-radius: 8px;
}

.payment-amount-box span {
  color: var(--muted);
  font-size: 13px;
  font-weight: 800;
}

.payment-amount-box strong {
  font-size: 28px;
}

.order-summary {
  align-self: start;
}

.payment-modal-open {
  overflow: hidden;
}

.payment-modal {
  position: fixed;
  inset: 0;
  z-index: 2000;
  display: none;
  align-items: center;
  justify-content: center;
  padding: 22px;
  background: rgba(14, 24, 38, .72);
  backdrop-filter: blur(8px);
}

.payment-modal.active {
  display: flex;
}

.payment-modal-dialog {
  display: grid;
  grid-template-rows: auto auto minmax(0, 1fr);
  width: min(1120px, 100%);
  height: min(820px, calc(100vh - 44px));
  padding: 18px;
  background: #fff;
  border: 1px solid rgba(219, 227, 234, .9);
  border-radius: 8px;
  box-shadow: 0 28px 80px rgba(0, 0, 0, .28);
}

.payment-modal-head {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  gap: 16px;
}

.payment-modal-head h2 {
  margin: 4px 0 0;
  font-size: 22px;
}

.payment-modal-close {
  display: inline-grid;
  place-items: center;
  width: 38px;
  height: 38px;
  color: #1f2b3c;
  background: #f2f6f8;
  border: 1px solid #dce5ec;
  border-radius: 8px;
  cursor: pointer;
  font-size: 24px;
  line-height: 1;
}

.payment-modal iframe {
  width: 100%;
  height: 100%;
  min-height: 420px;
  background: #fff;
  border: 1px solid #dce5ec;
  border-radius: 8px;
}

.result-screen {
  display: grid;
  place-items: center;
  min-height: calc(100vh - 180px);
  padding: 42px 20px;
  text-align: center;
}

.result-screen p {
  max-width: 620px;
}

.result-icon {
  display: grid;
  place-items: center;
  width: 72px;
  height: 72px;
  border-radius: 999px;
  color: #fff;
  font-size: 36px;
  font-weight: 900;
}

.result-icon.ok {
  background: var(--green);
}

.result-icon.danger {
  background: var(--red);
}

.search-form {
  display: flex;
  width: min(420px, 100%);
  gap: 8px;
}

.filter-pills {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
}

.filter-pills a {
  padding: 8px 12px;
  color: #536275;
  background: #fff;
  border: 1px solid var(--line);
  border-radius: 999px;
  font-size: 13px;
  font-weight: 800;
}

.filter-pills a.active {
  color: #fff;
  background: var(--teal);
  border-color: var(--teal);
}

.plan-editor {
  display: grid;
  gap: 12px;
}

.switch {
  display: inline-flex;
  align-items: center;
  grid-auto-flow: column;
  gap: 8px;
}

.switch input {
  width: 18px;
  min-height: 18px;
}

.empty-cell {
  padding: 32px;
  color: var(--muted);
  text-align: center;
}

@media (max-width: 1180px) {
  .feature-grid,
  .pricing-grid,
  .plan-editor-grid,
  .admin-metrics {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .payment-layout,
  .two-col,
  .detail-grid {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 820px) {
  .site-header {
    height: auto;
    align-items: flex-start;
    padding-top: 14px;
    padding-bottom: 14px;
    flex-direction: column;
  }

  .site-header nav {
    flex-wrap: wrap;
  }

  .hero {
    min-height: 72vh;
    padding-top: 74px;
  }

  .hero h1 {
    font-size: 44px;
  }

  .hero p {
    font-size: 18px;
  }

  .section-title h2,
  .cta-band h2,
  .page-head h1 {
    font-size: 30px;
  }

  .feature-grid,
  .pricing-grid,
  .metric-grid,
  .admin-metrics,
  .form-grid {
    grid-template-columns: 1fr;
  }

  .section-title,
  .page-head,
  .topline,
  .panel-title {
    align-items: stretch;
    flex-direction: column;
  }

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

  .sidebar {
    position: static;
    height: auto;
  }

  .portal-main {
    padding: 18px 14px 34px;
  }

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

  .search-form {
    width: 100%;
  }
}

/* Public marketing homepage */
.site-header {
  box-shadow: 0 14px 34px rgba(23, 32, 51, .05);
}

.site-header nav a:hover {
  color: #0d7b78;
}

.hero-product {
  min-height: min(760px, calc(100vh - 74px));
  padding: clamp(64px, 8vw, 118px) clamp(20px, 6vw, 86px) clamp(34px, 5vw, 64px);
  align-items: stretch;
  background-image:
    linear-gradient(90deg, rgba(8, 17, 31, .94) 0%, rgba(10, 26, 42, .83) 38%, rgba(11, 67, 74, .42) 72%, rgba(11, 86, 89, .72) 100%),
    url("../img/hero-dashboard.png");
  background-position: center;
}

.hero-product::after {
  height: 150px;
  background: linear-gradient(0deg, #f6f8fb 0%, rgba(246, 248, 251, .64) 38%, transparent 100%);
  z-index: 0;
  pointer-events: none;
}

.hero-inner {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-rows: minmax(0, 1fr) auto;
  width: min(1220px, 100%);
  margin: 0 auto;
}

.hero-copy {
  align-self: center;
  width: min(780px, 100%);
  padding: 24px 0 44px;
}

.hero h1 {
  max-width: 800px;
  font-size: clamp(46px, 7vw, 88px);
  line-height: .95;
}

.hero p {
  max-width: 720px;
  color: rgba(255, 255, 255, .88);
  font-size: clamp(18px, 2vw, 24px);
}

.hero-actions .button {
  min-height: 48px;
  padding: 0 22px;
}

.hero-actions .hero-ghost {
  color: #f5fbfb;
  background: rgba(255, 255, 255, .10);
  border-color: rgba(255, 255, 255, .28);
}

.hero-micro {
  max-width: 760px;
}

.hero-micro span {
  min-height: 32px;
  padding: 7px 12px;
  color: #e8fffc;
  background: rgba(255, 255, 255, .13);
  border-color: rgba(255, 255, 255, .24);
}

.hero-metrics {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 1px;
  overflow: hidden;
  width: min(940px, 100%);
  border: 1px solid rgba(255, 255, 255, .18);
  border-radius: 8px;
  background: rgba(10, 23, 38, .58);
  backdrop-filter: blur(18px);
}

.hero-metrics div {
  min-height: 104px;
  padding: 22px 24px;
  background: rgba(255, 255, 255, .08);
}

.hero-metrics strong,
.hero-metrics span {
  display: block;
}

.hero-metrics strong {
  color: #fff;
  font-size: clamp(24px, 3vw, 36px);
  line-height: 1;
}

.hero-metrics span {
  margin-top: 8px;
  color: rgba(232, 246, 250, .78);
  font-size: 14px;
  font-weight: 800;
}

.signal-section {
  position: relative;
  z-index: 2;
  margin-top: -42px;
  padding: 0 clamp(20px, 6vw, 86px) 38px;
}

.signal-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 14px;
  width: min(1220px, 100%);
  margin: 0 auto;
}

.signal-card,
.compatibility-card,
.workflow-grid article {
  background: #fff;
  border: 1px solid rgba(219, 227, 234, .92);
  border-radius: 8px;
  box-shadow: 0 16px 40px rgba(23, 32, 51, .08);
}

.signal-card {
  min-height: 182px;
  padding: 22px;
}

.signal-card span,
.workflow-grid article span {
  display: inline-grid;
  place-items: center;
  min-width: 34px;
  height: 28px;
  margin-bottom: 18px;
  color: #0b6f72;
  background: #e1f6f4;
  border-radius: 8px;
  font-size: 12px;
  font-weight: 900;
}

.signal-card h3,
.compatibility-card h3,
.workflow-grid h3 {
  margin: 0 0 10px;
  font-size: 20px;
}

.signal-card p,
.compatibility-card p,
.workflow-grid p,
.platform-copy p,
.rich-title p,
.pricing-note {
  color: var(--muted);
  line-height: 1.58;
}

.compatibility-section {
  display: grid;
  grid-template-columns: .88fr 1.12fr;
  gap: clamp(24px, 5vw, 58px);
  align-items: center;
  width: min(1220px, calc(100% - 40px));
  margin: 0 auto;
  padding-left: 0;
  padding-right: 0;
}

.compatibility-copy h2,
.platform-copy h2 {
  margin: 0;
  font-size: clamp(34px, 4.5vw, 58px);
  line-height: 1.02;
}

.compatibility-copy p,
.platform-copy p {
  margin: 22px 0 0;
  font-size: 17px;
}

.compatibility-grid {
  display: grid;
  gap: 16px;
}

.compatibility-card {
  padding: clamp(22px, 3vw, 34px);
}

.compatibility-card.primary {
  color: #fff;
  background: linear-gradient(135deg, #172033, #0c7775);
  border: 0;
}

.compatibility-card.primary p,
.compatibility-card.primary small {
  color: rgba(255, 255, 255, .78);
}

.compatibility-card small {
  display: block;
  color: var(--muted);
  line-height: 1.55;
}

.model-cloud {
  margin-top: 18px;
  padding: 14px 16px;
  color: #eafffd;
  background: rgba(255, 255, 255, .12);
  border: 1px solid rgba(255, 255, 255, .20);
  border-radius: 8px;
  font-family: Consolas, "Courier New", monospace;
  font-size: 13px;
  line-height: 1.7;
}

.feature-section {
  background: #fff;
}

.rich-title {
  align-items: start;
}

.rich-title p {
  max-width: 420px;
  margin: 24px 0 0;
}

.feature-section .feature-grid {
  gap: 16px;
}

.feature-section .feature-card {
  position: relative;
  min-height: 228px;
  padding: 28px;
  overflow: hidden;
  border-color: #e3e9ef;
  box-shadow: none;
  transition: transform .18s ease, box-shadow .18s ease, border-color .18s ease;
}

.feature-section .feature-card:hover {
  transform: translateY(-3px);
  border-color: #b7dedd;
  box-shadow: 0 18px 40px rgba(23, 32, 51, .10);
}

.feature-icon {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-width: 48px;
  height: 34px;
  margin-bottom: 22px;
  color: #0b6f72;
  background: #e1f6f4;
  border-radius: 8px;
  font-size: 12px;
  font-weight: 900;
}

.platform-section {
  display: grid;
  grid-template-columns: 1.12fr .88fr;
  gap: clamp(28px, 5vw, 64px);
  align-items: center;
  background: linear-gradient(180deg, #f6f8fb 0%, #edf4f3 100%);
}

.platform-visual,
.platform-copy {
  min-width: 0;
}

.platform-visual {
  overflow: hidden;
  border: 1px solid #d9e6e7;
  border-radius: 8px;
  box-shadow: 0 24px 70px rgba(23, 32, 51, .16);
}

.platform-visual img {
  width: 100%;
  min-height: 360px;
  object-fit: cover;
}

.check-list {
  display: grid;
  gap: 12px;
  margin: 24px 0 0;
  padding: 0;
  list-style: none;
}

.check-list li {
  position: relative;
  padding-left: 34px;
  color: #314256;
  font-weight: 800;
  line-height: 1.5;
}

.check-list li::before {
  content: "";
  position: absolute;
  left: 0;
  top: .15em;
  width: 22px;
  height: 22px;
  border-radius: 999px;
  background: #2ca85f;
  box-shadow: inset 0 0 0 6px #daf4e5;
}

.workflow-section {
  background: #172033;
}

.workflow-section .eyebrow {
  color: #65e1d5;
}

.workflow-section h2 {
  color: #fff;
}

.workflow-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 14px;
  width: min(1220px, 100%);
  margin: 0 auto;
}

.workflow-grid article {
  min-height: 232px;
  padding: 24px;
  background: rgba(255, 255, 255, .06);
  border-color: rgba(255, 255, 255, .12);
  box-shadow: none;
}

.workflow-grid article span {
  color: #172033;
  background: #f2b84b;
}

.workflow-grid h3 {
  color: #fff;
}

.workflow-grid p {
  color: rgba(232, 246, 250, .75);
}

.pricing-section {
  background: #f6f8fb;
}

.pricing-section .price-card {
  position: relative;
  gap: 18px;
  padding: 30px;
  border-color: #dee7ed;
  box-shadow: 0 14px 40px rgba(23, 32, 51, .07);
}

.pricing-section .price-card.featured {
  border-color: #0f9f98;
  box-shadow: 0 22px 58px rgba(15, 159, 152, .17);
}

.popular-badge {
  position: absolute;
  top: 18px;
  right: 18px;
  padding: 6px 10px;
  color: #7d4a05;
  background: #fff1d3;
  border-radius: 999px;
  font-size: 12px;
  font-weight: 900;
}

.pricing-section .price {
  color: #111b2c;
  font-size: clamp(34px, 4vw, 46px);
}

.pricing-note {
  width: min(1160px, 100%);
  margin: 22px auto 0;
  font-size: 13px;
  font-weight: 700;
  text-align: center;
}

.contact-section {
  display: grid;
  grid-template-columns: .9fr 1.1fr;
  gap: clamp(28px, 5vw, 64px);
  align-items: start;
  width: min(1220px, calc(100% - 40px));
  margin: 0 auto;
  padding-left: 0;
  padding-right: 0;
}

.contact-copy h2 {
  margin: 0;
  font-size: clamp(34px, 4.5vw, 58px);
  line-height: 1.02;
}

.contact-copy p {
  margin: 22px 0 0;
  color: var(--muted);
  font-size: 17px;
  line-height: 1.58;
}

.contact-points {
  display: grid;
  gap: 12px;
  margin: 26px 0 0;
  padding: 0;
  list-style: none;
}

.contact-points li {
  position: relative;
  padding-left: 34px;
  color: #314256;
  font-weight: 800;
  line-height: 1.5;
}

.contact-points li::before {
  content: "";
  position: absolute;
  left: 0;
  top: .2em;
  width: 20px;
  height: 20px;
  border-radius: 8px;
  background: linear-gradient(135deg, #0f9f98, #2ca85f);
}

.contact-form {
  display: grid;
  gap: 16px;
  padding: clamp(22px, 3vw, 34px);
  background: #fff;
  border: 1px solid #dfe8ef;
  border-radius: 8px;
  box-shadow: 0 22px 58px rgba(23, 32, 51, .10);
}

.contact-flash {
  max-width: none;
  margin: 0;
}

.contact-form textarea {
  min-height: 142px;
}

.contact-actions {
  display: flex;
  align-items: center;
  gap: 18px;
}

.contact-actions .button {
  flex: 0 0 auto;
}

.contact-actions span {
  color: var(--muted);
  font-size: 13px;
  line-height: 1.45;
}

.hp-field,
.contact-form .hp-field {
  position: fixed !important;
  top: -9999px !important;
  left: -9999px !important;
  width: 1px !important;
  height: 1px !important;
  min-height: 0 !important;
  padding: 0 !important;
  margin: 0 !important;
  border: 0 !important;
  opacity: 0 !important;
  overflow: hidden !important;
  clip: rect(0 0 0 0) !important;
  clip-path: inset(50%) !important;
  white-space: nowrap !important;
  pointer-events: none !important;
}

.cta-band {
  width: min(1220px, calc(100% - 40px));
  margin-top: 56px;
  margin-bottom: 72px;
  padding: clamp(34px, 5vw, 58px);
  background:
    linear-gradient(135deg, rgba(23, 32, 51, .98), rgba(11, 111, 114, .96)),
    url("../img/hero-dashboard.png");
  background-position: center;
  background-size: cover;
}

.cta-band .eyebrow {
  color: #65e1d5;
}

.cta-band .button.ghost {
  color: #fff;
  background: rgba(255, 255, 255, .11);
  border-color: rgba(255, 255, 255, .24);
}

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

  .compatibility-section,
  .platform-section,
  .contact-section {
    grid-template-columns: 1fr;
  }

  .platform-section {
    padding-left: clamp(20px, 6vw, 86px);
    padding-right: clamp(20px, 6vw, 86px);
  }
}

@media (max-width: 820px) {
  .site-header nav {
    gap: 10px;
  }

  .hero-product {
    min-height: auto;
    padding-top: 52px;
  }

  .hero-copy {
    padding: 10px 0 30px;
  }

  .hero-actions {
    width: 100%;
  }

  .hero-actions .button {
    flex: 1 1 190px;
  }

  .hero-metrics,
  .signal-grid,
  .workflow-grid {
    grid-template-columns: 1fr;
  }

  .hero-metrics div {
    min-height: 86px;
  }

  .signal-section {
    margin-top: -22px;
  }

  .compatibility-section {
    width: min(100% - 32px, 1220px);
  }

  .compatibility-copy h2,
  .platform-copy h2 {
    font-size: 34px;
  }

  .rich-title p {
    max-width: none;
    margin-top: 8px;
  }

  .platform-section {
    padding-left: 16px;
    padding-right: 16px;
  }

  .platform-visual img {
    min-height: 240px;
  }

  .workflow-grid article {
    min-height: 190px;
  }

  .cta-band {
    width: min(100% - 32px, 1220px);
    margin-top: 34px;
    margin-bottom: 46px;
  }

  .contact-section {
    width: min(100% - 32px, 1220px);
  }

  .contact-actions {
    align-items: stretch;
    flex-direction: column;
  }

  .contact-actions .button {
    width: 100%;
  }
}

@media (max-width: 560px) {
  .site-header nav a:not(.button) {
    font-size: 13px;
  }

  .hero h1 {
    font-size: 40px;
  }

  .hero p {
    font-size: 17px;
  }

  .signal-card,
  .compatibility-card,
  .feature-section .feature-card,
  .pricing-section .price-card,
  .workflow-grid article {
    padding: 20px;
  }

  .model-cloud {
    font-size: 12px;
  }

  .contact-form {
    padding: 20px;
  }
}
