:root {
  --ink: #111827;
  --muted: #5b6677;
  --paper: #ffffff;
  --wash: #eef3f7;
  --line: #d7e2ee;
  --navy: #101828;
  --navy-soft: #172338;
  --teal: #008f83;
  --teal-dark: #006f66;
  --blue: #315efb;
  --amber: #b66a00;
  --green-soft: #dff7ef;
  --shadow: 0 22px 58px rgba(16, 24, 40, 0.14);
  --page-max: 1440px;
  color-scheme: light;
  font-family: Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
}

* {
  box-sizing: border-box;
  min-width: 0;
}
html { scroll-behavior: smooth; }
body {
  margin: 0;
  background: var(--wash);
  color: var(--ink);
  overflow-x: hidden;
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
}
body.nav-open,
body.modal-open { overflow: hidden; }
a { color: inherit; text-decoration: none; }
img { display: block; max-width: 100%; }
button,
input,
select,
textarea { font: inherit; }

::selection {
  background: rgba(0, 143, 131, 0.18);
  color: var(--navy);
}

.skip-link {
  position: fixed;
  left: 16px;
  top: 16px;
  z-index: 100;
  transform: translateY(-150%);
  border-radius: 8px;
  background: #fff;
  color: var(--navy);
  padding: 10px 14px;
  font-weight: 900;
  box-shadow: var(--shadow);
}

.skip-link:focus {
  transform: translateY(0);
  outline: 3px solid rgba(0, 143, 131, 0.25);
}

.site-header {
  position: sticky;
  top: 14px;
  z-index: 20;
  width: min(var(--page-max), calc(100% - 48px));
  margin: 14px auto 0;
  border: 1px solid rgba(216, 226, 238, 0.86);
  border-radius: 16px;
  background: rgba(255, 255, 255, 0.92);
  box-shadow: 0 24px 70px rgba(16, 24, 40, 0.12);
  backdrop-filter: blur(20px);
  overflow: hidden;
}

.header-topline {
  display: grid;
  grid-template-columns: auto minmax(0, 1fr) auto;
  gap: 14px;
  align-items: center;
  padding: 10px 16px;
  border-bottom: 1px solid rgba(216, 226, 238, 0.72);
  background:
    linear-gradient(90deg, rgba(16, 24, 40, 0.04), rgba(0, 143, 131, 0.09));
  color: #475467;
  font-size: 13px;
}

.header-topline span {
  display: inline-flex;
  min-height: 28px;
  align-items: center;
  border-radius: 999px;
  background: #0f172a;
  padding: 0 10px;
  color: #9ff3e8;
  font-size: 12px;
  font-weight: 950;
}

.header-topline b {
  overflow: hidden;
  font-weight: 850;
  text-overflow: ellipsis;
  white-space: nowrap;
}

.header-topline a {
  color: var(--teal-dark);
  font-weight: 950;
}

.header-shell {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 18px;
  padding: 12px 14px;
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  font-weight: 900;
  color: var(--navy);
}

.brand-copy {
  display: grid;
  gap: 2px;
  line-height: 1.05;
}

.brand-copy strong {
  font-size: 15px;
}

.brand-copy small {
  color: var(--muted);
  font-size: 11px;
  font-weight: 850;
}

.brand-mark {
  display: grid;
  width: 40px;
  height: 40px;
  place-items: center;
  border-radius: 8px;
  background: url("assets/fp-logo-mark.svg") center / contain no-repeat;
  color: transparent;
  font-size: 0;
  line-height: 0;
  box-shadow: 0 10px 24px rgba(16, 24, 40, 0.14);
}

.site-nav {
  display: flex;
  align-items: center;
  gap: 6px;
  color: #344054;
  font-weight: 850;
}

.site-nav a {
  display: grid;
  min-height: 50px;
  align-content: center;
  gap: 2px;
  padding: 8px 12px;
  border: 1px solid transparent;
  border-radius: 12px;
  line-height: 1.05;
}

.site-nav a span {
  color: var(--navy);
  font-size: 13px;
  font-weight: 950;
}

.site-nav a small {
  color: var(--muted);
  font-size: 11px;
  font-weight: 800;
}

.site-nav a:hover,
.site-nav a:focus-visible {
  border-color: rgba(215, 226, 238, 0.95);
  background: #f5f8fb;
  outline: none;
}
.site-nav .nav-cta {
  min-width: 148px;
  border-color: rgba(0, 143, 131, 0.35);
  background: var(--teal);
  box-shadow: 0 18px 32px rgba(0, 143, 131, 0.2);
}

.site-nav .nav-cta span,
.site-nav .nav-cta small {
  color: #fff;
}

.site-nav .nav-cta:hover,
.site-nav .nav-cta:focus-visible { background: var(--teal-dark); }
.site-nav .nav-login {
  border: 1px solid var(--line);
  background: #fff;
  min-width: 84px;
}

.nav-toggle {
  display: none;
  width: 42px;
  height: 42px;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: #fff;
}
.nav-toggle span {
  display: block;
  width: 18px;
  height: 2px;
  margin: 4px auto;
  background: var(--ink);
}

main,
.site-footer {
  width: min(var(--page-max), calc(100% - 48px));
  max-width: calc(100vw - 48px);
  margin-inline: auto;
}

.hero-stage,
.product-hero {
  position: relative;
  width: 100%;
  max-width: 100%;
  min-height: 720px;
  margin-top: 18px;
  display: grid;
  grid-template-columns: minmax(0, 0.95fr) minmax(420px, 0.72fr);
  gap: 56px;
  align-items: center;
  padding: 78px;
  overflow: hidden;
  border-radius: 8px;
  background: var(--navy);
  color: #fff;
}
.product-hero {
  background: #0f1c33;
}
.hero-content {
  position: relative;
  z-index: 1;
  max-width: 760px;
  min-width: 0;
}
h1,
h2,
h3,
p {
  margin-top: 0;
  overflow-wrap: anywhere;
}
.hero h1,
.page-hero h1,
.section h2,
.cta-panel h2,
.login-shell h1 {
  margin: 0;
  font-weight: 950;
  letter-spacing: 0;
  line-height: 1.04;
}
.hero h1 { font-size: 72px; color: #fff; }
.page-hero h1 { font-size: 56px; max-width: 940px; }
.section h2,
.cta-panel h2 { font-size: 42px; }
.hero p,
.page-hero p,
.section p,
.form-note,
.site-footer p {
  color: var(--muted);
  line-height: 1.7;
}
.hero-content > p {
  max-width: 700px;
  margin: 22px 0 0;
  color: #d9e3ee;
  font-size: 21px;
  text-wrap: pretty;
}

.eyebrow,
.section-kicker {
  display: inline-flex;
  align-items: center;
  gap: 9px;
  margin-bottom: 14px;
  color: var(--teal-dark);
  font-size: 13px;
  font-weight: 950;
  letter-spacing: 0;
  text-transform: uppercase;
}
.hero .eyebrow { color: #9ff3e8; }
.pulse {
  width: 10px;
  height: 10px;
  border-radius: 99px;
  background: #18c6a7;
  box-shadow: 0 0 0 8px rgba(24, 198, 167, 0.16);
}

.hero-actions,
.cta-actions,
.login-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-top: 30px;
}
.button {
  display: inline-flex;
  min-height: 48px;
  align-items: center;
  justify-content: center;
  border: 1px solid transparent;
  border-radius: 10px;
  padding: 0 18px;
  font-weight: 900;
  cursor: pointer;
  transition: transform 0.18s ease, box-shadow 0.18s ease, background 0.18s ease, border-color 0.18s ease;
}
.button-primary {
  background: var(--teal);
  color: #fff;
  box-shadow: 0 14px 30px rgba(0, 143, 131, 0.22);
}
.button-primary:hover,
.button-primary:focus-visible {
  background: var(--teal-dark);
  transform: translateY(-1px);
  outline: none;
}
.button-secondary {
  border-color: rgba(255, 255, 255, 0.28);
  background: rgba(255, 255, 255, 0.1);
  color: #fff;
}
.button-ghost {
  border-color: var(--line);
  background: #fff;
  color: var(--navy);
}

.trust-row {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin-top: 26px;
}
.trust-row span {
  padding: 8px 10px;
  border: 1px solid rgba(255, 255, 255, 0.2);
  border-radius: 8px;
  background: rgba(255, 255, 255, 0.08);
  color: #dbe7f3;
  font-size: 13px;
  font-weight: 800;
}

.suite-visual,
.hero-panel {
  position: relative;
  z-index: 1;
  min-width: 0;
}
.suite-shell,
.hero-video-card,
.login-card {
  border: 1px solid rgba(255, 255, 255, 0.18);
  border-radius: 8px;
  background: rgba(255, 255, 255, 0.94);
  color: var(--ink);
  box-shadow: var(--shadow);
}
.suite-shell { padding: 16px; }
.suite-topbar {
  display: flex;
  align-items: center;
  gap: 8px;
  padding-bottom: 14px;
  border-bottom: 1px solid var(--line);
  color: var(--navy);
}
.suite-topbar span {
  width: 10px;
  height: 10px;
  border-radius: 50%;
  background: #cbd5e1;
}
.suite-topbar strong { margin-left: auto; }
.suite-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 12px;
  padding-top: 14px;
}
.suite-tile,
.product-card,
.suite-product,
.feature-grid article,
.trust-matrix div,
.workflow-map div,
.resource-grid a,
.plan-card {
  border: 1px solid var(--line);
  border-radius: 8px;
  background: var(--paper);
}
.suite-tile {
  min-height: 150px;
  padding: 18px;
}
.suite-tile.active {
  border-color: rgba(0, 143, 131, 0.5);
  background: #ecfbf8;
}
.suite-tile small,
.status-pill,
.resource-grid span {
  display: inline-flex;
  width: fit-content;
  border-radius: 8px;
  padding: 5px 8px;
  font-size: 12px;
  font-weight: 900;
}
.suite-tile small,
.status-pill.neutral,
.resource-grid span {
  background: #eef3f8;
  color: #344054;
}
.status-pill.live {
  background: var(--green-soft);
  color: #006f66;
}
.suite-tile b {
  display: block;
  margin: 14px 0 8px;
  font-size: 22px;
}
.suite-tile span,
.product-card p,
.suite-product p,
.trust-matrix span,
.workflow-map span,
.resource-grid p {
  color: var(--muted);
  line-height: 1.55;
}

