:root {
  --navy-950: #020817;
  --navy-900: #061226;
  --navy-850: #081a32;
  --navy-800: #0b2442;
  --blue-500: #12a7f5;
  --blue-400: #39c1ff;
  --blue-300: #78dcff;
  --white: #ffffff;
  --text: #f5fbff;
  --muted: #9fb7c8;
  --line: rgba(148, 203, 235, 0.18);
  --panel: rgba(8, 29, 55, 0.72);
  --panel-strong: rgba(12, 45, 80, 0.84);
  --shadow: 0 28px 80px rgba(0, 0, 0, 0.34);
  --radius: 8px;
  --radius-lg: 10px;
  --container: 1180px;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  font-family: "Poppins", Arial, sans-serif;
  color: var(--text);
  background:
    radial-gradient(circle at 78% 8%, rgba(18, 167, 245, 0.26), transparent 28rem),
    radial-gradient(circle at 18% 38%, rgba(57, 193, 255, 0.14), transparent 24rem),
    linear-gradient(180deg, var(--navy-950), var(--navy-900) 42%, #04101f);
  overflow-x: hidden;
}

body.nav-open {
  overflow: hidden;
}

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

button,
a {
  -webkit-tap-highlight-color: transparent;
}

.site-shell {
  min-height: 100vh;
  position: relative;
  overflow: hidden;
}

.site-shell::before {
  content: "";
  position: fixed;
  inset: 0;
  pointer-events: none;
  background-image:
    linear-gradient(rgba(255, 255, 255, 0.035) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255, 255, 255, 0.028) 1px, transparent 1px);
  background-size: 88px 88px;
  mask-image: linear-gradient(to bottom, rgba(0, 0, 0, 0.6), transparent 76%);
}

.container {
  width: min(calc(100% - 40px), var(--container));
  margin-inline: auto;
}

.section {
  position: relative;
  padding: 112px 0;
}

.site-header {
  position: fixed;
  top: 18px;
  left: 50%;
  z-index: 100;
  width: min(calc(100% - 40px), var(--container));
  transform: translateX(-50%);
  display: grid;
  grid-template-columns: auto 1fr auto;
  align-items: center;
  gap: 28px;
  padding: 12px 14px;
  border: 1px solid rgba(159, 183, 200, 0.18);
  border-radius: var(--radius-lg);
  background: rgba(2, 8, 23, 0.72);
  box-shadow: 0 18px 60px rgba(0, 0, 0, 0.28);
  backdrop-filter: blur(18px);
  transition: border-color 220ms ease, background 220ms ease, transform 220ms ease;
}

.site-header.is-scrolled {
  border-color: rgba(57, 193, 255, 0.32);
  background: rgba(2, 8, 23, 0.9);
}

.brand {
  display: inline-flex;
  align-items: center;
  min-width: max-content;
}

.brand-logo {
  width: 132px;
  height: auto;
  display: block;
  filter: drop-shadow(0 0 18px rgba(57, 193, 255, 0.18));
}

.site-nav {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 26px;
  color: rgba(245, 251, 255, 0.72);
  font-size: 13px;
  font-weight: 600;
}

.site-nav a {
  transition: color 180ms ease;
}

.site-nav a:hover,
.site-nav a:focus-visible {
  color: var(--white);
}

.header-cta,
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 46px;
  border-radius: 8px;
  font-size: 14px;
  font-weight: 700;
  transition: transform 180ms ease, border-color 180ms ease, background 180ms ease, box-shadow 180ms ease;
}

.header-cta {
  padding: 0 18px;
  background: rgba(18, 167, 245, 0.15);
  border: 1px solid rgba(57, 193, 255, 0.34);
  color: var(--white);
}

.btn {
  padding: 0 22px;
}

.btn-primary {
  color: #021323;
  background: linear-gradient(135deg, var(--blue-300), var(--blue-500));
  box-shadow: 0 18px 40px rgba(18, 167, 245, 0.28);
}

.btn-secondary {
  color: var(--white);
  border: 1px solid rgba(159, 183, 200, 0.24);
  background: rgba(255, 255, 255, 0.055);
}

.btn:hover,
.header-cta:hover {
  transform: translateY(-2px);
}

.nav-toggle {
  display: none;
  width: 44px;
  height: 44px;
  border: 1px solid rgba(159, 183, 200, 0.2);
  border-radius: 8px;
  background: rgba(255, 255, 255, 0.05);
  color: var(--white);
  padding: 0;
}

.nav-toggle span {
  display: block;
  width: 18px;
  height: 2px;
  margin: 5px auto;
  background: currentColor;
  transition: transform 180ms ease;
}

