:root {
  --ink: #ffffff;
  --muted-ink: #a0a0a0;
  --paper: #000000;
  --white: #ffffff;
  --charcoal: #060606;
  --charcoal-deep: #000000;
  --panel: #0d0d0d;
  --warm-gray: #111111;
  --accent: #3b82f6;
  --accent-soft: #60a5fa;
  --soft-panel: #060606;
  --line: rgba(255, 255, 255, 0.22);
  --max: 1180px;
  --header-h: 166px;
  font-family: Arial, Helvetica, sans-serif;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  color: var(--ink);
  background: var(--paper);
  font-size: 16px;
  line-height: 1.65;
}

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

.site-header {
  position: fixed;
  z-index: 20;
  top: 0;
  left: 0;
  width: 100%;
  color: var(--white);
  transition: background 180ms ease, color 180ms ease, box-shadow 180ms ease;
}

.site-header.is-scrolled {
  color: var(--ink);
  background: rgba(0, 0, 0, 0.97);
  box-shadow: 0 12px 34px rgba(59, 130, 246, 0.12);
}

.site-header--solid {
  color: var(--ink);
  background: rgba(0, 0, 0, 0.97);
  box-shadow: 0 12px 34px rgba(59, 130, 246, 0.12);
}

.topbar,
.navbar {
  width: min(calc(100% - 96px), var(--max));
  margin: 0 auto;
}

.topbar {
  display: flex;
  justify-content: space-between;
  align-items: center;
  min-height: 46px;
  border-bottom: 1px solid rgba(255, 255, 255, 0.24);
  font-size: 14px;
}

.site-header.is-scrolled .topbar {
  border-bottom-color: rgba(255, 255, 255, 0.1);
}

.topbar__left,
.topbar__right,
.nav-links {
  display: flex;
  align-items: center;
  gap: 28px;
}

.topbar__right {
  gap: 12px;
}

.social-link {
  display: inline-grid;
  place-items: center;
  width: 34px;
  height: 34px;
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 999px;
  color: var(--white);
  background: rgba(255, 255, 255, 0.035);
  transition:
    color 180ms ease,
    border-color 180ms ease,
    background 180ms ease,
    box-shadow 180ms ease,
    transform 180ms ease;
}

.social-link svg {
  width: 17px;
  height: 17px;
  fill: currentColor;
}

.social-link:hover {
  color: var(--white);
  border-color: rgba(96, 165, 250, 0.65);
  background: rgba(59, 130, 246, 0.22);
  box-shadow: 0 0 22px rgba(59, 130, 246, 0.36);
  transform: translateY(-1px);
}

.mail-icon {
  position: relative;
  top: 4px;
  display: inline-block;
  width: 22px;
  height: 16px;
  margin-right: 12px;
  border-radius: 2px;
  background: currentColor;
}

.mail-icon::before,
.mail-icon::after {
  content: "";
  position: absolute;
  top: 2px;
  width: 13px;
  height: 1px;
  background: var(--charcoal-deep);
}

.mail-icon::before {
  left: 1px;
  transform: rotate(32deg);
}

.mail-icon::after {
  right: 1px;
  transform: rotate(-32deg);
}

.site-header.is-scrolled .mail-icon::before,
.site-header.is-scrolled .mail-icon::after {
  background: var(--charcoal-deep);
}

.navbar {
  display: flex;
  justify-content: space-between;
  align-items: center;
  min-height: 88px;
}

.brand {
  display: inline-flex;
  align-items: baseline;
  gap: 22px;
  min-width: 320px;
  letter-spacing: 8px;
  text-transform: uppercase;
}

.brand__main {
  font-size: 30px;
  font-weight: 800;
}

.brand__sub {
  color: rgba(255, 255, 255, 0.72);
  font-size: 18px;
  font-weight: 700;
}

.site-header.is-scrolled .brand__sub {
  color: var(--accent-soft);
}

