:root {
  --black: #030607;
  --ink: #101414;
  --charcoal: #121716;
  --teal-deep: #031f22;
  --teal: #185f5f;
  --teal-bright: #2b7a78;
  --cream: #f7f5f0;
  --white: #ffffff;
  --mist: #e9eeee;
  --line: rgba(255, 255, 255, 0.18);
  --line-dark: rgba(6, 34, 35, 0.14);
  --gold: #c7a267;
  --coral: #dc5c57;
  --serif: "Cormorant Garamond", Georgia, serif;
  --sans: "Montserrat", Verdana, sans-serif;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  color: var(--ink);
  background: var(--white);
  font-family: var(--sans);
  font-size: 16px;
  line-height: 1.75;
}

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

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

.notice {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 12px;
  min-height: 38px;
  padding: 9px 20px;
  color: var(--white);
  background: var(--black);
  font-size: 12px;
  font-weight: 800;
  letter-spacing: 0.14em;
  text-align: center;
  text-transform: uppercase;
}

.notice span {
  width: 9px;
  height: 9px;
  background: var(--coral);
  border-radius: 999px;
  box-shadow: 0 0 0 4px rgba(220, 92, 87, 0.16);
  flex: 0 0 auto;
}

.nav {
  position: sticky;
  top: 0;
  z-index: 20;
  display: flex;
  align-items: center;
  justify-content: space-between;
  min-height: 86px;
  padding: 18px clamp(20px, 7vw, 128px);
  background: rgba(255, 255, 255, 0.94);
  border-bottom: 1px solid rgba(0, 0, 0, 0.06);
  backdrop-filter: blur(14px);
}

.brand img {
  width: clamp(112px, 12vw, 164px);
}

.nav-links {
  display: flex;
  align-items: center;
  gap: clamp(18px, 3vw, 42px);
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.nav-cta {
  padding: 13px 23px;
  color: var(--white);
  background: linear-gradient(135deg, var(--teal), var(--teal-bright));
  box-shadow: 0 12px 24px rgba(4, 33, 35, 0.16);
}

.hero {
  position: relative;
  min-height: 800px;
  isolation: isolate;
  overflow: hidden;
  color: var(--white);
  background: var(--teal-deep);
}

.hero-image {
  position: absolute;
  inset: 0;
  z-index: -2;
  background-image:
    linear-gradient(90deg, rgba(3, 6, 7, 0.96) 0%, rgba(3, 16, 18, 0.86) 35%, rgba(3, 16, 18, 0.36) 68%, rgba(3, 6, 7, 0.2) 100%),
    linear-gradient(180deg, rgba(3, 6, 7, 0.18), rgba(3, 6, 7, 0.55)),
    url("assets/clarity-workspace.png");
  background-position: center, center, center right;
  background-size: cover;
}

.hero::after,
.dark-section::after,
.final-cta::after {
  content: "";
  position: absolute;
  inset: 0;
  z-index: -1;
  pointer-events: none;
  opacity: 0.28;
  background-image:
    linear-gradient(rgba(255, 255, 255, 0.035) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255, 255, 255, 0.025) 1px, transparent 1px);
  background-size: 46px 46px;
}

.hero-content {
  width: min(760px, calc(100% - 40px));
  padding: 116px 0 96px clamp(20px, 7vw, 128px);
}

.eyebrow {
  margin: 0 0 22px;
  color: var(--teal-bright);
  font-size: 12px;
  font-weight: 800;
  letter-spacing: 0.22em;
  text-transform: uppercase;
}

.eyebrow.line {
  display: flex;
  align-items: center;
  gap: 16px;
  color: var(--white);
}

.eyebrow.line::after {
  content: "";
  width: 96px;
  height: 1px;
  background: currentColor;
  opacity: 0.32;
}

.eyebrow.dark {
  color: var(--teal);
}

.eyebrow.centered {
  text-align: center;
}

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

h1 {
  max-width: 760px;
  font-family: var(--serif);
  font-size: clamp(54px, 8vw, 106px);
  font-weight: 700;
  letter-spacing: 0;
}

