:root {
  --blue-900: #183141;
  --blue-800: #23485c;
  --blue-700: #315d75;
  --blue-100: #dfeaf0;
  --orange-700: #a96835;
  --orange-600: #c98546;
  --orange-100: #f4dfca;
  --green-700: #527263;
  --ink: #18242c;
  --muted: #61717a;
  --line: #d8e2e6;
  --paper: #f5f8f9;
  --white: #ffffff;
  --shadow: 0 18px 48px rgba(24, 49, 65, 0.12);
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  background: var(--paper);
  color: var(--ink);
  font-family: Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  font-size: 16px;
  line-height: 1.6;
}

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

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

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

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

.site-header {
  position: sticky;
  top: 0;
  z-index: 20;
  border-bottom: 1px solid rgba(49, 93, 117, 0.16);
  background: rgba(245, 248, 249, 0.94);
  backdrop-filter: blur(14px);
}

.nav {
  min-height: 74px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
}

.brand {
  display: inline-flex;
  align-items: center;
  width: 204px;
  flex: 0 0 auto;
}

.brand img {
  width: 204px;
  height: auto;
}

.nav-links {
  display: flex;
  align-items: center;
  gap: 18px;
  color: var(--muted);
  font-size: 14px;
  font-weight: 700;
}

.nav-links a:hover {
  color: var(--blue-800);
}

.nav-cta,
.button {
  display: inline-flex;
  min-height: 44px;
  align-items: center;
  justify-content: center;
  border: 1px solid transparent;
  border-radius: 8px;
  padding: 11px 16px;
  cursor: pointer;
  font-weight: 850;
  line-height: 1.15;
}

.nav-cta,
.button.primary {
  background: var(--orange-600);
  color: #1d2428;
}

.button.secondary {
  border-color: rgba(255, 255, 255, 0.46);
  color: var(--white);
}

.button.dark {
  background: var(--blue-800);
  color: var(--white);
}

.button.ghost {
  border-color: var(--line);
  background: var(--white);
  color: var(--blue-800);
}

.button.full {
  width: 100%;
}

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

.button:disabled {
  cursor: not-allowed;
  opacity: 0.62;
  transform: none;
}

.hero {
  position: relative;
  overflow: hidden;
  background: var(--blue-900);
  color: var(--white);
}

.hero::before {
  content: "";
  position: absolute;
  inset: 0;
  background:
    linear-gradient(90deg, rgba(24, 49, 65, 0.98), rgba(35, 72, 92, 0.88)),
    repeating-linear-gradient(135deg, rgba(255, 255, 255, 0.07) 0 1px, transparent 1px 18px);
}

.hero-inner {
  position: relative;
  z-index: 1;
  min-height: 620px;
  display: grid;
  grid-template-columns: minmax(0, 1.08fr) minmax(420px, 0.92fr);
  gap: 44px;
  align-items: center;
  padding: 66px 0 76px;
}

.hero.compact .hero-inner {
  min-height: 430px;
  grid-template-columns: minmax(0, 760px);
  justify-content: center;
  text-align: center;
}

.eyebrow {
  margin: 0 0 12px;
  color: var(--orange-600);
  font-size: 13px;
  font-weight: 900;
  letter-spacing: 0.1em;
  text-transform: uppercase;
}

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

h1 {
  max-width: 850px;
  font-size: 4.05rem;
}

h2 {
  font-size: 2.85rem;
}

h3 {
  font-size: 1.25rem;
}

p {
  margin: 14px 0 0;
}

.lead {
  max-width: 710px;
  color: rgba(255, 255, 255, 0.82);
  font-size: 1.2rem;
}

.hero.compact .lead {
  margin-inline: auto;
}

.hero-actions,
.button-row {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-top: 28px;
}

.hero.compact .hero-actions {
  justify-content: center;
}

.product-visual {
  border: 1px solid rgba(255, 255, 255, 0.2);
  border-radius: 10px;
  background: rgba(245, 248, 249, 0.94);
  box-shadow: 0 24px 70px rgba(0, 0, 0, 0.28);
  color: var(--ink);
  overflow: hidden;
}

