:root {
  --background: #06151b;
  --foreground: #f3f7f5;
  --card: #0b2028;
  --card-foreground: #f3f7f5;
  --popover: #0b2028;
  --popover-foreground: #f3f7f5;
  --primary: #29d6c6;
  --primary-foreground: #041115;
  --secondary: #102a32;
  --secondary-foreground: #f3f7f5;
  --muted: #10242b;
  --muted-foreground: #96a9ad;
  --accent: #29d6c6;
  --accent-foreground: #041115;
  --destructive: #ff6467;
  --border: #ffffff1f;
  --input: #ffffff22;
  --ring: #29d6c6;
  --radius: 0.75rem;
  --deep: #06151b;
  --deep-2: #091c23;
  --cyan: #29d6c6;
  --cyan-soft: #81f0e5;
  --paper: #eaf1ee;
  --ink: #07171d;
  --line: rgba(255,255,255,.13);
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; background: var(--deep); }
body {
  margin: 0;
  background: var(--deep);
  color: var(--foreground);
  font-family: "Aptos", "Inter", "Segoe UI", Arial, sans-serif;
  font-size: 16px;
  line-height: 1.6;
}
body::selection { background: var(--cyan); color: var(--ink); }
a { color: inherit; text-decoration: none; }
button, a { -webkit-tap-highlight-color: transparent; }

