:root {
  --ink: #414042;
  --muted: #7c8d97;
  --soft: #f5f7f8;
  --line: #dfe5e8;
  --charcoal: #414042;
  --deep: #102b4e;
  --blue: #102b4e;
  --cyan: #00b0d9;
  --cyan-ink: #017a99;
  --slate: #7c8d97;
  --red: #de2f56;
  --cta-yellow: #feb101;
  --white: #ffffff;
  --max: 1180px;
  --gutter: clamp(32px, 6vw, 96px);
  --pad-x: max(var(--gutter), (100% - var(--max)) / 2);
  --shadow: 0 28px 80px rgba(0, 0, 0, 0.15);
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  color: var(--ink);
  background: var(--white);
  font-family:
    Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  line-height: 1.5;
}

body.nav-open {
  overflow: hidden;
}

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

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

.site-header {
  position: fixed;
  top: 0;
  right: 0;
  left: 0;
  z-index: 20;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  padding: 14px var(--pad-x);
  background: rgba(255, 255, 255, 0.78);
  border-bottom: 1px solid rgba(231, 226, 218, 0.6);
  backdrop-filter: blur(24px);
  transition:
    padding 180ms ease,
    background 180ms ease,
    box-shadow 180ms ease;
}

.site-header.is-scrolled {
  padding-top: 12px;
  padding-bottom: 12px;
  background: rgba(255, 255, 255, 0.9);
  box-shadow: 0 16px 40px rgba(20, 20, 20, 0.08);
}

.brand {
  width: clamp(150px, 15vw, 178px);
}

.site-nav {
  display: flex;
  align-items: center;
  gap: clamp(18px, 2.4vw, 32px);
  color: rgba(20, 20, 20, 0.72);
  font-size: 0.92rem;
  font-weight: 650;
}

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

.site-nav a:hover {
  color: var(--ink);
}

.site-nav a[aria-current="page"] {
  color: var(--ink);
}

.nav-login,
.nav-cta {
  padding: 12px 17px;
  border-radius: 12px;
}

.nav-login {
  color: var(--ink);
  border: 1px solid rgba(20, 20, 20, 0.14);
  background: rgba(255, 255, 255, 0.66);
}

.nav-cta {
  color: var(--ink);
  border: 1px solid rgba(254, 177, 1, 0.4);
  background: var(--cta-yellow);
  box-shadow: 0 12px 28px rgba(254, 177, 1, 0.2);
}

.nav-toggle {
  display: none;
  width: 42px;
  height: 42px;
  padding: 0;
  border: 0;
  background: transparent;
}

.nav-toggle span {
  display: block;
  width: 24px;
  height: 2px;
  margin: 6px auto;
  background: var(--ink);
  transition:
    transform 160ms ease,
    opacity 160ms ease;
}

.hero {
  position: relative;
  display: grid;
  grid-template-columns: minmax(0, 1.45fr) minmax(420px, 1fr);
  column-gap: clamp(34px, 5vw, 78px);
  row-gap: 18px;
  min-height: 100svh;
  padding: clamp(122px, 14vh, 158px) var(--pad-x) clamp(22px, 3vw, 38px);
  overflow: hidden;
  background:
    radial-gradient(circle at 86% 26%, rgba(0, 176, 217, 0.12), transparent 30%),
    linear-gradient(180deg, #ffffff 0%, #f7f5f1 100%);
}

.hero::after {
  position: absolute;
  right: 0;
  bottom: 0;
  left: 0;
  height: 14vh;
  min-height: 100px;
  content: "";
  background: linear-gradient(180deg, rgba(247, 245, 241, 0), #f7f5f1);
  pointer-events: none;
}

.hero-copy {
  align-self: center;
  width: min(100%, 680px);
  padding-bottom: 22px;
}

.eyebrow,
.section-kicker {
  margin: 0 0 18px;
  color: var(--cyan-ink);
  font-size: 0.76rem;
  font-weight: 800;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.hero .eyebrow {
  margin-bottom: 24px;
}

.hero h1 {
  font-size: clamp(2.95rem, 4.55vw, 4.95rem);
}

h1,
h2,
h3,
p {
  margin-top: 0;
}

h1 {
  max-width: 780px;
  margin-bottom: 20px;
  font-size: clamp(3.1rem, 4.9vw, 5.35rem);
  font-weight: 760;
  letter-spacing: 0;
  line-height: 0.96;
}

h2 {
  font-size: clamp(2rem, 4vw, 4.6rem);
  font-weight: 730;
  letter-spacing: 0;
  line-height: 1;
}

h3 {
  font-size: clamp(1.15rem, 1.4vw, 1.38rem);
  line-height: 1.14;
}

.hero-text {
  max-width: 690px;
  margin-bottom: 26px;
  color: rgba(20, 20, 20, 0.72);
  font-size: clamp(1.06rem, 1.35vw, 1.28rem);
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
}

.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 48px;
  padding: 14px 22px;
  border: 1px solid transparent;
  border-radius: 12px;
  font-weight: 760;
  line-height: 1;
  cursor: pointer;
  transition:
    transform 160ms ease,
    box-shadow 160ms ease,
    background 160ms ease;
}

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

.button-primary {
  color: var(--ink);
  background: var(--cta-yellow);
  box-shadow: 0 16px 36px rgba(254, 177, 1, 0.24);
}

.button-secondary {
  color: var(--ink);
  border-color: rgba(20, 20, 20, 0.14);
  background: rgba(255, 255, 255, 0.68);
}

.text-link {
  display: inline-flex;
  width: fit-content;
  margin-top: 20px;
  color: var(--cyan-ink);
  font-weight: 850;
  text-decoration: underline;
  text-decoration-thickness: 2px;
  text-underline-offset: 5px;
}

.inline-link {
  color: var(--cyan-ink);
  font-weight: 800;
  text-decoration: underline;
  text-decoration-thickness: 2px;
  text-underline-offset: 3px;
  transition: color 160ms ease;
}

.inline-link:hover {
  color: var(--cyan);
}

.hero-visual {
  position: relative;
  z-index: 2;
  align-self: center;
  padding-bottom: 22px;
}

.dashboard-stage {
  position: relative;
  width: min(100%, 690px);
  margin-left: auto;
  padding: 12px;
  border: 1px solid rgba(20, 20, 20, 0.1);
  border-radius: 18px;
  background: rgba(255, 255, 255, 0.72);
  box-shadow: 0 34px 90px rgba(20, 20, 20, 0.18);
}

.dashboard-stage::before {
  position: absolute;
  inset: -28px;
  z-index: -1;
  border-radius: 28px;
  content: "";
  background:
    linear-gradient(135deg, rgba(0, 176, 217, 0.18), rgba(16, 43, 78, 0.1)),
    rgba(255, 255, 255, 0.22);
  filter: blur(18px);
}

.dashboard-stage img {
  width: 100%;
  aspect-ratio: 4 / 3;
  border-radius: 10px;
  object-fit: cover;
  object-position: center top;
}

.hero-proof {
  position: relative;
  z-index: 2;
  grid-column: 1 / -1;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 16px;
  width: min(100%, var(--max));
  margin: clamp(8px, 1.4vw, 18px) auto 0;
}

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

.proof-card {
  position: relative;
  overflow: hidden;
  min-height: 150px;
  padding: 24px;
  border: 1px solid rgba(20, 20, 20, 0.08);
  border-radius: 18px;
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.96), rgba(255, 255, 255, 0.76)),
    var(--white);
  box-shadow: 0 24px 64px rgba(20, 20, 20, 0.1);
  transition:
    transform 180ms ease,
    box-shadow 180ms ease;
}

