:root {
  --bg: #ffffff;
  --text: #111318;
  --muted: #5f6673;
  --soft: #f6f7f9;
  --line: #dde1e7;
  --blue: #4c86df;
  --blue-deep: #2d66c6;
  --ink: #08090b;
  --dark-panel: #1f2021;
  --radius: 8px;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  background: var(--bg);
  color: var(--text);
  font-family: Inter, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  letter-spacing: 0;
}

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

.site-header {
  position: fixed;
  top: 0;
  left: 0;
  z-index: 20;
  display: grid;
  grid-template-columns: 1fr auto 1fr;
  align-items: center;
  width: 100%;
  height: 52px;
  padding: 0 112px;
  background: rgba(255, 255, 255, 0.86);
  border-top: 2px solid #2e7de0;
  backdrop-filter: blur(14px);
}

.brand {
  display: inline-flex;
  align-items: center;
  width: 58px;
}

.brand img,
.footer-brand img {
  display: block;
  width: 46px;
  height: auto;
  object-fit: contain;
}

.nav-links {
  display: flex;
  gap: 34px;
  align-items: center;
  color: #20242c;
  font-size: 13px;
  font-weight: 600;
}

.nav-links a,
.language,
.site-footer a {
  transition: color 160ms ease;
}

.nav-links a:hover,
.language:hover,
.site-footer a:hover {
  color: var(--blue-deep);
}

.header-actions {
  display: flex;
  justify-content: flex-end;
  align-items: center;
  gap: 18px;
}

.language {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  color: #20242c;
  font-size: 13px;
  font-weight: 600;
}

.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-width: 108px;
  height: 42px;
  padding: 0 18px;
  border: 1px solid transparent;
  border-radius: var(--radius);
  font-size: 13px;
  font-weight: 700;
  line-height: 1;
  white-space: nowrap;
  transition: transform 160ms ease, box-shadow 160ms ease, background 160ms ease;
}

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

.button-dark {
  background: #07080a;
  color: #fff;
  box-shadow: 0 10px 22px rgba(7, 8, 10, 0.12);
}

.button-light {
  background: #fff;
  border-color: var(--line);
  color: #171a20;
}

.button-small {
  min-width: 92px;
  height: 30px;
  padding: 0 13px;
  font-size: 12px;
}

.menu-button {
  display: none;
  width: 34px;
  height: 34px;
  border: 0;
  background: transparent;
  padding: 7px;
}

.menu-button span {
  display: block;
  width: 18px;
  height: 2px;
  margin: 4px 0;
  background: #20242c;
}

.hero {
  min-height: 100vh;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 132px 24px 72px;
  background:
    linear-gradient(90deg, rgba(9, 17, 28, 0.035) 1px, transparent 1px),
    linear-gradient(180deg, rgba(9, 17, 28, 0.035) 1px, transparent 1px),
    #fff;
  background-size: 24px 24px;
}

.hero-inner {
  max-width: 760px;
  text-align: center;
}

.eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  height: 28px;
  padding: 0 13px;
  border: 1px solid #d8e5fb;
  border-radius: 999px;
  background: #edf4ff;
  color: var(--blue-deep);
  font-family: "JetBrains Mono", ui-monospace, monospace;
  font-size: 12px;
  font-weight: 600;
}

.dot {
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: var(--blue);
}

.hero h1 {
  margin: 32px 0 26px;
  font-size: 84px;
  line-height: 0.98;
  font-weight: 800;
  letter-spacing: 0;
}

.hero h1 span {
  display: block;
  color: var(--blue);
}

.hero p {
  max-width: 650px;
  margin: 0 auto;
  color: #525965;
  font-size: 19px;
  line-height: 1.65;
  font-weight: 500;
}

.hero-actions {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 18px;
  margin-top: 42px;
}

.text-link {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  height: 42px;
  color: #151922;
  font-size: 13px;
  font-weight: 700;
}

.section-band {
  background: #f7f8fa;
}

.pricing-section,
.why-section,
.metrics-section {
  padding: 86px 24px;
}

.section-heading {
  max-width: 720px;
  margin: 0 auto 42px;
  text-align: center;
}