.nav-links {
  gap: 26px;
  font-size: 12px;
  font-weight: 800;
  letter-spacing: 0;
  text-transform: uppercase;
}

.nav-cta {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 44px;
  padding: 0 22px;
  border-radius: 8px;
  color: var(--white);
  background: var(--accent);
  box-shadow: 0 0 24px rgba(59, 130, 246, 0.36);
  white-space: nowrap;
  transition:
    background 180ms ease,
    box-shadow 180ms ease,
    transform 180ms ease;
}

.nav-cta:hover {
  background: var(--accent-soft);
  box-shadow: 0 0 30px rgba(59, 130, 246, 0.48);
  transform: translateY(-1px);
}

.menu-toggle {
  display: none;
  width: 44px;
  height: 44px;
  padding: 0;
  border: 0;
  background: transparent;
  color: currentColor;
}

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

.hero {
  position: relative;
  display: grid;
  min-height: 760px;
  padding-top: var(--header-h);
  overflow: hidden;
  color: var(--white);
  isolation: isolate;
  background: var(--charcoal-deep);
}

.hero__media,
.hero__media span {
  position: absolute;
  inset: 0;
}

.hero__media {
  z-index: -2;
}

.hero__media span {
  opacity: 0;
  background-position: center;
  background-size: cover;
  transform: scale(1.025);
  transition:
    opacity 1100ms cubic-bezier(0.22, 1, 0.36, 1),
    transform 6200ms cubic-bezier(0.22, 1, 0.36, 1);
}

.hero__media span:nth-child(1) {
  background-image:
    radial-gradient(circle at 72% 48%, rgba(59, 130, 246, 0.24), transparent 32%),
    linear-gradient(90deg, rgba(0, 0, 0, 0.88), rgba(0, 0, 0, 0.42)),
    url("https://images.unsplash.com/photo-1486406146926-c627a92ad1ab?auto=format&fit=crop&w=2200&q=85");
}

.hero__media span:nth-child(2) {
  background-image:
    radial-gradient(circle at 72% 48%, rgba(59, 130, 246, 0.24), transparent 32%),
    linear-gradient(90deg, rgba(0, 0, 0, 0.86), rgba(0, 0, 0, 0.46)),
    url("https://images.unsplash.com/photo-1497366811353-6870744d04b2?auto=format&fit=crop&w=2200&q=85");
}

.hero__media span:nth-child(3) {
  background-image:
    radial-gradient(circle at 72% 48%, rgba(59, 130, 246, 0.24), transparent 32%),
    linear-gradient(90deg, rgba(0, 0, 0, 0.88), rgba(0, 0, 0, 0.42)),
    url("https://images.unsplash.com/photo-1504384308090-c894fdcc538d?auto=format&fit=crop&w=2200&q=85");
}

.hero__media span.is-active {
  opacity: 1;
  transform: scale(1);
}

.hero__shade {
  position: absolute;
  z-index: -1;
  inset: 0;
  background: rgba(0, 0, 0, 0.36);
}

.hero__slides {
  position: relative;
  z-index: 1;
  width: min(calc(100% - 96px), var(--max));
  min-height: 360px;
  margin: 0 auto 185px;
  align-self: end;
}

.hero__content {
  position: absolute;
  left: 0;
  bottom: 0;
  width: min(100%, 650px);
}

.hero__slide {
  opacity: 0;
  pointer-events: none;
  filter: blur(6px);
  transform: translateY(26px);
  transition:
    opacity 850ms cubic-bezier(0.22, 1, 0.36, 1),
    filter 850ms cubic-bezier(0.22, 1, 0.36, 1),
    transform 850ms cubic-bezier(0.22, 1, 0.36, 1);
}

.hero__slide.is-active {
  opacity: 1;
  pointer-events: auto;
  filter: blur(0);
  transform: translateY(0);
}

.eyebrow {
  margin: 0 0 10px;
  color: var(--accent);
  font-size: 14px;
  font-weight: 800;
  letter-spacing: 4px;
  text-transform: uppercase;
}