.proof-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 28px 76px rgba(20, 20, 20, 0.14);
}

.proof-card::before {
  position: absolute;
  inset: 0 0 auto;
  height: 6px;
  content: "";
  background: var(--cyan);
}

.proof-card::after {
  position: absolute;
  right: -34px;
  bottom: -46px;
  width: 128px;
  height: 128px;
  border-radius: 50%;
  content: "";
  background: rgba(0, 176, 217, 0.1);
}

.proof-card > * {
  position: relative;
  z-index: 1;
}

.proof-card:nth-child(2)::before {
  background: var(--blue);
}

.proof-card:nth-child(2)::after {
  background: rgba(16, 43, 78, 0.1);
}

.proof-card:nth-child(3)::before {
  background: var(--slate);
}

.proof-card:nth-child(3)::after {
  background: rgba(124, 141, 151, 0.12);
}

.hero-proof .proof-number {
  width: max-content;
  margin-bottom: 16px;
  padding: 5px 9px;
  color: var(--cyan);
  border-radius: 999px;
  background: rgba(0, 176, 217, 0.12);
  font-size: 0.72rem;
  font-weight: 900;
}

.proof-card:nth-child(2) .proof-number {
  color: var(--blue);
  background: rgba(16, 43, 78, 0.1);
}

.proof-card:nth-child(3) .proof-number {
  color: var(--slate);
  background: rgba(124, 141, 151, 0.12);
}

.hero-proof strong {
  margin-bottom: 10px;
  font-size: 1.18rem;
}

.hero-proof span {
  color: var(--muted);
}

.platform,
.outcomes,
.launch,
.testimonials,
.contact {
  padding: clamp(52px, 6vw, 90px) var(--pad-x);
}

.platform-teaser {
  display: grid;
  grid-template-columns: minmax(0, 0.96fr) minmax(280px, 0.74fr);
  gap: clamp(26px, 4vw, 58px);
  align-items: center;
  padding: clamp(44px, 5vw, 72px) var(--pad-x);
  border-top: 1px solid rgba(20, 20, 20, 0.08);
  background:
    linear-gradient(90deg, rgba(16, 43, 78, 0.07), transparent 46%),
    #ffffff;
}

.platform-teaser h2 {
  max-width: 820px;
  margin-bottom: 0;
  font-size: clamp(1.95rem, 3.2vw, 3.4rem);
}

.platform-teaser p:not(.section-kicker) {
  max-width: 620px;
  margin-bottom: 22px;
  color: var(--muted);
  font-size: clamp(1.04rem, 1.24vw, 1.16rem);
}

.section-heading h2,
.section-intro,
.launch-copy,
.contact > div,
.booking-embed {
  max-width: var(--max);
}

