:root {
  --primary: #0f4c81;
  --secondary: #13b5a5;
  --accent: #ffb703;
  --dark: #0b1220;
  --navy: #101b33;
  --panel: #16233f;
  --light: #f7fafc;
  --soft: #edf5fb;
  --text: #1a202c;
  --muted: #64748b;
  --white: #ffffff;
  --border: rgba(15, 76, 129, 0.14);
  --shadow: 0 24px 60px rgba(11, 18, 32, 0.14);
  --radius: 8px;
  --max: 1180px;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  color: var(--text);
  background: var(--light);
  font-family: Inter, Manrope, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  line-height: 1.65;
}

body.menu-open {
  overflow: hidden;
}

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

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

button,
input,
textarea {
  font: inherit;
}

:focus-visible {
  outline: 3px solid rgba(255, 183, 3, 0.7);
  outline-offset: 3px;
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 20;
  background: rgba(247, 250, 252, 0.92);
  border-bottom: 1px solid rgba(15, 76, 129, 0.12);
  backdrop-filter: blur(16px);
}

.nav-shell {
  width: min(100% - 32px, var(--max));
  min-height: 118px;
  margin: 0 auto;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  min-width: 210px;
}

.brand-logo {
  width: auto;
  height: 96px;
  max-width: 178px;
  display: block;
  object-fit: contain;
}

.nav-links {
  display: flex;
  align-items: center;
  gap: 4px;
}

.nav-links a {
  padding: 10px 12px;
  border-radius: 8px;
  color: #324158;
  font-weight: 700;
  font-size: 0.93rem;
}

.nav-links a:hover,
.nav-links a.active {
  color: var(--primary);
  background: rgba(15, 76, 129, 0.08);
}

.nav-actions {
  display: flex;
  align-items: center;
  gap: 12px;
}

.menu-toggle {
  display: none;
  width: 44px;
  height: 44px;
  border: 1px solid var(--border);
  border-radius: 8px;
  background: var(--white);
  color: var(--dark);
  cursor: pointer;
}

.menu-toggle span {
  display: block;
  width: 18px;
  height: 2px;
  margin: 4px auto;
  background: currentColor;
}

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 46px;
  padding: 0 18px;
  border: 1px solid transparent;
  border-radius: 999px;
  font-weight: 800;
  cursor: pointer;
  transition: transform 180ms ease, box-shadow 180ms ease, background 180ms ease;
}

.btn:hover {
  transform: translateY(-2px);
}

