:root {
  --bg0: #f8fbff;
  --bg1: #eef5ff;
  --card: rgba(255, 255, 255, 0.82);
  --card2: rgba(255, 255, 255, 0.92);
  --border: rgba(102, 146, 195, 0.24);
  --text: #112136;
  --muted: #3f5874;
  --muted2: #5f7591;
  --brand: #EF3340;
  --brand2: #0085CA;
  --shadow: 0 14px 36px rgba(30, 55, 90, 0.12);
  --radius: 18px;
  --radius2: 24px;
}

* {
  box-sizing: border-box;
}

html,
body {
  height: 100%;
}

body {
  margin: 0;
  font-family:
    ui-sans-serif,
    system-ui,
    -apple-system,
    Segoe UI,
    Roboto,
    Helvetica,
    Arial,
    "Apple Color Emoji",
    "Segoe UI Emoji";
  color: var(--text);
  background:
    radial-gradient(900px 500px at 18% 8%, rgba(0, 133, 202, 0.28), transparent 55%),
    radial-gradient(700px 400px at 88% 22%, rgba(239, 51, 64, 0.16), transparent 50%),
    linear-gradient(180deg, var(--bg0), var(--bg1));
  background-color: var(--bg1);
  background-repeat: no-repeat;
  background-attachment: fixed;
}

.skip-link {
  position: absolute;
  left: -999px;
  top: 12px;
  background: #000;
  color: #fff;
  padding: 10px 14px;
  border-radius: 12px;
  z-index: 50;
}
.skip-link:focus {
  left: 12px;
}

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

.site-header {
  position: sticky;
  top: 0;
  z-index: 20;
  background: #ffffff;
  border-bottom: 1px solid rgba(102, 146, 195, 0.18);
  height: 72px;
  overflow: hidden;
}

.header-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 0;
  gap: 18px;
  height: 72px;
}

.brand-logo {
  display: block;
  height: 52px;
  width: 94px;
  max-width: 160px;
  max-height: 54px;
  object-fit: cover;
  object-position: left center;
}

.nav {
  display: flex;
  align-items: center;
  gap: 18px;
}
.lang-switch {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  padding: 4px;
  border-radius: 999px;
  background: rgba(0, 133, 202, 0.08);
  border: 1px solid rgba(0, 133, 202, 0.14);
}
.lang-switch a {
  min-width: 38px;
  text-align: center;
  padding: 6px 10px;
  border-radius: 999px;
}
.lang-switch a.is-active,
.lang-switch a[aria-current="page"] {
  background: #fff;
  border-color: rgba(0, 133, 202, 0.24);
  color: var(--text);
  box-shadow: 0 6px 18px rgba(30, 55, 90, 0.08);
}
.nav a {
  text-decoration: none;
  color: var(--muted);
  font-weight: 600;
  font-size: 12px;
  padding: 5px 7px;
  border-radius: 12px;
  transition: background 160ms ease, color 160ms ease, border-color 160ms ease;
  border: 1px solid transparent;
}
.nav a:hover {
  background: rgba(0, 133, 202, 0.12);
  border-color: rgba(0, 133, 202, 0.28);
  color: var(--text);
}
.nav-cta {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  color: #fff !important;
  background: linear-gradient(135deg, var(--brand), #f46570);
  border-color: rgba(239, 51, 64, 0.2) !important;
}

.lni {
  line-height: 1;
}

main {
  padding-bottom: 28px;
}

.hero {
  padding: 44px 0 18px;
}
.hero-inner {
  display: grid;
  grid-template-columns: 1.2fr 0.8fr;
  gap: 22px;
  align-items: start;
}
.hero-inner-single {
  grid-template-columns: minmax(0, 780px);
}

.eyebrow {
  display: inline-block;
  color: #c4101e;
  font-weight: 800;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  font-size: 12px;
  margin-bottom: 10px;
}

h1 {
  margin: 0 0 14px;
  font-size: clamp(40px, 5vw, 58px);
  line-height: 1.02;
  letter-spacing: -0.03em;
}
.sub-title {
  display: block;
  margin-top: 8px;
  font-size: clamp(16px, 2vw, 20px);
  color: var(--muted);
  font-weight: 650;
  letter-spacing: -0.01em;
}

.lead {
  margin: 0 0 18px;
  color: var(--muted);
  font-size: 16px;
  line-height: 1.7;
  max-width: 60ch;
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-bottom: 18px;
}

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  text-decoration: none;
  padding: 12px 16px;
  border-radius: 14px;
  font-weight: 750;
  border: 1px solid rgba(255, 255, 255, 0.14);
  transition: transform 160ms ease, box-shadow 160ms ease, background 160ms ease, border-color 160ms ease;
  font: inherit;
  cursor: pointer;
}