.evidence-section {
  scroll-margin-top: 104px;
  padding: clamp(42px, 5.5vw, 72px) var(--pad-x);
  background:
    linear-gradient(135deg, rgba(16, 43, 78, 0.045), transparent 34%),
    linear-gradient(180deg, #ffffff 0%, #f5f7f8 100%);
  border-top: 1px solid rgba(20, 20, 20, 0.08);
}

.evidence-hero {
  width: min(100%, var(--max));
  margin: 0 auto clamp(28px, 3.6vw, 44px);
}

.evidence-hero h2 {
  max-width: 940px;
  margin-bottom: clamp(18px, 2vw, 24px);
  font-size: clamp(2.35rem, 4vw, 4.55rem);
  line-height: 0.96;
}

.evidence-lead {
  max-width: 760px;
  margin: 0;
  color: rgba(65, 64, 66, 0.72);
  font-size: clamp(1.05rem, 1.25vw, 1.2rem);
}

.evidence-compare {
  display: grid;
  grid-template-columns: 1fr auto 1fr;
  align-items: stretch;
  gap: clamp(14px, 2vw, 26px);
  width: min(100%, var(--max));
  margin: 0 auto;
}

.evidence-compare__panel {
  padding: clamp(24px, 2.6vw, 34px);
  border: 1px solid rgba(20, 20, 20, 0.08);
  border-radius: 20px;
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.94), rgba(255, 255, 255, 0.78)),
    rgba(124, 141, 151, 0.12);
  box-shadow: 0 22px 60px rgba(20, 20, 20, 0.08);
}

.evidence-compare__panel--gap {
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.94), rgba(255, 255, 255, 0.78)),
    rgba(0, 176, 217, 0.12);
}

.evidence-compare__arrow {
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--blue);
  font-size: clamp(1.7rem, 2.6vw, 2.4rem);
  font-weight: 700;
}

.evidence-cycle {
  display: grid;
  gap: 12px;
}

.evidence-cycle article {
  position: relative;
  overflow: hidden;
  border: 1px solid rgba(20, 20, 20, 0.08);
  border-radius: 18px;
  background: rgba(255, 255, 255, 0.8);
  box-shadow: 0 22px 60px rgba(20, 20, 20, 0.08);
  transition:
    transform 180ms ease,
    box-shadow 180ms ease;
}

.evidence-cycle article:hover {
  transform: translateY(-5px);
  box-shadow: 0 28px 76px rgba(20, 20, 20, 0.12);
}

.evidence-compare__panel span {
  display: inline-flex;
  width: fit-content;
  margin-bottom: 16px;
  color: var(--slate);
  font-size: 0.74rem;
  font-weight: 900;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.evidence-compare__panel--gap span {
  color: var(--cyan-ink);
}

.evidence-compare__panel ul {
  display: grid;
  gap: 10px;
  margin: 0;
  padding: 0;
  list-style: none;
  color: rgba(65, 64, 66, 0.82);
  font-weight: 700;
  font-size: clamp(1rem, 1.1vw, 1.08rem);
}

.evidence-compare__panel li {
  position: relative;
  padding-left: 20px;
}

.evidence-compare__panel li::before {
  position: absolute;
  top: 0.62em;
  left: 0;
  width: 7px;
  height: 7px;
  border-radius: 50%;
  content: "";
  background: var(--slate);
}

.evidence-compare__panel--gap li::before {
  background: var(--cyan);
}

.evidence-cycle h3 {
  margin-bottom: 16px;
}

.evidence-cycle {
  grid-template-columns: repeat(4, 1fr);
  width: min(100%, var(--max));
  margin: 0 auto;
}

.evidence-cycle article {
  min-height: 184px;
  padding: clamp(20px, 2.2vw, 26px);
}

.evidence-cycle article::before {
  position: absolute;
  inset: 0 0 auto;
  height: 5px;
  content: "";
  background: var(--blue);
}

.evidence-cycle span {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 40px;
  height: 40px;
  margin-bottom: 16px;
  border-radius: 50%;
  background: rgba(16, 43, 78, 0.1);
  color: var(--blue);
  font-size: 0.95rem;
  font-weight: 900;
}

.evidence-cycle p {
  margin-bottom: 0;
  color: var(--muted);
}

.evidence-note {
  width: min(100%, var(--max));
  margin: clamp(22px, 2.8vw, 32px) auto 0;
  color: rgba(65, 64, 66, 0.72);
  font-size: clamp(1rem, 1.15vw, 1.08rem);
  font-weight: 700;
}

.evidence-note strong {
  color: var(--deep);
}

.video-section {
  padding: clamp(48px, 6vw, 86px) var(--pad-x);
  border-top: 1px solid rgba(20, 20, 20, 0.08);
  background:
    linear-gradient(90deg, rgba(0, 176, 217, 0.07), transparent 42%),
    #ffffff;
}

.video-intro {
  max-width: var(--max);
  margin-bottom: clamp(24px, 3vw, 40px);
}

.video-intro h2 {
  margin: 0.4rem 0 0.8rem;
}

.video-intro p {
  color: rgba(20, 20, 20, 0.68);
  font-size: clamp(1.05rem, 1.35vw, 1.22rem);
  margin: 0;
  max-width: 60ch;
}

.video-frame {
  position: relative;
  width: 100%;
  max-width: var(--max);
  aspect-ratio: 16 / 9;
  border-radius: 18px;
  overflow: hidden;
  box-shadow: var(--shadow);
  background: var(--ink);
}

.video-frame iframe {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  border: 0;
}

.page-hero {
  padding: clamp(128px, 15vh, 168px) var(--pad-x) clamp(50px, 6vw, 82px);
  background:
    radial-gradient(circle at 86% 16%, rgba(0, 176, 217, 0.12), transparent 28%),
    linear-gradient(180deg, #ffffff 0%, #f7f5f1 100%);
}

.page-hero > div {
  max-width: var(--max);
  margin: 0 auto;
}

.page-hero h1 {
  max-width: 900px;
  font-size: clamp(3rem, 5vw, 5.2rem);
}

.audience-switch {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-top: clamp(24px, 3vw, 36px);
}

.audience-switch a {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 44px;
  padding: 11px 18px;
  border: 1px solid rgba(20, 20, 20, 0.12);
  border-radius: 12px;
  background: rgba(255, 255, 255, 0.7);
  color: rgba(20, 20, 20, 0.78);
  font-weight: 800;
  transition:
    transform 160ms ease,
    background 160ms ease,
    box-shadow 160ms ease;
}

.audience-switch a:hover {
  transform: translateY(-2px);
  background: #ffffff;
  box-shadow: 0 16px 34px rgba(20, 20, 20, 0.08);
}

.benefit-section {
  scroll-margin-top: 104px;
  padding: clamp(56px, 7vw, 96px) var(--pad-x);
}

.benefit-section-residents {
  background: #ffffff;
}

.benefit-section-landlords {
  background:
    linear-gradient(180deg, #f7f5f1 0%, #ffffff 100%);
}

.benefit-intro {
  max-width: var(--max);
  margin: 0 auto clamp(26px, 4vw, 48px);
  text-align: center;
}

.benefit-intro h2 {
  max-width: 940px;
  margin: 0 auto;
  font-size: clamp(2rem, 3.35vw, 3.7rem);
}

.benefit-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: clamp(12px, 1.6vw, 18px);
  width: min(100%, var(--max));
  margin: 0 auto;
}

.benefit-card {
  --card-accent: var(--cyan);
  --card-tint: rgba(0, 176, 217, 0.1);
  position: relative;
  display: flex;
  flex-direction: column;
  overflow: hidden;
  min-height: 360px;
  padding: clamp(24px, 2.6vw, 34px);
  border: 1px solid rgba(20, 20, 20, 0.08);
  border-radius: 18px;
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.94), rgba(255, 255, 255, 0.72)),
    var(--card-tint);
  box-shadow: 0 24px 70px rgba(20, 20, 20, 0.08);
}

