@import url("https://fonts.googleapis.com/css2?family=DM+Sans:wght@400;500;600;700&family=Manrope:wght@500;600;700;800&display=swap");

:root {
  --ink: #111218;
  --ink-soft: #20222b;
  --ink-blue: #131824;
  --paper: #f7f3eb;
  --white: #ffffff;
  --line: rgba(17, 18, 24, 0.13);
  --line-dark: rgba(255, 255, 255, 0.15);
  --muted: #62656f;
  --cobalt: #007fbb;
  --cobalt-dark: #005c8b;
  --cobalt-pale: #e3f5fb;
  --copper: #ffcf19;
  --cyan: #00abd7;
  --magenta: #e50075;
  --yellow: #ffd20a;
  --black: #111218;
  --success: #29c780;
  --shadow: 0 28px 75px rgba(17, 18, 24, 0.16);
  --shadow-soft: 0 15px 45px rgba(17, 18, 24, 0.09);
  --radius: 28px;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
  scroll-padding-top: 130px;
}

body {
  margin: 0;
  background: var(--paper);
  color: var(--ink);
  font-family: "DM Sans", "Segoe UI", Arial, Helvetica, sans-serif;
  font-size: 16px;
  line-height: 1.65;
  text-rendering: optimizeLegibility;
  -webkit-font-smoothing: antialiased;
}

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

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

img {
  display: block;
}

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

h1,
h2,
h3,
strong {
  letter-spacing: -0.025em;
}

h1,
h2,
h3,
.brand-copy strong,
.brand-mark {
  font-family: "Manrope", "DM Sans", Arial, sans-serif;
}

h1 {
  max-width: 760px;
  margin-bottom: 24px;
  font-size: clamp(3rem, 5vw, 5.7rem);
  font-weight: 800;
  line-height: 0.96;
}

h2 {
  margin-bottom: 18px;
  font-size: clamp(2.1rem, 4vw, 4.35rem);
  font-weight: 730;
  line-height: 1.04;
}

h3 {
  margin-bottom: 8px;
  font-size: 1.2rem;
  line-height: 1.2;
}

.shell {
  width: min(1380px, calc(100% - 64px));
  margin-inline: auto;
}

.skip-link {
  position: fixed;
  z-index: 200;
  top: 12px;
  left: 12px;
  padding: 11px 16px;
  border-radius: 8px;
  background: var(--white);
  color: var(--ink);
  transform: translateY(-160%);
  transition: transform 0.2s ease;
}

.skip-link:focus {
  transform: translateY(0);
}

.cmyk-rail {
  position: fixed;
  z-index: 100;
  inset: 0 0 auto;
  height: 5px;
  display: grid;
  grid-template-columns: repeat(4, 1fr);
}

.cmyk-rail i:nth-child(1) {
  background: var(--cyan);
}

.cmyk-rail i:nth-child(2) {
  background: var(--magenta);
}

.cmyk-rail i:nth-child(3) {
  background: var(--yellow);
}

.cmyk-rail i:nth-child(4) {
  background: var(--black);
}

.ownership-strip {
  position: relative;
  z-index: 30;
  padding-top: 5px;
  background: var(--ink);
  color: rgba(255, 255, 255, 0.75);
  font-size: 0.78rem;
}

.strip-inner {
  min-height: 37px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
}

.strip-inner p {
  margin: 0;
}

.strip-inner strong {
  font-weight: 750;
}

.strip-inner a {
  white-space: nowrap;
  color: var(--yellow);
  font-weight: 720;
  text-decoration: underline;
  text-underline-offset: 3px;
}

.site-header {
  position: sticky;
  z-index: 25;
  top: 0;
  border-bottom: 1px solid rgba(16, 26, 38, 0.09);
  background: rgba(255, 255, 255, 0.94);
  backdrop-filter: blur(16px);
}

.nav-wrap {
  min-height: 89px;
  display: grid;
  grid-template-columns: auto 1fr auto;
  align-items: center;
  gap: 44px;
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 13px;
}

.brand-mark {
  position: relative;
  display: grid;
  width: 69px;
  height: 49px;
  place-items: center;
  overflow: hidden;
  border-radius: 14px 4px 14px 4px;
  background: var(--ink);
  color: var(--white);
  font-size: 1.5rem;
  font-weight: 900;
  letter-spacing: -0.09em;
}

.brand-mark::after {
  position: absolute;
  right: 0;
  bottom: 0;
  width: 100%;
  height: 4px;
  background: linear-gradient(90deg, var(--cyan) 0 25%, var(--magenta) 25% 50%, var(--yellow) 50% 75%, var(--white) 75%);
  content: "";
}

.brand-copy {
  display: flex;
  flex-direction: column;
  line-height: 1.15;
}

.brand-copy strong {
  font-size: 0.95rem;
  font-weight: 800;
}