.section-heading h2,
.serve-section h2,
.metrics-section h2 {
  margin: 0;
  color: #171a20;
  font-size: 32px;
  line-height: 1.2;
  font-weight: 800;
}

.section-heading p,
.section-lead {
  margin: 14px 0 0;
  color: var(--muted);
  font-size: 16px;
  line-height: 1.6;
  font-weight: 500;
}

.pricing-table {
  width: min(830px, 100%);
  margin: 0 auto;
  overflow: hidden;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: #fff;
  box-shadow: 0 12px 34px rgba(17, 24, 39, 0.04);
}

.pricing-row {
  display: grid;
  grid-template-columns: 1.1fr 1fr 0.7fr;
  align-items: center;
  min-height: 54px;
  padding: 0 22px;
  border-top: 1px solid #edf0f4;
  color: #565e69;
  font-size: 14px;
  font-weight: 600;
}

.table-head {
  border-top: 0;
  color: #69717e;
  font-family: "JetBrains Mono", ui-monospace, monospace;
  font-size: 12px;
}

.model-name {
  display: flex;
  align-items: center;
  gap: 9px;
  color: #20242c;
  font-weight: 800;
}

.status {
  width: 7px;
  height: 7px;
  border-radius: 50%;
  flex: 0 0 auto;
}

.status-green {
  background: #16d05b;
}

.status-orange {
  background: #ff8b35;
}

.status-blue {
  background: #3385ff;
}

.price {
  color: var(--blue-deep);
  font-weight: 800;
}

.why-section {
  background: #fff;
}

.feature-grid {
  width: min(1100px, calc(100% - 48px));
  margin: 0 auto;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 32px;
}

.feature-card {
  min-height: 360px;
  padding: 28px;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: #fff;
}

.icon-box {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 34px;
  height: 34px;
  margin-bottom: 38px;
  border-radius: var(--radius);
  background: #ebf3ff;
  color: var(--blue-deep);
  font-weight: 800;
}

.feature-card h3 {
  margin: 0 0 14px;
  font-size: 19px;
  line-height: 1.25;
  font-weight: 800;
}

.feature-card p {
  margin: 0;
  color: #555d68;
  font-size: 14px;
  line-height: 1.65;
  font-weight: 500;
}

.model-list,
.check-list,
.why-now ul {
  list-style: none;
  margin: 22px 0 0;
  padding: 0;
}

.model-list li,
.check-list li {
  margin-top: 9px;
  color: #3c4450;
  font-size: 13px;
  font-weight: 600;
}

.model-list li::before {
  content: "→";
  margin-right: 8px;
  color: #7c8796;
}

.check-list li::before {
  content: "◎";
  margin-right: 8px;
  color: var(--blue-deep);
}

.savings-box {
  margin-top: 28px;
  padding: 18px;
  border: 1px solid #e6e9ee;
  border-radius: var(--radius);
  background: #f7f8fa;
}

.savings-box span {
  display: block;
  margin-bottom: 7px;
  color: #69717e;
  font-size: 12px;
  font-weight: 700;
}

.savings-box strong {
  color: var(--blue-deep);
  font-size: 32px;
  line-height: 1;
  font-weight: 800;
}

.leadership-section {
  padding: 108px 24px 98px;
  background:
    linear-gradient(90deg, rgba(9, 17, 28, 0.03) 1px, transparent 1px),
    linear-gradient(180deg, rgba(9, 17, 28, 0.03) 1px, transparent 1px),
    #fff;
  background-size: 24px 24px;
}

.leadership-heading {
  max-width: 900px;
  margin: 0 auto 62px;
  text-align: center;
}

.leadership-heading h2 {
  margin: 28px 0 18px;
  color: #08090b;
  font-size: 66px;
  line-height: 1.02;
  font-weight: 800;
}

.leadership-heading p {
  margin: 0;
  color: #5f6673;
  font-size: 22px;
  line-height: 1.5;
  font-weight: 500;
}

.team-grid {
  width: min(1180px, calc(100% - 48px));
  margin: 0 auto;
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 34px;
}

