@font-face {
  font-family: "Manrope Variable";
  font-style: normal;
  font-display: swap;
  font-weight: 200 800;
  src: url("fonts/manrope-latin-wght-normal.DHIcAJRg.woff2") format("woff2-variations");
}

@font-face {
  font-family: "Geist Mono Variable";
  font-style: normal;
  font-display: swap;
  font-weight: 100 900;
  src: url("fonts/geist-mono-latin-wght-normal.Cjtb1TV-.woff2") format("woff2-variations");
}

:root {
  --brand-ink: #0c2f47;
  --brand-blue: #1f4c8c;
  --brand-blue-strong: #164178;
  --bg0: #f5f7fb;
  --bg1: #ffffff;
  --text: #102b43;
  --muted: #5e7188;
  --line: rgba(22, 65, 120, 0.18);
  --line-strong: rgba(22, 65, 120, 0.34);
  --panel: #ffffff;
  --panel-strong: #ffffff;
  --chip: #f8fbff;
  --chip-soft: #f1f5fc;
  --surface: #ffffff;
  --surface-soft: #f8fbff;
  --surface-muted: #eef3fb;
  --accent-subtle: rgba(31, 76, 140, 0.08);
  --success: #166534;
  --success-bg: #ecfdf5;
  --danger: #991b1b;
  --danger-bg: #fef2f2;
  --warning: #c2410c;
  --warning-bg: #fff7ed;
  --shadow-card: 0 1px 0 rgba(255,255,255,0.92) inset, 0 12px 26px rgba(12,47,71,0.08), 0 1px 2px rgba(12,47,71,0.06);
  --shadow-glow: 0 0 0 1px rgba(22,65,120,0.18), 0 10px 24px rgba(22,65,120,0.12);
  --shadow-soft: 0 8px 20px rgba(22, 65, 120, 0.1);
}

* { box-sizing: border-box; }

html {
  min-width: 320px;
  color-scheme: light;
}

