/* ==========================================================================
   CUANTIVA — standalone stylesheet
   Plain CSS export of the React/Tailwind source. No build step, no framework.
   All values reproduce measurements taken from the approved design reference
   (a 977px-wide image of a 1440px design; scale factor ×1.474).
   ========================================================================== */

:root {
  --font-display: "Manrope", ui-sans-serif, system-ui, sans-serif;
  --font-sans: "Inter", ui-sans-serif, system-ui, sans-serif;

  /* neutrals */
  --c-ink: #171b24;        /* headlines / near black */
  --c-ink-soft: #3b414d;   /* nav + strong ui text */
  --c-body: #5c6270;       /* paragraph copy */
  --c-muted: #868c99;      /* meta / captions */
  --c-mist: #f8f8fa;       /* alternating section background */
  --c-panel: #fafafc;      /* cool inset panel */
  --c-panel-warm: #f1f0ee; /* warm inset panel (final CTA) */
  --c-line: #e8e9ec;       /* hairline borders */
  --c-line-soft: #f0f1f3;

  /* accent — teal, roughly 10% of the page */
  --c-mint: #f87a23;
  --c-mint-ink: #f87a23;   /* the accent used as type (readable on white) */
  --c-mint-deep: #f87a23;

  /* fluid type scale keyed to the 1440px reference */
  --text-display: clamp(2.25rem, 1.2rem + 2vw, 3rem); /* 48px @1440 */
  --text-h2: clamp(1.6rem, 1.05rem + 1.35vw, 2rem);   /* 32px @1440 */
  --text-h3: clamp(1.35rem, 1rem + 0.85vw, 1.6rem);   /* 25.6px @1440 */
}

/* --------------------------------------------------------------------------
   Base
   -------------------------------------------------------------------------- */

*,
*::before,
*::after {
  box-sizing: border-box;
}

html {
  -webkit-text-size-adjust: 100%;
  scroll-behavior: smooth;
}