.benefit-card::before {
  position: absolute;
  inset: 0 0 auto;
  height: 6px;
  content: "";
  background: var(--card-accent);
}

.benefit-card::after {
  position: absolute;
  right: -44px;
  bottom: -56px;
  width: 142px;
  height: 142px;
  border-radius: 50%;
  content: "";
  background: var(--card-tint);
}

.benefit-card > * {
  position: relative;
  z-index: 1;
}

.benefit-mark {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 60px;
  height: 60px;
  margin-bottom: 28px;
  border-radius: 50%;
  background: var(--card-accent);
  color: #ffffff;
  font-size: 0.86rem;
  font-weight: 900;
}

.benefit-card h3 {
  margin-bottom: 14px;
  color: var(--card-accent);
  font-size: clamp(1.35rem, 1.7vw, 1.76rem);
  text-transform: uppercase;
}

.benefit-card p {
  margin-bottom: 24px;
  color: var(--ink);
  font-size: clamp(1rem, 1.08vw, 1.1rem);
  font-weight: 740;
  line-height: 1.36;
}

.benefit-card small {
  display: block;
  margin-top: auto;
  padding-top: 22px;
  border-top: 1px solid rgba(20, 20, 20, 0.09);
  color: rgba(20, 20, 20, 0.64);
  font-size: 0.94rem;
  font-weight: 680;
  line-height: 1.45;
}

.benefit-section-residents .benefit-card {
  --card-accent: var(--cyan);
  --card-tint: rgba(0, 176, 217, 0.12);
}

.benefit-section-landlords .benefit-card {
  --card-accent: var(--blue);
  --card-tint: rgba(16, 43, 78, 0.1);
}

.benefit-statement {
  width: fit-content;
  max-width: min(100%, 760px);
  margin: clamp(24px, 3vw, 38px) auto 0;
  padding: 14px 24px;
  border: 1px solid rgba(16, 43, 78, 0.22);
  border-radius: 14px;
  background: #ffffff;
  color: var(--blue);
  font-size: clamp(1.05rem, 1.4vw, 1.28rem);
  font-weight: 850;
  text-align: center;
  box-shadow: 0 18px 42px rgba(20, 20, 20, 0.07);
}

.benefit-section-residents .benefit-statement {
  border-color: rgba(0, 176, 217, 0.28);
  color: var(--cyan);
}

.benefit-statement-blue {
  border-color: rgba(16, 43, 78, 0.24);
  color: var(--blue);
}

.compact-contact {
  padding-top: clamp(48px, 6vw, 78px);
  padding-bottom: clamp(48px, 6vw, 78px);
}

.dark-band {
  display: grid;
  grid-template-columns: 1.15fr 0.85fr;
  gap: clamp(30px, 5vw, 72px);
  padding: clamp(48px, 5.5vw, 78px) var(--pad-x);
  color: var(--white);
  background:
    linear-gradient(90deg, rgba(0, 176, 217, 0.14), transparent 32%),
    var(--deep);
}

.dark-copy {
  align-self: center;
  max-width: 660px;
}

.dark-copy p:not(.eyebrow) {
  color: rgba(255, 255, 255, 0.68);
  font-size: clamp(1.08rem, 1.5vw, 1.32rem);
}