body {
  min-height: 100vh;
  margin: 0;
  background:
    radial-gradient(1100px 620px at 50% -260px, rgba(31, 76, 140, 0.1), transparent 74%),
    linear-gradient(180deg, #fff 0%, var(--bg0) 100%);
  color: var(--text);
  font-family: "Manrope Variable", Manrope, ui-sans-serif, system-ui, -apple-system, "Segoe UI", Roboto, Helvetica, Arial, sans-serif;
  font-size: 16px;
  line-height: 1.5;
  text-rendering: geometricPrecision;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  overflow-x: hidden;
}

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

a:hover { color: var(--brand-blue-strong); }

.container {
  width: min(1120px, calc(100% - 40px));
  margin: 0 auto;
}

.page-container { padding: 48px 0 72px; }

.site-header {
  position: sticky;
  top: 0;
  z-index: 50;
  border-bottom: 1px solid var(--line);
  background: rgba(255, 255, 255, 0.95);
}

.header-inner {
  display: flex;
  min-height: 74px;
  align-items: center;
  justify-content: space-between;
  gap: 28px;
  padding: 12px 0;
}

.brand {
  display: flex;
  width: 280px;
  max-width: 42vw;
  align-items: center;
  flex: 0 0 auto;
}

.brand img {
  display: block;
  height: auto;
}

.brand .brand-lockup { width: 100%; }
.brand .brand-mark-img { display: none; width: 44px; }

.site-nav {
  display: flex;
  align-items: center;
  justify-content: center;
  flex: 1 1 auto;
  gap: 28px;
  color: var(--muted);
  font-size: 15px;
  font-weight: 500;
}

.site-nav a {
  position: relative;
  display: inline-flex;
  align-items: center;
  gap: 4px;
  padding: 5px 0;
  transition: color 0.16s ease;
}

.site-nav a::after {
  content: "";
  position: absolute;
  left: 0;
  bottom: 0;
  width: 0;
  height: 1px;
  background: var(--brand-blue);
  transition: width 0.16s ease;
}

.site-nav a:hover {
  color: var(--text);
}

.site-nav a:hover::after,
.site-nav a.active::after {
  width: 100%;
}

.site-nav a.active {
  color: var(--text);
}

.header-actions {
  display: flex;
  align-items: center;
  gap: 16px;
  flex: 0 0 auto;
  font-size: 15px;
  font-weight: 600;
}

.nav-login {
  color: var(--text);
  transition: color 0.16s ease;
}

.nav-login:hover {
  color: var(--brand-blue-strong);
}

.nav-trial {
  display: inline-flex;
  min-height: 46px;
  align-items: center;
  justify-content: center;
  padding: 12px 20px;
  border: 1px solid rgba(12, 47, 71, 0.22);
  border-radius: 999px;
  background: var(--brand-ink);
  color: #fff;
  box-shadow: var(--shadow-card);
  transition: transform 0.16s ease, box-shadow 0.16s ease, background-color 0.16s ease;
}

.nav-trial:hover {
  border-color: rgba(22, 65, 120, 0.5);
  background: var(--brand-blue-strong);
  color: #fff;
  transform: translateY(-1px);
}

h1,
h2,
h3 {
  margin: 0;
  color: var(--text);
  font-weight: 700;
  letter-spacing: 0;
  line-height: 1.08;
}

.mobile-nav {
  position: relative;
  display: none;
  flex: 0 0 auto;
}

.mobile-nav summary {
  cursor: pointer;
  list-style: none;
  border: 1px solid var(--line);
  border-radius: 12px;
  background: var(--panel-strong);
  color: var(--text);
  padding: 8px 14px;
  font-size: 0.9rem;
  font-weight: 600;
}

.mobile-nav summary::-webkit-details-marker {
  display: none;
}

.mobile-nav-panel {
  position: absolute;
  right: 0;
  top: calc(100% + 12px);
  width: 256px;
  overflow: hidden;
  border: 1px solid var(--line);
  border-radius: 18px;
  background: var(--panel-strong);
  box-shadow: var(--shadow-card);
  padding: 12px;
}

.mobile-nav-panel a {
  display: flex;
  align-items: center;
  min-height: 38px;
  border-radius: 12px;
  padding: 8px 12px;
  color: var(--muted);
  font-size: 0.9rem;
  font-weight: 600;
}

.mobile-nav-panel a:hover,
.mobile-nav-panel a.active {
  background: var(--chip-soft);
  color: var(--text);
}

.mobile-nav-panel .mobile-trial {
  justify-content: center;
  margin-top: 8px;
  border: 1px solid rgba(12, 47, 71, 0.22);
  border-radius: 999px;
  background: var(--brand-ink);
  color: #fff;
  box-shadow: var(--shadow-card);
}

.mobile-nav-panel .mobile-trial:hover {
  background: var(--brand-blue-strong);
  color: #fff;
}

h1 {
  font-size: clamp(2.35rem, 5vw, 3.75rem);
  font-weight: 650;
}

h2 {
  font-size: clamp(1.55rem, 2.7vw, 2.15rem);
  font-weight: 700;
}

h3 {
  font-size: 1.12rem;
  font-weight: 700;
}

p { margin: 0; }

.section-kicker {
  color: var(--brand-blue-strong);
  font-family: "Geist Mono Variable", "Geist Mono", ui-monospace, SFMono-Regular, Menlo, Monaco, Consolas, "Liberation Mono", monospace;
  font-size: 0.72rem;
  font-weight: 650;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.section-copy {
  color: var(--muted);
  font-size: 1rem;
  line-height: 1.65;
}

.hrms-hero {
  display: grid;
  grid-template-columns: 1.15fr 0.85fr;
  gap: 40px;
  align-items: start;
  padding: 4px 0 32px;
}

.hero-copy {
  padding-top: 28px;
}

.hero-copy h1 {
  max-width: 780px;
  margin-top: 16px;
}

.hero-copy .section-copy {
  max-width: 700px;
  margin-top: 22px;
  font-size: 1.08rem;
}

.hero-proof {
  display: grid;
  gap: 12px;
  margin-top: 30px;
  padding: 18px 0;
  border-top: 1px solid rgba(22, 65, 120, 0.2);
  border-bottom: 1px solid rgba(22, 65, 120, 0.2);
}

.hero-proof span,
.flow-list span {
  display: flex;
  align-items: center;
  gap: 10px;
  color: var(--text);
  font-size: 0.93rem;
  font-weight: 650;
}

.hero-proof span::before,
.flow-list span::before {
  content: "";
  width: 8px;
  height: 8px;
  border-radius: 999px;
  background: var(--brand-blue);
  box-shadow: 0 0 0 4px rgba(31, 76, 140, 0.12);
  flex: 0 0 auto;
}

.form-card,
.card,
.provisioning-card,
.lifecycle-panel {
  border: 1px solid var(--line);
  border-radius: 24px;
  background: var(--panel);
  box-shadow: var(--shadow-card);
}

.form-card {
  padding: 28px;
}

.auth-tabs {
  align-self: start;
}

.tab-radio {
  position: absolute;
  width: 1px;
  height: 1px;
  min-height: 0;
  margin: 0;
  opacity: 0;
  pointer-events: none;
}

.tab-controls {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 6px;
  margin-bottom: 26px;
  padding: 5px;
  border: 1px solid var(--line);
  border-radius: 999px;
  background: var(--chip);
}

.tab-button {
  display: flex;
  min-height: 42px;
  align-items: center;
  justify-content: center;
  margin: 0;
  border-radius: 999px;
  color: var(--muted);
  cursor: pointer;
  font-size: 0.92rem;
  font-weight: 750;
  transition: background-color 0.16s ease, color 0.16s ease, box-shadow 0.16s ease;
}

#tab-signin:checked ~ .tab-controls label[for="tab-signin"],
#tab-signup:checked ~ .tab-controls label[for="tab-signup"] {
  background: var(--panel-strong);
  color: var(--text);
  box-shadow: 0 8px 18px rgba(22, 65, 120, 0.1);
}

.tab-panel {
  display: none;
}

#tab-signin:checked ~ .tab-panels .signin-panel,
#tab-signup:checked ~ .tab-panels .signup-panel {
  display: block;
}

.tab-panels {
  min-width: 0;
}

.form-card-header {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  gap: 18px;
  margin-bottom: 22px;
}

.form-card-header h2 {
  margin-top: 10px;
}

.form-card-header p {
  max-width: 470px;
  color: var(--muted);
  font-size: 0.93rem;
  line-height: 1.6;
}

.signup-heading {
  align-items: flex-start;
  flex-direction: column;
  padding-bottom: 22px;
  border-bottom: 1px solid var(--line);
}

.form-status-dot {
  width: 10px;
  height: 10px;
  margin-top: 6px;
  border-radius: 999px;
  background: var(--brand-blue);
  box-shadow: 0 0 0 8px rgba(31, 76, 140, 0.12);
}

form { margin: 0; }

label {
  display: block;
  margin: 13px 0 6px;
  color: var(--muted);
  font-size: 0.78rem;
  font-weight: 700;
}

input,
select {
  width: 100%;
  min-height: 46px;
  margin: 0 0 10px;
  padding: 12px 15px;
  border: 1px solid var(--line);
  border-radius: 12px;
  outline: none;
  background: var(--bg1);
  color: var(--text);
  font: inherit;
  font-size: 0.94rem;
  line-height: 1.3;
  transition: border-color 0.16s ease, box-shadow 0.16s ease;
}

