:root {
  --ink: #061b5f;
  --muted: #4e5d81;
  --paper: #f7f9ff;
  --white: #ffffff;
  --blue: #246fc4;
  --blue-dark: #061b5f;
  --blue-soft: #d8e8fb;
  --gold: #b18423;
  --gold-dark: #8c6612;
  --line: rgba(6, 27, 95, 0.16);
  --shadow: 0 20px 50px rgba(6, 27, 95, 0.13);
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  color: var(--ink);
  background: var(--paper);
  font-family: Inter, Arial, sans-serif;
  line-height: 1.6;
}

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

.site-header {
  position: fixed;
  z-index: 20;
  top: 0;
  left: 0;
  right: 0;
  display: grid;
  grid-template-columns: 1fr auto 1fr;
  align-items: center;
  gap: 24px;
  padding: 18px clamp(18px, 4vw, 54px);
  color: var(--white);
  transition: background 180ms ease, color 180ms ease, box-shadow 180ms ease;
}

.site-header.is-scrolled {
  color: var(--ink);
  background: rgba(247, 249, 255, 0.94);
  box-shadow: 0 8px 24px rgba(6, 27, 95, 0.08);
  backdrop-filter: blur(16px);
}

.subpage .site-header {
  color: var(--ink);
  background: rgba(247, 249, 255, 0.94);
  box-shadow: 0 8px 24px rgba(6, 27, 95, 0.08);
  backdrop-filter: blur(16px);
}

.brand,
.main-nav,
.header-action {
  display: flex;
  align-items: center;
}

.brand {
  gap: 10px;
  font-weight: 800;
}

.brand-mark {
  display: grid;
  width: 44px;
  height: 36px;
  place-items: center;
  border-radius: 8px;
  color: var(--white);
  background: linear-gradient(135deg, var(--blue-dark), var(--blue));
  font-size: 0.78rem;
}

.main-nav {
  gap: clamp(14px, 3vw, 34px);
  font-size: 0.95rem;
  font-weight: 700;
}

.header-action {
  justify-self: end;
  min-height: 40px;
  padding: 8px 16px;
  border: 1px solid currentColor;
  border-radius: 8px;
  font-weight: 800;
}

.hero {
  position: relative;
  display: grid;
  min-height: 92vh;
  align-items: center;
  overflow: hidden;
  background:
    linear-gradient(90deg, rgba(2, 16, 67, 0.91) 0%, rgba(6, 27, 95, 0.72) 42%, rgba(36, 111, 196, 0.1) 76%),
    url("assets/hero-business-launch.png") center / cover no-repeat;
}

.hero-overlay {
  position: absolute;
  inset: auto 0 0;
  height: 35%;
  background: linear-gradient(0deg, var(--paper), rgba(247, 249, 255, 0));
  pointer-events: none;
}

.hero-content {
  position: relative;
  z-index: 1;
  width: min(720px, calc(100% - 36px));
  padding: 120px 0 110px;
  margin-left: clamp(18px, 8vw, 104px);
  color: var(--white);
}

.eyebrow {
  margin: 0 0 12px;
  color: var(--gold);
  font-size: clamp(1.45rem, 2.45vw, 1.95rem);
  font-weight: 900;
  letter-spacing: 0;
  text-transform: none;
}

h1,
h2,
h3,
p {
  overflow-wrap: anywhere;
}

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

h1 {
  max-width: 760px;
  font-size: clamp(1.78rem, 3.65vw, 3.15rem);
}

h2 {
  font-size: clamp(1.2rem, 1.95vw, 1.9rem);
}

h3 {
  font-size: 1.3rem;
}

.hero-copy {
  max-width: 570px;
  margin: 26px 0 0;
  color: rgba(255, 255, 255, 0.86);
  font-size: clamp(1rem, 1.5vw, 1.25rem);
}

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

.button {
  display: inline-flex;
  min-height: 48px;
  align-items: center;
  justify-content: center;
  padding: 12px 20px;
  border: 1px solid transparent;
  border-radius: 8px;
  font-weight: 800;
  transition: transform 160ms ease, background 160ms ease, border-color 160ms ease;
}

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

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

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

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

.text-link {
  display: inline-flex;
  margin-top: 10px;
  color: var(--blue);
  font-weight: 800;
}

.text-link:hover {
  color: var(--gold-dark);
}

.trust-strip {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  width: min(1120px, calc(100% - 36px));
  margin: -48px auto 0;
  position: relative;
  z-index: 2;
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: 8px;
  box-shadow: var(--shadow);
}

.trust-strip div {
  padding: 24px;
}

.trust-strip div + div {
  border-left: 1px solid var(--line);
}

.trust-strip strong,
.trust-strip span {
  display: block;
}

.trust-strip strong {
  font-size: 1.05rem;
}

.trust-strip span {
  color: var(--muted);
}

.section,
.feature-band,
.contact-section {
  width: min(1120px, calc(100% - 36px));
  margin: 0 auto;
  padding: clamp(72px, 10vw, 124px) 0;
}

.section-heading {
  display: grid;
  grid-template-columns: minmax(0, 0.75fr) minmax(0, 1.25fr);
  gap: 28px;
  align-items: end;
  margin-bottom: 34px;
}

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

.service-card {
  min-height: 258px;
  padding: 28px;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: var(--white);
}

.service-card-wide {
  grid-column: span 2;
}

.service-icon {
  display: inline-flex;
  margin-bottom: 38px;
  color: var(--gold);
  font-weight: 900;
}

.service-card p,
.feature-text p,
.about-copy p,
.contact-copy p {
  color: var(--muted);
}

.feature-text .eyebrow {
  color: var(--gold);
}

.feature-band {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(320px, 0.78fr);
  gap: clamp(34px, 6vw, 72px);
  align-items: start;
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
}