.dark-cta {
  margin-top: 28px;
}

.signal-list {
  display: grid;
  gap: 10px;
}

.signal-list article {
  display: grid;
  grid-template-columns: 44px 1fr;
  gap: 6px 18px;
  padding: 18px 20px;
  border: 1px solid rgba(255, 255, 255, 0.12);
  background: rgba(255, 255, 255, 0.05);
  transition:
    transform 180ms ease,
    border-color 180ms ease,
    background 180ms ease;
}

.signal-list article:hover {
  transform: translateY(-5px);
  border-color: rgba(255, 255, 255, 0.28);
  background: rgba(255, 255, 255, 0.09);
}

.signal-list span {
  grid-row: span 2;
  color: var(--cyan);
  font-weight: 850;
}

.signal-list h3,
.signal-list p {
  margin-bottom: 0;
}

.signal-list p {
  color: rgba(255, 255, 255, 0.62);
}

.section-intro {
  margin: 0 auto clamp(30px, 5vw, 58px);
  text-align: center;
}

.section-intro p:not(.section-kicker) {
  width: min(720px, 100%);
  margin: 20px auto 0;
  color: var(--muted);
  font-size: 1.15rem;
}

.platform {
  overflow: hidden;
  background:
    linear-gradient(180deg, #ffffff 0%, #faf8f3 48%, #ffffff 100%);
}

.platform-page-section {
  padding-top: clamp(50px, 6vw, 84px);
}

.product-gallery {
  position: relative;
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: clamp(14px, 2vw, 24px);
  align-items: stretch;
  width: min(100%, var(--max));
  margin: 0 auto clamp(30px, 5vw, 62px);
}

.product-gallery figure {
  margin: 0;
  overflow: hidden;
  aspect-ratio: 9 / 16;
  border: 1px solid rgba(20, 20, 20, 0.08);
  border-radius: 18px;
  background: #ffffff;
  box-shadow: 0 28px 80px rgba(20, 20, 20, 0.13);
}

.gallery-phone img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center top;
}

.feature-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 16px;
  width: min(100%, var(--max));
  margin: 0 auto;
}

.feature-grid article {
  position: relative;
  overflow: hidden;
  min-height: 210px;
  padding: clamp(22px, 2.5vw, 30px);
  border: 1px solid rgba(20, 20, 20, 0.08);
  border-radius: 18px;
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.95), rgba(255, 255, 255, 0.84)),
    #ffffff;
  box-shadow: 0 22px 60px rgba(20, 20, 20, 0.08);
  transition:
    transform 180ms ease,
    box-shadow 180ms ease;
}

.feature-grid article::before {
  position: absolute;
  top: 0;
  right: 0;
  left: 0;
  height: 5px;
  content: "";
  background: var(--cyan);
}

.feature-grid article::after {
  position: absolute;
  right: -48px;
  bottom: -48px;
  width: 136px;
  height: 136px;
  border-radius: 50%;
  content: "";
  background: rgba(0, 176, 217, 0.1);
}

.feature-grid article:hover {
  transform: translateY(-5px);
  box-shadow: 0 28px 76px rgba(20, 20, 20, 0.12);
}

.feature-grid h3,
.feature-grid p {
  position: relative;
  z-index: 1;
  margin-bottom: 0;
}

.feature-grid h3 {
  margin-bottom: 14px;
}

.feature-grid p,
.outcome-rows p,
.launch-steps p,
.testimonial-grid span,
.contact p,
.site-footer p {
  color: var(--muted);
}

.outcomes {
  background: var(--soft);
}

.outcome-rows {
  width: min(100%, var(--max));
  margin: 0 auto;
  border-top: 1px solid rgba(20, 20, 20, 0.12);
}

.outcome-rows article {
  display: grid;
  grid-template-columns: 0.32fr 0.88fr 0.72fr;
  gap: clamp(20px, 3.5vw, 48px);
  padding: clamp(24px, 3.4vw, 44px) 0;
  border-bottom: 1px solid rgba(20, 20, 20, 0.12);
}

.outcome-rows span {
  color: var(--cyan);
  font-size: 0.78rem;
  font-weight: 850;
  text-transform: uppercase;
}

.outcome-rows h3,
.outcome-rows p {
  margin-bottom: 0;
}

.outcome-rows h3 {
  font-size: clamp(1.5rem, 2.6vw, 2.45rem);
}

.launch {
  display: grid;
  grid-template-columns: 0.82fr 1.18fr;
  gap: clamp(28px, 4vw, 66px);
  background: #ffffff;
}

.launch-copy {
  align-self: start;
}

.launch-copy p:not(.section-kicker) {
  color: var(--muted);
  font-size: 1.12rem;
}

.launch-steps {
  display: grid;
  gap: 12px;
}

.launch-steps article {
  display: grid;
  grid-template-columns: 110px 1fr;
  gap: 4px 24px;
  padding: 24px;
  border: 1px solid var(--line);
  background: #fbfaf8;
  transition:
    transform 180ms ease,
    box-shadow 180ms ease;
}

.launch-steps article:hover {
  transform: translateY(-5px);
  box-shadow: 0 24px 60px rgba(20, 20, 20, 0.1);
}

.launch-steps span {
  grid-row: span 2;
  color: var(--cyan);
  font-weight: 850;
}

.launch-steps h3,
.launch-steps p {
  margin-bottom: 0;
}