.btn-primary {
  color: var(--white);
  background: linear-gradient(135deg, var(--primary), #0b3a68);
  box-shadow: 0 14px 30px rgba(15, 76, 129, 0.24);
}

.btn-secondary {
  color: var(--dark);
  background: var(--white);
  border-color: rgba(15, 76, 129, 0.18);
}

.btn-accent {
  color: var(--dark);
  background: var(--accent);
  box-shadow: 0 14px 28px rgba(255, 183, 3, 0.24);
}

.section {
  padding: 88px 0;
}

.section.compact {
  padding: 56px 0;
}

.section.dark {
  color: var(--white);
  background:
    linear-gradient(135deg, rgba(19, 181, 165, 0.12), transparent 32%),
    linear-gradient(180deg, #0b1220, #111c33);
}

.section.soft {
  background: var(--soft);
}

.container {
  width: min(100% - 32px, var(--max));
  margin: 0 auto;
}

.hero {
  position: relative;
  overflow: hidden;
  min-height: calc(100vh - 76px);
  color: var(--white);
  background:
    linear-gradient(140deg, rgba(11, 18, 32, 0.94), rgba(15, 76, 129, 0.9) 62%, rgba(19, 181, 165, 0.72)),
    url("../img/dashboard-mockup.svg") center right 8% / min(680px, 58vw) auto no-repeat,
    var(--dark);
  display: flex;
  align-items: center;
}

.hero::after {
  content: "";
  position: absolute;
  inset: auto 0 0;
  height: 120px;
  background: linear-gradient(180deg, transparent, rgba(247, 250, 252, 0.9));
  pointer-events: none;
}

.hero-grid {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: minmax(0, 1.04fr) minmax(320px, 0.96fr);
  align-items: center;
  gap: 44px;
  padding: 68px 0 118px;
}

.eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  margin: 0 0 18px;
  color: #b6fff7;
  font-size: 0.82rem;
  font-weight: 900;
  letter-spacing: 0.11em;
  text-transform: uppercase;
}

.eyebrow::before {
  content: "";
  width: 28px;
  height: 2px;
  background: var(--accent);
}

h1,
h2,
h3 {
  margin: 0;
  color: inherit;
  line-height: 1.08;
  letter-spacing: 0;
}

h1 {
  max-width: 820px;
  font-size: clamp(2.45rem, 6vw, 5.25rem);
}

h2 {
  font-size: clamp(2rem, 4vw, 3.35rem);
}

h3 {
  font-size: 1.22rem;
}

p {
  margin: 0;
}

.lead {
  max-width: 760px;
  margin-top: 22px;
  color: rgba(255, 255, 255, 0.82);
  font-size: clamp(1.03rem, 2vw, 1.22rem);
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
  margin-top: 34px;
}

.hero-metrics {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 14px;
  margin-top: 38px;
  max-width: 720px;
}

.metric {
  padding: 18px;
  border: 1px solid rgba(255, 255, 255, 0.16);
  border-radius: 8px;
  background: rgba(255, 255, 255, 0.08);
  backdrop-filter: blur(16px);
}

.metric strong {
  display: block;
  color: var(--white);
  font-size: 1.35rem;
}

.metric span {
  display: block;
  margin-top: 4px;
  color: rgba(255, 255, 255, 0.72);
  font-size: 0.85rem;
}

.dashboard-card {
  padding: 18px;
  border: 1px solid rgba(255, 255, 255, 0.16);
  border-radius: 8px;
  background: rgba(255, 255, 255, 0.1);
  box-shadow: var(--shadow);
  backdrop-filter: blur(18px);
}

.dashboard-card img {
  width: 100%;
  border-radius: 8px;
}

.badge-strip {
  margin-top: -54px;
  position: relative;
  z-index: 2;
}

.badge-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 14px;
  padding: 18px;
  border: 1px solid var(--border);
  border-radius: 8px;
  background: var(--white);
  box-shadow: var(--shadow);
}

.badge {
  display: flex;
  align-items: center;
  gap: 10px;
  min-height: 56px;
  color: var(--dark);
  font-weight: 800;
}

.badge svg,
.icon {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  flex: 0 0 auto;
  width: 42px;
  min-width: 42px;
  height: 34px;
  padding: 8px;
  border-radius: 8px;
  color: var(--primary);
  background: rgba(15, 76, 129, 0.09);
  font-size: 0.72rem;
  font-weight: 900;
  line-height: 1;
}

.section-heading {
  max-width: 820px;
  margin-bottom: 36px;
}

.section-heading.center {
  margin-left: auto;
  margin-right: auto;
  text-align: center;
}

.section-heading p {
  margin-top: 16px;
  color: var(--muted);
  font-size: 1.04rem;
}

.dark .section-heading p,
.dark .muted,
.dark .card p {
  color: rgba(255, 255, 255, 0.74);
}

.grid {
  display: grid;
  gap: 18px;
}

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

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

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

.card {
  position: relative;
  padding: 24px;
  border: 1px solid var(--border);
  border-radius: 8px;
  background: var(--white);
  box-shadow: 0 18px 44px rgba(15, 76, 129, 0.07);
  transition: transform 180ms ease, box-shadow 180ms ease, border-color 180ms ease;
}

.card:hover {
  transform: translateY(-4px);
  border-color: rgba(19, 181, 165, 0.45);
  box-shadow: 0 24px 54px rgba(15, 76, 129, 0.13);
}

.dark .card {
  border-color: rgba(255, 255, 255, 0.13);
  background: rgba(255, 255, 255, 0.07);
  box-shadow: none;
}

.card h3 {
  margin-top: 18px;
  color: var(--dark);
}

.dark .card h3 {
  color: var(--white);
}

.card p {
  margin-top: 10px;
  color: var(--muted);
}

.number-card::before {
  content: attr(data-number);
  display: inline-grid;
  place-items: center;
  width: 34px;
  height: 34px;
  border-radius: 8px;
  color: var(--white);
  background: var(--primary);
  font-weight: 900;
}

.split {
  display: grid;
  grid-template-columns: minmax(0, 0.9fr) minmax(0, 1.1fr);
  align-items: center;
  gap: 48px;
}

.visual-panel {
  border-radius: 8px;
  overflow: hidden;
  background: var(--white);
  box-shadow: var(--shadow);
}