.hero h1 {
  max-width: 650px;
  margin: 0;
  font-size: 66px;
  line-height: 1.08;
  letter-spacing: 0;
}

.text-accent {
  color: var(--accent);
}

.hero__lead {
  max-width: 520px;
  margin: 12px 0 28px;
  color: rgba(255, 255, 255, 0.84);
  font-size: 22px;
  line-height: 1.55;
}

.button {
  display: inline-flex;
  align-items: center;
  justify-content: space-between;
  min-width: 150px;
  min-height: 52px;
  padding: 0 22px;
  gap: 18px;
  font-size: 14px;
  transition: transform 180ms ease, background 180ms ease, color 180ms ease;
}

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

.button--light {
  color: var(--white);
  background: var(--accent);
  box-shadow: 0 0 28px rgba(59, 130, 246, 0.42);
}

.button--dark {
  color: var(--white);
  background: var(--accent);
  box-shadow: 0 0 28px rgba(59, 130, 246, 0.34);
}

.slider-dots {
  position: absolute;
  z-index: 2;
  left: 50%;
  bottom: 190px;
  display: flex;
  gap: 12px;
  transform: translateX(-50%);
}

.dot {
  width: 10px;
  height: 10px;
  padding: 0;
  border: 1px solid rgba(255, 255, 255, 0.8);
  border-radius: 999px;
  background: transparent;
  cursor: pointer;
  transition:
    width 260ms ease,
    border-color 260ms ease,
    background 260ms ease,
    box-shadow 260ms ease;
}

.dot.is-active {
  width: 28px;
  border-color: var(--accent-soft);
  background: var(--accent);
  box-shadow: 0 0 18px rgba(59, 130, 246, 0.85);
}

.feature-strip {
  position: relative;
  z-index: 3;
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  width: min(calc(100% - 136px), var(--max));
  margin: -170px auto 0;
}

.feature-card {
  min-height: 265px;
  padding: 48px 50px;
  color: var(--white);
  background: var(--panel);
  border-right: 1px solid rgba(255, 255, 255, 0.07);
  box-shadow: 0 0 34px rgba(59, 130, 246, 0.08);
}

.feature-card--muted {
  background: linear-gradient(135deg, rgba(59, 130, 246, 0.34), var(--warm-gray) 56%);
}

.feature-card h2,
.service-list h3 {
  margin: 0 0 14px;
  font-size: 18px;
  line-height: 1.2;
  letter-spacing: 4px;
  text-transform: uppercase;
}

.feature-card p,
.service-list p {
  margin: 0;
  font-size: 15px;
  line-height: 1.65;
}

.section {
  display: grid;
  grid-template-columns: 36% 64%;
  width: min(calc(100% - 136px), var(--max));
  margin: 0 auto;
  padding: 130px 22px 110px;
}

.section-title {
  padding-right: 64px;
  border-right: 2px solid rgba(255, 255, 255, 0.13);
}

.section-title h2,
.insight h2 {
  margin: 0;
  max-width: 330px;
  font-size: 42px;
  font-weight: 300;
  line-height: 1.22;
  text-transform: uppercase;
}

.section-title strong,
.insight strong {
  font-weight: 900;
}

.section-copy {
  padding-left: 76px;
  color: var(--muted-ink);
  font-size: 17px;
}

.section-copy p {
  max-width: 670px;
  margin: 0 0 24px;
}

.insight {
  min-height: 760px;
  color: var(--white);
  background: var(--charcoal);
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.06);
}

.insight__copy {
  display: grid;
  grid-template-columns: minmax(260px, 0.9fr) minmax(420px, 1.1fr);
  gap: 86px;
  align-items: start;
  width: min(calc(100% - 136px), var(--max));
  margin: 0 auto;
  padding: 90px 22px;
}