.btn-primary {
  color: #fff;
  background: linear-gradient(135deg, var(--brand), #f46570);
  border-color: rgba(239, 51, 64, 0.22);
  box-shadow: 0 10px 28px rgba(239, 51, 64, 0.2);
}
.btn-primary:hover {
  transform: translateY(-1px);
  box-shadow: 0 14px 36px rgba(239, 51, 64, 0.26);
}
.btn:disabled {
  cursor: not-allowed;
  opacity: 0.62;
  transform: none;
  box-shadow: none;
}

.btn-ghost {
  color: var(--text);
  background: rgba(0, 133, 202, 0.1);
}
.btn-ghost:hover {
  background: rgba(0, 133, 202, 0.18);
  border-color: rgba(0, 133, 202, 0.3);
  transform: translateY(-1px);
}

.btn-wide {
  width: 100%;
  padding: 14px 16px;
}

.hero-card {
  border-radius: var(--radius2);
  border: 1px solid var(--border);
  background: linear-gradient(180deg, rgba(255, 255, 255, 0.95), rgba(236, 245, 255, 0.86));
  box-shadow: var(--shadow);
  overflow: hidden;
}

.hero-card-top {
  padding: 18px 18px 10px;
}
.hero-card-badge {
  display: inline-flex;
  align-items: center;
  padding: 8px 12px;
  border-radius: 999px;
  border: 1px solid rgba(239, 51, 64, 0.28);
  background: rgba(239, 51, 64, 0.1);
  color: #b8101d;
  font-weight: 800;
  font-size: 12px;
  margin-bottom: 10px;
}
.hero-card-title {
  margin: 0 0 8px;
  font-size: 20px;
  letter-spacing: -0.02em;
}
.hero-card-text {
  margin: 0;
  color: var(--muted);
  line-height: 1.65;
  font-size: 14px;
}

.hero-card-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 10px;
  padding: 14px 18px 6px;
}
.stat {
  background: var(--card2);
  border: 1px solid var(--border);
  border-radius: 16px;
  padding: 12px 14px;
}
.stat-num {
  font-weight: 900;
  font-size: 18px;
  margin-bottom: 4px;
}
.stat-label {
  color: var(--muted2);
  font-size: 13px;
  line-height: 1.4;
}

.hero-social {
  padding: 12px 18px 18px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 10px;
}

.social-link {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  text-decoration: none;
  color: var(--text);
  border: 1px solid var(--border);
  background: rgba(0, 133, 202, 0.12);
  padding: 10px 14px;
  border-radius: 14px;
  font-weight: 800;
  font-size: 14px;
}
.social-icon {
  width: 44px;
  height: 44px;
  border-radius: 14px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border: 1px solid var(--border);
  background: rgba(0, 133, 202, 0.12);
}
.social-icon img {
  width: 22px;
  height: 22px;
  object-fit: contain;
}

.section {
  padding: 56px 0;
}
.section[id] {
  scroll-margin-top: 88px;
}
.section-alt {
  background: #f8fbff;
  border-top: 1px solid rgba(102, 146, 195, 0.15);
  border-bottom: 1px solid rgba(102, 146, 195, 0.15);
  overflow: hidden;
}
.section-roundtable {
  background: #eef5ff;
  border-bottom: 1px solid rgba(102, 146, 195, 0.15);
  overflow: hidden;
}
.section-roundtable .section-head {
  margin-bottom: 20px;
}
.section-head {
  margin-bottom: 26px;
}
.section-head h2 {
  margin: 0 0 10px;
  font-size: clamp(28px, 3.5vw, 40px);
  letter-spacing: -0.02em;
}
.section-sub {
  margin: 0;
  color: var(--muted);
  max-width: 70ch;
  line-height: 1.75;
}