input::placeholder {
  color: rgba(94, 113, 136, 0.7);
}

input:focus,
select:focus {
  border-color: rgba(31, 76, 140, 0.55);
  box-shadow: 0 0 0 3px rgba(31, 76, 140, 0.12);
}

.password-field {
  position: relative;
}

.password-field input {
  padding-right: 78px;
}

.password-toggle {
  position: absolute;
  right: 8px;
  top: 8px;
  min-height: 30px;
  padding: 6px 10px;
  border-color: transparent;
  background: var(--chip-soft);
  color: var(--brand-blue-strong);
  box-shadow: none;
  font-size: 0.78rem;
}

.password-toggle:hover {
  border-color: var(--line);
  background: var(--chip);
  color: var(--brand-blue-strong);
  transform: none;
}

input[type="checkbox"],
input[type="radio"] {
  width: auto;
  min-height: 0;
  margin: 0;
  accent-color: var(--brand-blue);
}

button,
.button-link {
  display: inline-flex;
  min-height: 46px;
  align-items: center;
  justify-content: center;
  gap: 9px;
  padding: 12px 20px;
  border: 1px solid rgba(12, 47, 71, 0.22);
  border-radius: 999px;
  background: var(--brand-ink);
  color: #fff;
  box-shadow: var(--shadow-soft);
  cursor: pointer;
  font: inherit;
  font-size: 0.92rem;
  font-weight: 700;
  line-height: 1.2;
  transition: background-color 0.16s ease, border-color 0.16s ease, transform 0.16s ease;
}

button:hover,
.button-link:hover {
  border-color: rgba(22, 65, 120, 0.5);
  background: var(--brand-blue-strong);
  color: #fff;
  transform: translateY(-1px);
}

button.secondary,
.secondary-link {
  border-color: var(--line);
  background: var(--panel-strong);
  color: var(--text);
}

button.secondary:hover,
.secondary-link:hover {
  border-color: var(--line-strong);
  background: var(--chip);
  color: var(--text);
}

.full-button {
  width: 100%;
  margin-top: 8px;
}

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

.compact-grid input { margin-bottom: 8px; }

.form-footer {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 18px;
  margin-top: 6px;
}

.check-row {
  display: flex;
  align-items: center;
  gap: 9px;
  margin: 0;
  color: var(--muted);
  font-size: 0.86rem;
  font-weight: 700;
}

.form-link {
  margin-top: 16px;
  color: var(--brand-blue-strong);
  font-size: 0.92rem;
  font-weight: 750;
}

.card {
  margin: 0 0 22px;
  padding: 28px;
}

.card h1,
.card h2 {
  margin-bottom: 16px;
}

.narrow {
  max-width: 640px;
  margin: 0 auto;
}

.notice,
.error,
.dev-link {
  margin: 0 0 16px;
  padding: 12px 14px;
  border-radius: 14px;
  font-size: 0.9rem;
  font-weight: 650;
  line-height: 1.5;
}

.notice {
  border: 1px solid #bbf7d0;
  background: var(--success-bg);
  color: var(--success);
}

.error {
  border: 1px solid #fecaca;
  background: var(--danger-bg);
  color: var(--danger);
}

.dev-link {
  border: 1px solid #fed7aa;
  background: var(--warning-bg);
  color: var(--warning);
  overflow-wrap: anywhere;
}

.org-list {
  display: grid;
  gap: 10px;
  margin: 18px 0;
}

.org-option {
  display: grid;
  grid-template-columns: auto 1fr;
  gap: 12px;
  align-items: center;
  margin: 0;
  padding: 14px;
  border: 1px solid var(--line);
  border-radius: 18px;
  background: var(--chip);
}

.org-option small {
  display: block;
  margin-top: 3px;
  color: var(--muted);
}

table {
  width: 100%;
  border-collapse: separate;
  border-spacing: 0;
  overflow: hidden;
  border: 1px solid var(--line);
  border-radius: 14px;
  background: var(--panel);
  font-size: 0.88rem;
}

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

tr:last-child td { border-bottom: 0; }

th {
  background: rgba(31, 76, 140, 0.06);
  color: var(--text);
  font-size: 0.73rem;
  font-weight: 800;
  letter-spacing: 0.05em;
  text-transform: uppercase;
}

.inline-form {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  margin: 2px 4px 2px 0;
}

.inline-form button {
  min-height: 34px;
  padding: 7px 11px;
  font-size: 0.8rem;
}

.mapping-form {
  display: grid;
  grid-template-columns: minmax(180px, 1.4fr) minmax(110px, 0.8fr) minmax(110px, 0.8fr) auto auto;
  gap: 10px;
  align-items: center;
  margin: 10px 0 20px;
}

.mapping-form input { margin: 0; }

.small-input {
  width: 64px;
  min-height: 34px;
  padding: 7px 8px;
  margin: 0;
}

code {
  padding: 2px 5px;
  border-radius: 6px;
  background: var(--chip-soft);
  color: var(--brand-blue-strong);
  font-family: "Geist Mono Variable", ui-monospace, SFMono-Regular, Menlo, Monaco, Consolas, "Liberation Mono", monospace;
}

.provisioning-shell {
  min-height: 62vh;
  display: grid;
  place-items: start center;
}

.provisioning-card,
.lifecycle-panel {
  width: min(780px, 100%);
  padding: 32px;
}

.loader-ring {
  width: 52px;
  height: 52px;
  margin-bottom: 20px;
  border: 5px solid rgba(31, 76, 140, 0.16);
  border-top-color: var(--brand-blue);
  border-radius: 50%;
  animation: spin 1s linear infinite;
}

.status-label {
  margin: 0 0 10px;
  color: var(--brand-blue-strong);
  font-weight: 800;
}