.insight__lead {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(0, 1fr);
  gap: 34px;
  max-width: 100%;
  margin: 46px 0 52px;
  font-size: 16px;
  font-weight: 700;
  line-height: 1.62;
}

.insight__lead p {
  margin: 0;
}

.service-list {
  display: grid;
  gap: 42px;
  padding-top: 8px;
}

.service-list article {
  display: grid;
  grid-template-columns: 72px 1fr;
  gap: 28px;
}

.line-icon {
  position: relative;
  display: block;
  width: 58px;
  height: 58px;
  border: 3px solid currentColor;
  color: var(--accent);
}

.line-icon::before,
.line-icon::after {
  content: "";
  position: absolute;
  border: 3px solid currentColor;
}

.line-icon--bank {
  border-top-left-radius: 28px;
  border-top-right-radius: 28px;
}

.line-icon--bank::before {
  left: 8px;
  right: 8px;
  bottom: 8px;
  height: 28px;
  border-top: 0;
  border-bottom: 0;
}

.line-icon--bank::after {
  left: -8px;
  right: -8px;
  bottom: -12px;
  height: 6px;
  border-left: 0;
  border-right: 0;
}

.line-icon--chart::before {
  left: 11px;
  bottom: 9px;
  width: 7px;
  height: 22px;
  background: currentColor;
  border: 0;
  box-shadow: 14px -11px 0 currentColor, 28px -22px 0 currentColor;
}

.line-icon--chart::after {
  left: 11px;
  bottom: 8px;
  width: 36px;
  height: 1px;
  border: 0;
  background: currentColor;
}

.line-icon--search {
  border-radius: 999px;
  width: 50px;
  height: 50px;
}

.line-icon--search::before {
  right: -15px;
  bottom: -11px;
  width: 21px;
  height: 3px;
  border: 0;
  background: currentColor;
  transform: rotate(45deg);
  transform-origin: left center;
}

.line-icon--search::after {
  left: 13px;
  top: 13px;
  width: 12px;
  height: 12px;
  border-radius: 999px;
}

.line-icon--growth {
  border: 0;
}

.line-icon--growth::before {
  left: 5px;
  bottom: 10px;
  width: 42px;
  height: 30px;
  border-top: 0;
  border-right: 0;
  transform: skewY(-22deg);
}

.line-icon--growth::after {
  right: 1px;
  top: 9px;
  width: 15px;
  height: 15px;
  border-left: 0;
  border-bottom: 0;
  transform: rotate(45deg);
}

.line-icon--briefcase {
  border-radius: 3px;
}

.line-icon--briefcase::before {
  left: 15px;
  top: -15px;
  width: 22px;
  height: 13px;
  border-bottom: 0;
  border-radius: 5px 5px 0 0;
}

.line-icon--briefcase::after {
  left: -3px;
  right: -3px;
  top: 22px;
  border-left: 0;
  border-right: 0;
}

.market {
  padding-top: 118px;
  padding-bottom: 108px;
  background: var(--soft-panel);
}

.section-copy--columns {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 42px;
  align-items: start;
}

.section-copy--columns .button {
  grid-column: 1;
  justify-self: start;
}

.image-band {
  height: 360px;
  margin: 0 auto;
  background-image:
    radial-gradient(circle at 50% 45%, rgba(59, 130, 246, 0.22), transparent 34%),
    linear-gradient(rgba(0, 0, 0, 0.62), rgba(0, 0, 0, 0.62)),
    url("https://images.unsplash.com/photo-1551288049-bebda4e38f71?auto=format&fit=crop&w=2200&q=85");
  background-position: center 45%;
  background-size: cover;
}

.booking-hero {
  display: grid;
  grid-template-columns: minmax(320px, 0.82fr) minmax(420px, 1.18fr);
  gap: 58px;
  align-items: center;
  width: min(calc(100% - 96px), var(--max));
  min-height: 830px;
  margin: 0 auto;
  padding: 220px 0 82px;
}