.founders {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 18px;
}
.founder {
  text-align: center;
}
.founder img {
  display: block;
  width: min(100%, 260px);
  aspect-ratio: 1;
  height: auto;
  margin: 0 auto 14px;
  object-fit: contain;
  filter: drop-shadow(0 16px 22px rgba(30, 55, 90, 0.14));
}
.founder h3 {
  margin: 0;
  color: var(--text);
  font-size: clamp(22px, 2.5vw, 30px);
  letter-spacing: -0.02em;
  line-height: 1.15;
}
.roundtable .founder img {
  width: clamp(140px, 10vw, 190px);
  margin-bottom: 8px;
}
.roundtable .founder h3 {
  font-size: clamp(20px, 2.2vw, 26px);
}
.roundtable {
  grid-template-columns: repeat(5, minmax(0, 1fr));
  max-width: 1120px;
  margin: 0 auto;
  column-gap: clamp(18px, 3vw, 42px);
  row-gap: 34px;
}

.section-contact {
  background: #f8fbff;
  border-top: 1px solid rgba(102, 146, 195, 0.15);
  overflow: hidden;
}
.section-contact .section-head {
  max-width: 640px;
  margin: 0 0 24px;
}
.contact {
  max-width: 640px;
  margin: 0;
}
.contact-card {
  border-radius: var(--radius2);
  border: 1px solid var(--border);
  background: #ffffff;
  padding: 18px;
}
.contact-card h3 {
  margin: 0 0 10px;
  font-size: 20px;
}
.contact-text {
  margin: 0;
  color: var(--muted);
  line-height: 1.75;
}
.contact-text a {
  color: #c4101e;
}
.contact-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-top: 14px;
}
.muted {
  color: var(--muted2);
  margin: 14px 0 0;
  font-size: 13px;
  line-height: 1.6;
}
.contact-modal {
  position: fixed;
  inset: 0;
  z-index: 80;
  display: grid;
  place-items: center;
  padding: 18px;
  background: rgba(17, 33, 54, 0.46);
}
.contact-modal-card {
  position: relative;
  width: min(620px, 100%);
  border: 1px solid var(--border);
  border-radius: var(--radius2);
  background: #fff;
  padding: 24px;
  box-shadow: 0 24px 70px rgba(17, 33, 54, 0.24);
}
.contact-modal-card h3 {
  margin: 0 0 18px;
  font-size: clamp(28px, 3vw, 38px);
  line-height: 1.1;
}
.modal-close {
  position: absolute;
  top: 16px;
  right: 16px;
  width: 42px;
  height: 42px;
  border-radius: 14px;
  border: 1px solid var(--border);
  background: rgba(0, 133, 202, 0.1);
  color: var(--text);
  cursor: pointer;
}
.contact-form {
  display: grid;
  gap: 14px;
}
.contact-form label {
  display: grid;
  gap: 7px;
  color: var(--muted);
  font-weight: 800;
}
.contact-form input,
.contact-form textarea {
  width: 100%;
  border: 1px solid var(--border);
  border-radius: 14px;
  background: #f8fbff;
  color: var(--text);
  font: inherit;
  padding: 13px 14px;
  outline: none;
}
.contact-form textarea {
  resize: vertical;
  min-height: 132px;
}
.contact-form input:focus,
.contact-form textarea:focus {
  border-color: rgba(0, 133, 202, 0.58);
  box-shadow: 0 0 0 4px rgba(0, 133, 202, 0.12);
}
.contact-status {
  min-height: 20px;
  margin: 0;
  color: var(--muted);
  font-size: 14px;
  font-weight: 800;
}
.contact-status-success {
  color: #17623a;
}
.contact-status-error {
  color: #b8101d;
}