.dark .visual-panel {
  background: rgba(255, 255, 255, 0.08);
  border: 1px solid rgba(255, 255, 255, 0.14);
}

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

.module {
  padding: 18px;
  border: 1px solid var(--border);
  border-radius: 8px;
  background: var(--white);
}

.module strong {
  display: block;
  color: var(--dark);
}

.module span {
  display: block;
  margin-top: 6px;
  color: var(--muted);
  font-size: 0.91rem;
}

.timeline {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 16px;
  counter-reset: step;
}

.timeline-item {
  counter-increment: step;
  padding: 22px;
  border-left: 3px solid var(--secondary);
  border-radius: 8px;
  background: var(--white);
  box-shadow: 0 16px 36px rgba(15, 76, 129, 0.07);
}

.timeline-item::before {
  content: "0" counter(step);
  color: var(--primary);
  font-weight: 900;
  font-size: 0.82rem;
}

.timeline-item strong {
  display: block;
  margin-top: 8px;
}

.founder-layout {
  display: grid;
  grid-template-columns: minmax(280px, 0.78fr) minmax(0, 1.22fr);
  gap: 24px;
}

.founder-stack {
  display: grid;
  gap: 18px;
}

.founder-card-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 20px;
  margin-top: 28px;
}

.founder-profile {
  padding: 28px;
  border-radius: 8px;
  color: var(--white);
  background: linear-gradient(145deg, var(--primary), var(--dark));
  box-shadow: var(--shadow);
  overflow: hidden;
}