.team-card {
  min-height: 510px;
  padding: 42px;
  border: 1px solid var(--line);
  border-radius: 20px;
  background: rgba(255, 255, 255, 0.94);
  box-shadow: 0 18px 48px rgba(17, 24, 39, 0.035);
}

.team-header {
  display: grid;
  grid-template-columns: 150px 1fr;
  gap: 34px;
  align-items: center;
  margin-bottom: 42px;
}

.team-header img {
  width: 150px;
  aspect-ratio: 1;
  border: 3px solid #d6deec;
  border-radius: 14px;
  object-fit: cover;
  object-position: center;
  background: #edf0f5;
}

.team-header h3 {
  margin: 0 0 12px;
  color: #08090b;
  font-size: 34px;
  line-height: 1.12;
  font-weight: 800;
}

.team-header span {
  color: var(--blue-deep);
  font-size: 19px;
  line-height: 1.35;
  font-weight: 600;
  text-transform: uppercase;
}

.team-card p {
  margin: 0 0 26px;
  color: #555d68;
  font-size: 18px;
  line-height: 1.7;
  font-weight: 500;
}

.team-card p:last-child {
  margin-bottom: 0;
}

.team-card strong {
  color: #2f333b;
  font-weight: 800;
}

.serve-section {
  padding: 102px 24px;
  background:
    linear-gradient(rgba(255, 255, 255, 0.035) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255, 255, 255, 0.035) 1px, transparent 1px),
    #070809;
  background-size: 24px 24px;
  color: #fff;
}

.serve-grid {
  width: min(1100px, calc(100% - 48px));
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1fr 520px;
  gap: 86px;
  align-items: center;
}

.serve-section h2 {
  color: #fff;
}

.audience-list {
  display: grid;
  gap: 28px;
  margin-top: 48px;
}

.audience-list article span {
  color: var(--blue);
  font-size: 16px;
  font-weight: 800;
}

.audience-list h3 {
  display: inline;
  margin: 0 0 0 7px;
  font-size: 16px;
  font-weight: 800;
}

.audience-list p {
  margin: 10px 0 0;
  color: #a9b0bb;
  font-size: 14px;
  line-height: 1.6;
  font-weight: 500;
}

.why-now {
  padding: 34px;
  border: 1px solid rgba(255, 255, 255, 0.12);
  border-radius: var(--radius);
  background: var(--dark-panel);
  box-shadow: 0 26px 70px rgba(0, 0, 0, 0.22);
}

.why-now h3 {
  margin: 0 0 22px;
  font-size: 19px;
  line-height: 1.3;
}

.why-now p,
.why-now li {
  color: #d0d4da;
  font-size: 14px;
  line-height: 1.6;
  font-weight: 500;
}

.why-now li {
  margin-top: 12px;
}

.why-now li::before {
  content: "×";
  margin-right: 8px;
  color: #b7bec8;
}

.why-now div {
  margin-top: 28px;
  padding: 18px;
  border-radius: var(--radius);
  background: #213a61;
  color: #65a2ff;
  font-size: 14px;
  line-height: 1.55;
  font-weight: 800;
}

.metrics-section {
  text-align: center;
  background: #fff;
}

.metrics-grid {
  width: min(930px, 100%);
  margin: 42px auto 0;
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 22px;
}

.metrics-grid div {
  display: grid;
  gap: 8px;
}

.metrics-grid strong {
  color: var(--blue);
  font-size: 34px;
  line-height: 1;
  font-weight: 800;
}

.metrics-grid span {
  color: #7b8491;
  font-size: 11px;
  font-weight: 800;
  text-transform: uppercase;
}

.site-footer {
  padding: 70px 112px 34px;
  background: #f7f8fa;
  border-top: 1px solid var(--line);
}

.footer-grid {
  display: grid;
  grid-template-columns: 1.4fr repeat(3, 1fr);
  gap: 90px;
  max-width: 1100px;
  margin: 0 auto;
}

.footer-brand p,
.site-footer a,
.footer-bottom {
  color: #5f6673;
  font-size: 13px;
  line-height: 1.7;
  font-weight: 500;
}

.footer-brand p {
  max-width: 210px;
  margin: 22px 0 0;
}