.testimonials {
  padding-top: clamp(42px, 5.2vw, 72px);
  padding-bottom: clamp(42px, 5.2vw, 72px);
  background:
    linear-gradient(180deg, #ffffff 0%, #f7f5f1 100%);
  color: var(--ink);
}

.testimonials .section-intro p:not(.section-kicker) {
  color: var(--muted);
}

.testimonials .section-intro {
  margin-bottom: clamp(22px, 3vw, 34px);
}

.testimonial-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 14px;
  width: min(100%, var(--max));
  margin: 0 auto;
}

.testimonial-grid figure {
  display: flex;
  flex-direction: column;
  min-height: 455px;
  margin: 0;
  padding: clamp(24px, 3.4vw, 38px);
  border: 1px solid rgba(20, 20, 20, 0.08);
  border-radius: 18px;
  background: rgba(255, 255, 255, 0.76);
  box-shadow: 0 22px 60px rgba(20, 20, 20, 0.08);
}

.testimonial-logo {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 100%;
  height: 120px;
  margin-bottom: 22px;
}

.testimonial-logo img {
  width: min(100%, 210px);
  height: auto;
  object-fit: contain;
}

.testimonial-grid blockquote {
  margin: 0 0 32px;
  font-size: clamp(1rem, 1.08vw, 1.16rem);
  font-weight: 650;
  line-height: 1.38;
}

.testimonial-grid figcaption {
  margin-top: auto;
}

.testimonial-grid figcaption strong,
.testimonial-grid figcaption span,
.testimonial-grid .story-link {
  display: block;
}

.testimonial-grid figcaption strong a {
  color: inherit;
  text-decoration: none;
}

.testimonial-grid figcaption strong a:hover {
  text-decoration: underline;
  text-underline-offset: 4px;
}

.testimonial-grid span,
.testimonial-grid .story-link {
  margin-top: 6px;
  color: var(--muted);
}

.testimonial-grid .story-link {
  width: fit-content;
  margin: -18px 0 30px;
  color: var(--cta-yellow);
  font-weight: 800;
  text-decoration: underline;
  text-decoration-thickness: 2px;
  text-underline-offset: 4px;
}

.contact {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(320px, 1fr);
  gap: clamp(32px, 5vw, 72px);
  align-items: center;
  padding-top: clamp(40px, 4.5vw, 64px);
  padding-bottom: clamp(40px, 4.5vw, 64px);
  background: #f7f5f1;
}

.contact--stacked {
  grid-template-columns: minmax(0, 1fr);
}

.contact h2 {
  max-width: 780px;
}

.contact p {
  max-width: 680px;
  font-size: 1.15rem;
}

.report-offer {
  display: grid;
  grid-template-columns: minmax(140px, 1fr) minmax(0, 1.1fr);
  gap: clamp(18px, 2.4vw, 30px);
  align-items: center;
  padding: clamp(22px, 2.6vw, 32px);
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 18px;
  background:
    linear-gradient(90deg, rgba(0, 176, 217, 0.16), transparent 42%),
    var(--deep);
  box-shadow: 0 26px 64px rgba(16, 43, 78, 0.28);
}

.report-offer__cover {
  display: block;
  transition: transform 180ms ease;
}

.report-offer__cover:hover {
  transform: translateY(-4px);
}

.report-offer__cover img {
  width: 100%;
  height: auto;
  filter:
    drop-shadow(0 0 1px rgba(255, 255, 255, 0.85))
    drop-shadow(0 0 2px rgba(255, 255, 255, 0.5))
    drop-shadow(0 22px 36px rgba(0, 0, 0, 0.45));
}

.report-offer__body h3 {
  margin-bottom: 10px;
  color: var(--white);
  font-size: clamp(1.25rem, 1.7vw, 1.6rem);
}

.report-offer__kicker {
  margin-bottom: 8px;
  color: var(--cyan);
  font-size: 0.76rem;
  font-weight: 800;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.report-offer__body p:not(.report-offer__kicker) {
  margin-bottom: 18px;
  color: rgba(255, 255, 255, 0.72);
  font-size: 1rem;
}

.report-offer .button-secondary {
  color: var(--ink);
  border-color: transparent;
  background: var(--white);
}

.booking-embed {
  align-self: start;
  width: 100%;
  padding: 0;
  border: 0;
  border-radius: 0;
  background: transparent;
  box-shadow: none;
}

.booking-embed #inline-container {
  width: 100%;
  min-height: 800px;
}

.booking-embed iframe {
  width: 100%;
  border: 0;
}

.trust-band {
  scroll-margin-top: 120px;
  padding: clamp(30px, 4vw, 52px) var(--pad-x);
  border-top: 1px solid rgba(20, 20, 20, 0.08);
  border-bottom: 1px solid rgba(20, 20, 20, 0.08);
  background:
    linear-gradient(90deg, rgba(0, 176, 217, 0.07), transparent 44%),
    #ffffff;
}

.trust-band__inner {
  width: min(100%, var(--max));
  margin: 0 auto;
  display: grid;
  grid-template-columns: 0.85fr 1.15fr;
  grid-template-areas:
    "kicker label"
    "body logos";
  column-gap: clamp(28px, 5vw, 64px);
  row-gap: 16px;
  align-items: start;
}

.trust-band__kicker {
  grid-area: kicker;
  margin: 0;
}

.trust-band__label {
  grid-area: label;
}