.site-footer {
  padding: 0;
  border-top: 1px solid rgba(102, 146, 195, 0.18);
  background: rgba(255, 255, 255, 0.9);
  backdrop-filter: blur(12px);
}
.footer-inner {
  display: grid;
  grid-template-columns: minmax(240px, 1fr) auto auto;
  gap: 28px;
  align-items: start;
  padding: 24px 0 26px;
}
.footer-brand {
  font-weight: 950;
  letter-spacing: -0.02em;
  margin-bottom: 5px;
  font-size: 15px;
  line-height: 1.2;
}
.footer-copy {
  color: var(--muted);
  font-size: 13px;
  line-height: 1.45;
  max-width: 34ch;
}
.footer-group {
  min-width: 132px;
}
.footer-label {
  color: #c4101e;
  font-size: 11px;
  font-weight: 950;
  letter-spacing: 0.12em;
  line-height: 1;
  margin-bottom: 10px;
  text-transform: uppercase;
}
.footer-links {
  display: grid;
  gap: 7px;
}
.footer-links a {
  color: var(--muted);
  text-decoration: none;
  border-radius: 0;
  padding: 0;
  border: 0;
  background: transparent;
  font-size: 13px;
  font-weight: 750;
  line-height: 1.3;
  cursor: pointer;
  transition: color 160ms ease;
}
.footer-links a:hover {
  color: var(--text);
}
.footer-link-btn {
  color: var(--muted);
  text-decoration: none;
  border-radius: 0;
  padding: 0;
  border: 0;
  background: transparent;
  font: inherit;
  font-size: 13px;
  font-weight: 750;
  line-height: 1.3;
  cursor: pointer;
  text-align: left;
  transition: color 160ms ease;
}
.footer-link-btn:hover {
  color: var(--text);
}
.footer-legal {
  grid-column: 1 / -1;
  color: var(--muted2);
  font-size: 12px;
  line-height: 1.4;
  margin-top: 2px;
}

.legal-section {
  scroll-margin-top: 90px;
}
.legal-card {
  border: 1px solid var(--border);
  background: var(--card);
  border-radius: var(--radius);
  padding: 16px;
}
.legal-card p {
  margin: 0 0 10px;
  color: var(--muted);
  line-height: 1.7;
}
.legal-card p:last-child {
  margin-bottom: 0;
}
.legal-card h3 {
  margin: 22px 0 10px;
  color: var(--text);
  font-size: 20px;
  line-height: 1.25;
}
.legal-card ul {
  display: grid;
  gap: 10px;
  margin: 0 0 14px;
  padding-left: 22px;
  color: var(--muted);
  line-height: 1.7;
}
.legal-card li strong {
  display: block;
  color: var(--text);
  margin-bottom: 2px;
}
.legal-card a {
  color: #c4101e;
  font-weight: 850;
  text-underline-offset: 3px;
}

.inline-link {
  border: none;
  background: transparent;
  color: #c4101e;
  text-decoration: underline;
  cursor: pointer;
  padding: 0;
  font: inherit;
}