.site-footer h3 {
  margin: 0 0 22px;
  color: #151922;
  font-family: "JetBrains Mono", ui-monospace, monospace;
  font-size: 11px;
  font-weight: 800;
  text-transform: uppercase;
}

.site-footer a {
  display: block;
  margin-top: 12px;
}

.footer-bottom {
  display: flex;
  justify-content: space-between;
  align-items: center;
  max-width: 1100px;
  margin: 58px auto 0;
  padding-top: 26px;
  border-top: 1px solid var(--line);
}

.footer-bottom p {
  margin: 0;
}

.footer-bottom div {
  display: flex;
  gap: 30px;
}

@media (max-width: 900px) {
  .site-header {
    grid-template-columns: auto 1fr auto;
    height: 48px;
    padding: 0 16px;
  }

  .nav-links,
  .language,
  .header-actions .button {
    display: none;
  }

  .menu-button {
    display: block;
  }

  .site-header.menu-open {
    align-items: start;
    height: auto;
    min-height: 48px;
    padding-bottom: 16px;
    background: rgba(255, 255, 255, 0.96);
  }

  .site-header.menu-open .nav-links {
    grid-column: 1 / -1;
    display: grid;
    gap: 10px;
    width: 100%;
    padding-top: 12px;
  }

  .hero {
    min-height: 100vh;
    padding: 186px 20px 74px;
  }

  .hero h1 {
    margin-top: 24px;
    font-size: 38px;
    line-height: 1.05;
  }

  .hero p {
    font-size: 14px;
    line-height: 1.65;
  }

  .hero-actions {
    flex-direction: column;
    gap: 14px;
    margin-top: 32px;
  }

  .hero-actions .button,
  .hero-actions .text-link {
    min-width: 122px;
  }

  .pricing-section,
  .why-section,
  .leadership-section,
  .metrics-section {
    padding: 70px 16px;
  }

  .section-heading h2,
  .serve-section h2,
  .metrics-section h2 {
    font-size: 28px;
  }

  .pricing-table {
    border-radius: var(--radius);
  }

  .pricing-row {
    grid-template-columns: 1fr 0.9fr 0.7fr;
    min-height: 64px;
    padding: 0 12px;
    column-gap: 8px;
    font-size: 12px;
  }

  .table-head {
    font-size: 10px;
  }

  .model-name {
    align-items: flex-start;
  }

  .feature-grid,
  .team-grid,
  .serve-grid {
    width: 100%;
    grid-template-columns: 1fr;
  }

  .feature-grid {
    gap: 18px;
  }

  .feature-card {
    min-height: auto;
  }

  .leadership-heading {
    margin-bottom: 38px;
  }

  .leadership-heading h2 {
    font-size: 40px;
  }

  .leadership-heading p {
    font-size: 16px;
  }

  .team-grid {
    gap: 18px;
  }

  .team-card {
    min-height: auto;
    padding: 24px;
    border-radius: var(--radius);
  }

  .team-header {
    grid-template-columns: 96px 1fr;
    gap: 18px;
    margin-bottom: 28px;
  }

  .team-header img {
    width: 96px;
    border-radius: var(--radius);
  }

  .team-header h3 {
    font-size: 25px;
  }

  .team-header span {
    font-size: 14px;
  }

  .team-card p {
    font-size: 15px;
  }

  .serve-section {
    padding: 70px 16px;
  }

  .serve-grid {
    gap: 40px;
  }

  .why-now {
    padding: 24px;
  }

  .metrics-grid {
    grid-template-columns: repeat(2, 1fr);
    row-gap: 34px;
  }

  .site-footer {
    padding: 58px 20px 34px;
  }

  .footer-grid {
    grid-template-columns: 1fr;
    gap: 34px;
  }

  .footer-bottom {
    display: grid;
    gap: 18px;
    margin-top: 40px;
  }
}

@media (max-width: 430px) {
  .brand img,
  .footer-brand img {
    width: 34px;
  }

  .eyebrow {
    font-size: 10px;
  }

  .savings-box strong,
  .metrics-grid strong {
    font-size: 28px;
  }
}