.booking-hero__copy h1 {
  max-width: 560px;
  margin: 0;
  font-size: 56px;
  line-height: 1.06;
  letter-spacing: 0;
}

.booking-hero__copy p:not(.eyebrow) {
  max-width: 560px;
  margin: 24px 0 0;
  color: var(--muted-ink);
  font-size: 18px;
}

.booking-points {
  display: grid;
  gap: 14px;
  margin: 34px 0 0;
  padding: 0;
  list-style: none;
}

.booking-points li {
  position: relative;
  padding-left: 28px;
  color: var(--white);
  font-weight: 700;
}

.booking-points li::before {
  content: "";
  position: absolute;
  left: 0;
  top: 11px;
  width: 12px;
  height: 12px;
  border-radius: 999px;
  background: var(--accent);
  box-shadow: 0 0 18px rgba(59, 130, 246, 0.72);
}

.calendly-panel {
  position: relative;
  min-height: 640px;
  padding: 18px;
  border: 1px solid rgba(96, 165, 250, 0.24);
  border-radius: 18px;
  background:
    radial-gradient(circle at 50% 0%, rgba(59, 130, 246, 0.22), transparent 42%),
    #080808;
  box-shadow: 0 0 54px rgba(59, 130, 246, 0.2);
  overflow: hidden;
}

.calendly-panel::after {
  content: "";
  position: absolute;
  top: 18px;
  right: 18px;
  z-index: 2;
  width: 178px;
  height: 46px;
  border-radius: 0 14px 0 12px;
  background: #080808;
  pointer-events: auto;
}

.calendly-frame {
  display: block;
  width: 100%;
  min-height: 604px;
  border: 0;
  border-radius: 14px;
  background: rgba(255, 255, 255, 0.025);
}

.secondary-contact {
  display: grid;
  grid-template-columns: minmax(260px, 0.74fr) minmax(420px, 1.26fr);
  gap: 64px;
  width: min(calc(100% - 96px), var(--max));
  margin: 0 auto;
  padding: 72px 0 118px;
  border-top: 1px solid rgba(255, 255, 255, 0.08);
}

.secondary-contact__intro h2 {
  margin: 0;
  font-size: 38px;
  line-height: 1.14;
}

.secondary-contact__intro p:not(.eyebrow) {
  margin: 18px 0 0;
  color: var(--muted-ink);
}

.contact-form {
  display: grid;
  gap: 18px;
  padding: 30px;
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: 14px;
  background: rgba(255, 255, 255, 0.035);
}

.form-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 18px;
}

.contact-form label {
  display: grid;
  gap: 8px;
  color: var(--white);
  font-size: 13px;
  font-weight: 800;
  text-transform: uppercase;
}

.contact-form em {
  color: var(--muted-ink);
  font-style: normal;
  font-weight: 600;
  text-transform: none;
}

.contact-form input,
.contact-form textarea {
  width: 100%;
  border: 1px solid rgba(255, 255, 255, 0.12);
  border-radius: 8px;
  color: var(--white);
  background: rgba(0, 0, 0, 0.42);
  font: inherit;
  outline: none;
  transition: border-color 180ms ease, box-shadow 180ms ease;
}

.contact-form input {
  min-height: 48px;
  padding: 0 14px;
}

.contact-form textarea {
  resize: vertical;
  padding: 13px 14px;
}

.contact-form input:focus,
.contact-form textarea:focus {
  border-color: rgba(96, 165, 250, 0.7);
  box-shadow: 0 0 0 3px rgba(59, 130, 246, 0.18);
}

.contact-form .button {
  margin-top: 6px;
  border: 0;
  cursor: pointer;
  justify-self: start;
}

.footer {
  color: var(--white);
  background: var(--charcoal-deep);
}

.footer__inner {
  display: flex;
  justify-content: space-between;
  align-items: center;
  width: min(calc(100% - 96px), var(--max));
  min-height: 132px;
  margin: 0 auto;
}