.feature-text p {
  max-width: 640px;
  margin-top: 22px;
  font-size: 1.08rem;
}

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

.feature-list div {
  padding: 22px;
  border-radius: 8px;
  background: #eaf3ff;
}

.feature-list div:nth-child(2) {
  background: #fbf4e4;
}

.feature-list div:nth-child(3) {
  background: #edf1fb;
}

.feature-list span {
  color: var(--blue-dark);
  font-weight: 900;
}

.feature-list p {
  margin: 8px 0 0;
  color: var(--muted);
}

.split-section,
.contact-section {
  display: grid;
  grid-template-columns: minmax(0, 0.9fr) minmax(0, 1.1fr);
  gap: clamp(34px, 6vw, 72px);
}

.about-copy p:first-child {
  margin-top: 0;
}

.contact-section {
  align-items: start;
  padding-top: 0;
  grid-template-columns: minmax(0, 760px);
}

.contact-details {
  display: grid;
  gap: 12px;
  margin-top: 26px;
}

.contact-details a {
  display: grid;
  gap: 2px;
  padding: 16px 18px;
  border: 1px solid var(--line);
  border-radius: 8px;
  color: var(--blue-dark);
  background: var(--white);
  box-shadow: 0 10px 26px rgba(6, 27, 95, 0.07);
  font-weight: 900;
}

.contact-details span {
  color: var(--gold);
  font-size: 0.86rem;
  font-weight: 900;
}

.page-hero {
  display: grid;
  min-height: 58vh;
  align-items: end;
  padding: 150px clamp(18px, 8vw, 104px) 78px;
  color: var(--white);
  background:
    linear-gradient(90deg, rgba(2, 16, 67, 0.94), rgba(6, 27, 95, 0.76), rgba(36, 111, 196, 0.18)),
    url("assets/hero-business-launch.png") center / cover no-repeat;
}

.page-hero > div {
  width: min(820px, 100%);
}

.page-hero p:not(.eyebrow) {
  max-width: 680px;
  margin: 24px 0 0;
  color: rgba(255, 255, 255, 0.86);
  font-size: clamp(1.02rem, 1.6vw, 1.28rem);
}

.about-page-section,
.values-band,
.about-cta {
  width: min(1120px, calc(100% - 36px));
  margin: 0 auto;
  padding: clamp(66px, 9vw, 112px) 0;
}

.about-page-section {
  display: grid;
  grid-template-columns: minmax(0, 0.82fr) minmax(0, 1.18fr);
  gap: clamp(34px, 6vw, 72px);
}

.large-copy {
  margin: 0;
  color: var(--muted);
  font-size: clamp(1.18rem, 2vw, 1.55rem);
  line-height: 1.55;
}

.values-band {
  display: grid;
  grid-template-columns: minmax(0, 0.9fr) minmax(0, 1.1fr);
  gap: clamp(34px, 6vw, 72px);
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
}

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

.values-grid span {
  display: flex;
  min-height: 72px;
  align-items: center;
  padding: 18px;
  border: 1px solid var(--line);
  border-radius: 8px;
  color: var(--blue-dark);
  background: var(--white);
  box-shadow: 0 12px 30px rgba(6, 27, 95, 0.07);
  font-weight: 900;
}

.values-grid span:nth-child(2n) {
  background: #fbf4e4;
}

.bio-copy {
  color: var(--muted);
  font-size: 1.04rem;
}

.bio-copy p:first-child {
  margin-top: 0;
}

.bio-copy h2 {
  margin-bottom: 22px;
  color: var(--ink);
}

.meet-section {
  align-items: start;
  border-top: 1px solid var(--line);
}

.profile-card {
  overflow: hidden;
  width: min(100%, 360px);
  border: 1px solid var(--line);
  border-radius: 6px;
  background: var(--white);
  box-shadow: var(--shadow);
}

.profile-card img {
  display: block;
  width: 100%;
  aspect-ratio: 1 / 1;
  height: auto;
  object-fit: cover;
  object-position: center 18%;
}

.about-cta {
  padding-top: 0;
}

.about-cta h2 {
  max-width: 780px;
  margin-bottom: 26px;
}

.site-footer {
  display: flex;
  justify-content: space-between;
  gap: 20px;
  padding: 28px clamp(18px, 4vw, 54px);
  color: var(--white);
  background: var(--ink);
}

.site-footer p {
  margin: 0;
}

code {
  padding: 2px 5px;
  border-radius: 6px;
  background: rgba(6, 27, 95, 0.08);
}

@media (max-width: 860px) {
  .site-header {
    grid-template-columns: 1fr auto;
  }

  .main-nav {
    display: none;
  }

  .hero {
    min-height: 88vh;
    background-position: 58% center;
  }

  .hero-content {
    padding-bottom: 92px;
    margin-left: 18px;
  }

  .trust-strip,
  .section-heading,
  .feature-band,
  .split-section,
  .contact-section,
  .about-page-section,
  .values-band,
  .values-grid {
    grid-template-columns: 1fr;
  }

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

  .trust-strip div + div {
    border-top: 1px solid var(--line);
    border-left: 0;
  }
}

@media (max-width: 560px) {
  .site-header {
    padding: 14px 16px;
  }

  .brand span:last-child {
    display: none;
  }

  .header-action {
    min-height: 36px;
    padding: 6px 10px;
    font-size: 0.88rem;
  }

  h1 {
    font-size: clamp(1.62rem, 7.6vw, 2.22rem);
  }

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

  .service-card {
    min-height: 0;
  }

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

  .service-card-wide {
    grid-column: auto;
  }

  .service-icon {
    margin-bottom: 30px;
  }

  .site-footer {
    flex-direction: column;
  }
}