.nav-toggle[aria-expanded="true"] span:first-child {
  transform: translateY(3.5px) rotate(45deg);
}

.nav-toggle[aria-expanded="true"] span:last-child {
  transform: translateY(-3.5px) rotate(-45deg);
}

.hero {
  min-height: 88vh;
  display: grid;
  align-items: center;
  padding: 140px 0 68px;
}

.hero-bg {
  position: absolute;
  inset: 0;
  overflow: hidden;
  pointer-events: none;
}

.hero-bg::before {
  content: "";
  position: absolute;
  top: 18%;
  left: 48%;
  width: 680px;
  height: 680px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(18, 167, 245, 0.22), transparent 63%);
  transform: translateX(-12%);
}

.wave-line {
  position: absolute;
  width: 760px;
  height: 190px;
  border: 1px solid rgba(120, 220, 255, 0.28);
  border-color: rgba(120, 220, 255, 0.26) transparent transparent transparent;
  border-radius: 52% 48% 0 0;
  transform: rotate(-9deg);
  opacity: 0.9;
}

.wave-one {
  top: 23%;
  right: -120px;
}

.wave-two {
  top: 30%;
  right: -78px;
  width: 640px;
  opacity: 0.52;
}

.wave-three {
  top: 38%;
  right: 50px;
  width: 520px;
  opacity: 0.34;
}

.hero-grid {
  position: relative;
  display: grid;
  grid-template-columns: minmax(0, 1.02fr) minmax(360px, 0.82fr);
  align-items: center;
  gap: 72px;
}

.hero-copy h1 {
  margin: 0;
  max-width: 760px;
  font-family: "Montserrat", Arial, sans-serif;
  font-size: clamp(54px, 7vw, 102px);
  line-height: 0.93;
  font-weight: 800;
  letter-spacing: 0;
}

.hero-copy p {
  max-width: 650px;
  margin: 28px 0 0;
  color: var(--muted);
  font-size: clamp(17px, 1.8vw, 20px);
  line-height: 1.75;
}

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

.hero-panel {
  position: relative;
  min-height: 560px;
}

.browser-frame {
  position: absolute;
  inset: 28px 0 auto auto;
  width: min(100%, 520px);
  padding: 15px;
  border: 1px solid rgba(159, 183, 200, 0.2);
  border-radius: var(--radius-lg);
  background: linear-gradient(145deg, rgba(14, 45, 78, 0.94), rgba(5, 18, 35, 0.92));
  box-shadow: var(--shadow);
  transform: perspective(980px) rotateY(-9deg) rotateX(3deg);
}

.browser-top {
  height: 34px;
  display: flex;
  align-items: center;
  gap: 7px;
  padding-inline: 3px;
}

.browser-top span {
  width: 9px;
  height: 9px;
  border-radius: 50%;
  background: rgba(120, 220, 255, 0.44);
}

.browser-content {
  min-height: 410px;
  padding: 28px;
  border-radius: 8px;
  background:
    linear-gradient(135deg, rgba(57, 193, 255, 0.18), transparent 38%),
    linear-gradient(180deg, rgba(255, 255, 255, 0.08), rgba(255, 255, 255, 0.025));
  border: 1px solid rgba(255, 255, 255, 0.08);
}

.preview-header,
.preview-title,
.preview-line,
.preview-grid span {
  background: rgba(245, 251, 255, 0.88);
  border-radius: 4px;
}

.preview-header {
  width: 48%;
  height: 12px;
  opacity: 0.45;
}

.preview-title {
  width: 78%;
  height: 54px;
  margin-top: 38px;
}

.preview-line {
  width: 80%;
  height: 10px;
  margin-top: 14px;
  opacity: 0.32;
}

.preview-line.short {
  width: 58%;
  margin-top: 28px;
}

.preview-metrics {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 14px;
  margin-top: 34px;
}

.preview-metrics div {
  padding: 18px;
  border: 1px solid rgba(120, 220, 255, 0.2);
  border-radius: 8px;
  background: rgba(2, 8, 23, 0.38);
}

.preview-metrics strong {
  display: block;
  font-family: "Montserrat", Arial, sans-serif;
  font-size: 28px;
}

.preview-metrics span {
  color: var(--muted);
  font-size: 12px;
}

.preview-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 12px;
  margin-top: 26px;
}

.preview-grid span {
  height: 82px;
  opacity: 0.14;
}