.trust-ascp__body {
  grid-area: body;
  max-width: 460px;
  margin: 0;
  color: var(--muted);
  font-size: clamp(1rem, 1.18vw, 1.12rem);
  font-weight: 600;
  line-height: 1.5;
}

.trust-logos__label {
  margin: 0;
  color: var(--slate);
  font-size: 0.74rem;
  font-weight: 800;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.trust-logos__list {
  grid-area: logos;
  display: flex;
  flex-wrap: wrap;
  align-items: flex-start;
  gap: clamp(20px, 3vw, 40px) clamp(26px, 4vw, 52px);
  margin: 0;
  padding: 0;
  list-style: none;
}

.trust-logos__list li {
  display: flex;
  align-items: flex-start;
}

.trust-logos__list img {
  width: auto;
  height: clamp(38px, 4.6vw, 52px);
  object-fit: contain;
  filter: grayscale(1);
  opacity: 0.7;
  transition:
    filter 180ms ease,
    opacity 180ms ease;
}

.trust-logos__list img.trust-logos__gravesham {
  height: auto;
  width: clamp(96px, 11vw, 134px);
  filter: grayscale(1);
  opacity: 0.42;
}

.trust-logos__list img:hover {
  filter: grayscale(0);
  opacity: 1;
}

.site-footer {
  background: var(--ink);
  color: rgba(255, 255, 255, 0.78);
  padding: clamp(48px, 6vw, 76px) var(--pad-x) 28px;
}

.footer-main {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  gap: clamp(36px, 6vw, 90px);
  flex-wrap: wrap;
  max-width: var(--max);
  margin: 0 auto;
}

.footer-brand {
  max-width: 440px;
}

.footer-brand img {
  width: min(360px, 60vw);
  margin-bottom: 18px;
}

.footer-brand p {
  margin: 0;
  color: rgba(255, 255, 255, 0.68);
  line-height: 1.65;
}

.footer-brand a {
  color: var(--cta-yellow);
  font-weight: 700;
  text-decoration: underline;
  text-decoration-thickness: 2px;
  text-underline-offset: 3px;
}

.footer-contact h2 {
  font-size: 0.82rem;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--cyan);
  margin: 0 0 18px;
}

.footer-contact ul {
  list-style: none;
  margin: 0 0 22px;
  padding: 0;
  display: grid;
  gap: 12px;
}

.footer-contact a {
  color: #ffffff;
  font-weight: 700;
  font-size: 1.06rem;
  text-decoration: none;
  transition: color 160ms ease;
}

.footer-contact a:hover {
  color: var(--cta-yellow);
}

.footer-back {
  display: inline-block;
  color: rgba(255, 255, 255, 0.62) !important;
  font-weight: 600 !important;
  font-size: 0.95rem !important;
}

.footer-bottom {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  flex-wrap: wrap;
  max-width: var(--max);
  margin: clamp(34px, 5vw, 52px) auto 0;
  padding-top: 24px;
  border-top: 1px solid rgba(255, 255, 255, 0.14);
}

.footer-bottom p {
  margin: 0;
  color: rgba(255, 255, 255, 0.58);
  font-size: 0.9rem;
}

.footer-bottom a {
  color: rgba(255, 255, 255, 0.82);
  font-weight: 700;
  font-size: 0.9rem;
  text-decoration: none;
  transition: color 160ms ease;
}

.footer-bottom a:hover {
  color: var(--cta-yellow);
}

.cookie-banner {
  position: fixed;
  left: clamp(16px, 4vw, 32px);
  right: clamp(16px, 4vw, 32px);
  bottom: clamp(16px, 4vw, 28px);
  z-index: 80;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
  flex-wrap: wrap;
  max-width: 760px;
  margin: 0 auto;
  padding: 20px clamp(20px, 3vw, 28px);
  background: var(--ink);
  color: rgba(255, 255, 255, 0.85);
  border: 1px solid rgba(255, 255, 255, 0.12);
  border-radius: 16px;
  box-shadow: var(--shadow);
}

.cookie-banner[hidden] {
  display: none;
}

.cookie-banner__text {
  margin: 0;
  flex: 1 1 280px;
  font-size: 0.95rem;
  line-height: 1.55;
}

.cookie-banner__text a {
  color: var(--cta-yellow);
  font-weight: 700;
  text-decoration: underline;
  text-underline-offset: 2px;
}

.cookie-banner__actions {
  display: flex;
  gap: 12px;
  flex-shrink: 0;
}

.cookie-banner__btn {
  appearance: none;
  cursor: pointer;
  border: 0;
  border-radius: 12px;
  padding: 11px 24px;
  font: inherit;
  font-weight: 800;
  font-size: 0.92rem;
  background: var(--cta-yellow);
  color: var(--ink);
  transition:
    transform 160ms ease,
    background 160ms ease;
}

.cookie-banner__btn:hover {
  background: var(--cta-yellow);
  transform: translateY(-1px);
}

.cookie-banner__btn--ghost {
  background: transparent;
  color: rgba(255, 255, 255, 0.85);
  border: 1px solid rgba(255, 255, 255, 0.28);
}

.cookie-banner__btn--ghost:hover {
  background: rgba(255, 255, 255, 0.08);
}

#zsiq_float {
  right: 38px !important;
  bottom: 38px !important;
}

.has-js [data-reveal] {
  opacity: 0;
  transform: translateY(42px) scale(0.985);
  transition:
    opacity 720ms cubic-bezier(0.2, 0.8, 0.2, 1),
    transform 720ms cubic-bezier(0.2, 0.8, 0.2, 1);
}