.visual-top {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  border-bottom: 1px solid var(--line);
  padding: 16px 18px;
}

.visual-tabs {
  display: flex;
  gap: 6px;
}

.visual-tabs span {
  width: 9px;
  height: 9px;
  border-radius: 50%;
  background: var(--line);
}

.visual-tabs span:nth-child(2) {
  background: var(--orange-600);
}

.visual-body {
  display: grid;
  gap: 14px;
  padding: 18px;
}

.metric-row {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 12px;
}

.metric {
  border: 1px solid var(--line);
  border-radius: 8px;
  background: var(--white);
  padding: 14px;
}

.metric strong {
  display: block;
  color: var(--blue-800);
  font-size: 1.55rem;
  line-height: 1;
}

.metric span,
.profile-row span,
.caption {
  color: var(--muted);
  font-size: 13px;
  font-weight: 750;
}

.guest-panel {
  border: 1px solid var(--line);
  border-radius: 8px;
  background: var(--white);
  padding: 16px;
}

.profile-row {
  display: grid;
  grid-template-columns: 44px minmax(0, 1fr) auto;
  gap: 12px;
  align-items: center;
  padding: 12px 0;
  border-bottom: 1px solid var(--line);
}

.profile-row:last-child {
  border-bottom: 0;
}

.avatar {
  width: 44px;
  height: 44px;
  border-radius: 8px;
  background: var(--blue-100);
  color: var(--blue-800);
  display: grid;
  place-items: center;
  font-weight: 900;
}

.status-pill,
.pill {
  display: inline-flex;
  align-items: center;
  border-radius: 999px;
  padding: 6px 10px;
  background: var(--orange-100);
  color: #704019;
  font-size: 12px;
  font-weight: 900;
}

.section {
  padding: 86px 0;
}

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

.section.dark {
  background: var(--blue-900);
  color: var(--white);
}

.section.tight {
  padding: 58px 0;
}

.section-head {
  max-width: 780px;
  margin-bottom: 34px;
}

.section-head.center {
  margin-inline: auto;
  text-align: center;
}

.section-head .muted,
.muted {
  color: var(--muted);
}

.dark .muted {
  color: rgba(255, 255, 255, 0.72);
}

.split {
  display: grid;
  grid-template-columns: minmax(0, 0.88fr) minmax(360px, 1fr);
  gap: 42px;
  align-items: center;
}

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

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

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

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

.card {
  border: 1px solid var(--line);
  border-radius: 8px;
  background: var(--white);
  box-shadow: var(--shadow);
  padding: 24px;
}

.card.accent {
  border-top: 5px solid var(--orange-600);
}

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

.icon-box {
  width: 44px;
  height: 44px;
  border-radius: 8px;
  display: grid;
  place-items: center;
  margin-bottom: 16px;
  background: var(--blue-100);
  color: var(--blue-800);
  font-weight: 900;
}

.dark .icon-box {
  background: rgba(255, 255, 255, 0.12);
  color: var(--orange-600);
}

.value-list {
  display: grid;
  gap: 11px;
  margin: 20px 0 0;
  padding: 0;
  list-style: none;
}

.value-list li {
  display: flex;
  gap: 10px;
  color: var(--muted);
}

.dark .value-list li {
  color: rgba(255, 255, 255, 0.78);
}

.value-list li::before {
  content: "";
  width: 7px;
  height: 12px;
  flex: 0 0 7px;
  border-right: 2px solid var(--green-700);
  border-bottom: 2px solid var(--green-700);
  margin-top: 4px;
  transform: rotate(42deg);
}

.diagram {
  display: grid;
  gap: 14px;
}

.diagram-node {
  display: grid;
  grid-template-columns: 52px minmax(0, 1fr);
  gap: 14px;
  align-items: center;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: var(--white);
  padding: 18px;
}

.node-mark {
  width: 52px;
  height: 52px;
  border-radius: 8px;
  display: grid;
  place-items: center;
  background: var(--blue-800);
  color: var(--white);
  font-weight: 900;
}

.connector {
  width: 2px;
  height: 20px;
  margin-left: 25px;
  background: var(--orange-600);
}