.status-copy {
  max-width: 640px;
  margin-top: 14px;
  color: var(--muted);
  line-height: 1.65;
}

.tenant-summary {
  display: grid;
  grid-template-columns: minmax(88px, auto) minmax(0, 1fr);
  gap: 9px 16px;
  margin: 20px 0;
  padding: 15px;
  border: 1px solid var(--line);
  border-radius: 18px;
  background: var(--chip);
}

.tenant-summary span {
  color: var(--muted);
  font-weight: 750;
}

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

.progress-steps li {
  position: relative;
  min-height: 40px;
  padding: 10px 13px 10px 42px;
  border: 1px solid var(--line);
  border-radius: 16px;
  background: var(--panel);
  color: var(--muted);
}

.progress-steps li::before {
  content: "";
  position: absolute;
  top: 14px;
  left: 15px;
  width: 11px;
  height: 11px;
  border: 2px solid var(--line-strong);
  border-radius: 50%;
  background: #fff;
}

.progress-steps li.completed {
  border-color: #bbf7d0;
  background: #f0fdf4;
  color: var(--success);
}

.progress-steps li.completed::before {
  background: #16a34a;
  border-color: #16a34a;
}

.progress-steps li.active {
  border-color: rgba(31, 76, 140, 0.28);
  background: #eef5ff;
  color: var(--brand-blue-strong);
  font-weight: 800;
}

.progress-steps li.active::before {
  background: var(--brand-blue);
  border-color: var(--brand-blue);
}

.progress-steps li.failed {
  border-color: #fecaca;
  background: var(--danger-bg);
  color: var(--danger);
  font-weight: 800;
}

.progress-steps li.failed::before {
  background: #dc2626;
  border-color: #dc2626;
}

.status-actions {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 10px;
  margin-top: 20px;
}

.lifecycle-panel { margin: 0 auto; }

.lifecycle-mark {
  display: grid;
  place-items: center;
  width: 48px;
  height: 48px;
  margin-bottom: 18px;
  border-radius: 16px;
  background: rgba(31, 76, 140, 0.12);
  color: var(--brand-blue-strong);
  font-weight: 900;
}

.lifecycle-panel.failed .lifecycle-mark {
  background: #fee2e2;
  color: #dc2626;
}

.lifecycle-panel.suspended .lifecycle-mark {
  background: var(--warning-bg);
  color: var(--warning);
}

.lifecycle-summary { max-width: 540px; }
.support-copy { margin-top: 18px; color: var(--muted); }

@keyframes spin { to { transform: rotate(360deg); } }

@media (max-width: 980px) {
  .hrms-hero {
    grid-template-columns: 1fr;
    gap: 24px;
  }

  .hero-copy {
    padding-top: 8px;
  }

  .signup-heading {
    align-items: flex-start;
    flex-direction: column;
  }
}

@media (max-width: 720px) {
  .container {
    width: min(100% - 32px, 1120px);
  }

  .page-container {
    padding: 32px 0 48px;
  }

  .header-inner {
    min-height: 70px;
    gap: 16px;
  }

  .brand {
    width: auto;
    max-width: none;
  }

  .brand .brand-lockup { display: none; }
  .brand .brand-mark-img { display: block; }

  .site-nav {
    gap: 14px;
    font-size: 14px;
  }

  .hero-proof,
  .two-column,
  .mapping-form {
    grid-template-columns: 1fr;
    gap: 0;
  }

  .form-card,
  .card,
  .provisioning-card,
  .lifecycle-panel {
    padding: 22px;
    border-radius: 20px;
  }

  .form-footer,
  .status-actions {
    align-items: stretch;
    flex-direction: column;
  }

  .button-link,
  .status-actions button,
  .form-footer button {
    width: 100%;
  }

  table {
    display: block;
    overflow-x: auto;
    white-space: nowrap;
  }
}