.metric-strip {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 14px;
  margin: 14px 0 0;
}
.metric-strip div {
  min-height: 100px;
  padding: 18px;
  border: 1px solid var(--line);
  border-radius: 12px;
  background: #fff;
}
.metric-strip strong {
  display: block;
  margin-bottom: 8px;
  color: var(--navy);
}
.metric-strip span { color: var(--muted); font-size: 14px; }

.section,
.page-hero,
.login-shell {
  margin-top: 18px;
  padding: 64px;
  border-radius: 0;
  background: transparent;
  border: 0;
}
.page-hero {
  padding-top: 82px;
  padding-bottom: 74px;
}
.page-hero p {
  max-width: 760px;
  margin: 22px 0 0;
  font-size: 19px;
}
.section-heading {
  max-width: 880px;
  margin-bottom: 30px;
}
.section-heading p { font-size: 18px; }

.split {
  display: grid;
  grid-template-columns: minmax(0, 0.92fr) minmax(360px, 0.72fr);
  gap: 48px;
  align-items: center;
}
.text-link {
  display: inline-flex;
  margin-top: 12px;
  color: var(--teal-dark);
  font-weight: 900;
}

.workflow-map {
  display: grid;
  gap: 12px;
}
.workflow-map div {
  display: grid;
  grid-template-columns: minmax(70px, max-content) 1fr;
  gap: 14px;
  align-items: center;
  padding: 16px;
}
.workflow-map b {
  display: grid;
  padding: 0 12px;
  min-height: 46px;
  place-items: center;
  border-radius: 8px;
  background: var(--navy);
  color: #fff;
}

.product-grid,
.feature-grid,
.trust-matrix,
.resource-grid,
.pricing-grid,
.suite-roadmap {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 14px;
}
.product-card,
.suite-product,
.feature-grid article,
.trust-matrix div,
.resource-grid a,
.plan-card {
  padding: 24px;
}
.product-card-featured,
.suite-product.live,
.plan-card.highlighted {
  border-color: rgba(0, 143, 131, 0.45);
  box-shadow: 0 18px 40px rgba(16, 24, 40, 0.08);
}
.product-card h3,
.feature-grid h3,
.plan-card h3,
.suite-product h2 {
  margin: 14px 0 10px;
}

.feature-grid { grid-template-columns: repeat(3, 1fr); }
.icon {
  display: grid;
  width: 42px;
  height: 42px;
  place-items: center;
  border-radius: 8px;
  background: #ecfbf8;
  color: var(--teal-dark);
  font-size: 12px;
  font-weight: 950;
}

.showcase-player {
  display: grid;
  grid-template-columns: minmax(0, 1.15fr) minmax(280px, 0.55fr);
  gap: 18px;
}
.showcase-poster,
.poster-button {
  position: relative;
  width: 100%;
  overflow: hidden;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: var(--navy);
  cursor: pointer;
}
.showcase-poster img,
.poster-button img {
  width: 100%;
  opacity: 0.92;
}
.poster-play {
  position: absolute;
  left: 50%;
  top: 50%;
  display: grid;
  width: 66px;
  height: 66px;
  place-items: center;
  transform: translate(-50%, -50%);
  border-radius: 50%;
  background: #fff;
  color: var(--teal-dark);
  box-shadow: 0 12px 34px rgba(0, 0, 0, 0.24);
}
.showcase-poster strong {
  position: absolute;
  left: 20px;
  bottom: 18px;
  color: #fff;
  font-size: 18px;
}
.showcase-notes {
  display: grid;
  gap: 12px;
}
.showcase-notes div {
  padding: 18px;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: #fff;
}
.showcase-notes b {
  display: inline-flex;
  margin-bottom: 10px;
  color: var(--teal-dark);
}
.showcase-notes span { display: block; color: var(--muted); line-height: 1.55; }

.hero-video-card { padding: 14px; }
.panel-top {
  display: flex;
  justify-content: space-between;
  gap: 12px;
  padding: 4px 4px 12px;
  color: var(--navy);
  font-weight: 900;
}
.hero-video-card p { margin: 14px 4px 4px; color: var(--muted); }

.audience-band {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 14px;
  background: transparent;
  border: 0;
  padding: 0;
}
.audience-band a {
  display: grid;
  gap: 10px;
  min-height: 150px;
  padding: 28px;
  border-radius: 8px;
  color: #fff;
  background: var(--navy-soft);
}
.audience-band span {
  color: #9ff3e8;
  font-weight: 900;
  text-transform: uppercase;
  font-size: 13px;
}
.audience-band b { font-size: 23px; line-height: 1.25; }

.trust-matrix {
  grid-template-columns: repeat(3, 1fr);
}
.trust-matrix b {
  display: block;
  margin-bottom: 10px;
}