.quote {
  border-left: 5px solid var(--orange-600);
  padding-left: 22px;
  color: var(--ink);
  font-size: 1.25rem;
  font-weight: 800;
}

.stat-band {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 1px;
  overflow: hidden;
  border: 1px solid rgba(255, 255, 255, 0.16);
  border-radius: 8px;
}

.stat {
  padding: 24px;
  background: rgba(255, 255, 255, 0.08);
}

.stat strong {
  display: block;
  color: var(--orange-600);
  font-size: 2.3rem;
  line-height: 1;
}

.form {
  display: grid;
  gap: 16px;
}

.field {
  display: grid;
  gap: 7px;
}

.field span {
  font-weight: 850;
}

.field input,
.field select,
.field textarea {
  width: 100%;
  border: 1px solid var(--line);
  border-radius: 8px;
  padding: 12px 13px;
  background: var(--white);
  color: var(--ink);
}

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

.honeypot {
  position: absolute;
  left: -10000px;
  width: 1px;
  height: 1px;
  overflow: hidden;
}

.checkbox {
  display: flex;
  gap: 10px;
  align-items: flex-start;
}

.checkbox input {
  margin-top: 6px;
}

.notice,
.error {
  border-radius: 8px;
  padding: 13px 15px;
}

.notice {
  background: rgba(82, 114, 99, 0.14);
  color: #294235;
}

.error {
  background: rgba(169, 104, 53, 0.14);
  color: #6c3712;
}

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

.faq-list details {
  border: 1px solid var(--line);
  border-radius: 8px;
  background: var(--white);
  padding: 18px 20px;
}

.faq-list summary {
  cursor: pointer;
  color: var(--blue-900);
  font-weight: 900;
}

.logo-card {
  display: grid;
  gap: 18px;
  align-content: start;
}

.logo-sample {
  min-height: 118px;
  display: grid;
  place-items: center;
  border-radius: 8px;
  background: var(--paper);
  padding: 18px;
}

.logo-sample img {
  width: 240px;
}

.legal {
  max-width: 880px;
}

.legal h1 {
  color: var(--blue-900);
  font-size: 3.3rem;
}

.legal h2 {
  margin-top: 30px;
  font-size: 1.8rem;
}

.site-footer {
  background: var(--blue-900);
  color: var(--white);
  padding: 46px 0 34px;
}

.footer-grid {
  display: grid;
  grid-template-columns: minmax(0, 1.25fr) minmax(180px, 0.55fr) minmax(180px, 0.55fr);
  gap: 34px;
}

.footer-logo {
  width: 220px;
  margin-bottom: 12px;
}

.footer-links {
  display: grid;
  gap: 8px;
  color: rgba(255, 255, 255, 0.78);
}

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

@media (max-width: 980px) {
  h1 {
    font-size: 3.5rem;
  }

  h2 {
    font-size: 2.25rem;
  }

  .hero-inner,
  .split,
  .grid.two,
  .grid.three,
  .grid.four,
  .stat-band,
  .footer-grid {
    grid-template-columns: 1fr;
  }

  .hero-inner {
    min-height: auto;
    padding: 62px 0 76px;
  }
}

@media (max-width: 760px) {
  .nav {
    min-height: auto;
    align-items: flex-start;
    flex-direction: column;
    padding: 14px 0;
  }

  .nav-links {
    width: 100%;
    flex-wrap: wrap;
    overflow-x: visible;
    gap: 14px;
    padding-bottom: 4px;
  }

  .nav-cta {
    white-space: nowrap;
  }

  .metric-row {
    grid-template-columns: 1fr;
  }

  .section {
    padding: 64px 0;
  }
}

@media (max-width: 520px) {
  .container {
    width: min(100% - 24px, 1160px);
  }

  h1 {
    font-size: 2.75rem;
  }

  h2 {
    font-size: 2rem;
  }

  .brand,
  .brand img {
    width: 178px;
  }

  .hero-actions .button,
  .button-row .button {
    width: 100%;
  }

  .card {
    padding: 20px;
  }

  .profile-row {
    grid-template-columns: 40px minmax(0, 1fr);
  }

  .profile-row .status-pill {
    grid-column: 2;
    justify-self: start;
  }
}