.signal-card {
  position: absolute;
  right: 32px;
  bottom: 16px;
  z-index: 2;
  display: flex;
  align-items: center;
  gap: 14px;
  width: min(88%, 360px);
  padding: 18px;
  border: 1px solid rgba(120, 220, 255, 0.22);
  border-radius: var(--radius);
  background: rgba(2, 8, 23, 0.78);
  box-shadow: 0 22px 55px rgba(0, 0, 0, 0.32);
  backdrop-filter: blur(18px);
}

.signal-card strong,
.signal-card span {
  display: block;
}

.signal-card div {
  min-width: 0;
}

.signal-card strong {
  font-size: 14px;
}

.signal-card span {
  color: var(--muted);
  font-size: 12px;
  line-height: 1.5;
}

.pulse {
  width: 12px;
  height: 12px;
  flex: 0 0 auto;
  border-radius: 50%;
  background: var(--blue-400);
  box-shadow: 0 0 0 rgba(57, 193, 255, 0.54);
  animation: pulse 1.8s infinite;
}

.section-heading {
  max-width: 760px;
  margin-bottom: 46px;
}

.section-heading h2,
.why-copy h2,
.cta-panel h2 {
  margin: 0;
  font-family: "Montserrat", Arial, sans-serif;
  font-size: clamp(32px, 4.2vw, 58px);
  line-height: 1.04;
  font-weight: 800;
  letter-spacing: 0;
}

.section-heading p,
.why-copy p,
.cta-panel p {
  margin: 18px 0 0;
  color: var(--muted);
  font-size: 17px;
  line-height: 1.75;
}

.section-number {
  display: block;
  margin-bottom: 18px;
  color: var(--blue-300);
  font-family: "Montserrat", Arial, sans-serif;
  font-size: 13px;
  font-weight: 800;
}

.service-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 16px;
}

.service-card,
.proof-item,
.work-card,
.testimonial,
.process-step {
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: linear-gradient(180deg, rgba(255, 255, 255, 0.065), rgba(255, 255, 255, 0.026));
  box-shadow: 0 18px 60px rgba(0, 0, 0, 0.18);
}

.service-card {
  min-height: 244px;
  padding: 24px;
  transition: transform 220ms ease, border-color 220ms ease, background 220ms ease;
}

.service-card:hover,
.work-card:hover {
  transform: translateY(-6px);
  border-color: rgba(57, 193, 255, 0.38);
  background: linear-gradient(180deg, rgba(57, 193, 255, 0.1), rgba(255, 255, 255, 0.03));
}

.service-icon {
  display: inline-grid;
  place-items: center;
  width: 42px;
  height: 42px;
  margin-bottom: 28px;
  border: 1px solid rgba(120, 220, 255, 0.28);
  border-radius: 8px;
  color: var(--blue-300);
  background: rgba(18, 167, 245, 0.08);
  font-family: "Montserrat", Arial, sans-serif;
  font-size: 12px;
  font-weight: 800;
}

.service-card h3,
.work-card h3 {
  margin: 0;
  font-family: "Montserrat", Arial, sans-serif;
  font-size: 18px;
  line-height: 1.25;
}

.service-card p,
.work-card p,
.process-step p {
  margin: 12px 0 0;
  color: var(--muted);
  font-size: 14px;
  line-height: 1.7;
}

.why {
  background:
    linear-gradient(90deg, rgba(18, 167, 245, 0.12), transparent 38%),
    rgba(255, 255, 255, 0.015);
  border-block: 1px solid rgba(159, 183, 200, 0.12);
}

.why-grid {
  display: grid;
  grid-template-columns: 0.92fr 1.08fr;
  gap: 70px;
  align-items: start;
}

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

.proof-item {
  position: relative;
  padding: 24px 24px 24px 62px;
}

.proof-item::before {
  content: "";
  position: absolute;
  left: 24px;
  top: 28px;
  width: 16px;
  height: 16px;
  border: 4px solid rgba(57, 193, 255, 0.28);
  border-top-color: var(--blue-300);
  border-radius: 50%;
}

.proof-item strong,
.proof-item span {
  display: block;
}

.proof-item strong {
  font-family: "Montserrat", Arial, sans-serif;
  font-size: 18px;
}

.proof-item span {
  margin-top: 7px;
  color: var(--muted);
  line-height: 1.65;
}

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

.work-card {
  overflow: hidden;
  transition: transform 220ms ease, border-color 220ms ease, background 220ms ease;
}

.work-card:focus-visible {
  outline: 2px solid var(--blue-300);
  outline-offset: 4px;
}

.work-card > div:last-child {
  padding: 24px;
}