.brand--footer .brand__sub {
  color: rgba(255, 255, 255, 0.58);
}

.footer nav {
  display: flex;
  gap: 28px;
  font-size: 12px;
  font-weight: 800;
  text-transform: uppercase;
}

@media (max-width: 980px) {
  :root {
    --header-h: 86px;
  }

  .topbar {
    display: none;
  }

  .navbar {
    width: min(calc(100% - 40px), var(--max));
    min-height: 86px;
  }

  .brand {
    min-width: 0;
    gap: 12px;
    letter-spacing: 5px;
  }

  .brand__main {
    font-size: 23px;
  }

  .brand__sub {
    font-size: 13px;
  }

  .menu-toggle {
    display: block;
  }

  .nav-links {
    position: absolute;
    top: 86px;
    left: 0;
    display: none;
    width: 100%;
    padding: 22px 28px 28px;
    background: rgba(0, 0, 0, 0.98);
    color: var(--ink);
    box-shadow: 0 18px 30px rgba(0, 0, 0, 0.36);
  }

  .site-header.menu-open .nav-links {
    display: grid;
    gap: 16px;
  }

  .hero {
    min-height: 680px;
  }

  .hero__content {
    width: min(100%, 650px);
  }

  .hero__slides {
    width: min(calc(100% - 40px), var(--max));
    margin-bottom: 160px;
  }

  .hero h1 {
    font-size: 48px;
  }

  .feature-strip,
  .section,
  .booking-hero,
  .secondary-contact {
    width: min(calc(100% - 40px), var(--max));
  }

  .feature-card {
    min-height: 0;
    padding: 34px 28px;
  }

  .section,
  .section-copy--columns,
  .booking-hero,
  .secondary-contact {
    grid-template-columns: 1fr;
  }

  .booking-hero {
    min-height: 0;
    padding: 150px 0 64px;
  }

  .booking-hero__copy h1 {
    font-size: 44px;
  }

  .calendly-panel {
    min-height: 560px;
  }

  .calendly-frame {
    min-height: 524px;
  }

  .secondary-contact {
    gap: 30px;
    padding-bottom: 86px;
  }

  .section {
    padding: 80px 0;
  }

  .section-title {
    padding: 0 0 30px;
    border-right: 0;
    border-bottom: 2px solid rgba(255, 255, 255, 0.13);
  }

  .section-copy {
    padding: 32px 0 0;
  }

  .insight {
    min-height: 0;
  }

  .insight__copy {
    grid-template-columns: 1fr;
    gap: 32px;
    width: min(calc(100% - 40px), var(--max));
    margin: 0 auto;
    padding: 72px 0;
  }

  .insight__lead {
    grid-template-columns: 1fr;
    max-width: 720px;
  }

  .section-copy--columns .button {
    grid-column: auto;
  }
}

@media (max-width: 620px) {
  body {
    font-size: 15px;
  }

  .brand {
    letter-spacing: 3px;
  }

  .brand__sub {
    display: none;
  }

  .hero {
    min-height: 610px;
  }

  .hero h1 {
    font-size: 38px;
  }

  .hero__lead {
    font-size: 18px;
  }

  .slider-dots {
    bottom: 148px;
  }

  .feature-strip {
    margin-top: -126px;
  }

  .feature-card {
    padding: 28px 16px;
  }

  .feature-card h2 {
    font-size: 13px;
    letter-spacing: 2px;
  }

  .feature-card p {
    font-size: 12px;
    line-height: 1.5;
  }

  .section-title h2,
  .insight h2 {
    font-size: 34px;
  }

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

  .footer__inner,
  .footer nav {
    display: grid;
    gap: 20px;
  }

  .booking-hero__copy h1 {
    font-size: 36px;
  }

  .calendly-panel {
    min-height: 480px;
    padding: 12px;
  }

  .calendly-frame {
    min-height: 452px;
  }

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

  .contact-form {
    padding: 22px;
  }
}