.pricing-page {
  background:
    radial-gradient(1100px 620px at 50% -260px, rgba(31, 76, 140, 0.1), transparent 74%),
    linear-gradient(180deg, #fff 0%, var(--bg0) 100%);
  color: #081126;
}

.pricing-page .page-container {
  padding-top: 0;
  padding-bottom: 68px;
}

.pricing-shell {
  --price-blue: var(--brand-blue);
  --price-blue-dark: var(--brand-blue-strong);
  --price-green: var(--brand-blue);
  --price-purple: var(--brand-blue);
  --price-purple-dark: var(--brand-blue-strong);
  --price-border: var(--line);
  --price-muted: var(--muted);
  --price-text: var(--text);
  --price-shadow: var(--shadow-glow);
  padding-top: 66px;
}

.pricing-sprite {
  position: absolute;
  width: 0;
  height: 0;
  overflow: hidden;
}

.pricing-shell svg {
  width: 1em;
  height: 1em;
  fill: none;
  stroke: currentColor;
  stroke-width: 2;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.pricing-hero {
  display: grid;
  grid-template-columns: 1.12fr 0.88fr;
  gap: 44px;
  align-items: start;
  padding: 6px 0 42px;
  text-align: left;
}

.pricing-hero-copy {
  min-width: 0;
}

.pricing-hero h1 {
  max-width: 760px;
  margin-top: 16px;
  color: var(--price-text);
  font-size: 3.75rem;
  font-weight: 650;
  line-height: 1.03;
}

.pricing-hero-copy > p {
  max-width: 660px;
  margin: 22px 0 0;
  color: var(--muted);
  font-size: 1.08rem;
  line-height: 1.65;
}

.pricing-hero-panel {
  position: relative;
  overflow: hidden;
  border: 1px solid var(--line);
  border-radius: 28px;
  background: var(--panel);
  box-shadow: var(--shadow-card);
  padding: 30px;
}

.pricing-hero-panel::before {
  content: "";
  position: absolute;
  inset: 0 0 auto;
  height: 110px;
  background: radial-gradient(70% 100% at 50% 0%, rgba(31, 76, 140, 0.14), transparent 72%);
  pointer-events: none;
}

.pricing-hero-panel > * {
  position: relative;
}

.hero-plan-list {
  display: grid;
  gap: 12px;
  margin-top: 18px;
}

.hero-plan-row {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 18px;
  padding: 15px;
  border: 1px solid var(--line);
  border-radius: 18px;
  background: var(--chip);
}

.hero-plan-row.highlighted {
  background: var(--accent-subtle);
  border-color: rgba(31, 76, 140, 0.24);
}

.hero-plan-row > span {
  color: var(--price-text);
  font-size: 0.95rem;
  font-weight: 760;
}

.hero-plan-row em {
  display: block;
  margin-top: 3px;
  color: var(--brand-blue-strong);
  font-size: 0.72rem;
  font-style: normal;
  font-weight: 820;
}

.hero-plan-row strong {
  display: grid;
  justify-items: end;
  color: var(--price-text);
  font-size: 1.7rem;
  line-height: 1;
}

.hero-plan-row strong span {
  font-size: inherit;
  font-weight: inherit;
}

.hero-plan-row small {
  margin-top: 4px;
  color: var(--muted);
  font-size: 0.7rem;
  font-weight: 800;
}

.pricing-hero-panel p {
  margin-top: 18px;
  color: var(--muted);
  font-size: 0.92rem;
  line-height: 1.65;
}

.hero-actions,
.side-actions,
.final-actions {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: center;
  gap: 16px;
}

.hero-actions {
  justify-content: flex-start;
  margin-top: 28px;
}

.pricing-page .pricing-primary,
.pricing-page .pricing-secondary {
  min-width: 164px;
  min-height: 46px;
  border-radius: 999px;
  font-size: 0.92rem;
}

.pricing-page .pricing-primary {
  border-color: rgba(12, 47, 71, 0.22);
  background: var(--brand-ink);
  color: #fff;
  box-shadow: var(--shadow-card);
}

.pricing-page .pricing-primary:hover {
  border-color: rgba(22, 65, 120, 0.5);
  background: var(--brand-blue-strong);
  color: #fff;
}

.pricing-page .pricing-secondary {
  border-color: var(--line);
  background: var(--panel-strong);
  color: var(--text);
  box-shadow: var(--shadow-card);
}

.pricing-page .pricing-secondary:hover {
  border-color: var(--line-strong);
  background: var(--chip);
  color: var(--text);
}

.trust-line {
  display: inline-flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: flex-start;
  gap: 10px 16px;
  margin-top: 28px;
  padding: 18px 0;
  border-top: 1px solid rgba(22, 65, 120, 0.2);
  border-bottom: 1px solid rgba(22, 65, 120, 0.2);
  color: var(--text);
  font-size: 0.93rem;
  font-weight: 650;
}

.trust-line span {
  display: inline-flex;
  align-items: center;
  gap: 8px;
}

.trust-line svg {
  display: inline-grid;
  width: 17px;
  height: 17px;
  padding: 0;
  border-radius: 0;
  background: transparent;
  color: var(--brand-blue);
  stroke-width: 2.8;
}

.billing-section {
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto minmax(0, 1fr);
  align-items: center;
  gap: 34px;
  margin: 0 auto 22px;
}

.billing-toggle {
  position: relative;
  grid-column: 2;
  display: grid;
  grid-template-columns: repeat(2, minmax(150px, 1fr));
  width: min(430px, 100%);
  min-height: 56px;
  padding: 6px;
  border: 1px solid var(--line);
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.92);
  box-shadow: var(--shadow-card);
}

.billing-slider {
  position: absolute;
  top: 8px;
  left: 8px;
  z-index: 0;
  width: calc(50% - 8px);
  height: calc(100% - 16px);
  border-radius: 999px;
  background: var(--brand-ink);
  box-shadow: var(--shadow-soft);
  transition: transform 0.24s ease;
}

.pricing-shell[data-billing="yearly"] .billing-slider {
  transform: translateX(100%);
}

.billing-choice {
  position: relative;
  z-index: 1;
  display: grid;
  min-height: 44px;
  place-items: center;
  gap: 1px;
  padding: 8px 16px;
  border: 0;
  border-radius: 999px;
  background: transparent;
  color: var(--text);
  box-shadow: none;
  font: inherit;
  line-height: 1.1;
  transition: color 0.18s ease;
}

.billing-choice:hover {
  border: 0;
  background: transparent;
  color: var(--text);
  transform: none;
}

.billing-choice.active {
  color: #fff;
}

.billing-choice strong {
  font-size: 0.91rem;
  font-weight: 850;
}

.billing-choice small {
  font-size: 0.72rem;
  font-weight: 750;
  opacity: 0.82;
}

.billing-save {
  position: absolute;
  top: -19px;
  right: 34px;
  z-index: 3;
  padding: 4px 9px;
  border-radius: 999px;
  background: var(--accent-subtle);
  color: var(--brand-blue-strong);
  font-size: 0.78rem;
  font-weight: 850;
  opacity: 0;
  transform: translateY(4px);
  transition: opacity 0.2s ease, transform 0.2s ease;
}

.pricing-shell[data-billing="yearly"] .billing-save {
  opacity: 1;
  transform: translateY(0);
}

.annual-callout {
  justify-self: start;
  display: inline-flex;
  align-items: center;
  gap: 9px;
  padding: 8px 13px;
  border: 1px solid rgba(31, 76, 140, 0.18);
  border-radius: 999px;
  background: var(--accent-subtle);
  color: var(--brand-blue-strong);
  font-size: 0.85rem;
  font-weight: 850;
}

.annual-callout svg {
  width: 16px;
  height: 16px;
}

.pricing-cards {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 22px;
  margin-top: 24px;
}

.price-card,
.pricing-panel {
  border: 1px solid var(--line);
  border-radius: 24px;
  background: var(--panel);
  box-shadow: var(--shadow-card);
}

.price-card {
  display: flex;
  min-height: 100%;
  flex-direction: column;
  padding: 28px 22px 22px;
  transition: transform 0.2s ease, box-shadow 0.2s ease, border-color 0.2s ease;
}

.price-card:hover {
  border-color: var(--line-strong);
  box-shadow: var(--price-shadow);
  transform: translateY(-2px);
}

.plan-icon,
.module-icon {
  display: grid;
  place-items: center;
  flex: 0 0 auto;
}

.plan-icon {
  width: 43px;
  height: 43px;
  margin-bottom: 18px;
  border: 1px solid rgba(31, 76, 140, 0.16);
  border-radius: 16px;
  background: var(--accent-subtle);
  color: var(--brand-blue-strong);
}

.plan-icon svg {
  width: 23px;
  height: 23px;
}

.plan-modules .plan-icon {
  background: var(--accent-subtle);
  color: var(--brand-blue-strong);
}

.plan-erp .plan-icon {
  background: var(--accent-subtle);
  color: var(--brand-blue-strong);
}

.plan-topline {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
  margin-bottom: 18px;
}

.plan-topline .plan-icon {
  margin-bottom: 0;
}

.module-badge {
  display: inline-flex;
  align-items: center;
  min-height: 24px;
  padding: 5px 9px;
  border: 1px solid rgba(31, 76, 140, 0.18);
  border-radius: 999px;
  background: var(--accent-subtle);
  color: var(--brand-blue-strong);
  font-size: 0.78rem;
  font-weight: 850;
}

.price-card h2 {
  color: var(--price-text);
  font-size: 1.28rem;
  font-weight: 700;
  letter-spacing: 0;
}

.plan-copy {
  min-height: 64px;
  margin-top: 12px;
  padding-bottom: 18px;
  border-bottom: 1px solid var(--line);
  color: var(--muted);
  font-size: 0.91rem;
  line-height: 1.55;
}

.plan-price {
  display: flex;
  align-items: end;
  gap: 9px;
  margin-top: 20px;
  color: var(--price-text);
}

.price-amount {
  font-size: 2.35rem;
  font-weight: 900;
  line-height: 0.95;
  letter-spacing: 0;
  transition: opacity 0.16s ease, transform 0.16s ease;
}

.price-period {
  padding-bottom: 5px;
  color: var(--muted);
  font-size: 0.91rem;
  font-weight: 750;
}

.billing-pill {
  align-self: flex-start;
  margin-top: 9px;
  padding: 4px 8px;
  border: 1px solid var(--line);
  border-radius: 999px;
  background: var(--chip);
  color: var(--brand-blue-strong);
  font-size: 0.72rem;
  font-weight: 850;
}

.feature-list {
  display: grid;
  gap: 12px;
  margin: 22px 0 0;
  padding: 0;
  list-style: none;
  color: var(--text);
  font-size: 0.86rem;
  font-weight: 650;
  line-height: 1.35;
}

.feature-list li {
  display: flex;
  align-items: flex-start;
  gap: 11px;
}

.feature-list svg {
  width: 15px;
  height: 15px;
  margin-top: 2px;
  padding: 3px;
  border-radius: 999px;
  background: var(--brand-blue);
  color: #fff;
  stroke-width: 3;
  flex: 0 0 auto;
}

.plan-modules .feature-list svg {
  background: var(--brand-blue);
}

.plan-erp .feature-list svg {
  background: var(--brand-blue);
}

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

.mini-module-grid span {
  min-width: 0;
  padding: 8px 9px;
  border: 1px solid var(--line);
  border-radius: 14px;
  background: var(--chip);
  color: var(--brand-blue-strong);
  font-size: 0.78rem;
  font-weight: 850;
  text-align: center;
}

.plan-cta {
  display: inline-flex;
  min-height: 44px;
  align-items: center;
  justify-content: center;
  width: 100%;
  margin-top: auto;
  padding: 12px 16px;
  border: 1px solid rgba(12, 47, 71, 0.22);
  border-radius: 999px;
  background: var(--brand-ink);
  color: #fff;
  font-size: 0.9rem;
  font-weight: 700;
  box-shadow: var(--shadow-card);
  transition: transform 0.16s ease, filter 0.16s ease, box-shadow 0.16s ease;
}

.plan-cta:hover {
  color: #fff;
  background: var(--brand-blue-strong);
  filter: none;
  transform: translateY(-1px);
}

.plan-hrms .plan-cta {
  margin-top: 24px;
}

.plan-modules .plan-cta {
  margin-top: 22px;
}

.plan-erp .plan-cta {
  margin-top: 24px;
}

.module-showcase {
  margin-top: 20px;
  padding: 24px 24px 26px;
}

.section-heading {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  gap: 24px;
  margin-bottom: 22px;
}

.section-heading h2,
.compare-section h2,
.faq-section h2,
.side-cta h2,
.final-cta h2 {
  color: var(--price-text);
  font-size: 1.5rem;
  font-weight: 700;
  line-height: 1.18;
}

.section-heading h2 span {
  font-size: 1.08rem;
  font-weight: 750;
}

.section-heading p,
.side-cta p,
.final-cta p {
  margin-top: 8px;
  color: var(--price-muted);
  font-size: 0.98rem;
  line-height: 1.55;
}

.module-note {
  display: inline-flex;
  align-items: center;
  min-height: 32px;
  padding: 7px 10px;
  border: 1px solid rgba(31, 76, 140, 0.18);
  border-radius: 999px;
  background: var(--accent-subtle);
  color: var(--brand-blue-strong);
  font-size: 0.82rem;
  font-weight: 850;
  white-space: nowrap;
}

.module-grid {
  display: grid;
  grid-template-columns: repeat(6, minmax(0, 1fr));
  gap: 18px 20px;
}

.module-card {
  min-width: 0;
}

.module-card h3 {
  margin-top: 10px;
  color: var(--price-text);
  font-size: 1rem;
  font-weight: 700;
}

.module-card p {
  margin-top: 8px;
  color: var(--muted);
  font-size: 0.81rem;
  line-height: 1.38;
}

.module-icon {
  width: 34px;
  height: 34px;
  border-radius: 8px;
}

.module-icon svg {
  width: 19px;
  height: 19px;
}

.module-icon.purple,
.module-icon.orange,
.module-icon.green,
.module-icon.violet,
.module-icon.blue,
.module-icon.teal,
.module-icon.indigo,
.module-icon.dark,
.module-icon.navy,
.module-icon.muted {
  border: 1px solid rgba(31, 76, 140, 0.16);
  background: var(--accent-subtle);
  color: var(--brand-blue-strong);
}

.text-link {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  margin: 26px auto 0;
  color: var(--brand-blue-strong);
  font-size: 0.96rem;
  font-weight: 900;
}

.module-showcase .text-link {
  display: flex;
  width: max-content;
}

.compare-section {
  margin-top: 20px;
  padding: 24px 24px 0;
  overflow: hidden;
}

.compare-table-wrap {
  margin-top: 20px;
  overflow-x: auto;
}

.compare-table {
  min-width: 780px;
  border: 0;
  border-radius: 0;
  box-shadow: none;
  white-space: normal;
}

.compare-table th,
.compare-table td {
  padding: 14px 16px;
  border-right: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
  color: var(--text);
  text-align: center;
  vertical-align: middle;
}

.compare-table th:first-child,
.compare-table td:first-child {
  text-align: left;
  width: 30%;
}

.compare-table th:last-child,
.compare-table td:last-child {
  border-right: 0;
}

.compare-table th {
  background: var(--panel);
  color: var(--text);
  font-size: 0.95rem;
  font-weight: 850;
  letter-spacing: 0;
  text-transform: none;
}

.compare-table td {
  font-size: 0.9rem;
  font-weight: 700;
}

.compare-table .price-row td {
  background: var(--chip);
  text-align: left;
  line-height: 1.7;
}

.compare-table .price-row td:not(:first-child) {
  font-weight: 750;
}

.compare-table .price-row strong {
  color: var(--text);
  font-size: 1rem;
  font-weight: 900;
}

.table-check,
.table-minus {
  display: inline-grid;
  width: 18px;
  height: 18px;
  place-items: center;
  border-radius: 999px;
}

.table-check {
  background: var(--brand-blue);
  color: #fff;
}

.table-check.purple {
  background: var(--brand-blue);
}

.table-check.blue {
  background: var(--brand-blue);
}

.table-minus {
  color: var(--muted);
}

.table-check svg,
.table-minus svg {
  width: 13px;
  height: 13px;
  stroke-width: 3;
}

.table-footnote {
  padding: 12px 0 16px;
  color: var(--price-muted);
  font-size: 0.82rem;
  font-weight: 650;
  text-align: center;
}

.faq-cta-grid {
  display: grid;
  grid-template-columns: minmax(0, 1fr) 0.94fr;
  gap: 28px;
  align-items: stretch;
  margin-top: 26px;
}

.faq-section h2 {
  margin-bottom: 16px;
}

.faq-list {
  display: grid;
  gap: 12px;
}

.faq-item {
  border: 1px solid var(--line);
  border-radius: 18px;
  background: var(--panel);
  box-shadow: var(--shadow-card);
}

.faq-item summary {
  display: flex;
  min-height: 48px;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  padding: 14px 18px;
  color: var(--text);
  cursor: pointer;
  font-size: 0.92rem;
  font-weight: 850;
  list-style: none;
}

.faq-item summary::-webkit-details-marker {
  display: none;
}

.faq-item summary::after {
  content: "";
  width: 9px;
  height: 9px;
  border-right: 2px solid var(--text);
  border-bottom: 2px solid var(--text);
  transform: rotate(45deg) translateY(-2px);
  transition: transform 0.16s ease;
  flex: 0 0 auto;
}

.faq-item[open] summary::after {
  transform: rotate(225deg) translateY(-2px);
}

.faq-item p {
  padding: 0 18px 16px;
  color: var(--price-muted);
  font-size: 0.9rem;
  line-height: 1.55;
}

.side-cta {
  display: grid;
  grid-template-columns: 150px minmax(0, 1fr);
  gap: 28px;
  align-items: center;
  padding: 34px 28px;
  background:
    radial-gradient(70% 100% at 50% 0%, rgba(31, 76, 140, 0.14), transparent 72%),
    var(--panel);
}

.dashboard-illustration {
  width: 132px;
  aspect-ratio: 1;
  overflow: hidden;
  border: 1px solid var(--line);
  border-radius: 16px;
  background: var(--panel);
  box-shadow: var(--shadow-card);
}

.dash-window {
  display: flex;
  gap: 5px;
  height: 24px;
  align-items: center;
  padding: 0 10px;
  background: var(--brand-ink);
}

.dash-window span {
  width: 5px;
  height: 5px;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.75);
}