.work-visual {
  position: relative;
  height: 286px;
  overflow: hidden;
  border-radius: 8px;
  padding: 22px;
}

.contractor-preview,
.bluepeak-preview,
.harbor-preview {
  position: relative;
  height: 100%;
  overflow: hidden;
  border-radius: 8px;
  box-shadow: 0 22px 60px rgba(0, 0, 0, 0.26);
}

.work-link {
  display: inline-block;
  margin-top: 18px;
  color: var(--blue-300);
  font-size: 13px;
  font-weight: 800;
}

.work-link::after {
  content: " ->";
}

.contractor-preview {
  padding: 22px;
  background:
    linear-gradient(90deg, rgba(216, 144, 46, 0.08) 1px, transparent 1px),
    linear-gradient(rgba(216, 144, 46, 0.08) 1px, transparent 1px),
    #171c24;
  background-size: 30px 30px;
  color: #fff7e9;
}

.contractor-top,
.client-logo {
  display: flex;
  align-items: center;
  gap: 11px;
}

.summit-badge,
.bluepeak-mark,
.harbor-monogram {
  display: inline-grid;
  place-items: center;
  flex: 0 0 auto;
  font-family: "Montserrat", Arial, sans-serif;
  font-weight: 800;
}

.summit-badge {
  width: 42px;
  height: 42px;
  border: 2px solid #d8902e;
  color: #d8902e;
  background: #11161f;
  clip-path: polygon(50% 0, 100% 18%, 100% 76%, 50% 100%, 0 76%, 0 18%);
}

.contractor-top strong,
.contractor-top small,
.client-logo strong,
.client-logo small {
  display: block;
}

.contractor-top strong {
  font-family: "Montserrat", Arial, sans-serif;
  font-size: 15px;
  line-height: 1;
}

.contractor-top small {
  color: #d8902e;
  font-size: 9px;
  font-weight: 800;
  text-transform: uppercase;
}

.contractor-headline {
  width: 66%;
  margin-top: 28px;
  font-family: "Montserrat", Arial, sans-serif;
  font-size: 28px;
  line-height: 1.02;
  font-weight: 800;
}

.contractor-bars {
  display: grid;
  width: 52%;
  gap: 8px;
  margin-top: 20px;
}

.contractor-bars span {
  height: 8px;
  border-radius: 3px;
  background: rgba(255, 247, 233, 0.28);
}

.contractor-bars span:first-child {
  width: 72%;
  background: #d8902e;
}

