:root {
  --ink: #102033;
  --muted: #5b687a;
  --line: #dbe3ee;
  --paper: #ffffff;
  --soft: #f4f7fb;
  --navy: #081c33;
  --blue: #1769e0;
  --blue-dark: #0f4fab;
  --gold: #f4b840;
  --green: #2f8f6f;
  --shadow: 0 18px 50px rgba(8, 28, 51, .12);
  --radius: 8px;
  --max: 1180px;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

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

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

a {
  color: inherit;
}

.skip-link {
  position: absolute;
  left: -999px;
  top: 8px;
  background: var(--gold);
  color: var(--navy);
  padding: 10px 14px;
  z-index: 10;
}

.skip-link:focus {
  left: 8px;
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 20;
  background: rgba(255, 255, 255, .96);
  border-bottom: 1px solid var(--line);
  backdrop-filter: blur(14px);
}

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

.brand {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  text-decoration: none;
  font-weight: 900;
}

.brand img {
  width: 48px;
  height: 48px;
  border-radius: 6px;
  object-fit: cover;
}

.brand span {
  display: block;
  font-size: .82rem;
  color: var(--muted);
  font-weight: 700;
}

.nav-links {
  display: flex;
  align-items: center;
  gap: 6px;
  margin: 0;
  padding: 0;
  list-style: none;
}

.nav-links a {
  display: inline-flex;
  align-items: center;
  min-height: 42px;
  padding: 0 12px;
  border-radius: 6px;
  text-decoration: none;
  color: #25364a;
  font-weight: 750;
  font-size: .95rem;
}

.nav-links a:hover,
.nav-links a[aria-current="page"] {
  background: var(--soft);
  color: var(--blue-dark);
}

.menu-toggle {
  display: none;
  border: 1px solid var(--line);
  background: #fff;
  border-radius: 6px;
  min-height: 42px;
  padding: 0 12px;
  font-weight: 800;
}

.button,
.button-secondary,
.button-dark {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 46px;
  padding: 0 18px;
  border-radius: 7px;
  text-decoration: none;
  font-weight: 850;
  border: 1px solid transparent;
  gap: 8px;
}

.button {
  color: #fff;
  background: var(--blue);
  box-shadow: 0 12px 26px rgba(23, 105, 224, .22);
}

.button:hover {
  background: var(--blue-dark);
}

.button-secondary {
  color: var(--navy);
  background: #fff;
  border-color: var(--line);
}

.button-secondary:hover {
  border-color: var(--blue);
  color: var(--blue-dark);
}

.button-dark {
  color: #fff;
  background: var(--navy);
}

.hero {
  background:
    linear-gradient(110deg, rgba(8, 28, 51, .9), rgba(8, 28, 51, .6)),
    url("../img/people/tim-speaking2.png") center / cover;
  color: #fff;
}

.hero-inner {
  width: min(var(--max), calc(100% - 32px));
  margin: 0 auto;
  min-height: 660px;
  display: grid;
  grid-template-columns: minmax(0, 720px);
  align-content: center;
  padding: 72px 0;
}

.eyebrow {
  display: inline-flex;
  width: fit-content;
  align-items: center;
  border: 1px solid rgba(255, 255, 255, .25);
  border-radius: 999px;
  padding: 7px 12px;
  color: #dfeaff;
  background: rgba(255, 255, 255, .08);
  font-size: .8rem;
  font-weight: 850;
  letter-spacing: .05em;
  text-transform: uppercase;
}

h1,
h2,
h3 {
  line-height: 1.05;
  margin: 0;
}

h1 {
  margin-top: 20px;
  font-size: clamp(2.6rem, 6vw, 5.7rem);
  letter-spacing: -.04em;
}

h2 {
  font-size: clamp(2rem, 4vw, 3.3rem);
  letter-spacing: -.03em;
}

h3 {
  font-size: 1.35rem;
}

.hero p {
  max-width: 680px;
  margin: 22px 0 0;
  font-size: clamp(1.1rem, 2vw, 1.35rem);
  color: rgba(255, 255, 255, .86);
}

.action-row {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 12px;
  margin-top: 28px;
}

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

.section-tight {
  padding: 52px 0;
}

.section-head {
  display: flex;
  align-items: end;
  justify-content: space-between;
  gap: 24px;
  margin-bottom: 28px;
}

.section-head p,
.lead {
  max-width: 760px;
  color: var(--muted);
  font-size: 1.08rem;
  margin: 14px 0 0;
}

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

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

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

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

.card,
.feature,
.project-card {
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: #fff;
  padding: 24px;
  box-shadow: 0 8px 26px rgba(8, 28, 51, .06);
}

.card p,
.feature p,
.project-card p {
  color: var(--muted);
  margin: 12px 0 0;
}

.card .button,
.card .button-secondary,
.project-card .button-secondary {
  margin-top: 18px;
}

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

.price-card {
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: #fff;
  padding: 26px;
  box-shadow: 0 8px 26px rgba(8, 28, 51, .06);
}

.price-card.featured {
  border-color: rgba(23, 105, 224, .42);
  box-shadow: 0 18px 42px rgba(23, 105, 224, .14);
}

.plan-label {
  margin: 0 0 12px;
  color: var(--blue-dark);
  font-weight: 900;
  text-transform: uppercase;
  font-size: .78rem;
  letter-spacing: .05em;
}

.price {
  margin: 22px 0 0;
  color: var(--navy);
  font-size: 2.4rem;
  line-height: 1;
  font-weight: 950;
}

.price span {
  color: var(--muted);
  font-size: .95rem;
  font-weight: 800;
}

.monthly {
  width: fit-content;
  margin: 10px 0 0;
  border-radius: 999px;
  background: #edf8f3;
  color: #17624b;
  padding: 6px 11px;
  font-weight: 900;
}

.feature-list {
  padding: 0;
  margin: 22px 0 0;
  list-style: none;
  display: grid;
  gap: 9px;
}

.feature-list li {
  display: grid;
  grid-template-columns: 22px 1fr;
  gap: 8px;
  color: #34465b;
}

.feature-list li::before {
  content: "OK";
  color: var(--green);
  font-weight: 950;
  font-size: .72rem;
}

.table-wrap {
  width: 100%;
  max-width: 100%;
  overflow-x: auto;
  -webkit-overflow-scrolling: touch;
}

.table-wrap.compact {
  margin-top: 16px;
}

.service-table {
  width: 100%;
  border-collapse: collapse;
  background: #fff;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  overflow: hidden;
}

.service-table th,
.service-table td {
  padding: 14px 16px;
  border-bottom: 1px solid var(--line);
  text-align: left;
  vertical-align: top;
}

.service-table th {
  color: var(--navy);
  background: #eef4fb;
  font-weight: 900;
}

.service-table tr:last-child th,
.service-table tr:last-child td {
  border-bottom: 0;
}

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

.mini-card {
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: #fff;
  padding: 18px;
  min-height: 128px;
  box-shadow: 0 8px 22px rgba(8, 28, 51, .05);
}

.mini-card p {
  color: var(--muted);
  margin: 10px 0 0;
  font-weight: 800;
}

.contact-layout {
  align-items: start;
}

.contact-form {
  display: grid;
  gap: 16px;
  margin-top: 20px;
}

.form-row {
  display: grid;
  gap: 7px;
}

.form-row label {
  color: var(--navy);
  font-weight: 850;
}

.form-row input,
.form-row select,
.form-row textarea {
  width: 100%;
  border: 1px solid var(--line);
  border-radius: 7px;
  background: #fff;
  color: var(--ink);
  font: inherit;
  padding: 12px 13px;
}

.form-row textarea {
  resize: vertical;
}

.form-row input:focus,
.form-row select:focus,
.form-row textarea:focus {
  outline: 3px solid rgba(23, 105, 224, .18);
  border-color: var(--blue);
}

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

.notice {
  border-radius: 7px;
  margin-top: 18px;
  padding: 14px 16px;
}

.notice ul {
  margin: 8px 0 0;
  padding-left: 20px;
}

.notice.success {
  background: #edf8f3;
  border: 1px solid #a8dbc9;
  color: #17624b;
}

.notice.error {
  background: #fff2f0;
  border: 1px solid #f0b7ad;
  color: #8d2d1f;
}

.service-icon {
  width: 42px;
  height: 42px;
  display: grid;
  place-items: center;
  border-radius: 8px;
  background: #eaf2ff;
  color: var(--blue);
  font-weight: 950;
  margin-bottom: 16px;
}

.book-card {
  display: grid;
  grid-template-columns: 118px 1fr;
  gap: 18px;
  align-items: start;
}

.book-card img {
  width: 118px;
  aspect-ratio: 2 / 3;
  object-fit: contain;
  border-radius: 6px;
  border: 1px solid var(--line);
  background: var(--soft);
}

.tag-list {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin-top: 16px;
}

.tag {
  border-radius: 999px;
  background: var(--soft);
  border: 1px solid var(--line);
  padding: 5px 10px;
  color: #39495c;
  font-size: .86rem;
  font-weight: 750;
}

.split {
  display: grid;
  grid-template-columns: .9fr 1.1fr;
  align-items: center;
  gap: 42px;
}

.split img {
  border-radius: 8px;
  box-shadow: var(--shadow);
}

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

.check-list li {
  display: grid;
  grid-template-columns: 24px 1fr;
  gap: 8px;
}

.check-list li::before {
  content: "OK";
  color: var(--green);
  font-weight: 950;
  font-size: .78rem;
}

.project-card {
  display: flex;
  min-height: 100%;
  flex-direction: column;
  min-width: 0;
  overflow-wrap: anywhere;
}

.project-card h3 {
  overflow-wrap: anywhere;
  word-break: break-word;
}

.project-card .status {
  width: fit-content;
  margin-bottom: 14px;
  padding: 5px 9px;
  border-radius: 999px;
  background: #edf8f3;
  color: #17624b;
  font-weight: 850;
  font-size: .82rem;
}

.project-card .button-secondary {
  margin-top: auto;
}

.callout {
  border-radius: 8px;
  background: var(--navy);
  color: #fff;
  padding: 34px;
  display: grid;
  grid-template-columns: 1fr auto;
  gap: 22px;
  align-items: center;
}

.callout p {
  color: rgba(255, 255, 255, .78);
  margin: 10px 0 0;
}

.page-hero {
  background: linear-gradient(135deg, #07192f, #123d73);
  color: #fff;
}

.page-hero .section {
  padding: 78px 0;
}

.page-hero p {
  max-width: 800px;
  color: rgba(255, 255, 255, .82);
  font-size: 1.16rem;
}

.footer {
  background: #07192f;
  color: #dbe7f7;
  padding: 44px 0;
}

.footer-inner {
  width: min(var(--max), calc(100% - 32px));
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1.1fr .9fr;
  gap: 30px;
  align-items: start;
}

.footer p {
  max-width: 620px;
  margin: 10px 0;
}

.footer a {
  color: #fff;
  text-decoration: none;
}

.footer-links {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 8px 18px;
  justify-self: end;
  min-width: min(100%, 360px);
}

.footer-links a {
  overflow-wrap: anywhere;
}

.footer small {
  color: #aab9cd;
}

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

  .nav {
    flex-wrap: wrap;
    padding: 12px 0;
  }

  .nav-links {
    display: none;
    width: 100%;
    flex-direction: column;
    align-items: stretch;
    padding: 10px 0 4px;
  }

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

  .nav-links a {
    justify-content: center;
  }

  .hero-inner {
    min-height: 580px;
  }

  .grid,
  .grid-2,
  .grid-4,
  .pricing-grid,
  .split,
  .footer-inner,
  .callout {
    grid-template-columns: 1fr;
  }

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

  .section-head {
    display: block;
  }

  .footer-links {
    justify-self: stretch;
  }
}

@media (max-width: 560px) {
  .brand strong {
    font-size: .95rem;
  }

  .brand span {
    display: none;
  }

  .book-card {
    grid-template-columns: 86px 1fr;
  }

  .book-card img {
    width: 86px;
  }

  .section {
    padding: 54px 0;
  }

  .addon-grid {
    grid-template-columns: 1fr;
  }

  .price {
    font-size: 2rem;
  }

  .service-table,
  .service-table thead,
  .service-table tbody,
  .service-table tr,
  .service-table th,
  .service-table td {
    display: block;
    width: 100%;
  }

  .service-table thead {
    display: none;
  }

  .service-table tr {
    border-bottom: 1px solid var(--line);
  }

  .service-table th,
  .service-table td {
    border-bottom: 0;
    padding: 10px 12px;
  }

  .service-table tbody th {
    background: #eef4fb;
  }
}