.dash-body {
  position: relative;
  height: calc(100% - 24px);
  padding: 18px 15px;
}

.dash-lines {
  display: grid;
  gap: 9px;
  width: 54px;
}

.dash-lines span {
  display: block;
  height: 7px;
  border-radius: 999px;
  background: var(--surface-muted);
}

.dash-lines span:first-child {
  width: 42px;
  background: rgba(31, 76, 140, 0.24);
}

.dash-lines span:nth-child(2) {
  width: 66px;
}

.dash-donut {
  position: absolute;
  top: 31px;
  right: 16px;
  width: 42px;
  height: 42px;
  border: 10px solid var(--surface-muted);
  border-top-color: var(--brand-blue);
  border-right-color: rgba(31, 76, 140, 0.35);
  border-radius: 999px;
}

.dash-bars {
  position: absolute;
  right: 18px;
  bottom: 17px;
  left: 18px;
  display: flex;
  align-items: end;
  gap: 9px;
  height: 34px;
}

.dash-bars span {
  width: 11px;
  border-radius: 4px 4px 0 0;
  background: var(--brand-blue);
}

.dash-bars span:first-child { height: 18px; }
.dash-bars span:nth-child(2) { height: 30px; }
.dash-bars span:nth-child(3) { height: 24px; }

.side-actions {
  justify-content: flex-start;
  margin-top: 24px;
}