.has-js [data-reveal].is-visible {
  opacity: 1;
  transform: translateY(0) scale(1);
}

@media (max-width: 980px) {
  .nav-toggle {
    display: block;
    position: relative;
    z-index: 30;
  }

  .site-nav {
    position: absolute;
    top: 100%;
    right: 0;
    left: 0;
    display: grid;
    justify-items: stretch;
    gap: 10px;
    padding: 16px var(--gutter) 22px;
    visibility: hidden;
    background: rgba(255, 255, 255, 0.98);
    backdrop-filter: blur(24px);
    border-bottom: 1px solid rgba(231, 226, 218, 0.7);
    box-shadow: 0 24px 44px rgba(20, 20, 20, 0.12);
    font-size: 1.05rem;
    opacity: 0;
    transform: translateY(-12px);
    transition:
      opacity 180ms ease,
      transform 180ms ease,
      visibility 180ms ease;
  }

  .site-nav > a {
    padding: 12px 4px;
    text-align: left;
  }

  .site-nav .nav-login,
  .site-nav .nav-cta {
    text-align: center;
  }

  .site-nav .nav-login {
    margin-top: 6px;
  }

  body.nav-open .site-nav {
    visibility: visible;
    opacity: 1;
    transform: translateY(0);
  }

  body.nav-open .nav-toggle span:first-child {
    transform: translateY(4px) rotate(45deg);
  }

  body.nav-open .nav-toggle span:last-child {
    transform: translateY(-4px) rotate(-45deg);
  }

  .hero,
  .dark-band,
  .launch,
  .contact,
  .trust-band__inner {
    grid-template-columns: 1fr;
  }

  .report-offer {
    grid-template-columns: minmax(110px, 0.7fr) minmax(0, 1.3fr);
    max-width: 640px;
  }

  .trust-band__inner {
    grid-template-areas:
      "kicker"
      "body"
      "label"
      "logos";
    row-gap: 12px;
  }

  .hero {
    min-height: auto;
    padding-top: 126px;
  }

  .hero-copy,
  .hero-visual {
    padding-bottom: 0;
  }

  .dashboard-stage {
    margin-right: auto;
    transform: none;
  }

  .evidence-compare {
    grid-template-columns: 1fr;
  }

  .evidence-compare__arrow {
    transform: rotate(90deg);
  }

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

  .platform-teaser {
    grid-template-columns: 1fr;
  }

  .section-heading h2 {
    max-width: 760px;
  }

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

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

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

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

  .outcome-rows article {
    grid-template-columns: 1fr;
    gap: 16px;
  }
}

@media (max-width: 720px) {
  .site-header {
    padding-right: 18px;
    padding-left: 18px;
  }

  .brand {
    width: 158px;
  }

  .hero {
    padding-right: 18px;
    padding-left: 18px;
    gap: 30px;
  }

  h1 {
    max-width: 100%;
    font-size: clamp(2.7rem, 11vw, 3rem);
    line-height: 0.96;
  }

  .hero-actions {
    align-items: stretch;
    flex-direction: column;
    margin-bottom: 12px;
  }

  .button {
    width: 100%;
  }

  .hero-copy {
    padding-bottom: 0;
  }

  .hero-proof {
    order: 3;
    margin-top: 12px;
  }

  .hero-visual {
    order: 2;
    padding-bottom: 0;
  }

  .hero-proof,
  .evidence-cycle,
  .feature-grid,
  .testimonial-grid,
  .product-gallery {
    grid-template-columns: 1fr;
  }

  .report-offer {
    grid-template-columns: 1fr;
    justify-items: center;
    text-align: center;
  }

  .report-offer__cover {
    max-width: 220px;
  }

  .proof-card {
    min-height: auto;
  }

  .dashboard-stage {
    padding: 8px;
    border-radius: 14px;
  }

  .dashboard-stage img {
    border-radius: 8px;
  }

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

  .platform,
  .platform-teaser,
  .outcomes,
  .launch,
  .testimonials,
  .contact,
  .trust-band,
  .page-hero,
  .benefit-section,
  .evidence-section,
  .dark-band {
    padding-right: 18px;
    padding-left: 18px;
  }

  .signal-list article,
  .launch-steps article {
    grid-template-columns: 1fr;
  }

  .signal-list span,
  .launch-steps span {
    grid-row: auto;
  }

  .testimonial-grid figure {
    min-height: auto;
  }

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

  .benefit-card {
    min-height: auto;
  }

  .audience-switch {
    flex-direction: column;
  }

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

  .footer-brand img {
    width: min(320px, 78vw);
  }

  .cookie-banner {
    flex-direction: column;
    align-items: flex-start;
    gap: 12px;
    padding: 14px 16px;
    border-radius: 14px;
  }

  .cookie-banner__text {
    flex: 0 0 auto;
    font-size: 0.85rem;
    line-height: 1.4;
  }

  .cookie-banner__actions {
    width: 100%;
  }

  .cookie-banner__btn {
    flex: 1;
    padding: 9px 16px;
  }
}

@media (prefers-reduced-motion: reduce) {
  *,
  *::before,
  *::after {
    scroll-behavior: auto !important;
    transition-duration: 0.01ms !important;
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
  }

  .has-js [data-reveal] {
    opacity: 1;
    transform: none;
  }
}