.brand-copy small {
  margin-top: 4px;
  color: #767984;
  font-size: 0.67rem;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.main-nav {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: clamp(18px, 2vw, 35px);
}

.main-nav a {
  position: relative;
  color: #354350;
  font-size: 0.83rem;
  font-weight: 650;
}

.main-nav a::after {
  position: absolute;
  right: 0;
  bottom: -8px;
  left: 0;
  height: 2px;
  background: var(--cobalt);
  content: "";
  transform: scaleX(0);
  transform-origin: left;
  transition: transform 0.2s ease;
}

.main-nav a:hover::after,
.main-nav a:focus-visible::after {
  transform: scaleX(1);
}

.nav-call {
  min-width: 180px;
  padding: 9px 16px;
  border-left: 1px solid var(--line);
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  line-height: 1.15;
}

.nav-call span {
  margin-bottom: 4px;
  color: var(--muted);
  font-size: 0.66rem;
  font-weight: 700;
  letter-spacing: 0.09em;
  text-transform: uppercase;
}

.nav-call strong {
  color: var(--magenta);
  font-size: 1.03rem;
}

.hero {
  position: relative;
  min-height: 780px;
  overflow: hidden;
  background:
    linear-gradient(135deg, rgba(255, 255, 255, 0.92), rgba(247, 243, 235, 0.97)),
    var(--paper);
  color: var(--ink);
}

.hero::before {
  position: absolute;
  inset: 0;
  background-image: radial-gradient(rgba(17, 18, 24, 0.08) 0.7px, transparent 0.7px);
  background-size: 13px 13px;
  opacity: 0.24;
  content: "";
}

.hero-orb {
  position: absolute;
  border-radius: 50%;
  filter: blur(1px);
  opacity: 0.2;
}

.hero-orb-c {
  top: 80px;
  right: 32%;
  width: 170px;
  height: 170px;
  background: var(--cyan);
}

.hero-orb-m {
  right: -80px;
  bottom: -120px;
  width: 360px;
  height: 360px;
  background: var(--magenta);
}

.hero-orb-y {
  bottom: -70px;
  left: 25%;
  width: 190px;
  height: 190px;
  background: var(--yellow);
}

.hero-inner {
  position: relative;
  z-index: 2;
  min-height: 780px;
  padding-block: 62px 96px;
  display: grid;
  grid-template-columns: minmax(0, 0.88fr) minmax(520px, 1.12fr);
  align-items: center;
  gap: clamp(45px, 5vw, 86px);
}

.hero-copy {
  width: auto;
}

.eyebrow,
.kicker {
  display: flex;
  align-items: center;
  gap: 10px;
  margin-bottom: 21px;
  color: var(--cobalt);
  font-size: 0.74rem;
  font-weight: 780;
  letter-spacing: 0.14em;
  text-transform: uppercase;
}

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

.eyebrow-dot,
.status-dot {
  width: 8px;
  height: 8px;
  flex: 0 0 auto;
  border-radius: 50%;
  background: var(--success);
  box-shadow: 0 0 0 5px rgba(41, 199, 128, 0.12);
}

.hero-lead {
  max-width: 680px;
  margin-bottom: 32px;
  color: var(--muted);
  font-size: clamp(1.05rem, 1.4vw, 1.25rem);
}

.hero-visual {
  position: relative;
  min-height: 620px;
  border: 10px solid var(--white);
  border-radius: 38px 38px 110px 38px;
  overflow: hidden;
  background: #e9e5dc;
  box-shadow: 0 35px 100px rgba(17, 18, 24, 0.2);
  transform: rotate(0.5deg);
}

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

.hero-photo-line {
  position: absolute;
  z-index: 2;
  top: 0;
  right: 0;
  left: 0;
  height: 8px;
  display: grid;
  grid-template-columns: repeat(4, 1fr);
}

.hero-photo-line i:nth-child(1) {
  background: var(--cyan);
}

.hero-photo-line i:nth-child(2) {
  background: var(--magenta);
}

.hero-photo-line i:nth-child(3) {
  background: var(--yellow);
}

.hero-photo-line i:nth-child(4) {
  background: var(--black);
}

.hero-location-card,
.hero-human-note {
  position: absolute;
  z-index: 3;
  border: 1px solid rgba(255, 255, 255, 0.56);
  background: rgba(255, 255, 255, 0.91);
  box-shadow: 0 18px 50px rgba(17, 18, 24, 0.2);
  backdrop-filter: blur(15px);
}

.hero-location-card {
  right: 22px;
  bottom: 22px;
  min-width: 330px;
  padding: 18px 20px;
  display: flex;
  align-items: center;
  gap: 14px;
  border-radius: 18px 18px 50px 18px;
}

.location-monogram {
  display: grid;
  width: 53px;
  height: 53px;
  flex: 0 0 auto;
  place-items: center;
  border-radius: 15px 4px 15px 4px;
  background: var(--ink);
  color: var(--white);
  font-family: "Manrope", sans-serif;
  font-weight: 900;
  letter-spacing: -0.08em;
}

.hero-location-card small,
.hero-location-card strong,
.hero-location-card div > span {
  display: block;
}

.hero-location-card small {
  color: var(--magenta);
  font-size: 0.62rem;
  font-weight: 800;
  letter-spacing: 0.11em;
  text-transform: uppercase;
}

.hero-location-card strong {
  margin: 2px 0;
  color: var(--ink);
  font-size: 1.02rem;
}

.hero-location-card div > span {
  color: var(--muted);
  font-size: 0.69rem;
}

.hero-human-note {
  top: 28px;
  left: 28px;
  padding: 14px 17px;
  border-radius: 15px;
}

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

.hero-human-note span {
  color: var(--cobalt);
  font-size: 0.6rem;
  font-weight: 800;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.hero-human-note strong {
  margin-top: 2px;
  color: var(--ink);
  font-size: 0.82rem;
}

.hero-actions,
.business-actions,
.local-actions,
.final-actions {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 12px;
}

.button {
  min-height: 55px;
  padding: 0 23px;
  border: 1px solid transparent;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  border-radius: 12px;
  font-size: 0.88rem;
  font-weight: 740;
  line-height: 1.2;
  transition: transform 0.2s ease, background 0.2s ease, border-color 0.2s ease;
}

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

.button-primary {
  background: linear-gradient(135deg, var(--magenta), #b6005c);
  color: var(--white);
  box-shadow: 0 14px 32px rgba(229, 0, 117, 0.25);
}

.button-primary:hover {
  background: linear-gradient(135deg, #f0007c, var(--magenta));
}

.button-ghost {
  border-color: rgba(255, 255, 255, 0.28);
  background: rgba(255, 255, 255, 0.07);
  color: var(--white);
  backdrop-filter: blur(8px);
}

.button-ghost:hover {
  border-color: rgba(255, 255, 255, 0.5);
  background: rgba(255, 255, 255, 0.12);
}

.button-dark {
  background: var(--ink);
  color: var(--white);
}

.hero .button-ghost {
  border-color: rgba(17, 18, 24, 0.18);
  background: rgba(255, 255, 255, 0.72);
  color: var(--ink);
  box-shadow: 0 10px 30px rgba(17, 18, 24, 0.06);
}

.hero .button-ghost:hover {
  border-color: rgba(17, 18, 24, 0.32);
  background: var(--white);
}

.hero-proof {
  margin-top: 43px;
  display: flex;
  flex-wrap: wrap;
  gap: 8px 25px;
  color: var(--muted);
  font-size: 0.74rem;
  font-weight: 650;
}

.hero-proof span {
  display: flex;
  align-items: center;
  gap: 8px;
}

.hero-proof b {
  color: var(--magenta);
  font-size: 0.68rem;
}

.quick-check {
  position: relative;
  z-index: 4;
  margin-top: -38px;
  background: transparent;
}

.quick-grid {
  min-height: 144px;
  overflow: hidden;
  border: 1px solid rgba(17, 18, 24, 0.09);
  border-radius: 24px;
  display: grid;
  grid-template-columns: 1.3fr repeat(3, 1fr);
  align-items: stretch;
  background: var(--white);
  box-shadow: var(--shadow-soft);
}

.quick-grid > div {
  padding: 32px 28px;
  border-right: 1px solid var(--line);
  display: flex;
  align-items: center;
}

.quick-grid > div:first-child {
  padding-left: 32px;
  flex-direction: column;
  align-items: flex-start;
  justify-content: center;
}

.quick-grid > div:last-child {
  padding-right: 28px;
  border-right: 0;
}

.quick-grid .kicker {
  margin-bottom: 5px;
  font-size: 0.64rem;
}

.quick-grid h2 {
  margin: 0;
  font-size: 1.55rem;
}

.check-card {
  gap: 15px;
}

.check-card > span {
  display: grid;
  width: 36px;
  height: 36px;
  flex: 0 0 auto;
  place-items: center;
  border-radius: 50%;
  background: var(--cobalt-pale);
  color: var(--cobalt);
  font-size: 0.75rem;
  font-weight: 800;
}

.check-card p {
  margin: 0;
  color: var(--muted);
  font-size: 0.78rem;
  line-height: 1.4;
}

.check-card strong {
  display: block;
  margin-bottom: 2px;
  color: var(--ink);
  font-size: 0.92rem;
}

.section {
  position: relative;
  padding-block: 120px;
}

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

.section-heading {
  margin-bottom: 57px;
}

.split-heading {
  display: grid;
  grid-template-columns: 1.25fr 0.75fr;
  align-items: end;
  gap: 70px;
}

.split-heading h2 {
  max-width: 820px;
  margin-bottom: 0;
}

.split-heading > p {
  margin-bottom: 6px;
  color: var(--muted);
}

.center-heading {
  max-width: 900px;
  margin-inline: auto;
  text-align: center;
}

.center-heading .kicker {
  justify-content: center;
}

.center-heading > p:last-child {
  max-width: 720px;
  margin: 0 auto;
  color: var(--muted);
}

.decision-layout {
  display: grid;
  grid-template-columns: 1fr 0.9fr;
  gap: 54px;
  align-items: stretch;
}

.decision-cards {
  display: flex;
  flex-direction: column;
  justify-content: center;
}

.decision-card {
  padding: 28px 0;
  border-bottom: 1px solid var(--line);
  display: grid;
  grid-template-columns: 58px 1fr;
  gap: 22px;
}

.decision-card:first-child {
  border-top: 1px solid var(--line);
}

.decision-number {
  color: var(--cobalt);
  font-size: 0.72rem;
  font-weight: 800;
}

.decision-card p {
  max-width: 650px;
  margin-bottom: 8px;
  color: var(--muted);
}

.decision-card small {
  color: var(--ink);
  font-size: 0.74rem;
  font-weight: 720;
}

.photo-card {
  position: relative;
  min-height: 610px;
  margin: 0;
  overflow: hidden;
  border-radius: var(--radius);
  box-shadow: var(--shadow);
}

.photo-card img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.photo-accent-c,
.photo-accent-m {
  position: absolute;
  z-index: 2;
  width: 88px;
  height: 88px;
  border-radius: 50%;
  mix-blend-mode: multiply;
}

.photo-accent-c {
  top: 26px;
  right: 82px;
  background: rgba(0, 171, 215, 0.72);
}

.photo-accent-m {
  top: 26px;
  right: 28px;
  background: rgba(229, 0, 117, 0.68);
}

.photo-card figcaption {
  position: absolute;
  right: 22px;
  bottom: 22px;
  left: 22px;
  padding: 22px;
  border: 1px solid rgba(255, 255, 255, 0.18);
  border-radius: 15px;
  background: rgba(16, 26, 38, 0.86);
  color: rgba(255, 255, 255, 0.78);
  font-size: 0.86rem;
  backdrop-filter: blur(12px);
}

.photo-card figcaption span {
  display: block;
  margin-bottom: 4px;
  color: var(--copper);
  font-size: 0.64rem;
  font-weight: 800;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.brand-section {
  overflow: hidden;
  background: var(--white);
}

.brand-section::after {
  position: absolute;
  right: -90px;
  bottom: 40px;
  width: 250px;
  height: 250px;
  border: 48px solid rgba(255, 210, 10, 0.24);
  border-radius: 50%;
  content: "";
}

.brand-section::before {
  position: absolute;
  top: 0;
  left: 50%;
  width: min(1320px, 92%);
  height: 1px;
  background: var(--line);
  content: "";
  transform: translateX(-50%);
}

.brand-grid {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  border-top: 1px solid var(--line);
  border-left: 1px solid var(--line);
}

.brand-card {
  min-height: 132px;
  padding: 23px;
  border-right: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
  display: flex;
  flex-direction: column;
  justify-content: center;
  transition: background 0.2s ease, color 0.2s ease;
}

.brand-card:hover {
  background: var(--ink);
  color: var(--white);
}

.brand-card strong {
  margin-bottom: 4px;
  font-size: 1.3rem;
}

.brand-card span {
  color: var(--muted);
  font-size: 0.72rem;
}

.brand-card:hover span {
  color: rgba(255, 255, 255, 0.62);
}

.brand-cta {
  min-height: 84px;
  padding: 20px 25px;
  border-right: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
  border-left: 1px solid var(--line);
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 30px;
}

.brand-cta > div,
.brand-cta > a {
  display: flex;
  align-items: center;
  gap: 13px;
}

.brand-cta p {
  margin: 0;
  color: var(--muted);
}

.brand-cta a {
  color: var(--cobalt);
  font-size: 0.82rem;
  font-weight: 760;
}

.section-ink {
  overflow: hidden;
  background: var(--ink);
  color: var(--white);
}

.business-layout {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: clamp(60px, 7vw, 110px);
  align-items: center;
}

.business-photo {
  position: relative;
  min-height: 690px;
  overflow: hidden;
  border-radius: var(--radius);
}

.business-photo::after {
  position: absolute;
  inset: 0;
  background: linear-gradient(0deg, rgba(10, 17, 25, 0.48), transparent 48%);
  content: "";
}

.business-photo img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.photo-stamp {
  position: absolute;
  z-index: 2;
  right: 24px;
  bottom: 24px;
  left: 24px;
  padding: 20px 22px;
  border: 1px solid rgba(255, 255, 255, 0.24);
  display: flex;
  align-items: center;
  gap: 16px;
  border-radius: 15px;
  background: rgba(16, 26, 38, 0.77);
  backdrop-filter: blur(13px);
}

.photo-stamp > span {
  color: var(--copper);
  font-size: 1.35rem;
  font-weight: 900;
  letter-spacing: -0.08em;
}

.photo-stamp p {
  margin: 0;
  color: rgba(255, 255, 255, 0.75);
  font-size: 0.76rem;
  line-height: 1.3;
}

.kicker-copper {
  color: var(--copper);
}

.business-copy h2 {
  max-width: 620px;
}

.business-copy .lead {
  max-width: 650px;
  margin-bottom: 31px;
  color: rgba(255, 255, 255, 0.67);
  font-size: 1.05rem;
}

.business-list {
  margin-bottom: 34px;
}

.business-list > div {
  padding: 18px 0;
  border-top: 1px solid var(--line-dark);
  display: grid;
  grid-template-columns: 48px 1fr;
  gap: 12px;
}

.business-list > div:last-child {
  border-bottom: 1px solid var(--line-dark);
}

.business-list span {
  padding-top: 2px;
  color: var(--copper);
  font-size: 0.68rem;
  font-weight: 800;
}

.business-list p {
  margin: 0;
  color: rgba(255, 255, 255, 0.6);
  font-size: 0.82rem;
}

.business-list strong {
  display: block;
  color: var(--white);
  font-size: 0.98rem;
}

.text-link {
  display: inline-flex;
  align-items: center;
  gap: 9px;
  color: var(--white);
  font-size: 0.84rem;
  font-weight: 740;
}

.text-link svg {
  transition: transform 0.2s ease;
}

.text-link:hover svg {
  transform: translateX(4px);
}

.problem-section {
  background:
    radial-gradient(circle at 88% 18%, rgba(0, 171, 215, 0.11), transparent 28%),
    radial-gradient(circle at 8% 85%, rgba(229, 0, 117, 0.08), transparent 24%),
    var(--paper);
}

.diagnosis-layout {
  display: grid;
  grid-template-columns: 1.08fr 0.92fr;
  gap: 28px;
  align-items: stretch;
}

.diagnosis-photo {
  position: relative;
  min-height: 620px;
  margin: 0;
  overflow: hidden;
  border-radius: var(--radius);
  background: #ddd8ce;
  box-shadow: var(--shadow);
}

.diagnosis-photo img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.diagnosis-photo::after {
  position: absolute;
  inset: 50% 0 0;
  background: linear-gradient(0deg, rgba(17, 18, 24, 0.66), transparent);
  content: "";
}

.diagnosis-photo figcaption {
  position: absolute;
  z-index: 2;
  right: 24px;
  bottom: 24px;
  left: 24px;
  padding: 20px 22px;
  border: 1px solid rgba(255, 255, 255, 0.25);
  border-radius: 16px;
  background: rgba(17, 18, 24, 0.74);
  color: rgba(255, 255, 255, 0.74);
  font-size: 0.84rem;
  backdrop-filter: blur(12px);
}

.diagnosis-photo figcaption span {
  display: block;
  margin-bottom: 3px;
  color: var(--yellow);
  font-size: 0.64rem;
  font-weight: 800;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.problem-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 14px;
}

.problem-grid article {
  min-height: 295px;
  padding: 20px;
  border: 1px solid var(--line);
  border-radius: 20px;
  background: rgba(255, 255, 255, 0.84);
  box-shadow: 0 10px 30px rgba(17, 18, 24, 0.04);
}

.problem-grid p {
  margin-bottom: 0;
  color: var(--muted);
  font-size: 0.88rem;
}

.sample {
  position: relative;
  height: 100px;
  margin-bottom: 22px;
  overflow: hidden;
  border: 1px solid #e4e6e7;
  display: block;
  background: #fff;
  box-shadow: 0 12px 25px rgba(16, 26, 38, 0.06);
}

.sample::before,
.sample::after {
  position: absolute;
  content: "";
}

.sample-faded::before {
  inset: 23px 26px;
  background: repeating-linear-gradient(0deg, rgba(16, 26, 38, 0.16) 0 2px, transparent 2px 9px);
  mask-image: linear-gradient(90deg, rgba(0, 0, 0, 0.35), #000, rgba(0, 0, 0, 0.12));
}

.sample-streak::before {
  inset: 20px 23px;
  background:
    linear-gradient(90deg, transparent 19%, rgba(16, 26, 38, 0.52) 20%, transparent 23%),
    repeating-linear-gradient(0deg, rgba(16, 26, 38, 0.25) 0 2px, transparent 2px 10px);
}

.sample-dots::before {
  inset: 19px 23px;
  background:
    radial-gradient(circle at 22% 25%, rgba(16, 26, 38, 0.65) 0 3px, transparent 4px),
    radial-gradient(circle at 22% 53%, rgba(16, 26, 38, 0.65) 0 3px, transparent 4px),
    radial-gradient(circle at 22% 81%, rgba(16, 26, 38, 0.65) 0 3px, transparent 4px),
    repeating-linear-gradient(0deg, rgba(16, 26, 38, 0.16) 0 2px, transparent 2px 10px);
}

.sample-gray {
  background: linear-gradient(90deg, #e9eaeb, #cfd2d4 50%, #e8e9ea);
}

.sample-gray::before {
  inset: 21px 25px;
  background: repeating-linear-gradient(0deg, rgba(16, 26, 38, 0.3) 0 2px, transparent 2px 10px);
}

.local-section {
  overflow: hidden;
  background:
    linear-gradient(135deg, rgba(0, 171, 215, 0.94), rgba(0, 96, 150, 0.98)),
    var(--cobalt);
  color: var(--white);
}

.local-section::before {
  position: absolute;
  top: -260px;
  right: -190px;
  width: 700px;
  height: 700px;
  border: 1px solid rgba(255, 255, 255, 0.15);
  border-radius: 50%;
  box-shadow:
    0 0 0 100px rgba(255, 255, 255, 0.035),
    0 0 0 200px rgba(255, 255, 255, 0.02);
  content: "";
}

.local-layout {
  position: relative;
  z-index: 2;
  display: grid;
  grid-template-columns: 1.05fr 0.75fr;
  gap: 90px;
  align-items: center;
}

.local-copy .kicker {
  color: #cbdcff;
}

.local-copy > p:not(.kicker) {
  max-width: 690px;
  color: rgba(255, 255, 255, 0.73);
}

.route-card {
  margin: 31px 0 24px;
  padding: 18px;
  display: grid;
  grid-template-columns: auto 1fr auto;
  align-items: center;
  gap: 16px;
  border: 1px solid rgba(255, 255, 255, 0.2);
  border-radius: 15px;
  background: rgba(6, 36, 92, 0.34);
}

.route-pin {
  display: grid;
  width: 55px;
  height: 55px;
  place-items: center;
  border-radius: 12px;
  background: var(--white);
  color: var(--cobalt);
}

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

.route-card small {
  color: #bad0ff;
  font-size: 0.64rem;
  font-weight: 750;
  letter-spacing: 0.1em;
  text-transform: uppercase;
}

.route-card strong {
  margin: 3px 0;
  font-size: 1rem;
}

.route-card span {
  color: rgba(255, 255, 255, 0.6);
  font-size: 0.74rem;
}

.route-card > a {
  display: grid;
  width: 43px;
  height: 43px;
  place-items: center;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.12);
}

.local-actions .button-dark {
  background: var(--white);
  color: var(--ink);
}

.dark-link {
  color: var(--ink);
}

.local-actions .dark-link {
  color: var(--white);
}

.mixed-intent {
  max-width: 690px;
  margin: 28px 0 0;
  padding-top: 23px;
  border-top: 1px solid rgba(255, 255, 255, 0.18);
  color: rgba(255, 255, 255, 0.66) !important;
  font-size: 0.83rem;
}

.mixed-intent strong {
  color: var(--white);
}

.mixed-intent a {
  color: var(--white);
  font-weight: 760;
  text-decoration: underline;
  text-underline-offset: 3px;
}

.area-panel {
  padding: 37px;
  border: 1px solid rgba(255, 255, 255, 0.2);
  border-radius: var(--radius);
  background: rgba(8, 39, 99, 0.52);
  box-shadow: 0 30px 80px rgba(5, 27, 68, 0.25);
  backdrop-filter: blur(10px);
}

.area-panel > div + div {
  margin-top: 30px;
  padding-top: 28px;
  border-top: 1px solid rgba(255, 255, 255, 0.15);
}

.area-label {
  margin-bottom: 14px;
  color: #c7d9ff;
  font-size: 0.68rem;
  font-weight: 800;
  letter-spacing: 0.14em;
  text-transform: uppercase;
}

.tag-list {
  margin: 0;
  padding: 0;
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  list-style: none;
}

.tag-list li {
  padding: 7px 11px;
  border: 1px solid rgba(255, 255, 255, 0.18);
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.08);
  font-size: 0.72rem;
  font-weight: 680;
}

.tag-list-muted li {
  color: rgba(255, 255, 255, 0.72);
}

.area-note {
  margin: 29px 0 0;
  padding-top: 24px;
  border-top: 1px solid rgba(255, 255, 255, 0.15);
  color: rgba(255, 255, 255, 0.6);
  font-size: 0.75rem;
}

.intent-section {
  overflow: hidden;
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.96), rgba(248, 245, 238, 0.98));
}

.intent-section::before {
  position: absolute;
  top: -140px;
  left: -120px;
  width: 360px;
  height: 360px;
  border: 70px solid rgba(0, 171, 215, 0.1);
  border-radius: 50%;
  content: "";
}

.intent-section::after {
  position: absolute;
  right: -130px;
  bottom: -160px;
  width: 380px;
  height: 380px;
  border: 70px solid rgba(229, 0, 117, 0.09);
  border-radius: 50%;
  content: "";
}

.ecosystem-grid {
  position: relative;
  z-index: 2;
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 15px;
}

.ecosystem-card {
  position: relative;
  min-height: 315px;
  padding: 29px;
  border: 1px solid var(--line);
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  border-radius: 22px;
  background: rgba(255, 255, 255, 0.88);
  box-shadow: 0 14px 40px rgba(17, 18, 24, 0.06);
  transition: transform 0.2s ease, box-shadow 0.2s ease;
}

.ecosystem-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 24px 60px rgba(17, 18, 24, 0.11);
}

.ecosystem-card::before {
  width: 46px;
  height: 7px;
  margin-bottom: 45px;
  border-radius: 999px;
  background: var(--cyan);
  content: "";
}

.ecosystem-card:nth-child(2)::before {
  background: var(--magenta);
}

.ecosystem-card:nth-child(3)::before {
  background: var(--yellow);
}

.ecosystem-card:nth-child(4)::before {
  background: var(--ink);
}

.ecosystem-card small {
  margin-bottom: 4px;
  color: var(--muted);
  font-size: 0.66rem;
  font-weight: 800;
  letter-spacing: 0.1em;
  text-transform: uppercase;
}

.ecosystem-card h3 {
  font-size: 1.34rem;
}

.ecosystem-card p {
  margin-bottom: 24px;
  color: var(--muted);
  font-size: 0.85rem;
}

.ecosystem-card b {
  margin-top: auto;
  color: var(--magenta);
  font-size: 0.77rem;
}

.ecosystem-card-main {
  border-color: transparent;
  background: var(--ink);
  color: var(--white);
  transform: translateY(-12px);
}

.ecosystem-card-main::before {
  background: linear-gradient(90deg, var(--cyan), var(--magenta), var(--yellow));
}

.ecosystem-card-main small,
.ecosystem-card-main p {
  color: rgba(255, 255, 255, 0.63);
}

.ecosystem-badge {
  position: absolute;
  top: 22px;
  right: 22px;
  padding: 5px 9px;
  border-radius: 999px;
  background: var(--yellow);
  color: var(--ink);
  font-size: 0.58rem;
  font-weight: 800;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.faq-section {
  background: var(--paper);
}

.faq-layout {
  display: grid;
  grid-template-columns: 0.7fr 1.3fr;
  gap: 90px;
  align-items: start;
}

.faq-intro {
  position: sticky;
  top: 130px;
}

.faq-intro p:not(.kicker) {
  max-width: 470px;
  color: var(--muted);
}

.faq-intro .text-link {
  margin-top: 9px;
}

.faq-list {
  border-top: 1px solid var(--line);
}

.faq-list details {
  border-bottom: 1px solid var(--line);
}

.faq-list summary {
  min-height: 93px;
  padding: 25px 0;
  display: grid;
  grid-template-columns: 48px 1fr auto;
  align-items: center;
  gap: 12px;
  cursor: pointer;
  font-size: 1.05rem;
  font-weight: 720;
  list-style: none;
}

.faq-list summary::-webkit-details-marker {
  display: none;
}

.faq-list summary span {
  color: var(--cobalt);
  font-size: 0.68rem;
  font-weight: 800;
}

.faq-list summary b {
  display: grid;
  width: 34px;
  height: 34px;
  place-items: center;
  border-radius: 50%;
  background: var(--white);
  color: var(--cobalt);
  font-size: 1.2rem;
  font-weight: 500;
  transition: transform 0.2s ease;
}

.faq-list details[open] summary b {
  transform: rotate(45deg);
}

.faq-list details > p {
  max-width: 760px;
  margin: -7px 50px 27px 60px;
  color: var(--muted);
}

.final-cta {
  padding-block: 88px;
  background: var(--ink-blue);
  color: var(--white);
}

.final-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 70px;
}

.final-inner h2 {
  margin-bottom: 10px;
  font-size: clamp(2rem, 3.5vw, 3.8rem);
}

.final-inner p:not(.kicker) {
  margin: 0;
  color: rgba(255, 255, 255, 0.65);
}

.final-actions {
  flex: 0 0 auto;
}

.site-footer {
  padding-top: 80px;
  background: #0b131d;
  color: rgba(255, 255, 255, 0.68);
}

.footer-grid {
  padding-bottom: 66px;
  display: grid;
  grid-template-columns: 1.45fr 1fr 0.8fr 0.7fr;
  gap: 60px;
}

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

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

.brand-footer .brand-copy small {
  color: rgba(255, 255, 255, 0.52);
}

.footer-brand > p {
  max-width: 420px;
  margin: 24px 0 0;
  font-size: 0.84rem;
}

.footer-brand .footer-disclaimer {
  margin-top: 13px;
  color: rgba(255, 255, 255, 0.45);
  font-size: 0.73rem;
}

.footer-column {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 8px;
}

.footer-column h2 {
  margin-bottom: 13px;
  color: var(--white);
  font-size: 0.75rem;
  letter-spacing: 0.1em;
  text-transform: uppercase;
}

.footer-column a,
.footer-column address {
  color: rgba(255, 255, 255, 0.65);
  font-size: 0.8rem;
  font-style: normal;
}

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

.footer-column address {
  display: flex;
  flex-direction: column;
}

.footer-column address strong {
  margin-bottom: 5px;
  color: rgba(255, 255, 255, 0.9);
}

.footer-bottom {
  min-height: 78px;
  border-top: 1px solid var(--line-dark);
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 30px;
  color: rgba(255, 255, 255, 0.4);
  font-size: 0.69rem;
}

.footer-bottom p {
  margin: 0;
}

.mobile-bar {
  display: none;
}

.icon {
  flex: 0 0 auto;
}

:focus-visible {
  outline: 3px solid var(--copper);
  outline-offset: 4px;
}

@media (max-width: 1180px) {
  .shell {
    width: min(100% - 44px, 1120px);
  }

  .main-nav a:nth-child(4),
  .main-nav a:nth-child(5) {
    display: none;
  }

  .hero,
  .hero-inner {
    min-height: 690px;
  }

  .hero-inner {
    grid-template-columns: 0.92fr 1.08fr;
    gap: 36px;
  }

  .hero-visual {
    min-height: 560px;
  }

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

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

  .quick-grid > div:nth-child(2) {
    border-right: 0;
  }

  .quick-grid > div:nth-child(-n + 2) {
    border-bottom: 1px solid var(--line);
  }

  .quick-grid > div:first-child,
  .quick-grid > div:nth-child(3) {
    padding-left: 0;
  }

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

  .footer-grid {
    grid-template-columns: 1.3fr 1fr 1fr;
  }

  .footer-column:last-child {
    display: none;
  }
}

@media (max-width: 900px) {
  html {
    scroll-padding-top: 90px;
  }

  .ownership-strip {
    font-size: 0.68rem;
  }

  .strip-inner {
    min-height: 46px;
  }

  .strip-inner a {
    display: none;
  }

  .nav-wrap {
    min-height: 74px;
    grid-template-columns: 1fr auto;
  }

  .main-nav {
    display: none;
  }

  .nav-call {
    min-width: 145px;
    border-left: 0;
  }

  .brand-copy {
    display: none;
  }

  .brand-mark {
    width: 66px;
    height: 44px;
  }

  .hero {
    min-height: auto;
    padding-bottom: 38px;
  }

  .hero-inner {
    grid-template-columns: 1fr;
    gap: 46px;
    min-height: 0;
    padding-block: 60px 82px;
  }

  .hero-visual {
    min-height: 560px;
    transform: none;
  }

  .hero-copy {
    width: 100%;
    max-width: 750px;
  }

  .section {
    padding-block: 90px;
  }

  .split-heading,
  .decision-layout,
  .business-layout,
  .diagnosis-layout,
  .local-layout,
  .faq-layout {
    grid-template-columns: 1fr;
  }

  .split-heading,
  .decision-layout,
  .business-layout,
  .local-layout,
  .faq-layout {
    gap: 45px;
  }

  .photo-card {
    min-height: 520px;
  }

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

  .business-photo {
    min-height: 550px;
  }

  .faq-intro {
    position: static;
  }

  .intent-flow {
    grid-template-columns: 1fr;
  }

  .flow-arrow {
    min-height: 20px;
    transform: rotate(90deg);
  }

  .final-inner {
    align-items: flex-start;
    flex-direction: column;
    gap: 30px;
  }

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

  .footer-brand {
    grid-column: 1 / -1;
  }

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

@media (max-width: 620px) {
  body {
    padding-bottom: 64px;
  }

  .shell {
    width: calc(100% - 30px);
  }

  .ownership-strip {
    text-align: center;
  }

  .strip-inner {
    justify-content: center;
  }

  .nav-wrap {
    gap: 10px;
  }

  .nav-call {
    min-width: auto;
    padding-right: 0;
  }

  .nav-call span {
    display: none;
  }

  .nav-call strong {
    font-size: 0.89rem;
  }

  .hero {
    min-height: 0;
  }

  .hero-inner {
    align-items: center;
    padding-block: 50px 78px;
  }

  h1 {
    font-size: clamp(2.65rem, 13vw, 4.4rem);
  }

  h2 {
    font-size: clamp(2rem, 10vw, 3.3rem);
  }

  .hero-copy {
    width: 100%;
  }

  .hero-visual {
    min-height: 420px;
    border-width: 6px;
    border-radius: 24px 24px 70px 24px;
  }

  .hero-location-card {
    right: 10px;
    bottom: 10px;
    left: 10px;
    min-width: 0;
    padding: 13px;
  }

  .hero-human-note {
    display: none;
  }

  .hero-actions,
  .business-actions,
  .local-actions,
  .final-actions {
    align-items: stretch;
    flex-direction: column;
  }

  .button {
    width: 100%;
  }

  .hero-proof {
    display: none;
  }

  .quick-grid {
    grid-template-columns: 1fr;
    border-radius: 18px;
  }

  .quick-check {
    margin-top: -28px;
  }

  .quick-grid > div {
    min-height: 92px;
    padding: 20px 0;
    border-right: 0;
    border-bottom: 1px solid var(--line);
  }

  .quick-grid > div:last-child {
    border-bottom: 0;
  }

  .section {
    padding-block: 74px;
  }

  .section-heading {
    margin-bottom: 38px;
  }

  .decision-card {
    grid-template-columns: 37px 1fr;
    gap: 10px;
  }

  .photo-card,
  .business-photo {
    min-height: 420px;
    border-radius: 16px;
  }

  .diagnosis-photo {
    min-height: 430px;
  }

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

  .brand-card {
    min-height: 105px;
    padding: 17px;
  }

  .brand-card strong {
    font-size: 1.08rem;
  }

  .brand-cta {
    align-items: flex-start;
    flex-direction: column;
  }

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

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

  .ecosystem-card-main {
    transform: none;
  }

  .problem-grid article {
    min-height: 0;
  }

  .route-card {
    grid-template-columns: auto 1fr;
  }

  .route-card > a {
    display: none;
  }

  .area-panel {
    padding: 25px;
  }

  .faq-list summary {
    grid-template-columns: 30px 1fr auto;
    font-size: 0.92rem;
  }

  .faq-list details > p {
    margin-right: 0;
    margin-left: 42px;
  }

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

  .footer-brand {
    grid-column: auto;
  }

  .footer-bottom {
    padding-block: 20px;
    align-items: flex-start;
    flex-direction: column;
    justify-content: center;
    gap: 5px;
  }

  .mobile-bar {
    position: fixed;
    z-index: 90;
    right: 0;
    bottom: 0;
    left: 0;
    height: 64px;
    padding: 8px;
    display: grid;
    grid-template-columns: 1.25fr 0.75fr;
    gap: 7px;
    background: var(--white);
    box-shadow: 0 -8px 30px rgba(16, 26, 38, 0.15);
  }

  .mobile-bar a {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 7px;
    border-radius: 8px;
    background: var(--cobalt);
    color: var(--white);
    font-size: 0.8rem;
    font-weight: 760;
  }

  .mobile-bar a:last-child {
    background: var(--ink);
  }
}

@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;
  }
}