h2 {
  font-family: var(--serif);
  font-size: clamp(38px, 5vw, 68px);
  font-weight: 600;
  letter-spacing: 0;
}

h3 {
  font-family: var(--serif);
  font-size: 28px;
}

.hero-subhead {
  margin: 14px 0 0;
  font-family: var(--serif);
  font-size: clamp(28px, 3.4vw, 44px);
  font-style: italic;
  line-height: 1.05;
}

.hero-copy {
  max-width: 690px;
  margin: 30px 0 0;
  color: rgba(255, 255, 255, 0.84);
  font-size: 18px;
}

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

.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 56px;
  padding: 0 28px;
  border: 1px solid transparent;
  font-size: 12px;
  font-weight: 800;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  transition: transform 180ms ease, box-shadow 180ms ease, background 180ms ease;
}

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

.button-light {
  color: var(--teal-deep);
  background: linear-gradient(135deg, var(--white), #e9eeee);
  box-shadow: 0 16px 34px rgba(0, 0, 0, 0.28);
}

.button-outline {
  color: var(--white);
  border-color: rgba(255, 255, 255, 0.38);
  background: rgba(255, 255, 255, 0.04);
}

.button-teal {
  color: var(--white);
  background: linear-gradient(135deg, var(--teal), var(--teal-bright));
  box-shadow: 0 16px 30px rgba(5, 47, 49, 0.2);
}

.micro-row {
  display: flex;
  flex-wrap: wrap;
  gap: 12px 24px;
  margin-top: 28px;
  color: rgba(255, 255, 255, 0.62);
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 0.16em;
  text-transform: uppercase;
}

.micro-row span:not(:first-child)::before {
  content: "•";
  margin-right: 22px;
  color: var(--white);
}

.section-inner {
  width: min(1120px, calc(100% - 40px));
  margin: 0 auto;
  padding: 112px 0;
}

.section-inner.narrow {
  width: min(820px, calc(100% - 40px));
  text-align: center;
}

.dark-section {
  position: relative;
  isolation: isolate;
  color: var(--white);
  background:
    linear-gradient(90deg, rgba(3, 6, 7, 0.98), rgba(5, 31, 33, 0.96)),
    var(--black);
}

.dark-section h2,
.final-cta h2 {
  color: var(--white);
}

.dark-section p {
  color: rgba(255, 255, 255, 0.74);
}

.problem p {
  margin: 28px auto 0;
  max-width: 720px;
}

.problem .button {
  margin-top: 34px;
}

.light-section {
  background: var(--white);
}

.light-section h2 {
  width: min(920px, 100%);
  margin: 0 auto;
  text-align: center;
}

.fit-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 0;
  margin-top: 54px;
  border-top: 1px solid var(--line-dark);
  border-left: 1px solid var(--line-dark);
}

.fit-grid article {
  min-height: 260px;
  padding: 34px 28px;
  border-right: 1px solid var(--line-dark);
  border-bottom: 1px solid var(--line-dark);
}

.fit-grid span,
.steps span {
  display: block;
  color: var(--teal);
  font-family: var(--serif);
  font-size: 46px;
  font-weight: 700;
  line-height: 1;
}

.fit-grid p {
  margin: 28px 0 0;
  font-weight: 500;
}

.split-section {
  display: grid;
  grid-template-columns: minmax(0, 0.92fr) minmax(0, 1fr);
  min-height: 760px;
  background: var(--cream);
}

.split-section.why {
  grid-template-columns: minmax(0, 1fr) minmax(0, 0.92fr);
  background: var(--white);
}

.split-media {
  min-height: 620px;
  overflow: hidden;
}

.split-media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.split-copy {
  align-self: center;
  width: min(640px, calc(100% - 40px));
  margin: 0 auto;
  padding: 86px 0;
}

.split-copy p {
  margin: 28px 0 0;
  color: rgba(16, 20, 20, 0.72);
}

.split-copy .button {
  margin-top: 34px;
}