.cta-panel {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  background: var(--navy);
  color: #fff;
}
.cta-panel p { color: #d9e3ee; }
.cta-panel .section-kicker { color: #9ff3e8; }
.cta-panel .button-secondary { border-color: rgba(255, 255, 255, 0.24); }

.billing-toggle {
  display: inline-flex;
  gap: 6px;
  margin-top: 28px;
  padding: 6px;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: #fff;
}
.billing-toggle button {
  min-height: 42px;
  border: 0;
  border-radius: 8px;
  background: transparent;
  padding: 0 14px;
  color: var(--muted);
  font-weight: 900;
  cursor: pointer;
}
.billing-toggle button.active {
  background: var(--navy);
  color: #fff;
}
.billing-toggle span { color: #9ff3e8; }
.pricing-grid {
  margin-top: 18px;
}
.plan-card .badge {
  width: fit-content;
  margin-bottom: 12px;
  padding: 6px 9px;
  border-radius: 8px;
  background: var(--green-soft);
  color: var(--teal-dark);
  font-size: 12px;
  font-weight: 950;
}
.price {
  margin: 22px 0;
  color: var(--navy);
  font-size: 36px;
  font-weight: 950;
}
.price small {
  color: var(--muted);
  font-size: 15px;
}
[data-yearly] { display: none; }
body.billing-yearly [data-monthly] { display: none; }
body.billing-yearly [data-yearly] { display: inline; }
.plan-card ul {
  display: grid;
  gap: 10px;
  padding: 0;
  margin: 0 0 24px;
  list-style: none;
}
.plan-card li {
  color: var(--muted);
  line-height: 1.5;
}
.plan-card li::before {
  content: "✓";
  margin-right: 8px;
  color: var(--teal-dark);
  font-weight: 950;
}
.limit-table {
  width: 100%;
  margin-top: 18px;
  border-collapse: collapse;
  overflow: hidden;
  border-radius: 8px;
  background: #fff;
  border: 1px solid var(--line);
}
.limit-table th,
.limit-table td {
  padding: 16px;
  border-bottom: 1px solid var(--line);
  text-align: left;
}
.limit-table th {
  background: #f8fafc;
  color: var(--navy);
}

.form-card {
  margin-top: 18px;
  padding: 36px;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: #fff;
}
.form-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 18px;
}
label {
  display: grid;
  gap: 8px;
  color: var(--navy);
  font-weight: 850;
}
input,
select,
textarea {
  width: 100%;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: #fff;
  padding: 13px 14px;
  color: var(--ink);
}
textarea { resize: vertical; }
form > label { margin-top: 18px; }
.form-actions {
  display: flex;
  align-items: center;
  gap: 16px;
  margin-top: 18px;
}
.success-message {
  display: none;
  margin-top: 18px;
  padding: 14px;
  border-radius: 8px;
  background: var(--green-soft);
  color: var(--teal-dark);
  font-weight: 850;
}
.success-message.show { display: block; }

.login-shell {
  display: grid;
  grid-template-columns: minmax(0, 0.95fr) minmax(360px, 0.55fr);
  gap: 36px;
  align-items: center;
}
.login-copy p { max-width: 700px; }
.login-card {
  padding: 28px;
  border-color: var(--line);
}
.login-placeholder {
  margin-top: 20px;
  padding: 18px;
  border-radius: 8px;
  background: #f8fafc;
  border: 1px dashed #b7c4d4;
}
.login-placeholder span {
  display: block;
  color: var(--navy);
  font-weight: 950;
}
.login-placeholder small { color: var(--muted); }

.resource-grid a {
  min-height: 190px;
}
.resource-grid b {
  display: block;
  margin: 14px 0 10px;
  font-size: 21px;
}

.faq-list {
  display: grid;
  gap: 12px;
}
.faq-list details {
  border: 1px solid var(--line);
  border-radius: 8px;
  background: #fff;
  padding: 18px;
}
.faq-list summary {
  cursor: pointer;
  color: var(--navy);
  font-weight: 950;
}
.faq-list p {
  margin: 12px 0 0;
}

.legal-page {
  display: grid;
  gap: 18px;
}
.legal-page h2 {
  margin: 0;
  font-size: 26px;
}
.legal-page p {
  max-width: 900px;
}

.error-page {
  min-height: 560px;
  margin-top: 18px;
  display: grid;
  align-content: center;
  border-radius: 8px;
  border: 1px solid rgba(255, 255, 255, 0.12);
  background:
    linear-gradient(135deg, #101828 0%, #0d1b30 58%, #11362f 100%);
  color: #fff;
  padding: 72px;
  box-shadow: 0 34px 80px rgba(16, 24, 40, 0.22);
}

.error-page h1 {
  max-width: 760px;
  margin: 0;
  font-size: 64px;
  line-height: 1.04;
  letter-spacing: 0;
}

.error-page p {
  max-width: 640px;
  margin: 20px 0 0;
  color: #d9e3ee;
  font-size: 20px;
  line-height: 1.65;
}

.video-modal {
  position: fixed;
  inset: 0;
  z-index: 60;
  display: none;
  place-items: center;
  padding: 24px;
  background: rgba(16, 24, 40, 0.72);
}
.video-modal.open { display: grid; }
.video-dialog {
  position: relative;
  width: min(920px, 100%);
  border-radius: 8px;
  background: #fff;
  box-shadow: var(--shadow);
}
.video-close {
  position: absolute;
  right: 14px;
  top: 14px;
  z-index: 2;
  width: 42px;
  height: 42px;
  border: 0;
  border-radius: 8px;
  background: var(--navy);
  color: #fff;
  cursor: pointer;
}
.tour-screen { padding: 30px; }
.tour-frame {
  display: flex;
  gap: 6px;
  margin-bottom: 16px;
}
.tour-frame span {
  width: 10px;
  height: 10px;
  border-radius: 50%;
  background: #cbd5e1;
}
.tour-product {
  overflow: hidden;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: #f8fafc;
}
.tour-screen p { color: var(--muted); }

.site-footer {
  margin-top: 18px;
}

.premium-footer {
  display: grid;
  gap: 18px;
  padding-bottom: 48px;
}

.footer-cta-panel,
.footer-main {
  border: 1px solid rgba(215, 226, 238, 0.92);
  border-radius: 18px;
  background: #fff;
  box-shadow: 0 22px 60px rgba(16, 24, 40, 0.08);
}

.footer-cta-panel {
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto;
  gap: 28px;
  align-items: center;
  padding: 34px;
  background:
    radial-gradient(circle at 88% 18%, rgba(0, 143, 131, 0.18), transparent 28%),
    linear-gradient(135deg, #101828, #16243b 54%, #0f3b35);
  color: #fff;
}

.footer-cta-panel h2 {
  max-width: 760px;
  margin: 0;
  color: #fff;
  font-size: 34px;
  line-height: 1.08;
}

.footer-cta-panel p {
  max-width: 790px;
  margin: 12px 0 0;
  color: #d9e3ee;
}

.footer-cta-panel .section-kicker {
  color: #9ff3e8;
}

.footer-cta-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  justify-content: flex-end;
}

.footer-main {
  display: grid;
  grid-template-columns: minmax(300px, 0.42fr) minmax(0, 1fr);
  gap: 34px;
  padding: 34px;
}

.footer-brand-block {
  display: grid;
  align-content: start;
  gap: 16px;
}

.footer-brand-block p {
  max-width: 430px;
  margin: 0;
}

.footer-badges {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
}

.footer-badges span {
  display: inline-flex;
  min-height: 32px;
  align-items: center;
  border: 1px solid #cfe7e2;
  border-radius: 999px;
  background: #f0fffb;
  padding: 0 10px;
  color: var(--teal-dark);
  font-size: 12px;
  font-weight: 950;
}

.footer-columns {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 24px;
}

.footer-columns div {
  display: grid;
  align-content: start;
  gap: 10px;
}

.footer-columns strong {
  color: var(--navy);
  font-size: 14px;
}

.footer-columns a {
  color: var(--muted);
  font-size: 14px;
  font-weight: 800;
}

.footer-columns a:hover,
.footer-columns a:focus-visible {
  color: var(--teal-dark);
  outline: none;
}

.footer-bottom {
  display: flex;
  justify-content: space-between;
  gap: 16px;
  padding: 0 4px;
  color: #667085;
  font-size: 13px;
  font-weight: 750;
}

.activation-lab {
  position: relative;
  overflow: hidden;
  border-radius: 18px;
  background:
    linear-gradient(135deg, #ffffff 0%, #f7fbff 48%, #e9fffb 100%);
  border: 1px solid rgba(215, 226, 238, 0.9);
  box-shadow: 0 28px 80px rgba(16, 24, 40, 0.11);
}

.activation-lab::before {
  content: "";
  position: absolute;
  inset: 0;
  background-image:
    linear-gradient(rgba(16, 24, 40, 0.05) 1px, transparent 1px),
    linear-gradient(90deg, rgba(16, 24, 40, 0.05) 1px, transparent 1px);
  background-size: 34px 34px;
  mask-image: linear-gradient(180deg, rgba(0, 0, 0, 0.68), transparent 72%);
  pointer-events: none;
}

.activation-lab > * {
  position: relative;
  z-index: 1;
}

.activation-shell {
  display: grid;
  grid-template-columns: minmax(0, 0.74fr) minmax(420px, 0.86fr);
  gap: 28px;
  align-items: stretch;
}

.activation-copy,
.activation-visual,
.market-positioning,
.positioning-grid article {
  border: 1px solid var(--line);
  border-radius: 18px;
}

.activation-copy {
  display: flex;
  flex-direction: column;
  justify-content: center;
  min-height: 520px;
  padding: 34px;
  background: #fff;
  box-shadow: 0 20px 54px rgba(16, 24, 40, 0.08);
}

.activation-copy h3 {
  margin: 24px 0 12px;
  color: var(--navy);
  font-size: 34px;
  line-height: 1.08;
}

.benchmark-chipline,
.role-switcher {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
}

.benchmark-chipline span {
  display: inline-flex;
  min-height: 34px;
  align-items: center;
  border: 1px solid #cfe7e2;
  border-radius: 999px;
  background: #f0fffb;
  padding: 0 12px;
  color: var(--teal-dark);
  font-size: 12px;
  font-weight: 950;
}

.role-switcher {
  margin-top: 24px;
}

.role-pill {
  min-height: 40px;
  border: 1px solid var(--line);
  border-radius: 999px;
  background: #fff;
  padding: 0 14px;
  color: #344054;
  font-weight: 900;
  cursor: pointer;
}

.role-pill.active,
.role-pill:hover,
.role-pill:focus-visible {
  border-color: rgba(0, 143, 131, 0.4);
  background: var(--navy);
  color: #fff;
  outline: none;
}

.role-copy {
  min-height: 74px;
  margin: 16px 0 6px;
  border-left: 3px solid var(--teal);
  padding: 14px 0 0 16px;
  color: var(--navy);
  font-weight: 850;
}

.activation-visual {
  padding: 20px;
  background:
    radial-gradient(circle at 72% 8%, rgba(0, 143, 131, 0.22), transparent 30%),
    linear-gradient(135deg, #0d1729, #12243d 56%, #123b35);
  color: #fff;
  box-shadow: 0 30px 90px rgba(16, 24, 40, 0.24);
}

.activation-topbar {
  display: flex;
  justify-content: space-between;
  gap: 14px;
  padding: 10px 8px 18px;
  color: #d9e3ee;
  font-weight: 900;
}

.activation-topbar strong {
  color: #9ff3e8;
}

.activation-score {
  display: grid;
  grid-template-columns: 190px 1fr;
  gap: 18px;
  align-items: center;
  padding: 22px;
  border: 1px solid rgba(255, 255, 255, 0.16);
  border-radius: 16px;
  background: rgba(255, 255, 255, 0.08);
  backdrop-filter: blur(16px);
}

.score-ring {
  display: grid;
  width: 156px;
  height: 156px;
  place-items: center;
  border-radius: 50%;
  background:
    radial-gradient(circle at center, #0d1729 0 55%, transparent 56%),
    conic-gradient(#1dd6b5 0 82%, rgba(255, 255, 255, 0.14) 82% 100%);
}

.score-ring b {
  display: block;
  margin-top: 26px;
  font-size: 34px;
}

.score-ring span {
  margin-top: -54px;
  color: #b9c8d8;
  font-size: 12px;
  font-weight: 850;
}

.mini-label {
  display: inline-flex;
  margin-bottom: 10px;
  border-radius: 999px;
  background: rgba(159, 243, 232, 0.16);
  padding: 6px 9px;
  color: #9ff3e8;
  font-size: 12px;
  font-weight: 950;
  text-transform: uppercase;
}

.activation-score strong {
  display: block;
  margin-bottom: 8px;
  font-size: 25px;
}

.activation-score p {
  margin: 0;
  color: #d9e3ee;
}

.activation-steps {
  display: grid;
  gap: 10px;
  margin: 18px 0 0;
  padding: 0;
  list-style: none;
}

.activation-steps li {
  display: grid;
  grid-template-columns: 46px 1fr auto;
  gap: 12px;
  align-items: center;
  border: 1px solid rgba(255, 255, 255, 0.14);
  border-radius: 14px;
  background: rgba(255, 255, 255, 0.08);
  padding: 14px;
}

.activation-steps span {
  display: grid;
  min-height: 38px;
  place-items: center;
  border-radius: 10px;
  background: rgba(159, 243, 232, 0.14);
  color: #9ff3e8;
  font-size: 12px;
  font-weight: 950;
}

.activation-steps b {
  color: #fff;
}

.activation-steps em {
  color: #b9c8d8;
  font-size: 13px;
  font-style: normal;
  font-weight: 850;
}

.market-positioning {
  background:
    linear-gradient(135deg, #ffffff, #f7fbff);
  box-shadow: 0 24px 70px rgba(16, 24, 40, 0.08);
}

.positioning-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 14px;
}

.positioning-grid article {
  min-height: 270px;
  padding: 24px;
  background: #fff;
}

.positioning-grid span {
  display: grid;
  width: 42px;
  height: 42px;
  place-items: center;
  border-radius: 12px;
  background: #ecfbf8;
  color: var(--teal-dark);
  font-size: 12px;
  font-weight: 950;
}

.positioning-grid h3 {
  margin: 28px 0 12px;
  color: var(--navy);
  font-size: 22px;
  line-height: 1.16;
}

.positioning-grid p {
  margin: 0;
  color: var(--muted);
  line-height: 1.6;
}

.premium-os {
  position: relative;
  overflow: hidden;
  border: 1px solid rgba(215, 226, 238, 0.9);
  border-radius: 18px;
  background:
    radial-gradient(circle at 12% 12%, rgba(49, 94, 251, 0.13), transparent 28%),
    linear-gradient(135deg, #ffffff, #f7fbff 58%, #eefcf9);
  box-shadow: 0 28px 80px rgba(16, 24, 40, 0.1);
}

.premium-os-grid {
  display: grid;
  grid-template-columns: minmax(0, 0.72fr) minmax(360px, 0.58fr);
  gap: 18px;
}

.premium-os-lead,
.premium-os-stack article {
  border: 1px solid var(--line);
  border-radius: 18px;
  background: rgba(255, 255, 255, 0.88);
  box-shadow: 0 18px 42px rgba(16, 24, 40, 0.07);
}

.premium-os-lead {
  display: flex;
  flex-direction: column;
  justify-content: center;
  min-height: 420px;
  padding: 36px;
}

.premium-os-lead > span {
  display: inline-flex;
  width: fit-content;
  min-height: 34px;
  align-items: center;
  border-radius: 999px;
  background: var(--navy);
  padding: 0 12px;
  color: #9ff3e8;
  font-size: 12px;
  font-weight: 950;
  text-transform: uppercase;
}

.premium-os-lead h3 {
  max-width: 760px;
  margin: 22px 0 14px;
  color: var(--navy);
  font-size: 38px;
  line-height: 1.05;
}

.premium-os-lead p {
  max-width: 720px;
}

.os-proof-row {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 12px;
  margin-top: 26px;
}

.os-proof-row div {
  border: 1px solid #cfe7e2;
  border-radius: 16px;
  background: #f0fffb;
  padding: 16px;
}

.os-proof-row strong,
.os-proof-row small {
  display: block;
}

.os-proof-row strong {
  color: var(--navy);
  font-size: 24px;
}

.os-proof-row small {
  margin-top: 4px;
  color: var(--teal-dark);
  font-weight: 900;
}

.premium-os-stack {
  display: grid;
  gap: 12px;
}

.premium-os-stack article {
  display: grid;
  grid-template-columns: 50px 1fr;
  gap: 8px 14px;
  align-content: center;
  min-height: 96px;
  padding: 18px;
}

.premium-os-stack b {
  grid-row: span 2;
  display: grid;
  width: 44px;
  height: 44px;
  place-items: center;
  border-radius: 14px;
  background: #ecfbf8;
  color: var(--teal-dark);
  font-size: 12px;
}

.premium-os-stack span {
  color: var(--navy);
  font-weight: 950;
}

.premium-os-stack p {
  margin: 0;
  color: var(--muted);
  line-height: 1.5;
}

.start-journey {
  display: grid;
  grid-template-columns: minmax(0, 0.45fr) minmax(0, 0.75fr);
  gap: 28px;
  align-items: start;
  background:
    radial-gradient(circle at 90% 12%, rgba(0, 143, 131, 0.16), transparent 28%),
    linear-gradient(135deg, #ffffff, #f8fbff);
  border: 1px solid var(--line);
  border-radius: 18px;
  box-shadow: 0 24px 70px rgba(16, 24, 40, 0.08);
}

.start-journey h2,
.onboarding-benchmark h2 {
  margin-top: 8px;
}

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

.journey-track article,
.benchmark-board article {
  border: 1px solid var(--line);
  border-radius: 16px;
  background: rgba(255, 255, 255, 0.86);
  padding: 22px;
  box-shadow: 0 14px 36px rgba(16, 24, 40, 0.06);
}

.journey-track span {
  display: inline-grid;
  min-width: 42px;
  min-height: 34px;
  place-items: center;
  border-radius: 999px;
  background: #ecfbf8;
  color: var(--teal-dark);
  font-size: 12px;
  font-weight: 950;
}

.journey-track h3 {
  margin: 18px 0 8px;
  color: var(--navy);
  font-size: 21px;
}

.journey-track p,
.benchmark-board span {
  margin: 0;
  color: var(--muted);
  line-height: 1.6;
}

.onboarding-benchmark {
  border-radius: 18px;
  background: var(--navy);
  color: #fff;
}

.onboarding-benchmark .section-kicker {
  color: #9ff3e8;
}

.onboarding-benchmark h2 {
  color: #fff;
}

.onboarding-benchmark .section-heading p {
  color: #d9e3ee;
}

.benchmark-board {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 14px;
}

.benchmark-board article {
  background: rgba(255, 255, 255, 0.08);
  border-color: rgba(255, 255, 255, 0.14);
}

.benchmark-board b,
.benchmark-board span {
  display: block;
}

.benchmark-board b {
  margin-bottom: 10px;
  color: #fff;
  font-size: 18px;
}

.benchmark-board span {
  color: #d9e3ee;
}

.product-activation {
  display: grid;
  grid-template-columns: minmax(0, 0.58fr) minmax(360px, 0.42fr);
  gap: 24px;
  align-items: stretch;
  border-radius: 18px;
  background:
    radial-gradient(circle at 12% 10%, rgba(49, 94, 251, 0.16), transparent 24%),
    linear-gradient(135deg, #101828, #15233b 54%, #0f3b35);
  color: #fff;
  box-shadow: 0 28px 80px rgba(16, 24, 40, 0.18);
}

.activation-proof {
  display: flex;
  flex-direction: column;
  justify-content: center;
}

.activation-proof h2 {
  color: #fff;
}

.activation-proof p {
  color: #d9e3ee;
}

.proof-metrics {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 12px;
  margin-top: 28px;
}

.proof-metrics div,
.activation-stack article {
  border: 1px solid rgba(255, 255, 255, 0.14);
  border-radius: 16px;
  background: rgba(255, 255, 255, 0.08);
}

.proof-metrics div {
  padding: 16px;
}

.proof-metrics strong,
.proof-metrics span,
.activation-stack b,
.activation-stack span,
.activation-stack em {
  display: block;
}

.proof-metrics strong {
  color: #fff;
  font-size: 26px;
}

.proof-metrics span {
  margin-top: 4px;
  color: #b9c8d8;
  font-size: 13px;
  font-weight: 850;
}

.activation-stack {
  display: grid;
  gap: 12px;
}

.activation-stack article {
  display: grid;
  grid-template-columns: 48px 1fr;
  gap: 12px;
  align-items: center;
  padding: 16px;
}

.activation-stack b {
  grid-row: span 2;
  display: grid;
  width: 42px;
  height: 42px;
  place-items: center;
  border-radius: 12px;
  background: rgba(159, 243, 232, 0.14);
  color: #9ff3e8;
  font-size: 12px;
}

.activation-stack span {
  color: #fff;
  font-weight: 950;
}

.activation-stack em {
  color: #b9c8d8;
  font-size: 13px;
  font-style: normal;
  font-weight: 850;
}

@media (max-width: 1180px) {
  .site-header,
  main,
  .site-footer {
    width: min(100% - 32px, var(--page-max));
  }

  .header-topline b {
    white-space: normal;
  }

  .footer-cta-panel,
  .footer-main {
    grid-template-columns: 1fr;
  }

  .footer-cta-actions {
    justify-content: flex-start;
  }

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

  .hero-stage,
  .product-hero,
  .premium-os-grid,
  .activation-shell,
  .start-journey,
  .product-activation,
  .split,
  .showcase-player,
  .login-shell {
    grid-template-columns: 1fr;
  }
  .hero-stage,
  .product-hero {
    padding: 54px;
  }
  .hero h1 { font-size: 58px; }
  .metric-strip,
  .product-grid,
  .os-proof-row,
  .pricing-grid,
  .positioning-grid,
  .benchmark-board,
  .suite-roadmap {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (max-width: 860px) {
  .site-header {
    top: 0;
    width: 100%;
    margin-top: 0;
    border-left: 0;
    border-right: 0;
    border-radius: 0;
  }
  .header-topline { display: none; }
  .header-shell {
    display: flex;
    justify-content: space-between;
    width: 100%;
    padding: 10px 12px;
  }
  .brand-copy small { display: none; }
  .nav-toggle {
    position: static;
    flex: 0 0 42px;
    margin-left: 12px;
    display: block !important;
    padding: 0;
    box-shadow: 0 10px 22px rgba(16, 24, 40, 0.08);
  }
  .site-nav {
    position: fixed;
    inset: 64px 12px auto;
    display: none;
    grid-template-columns: 1fr;
    align-items: stretch;
    max-height: calc(100vh - 84px);
    overflow-y: auto;
    padding: 16px;
    border: 1px solid var(--line);
    border-radius: 16px;
    background: #fff;
    box-shadow: 0 20px 40px rgba(16, 24, 40, 0.12);
  }
  .site-nav.open { display: grid; }
  .site-nav a { text-align: left; }
  .site-nav .nav-cta,
  .site-nav .nav-login {
    min-width: 0;
  }
  main,
  .site-footer {
    width: calc(100% - 24px);
  }
  .hero-stage,
  .product-hero,
  .section,
  .page-hero,
  .login-shell {
    padding: 30px;
  }

  .activation-copy {
    min-height: auto;
    padding: 24px;
  }

  .activation-copy h3 {
    font-size: 28px;
  }

  .activation-visual {
    padding: 14px;
  }

  .activation-topbar,
  .activation-score,
  .activation-steps li {
    grid-template-columns: 1fr;
  }

  .activation-topbar {
    flex-direction: column;
  }

  .activation-score {
    justify-items: start;
    padding: 18px;
  }

  .score-ring {
    width: 136px;
    height: 136px;
  }

  .activation-steps li {
    align-items: start;
  }

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

  .positioning-grid article {
    min-height: auto;
  }

  .hero h1,
  .page-hero h1 {
    font-size: 38px;
    line-height: 1.08;
  }
  .section h2,
  .cta-panel h2 { font-size: 32px; }
  .hero-content > p,
  .page-hero p { font-size: 17px; }
  .page-hero,
  .section,
  .plan-card,
  .premium-os-lead,
  .start-journey,
  .onboarding-benchmark,
  .premium-os-stack article,
  .journey-track article,
  .benchmark-board article {
    max-width: 100%;
    min-width: 0;
  }
  .page-hero p,
  .section p,
  .plan-card p,
  .premium-os-stack p,
  .journey-track p,
  .benchmark-board span {
    overflow-wrap: anywhere;
  }

  .premium-os-lead {
    min-height: auto;
    padding: 24px;
  }

  .premium-os-lead h3 {
    font-size: 29px;
  }

  .premium-os-stack article {
    grid-template-columns: 1fr;
  }

  .premium-os-stack b {
    grid-row: auto;
  }

  .metric-strip,
  .product-grid,
  .feature-grid,
  .os-proof-row,
  .journey-track,
  .benchmark-board,
  .proof-metrics,
  .trust-matrix,
  .resource-grid,
  .pricing-grid,
  .suite-roadmap,
  .suite-grid,
  .audience-band,
  .form-grid {
    grid-template-columns: 1fr;
  }
  .cta-panel,
  .site-footer,
  .form-actions {
    flex-direction: column;
    align-items: flex-start;
  }
  .footer-cta-panel,
  .footer-main {
    padding: 24px;
  }
  .footer-cta-panel h2 {
    font-size: 28px;
  }
  .footer-columns {
    grid-template-columns: 1fr;
  }
  .footer-bottom {
    flex-direction: column;
  }
  .workflow-map div { grid-template-columns: 1fr; }
  .limit-table {
    display: block;
    overflow-x: auto;
  }
}

@media (max-width: 520px) {
  .hero-stage,
  .product-hero {
    min-height: auto;
    padding: 24px;
  }
  .hero h1,
  .page-hero h1 {
    width: calc(100vw - 72px);
    max-width: calc(100vw - 72px);
    font-size: 31px;
    line-height: 1.1;
  }

  .hero-content > p,
  .trust-row,
  .hero-actions,
  .premium-visual,
  .visual-frame,
  .hero-proof-card {
    width: calc(100vw - 72px);
    max-width: calc(100vw - 72px);
  }
  .section,
  .page-hero,
  .form-card,
  .login-shell {
    padding: 22px;
  }
  .button {
    width: 100%;
  }
}

/* Premium visual polish */
body {
  background:
    linear-gradient(180deg, #f7fafc 0%, #eef3f7 42%, #f7fafc 100%);
}

body::before {
  content: "";
  position: fixed;
  inset: 0;
  z-index: -1;
  pointer-events: none;
  background-image:
    linear-gradient(rgba(16, 24, 40, 0.035) 1px, transparent 1px),
    linear-gradient(90deg, rgba(16, 24, 40, 0.035) 1px, transparent 1px);
  background-size: 44px 44px;
  mask-image: linear-gradient(180deg, rgba(0, 0, 0, 0.75), transparent 72%);
}

.site-header {
  min-height: 68px;
}

.brand span:last-child {
  color: #0f172a;
}

.site-nav a {
  transition: background 0.18s ease, color 0.18s ease, border-color 0.18s ease, transform 0.18s ease;
}

.site-nav a:hover {
  transform: translateY(-1px);
}

.hero-stage,
.product-hero {
  border: 1px solid rgba(255, 255, 255, 0.12);
  background:
    linear-gradient(135deg, #101828 0%, #0d1b30 50%, #12352f 100%);
  box-shadow: 0 38px 90px rgba(16, 24, 40, 0.24);
}

.hero-stage::before,
.product-hero::before {
  content: "";
  position: absolute;
  inset: 0;
  pointer-events: none;
  background-image:
    linear-gradient(rgba(255,255,255,0.045) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255,255,255,0.045) 1px, transparent 1px);
  background-size: 42px 42px;
  mask-image: linear-gradient(90deg, rgba(0,0,0,0.58), transparent 74%);
}

.hero-stage::after,
.product-hero::after {
  content: "";
  position: absolute;
  inset: auto 0 0;
  height: 40%;
  pointer-events: none;
  background: linear-gradient(180deg, transparent, rgba(0, 0, 0, 0.22));
}

.human-hero {
  min-height: 760px;
  grid-template-columns: minmax(0, 0.9fr) minmax(280px, 0.38fr);
  align-items: end;
  background:
    linear-gradient(90deg, rgba(9, 18, 32, 0.96) 0%, rgba(9, 18, 32, 0.78) 42%, rgba(9, 18, 32, 0.24) 72%),
    linear-gradient(180deg, rgba(16, 24, 40, 0.08), rgba(16, 24, 40, 0.5)),
    url("assets/accounting-team-hero.jpg") center / cover no-repeat;
}

.human-hero::before {
  background-image:
    linear-gradient(rgba(255,255,255,0.05) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255,255,255,0.05) 1px, transparent 1px);
  background-size: 42px 42px;
  mask-image: linear-gradient(90deg, rgba(0,0,0,0.72), transparent 68%);
}

.human-hero .hero-content {
  max-width: 760px;
}

.hero-insight-card {
  position: relative;
  z-index: 2;
  align-self: end;
  justify-self: end;
  width: min(360px, 100%);
  padding: 22px;
  border: 1px solid rgba(255, 255, 255, 0.22);
  border-radius: 16px;
  background: rgba(16, 24, 40, 0.62);
  color: #fff;
  box-shadow: 0 28px 70px rgba(0, 0, 0, 0.26);
  backdrop-filter: blur(18px);
}

.hero-insight-card span {
  display: block;
  color: #9ff3e8;
  font-size: 12px;
  font-weight: 950;
  text-transform: uppercase;
}

.hero-insight-card b {
  display: block;
  margin: 10px 0 8px;
  font-size: 28px;
}

.hero-insight-card p {
  margin: 0;
  color: #d9e3ee;
}

.hero-mini-metrics {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 10px;
  margin-top: 18px;
}

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

.hero-mini-metrics strong {
  font-size: 26px;
  color: #fff;
}

.hero-mini-metrics small {
  margin-top: 4px;
  color: #b8c4d3;
  font-size: 12px;
}

.hero-content {
  align-self: center;
}

.hero h1 {
  max-width: 820px;
}

.hero h1 span {
  display: block;
}

.premium-visual {
  display: grid;
  gap: 16px;
}

.visual-frame {
  position: relative;
  overflow: hidden;
  min-width: 0;
  border: 1px solid rgba(255, 255, 255, 0.18);
  border-radius: 14px;
  background: #fff;
  box-shadow: 0 38px 100px rgba(0, 0, 0, 0.36);
  transform: perspective(1000px) rotateY(-4deg) rotateX(2deg);
  transform-origin: center;
}

.visual-frame::after {
  content: "";
  position: absolute;
  inset: 0;
  pointer-events: none;
  border: 1px solid rgba(255,255,255,0.32);
  border-radius: 14px;
}

.visual-frame img {
  width: 100%;
  min-width: 0;
}

.hero-proof-card {
  width: min(420px, 92%);
  margin-left: auto;
  padding: 18px;
  border: 1px solid rgba(255, 255, 255, 0.2);
  border-radius: 14px;
  background: rgba(255, 255, 255, 0.1);
  backdrop-filter: blur(12px);
}

.section:not(.cta-panel) {
  position: relative;
  border-top: 1px solid rgba(215, 226, 238, 0.72);
}

.section:not(.cta-panel)::before {
  content: "";
  position: absolute;
  left: 64px;
  top: -1px;
  width: 96px;
  height: 2px;
  background: var(--teal);
}

.section h2,
.page-hero h1,
.cta-panel h2 {
  text-wrap: balance;
}

.section-heading p,
.section p {
  text-wrap: pretty;
}

.metric-strip div {
  background:
    linear-gradient(180deg, rgba(255,255,255,0.96), rgba(248,250,252,0.96));
}

.metric-strip strong,
.product-card h3,
.feature-grid h3,
.trust-matrix b,
.workflow-map b {
  letter-spacing: 0;
}

.workflow-map div {
  background:
    linear-gradient(180deg, #ffffff 0%, #f8fafc 100%);
  border-radius: 14px;
}

.product-card,
.suite-product,
.feature-grid article,
.trust-matrix div,
.resource-grid a,
.plan-card {
  border-radius: 14px;
}

.product-card-featured {
  background:
    linear-gradient(180deg, #ffffff 0%, #f1fffb 100%);
}

.product-card-featured::after {
  content: "";
  display: block;
  width: 56px;
  height: 3px;
  margin-top: 22px;
  border-radius: 99px;
  background: var(--teal);
}

.visual-story {
  display: grid;
  grid-template-columns: minmax(320px, 0.5fr) minmax(0, 0.9fr);
  gap: 42px;
  align-items: center;
}

.visual-story-copy {
  max-width: 520px;
}

.cockpit-frame {
  position: relative;
  padding: 18px;
  border-radius: 18px;
  background:
    linear-gradient(135deg, #101828, #12352f);
  box-shadow: 0 32px 90px rgba(16, 24, 40, 0.2);
}

.cockpit-frame img {
  width: 100%;
  border-radius: 14px;
  box-shadow: 0 24px 70px rgba(0, 0, 0, 0.28);
}

.floating-proof {
  position: absolute;
  display: grid;
  gap: 4px;
  min-width: 168px;
  padding: 14px;
  border: 1px solid rgba(255,255,255,0.22);
  border-radius: 14px;
  background: rgba(255,255,255,0.88);
  box-shadow: 0 18px 48px rgba(16, 24, 40, 0.16);
  backdrop-filter: blur(14px);
}

.floating-proof b {
  color: var(--navy);
}

.floating-proof span {
  color: var(--muted);
  font-size: 13px;
}

.suite-landing-hero {
  display: grid;
  grid-template-columns: minmax(0, 0.72fr) minmax(360px, 0.58fr);
  gap: 42px;
  align-items: center;
  overflow: hidden;
  background:
    radial-gradient(circle at 85% 20%, rgba(0, 143, 131, 0.14), transparent 30%),
    linear-gradient(135deg, #ffffff, #edf7f5);
}

.suite-landing-hero h1,
.suite-landing-hero p {
  max-width: 760px;
}

.suite-landing-hero .hero-actions {
  margin-top: 28px;
}

.suite-hero-frame {
  position: relative;
  padding: 16px;
  border-radius: 18px;
  background:
    linear-gradient(135deg, #101828, #12352f);
  box-shadow: 0 28px 80px rgba(16, 24, 40, 0.18);
}

.suite-hero-frame img {
  width: 100%;
  border-radius: 14px;
  background: #fff;
  box-shadow: 0 24px 70px rgba(0, 0, 0, 0.26);
}

.suite-hero-chip {
  position: absolute;
  z-index: 1;
  padding: 10px 12px;
  border: 1px solid rgba(255, 255, 255, 0.28);
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.9);
  color: var(--navy);
  font-size: 12px;
  font-weight: 950;
  box-shadow: 0 14px 36px rgba(16, 24, 40, 0.16);
}

.chip-one {
  left: 28px;
  top: 30px;
}

.chip-two {
  right: 28px;
  bottom: 30px;
}

.proof-one {
  right: 36px;
  top: 46px;
}

.proof-two {
  left: 36px;
  bottom: 42px;
}

.office-scene {
  display: grid;
  grid-template-columns: minmax(0, 0.92fr) minmax(340px, 0.58fr);
  gap: 42px;
  align-items: stretch;
}

.scene-photo {
  position: relative;
  min-height: 560px;
  overflow: hidden;
  border-radius: 18px;
  background: var(--navy);
  box-shadow: 0 30px 90px rgba(16, 24, 40, 0.18);
}

.scene-photo::after {
  content: "";
  position: absolute;
  inset: 0;
  background:
    linear-gradient(180deg, rgba(16, 24, 40, 0.04), rgba(16, 24, 40, 0.58)),
    linear-gradient(90deg, rgba(16, 24, 40, 0.58), transparent 58%);
  pointer-events: none;
}

.scene-photo img {
  width: 100%;
  height: 100%;
  min-height: 560px;
  object-fit: cover;
  object-position: 62% center;
}

.scene-badge {
  position: absolute;
  left: 26px;
  bottom: 26px;
  z-index: 1;
  width: min(360px, calc(100% - 52px));
  padding: 18px;
  border: 1px solid rgba(255, 255, 255, 0.24);
  border-radius: 14px;
  background: rgba(16, 24, 40, 0.68);
  color: #fff;
  backdrop-filter: blur(16px);
  box-shadow: 0 24px 60px rgba(0, 0, 0, 0.2);
}

.scene-badge span {
  display: block;
  margin-bottom: 8px;
  color: #9ff3e8;
  font-size: 12px;
  font-weight: 950;
  text-transform: uppercase;
}

.scene-badge strong {
  display: block;
  font-size: 22px;
  line-height: 1.2;
}

.scene-content {
  display: flex;
  min-height: 560px;
  flex-direction: column;
  justify-content: center;
}

.day-timeline {
  display: grid;
  gap: 12px;
  margin-top: 28px;
}

.day-timeline article {
  position: relative;
  padding: 18px 18px 18px 64px;
  border: 1px solid var(--line);
  border-radius: 14px;
  background:
    linear-gradient(180deg, #ffffff, #f8fafc);
  box-shadow: 0 14px 34px rgba(16, 24, 40, 0.055);
}

.day-timeline article::before {
  content: "";
  position: absolute;
  left: 31px;
  top: 54px;
  bottom: -18px;
  width: 1px;
  background: #c8d8e7;
}

.day-timeline article:last-child::before {
  display: none;
}

.day-timeline span {
  position: absolute;
  left: 14px;
  top: 18px;
  display: grid;
  width: 38px;
  height: 38px;
  place-items: center;
  border-radius: 10px;
  background: #e9fffb;
  color: var(--teal-dark);
  font-size: 11px;
  font-weight: 950;
}

.day-timeline b {
  display: block;
  margin-bottom: 6px;
  color: var(--navy);
}

.day-timeline p {
  margin: 0;
  font-size: 14px;
  line-height: 1.55;
}

.before-after {
  background:
    radial-gradient(circle at 14% 22%, rgba(0, 143, 131, 0.12), transparent 28%),
    linear-gradient(135deg, #0c1628, #13243d 52%, #103b36);
  color: #fff;
  border-radius: 18px;
  box-shadow: 0 30px 90px rgba(16, 24, 40, 0.18);
}

.before-after .section-heading {
  max-width: 900px;
}

.before-after h2,
.before-after h3 {
  color: #fff;
}

.before-after .section-kicker {
  color: #9ff3e8;
}

.before-after p {
  color: #d9e3ee;
}

.comparison-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 18px;
  margin-top: 30px;
}

.comparison-card {
  position: relative;
  overflow: hidden;
  padding: 26px;
  border: 1px solid rgba(255, 255, 255, 0.18);
  border-radius: 16px;
  background: rgba(255, 255, 255, 0.08);
  backdrop-filter: blur(14px);
}

.comparison-card::before {
  content: "";
  position: absolute;
  right: -44px;
  top: -44px;
  width: 160px;
  height: 160px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.08);
}

.comparison-card span {
  display: inline-flex;
  margin-bottom: 14px;
  padding: 7px 10px;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.12);
  color: #d9e3ee;
  font-size: 12px;
  font-weight: 950;
  text-transform: uppercase;
}

.comparison-card.after span {
  background: rgba(31, 201, 177, 0.16);
  color: #9ff3e8;
}

.comparison-card h3 {
  margin: 0 0 18px;
  font-size: 28px;
  line-height: 1.12;
}

.comparison-card ul {
  display: grid;
  gap: 12px;
  margin: 0;
  padding: 0;
  list-style: none;
}

.comparison-card li {
  position: relative;
  padding-left: 24px;
  color: #e8eef6;
  line-height: 1.6;
}

.comparison-card li::before {
  content: "";
  position: absolute;
  left: 0;
  top: 0.72em;
  width: 9px;
  height: 9px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.48);
}

.comparison-card.after li::before {
  background: #28d3bf;
  box-shadow: 0 0 0 5px rgba(40, 211, 191, 0.12);
}

.hero-proof-card span {
  display: block;
  color: #9ff3e8;
  font-size: 12px;
  font-weight: 950;
  text-transform: uppercase;
}

.hero-proof-card b {
  display: block;
  margin: 8px 0;
  color: #fff;
  font-size: 22px;
}

.hero-proof-card p {
  margin: 0;
  color: #d9e3ee;
  line-height: 1.55;
}

.metric-strip div,
.form-card,
.plan-card,
.product-card,
.suite-product,
.feature-grid article,
.trust-matrix div,
.resource-grid a {
  box-shadow: 0 12px 34px rgba(16, 24, 40, 0.055);
}

.form-card,
.plan-card,
.product-card,
.suite-product,
.feature-grid article,
.trust-matrix div,
.resource-grid a,
.workflow-map div {
  transition: transform 0.18s ease, box-shadow 0.18s ease, border-color 0.18s ease;
}

.product-card:hover,
.suite-product:hover,
.feature-grid article:hover,
.resource-grid a:hover,
.plan-card:hover {
  transform: translateY(-3px);
  box-shadow: 0 20px 48px rgba(16, 24, 40, 0.11);
  border-color: #b9c9da;
}

.product-icon {
  display: grid;
  width: 48px;
  height: 48px;
  margin-bottom: 16px;
  place-items: center;
  border-radius: 8px;
  background: #101828;
  color: #fff;
  font-size: 14px;
  font-weight: 950;
}

.product-icon.muted {
  background: #eef3f8;
  color: #344054;
}

.product-card-featured {
  background:
    linear-gradient(180deg, #ffffff 0%, #f3fffc 100%);
}

.feature-grid article {
  min-height: 220px;
}

.feature-grid .icon {
  box-shadow: inset 0 0 0 1px rgba(0, 143, 131, 0.12);
}

.showcase-poster {
  min-height: 360px;
  display: grid;
  place-items: center;
}

.showcase-poster img {
  height: 100%;
  min-height: 360px;
  object-fit: cover;
}

.poster-button {
  aspect-ratio: 16 / 9;
}

.poster-button img {
  height: 100%;
  object-fit: cover;
}

.product-tour-card {
  align-self: center;
}

.product-metrics {
  margin-top: 14px;
}

.contact-layout {
  display: grid;
  grid-template-columns: minmax(320px, 0.48fr) minmax(0, 1fr);
  gap: 28px;
  align-items: start;
}

.contact-aside {
  position: sticky;
  top: 104px;
  min-height: 100%;
  padding: 28px;
  border-radius: 8px;
  background: var(--navy);
  color: #fff;
}

.contact-aside h2 {
  margin: 0 0 18px;
  font-size: 34px;
  line-height: 1.08;
}

.contact-aside .section-kicker {
  color: #9ff3e8;
}

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

.contact-points div {
  padding: 16px;
  border: 1px solid rgba(255, 255, 255, 0.14);
  border-radius: 8px;
  background: rgba(255, 255, 255, 0.06);
}

.contact-points b {
  display: block;
  margin-bottom: 6px;
}

.contact-points span {
  color: #d9e3ee;
  line-height: 1.55;
}

input:focus,
select:focus,
textarea:focus {
  border-color: var(--teal);
  outline: 3px solid rgba(0, 143, 131, 0.12);
}

.success-message {
  border: 1px solid #a7efe3;
}

.plan-card.highlighted {
  position: relative;
  overflow: hidden;
}

.plan-card.highlighted::before {
  content: "";
  position: absolute;
  inset: 0 0 auto;
  height: 5px;
  background: var(--teal);
}

.price {
  letter-spacing: 0;
}

.limit-table {
  box-shadow: 0 12px 34px rgba(16, 24, 40, 0.055);
}

.trust-matrix div {
  min-height: 150px;
}

.cta-panel {
  position: relative;
  overflow: hidden;
  box-shadow: 0 24px 70px rgba(16, 24, 40, 0.18);
}

.cta-panel::after {
  content: "";
  position: absolute;
  inset: 0;
  pointer-events: none;
  background-image: linear-gradient(rgba(255,255,255,0.04) 1px, transparent 1px);
  background-size: 100% 38px;
}

.cta-panel > * {
  position: relative;
  z-index: 1;
}

@media (max-width: 1180px) {
  .contact-layout {
    grid-template-columns: 1fr;
  }

  .contact-aside {
    position: static;
  }
}

@media (max-width: 860px) {
  .site-header {
    max-width: 100vw;
  }

  main,
  .site-footer {
    max-width: calc(100vw - 24px);
    overflow-x: hidden;
  }

  .hero-stage,
  .product-hero {
    gap: 30px;
    max-width: 100%;
    grid-template-columns: minmax(0, 1fr);
  }

  .human-hero {
    background-position: 60% center;
  }

  .hero-stage > *,
  .product-hero > *,
  .hero-content,
  .premium-visual,
  .visual-frame,
  .showcase-player,
  .showcase-poster {
    width: 100%;
    max-width: 100%;
    min-width: 0;
  }

  .visual-frame {
    transform: none;
  }

  .hero h1,
  .page-hero h1,
  .section h2,
  .cta-panel h2 {
    max-width: 100%;
    word-break: break-word;
    hyphens: auto;
  }

  .hero-proof-card {
    width: 100%;
    margin-left: 0;
  }

  .hero-insight-card {
    justify-self: stretch;
    width: 100%;
  }

  .visual-story {
    grid-template-columns: 1fr;
  }

  .office-scene,
  .suite-landing-hero,
  .comparison-grid {
    grid-template-columns: 1fr;
  }

  .scene-content,
  .scene-photo {
    min-height: auto;
  }

  .scene-photo img {
    min-height: 420px;
  }

  .floating-proof {
    position: static;
    margin-top: 12px;
  }

  .showcase-poster,
  .showcase-poster img {
    min-height: 260px;
  }

  .contact-aside h2 {
    font-size: 28px;
  }

  .error-page {
    padding: 30px;
    min-height: 460px;
  }

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

  .section:not(.cta-panel)::before {
    left: 30px;
  }
}

@media (max-width: 520px) {
  main,
  .site-footer {
    width: calc(100% - 24px);
    max-width: calc(100vw - 24px);
  }

  .hero-stage,
  .product-hero {
    padding: 24px;
    gap: 24px;
  }

  .human-hero {
    min-height: 760px;
    background:
      linear-gradient(180deg, rgba(9, 18, 32, 0.96) 0%, rgba(9, 18, 32, 0.82) 54%, rgba(9, 18, 32, 0.6) 100%),
      url("assets/accounting-team-hero.jpg") 58% center / cover no-repeat;
  }

  .section:not(.cta-panel)::before {
    left: 22px;
  }

  .hero-stage .hero-content,
  .product-hero .hero-content,
  .hero-stage .premium-visual,
  .product-hero .premium-visual,
  .hero-stage .visual-frame,
  .product-hero .visual-frame,
  .hero-stage .hero-proof-card,
  .product-hero .hero-proof-card {
    width: 100%;
    max-width: 100%;
  }

  .hero h1,
  .page-hero h1 {
    width: 100%;
    max-width: 100%;
    font-size: 34px;
    line-height: 1.08;
    overflow-wrap: anywhere;
  }

  .hero-content > p,
  .page-hero p {
    width: 100%;
    max-width: 100%;
  }

  .hero-actions,
  .cta-actions,
  .login-actions {
    width: 100%;
  }

  .hero-actions .button,
  .cta-actions .button,
  .login-actions .button {
    width: 100%;
    justify-content: center;
  }

  .trust-row {
    width: 100%;
    max-width: 100%;
  }

  .hero-insight-card {
    display: none;
  }

  .cockpit-frame {
    padding: 10px;
    border-radius: 14px;
  }

  .suite-hero-frame {
    padding: 10px;
    border-radius: 14px;
  }

  .suite-hero-chip {
    position: static;
    display: inline-flex;
    margin-top: 10px;
    margin-right: 8px;
  }

  .scene-photo {
    border-radius: 14px;
  }

  .scene-photo img {
    min-height: 360px;
    object-position: 58% center;
  }

  .scene-badge {
    left: 14px;
    right: 14px;
    bottom: 14px;
    width: auto;
    padding: 14px;
  }

  .scene-badge strong {
    font-size: 18px;
  }

  .comparison-card {
    padding: 20px;
  }

  .comparison-card h3 {
    font-size: 22px;
  }

  .section h2,
  .start-journey h2,
  .onboarding-benchmark h2 {
    width: 100%;
    max-width: 100%;
    font-size: 29px;
    line-height: 1.08;
    overflow-wrap: anywhere;
    text-wrap: wrap;
  }

  .page-hero p,
  .section p,
  .plan-card p {
    width: 100%;
    max-width: 100%;
    font-size: 16px;
    line-height: 1.65;
    overflow-wrap: anywhere;
  }
}

@media (max-width: 380px) {
  .hero h1,
  .page-hero h1 {
    font-size: 30px;
  }

  .hero-stage,
  .product-hero,
  .section,
  .page-hero,
  .login-shell {
    padding: 20px;
  }
}