.cookie-banner {
  position: fixed;
  left: 0;
  right: 0;
  bottom: 0;
  z-index: 60;
  border-top: 1px solid rgba(255, 255, 255, 0.08);
  background: rgba(22, 24, 28, 0.98);
  box-shadow: 0 -16px 34px rgba(17, 33, 54, 0.22);
}
.cookie-content {
  display: grid;
  grid-template-columns: minmax(280px, 1fr) auto;
  gap: 24px;
  align-items: center;
  width: min(100%, 1640px);
  margin: 0 auto;
  padding: 22px 28px 24px;
}
.cookie-copy {
  max-width: 920px;
}
.cookie-title {
  font-weight: 900;
  margin-bottom: 12px;
  color: #fff;
  font-size: 18px;
  letter-spacing: 0;
}
.cookie-content p {
  margin: 0;
  color: rgba(255, 255, 255, 0.64);
  line-height: 1.55;
  font-size: 15px;
}
.cookie-content a,
.cookie-text-btn {
  color: rgba(255, 255, 255, 0.78);
  text-decoration: underline;
  text-underline-offset: 3px;
}
.cookie-content a:hover,
.cookie-text-btn:hover {
  color: #fff;
}
.cookie-text-btn {
  border: 0;
  background: transparent;
  padding: 0;
  font: inherit;
  cursor: pointer;
}
.cookie-actions {
  display: flex;
  justify-content: flex-end;
  align-items: center;
  gap: 8px;
  flex-wrap: wrap;
}
.cookie-pill {
  min-height: 48px;
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: 999px;
  padding: 0 24px;
  background: rgba(255, 255, 255, 0.13);
  color: rgba(255, 255, 255, 0.92);
  font: inherit;
  font-size: 15px;
  font-weight: 800;
  cursor: pointer;
  transition: background 160ms ease, border-color 160ms ease, transform 160ms ease, color 160ms ease;
  white-space: nowrap;
}
.cookie-pill:hover {
  background: rgba(255, 255, 255, 0.19);
  border-color: rgba(255, 255, 255, 0.16);
  transform: translateY(-1px);
}
.cookie-pill-primary {
  background: linear-gradient(135deg, var(--brand), #f46570);
  border-color: rgba(239, 51, 64, 0.48);
  color: #fff;
  box-shadow: 0 10px 24px rgba(239, 51, 64, 0.24);
}
.cookie-pill-primary:hover {
  background: linear-gradient(135deg, #d92532, #f46570);
}

.cookie-modal {
  position: fixed;
  inset: 0;
  z-index: 70;
  background: rgba(17, 33, 54, 0.42);
  display: grid;
  place-items: center;
  padding: 16px;
}
.cookie-modal-card {
  width: min(680px, 100%);
  border: 1px solid var(--border);
  border-radius: var(--radius2);
  background: #fff;
  padding: clamp(20px, 4vw, 30px);
  box-shadow: 0 24px 70px rgba(17, 33, 54, 0.24);
}
.cookie-modal-kicker {
  color: #c4101e;
  font-size: 12px;
  font-weight: 950;
  letter-spacing: 0.14em;
  line-height: 1;
  margin-bottom: 12px;
  text-transform: uppercase;
}
.cookie-modal-card h3 {
  margin: 0 0 10px;
  font-size: clamp(28px, 3vw, 38px);
  line-height: 1.1;
}
.cookie-modal-copy,
.cookie-modal-note {
  color: var(--muted);
  line-height: 1.65;
  margin: 0;
}
.cookie-modal-note {
  font-size: 14px;
}
.cookie-modal-note a {
  color: #c4101e;
  font-weight: 850;
  text-underline-offset: 3px;
}
.cookie-options {
  display: grid;
  gap: 12px;
  margin: 18px 0 14px;
}
.cookie-option {
  display: flex;
  gap: 14px;
  align-items: flex-start;
  border: 1px solid var(--border);
  border-radius: 16px;
  background: #f8fbff;
  color: var(--muted);
  cursor: pointer;
  padding: 15px;
}
.cookie-option input {
  width: 22px;
  height: 22px;
  accent-color: var(--brand);
  flex: 0 0 auto;
  margin-top: 2px;
}
.cookie-option input:disabled {
  cursor: not-allowed;
}
.cookie-option span {
  display: grid;
  gap: 5px;
}
.cookie-option strong {
  color: var(--text);
  font-size: 18px;
  line-height: 1.2;
}
.cookie-option small {
  color: var(--muted);
  font-size: 14px;
  line-height: 1.45;
}
.cookie-modal-card .cookie-actions {
  border-top: 1px solid rgba(102, 146, 195, 0.18);
  justify-content: flex-start;
  margin-top: 18px;
  padding-top: 18px;
}

.compta-hero {
  padding: 56px 0 36px;
}
.compta-hero-inner {
  display: grid;
  grid-template-columns: minmax(0, 1.15fr) minmax(300px, 0.85fr);
  gap: 22px;
  align-items: stretch;
}
.compta-summary {
  border: 1px solid var(--border);
  border-radius: var(--radius2);
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.96), rgba(248, 251, 255, 0.9));
  box-shadow: var(--shadow);
  padding: 22px;
}
.compta-feature-spotlight {
  display: grid;
  grid-template-columns: minmax(420px, 1.05fr) minmax(0, 0.95fr);
  gap: clamp(24px, 4vw, 48px);
  align-items: center;
  margin-bottom: 32px;
  border: 1px solid rgba(102, 146, 195, 0.22);
  border-radius: var(--radius2);
  background:
    linear-gradient(135deg, rgba(255, 255, 255, 0.88), rgba(248, 251, 255, 0.72));
  padding: clamp(18px, 3vw, 30px);
}
.compta-spotlight-copy {
  min-width: 0;
}
.compta-spotlight-copy h3 {
  margin: 8px 0 0;
  color: var(--text);
  font-size: clamp(28px, 3.2vw, 44px);
  letter-spacing: 0;
  line-height: 1.08;
}
.compta-checklist {
  display: grid;
  gap: 14px;
  margin: 24px 0 0;
  padding: 0;
  list-style: none;
}
.compta-checklist li {
  position: relative;
  color: var(--muted);
  font-size: clamp(16px, 1.45vw, 19px);
  font-weight: 750;
  line-height: 1.45;
  padding-left: 46px;
}
.compta-checklist li::before {
  content: "\2713";
  position: absolute;
  left: 0;
  top: 0.1em;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 30px;
  height: 30px;
  border-radius: 999px;
  background: rgba(239, 51, 64, 0.14);
  color: #9d1520;
  font-size: 16px;
  font-weight: 950;
}
.compta-capability-map {
  display: grid;
  gap: 12px;
}
.capability-lane {
  display: flex;
  align-items: flex-start;
  gap: 14px;
  border: 1px solid var(--border);
  border-radius: 16px;
  background: rgba(255, 255, 255, 0.86);
  padding: 16px;
}
.capability-icon {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  flex: 0 0 auto;
  width: 42px;
  height: 42px;
  border: 1px solid rgba(0, 133, 202, 0.22);
  border-radius: 14px;
  background: rgba(0, 133, 202, 0.1);
  color: #0b6fa9;
  font-size: 20px;
}
.capability-lane strong {
  display: block;
  color: var(--text);
  font-size: 17px;
  font-weight: 900;
  line-height: 1.25;
}
.capability-lane span {
  display: block;
  margin-top: 5px;
  color: var(--muted);
  font-size: 14px;
  line-height: 1.45;
}
.summary-kicker {
  color: #c4101e;
  font-size: 12px;
  font-weight: 950;
  letter-spacing: 0.14em;
  text-transform: uppercase;
}
.summary-number,
.summary-metrics strong {
  margin-top: 18px;
  color: var(--text);
  font-size: clamp(64px, 8vw, 104px);
  font-weight: 950;
  letter-spacing: -0.06em;
  line-height: 0.9;
}
.summary-label,
.summary-metrics span {
  color: var(--muted);
  font-size: 18px;
  font-weight: 800;
  line-height: 1.35;
}
.summary-metrics {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 18px 16px;
  margin-top: 12px;
}
.summary-metrics div {
  min-width: 0;
}
.summary-metrics strong {
  display: block;
  margin-top: 0;
  font-size: clamp(42px, 5vw, 62px);
}
.summary-metrics span {
  display: block;
  margin-top: 6px;
}
.summary-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 10px;
  margin-top: 26px;
}
.summary-grid div,
.compta-feature {
  border: 1px solid var(--border);
  border-radius: 16px;
  background: rgba(255, 255, 255, 0.72);
  padding: 14px;
}
.summary-grid strong,
.compta-feature strong {
  display: block;
  color: var(--text);
  font-size: 15px;
  font-weight: 900;
  line-height: 1.25;
}
.summary-grid span,
.compta-feature span {
  display: block;
  margin-top: 5px;
  color: var(--muted);
  font-size: 13px;
  line-height: 1.45;
}
.compta-section .section-head {
  max-width: 820px;
}
.compta-module-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 14px;
}
.compta-card {
  border: 1px solid var(--border);
  border-radius: var(--radius);
  background: rgba(255, 255, 255, 0.84);
  padding: 16px;
  min-height: 208px;
  transition: transform 160ms ease, border-color 160ms ease, box-shadow 160ms ease;
}
.compta-card:hover {
  border-color: rgba(0, 133, 202, 0.38);
  box-shadow: 0 14px 34px rgba(30, 55, 90, 0.1);
  transform: translateY(-2px);
}
.compta-card > .lni {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 42px;
  height: 42px;
  border: 1px solid rgba(0, 133, 202, 0.22);
  border-radius: 14px;
  background: rgba(0, 133, 202, 0.1);
  color: #0b6fa9;
  font-size: 20px;
}
.compta-card h3 {
  margin: 12px 0 10px;
  color: var(--text);
  font-size: 18px;
  line-height: 1.2;
}
.compta-card ul,
.compta-compliance ul {
  display: grid;
  gap: 7px;
  margin: 0;
  padding: 0;
  list-style: none;
}
.compta-card li,
.compta-compliance li {
  position: relative;
  color: var(--muted);
  font-size: 14px;
  line-height: 1.45;
  padding-left: 18px;
}
.compta-card li::before,
.compta-compliance li::before {
  content: "";
  position: absolute;
  left: 0;
  top: 0.62em;
  width: 7px;
  height: 7px;
  border-radius: 999px;
  background: var(--brand);
}
.compta-feature-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 14px;
}
.compta-compliance {
  border: 1px solid var(--border);
  border-radius: var(--radius2);
  background: rgba(255, 255, 255, 0.82);
  padding: 18px;
}
.compta-compliance-callout {
  display: grid;
  gap: 6px;
  margin-bottom: 16px;
  border: 1px solid rgba(239, 51, 64, 0.24);
  border-radius: 16px;
  background: rgba(239, 51, 64, 0.07);
  padding: 16px;
}
.compta-compliance-callout strong {
  color: #a30f19;
  font-size: 18px;
  line-height: 1.25;
}
.compta-compliance-callout span {
  color: var(--muted);
  line-height: 1.6;
}
.compta-source-list {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 14px;
  margin: 0;
  padding: 0;
  list-style: none;
  counter-reset: source-counter;
}
.compta-source-list li {
  counter-increment: source-counter;
  border: 1px solid var(--border);
  border-radius: 16px;
  background: rgba(255, 255, 255, 0.82);
  padding: 16px;
}
.compta-source-list li::before {
  content: counter(source-counter, decimal-leading-zero);
  display: block;
  margin-bottom: 12px;
  color: #c4101e;
  font-size: 12px;
  font-weight: 950;
  letter-spacing: 0.12em;
}
.compta-source-list strong {
  display: block;
  color: var(--text);
  font-size: 16px;
  line-height: 1.2;
}
.compta-source-list span {
  display: block;
  margin-top: 6px;
  color: var(--muted);
  font-size: 14px;
  line-height: 1.45;
}