.two-col {
  display: grid;
  grid-template-columns: minmax(0, 0.98fr) minmax(320px, 0.78fr);
  gap: clamp(44px, 7vw, 96px);
  align-items: center;
}

.two-col p {
  max-width: 680px;
}

.check-panel {
  display: grid;
  grid-template-columns: 1fr 1fr;
  border-top: 1px solid var(--line);
  border-left: 1px solid var(--line);
}

.check-panel span {
  min-height: 84px;
  padding: 26px 22px;
  border-right: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
  color: rgba(255, 255, 255, 0.86);
  font-size: 12px;
  font-weight: 800;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.marble-section {
  background-image:
    linear-gradient(rgba(255, 255, 255, 0.88), rgba(255, 255, 255, 0.9)),
    url("assets/marble-bg.png");
  background-position: center;
  background-size: cover;
}

.includes h2 {
  text-align: center;
}

.outcome h2 {
  margin: 0 auto;
  max-width: 860px;
}

.outcome-copy {
  display: grid;
  gap: 14px;
  margin: 34px auto 0;
  max-width: 740px;
}

.outcome-copy p {
  margin: 0;
  color: rgba(16, 20, 20, 0.72);
}

.outcome .button {
  margin-top: 34px;
}

.include-list {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 18px;
  margin-top: 54px;
}

.include-list article {
  min-height: 190px;
  padding: 30px;
  background: rgba(255, 255, 255, 0.78);
  border: 1px solid rgba(6, 34, 35, 0.12);
  box-shadow: 0 24px 44px rgba(11, 33, 34, 0.08);
}

.include-list strong {
  color: var(--teal);
  font-family: var(--serif);
  font-size: 30px;
  line-height: 1;
}

.include-list p {
  margin: 18px 0 0;
  color: rgba(16, 20, 20, 0.68);
}

.process {
  display: grid;
  grid-template-columns: minmax(0, 0.78fr) minmax(0, 1fr);
  min-height: 900px;
  color: var(--white);
  background: var(--black);
}

.process-image {
  min-height: 720px;
  background-image:
    linear-gradient(180deg, rgba(3, 6, 7, 0.1), rgba(3, 6, 7, 0.62)),
    url("assets/os-foundation.png");
  background-position: center;
  background-size: cover;
}

.process-content {
  align-self: center;
  width: min(720px, calc(100% - 40px));
  margin: 0 auto;
  padding: 86px 0;
}

.steps {
  display: grid;
  gap: 0;
  margin-top: 44px;
  border-top: 1px solid var(--line);
}

.steps article {
  display: grid;
  grid-template-columns: 88px 1fr;
  gap: 28px;
  padding: 28px 0;
  border-bottom: 1px solid var(--line);
}

.steps h3 {
  color: var(--white);
}

.steps p {
  margin: 12px 0 0;
  color: rgba(255, 255, 255, 0.68);
}

.trust-grid {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(320px, 0.75fr);
  gap: clamp(44px, 7vw, 90px);
  align-items: center;
}

.trust-copy {
  border-left: 1px solid var(--line);
  padding-left: clamp(28px, 4vw, 54px);
}

.quote-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 16px;
  margin: 50px 0 44px;
}

blockquote {
  margin: 0;
  min-height: 150px;
  padding: 28px;
  color: var(--white);
  background:
    linear-gradient(135deg, rgba(3, 31, 34, 0.96), rgba(18, 23, 22, 0.96));
  border: 1px solid rgba(199, 162, 103, 0.22);
  font-family: var(--serif);
  font-size: 29px;
  line-height: 1.05;
}

.delay .button {
  display: flex;
  width: max-content;
  margin: 34px auto 0;
}

.start-section {
  background:
    linear-gradient(rgba(255, 255, 255, 0.92), rgba(255, 255, 255, 0.94)),
    url("assets/marble-bg.png");
  background-position: center;
  background-size: cover;
}

.start-grid {
  display: grid;
  grid-template-columns: minmax(0, 0.86fr) minmax(340px, 0.72fr);
  gap: clamp(40px, 7vw, 92px);
  align-items: start;
}