.contractor-photo {
  position: absolute;
  right: 18px;
  bottom: 18px;
  width: 38%;
  height: 56%;
  border: 1px solid rgba(216, 144, 46, 0.34);
  border-radius: 8px;
  background:
    linear-gradient(135deg, transparent 0 42%, rgba(216, 144, 46, 0.7) 43% 49%, transparent 50%),
    repeating-linear-gradient(90deg, #2f3743 0 14px, #202732 14px 28px);
  box-shadow: 0 24px 50px rgba(0, 0, 0, 0.35);
}

.contractor {
  background:
    radial-gradient(circle at 82% 22%, rgba(216, 144, 46, 0.42), transparent 24%),
    linear-gradient(135deg, rgba(14, 45, 78, 0.98), rgba(5, 18, 35, 0.92));
}

.home-service {
  background:
    radial-gradient(circle at 18% 74%, rgba(53, 201, 244, 0.45), transparent 24%),
    linear-gradient(135deg, rgba(18, 167, 245, 0.23), rgba(255, 255, 255, 0.035));
}

.bluepeak-preview {
  padding: 24px;
  background:
    radial-gradient(circle at 76% 28%, rgba(53, 201, 244, 0.32), transparent 23%),
    linear-gradient(135deg, #f8fdff, #dff4fb);
  color: #07324d;
}

.bluepeak-logo-card {
  position: relative;
  z-index: 1;
  width: 138px;
  padding: 18px;
  border-radius: 8px;
  background: rgba(255, 255, 255, 0.72);
  box-shadow: 0 18px 45px rgba(13, 143, 189, 0.18);
}

.bluepeak-mark {
  width: 46px;
  height: 46px;
  border-radius: 50%;
  color: #fff;
  background: linear-gradient(135deg, #0d8fbd, #35c9f4);
}

.bluepeak-logo-card strong,
.bluepeak-logo-card small {
  display: block;
}

.bluepeak-logo-card strong {
  margin-top: 12px;
  font-family: "Montserrat", Arial, sans-serif;
  font-size: 18px;
}

.bluepeak-logo-card small {
  color: rgba(7, 50, 77, 0.68);
  font-size: 10px;
  font-weight: 700;
}

.bluepeak-orbit {
  position: absolute;
  right: 24px;
  top: 34px;
  width: 148px;
  height: 148px;
  border: 1px solid rgba(13, 143, 189, 0.28);
  border-radius: 50%;
}

.bluepeak-orbit span {
  position: absolute;
  border-radius: 50%;
  background: #0d8fbd;
}

.bluepeak-orbit span:nth-child(1) {
  width: 46px;
  height: 46px;
  left: 52px;
  top: 52px;
  background: #35c9f4;
}

.bluepeak-orbit span:nth-child(2) {
  width: 24px;
  height: 24px;
  left: 8px;
  top: 62px;
}

.bluepeak-orbit span:nth-child(3) {
  width: 30px;
  height: 30px;
  right: 10px;
  bottom: 26px;
}

.bluepeak-panel {
  position: absolute;
  left: 24px;
  right: 24px;
  bottom: 24px;
  padding: 18px;
  border-radius: 8px;
  color: #fff;
  background: linear-gradient(135deg, #0d8fbd, #07324d);
  font-family: "Montserrat", Arial, sans-serif;
  font-weight: 800;
}

.real-estate {
  background:
    radial-gradient(circle at 82% 76%, rgba(200, 164, 93, 0.36), transparent 24%),
    linear-gradient(135deg, rgba(255, 255, 255, 0.045), rgba(57, 193, 255, 0.16));
}

.harbor-preview {
  padding: 24px;
  background:
    linear-gradient(90deg, rgba(16, 59, 66, 0.9) 0 42%, transparent 42%),
    linear-gradient(135deg, #fbfaf7, #eee3c8);
  color: #103b42;
}

.harbor-monogram {
  width: 54px;
  height: 54px;
  border: 1px solid #c8a45d;
  border-radius: 50%;
  color: #c8a45d;
  background: #103b42;
  font-size: 17px;
}

.harbor-lines {
  position: absolute;
  left: 24px;
  bottom: 28px;
  display: grid;
  gap: 8px;
  width: 30%;
}

.harbor-lines span {
  height: 2px;
  background: rgba(200, 164, 93, 0.82);
}

.harbor-listing {
  position: absolute;
  right: 22px;
  top: 34px;
  width: 46%;
  min-height: 128px;
  padding: 18px;
  border-radius: 8px;
  background:
    linear-gradient(135deg, rgba(16, 59, 66, 0.16), transparent),
    #fffdf8;
  box-shadow: 0 22px 45px rgba(16, 59, 66, 0.18);
}

.harbor-listing strong,
.harbor-listing span,
.harbor-title {
  display: block;
}

.harbor-listing strong {
  font-family: "Montserrat", Arial, sans-serif;
  font-size: 28px;
}

.harbor-listing span {
  margin-top: 8px;
  color: rgba(16, 59, 66, 0.68);
  font-size: 12px;
  font-weight: 700;
}

.harbor-title {
  position: absolute;
  right: 22px;
  bottom: 30px;
  width: 46%;
  color: #103b42;
  font-family: "Montserrat", Arial, sans-serif;
  font-size: 24px;
  line-height: 1.05;
  font-weight: 800;
}

.testimonials {
  padding-top: 34px;
}

.testimonial-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 18px;
}

.testimonial {
  margin: 0;
  padding: 34px;
}

.testimonial p {
  margin: 0;
  color: rgba(245, 251, 255, 0.9);
  font-size: 20px;
  line-height: 1.65;
}

.testimonial cite {
  display: block;
  margin-top: 24px;
  color: var(--blue-300);
  font-style: normal;
  font-weight: 700;
}

.process-line {
  position: relative;
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 16px;
}

.process-line::before {
  content: "";
  position: absolute;
  top: 26px;
  left: 9%;
  right: 9%;
  height: 1px;
  background: linear-gradient(90deg, transparent, rgba(57, 193, 255, 0.6), transparent);
}

.process-step {
  position: relative;
  padding: 72px 24px 24px;
}

.process-step::before {
  content: "";
  position: absolute;
  top: 17px;
  left: 24px;
  width: 18px;
  height: 18px;
  border-radius: 50%;
  background: var(--blue-300);
  box-shadow: 0 0 0 8px rgba(57, 193, 255, 0.14), 0 0 28px rgba(57, 193, 255, 0.55);
}

.process-step span {
  font-family: "Montserrat", Arial, sans-serif;
  font-size: 20px;
  font-weight: 800;
}

.cta {
  padding-top: 34px;
}

.cta-panel {
  display: grid;
  grid-template-columns: 1fr auto;
  gap: 32px;
  align-items: center;
  padding: 48px;
  border: 1px solid rgba(120, 220, 255, 0.24);
  border-radius: var(--radius-lg);
  background:
    radial-gradient(circle at 76% 26%, rgba(57, 193, 255, 0.22), transparent 26rem),
    linear-gradient(135deg, rgba(14, 50, 86, 0.94), rgba(3, 12, 26, 0.96));
  box-shadow: var(--shadow);
}

.cta-panel h2 {
  max-width: 820px;
}

.site-footer {
  border-top: 1px solid rgba(159, 183, 200, 0.13);
  padding: 54px 0 28px;
  color: var(--muted);
}

.footer-grid {
  display: grid;
  grid-template-columns: 1.5fr repeat(3, 1fr);
  gap: 36px;
}

.footer-brand {
  color: var(--white);
}

.site-footer p {
  max-width: 360px;
  margin: 18px 0 0;
  line-height: 1.7;
}

.site-footer strong,
.site-footer a,
.site-footer span {
  display: block;
}

.site-footer strong {
  color: var(--white);
  margin-bottom: 16px;
  font-family: "Montserrat", Arial, sans-serif;
}

.site-footer a,
.site-footer span {
  margin-top: 10px;
  font-size: 14px;
}

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

.footer-bottom {
  display: flex;
  justify-content: space-between;
  gap: 20px;
  margin-top: 44px;
  padding-top: 24px;
  border-top: 1px solid rgba(159, 183, 200, 0.12);
  font-size: 13px;
}

.reveal {
  opacity: 1;
  transform: translateY(0);
}

.js .reveal {
  opacity: 0;
  transform: translateY(24px);
  transition: opacity 700ms ease, transform 700ms ease;
  transition-delay: var(--delay, 0ms);
}

.js .reveal.is-visible {
  opacity: 1;
  transform: translateY(0);
}

@keyframes pulse {
  0% {
    box-shadow: 0 0 0 0 rgba(57, 193, 255, 0.5);
  }
  70% {
    box-shadow: 0 0 0 12px rgba(57, 193, 255, 0);
  }
  100% {
    box-shadow: 0 0 0 0 rgba(57, 193, 255, 0);
  }
}

@media (max-width: 980px) {
  .site-header {
    grid-template-columns: auto auto;
    justify-content: space-between;
  }

  .nav-toggle {
    display: block;
  }

  .site-nav,
  .header-cta {
    display: none;
  }

  .site-nav.is-open {
    position: absolute;
    top: calc(100% + 10px);
    left: 0;
    right: 0;
    display: grid;
    gap: 0;
    padding: 10px;
    border: 1px solid rgba(159, 183, 200, 0.18);
    border-radius: var(--radius-lg);
    background: rgba(2, 8, 23, 0.96);
    box-shadow: var(--shadow);
  }

  .site-nav.is-open a {
    padding: 16px;
    border-radius: 8px;
  }

  .site-nav.is-open a:hover {
    background: rgba(255, 255, 255, 0.06);
  }

  .hero-grid,
  .why-grid,
  .cta-panel {
    grid-template-columns: 1fr;
  }

  .hero-panel {
    min-height: 470px;
  }

  .browser-frame {
    inset: 0 auto auto 0;
    transform: none;
  }

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

  .work-grid,
  .testimonial-grid,
  .process-line,
  .footer-grid {
    grid-template-columns: 1fr 1fr;
  }

  .process-line::before {
    display: none;
  }
}

@media (max-width: 680px) {
  .container {
    width: min(calc(100% - 28px), var(--container));
  }

  .section {
    padding: 78px 0;
  }

  .site-header {
    top: 10px;
    width: min(calc(100% - 20px), var(--container));
  }

  .brand-logo {
    width: 118px;
  }

  .hero {
    min-height: auto;
    padding: 118px 0 68px;
  }

  .hero-copy h1 {
    max-width: 10ch;
    font-size: clamp(40px, 12vw, 50px);
    line-height: 0.98;
  }

  .hero-copy p {
    font-size: 16px;
  }

  .hero-actions,
  .footer-bottom {
    flex-direction: column;
  }

  .btn {
    width: 100%;
  }

  .hero-panel {
    min-height: 410px;
  }

  .browser-content {
    min-height: 330px;
    padding: 20px;
  }

  .preview-title {
    height: 42px;
  }

  .preview-grid span {
    height: 58px;
  }

  .signal-card {
    right: 10px;
    bottom: 0;
    width: calc(100% - 20px);
  }

  .service-grid,
  .work-grid,
  .testimonial-grid,
  .process-line,
  .footer-grid {
    grid-template-columns: 1fr;
  }

  .section-heading h2,
  .why-copy h2,
  .cta-panel h2 {
    font-size: clamp(30px, 10vw, 42px);
  }

  .testimonial {
    padding: 26px;
  }

  .testimonial p {
    font-size: 17px;
  }

  .cta-panel {
    padding: 28px;
  }
}

@media (prefers-reduced-motion: reduce) {
  html {
    scroll-behavior: auto;
  }

  *,
  *::before,
  *::after {
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
    scroll-behavior: auto !important;
    transition-duration: 0.01ms !important;
  }

  .reveal {
    opacity: 1;
    transform: none;
  }
}

.client-site {
  min-height: 100vh;
  color: #f8fbff;
  background: #101822;
}

.client-header {
  position: sticky;
  top: 0;
  z-index: 20;
  display: grid;
  grid-template-columns: 1fr auto 1fr;
  align-items: center;
  gap: 28px;
  padding: 18px clamp(20px, 5vw, 64px);
  border-bottom: 1px solid rgba(255, 255, 255, 0.12);
  background: rgba(16, 24, 34, 0.9);
  backdrop-filter: blur(16px);
}

.client-back {
  width: max-content;
  color: rgba(255, 255, 255, 0.66);
  font-size: 13px;
  font-weight: 800;
}

.client-header nav {
  display: flex;
  justify-content: flex-end;
  gap: 22px;
  color: rgba(255, 255, 255, 0.74);
  font-size: 13px;
  font-weight: 800;
}

.client-logo strong {
  font-family: "Montserrat", Arial, sans-serif;
  font-size: 18px;
}

.client-logo small {
  margin-top: 3px;
  color: rgba(255, 255, 255, 0.62);
  font-size: 10px;
  font-weight: 800;
  text-transform: uppercase;
}

.client-hero {
  min-height: calc(100vh - 82px);
  display: grid;
  grid-template-columns: 1fr 0.86fr;
  align-items: center;
  gap: clamp(36px, 6vw, 86px);
  padding: clamp(72px, 10vw, 132px) clamp(20px, 7vw, 110px);
}

.client-hero h1 {
  max-width: 820px;
  margin: 0;
  font-family: "Montserrat", Arial, sans-serif;
  font-size: clamp(48px, 7vw, 104px);
  line-height: 0.92;
  letter-spacing: 0;
}

.client-hero p {
  max-width: 620px;
  margin: 28px 0 0;
  color: rgba(255, 255, 255, 0.72);
  font-size: clamp(17px, 2vw, 22px);
  line-height: 1.7;
}

.client-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 48px;
  margin-top: 34px;
  padding: 0 22px;
  border-radius: 8px;
  color: #fff;
  font-size: 14px;
  font-weight: 900;
}

.summit-hero {
  background:
    linear-gradient(90deg, rgba(216, 144, 46, 0.09) 1px, transparent 1px),
    linear-gradient(rgba(216, 144, 46, 0.08) 1px, transparent 1px),
    radial-gradient(circle at 80% 28%, rgba(216, 144, 46, 0.18), transparent 34rem),
    #151a22;
  background-size: 54px 54px, 54px 54px, auto, auto;
}

.summit-btn {
  background: #d8902e;
  box-shadow: 0 18px 45px rgba(216, 144, 46, 0.28);
}

.summit-project-card,
.service-dashboard,
.listing-card {
  padding: clamp(28px, 4vw, 46px);
  border-radius: 10px;
  box-shadow: 0 32px 90px rgba(0, 0, 0, 0.3);
}

.summit-project-card {
  border: 1px solid rgba(216, 144, 46, 0.34);
  background:
    linear-gradient(135deg, rgba(216, 144, 46, 0.2), transparent 36%),
    #202834;
}

.summit-project-card span,
.summit-project-card strong,
.summit-project-card p,
.listing-card span,
.listing-card strong,
.listing-card p {
  display: block;
}

.summit-project-card span,
.listing-card span {
  color: #d8902e;
  font-weight: 900;
  text-transform: uppercase;
}

.summit-project-card strong,
.listing-card strong {
  margin-top: 16px;
  font-family: "Montserrat", Arial, sans-serif;
  font-size: clamp(28px, 4vw, 48px);
  line-height: 1;
}

.summit-project-card p,
.listing-card p {
  color: rgba(255, 255, 255, 0.7);
  line-height: 1.7;
}

.bluepeak-site {
  color: #07324d;
  background: #edf9ff;
}

.bluepeak-header {
  background: rgba(237, 249, 255, 0.9);
  border-bottom-color: rgba(13, 143, 189, 0.18);
}

.bluepeak-header a,
.bluepeak-header nav {
  color: #07324d;
}

.bluepeak-header .client-logo small {
  color: rgba(7, 50, 77, 0.62);
}

.bluepeak-hero {
  background:
    radial-gradient(circle at 80% 30%, rgba(53, 201, 244, 0.38), transparent 34rem),
    linear-gradient(135deg, #f8fdff, #dff4fb);
}

.bluepeak-hero p {
  color: rgba(7, 50, 77, 0.68);
}

.bluepeak-btn {
  background: linear-gradient(135deg, #35c9f4, #0d8fbd);
  box-shadow: 0 18px 45px rgba(13, 143, 189, 0.26);
}

.service-dashboard {
  display: grid;
  gap: 16px;
  background: #ffffff;
}

.service-dashboard div {
  padding: 24px;
  border-radius: 8px;
  background: #e7f7fd;
}

.service-dashboard strong,
.service-dashboard span {
  display: block;
}

.service-dashboard strong {
  font-family: "Montserrat", Arial, sans-serif;
  font-size: 44px;
}

.service-dashboard span {
  color: rgba(7, 50, 77, 0.68);
  font-weight: 800;
}

.harbor-site {
  color: #103b42;
  background: #fbfaf7;
}

.harbor-header {
  background: rgba(251, 250, 247, 0.92);
  border-bottom-color: rgba(16, 59, 66, 0.14);
}

.harbor-header a,
.harbor-header nav {
  color: #103b42;
}

.harbor-header .client-logo small {
  color: rgba(16, 59, 66, 0.62);
}

.harbor-hero {
  background:
    linear-gradient(90deg, #103b42 0 46%, transparent 46%),
    radial-gradient(circle at 80% 28%, rgba(200, 164, 93, 0.24), transparent 32rem),
    #fbfaf7;
  grid-template-columns: 0.72fr 1fr;
}

.harbor-hero h1,
.harbor-hero p {
  color: #fffdf8;
}

.harbor-hero h1 {
  max-width: 460px;
  font-size: clamp(44px, 5vw, 68px);
}

.harbor-hero p {
  max-width: 440px;
}

.harbor-btn {
  background: #c8a45d;
  color: #103b42;
  box-shadow: 0 18px 45px rgba(200, 164, 93, 0.26);
}

.listing-card {
  color: #103b42;
  background:
    linear-gradient(135deg, rgba(200, 164, 93, 0.2), transparent),
    #fffdf8;
}

.listing-card span {
  color: #c8a45d;
}

.listing-card p {
  color: rgba(16, 59, 66, 0.68);
}

.client-section {
  padding: 92px clamp(20px, 7vw, 110px);
  background: rgba(255, 255, 255, 0.04);
}

.bluepeak-site .client-section,
.harbor-site .client-section {
  background: rgba(16, 59, 66, 0.04);
}

.client-section h2,
.client-cta h2 {
  margin: 0 0 28px;
  font-family: "Montserrat", Arial, sans-serif;
  font-size: clamp(32px, 4vw, 58px);
}

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

.client-card-grid article {
  min-height: 180px;
  padding: 26px;
  border: 1px solid rgba(255, 255, 255, 0.14);
  border-radius: 8px;
  background: rgba(255, 255, 255, 0.06);
}

.bluepeak-site .client-card-grid article,
.harbor-site .client-card-grid article {
  border-color: rgba(16, 59, 66, 0.12);
  background: rgba(255, 255, 255, 0.68);
}

.client-card-grid strong {
  font-family: "Montserrat", Arial, sans-serif;
  font-size: 20px;
}

.client-card-grid p {
  color: currentColor;
  opacity: 0.72;
  line-height: 1.7;
}

.client-cta {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  padding: 72px clamp(20px, 7vw, 110px);
}

@media (max-width: 820px) {
  .client-header,
  .client-hero,
  .client-card-grid,
  .client-cta {
    grid-template-columns: 1fr;
  }

  .client-header nav {
    justify-content: flex-start;
    flex-wrap: wrap;
  }

  .client-logo {
    grid-row: 1;
  }

  .client-hero {
    min-height: auto;
  }

  .harbor-hero {
    background:
      linear-gradient(180deg, #103b42 0 58%, transparent 58%),
      #fbfaf7;
  }

  .client-cta {
    display: grid;
  }
}