.not-found-page {
  min-height: 100%;
}

.not-found-main {
  min-height: 100dvh;
  display: grid;
  place-items: center;
  padding: clamp(24px, 4vw, 44px);
}

.not-found-scene {
  width: min(100%, 980px);
  min-height: min(760px, calc(100dvh - 48px));
  display: grid;
  grid-template-rows: 1fr auto;
  align-items: center;
  justify-items: center;
  gap: clamp(28px, 5vw, 56px);
}

.not-found-character-wrap {
  display: grid;
  grid-template-columns: minmax(260px, 430px) minmax(280px, 360px);
  align-items: center;
  justify-content: center;
  gap: clamp(20px, 3vw, 34px);
  width: min(100%, 860px);
}

.not-found-character {
  display: block;
  width: min(100%, 430px);
  max-height: min(62dvh, 520px);
  height: auto;
  object-fit: contain;
  filter: drop-shadow(0 22px 28px rgba(30, 55, 90, 0.16));
}

.not-found-bubble {
  position: relative;
  width: min(100%, 360px);
  border: 1px solid var(--border);
  border-radius: 22px;
  background: rgba(255, 255, 255, 0.94);
  box-shadow: var(--shadow);
  padding: clamp(18px, 2.2vw, 24px);
}

.not-found-bubble::after {
  content: "";
  position: absolute;
  left: -12px;
  top: 48%;
  width: 24px;
  height: 24px;
  border-left: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
  background: rgba(255, 255, 255, 0.94);
  transform: translateY(-50%) rotate(45deg);
}