.start-copy {
  position: sticky;
  top: 132px;
}

.start-copy p {
  margin: 28px 0 0;
  color: rgba(16, 20, 20, 0.72);
  font-size: 18px;
}

.start-notes {
  display: grid;
  gap: 0;
  margin-top: 40px;
  border-top: 1px solid var(--line-dark);
}

.start-notes span {
  padding: 18px 0;
  border-bottom: 1px solid var(--line-dark);
  color: var(--teal);
  font-size: 12px;
  font-weight: 800;
  letter-spacing: 0.13em;
  text-transform: uppercase;
}

.ghl-form-wrap {
  min-height: 760px;
  padding: clamp(12px, 2vw, 18px);
  background: rgba(255, 255, 255, 0.82);
  border: 1px solid rgba(6, 34, 35, 0.14);
  box-shadow: 0 28px 64px rgba(6, 34, 35, 0.12);
}

.ghl-form-wrap iframe {
  display: block;
  width: 100%;
  min-height: 723px;
}

.final-cta {
  position: relative;
  isolation: isolate;
  color: var(--white);
  text-align: center;
  background:
    linear-gradient(rgba(3, 6, 7, 0.86), rgba(3, 16, 18, 0.94)),
    url("assets/retention-ops.png");
  background-position: center;
  background-size: cover;
}

.final-cta img {
  width: min(390px, 74vw);
  margin: 0 auto 32px;
}

.final-cta p {
  width: min(720px, 100%);
  margin: 24px auto 0;
  color: rgba(255, 255, 255, 0.78);
  font-size: 19px;
}

.final-cta .hero-actions {
  justify-content: center;
}

.footer {
  padding: 34px 20px;
  color: rgba(255, 255, 255, 0.62);
  background: var(--black);
  text-align: center;
}

.footer p {
  margin: 0;
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.footer p + p {
  margin-top: 8px;
  color: rgba(255, 255, 255, 0.42);
  font-weight: 500;
  letter-spacing: 0.08em;
}

@media (max-width: 980px) {
  .nav {
    min-height: auto;
  }

  .nav-links a:not(.nav-cta) {
    display: none;
  }

  .hero {
    min-height: 760px;
  }

  .hero-content {
    padding: 92px 20px 84px;
  }

  .fit-grid,
  .include-list,
  .quote-grid {
    grid-template-columns: 1fr 1fr;
  }

  .split-section,
  .split-section.why,
  .process,
  .two-col,
  .trust-grid,
  .start-grid {
    grid-template-columns: 1fr;
  }

  .start-copy {
    position: static;
  }

  .split-media,
  .process-image {
    min-height: 520px;
  }
}

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

  .notice {
    align-items: flex-start;
    font-size: 10px;
    line-height: 1.45;
  }

  .nav {
    padding: 14px 16px;
  }

  .brand img {
    width: 106px;
  }

  .nav-cta {
    padding: 11px 14px;
    font-size: 10px;
  }

  .hero {
    min-height: 720px;
  }

  .hero-image {
    background-position: center, center, 62% center;
  }

  .hero-content {
    width: 100%;
    padding-top: 70px;
  }

  h1 {
    font-size: 52px;
  }

  h2 {
    font-size: 40px;
  }

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

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

  .button {
    min-height: 54px;
    padding: 0 18px;
  }

  .micro-row span {
    width: 100%;
  }

  .micro-row span:not(:first-child)::before {
    content: none;
  }

  .section-inner {
    width: min(100% - 32px, 1120px);
    padding: 78px 0;
  }

  .fit-grid,
  .include-list,
  .quote-grid,
  .check-panel {
    grid-template-columns: 1fr;
  }

  .ghl-form-wrap {
    min-height: 760px;
    padding: 8px;
  }

  .fit-grid article {
    min-height: auto;
  }

  .split-media,
  .process-image {
    min-height: 440px;
  }

  .steps article {
    grid-template-columns: 1fr;
    gap: 12px;
  }

  .trust-copy {
    padding-left: 0;
    border-left: 0;
  }

  blockquote {
    min-height: auto;
  }
}