.founder-profile-secondary {
  background: linear-gradient(145deg, #0c6f84, var(--dark));
}

.avatar {
  width: 82px;
  height: 82px;
  display: grid;
  place-items: center;
  border-radius: 8px;
  color: var(--dark);
  background: var(--accent);
  font-size: 1.55rem;
  font-weight: 900;
}

.founder-profile-secondary .avatar {
  color: var(--primary);
  background: #cffff8;
}

.founder-profile h3 {
  margin-top: 20px;
}

.founder-profile p {
  margin-top: 8px;
  color: rgba(255, 255, 255, 0.76);
}

.quote-panel {
  padding: 30px;
  border: 1px solid var(--border);
  border-radius: 8px;
  background: var(--white);
}

.quote-panel .card {
  min-height: 0;
}

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

.statement {
  padding: 30px;
  border-radius: 8px;
  color: var(--white);
  background: linear-gradient(145deg, var(--dark), var(--primary));
}

.statement:nth-child(2) {
  background: linear-gradient(145deg, #083d68, #0e7f78);
}

.statement p {
  margin-top: 14px;
  color: rgba(255, 255, 255, 0.82);
}

.cta-band {
  padding: 44px;
  border-radius: 8px;
  color: var(--white);
  background:
    linear-gradient(135deg, rgba(255, 183, 3, 0.2), transparent 38%),
    linear-gradient(135deg, var(--dark), var(--primary));
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
}

.cta-band p {
  margin-top: 10px;
  max-width: 720px;
  color: rgba(255, 255, 255, 0.78);
}

.page-hero {
  padding: 96px 0 74px;
  color: var(--white);
  background:
    linear-gradient(135deg, rgba(19, 181, 165, 0.16), transparent 38%),
    linear-gradient(145deg, var(--dark), var(--primary));
}

.page-hero p {
  max-width: 800px;
  margin-top: 18px;
  color: rgba(255, 255, 255, 0.78);
  font-size: 1.1rem;
}

.table-wrap {
  overflow-x: auto;
  border: 1px solid var(--border);
  border-radius: 8px;
  background: var(--white);
}

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

th,
td {
  padding: 16px 18px;
  text-align: left;
  border-bottom: 1px solid var(--border);
}

th {
  color: var(--dark);
  background: var(--soft);
}

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

.contact-layout {
  display: grid;
  grid-template-columns: minmax(0, 0.85fr) minmax(0, 1.15fr);
  gap: 28px;
}

.contact-card,
.form-card {
  padding: 28px;
  border: 1px solid var(--border);
  border-radius: 8px;
  background: var(--white);
  box-shadow: 0 18px 44px rgba(15, 76, 129, 0.07);
}

.contact-list {
  display: grid;
  gap: 16px;
  margin-top: 22px;
}

.contact-list div {
  padding-bottom: 16px;
  border-bottom: 1px solid var(--border);
}

.contact-list span {
  display: block;
  color: var(--muted);
  font-size: 0.88rem;
}

.contact-list strong {
  display: block;
  margin-top: 4px;
  color: var(--dark);
}

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

.field.full {
  grid-column: 1 / -1;
}

label {
  display: block;
  margin-bottom: 7px;
  color: var(--dark);
  font-weight: 800;
  font-size: 0.9rem;
}

input,
textarea {
  width: 100%;
  border: 1px solid rgba(15, 76, 129, 0.2);
  border-radius: 8px;
  padding: 13px 14px;
  color: var(--text);
  background: #fbfdff;
}

textarea {
  min-height: 132px;
  resize: vertical;
}

.form-status {
  min-height: 26px;
  margin-top: 16px;
  color: #0e766d;
  font-weight: 800;
}

.site-footer {
  color: rgba(255, 255, 255, 0.78);
  background: var(--dark);
}

.footer-grid {
  display: grid;
  grid-template-columns: 1.4fr 0.8fr 0.8fr;
  gap: 36px;
  padding: 56px 0;
}

.site-footer h3,
.site-footer strong {
  color: var(--white);
}

.footer-logo {
  width: auto;
  height: 132px;
  max-width: 100%;
  margin-bottom: 16px;
  padding: 0;
  border-radius: 8px;
  background: transparent;
  object-fit: contain;
}

.footer-links {
  display: grid;
  gap: 8px;
}

.footer-links a:hover {
  color: var(--accent);
}

.disclaimer {
  margin-top: 18px;
  padding-top: 18px;
  border-top: 1px solid rgba(255, 255, 255, 0.12);
  color: rgba(255, 255, 255, 0.62);
  font-size: 0.88rem;
}

.copyright {
  padding: 20px 0;
  border-top: 1px solid rgba(255, 255, 255, 0.12);
  font-size: 0.9rem;
}

.reveal {
  opacity: 0;
  transform: translateY(18px);
  transition: opacity 600ms ease, transform 600ms ease;
}

.reveal.visible {
  opacity: 1;
  transform: none;
}

@media (prefers-reduced-motion: reduce) {
  *,
  *::before,
  *::after {
    scroll-behavior: auto !important;
    transition-duration: 0.01ms !important;
    animation-duration: 0.01ms !important;
  }

  .reveal {
    opacity: 1;
    transform: none;
  }
}

@media (max-width: 1024px) {
  .hero-grid,
  .split,
  .founder-layout,
  .founder-card-grid,
  .contact-layout {
    grid-template-columns: 1fr;
  }

  .hero {
    background:
      linear-gradient(140deg, rgba(11, 18, 32, 0.94), rgba(15, 76, 129, 0.9) 62%, rgba(19, 181, 165, 0.72)),
      var(--dark);
  }

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

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

@media (max-width: 820px) {
  .menu-toggle {
    display: inline-block;
  }

  .nav-links {
    position: fixed;
    inset: 118px 0 auto;
    display: none;
    padding: 18px 16px 24px;
    background: var(--white);
    border-bottom: 1px solid var(--border);
    box-shadow: var(--shadow);
  }

  .nav-links.open {
    display: grid;
  }

  .nav-links a {
    min-height: 44px;
  }

  .nav-actions .btn {
    display: none;
  }

  .hero {
    min-height: auto;
  }

  .hero-grid {
    padding: 52px 0 96px;
  }

  .hero-metrics,
  .badge-grid,
  .grid-2,
  .grid-3,
  .grid-4,
  .module-list,
  .timeline,
  .statement-grid,
  .footer-grid,
  .form-grid {
    grid-template-columns: 1fr;
  }

  .badge-strip {
    margin-top: -34px;
  }

  .cta-band {
    padding: 28px;
    align-items: stretch;
    flex-direction: column;
  }

  .hero-actions .btn,
  .cta-band .btn,
  .form-card .btn {
    width: 100%;
  }

  .section {
    padding: 66px 0;
  }
}

@media (max-width: 520px) {
  .nav-shell,
  .container {
    width: min(100% - 22px, var(--max));
  }

  .brand-logo {
    height: 72px;
    max-width: 120px;
  }

  .card,
  .quote-panel,
  .contact-card,
  .form-card {
    padding: 20px;
  }

  .metric {
    padding: 16px;
  }
}