.not-found-code {
  margin: 0 0 6px;
  color: #c4101e;
  font-size: 12px;
  font-weight: 950;
  letter-spacing: 0.14em;
  line-height: 1;
  text-transform: uppercase;
}

.not-found-bubble h1 {
  margin: 0;
  font-size: clamp(22px, 3vw, 34px);
  line-height: 1.08;
  letter-spacing: 0;
}

.not-found-bubble p:last-child {
  margin: 10px 0 0;
  color: var(--muted);
  font-size: 14px;
  line-height: 1.55;
}

.not-found-home {
  min-width: 150px;
}

.hidden {
  display: none !important;
}

@media (max-width: 980px) {
  .hero-inner {
    grid-template-columns: 1fr;
  }
  .compta-hero-inner {
    grid-template-columns: 1fr;
  }
  .compta-feature-spotlight {
    grid-template-columns: 1fr;
  }
  .compta-module-grid,
  .compta-feature-grid,
  .compta-source-list {
    grid-template-columns: 1fr 1fr;
  }
  .founders {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 24px 16px;
  }
  .founder img {
    width: min(100%, 190px);
    margin-bottom: 10px;
  }
  .founder h3 {
    font-size: clamp(20px, 5.2vw, 26px);
  }
  #founders .founder:nth-child(3) {
    grid-column: 1 / -1;
    justify-self: center;
    width: min(100%, 240px);
  }
  .roundtable {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    grid-template-rows: repeat(5, auto);
    grid-auto-flow: column;
    gap: 24px 16px;
  }
  .roundtable .founder img {
    width: min(100%, 150px);
  }
  .roundtable .founder h3 {
    font-size: clamp(19px, 5vw, 24px);
  }
  .contact {
    grid-template-columns: 1fr;
  }
  .footer-inner {
    grid-template-columns: 1fr 1fr;
    gap: 20px 24px;
  }
  .footer-inner > div:first-child {
    grid-column: 1 / -1;
  }
  .cookie-content {
    grid-template-columns: 1fr;
    gap: 16px;
    padding: 20px;
  }
  .cookie-actions {
    justify-content: flex-start;
  }
  .cookie-pill {
    flex: 1 1 180px;
  }
}

@media (max-width: 640px) {
  .summary-metrics,
  .compta-module-grid,
  .compta-feature-grid,
  .compta-source-list {
    grid-template-columns: 1fr;
  }
  .compta-hero {
    padding-top: 38px;
  }
  .compta-checklist li {
    padding-left: 46px;
  }
  .compta-card {
    min-height: 0;
  }

  .not-found-main {
    padding: 20px;
  }

  .not-found-scene {
    min-height: calc(100dvh - 40px);
    gap: 14px;
  }

  .not-found-character-wrap {
    grid-template-columns: 1fr;
    justify-items: center;
    gap: 10px;
  }

  .not-found-character {
    width: min(84vw, 380px);
    max-height: 46dvh;
  }

  .not-found-bubble {
    position: relative;
    right: auto;
    top: auto;
    width: min(100%, 360px);
    order: -1;
    text-align: center;
  }

  .not-found-bubble::after {
    left: 50%;
    right: auto;
    bottom: -12px;
    top: auto;
    border-left: 0;
    border-top: 0;
    border-right: 1px solid var(--border);
    border-bottom: 1px solid var(--border);
    transform: translateX(-50%) rotate(45deg);
  }
}