.side-actions .button-link {
  min-width: 132px;
}

.final-cta {
  position: relative;
  display: grid;
  grid-template-columns: auto minmax(0, 1fr) auto;
  gap: 34px;
  align-items: center;
  margin-top: 28px;
  padding: 34px 50px;
  overflow: hidden;
  border: 1px solid var(--line);
  border-radius: 24px;
  background:
    radial-gradient(70% 100% at 50% 0%, rgba(31, 76, 140, 0.14), transparent 72%),
    var(--panel);
  box-shadow: var(--shadow-card);
}

.rocket-mark {
  display: grid;
  width: 96px;
  height: 96px;
  place-items: center;
  border: 1px solid var(--line);
  border-radius: 999px;
  background: var(--chip);
  color: var(--brand-blue-strong);
  box-shadow: var(--shadow-card);
}

.rocket-mark svg {
  width: 45px;
  height: 45px;
}

.final-actions {
  justify-content: flex-end;
}

@media (max-width: 1040px) {
  .site-nav {
    gap: 18px;
  }

  .pricing-cards {
    gap: 16px;
  }

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

  .side-cta {
    grid-template-columns: 120px minmax(0, 1fr);
    gap: 22px;
  }
}

@media (max-width: 900px) {
  .site-nav {
    display: none;
  }

  .header-inner {
    gap: 18px;
  }

  .header-actions {
    display: none;
  }

  .mobile-nav {
    display: block;
    margin-left: auto;
  }

  .pricing-hero {
    grid-template-columns: 1fr;
    gap: 26px;
    padding: 0 0 34px;
  }

  .pricing-hero h1 {
    max-width: 760px;
    font-size: 3rem;
  }

  .pricing-hero-panel {
    padding: 26px;
    border-radius: 24px;
  }

  .billing-section {
    grid-template-columns: 1fr;
    justify-items: center;
    gap: 14px;
  }

  .billing-toggle,
  .annual-callout {
    grid-column: auto;
  }

  .annual-callout {
    justify-self: center;
  }

  .pricing-cards {
    grid-template-columns: 1fr;
  }

  .plan-copy {
    min-height: 0;
  }

  .price-card {
    padding: 26px;
  }

  .faq-cta-grid {
    grid-template-columns: 1fr;
  }

  .final-cta {
    grid-template-columns: 1fr;
    justify-items: start;
  }

  .final-actions {
    justify-content: flex-start;
  }
}