body {
  margin: 0;
  background: #fff;
  color: var(--c-body);
  font-family: var(--font-sans);
  font-size: 0.9375rem;
  line-height: 1.7;
  /* clip (not hidden) so the sticky header keeps working */
  overflow-x: clip;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

img,
svg {
  display: block;
}

img {
  max-width: 100%;
}

h1,
h2,
h3,
h4 {
  margin: 0;
  font-family: var(--font-display);
  color: var(--c-ink);
  letter-spacing: -0.015em;
  text-wrap: balance;
}

p,
figure,
blockquote {
  margin: 0;
}

ul {
  margin: 0;
  padding: 0;
  list-style: none;
}

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

button {
  font: inherit;
  color: inherit;
  background: none;
  border: 0;
  padding: 0;
  cursor: pointer;
}

::selection {
  background: var(--c-mint);
  color: #06231f;
}

:focus-visible {
  outline: 2px solid var(--c-mint-deep);
  outline-offset: 3px;
}

.sr-only {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  white-space: nowrap;
  border: 0;
}

/* --------------------------------------------------------------------------
   Containers, icons, buttons
   -------------------------------------------------------------------------- */

/* 1240px container reproduces the reference's 124px content inset at 1440 */
.shell {
  width: 100%;
  max-width: 77.5rem;
  margin-inline: auto;
  padding-inline: 1.5rem;
}

/* wider gutter used by the header only, matching the reference */
.shell-wide {
  width: 100%;
  max-width: 90rem;
  margin-inline: auto;
  padding-inline: 1.5rem;
}

/* Icons are <use> references into the sprite at the top of the document.
   Stroke width is inherited into the shadow tree, so it is set here. */
.ico {
  fill: none;
  stroke: currentColor;
  stroke-linecap: round;
  stroke-linejoin: round;
  flex: none;
}

.ico-15 { width: 15px; height: 15px; stroke-width: 2.5; }
.ico-16 { width: 16px; height: 16px; stroke-width: 2.5; }
.ico-18 { width: 18px; height: 18px; stroke-width: 1.75; }
.ico-22 { width: 22px; height: 22px; stroke-width: 2; }
.ico-26 { width: 26px; height: 26px; stroke-width: 1.5; }
.ico-27 { width: 27px; height: 27px; stroke-width: 1.4; }
.ico-28 { width: 28px; height: 28px; stroke-width: 1.5; }

.eyebrow {
  font-family: var(--font-sans);
  font-size: 0.75rem;
  font-weight: 700;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  line-height: 1.2;
}

.accent { color: var(--c-mint-ink); }
.plus { color: var(--c-mint); }

/* underline treatments measured off the reference */
.u-ink {
  text-decoration: underline;
  text-decoration-thickness: 1.5px;
  text-underline-offset: 5px;
  text-decoration-color: rgba(23, 27, 36, 0.45);
}

.u-mint {
  text-decoration: underline;
  text-decoration-thickness: 1.5px;
  text-underline-offset: 5px;
  text-decoration-color: #f87a23;
}

/* square-cornered solid accent button, as in the reference (193×47 @1440) */
.btn-mint {
  display: inline-flex;
  align-items: center;
  gap: 0.75rem;
  background: var(--c-mint);
  color: #0a2a25;
  font-weight: 700;
  font-size: 0.9375rem;
  line-height: 1;
  letter-spacing: -0.005em;
  padding: 1rem 1.375rem;
  border-radius: 2px;
  transition:
    background-color 0.2s ease,
    transform 0.2s ease;
}

.btn-mint:hover {
  background: #1ecfb9;
  transform: translateY(-1px);
}

/* teal text link with trailing arrow */
.link-mint {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  color: var(--c-mint-ink);
  font-weight: 700;
  font-size: 0.875rem;
  line-height: 1;
}

.link-mint .ico {
  transition: transform 0.2s ease;
}

.link-mint:hover .ico {
  transform: translate(2px, -2px);
}

/* shared section heading sizes — the reference uses two, not one */
.h2-lg {
  font-size: var(--text-h2);
  line-height: 1.24;
  font-weight: 800;
}

.h2-sm {
  font-size: var(--text-h3);
  line-height: 1.24;
  font-weight: 800;
}

/* --------------------------------------------------------------------------
   Header
   -------------------------------------------------------------------------- */

.site-header {
  position: sticky;
  top: 0;
  z-index: 50;
  background: #fff;
}

.header-inner {
  display: flex;
  height: 72px;
  align-items: center;
  justify-content: space-between;
  gap: 1.5rem;
}

.wordmark-link {
  font-size: 1.6rem;
  line-height: 1;
}

.wordmark {
  display: inline-flex;
  align-items: baseline;
  gap: 0.18em;
  font-family: var(--font-display);
  font-weight: 800;
  letter-spacing: 0.03em;
  color: var(--c-ink);
}

.wordmark svg {
  height: 0.72em;
  width: 0.42em;
  flex: none;
  transform: translateY(-0.02em);
  fill: none;
  stroke: var(--c-mint);
  stroke-width: 2.6;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.wordmark--white { color: #fff; }

.main-nav {
  display: none;
  align-items: center;
  gap: 1.5rem;
}

.main-nav a {
  font-size: 0.8125rem;
  font-weight: 500;
  color: var(--c-ink-soft);
  transition: color 0.2s ease;
}

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

.header-actions {
  display: flex;
  align-items: center;
  gap: 0.75rem;
}

.header-cta { display: none; }

.nav-toggle {
  display: grid;
  height: 40px;
  width: 40px;
  place-items: center;
  color: var(--c-ink);
}

.nav-toggle .ico-close,
.nav-toggle[aria-expanded="true"] .ico-open { display: none; }
.nav-toggle[aria-expanded="true"] .ico-close { display: block; }

.mobile-nav {
  display: none;
  border-top: 1px solid var(--c-line);
  background: #fff;
}

.mobile-nav[data-open="true"] { display: block; }

.mobile-nav nav {
  display: flex;
  flex-direction: column;
  padding-block: 0.5rem;
}

.mobile-nav a {
  border-bottom: 1px solid var(--c-line-soft);
  padding-block: 0.875rem;
  font-size: 0.9375rem;
  font-weight: 500;
  color: var(--c-ink-soft);
}

.mobile-nav .btn-mint {
  margin-block: 1rem;
  width: 100%;
  justify-content: center;
  border-bottom: 0;
}

/* --------------------------------------------------------------------------
   Hero — deliberately does NOT clip: the audit chip straddles its lower edge
   -------------------------------------------------------------------------- */

.hero {
  position: relative;
  background: #f3f3f4;
}

.hero-bg {
  position: absolute;
  inset: 0;
  height: 100%;
  width: 100%;
  object-fit: cover;
  object-position: 68% center;
}

/* The reference reads as plain light plaster across the top of the frame,
   with the photograph taking over in the lower half. */
.hero-veil-y,
.hero-veil-x {
  position: absolute;
  inset: 0;
}

.hero-veil-y {
  background: none;
}

/* keeps the copy column reading on near-plain ground */
.hero-veil-x {
  background: linear-gradient(
    90deg,
    rgba(246, 245, 243, 0.86) 0%,
    rgba(246, 245, 243, 0.6) 26%,
    rgba(246, 245, 243, 0.2) 44%,
    rgba(246, 245, 243, 0) 58%
  );
}

.hero-inner { position: relative; }

.hero-grid { display: grid; }

.hero-copy {
  padding-top: 4rem;
  padding-bottom: 3rem;
}

.hero h1 {
  margin-top: 1.75rem;
  font-size: var(--text-display);
  line-height: 1.29;
  font-weight: 800;
  letter-spacing: -0.02em;
  text-transform: uppercase;
}

.hero-lede {
  margin-top: 1.5rem;
  max-width: 26.5rem;
  font-size: 1rem;
  line-height: 1.48;
  color: var(--c-body);
}

/* the measured spacing chain lands the button's top edge at 409px vs 410 */
.hero-copy .btn-mint { margin-top: 1.5rem; }

.hero-device {
  position: relative;
  padding-bottom: 4rem;
}

.hero-device-inner {
  display: flex;
  justify-content: center;
}

.hero-chip {
  position: absolute;
  bottom: -0.75rem;
  left: 1.5rem;
  z-index: 10;
  display: none;
  font-size: 0.8125rem;
}

/* --------------------------------------------------------------------------
   Value strip
   -------------------------------------------------------------------------- */

.value-strip {
  background: #fff;
  padding-top: 3.5rem;
  padding-bottom: 3.5rem;
}

.value-grid {
  display: grid;
  gap: 2.25rem;
}

.value-item {
  display: flex;
  gap: 1rem;
}

.value-item .ico {
  color: var(--c-mint);
  margin-top: 1px;
}

.value-item h3 {
  font-family: var(--font-display);
  font-size: 0.9375rem;
  line-height: 1.3;
  font-weight: 700;
}

.value-item p {
  margin-top: 0.625rem;
  font-size: 0.84375rem;
  line-height: 1.45;
  color: var(--c-body);
}

/* --------------------------------------------------------------------------
   Websites & CRMs
   -------------------------------------------------------------------------- */

.crm {
  background: var(--c-mist);
  padding-block: 3.5rem;
}

.crm-grid {
  display: grid;
  align-items: center;
  gap: 3rem;
}

.crm h2,
.experience h2 { margin-top: 1.25rem; }

.final-cta h2 { margin-top: 1rem; }

.crm-lede {
  margin-top: 1.25rem;
  max-width: 27rem;
  font-size: 0.90625rem;
  line-height: 1.42;
  color: var(--c-body);
}

.crm .link-mint,
.experience .link-mint { margin-top: 1.75rem; }

.crm-card {
  border-radius: 14px;
  background: #fff;
  padding: 2.25rem 1.75rem;
  box-shadow: 0 1.5rem 3rem -1.75rem rgba(23, 27, 36, 0.14);
}

.crm-features {
  display: grid;
  column-gap: 2rem;
  row-gap: 2.25rem;
}

.crm-features .ico { color: var(--c-ink); }

.crm-features h3 {
  margin-top: 1rem;
  font-family: var(--font-display);
  font-size: 0.90625rem;
  line-height: 1.3;
  font-weight: 700;
}

.crm-features p {
  margin-top: 0.5rem;
  font-size: 0.8125rem;
  line-height: 1.45;
  color: var(--c-body);
}

/* --------------------------------------------------------------------------
   Digital experiences
   -------------------------------------------------------------------------- */

.experience {
  background: #fff;
  padding-top: 3.5rem;
  padding-bottom: 3.5rem;
}

.experience-grid {
  display: grid;
  align-items: center;
  gap: 3rem;
}

.exp-lede {
  margin-top: 1.25rem;
  max-width: 26rem;
  font-size: 0.90625rem;
  line-height: 1.42;
  color: var(--c-body);
}

.exp-list {
  margin-top: 1.75rem;
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
}

.exp-list li {
  display: flex;
  align-items: center;
  gap: 0.875rem;
}

.exp-list .ico { color: var(--c-mint); }

.exp-list span {
  font-size: 0.90625rem;
  color: var(--c-ink-soft);
}

/* --------------------------------------------------------------------------
   Scroll-snap rails (showcase collage + testimonials)
   -------------------------------------------------------------------------- */

.rail-wrap { margin-inline: -1.5rem; }

.rail {
  display: flex;
  overflow-x: auto;
  scroll-snap-type: x mandatory;
  -webkit-overflow-scrolling: touch;
  padding-inline: 1.5rem;
  scrollbar-width: none;
  -ms-overflow-style: none;
}

.rail::-webkit-scrollbar { display: none; }

.rail > * {
  scroll-snap-align: start;
  width: 85%;
  flex: none;
}

.collage {
  gap: 1rem;
  padding-bottom: 0.75rem;
}

/* --------------------------------------------------------------------------
   Testimonials
   -------------------------------------------------------------------------- */

.testimonials {
  background: #fff;
  padding-top: 3rem;
  padding-bottom: 3.5rem;
}

.testimonials .eyebrow,
.testimonials h2 { text-align: center; }

.testimonials h2 { margin-top: 1rem; }

.quotes-wrap { margin-top: 2.5rem; }

.quotes {
  gap: 1.25rem;
  padding-bottom: 0.25rem;
}

.quote-card {
  display: flex;
  flex-direction: column;
  border-radius: 10px;
  border: 1px solid var(--c-line-soft);
  background: #fff;
  padding: 1.75rem;
  box-shadow: 0 1.25rem 2.75rem -1.75rem rgba(23, 27, 36, 0.16);
}

.quote-mark {
  font-family: var(--font-display);
  font-size: 1.75rem;
  line-height: 0.6;
  font-weight: 800;
  color: var(--c-mint);
}

.quote-card blockquote {
  margin-top: 1rem;
  flex-grow: 1;
  font-size: 0.875rem;
  line-height: 1.5;
  color: var(--c-ink-soft);
}

.quote-card figcaption {
  margin-top: 1.5rem;
  display: flex;
  align-items: center;
  gap: 0.875rem;
}

.quote-card img {
  height: 40px;
  width: 40px;
  flex: none;
  border-radius: 999px;
  object-fit: cover;
}

.quote-name {
  font-family: var(--font-display);
  font-size: 0.8125rem;
  font-weight: 700;
  color: var(--c-ink);
}

.quote-role {
  margin-top: 0.125rem;
  font-size: 0.8125rem;
  line-height: 1.4;
  color: var(--c-muted);
}

.dots {
  margin-top: 2rem;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0.625rem;
}

.dots button {
  height: 8px;
  width: 8px;
  border-radius: 999px;
  background: #e4e5e9;
  transition: background-color 0.2s ease;
}

.dots button[aria-current="true"] { background: var(--c-mint); }

/* --------------------------------------------------------------------------
   Marketing & SEO — inset panel, bleeds wider than the text column
   -------------------------------------------------------------------------- */

.marketing {
  background: #fff;
  padding-bottom: 2rem;
}

.marketing-panel {
  margin-inline: -1.5rem;
  background: var(--c-panel);
  padding: 2.75rem 1.5rem;
}

.marketing-grid {
  display: grid;
  align-items: center;
  gap: 2.5rem;
}

.marketing h2 {
  margin-top: 1rem;
  line-height: 1.22;
}

.marketing-lede {
  margin-top: 1rem;
  max-width: 24.5rem;
  font-size: 0.875rem;
  line-height: 1.55;
  color: var(--c-body);
}

.marketing .link-mint { margin-top: 1.5rem; }

.svc-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  row-gap: 2.25rem;
}

.svc {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  padding-inline: 0.75rem;
}

.svc .ico { color: var(--c-mint); }

.svc h3 {
  margin-top: 1rem;
  font-family: var(--font-display);
  font-size: 0.875rem;
  line-height: 1.3;
  font-weight: 700;
}

.svc p {
  margin-top: 0.5rem;
  font-size: 0.8125rem;
  line-height: 1.5;
  color: var(--c-body);
}

/* --------------------------------------------------------------------------
   Final CTA
   -------------------------------------------------------------------------- */

.final-cta {
  background: #fff;
  padding-bottom: 3.5rem;
}

.cta-panel {
  position: relative;
  margin-inline: -1.5rem;
  overflow: hidden;
  background: var(--c-panel-warm);
}

.cta-photo { display: none; }

.cta-inner {
  position: relative;
  display: grid;
  gap: 2rem;
  padding: 3rem 1.5rem;
}

.cta-lede {
  font-size: 0.875rem;
  line-height: 1.55;
  color: var(--c-body);
}

/* --------------------------------------------------------------------------
   Footer
   -------------------------------------------------------------------------- */

.site-footer {
  border-top: 1px solid var(--c-line);
  background: #fff;
}

.footer-inner { padding-block: 3.5rem; }

.footer-grid {
  display: grid;
  gap: 2.5rem;
}

.footer-brand .wordmark-link { font-size: 1.3rem; }

.footer-brand .eyebrow {
  margin-top: 1rem;
  color: var(--c-muted);
}

.footer-email {
  margin-top: 1.5rem;
  display: inline-block;
  font-size: 0.90625rem;
  font-weight: 600;
  color: var(--c-ink);
  transition: color 0.2s ease;
}

.footer-email:hover { color: var(--c-mint-ink); }

.footer-col .eyebrow { color: var(--c-ink); }

.footer-col ul {
  margin-top: 1rem;
  display: flex;
  flex-direction: column;
  gap: 0.625rem;
}

.footer-col a {
  font-size: 0.90625rem;
  color: var(--c-body);
  transition: color 0.2s ease;
}

.footer-col a:hover { color: var(--c-ink); }

.footer-bottom {
  margin-top: 3rem;
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
  border-top: 1px solid var(--c-line-soft);
  padding-top: 1.75rem;
}

.footer-copy {
  font-size: 0.8125rem;
  color: var(--c-muted);
}

/* ==========================================================================
   Device + browser mock-ups.
   Every dimension is expressed in em so a single font-size on the root
   element scales the whole mock fluidly. All copy inside these mocks is real
   HTML text, never baked into an image.
   ========================================================================== */

.mock {
  font-family: var(--font-sans);
  font-size: 1rem; /* overridden per instance */
  line-height: 1.4;
  color: #1d2129;
  -webkit-font-smoothing: antialiased;
}

.mock-chrome {
  background: #fff;
  border-radius: 0.7em;
  overflow: hidden;
}

/* site nav rendered inside a mock */
.mock-nav {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 0.9em 1.15em;
}

.mock-nav .wordmark {
  align-items: center;
  font-size: 0.72em;
  letter-spacing: 0.03em;
  gap: 0.25em;
}

.mock-nav-links {
  display: flex;
  gap: 0.95em;
  font-size: 0.5em;
  font-weight: 500;
  color: #2b303a;
}

.mock-nav-links span {
  display: inline-flex;
  align-items: center;
  gap: 0.25em;
}

.mock-nav-links .ico {
  height: 0.85em;
  width: 0.85em;
  stroke-width: 2;
}

.mock-nav--dark .mock-nav-links { color: rgba(255, 255, 255, 0.92); }

.mock-search {
  display: flex;
  overflow: hidden;
  border-radius: 0.25em;
  background: #fff;
  box-shadow: 0 0.5em 1.2em -0.4em rgba(20, 25, 35, 0.28);
}

.mock-field {
  display: flex;
  flex: 1;
  align-items: center;
  justify-content: space-between;
  gap: 0.4em;
  background: #fff;
  font-size: 0.6em;
  font-weight: 500;
  color: #4b515e;
  padding: 1.15em 1.05em;
  white-space: nowrap;
  border-right: 1px solid #eceef1;
}

.mock-field:last-of-type { border-right: 0; }

.mock-field .ico {
  height: 1em;
  width: 1em;
  stroke-width: 2;
  opacity: 0.45;
}

.mock-search-btn {
  display: inline-flex;
  align-items: center;
  gap: 0.35em;
  background: var(--c-mint);
  color: #08241f;
  font-size: 0.6em;
  font-weight: 700;
  padding: 1.15em 1.5em;
  white-space: nowrap;
}

.mock-search-btn .ico {
  height: 1.1em;
  width: 1.1em;
  stroke-width: 2.5;
}

/* the property homepage shown on the hero laptop -------------------------- */

.mock-shot {
  position: absolute;
  inset: 0;
  display: flex;
  flex-direction: column;
  background: #fff;
}

.mock-stage {
  position: relative;
  flex: 1;
  overflow: hidden;
}

.mock-stage > img {
  position: absolute;
  inset: 0;
  height: 100%;
  width: 100%;
  object-fit: cover;
}

.mock-scrim {
  position: absolute;
  inset: 0;
  background: linear-gradient(
    96deg,
    rgba(12, 26, 38, 0.52) 0%,
    rgba(12, 26, 38, 0.28) 38%,
    rgba(12, 26, 38, 0) 66%
  );
}

.mock-stage-copy {
  position: absolute;
  top: 2.8em;
  left: 1.5em;
  max-width: 16em;
  color: #fff;
}

.mock-stage-copy h3 {
  font-size: 1.95em;
  line-height: 1.16;
  font-weight: 600;
  letter-spacing: -0.01em;
  color: #fff;
}

.mock-stage-copy p {
  margin-top: 0.9em;
  font-size: 0.7em;
  line-height: 1.55;
  color: rgba(255, 255, 255, 0.85);
}

.mock-searchbar {
  position: absolute;
  left: 1.35em;
  right: 1.35em;
  bottom: 1.5em;
}

/* laptop ------------------------------------------------------------------ */

.laptop {
  position: relative;
  width: 46em;
  /* one declaration scales the whole device */
  font-size: clamp(7.4px, 0.86vw + 2.8px, 15.2px);
}

.laptop-lid {
  position: relative;
  background: linear-gradient(160deg, #3a3d44 0%, #23262c 42%, #171a1f 100%);
  border-radius: 0.85em 0.85em 0.25em 0.25em;
  padding: 0.65em 0.65em 1.35em;
  box-shadow:
    0 0.1em 0 rgba(255, 255, 255, 0.16) inset,
    0 2.2em 3.2em -1.2em rgba(23, 27, 36, 0.42);
}

.laptop-screen {
  position: relative;
  aspect-ratio: 16 / 10.1;
  background: #dfe6ea;
  border-radius: 0.3em;
  overflow: hidden;
}

/* faint glass sheen across the panel */
.laptop-screen::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(
    104deg,
    rgba(255, 255, 255, 0.16) 0%,
    rgba(255, 255, 255, 0) 34%,
    rgba(255, 255, 255, 0) 68%,
    rgba(255, 255, 255, 0.07) 100%
  );
  pointer-events: none;
}

.laptop-notch {
  position: absolute;
  left: 50%;
  transform: translateX(-50%);
  bottom: 0.42em;
  font-size: 0.34em;
  letter-spacing: 0.16em;
  font-weight: 600;
  color: #7e848e;
}

.laptop-base {
  position: relative;
  height: 0.95em;
  margin-inline: -1.9em;
  background: linear-gradient(180deg, #c9ced6 0%, #aeb4bd 46%, #8d939c 100%);
  border-radius: 0 0 0.55em 0.55em;
  box-shadow: 0 1.6em 2.4em -0.9em rgba(23, 27, 36, 0.3);
}

/* the shallow notch on the front lip of the base */
.laptop-base::after {
  content: "";
  position: absolute;
  left: 50%;
  transform: translateX(-50%);
  bottom: 0;
  width: 9em;
  height: 0.28em;
  background: rgba(255, 255, 255, 0.5);
  border-radius: 0 0 0.4em 0.4em;
}

/* soft contact shadow that seats the device on the table */
.laptop-shadow {
  position: absolute;
  left: 4%;
  right: 4%;
  bottom: -1.6em;
  height: 2.6em;
  background: radial-gradient(
    50% 50% at 50% 50%,
    rgba(70, 60, 48, 0.34) 0%,
    rgba(70, 60, 48, 0) 72%
  );
  filter: blur(0.35em);
  pointer-events: none;
}

/* showcase cards --------------------------------------------------------- */

.shot-primary {
  font-size: clamp(9px, 1.15vw + 1px, 17px);
  box-shadow:
    0 0 0 1px rgba(0, 0, 0, 0.05),
    0 1.4em 2.6em -1.2em rgba(23, 27, 36, 0.22);
}

.shot-hero {
  position: relative;
  aspect-ratio: 16 / 10.4;
  overflow: hidden;
}

.shot-hero > img {
  position: absolute;
  inset: 0;
  height: 100%;
  width: 100%;
  object-fit: cover;
}

.shot-hero-scrim {
  position: absolute;
  inset: 0;
  background: linear-gradient(
    90deg,
    rgba(10, 24, 36, 0.62) 0%,
    rgba(10, 24, 36, 0.34) 46%,
    rgba(10, 24, 36, 0.02) 78%
  );
}

.shot-nav {
  position: absolute;
  inset-inline: 0;
  top: 0;
  color: #fff;
}

.shot-copy {
  position: absolute;
  top: 4.4em;
  left: 1.4em;
  max-width: 13.5em;
  color: #fff;
}

.shot-copy h4 {
  font-size: 1.28em;
  line-height: 1.2;
  font-weight: 600;
  letter-spacing: -0.01em;
  color: #fff;
}

.shot-copy p {
  margin-top: 0.7em;
  font-size: 0.5em;
  line-height: 1.6;
  color: rgba(255, 255, 255, 0.8);
}

.shot-pill {
  margin-top: 1em;
  display: inline-flex;
  align-items: center;
  gap: 0.4em;
  border-radius: 0.2em;
  background: var(--c-mint);
  padding: 0.65em 1em;
  font-size: 0.46em;
  font-weight: 700;
  color: #08241f;
}

.shot-list {
  background: #fff;
  padding: 1.15em 1.4em 1.45em;
}

.shot-list-title {
  font-size: 0.56em;
  font-weight: 700;
  letter-spacing: -0.005em;
  color: var(--c-ink);
}

.shot-props {
  margin-top: 0.85em;
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 0.7em;
}

.shot-props .thumb {
  aspect-ratio: 4 / 3;
  overflow: hidden;
  border-radius: 0.18em;
}

.shot-props .thumb img {
  height: 100%;
  width: 100%;
  object-fit: cover;
}

.shot-props .name {
  margin-top: 0.55em;
  font-size: 0.46em;
  font-weight: 700;
  color: var(--c-ink);
}

.shot-props .city {
  margin-top: 0.2em;
  font-size: 0.42em;
  color: #8a909c;
}

.shot-props .price {
  margin-top: 0.3em;
  font-size: 0.46em;
  font-weight: 700;
  color: var(--c-ink);
}

.shot-dark {
  position: relative;
  overflow: hidden;
  font-size: clamp(9px, 0.95vw + 1.4px, 15px);
  box-shadow: 0 1.4em 2.6em -1.2em rgba(23, 27, 36, 0.26);
}

.shot-dark > img {
  position: absolute;
  inset: 0;
  height: 100%;
  width: 100%;
  object-fit: cover;
}

.shot-dark-scrim {
  position: absolute;
  inset: 0;
  background: linear-gradient(
    92deg,
    rgba(11, 32, 54, 0.82) 0%,
    rgba(11, 32, 54, 0.5) 52%,
    rgba(11, 32, 54, 0.16) 100%
  );
}

.shot-dark-scrim--invest {
  background: linear-gradient(
    92deg,
    rgba(9, 26, 44, 0.8) 0%,
    rgba(9, 26, 44, 0.46) 55%,
    rgba(9, 26, 44, 0.12) 100%
  );
}

.shot-dark-body {
  position: relative;
  padding: 1.5em 1.5em 1.6em;
}

.shot-dark-body--invest { padding: 1.6em 1.5em 1.8em; }

.shot-dark-body h4 {
  font-size: 1.2em;
  line-height: 1.22;
  font-weight: 600;
  letter-spacing: -0.01em;
  color: #fff;
}

.shot-dark-body p {
  margin-top: 0.6em;
  max-width: 15em;
  font-size: 0.46em;
  line-height: 1.6;
  color: rgba(255, 255, 255, 0.7);
}

.shot-tabs {
  margin-top: 1.15em;
  display: flex;
  width: fit-content;
  overflow: hidden;
  border-radius: 0.22em 0.22em 0 0;
  background: rgba(255, 255, 255, 0.95);
}

.shot-tabs span {
  padding: 0.75em 1.5em;
  font-size: 0.46em;
  font-weight: 600;
  color: #6b7280;
}

.shot-tabs span:first-child {
  background: #fff;
  color: var(--c-ink);
}

/* ==========================================================================
   Responsive. Mobile-first, matching the source's Tailwind breakpoints:
   640 (sm) · 768 (md) · 1024 (lg) · 1280 (xl) · 1288 (panel bleed).
   The reference's densest arrangements only fit from 1280.
   ========================================================================== */

@media (min-width: 640px) {
  .header-cta { display: inline-flex; }
  .mobile-nav .btn-mint { display: none; }

  .hero-copy { padding-top: 5rem; }

  .value-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    row-gap: 2.75rem;
  }

  .crm-card { padding: 2.75rem 2.5rem; }
  .crm-features { grid-template-columns: repeat(2, minmax(0, 1fr)); }

  .quotes > * { width: 62%; }

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

  .footer-bottom {
    flex-direction: row;
    align-items: center;
    justify-content: space-between;
  }
}

@media (min-width: 768px) {
  /* the audit chip needs a desktop-ish hero to straddle */
  .hero-chip { display: inline-flex; }
}

@media (min-width: 1024px) {
  .shell-wide { padding-inline: 3.5rem; }

  /* header ------------------------------------------------------------- */
  .header-inner { height: 88px; }
  .main-nav { display: flex; }
  .nav-toggle { display: none; }
  .mobile-nav { display: none !important; }

  /* hero --------------------------------------------------------------- */
  .hero-grid {
    grid-template-columns: minmax(0, 24rem) 1fr;
    min-height: 650px;
  }

  .hero-copy {
    padding-top: 7.75rem;
    padding-bottom: 0;
  }

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

  /* right: 1.5rem puts the lid's right edge at 1292 vs the measured 1294,
     and keeps the base's -1.9em overhang inside the viewport */
  .hero-device-inner {
    position: absolute;
    right: 1.5rem;
    bottom: 5.5rem;
    justify-content: flex-end;
  }

  .hero-chip { left: 3.5rem; }

  /* value strip -------------------------------------------------------- */
  .value-strip {
    padding-top: 4.4rem;
    padding-bottom: 3rem;
  }

  .value-grid {
    grid-template-columns: repeat(4, minmax(0, 1fr));
    gap: 0;
  }

  .value-item {
    padding-inline: 1.25rem;
    border-left: 1px solid var(--c-line);
  }

  .value-item:first-child {
    border-left: 0;
    padding-left: 0;
  }

  /* crm ---------------------------------------------------------------- */
  .crm { padding-block: 2.5rem; }

  .crm-grid {
    grid-template-columns: minmax(0, 26rem) minmax(0, 1fr);
    gap: 2.5rem;
  }

  /* experience --------------------------------------------------------- */
  .experience {
    padding-top: 1rem;
    padding-bottom: 2rem;
  }

  .experience-grid {
    grid-template-columns: minmax(0, 25rem) minmax(0, 1fr);
    gap: 2.5rem;
  }

  /* rails become grids ------------------------------------------------- */
  .rail-wrap { margin-inline: 0; }

  .rail {
    padding-inline: 0;
    overflow: visible;
  }

  .rail > * { width: auto; }

  /* 1.11fr/1fr reproduces the measured 377:340 column ratio */
  .collage {
    display: grid;
    grid-template-columns: 1.11fr 1fr;
    grid-template-rows: repeat(2, auto);
    gap: 0.875rem;
    padding-bottom: 0;
  }

  .collage-primary { grid-row: span 2; }

  /* testimonials ------------------------------------------------------- */
  .testimonials {
    padding-top: 1.5rem;
    padding-bottom: 1.75rem;
  }

  .quotes {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 1.5rem;
    padding-bottom: 0;
  }

  .quote-card { padding: 2rem; }

  /* marketing ---------------------------------------------------------- */
  .marketing { padding-bottom: 1rem; }

  .marketing-panel {
    border-radius: 18px;
    padding-block: 2.25rem;
  }

  .marketing-grid {
    grid-template-columns: minmax(0, 24.5rem) minmax(0, 1fr);
    gap: 1.5rem;
  }

  /* final cta ---------------------------------------------------------- */
  .final-cta { padding-bottom: 5rem; }
  .cta-panel { border-radius: 20px; }

  .cta-photo {
    display: block;
    position: absolute;
    inset-block: 0;
    right: 0;
    width: 30%;
  }

  .cta-photo img {
    height: 100%;
    width: 100%;
    object-fit: cover;
  }

  .cta-photo span {
    position: absolute;
    inset: 0;
    background: linear-gradient(
      90deg,
      #f1f0ee 0%,
      rgba(241, 240, 238, 0.82) 18%,
      rgba(241, 240, 238, 0.22) 46%,
      rgba(241, 240, 238, 0) 70%
    );
  }

  .cta-inner {
    padding: 3.5rem 2.5rem;
    padding-right: 35%;
  }

  /* footer ------------------------------------------------------------- */
  .footer-inner { padding-block: 4rem; }

  .footer-grid {
    grid-template-columns: minmax(0, 1fr) auto auto auto;
    gap: 5rem;
  }
}

@media (min-width: 1280px) {
  .wordmark-link { font-size: 2rem; }
  .main-nav { gap: 2.5rem; }

  .hero-grid { grid-template-columns: minmax(0, 27rem) 1fr; }

  .value-item { padding-inline: 2rem; }
  .value-item:first-child { padding-left: 0; }

  .crm-grid { gap: 4rem; }
  .crm-features { grid-template-columns: repeat(3, minmax(0, 1fr)); }

  .experience-grid { gap: 3.5rem; }

  .quotes { gap: 2.5rem; }

  .svc-grid {
    grid-template-columns: repeat(4, minmax(0, 1fr));
    row-gap: 0;
    padding-right: 1.5rem;
  }

  .svc {
    padding-inline: 1.25rem;
    border-left: 1px solid var(--c-line);
  }

  .svc:first-child { border-left: 0; }

  /* the measured three-column CTA row: heading 124 / copy 584 / button 836 */
  .cta-inner {
    grid-template-columns: minmax(0, 27rem) minmax(0, 14rem) auto;
    align-items: center;
    gap: 1.75rem;
    padding-right: 20%;
  }

  .cta-btn { margin-top: 1.75rem; }
}

/* Below 1288px the container already fills the viewport, so the panel's
   extra 40px bleed would push past the edge. */
@media (min-width: 1288px) {
  .cta-panel { margin-inline: -2.5rem; }
}