.site-header {
  position: absolute;
  z-index: 20;
  top: 0;
  left: 0;
  right: 0;
  height: 92px;
  padding: 0 clamp(24px, 5vw, 76px);
  display: flex;
  align-items: center;
  justify-content: space-between;
  border-bottom: 1px solid rgba(255,255,255,.12);
  background: linear-gradient(180deg, rgba(3,13,18,.74), rgba(3,13,18,.08));
}
.logo-link { display: inline-flex; }
.brand { display: inline-flex; align-items: center; gap: 2px; white-space: nowrap; }
.brand__power { width: 40px; height: 40px; flex: 0 0 auto; overflow: visible; }
.brand__power-echo { fill: none; stroke: rgba(255,255,255,.24); stroke-width: 1.5; }
.brand__power-ring { fill: none; stroke: #f4f8f7; stroke-width: 4.2; stroke-linecap: round; }
.brand__power-stem { fill: none; stroke: var(--cyan); stroke-width: 8; stroke-linecap: round; filter: drop-shadow(0 0 5px rgba(41,214,198,.24)); }
.brand__name { font-size: 29px; line-height: 1; letter-spacing: -1.7px; font-weight: 560; }
.brand__name > span { color: var(--cyan); font-size: .37em; letter-spacing: 0; margin-left: 2px; font-weight: 600; }
.brand--compact .brand__power { width: 35px; height: 35px; }
.brand--compact .brand__name { font-size: 25px; }

.desktop-nav { display: flex; gap: 38px; color: #c1ced0; font-size: .9rem; }
.desktop-nav a { transition: color .25s ease; }
.desktop-nav a:hover { color: var(--cyan-soft); }
.button {
  min-height: 52px;
  padding: 0 22px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 11px;
  background: var(--cyan);
  color: var(--ink);
  border: 1px solid var(--cyan);
  border-radius: 3px;
  font-size: .92rem;
  font-weight: 700;
  letter-spacing: -.01em;
  transition: transform .25s ease, background .25s ease, box-shadow .25s ease;
}
.button:hover { transform: translateY(-2px); background: var(--cyan-soft); box-shadow: 0 14px 34px rgba(41,214,198,.16); }
.button--small { min-height: 43px; padding-inline: 17px; font-size: .84rem; }
.button--ghost { background: rgba(5,22,28,.48); color: #eef5f3; border-color: rgba(255,255,255,.34); backdrop-filter: blur(10px); }
.button--ghost:hover { background: rgba(11,42,50,.78); color: var(--cyan-soft); border-color: rgba(41,214,198,.58); box-shadow: none; }

.hero {
  position: relative;
  min-height: 800px;
  height: min(920px, 100svh);
  overflow: hidden;
  display: flex;
  align-items: center;
  isolation: isolate;
}
.hero__image {
  position: absolute;
  inset: 0;
  z-index: -3;
  background: url("offmarket-hero.png") center center / cover no-repeat;
  transform: scale(1.015);
}
.hero__veil {
  position: absolute;
  inset: 0;
  z-index: -2;
  background:
    linear-gradient(90deg, rgba(3,14,19,.98) 0%, rgba(3,14,19,.92) 28%, rgba(3,14,19,.38) 60%, rgba(3,14,19,.12) 100%),
    linear-gradient(180deg, rgba(3,12,17,.3) 50%, rgba(3,14,19,.92) 100%);
}
.hero::after {
  content: "";
  position: absolute;
  inset: auto 0 0;
  height: 220px;
  z-index: -1;
  background: linear-gradient(180deg, transparent, var(--deep));
}
.hero__content { width: min(760px, 58vw); margin-left: clamp(24px, 8vw, 122px); padding-top: 70px; }
.eyebrow {
  margin: 0 0 25px;
  display: flex;
  align-items: center;
  gap: 12px;
  color: var(--cyan-soft);
  font-size: .75rem;
  font-weight: 700;
  letter-spacing: .2em;
  text-transform: uppercase;
}
.eyebrow > span { width: 32px; height: 1px; background: var(--cyan); }
.hero h1 {
  margin: 0;
  max-width: 720px;
  font-size: clamp(3.2rem, 6.1vw, 6.35rem);
  line-height: .94;
  letter-spacing: -.06em;
  font-weight: 560;
}
.hero h1 em { display: block; margin-top: 14px; color: #a5b4b6; font-style: normal; font-weight: 380; }
.hero__lead { max-width: 620px; margin: 29px 0 0; color: #bcc8ca; font-size: 1.11rem; line-height: 1.75; }
.hero__actions { margin-top: 34px; display: flex; align-items: center; gap: 30px; }
.text-link { display: inline-flex; align-items: center; gap: 9px; color: #e5ecea; font-size: .92rem; border-bottom: 1px solid rgba(255,255,255,.33); padding-bottom: 4px; }
.text-link:hover { color: var(--cyan-soft); border-color: var(--cyan); }
.hero__proof { display: flex; flex-wrap: wrap; gap: 20px; margin-top: 38px; color: #97aaad; font-size: .8rem; }
.hero__proof span { display: inline-flex; align-items: center; gap: 7px; }
.hero__proof svg { color: var(--cyan); }
.hero__signal {
  position: absolute;
  right: clamp(24px, 5vw, 76px);
  bottom: 110px;
  display: flex;
  align-items: center;
  gap: 14px;
  padding: 17px 21px;
  background: rgba(5,22,28,.68);
  border: 1px solid rgba(255,255,255,.16);
  backdrop-filter: blur(14px);
}
.hero__signal svg { color: var(--cyan); }
.hero__signal div { display: flex; flex-direction: column; }
.hero__signal strong { font-size: .81rem; font-weight: 700; }
.hero__signal span { color: #9aacaf; font-size: .69rem; }
.scroll-cue { position: absolute; bottom: 34px; left: 50%; transform: translateX(-50%); display: flex; flex-direction: column; align-items: center; color: #8fa2a5; font-size: .65rem; text-transform: uppercase; letter-spacing: .2em; }
.scroll-cue svg { margin-top: 5px; color: var(--cyan); }

.section { padding: 120px clamp(24px, 8vw, 122px); }
.section-kicker { color: var(--cyan); font-size: .72rem; font-weight: 700; letter-spacing: .19em; text-transform: uppercase; }
.statement { position: relative; overflow: hidden; background: var(--deep); }
.statement::before { content: ""; position: absolute; width: 640px; height: 640px; right: -320px; top: 15%; border: 1px solid rgba(41,214,198,.08); border-radius: 50%; box-shadow: 0 0 0 100px rgba(41,214,198,.022), 0 0 0 200px rgba(41,214,198,.014); }
.statement__content { position: relative; max-width: 940px; margin-top: 70px; }
.statement__mark { position: absolute; top: -62px; left: -5px; margin: 0; color: rgba(255,255,255,.035) !important; font-size: clamp(7rem, 17vw, 15rem) !important; line-height: .8 !important; font-weight: 800; letter-spacing: -.08em; pointer-events: none; }
.statement h2, .section-heading h2, .closing h2 {
  position: relative;
  margin: 0;
  font-size: clamp(2.5rem, 5vw, 5rem);
  line-height: 1.02;
  letter-spacing: -.052em;
  font-weight: 520;
}
.statement h2 span, .section-heading h2 span { color: #8fa3a6; font-weight: 360; }
.statement__content > p:last-child { position: relative; max-width: 670px; margin: 35px 0 0; color: #9fb0b2; font-size: 1.04rem; line-height: 1.85; }
.pillars { display: grid; grid-template-columns: repeat(3, 1fr); gap: 1px; margin-top: 88px; background: var(--line); border: 1px solid var(--line); }
.pillar { min-height: 300px; padding: 40px; background: var(--deep); }
.icon-box { width: 51px; height: 51px; display: grid; place-items: center; color: var(--cyan); border: 1px solid rgba(41,214,198,.35); border-radius: 50%; }
.pillar h3 { margin: 54px 0 13px; font-size: 1.18rem; font-weight: 600; letter-spacing: -.02em; }
.pillar p { margin: 0; color: #8fa2a5; font-size: .93rem; line-height: 1.75; }

.process { background: #e9efed; color: var(--ink); }
.process .section-kicker { color: #078b80; }
.section-heading { display: flex; align-items: flex-end; justify-content: space-between; gap: 80px; }
.section-heading h2 { margin-top: 35px; }
.section-heading h2 span { color: #66777a; }
.section-heading > p { max-width: 430px; margin: 0 0 7px; color: #54676a; line-height: 1.8; }
.process-grid { display: grid; grid-template-columns: repeat(3, 1fr); margin-top: 78px; border-top: 1px solid rgba(7,23,29,.18); }
.process-grid article { position: relative; padding: 48px 38px 38px 0; border-right: 1px solid rgba(7,23,29,.18); }
.process-grid article + article { padding-left: 38px; }
.process-grid article:last-child { border-right: 0; }
.process-grid__number { position: absolute; right: 25px; top: 25px; color: rgba(7,23,29,.17); font-size: 3.9rem; line-height: 1; font-weight: 700; letter-spacing: -.06em; }
.process-grid__icon { width: 42px; height: 42px; display: grid; place-items: center; background: var(--ink); color: var(--cyan); }
.process-grid h3 { margin: 52px 0 13px; font-size: 1.18rem; font-weight: 700; }
.process-grid p { margin: 0; color: #5f7073; font-size: .93rem; line-height: 1.75; }

.audiences { display: grid; grid-template-columns: 1fr 1fr; }
.audience { position: relative; min-height: 520px; padding: 85px clamp(30px, 7vw, 110px); display: flex; flex-direction: column; justify-content: flex-end; overflow: hidden; }
.audience::before { content: ""; position: absolute; inset: 0; background: radial-gradient(circle at 80% 5%, rgba(41,214,198,.18), transparent 48%); }
.audience--buyers { background: #09242c; }
.audience--owners { background: #0d3037; border-left: 1px solid rgba(255,255,255,.12); }
.audience--owners::before { background: radial-gradient(circle at 20% 5%, rgba(41,214,198,.14), transparent 48%); }
.audience > * { position: relative; }
.audience__label { color: var(--cyan); font-size: .72rem; font-weight: 700; letter-spacing: .18em; text-transform: uppercase; }
.audience h2 { max-width: 560px; margin: 27px 0 20px; font-size: clamp(2.15rem, 4vw, 4rem); line-height: 1.04; letter-spacing: -.05em; font-weight: 470; }
.audience p { max-width: 540px; margin: 0; color: #a7b7b9; line-height: 1.8; }
.audience a { width: fit-content; margin-top: 34px; display: inline-flex; align-items: center; gap: 9px; color: var(--cyan-soft); font-size: .89rem; border-bottom: 1px solid rgba(41,214,198,.45); }

.opportunities { background: var(--deep); }
.section-heading--center { justify-content: center; text-align: center; }
.opportunity-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 18px; max-width: 1240px; margin: 76px auto 0; }
.opportunity-grid article { min-height: 370px; padding: 34px; background: linear-gradient(145deg, #0c232a, #081a21); border: 1px solid var(--line); transition: transform .3s ease, border-color .3s ease; }
.opportunity-grid article:hover { transform: translateY(-7px); border-color: rgba(41,214,198,.4); }
.opportunity-grid__top { display: flex; align-items: center; justify-content: space-between; color: var(--cyan); }
.opportunity-grid__top span { color: #71878a; font-size: .75rem; letter-spacing: .15em; }
.opportunity-grid h3 { margin: 130px 0 16px; font-size: 1.32rem; font-weight: 580; }
.opportunity-grid p { margin: 0; color: #8fa2a5; font-size: .92rem; line-height: 1.75; }

.closing { position: relative; overflow: hidden; padding: 135px 24px; display: flex; flex-direction: column; align-items: center; text-align: center; background: #041116; border-top: 1px solid var(--line); }
.closing__glow { position: absolute; width: 620px; height: 620px; top: -430px; left: 50%; transform: translateX(-50%); background: var(--cyan); filter: blur(150px); opacity: .16; border-radius: 50%; }
.closing > * { position: relative; }
.closing .eyebrow { justify-content: center; }
.closing h2 { max-width: 970px; }
.closing > p:not(.eyebrow) { max-width: 600px; margin: 27px 0 34px; color: #94a7aa; font-size: 1.02rem; }

footer { padding: 65px clamp(24px, 6vw, 90px) 26px; background: #020c10; border-top: 1px solid var(--line); }
.footer__brand { display: flex; justify-content: space-between; align-items: center; gap: 30px; }
.footer__brand p { margin: 0; color: #7f9396; font-size: .86rem; }
.footer__meta { margin-top: 55px; padding: 28px 0; display: flex; justify-content: space-between; gap: 20px; color: #879a9d; font-size: .8rem; border-top: 1px solid var(--line); border-bottom: 1px solid var(--line); }
.footer__meta a { color: #c4d0d0; }
.footer__meta a:hover { color: var(--cyan); }
.footer__bottom { padding-top: 25px; display: flex; justify-content: space-between; color: #50666a; font-size: .7rem; text-transform: uppercase; letter-spacing: .12em; }

@media (max-width: 980px) {
  .desktop-nav { display: none; }
  .hero__content { width: calc(100% - 48px); margin-inline: 24px; }
  .hero__veil { background: linear-gradient(90deg, rgba(3,14,19,.96), rgba(3,14,19,.58)), linear-gradient(180deg, transparent 40%, var(--deep)); }
  .hero__signal { display: none; }
  .pillars, .process-grid, .opportunity-grid { grid-template-columns: 1fr; }
  .pillar { min-height: auto; }
  .process-grid article, .process-grid article + article { padding: 38px 0; border-right: 0; border-bottom: 1px solid rgba(7,23,29,.18); }
  .process-grid article:last-child { border-bottom: 0; }
  .process-grid__number { right: 0; }
  .audiences { grid-template-columns: 1fr; }
  .audience--owners { border-left: 0; border-top: 1px solid var(--line); }
  .opportunity-grid article { min-height: 300px; }
  .opportunity-grid h3 { margin-top: 90px; }
}

@media (max-width: 680px) {
  .site-header { height: 78px; padding-inline: 18px; }
  .site-header .button { width: 43px; min-height: 43px; padding: 0; font-size: 0; }
  .brand__power { width: 35px; height: 35px; }
  .brand__name { font-size: 24px; }
  .hero { min-height: 760px; height: 100svh; align-items: center; }
  .hero__image { background-position: 66% center; }
  .hero__content { padding-top: 68px; }
  .hero h1 { font-size: clamp(3rem, 14.5vw, 4.5rem); }
  .hero__lead { font-size: 1rem; line-height: 1.65; }
  .hero__actions { align-items: flex-start; flex-direction: column; gap: 21px; }
  .hero__actions .button { width: min(100%, 290px); }
  .hero__proof { gap: 11px 18px; margin-top: 30px; }
  .scroll-cue { display: none; }
  .section { padding: 90px 22px; }
  .statement__content { margin-top: 55px; }
  .statement__mark { top: -30px; }
  .statement h2, .section-heading h2, .closing h2 { font-size: clamp(2.45rem, 11vw, 3.55rem); }
  .pillars { margin-top: 60px; }
  .pillar { padding: 32px 28px; }
  .pillar h3 { margin-top: 37px; }
  .section-heading { align-items: flex-start; flex-direction: column; gap: 25px; }
  .process-grid { margin-top: 52px; }
  .audience { min-height: 470px; padding: 70px 24px; }
  .opportunity-grid { margin-top: 52px; }
  .closing { padding: 100px 22px; }
  .footer__brand, .footer__meta, .footer__bottom { align-items: flex-start; flex-direction: column; }
  .footer__brand { gap: 20px; }
  .footer__meta { margin-top: 40px; }
  .footer__bottom { gap: 9px; }
}

@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
  *, *::before, *::after { transition-duration: .01ms !important; }
}