@media (max-width: 720px) {
  .pricing-page .page-container {
    padding-bottom: 44px;
  }

  .pricing-shell {
    padding-top: 26px;
  }

  .header-actions {
    gap: 10px;
    font-size: 12px;
  }

  .nav-trial {
    min-height: 36px;
    padding: 9px 12px;
  }

  .pricing-hero h1 {
    font-size: 2.35rem;
  }

  .pricing-hero p {
    font-size: 1rem;
  }

  .pricing-page .pricing-primary,
  .pricing-page .pricing-secondary {
    width: 100%;
    min-width: 0;
  }

  .hero-actions,
  .side-actions,
  .final-actions {
    width: 100%;
  }

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

  .billing-choice {
    padding-inline: 10px;
  }

  .pricing-cards {
    margin-top: 18px;
  }

  .section-heading {
    flex-direction: column;
    gap: 12px;
  }

  .module-note {
    white-space: normal;
  }

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

  .module-showcase,
  .compare-section {
    padding: 22px 18px;
  }

  .compare-section {
    padding-bottom: 0;
  }

  .compare-table {
    display: table;
    min-width: 760px;
  }

  .faq-item summary {
    align-items: flex-start;
  }

  .side-cta {
    grid-template-columns: 1fr;
    padding: 26px 22px;
  }

  .dashboard-illustration {
    width: 118px;
  }

  .final-cta {
    gap: 20px;
    padding: 28px 22px;
  }

  .rocket-mark {
    width: 78px;
    height: 78px;
  }
}

@media (max-width: 480px) {
  .brand {
    width: auto;
    max-width: none;
  }

  .brand .brand-lockup {
    display: none;
  }

  .brand .brand-mark-img {
    display: block;
  }

  .trust-line {
    align-items: flex-start;
    flex-direction: column;
  }

  .pricing-hero h1 {
    font-size: 2.1rem;
  }

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

  .module-card p {
    font-size: 0.78rem;
  }
}

@media (prefers-reduced-motion: reduce) {
  .pricing-shell *,
  .pricing-shell *::before,
  .pricing-shell *::after {
    transition-duration: 0.01ms !important;
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
  }
}
