:root {
  color-scheme: light;
  --ink: #1a1f2b;
  --ink-2: #3a4250;
  --muted: #5a6473;
  --paper: #d8e7f7;
  --paper-2: #c9dcf2;
  --paper-3: #b7d0ee;
  --navy: #173b63;
  --navy-2: #10283f;
  --navy-ink: #112236;
  --brand: #1f6fb2;
  --brand-soft: #9ed4ff;
  --line: #e6e8ec;
  --line-strong: #cdd3db;
  --green: #16875a;
  --blue: #2563eb;
  --red: #d83a52;
  --purple: #6f5bd5;
  --white: #ffffff;
  --shadow: 0 24px 60px rgba(26, 31, 43, 0.12);
  --display: "Bahnschrift", "Aptos Display", "Segoe UI", sans-serif;
  --body: "Aptos", "Segoe UI", sans-serif;
  --mono: "Cascadia Mono", "Consolas", monospace;
}

* {
  box-sizing: border-box;
}

html {
  min-height: 100%;
  background: var(--paper);
  scroll-behavior: smooth;
}

body {
  min-height: 100%;
  margin: 0;
  color: var(--ink);
  font-family: var(--body);
  letter-spacing: 0;
  background: var(--paper);
}

a {
  color: inherit;
}

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

h1,
h2,
h3 {
  font-family: var(--display);
  letter-spacing: 0;
}

h1 {
  max-width: 980px;
  font-size: clamp(44px, 7.4vw, 104px);
  line-height: 0.9;
  text-transform: uppercase;
}

h2 {
  font-size: clamp(31px, 4.6vw, 64px);
  line-height: 0.96;
}

h3 {
  font-size: 22px;
  line-height: 1.12;
}

p,
li,
dd,
dt {
  font-size: 17px;
  line-height: 1.58;
}

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

li {
  position: relative;
  padding-left: 22px;
}

li::before {
  position: absolute;
  left: 0;
  top: 0.72em;
  width: 8px;
  height: 8px;
  background: var(--navy);
  content: "";
}

.proposal-hero {
  position: relative;
  display: flex;
  flex-direction: column;
  overflow: hidden;
  background:
    radial-gradient(circle at 86% 10%, rgba(255, 255, 255, 0.07), transparent 44%),
    linear-gradient(135deg, var(--navy-2) 0%, var(--navy) 64%, #244a76 100%);
  color: var(--white);
}

.proposal-nav {
  position: relative;
  z-index: 3;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  padding: 22px clamp(18px, 4vw, 58px);
}

.brand {
  display: flex;
  align-items: center;
  gap: 12px;
  text-decoration: none;
}

.brand-mark {
  display: grid;
  width: 48px;
  height: 48px;
  place-items: center;
  border: 1px solid rgba(255, 255, 255, 0.28);
  background: var(--white);
  color: var(--navy);
  font-family: var(--display);
  font-weight: 900;
}

.brand strong,
.brand small {
  display: block;
}

.brand strong {
  font-family: var(--display);
  font-size: 21px;
}

.brand small,
.eyebrow,
.panel-label {
  font-family: var(--mono);
  font-size: 12px;
  font-weight: 800;
  letter-spacing: 0;
  text-transform: uppercase;
}

.brand small {
  color: rgba(255, 255, 255, 0.66);
}

.nav-links {
  display: flex;
  align-items: center;
  gap: 7px;
}

.nav-links a {
  min-height: 40px;
  border: 1px solid rgba(255, 255, 255, 0.2);
  padding: 10px 13px;
  background: rgba(255, 255, 255, 0.08);
  color: rgba(255, 255, 255, 0.86);
  font-size: 14px;
  text-decoration: none;
  transition: background 160ms ease, color 160ms ease, border-color 160ms ease;
}

.nav-links a:hover {
  border-color: var(--white);
  background: var(--white);
  color: var(--navy);
}

.hero-copy {
  position: relative;
  z-index: 2;
  width: min(1080px, 92vw);
  padding: clamp(48px, 8vh, 96px) clamp(18px, 4vw, 58px) 30px;
}

.eyebrow {
  margin-bottom: 10px;
  color: var(--brand);
}

.hero-copy .eyebrow {
  color: var(--brand-soft);
}

.hero-lede {
  max-width: 700px;
  margin-top: 22px;
  color: rgba(255, 255, 255, 0.86);
  font-size: clamp(20px, 2.2vw, 26px);
  line-height: 1.36;
}

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

.primary-action,
.secondary-action {
  display: inline-flex;
  min-height: 48px;
  align-items: center;
  border: 1px solid transparent;
  padding: 13px 18px;
  font-weight: 800;
  text-decoration: none;
  transition: transform 160ms ease, background 160ms ease;
}

.primary-action {
  background: var(--white);
  color: var(--navy);
}

.primary-action:hover {
  transform: translateY(-2px);
  background: #e8eef6;
}

.secondary-action {
  border-color: rgba(255, 255, 255, 0.28);
  background: rgba(255, 255, 255, 0.08);
  color: var(--white);
}

.secondary-action:hover {
  border-color: rgba(255, 255, 255, 0.5);
  background: rgba(255, 255, 255, 0.14);
}

.hero-proof {
  position: relative;
  z-index: 3;
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 1px;
  width: min(1080px, calc(100% - 36px));
  margin: 6px auto 30px;
  border: 1px solid rgba(255, 255, 255, 0.18);
  background: rgba(255, 255, 255, 0.16);
}

.hero-proof article {
  min-width: 0;
  padding: 18px;
  background: rgba(17, 34, 54, 0.56);
}

.hero-proof span {
  display: block;
  color: var(--brand-soft);
  font-family: var(--mono);
  font-size: 12px;
  font-weight: 800;
  text-transform: uppercase;
}

.hero-proof strong {
  display: block;
  margin-top: 7px;
  font-family: var(--display);
  font-size: clamp(19px, 2vw, 27px);
  line-height: 1.08;
  overflow-wrap: anywhere;
}

.hero-art {
  position: relative;
  z-index: 2;
  width: min(1080px, calc(100% - 36px));
  margin: 0 auto clamp(36px, 6vw, 64px);
  aspect-ratio: 12 / 5;
  max-height: 440px;
  border: 1px solid rgba(255, 255, 255, 0.16);
  background: #f8fafc url("docs/hero.svg") center / contain no-repeat;
  box-shadow: 0 24px 60px rgba(0, 0, 0, 0.28);
}

main {
  position: relative;
  overflow: hidden;
  background: var(--paper);
}

.section {
  width: min(1180px, calc(100% - 36px));
  margin: 0 auto;
  padding: clamp(54px, 8vw, 96px) 0;
}

.intro-grid {
  display: grid;
  grid-template-columns: minmax(240px, 0.7fr) minmax(280px, 1fr);
  gap: clamp(28px, 6vw, 86px);
  align-items: start;
}

.intro-grid .eyebrow,
.section-head .eyebrow,
.email-section .eyebrow,
.pilot-card .eyebrow,
.pricing-card .eyebrow,
.ask-section .eyebrow {
  color: var(--brand);
}

.share-card {
  display: grid;
  grid-template-columns: auto 1fr;
  gap: clamp(24px, 5vw, 52px);
  align-items: center;
  border: 1px solid var(--line);
  border-left: 6px solid var(--brand);
  background: var(--paper-2);
  padding: clamp(24px, 4vw, 40px);
}

.qr-frame {
  display: grid;
  justify-items: center;
  gap: 10px;
  margin: 0;
}

.qr-frame img {
  display: block;
  width: clamp(150px, 20vw, 190px);
  height: auto;
  border: 1px solid var(--line);
  background: #ffffff;
  padding: 10px;
}

.qr-frame figcaption {
  font-family: var(--mono);
  font-size: 12px;
  font-weight: 800;
  text-transform: uppercase;
  color: var(--muted);
}

.share-copy {
  display: grid;
  gap: 14px;
}

.share-copy p {
  color: var(--ink-2);
  font-size: 18px;
  line-height: 1.5;
}

.share-url {
  justify-self: start;
  font-family: var(--mono);
  font-weight: 800;
  color: var(--navy);
  text-decoration: none;
  border-bottom: 2px solid var(--brand);
  padding-bottom: 2px;
  word-break: break-all;
}

.summary-copy {
  display: grid;
  gap: 18px;
  border-left: 5px solid var(--brand);
  padding-left: clamp(20px, 3vw, 36px);
}

.summary-copy p {
  color: var(--ink-2);
  font-size: clamp(19px, 2vw, 24px);
  line-height: 1.36;
}

.delivery-lede {
  max-width: 760px;
  margin: 0 auto 26px;
  color: var(--ink-2);
  font-size: clamp(18px, 2vw, 22px);
  line-height: 1.45;
  text-align: center;
}

.delivery-tags {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  justify-content: center;
}

.delivery-tags li {
  padding: 11px 16px;
  border: 1px solid var(--line);
  border-left: 3px solid var(--brand);
  background: var(--white);
  color: var(--navy);
  font-family: var(--mono);
  font-size: 14px;
  font-weight: 800;
  letter-spacing: 0;
  text-transform: uppercase;
}

.delivery-tags li::before {
  display: none;
}

.problem-band {
  width: 100%;
  max-width: none;
  padding-right: clamp(18px, 4vw, 58px);
  padding-left: clamp(18px, 4vw, 58px);
  background: var(--paper-2);
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
  color: var(--ink);
}

.section-head {
  display: grid;
  grid-template-columns: minmax(240px, 0.82fr) minmax(260px, 1fr);
  gap: 32px;
  align-items: end;
  margin-bottom: 28px;
}

.problem-band .section-head {
  max-width: 1180px;
  margin-right: auto;
  margin-left: auto;
}

.problem-band .section-head .eyebrow {
  color: var(--brand);
}

.problem-list {
  display: grid;
  grid-template-columns: repeat(5, minmax(0, 1fr));
  gap: 1px;
  max-width: 1180px;
  margin: 0 auto;
  background: var(--line);
  border: 1px solid var(--line);
}

.problem-list article {
  min-height: 220px;
  padding: 22px;
  background: var(--white);
  transition: transform 180ms ease, background 180ms ease;
}

.problem-list article:hover {
  background: var(--paper-3);
  transform: translateY(-4px);
}

.panel-label {
  display: inline-block;
  margin-bottom: 18px;
  color: var(--brand);
}

.problem-list h3,
.flip-card h3,
.workflow-track h3,
.install-columns h3 {
  margin-bottom: 12px;
}

.problem-list h3 {
  color: var(--navy);
}

.problem-list p {
  color: var(--muted);
}

.site-photo-section {
  border-bottom: 1px solid var(--line);
}

.site-photo-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 14px;
}

.site-photo-card {
  min-width: 0;
  margin: 0;
  border: 1px solid var(--line);
  background: var(--white);
  box-shadow: 0 14px 40px rgba(26, 31, 43, 0.07);
}

.photo-placeholder {
  display: grid;
  min-height: 210px;
  place-items: center;
  border-bottom: 1px solid var(--line);
  background:
    linear-gradient(135deg, rgba(30, 58, 95, 0.12), transparent 52%),
    linear-gradient(90deg, rgba(26, 31, 43, 0.05) 1px, transparent 1px),
    linear-gradient(0deg, rgba(26, 31, 43, 0.05) 1px, transparent 1px),
    var(--paper-3);
  background-size: auto, 24px 24px, 24px 24px, auto;
  color: var(--muted);
  font-family: var(--mono);
  font-size: 12px;
  font-weight: 900;
  text-align: center;
  text-transform: uppercase;
}

.site-photo-card figcaption {
  display: grid;
  gap: 7px;
  padding: 18px;
}

.site-photo-card strong {
  font-family: var(--display);
  font-size: 21px;
  line-height: 1.05;
  color: var(--ink);
}

.site-photo-card span {
  color: var(--muted);
  line-height: 1.45;
}

.benefit-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 14px;
  perspective: 1200px;
}

.benefit-grid .section-head {
  grid-column: 1 / -1;
  grid-template-columns: 1fr;
  justify-items: center;
  max-width: 900px;
  margin-right: auto;
  margin-left: auto;
  text-align: center;
}

.flip-card {
  min-height: 430px;
  outline: none;
  perspective: 1200px;
}

.flip-card.residents {
  --accent: var(--green);
  --accent-rgb: 31, 122, 77;
  --back-ink: var(--white);
}

.flip-card.visitors {
  --accent: var(--blue);
  --accent-rgb: 37, 99, 166;
  --back-ink: var(--white);
}

.flip-card.managers {
  --accent: var(--purple);
  --accent-rgb: 106, 76, 147;
  --back-ink: var(--white);
}

.flip-card.owners {
  --accent: var(--red);
  --accent-rgb: 180, 69, 59;
  --back-ink: var(--white);
}

.flip-card-inner {
  position: relative;
  min-height: 430px;
  transform-style: preserve-3d;
  -webkit-transform-style: preserve-3d;
  transition: transform 620ms cubic-bezier(0.2, 0.82, 0.2, 1);
}

.flip-card:hover .flip-card-inner,
.flip-card:focus .flip-card-inner {
  transform: rotateY(180deg);
  -webkit-transform: rotateY(180deg);
}

.flip-card:focus {
  outline: 3px solid rgba(30, 58, 95, 0.55);
  outline-offset: 4px;
}

.flip-face {
  position: absolute;
  inset: 0;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  min-height: 430px;
  border: 1px solid var(--line);
  padding: 24px;
  overflow: hidden;
  backface-visibility: hidden;
  -webkit-backface-visibility: hidden;
  box-shadow: 0 16px 44px rgba(26, 31, 43, 0.12);
}

.flip-front {
  transform: rotateY(0deg);
  -webkit-transform: rotateY(0deg);
}

.flip-front {
  background: var(--white);
  border-top: 4px solid var(--accent);
  color: var(--ink);
}

.flip-front::after {
  position: absolute;
  right: -42px;
  bottom: -42px;
  width: 150px;
  height: 150px;
  border: 26px solid rgba(var(--accent-rgb), 0.16);
  content: "";
  transform: rotate(18deg);
}

.flip-back {
  justify-content: flex-start;
  gap: 16px;
  background:
    linear-gradient(135deg, rgba(255, 255, 255, 0.18), transparent 42%),
    var(--accent);
  color: var(--back-ink);
  transform: rotateY(180deg);
  -webkit-transform: rotateY(180deg);
}

.flip-front .panel-label {
  color: var(--accent);
}

.flip-back .panel-label {
  color: currentColor;
  opacity: 0.82;
}

.flip-card h3 {
  position: relative;
  z-index: 1;
  font-size: clamp(24px, 2.4vw, 32px);
  line-height: 1;
}

.flip-front h3 {
  color: var(--ink);
}

.flip-card p {
  position: relative;
  z-index: 1;
  color: var(--muted);
}

.flip-back ul {
  display: grid;
  gap: 12px;
}

.flip-back li::before {
  background: currentColor;
}

.workflow-section {
  width: 100%;
  max-width: none;
  padding-right: clamp(18px, 4vw, 58px);
  padding-left: clamp(18px, 4vw, 58px);
  background: var(--paper-2);
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
}

.workflow-section .section-head,
.workflow-track {
  max-width: 1180px;
  margin-right: auto;
  margin-left: auto;
}

.workflow-section .section-head {
  grid-template-columns: 1fr;
  justify-items: center;
  text-align: center;
}

.workflow-track {
  display: grid;
  grid-template-columns: repeat(6, minmax(0, 1fr));
  gap: 1px;
  background: var(--line);
  border: 1px solid var(--line);
}

.workflow-track article {
  padding: 18px;
  background: var(--white);
  transition: background 180ms ease, transform 180ms ease;
}

.workflow-track article:hover {
  background: var(--paper-3);
  transform: translateY(-4px);
}

.workflow-track span {
  display: grid;
  width: 38px;
  height: 38px;
  place-items: center;
  margin-bottom: 16px;
  background: var(--navy);
  color: var(--white);
  font-family: var(--mono);
  font-weight: 900;
}

.workflow-track h3 {
  color: var(--navy);
}

.workflow-track p {
  color: var(--muted);
  font-size: 15px;
  line-height: 1.45;
}

.email-section {
  display: grid;
  grid-template-columns: minmax(280px, 0.82fr) minmax(300px, 1fr);
  gap: clamp(30px, 7vw, 100px);
  align-items: center;
}

.email-section p {
  margin-top: 18px;
  color: var(--ink-2);
  font-size: 20px;
  line-height: 1.45;
}

.email-mock {
  border: 1px solid var(--line);
  background: var(--white);
  color: var(--ink);
  box-shadow: 0 24px 60px rgba(26, 31, 43, 0.14);
}

.email-topline {
  display: flex;
  justify-content: space-between;
  gap: 14px;
  padding: 14px 18px;
  background: var(--navy);
  color: var(--white);
  font-family: var(--mono);
  font-size: 13px;
  text-transform: uppercase;
}

.email-mock h3 {
  padding: 24px 22px 12px;
  font-size: clamp(25px, 4vw, 40px);
  color: var(--ink);
}

.email-mock dl,
.pricing-card dl {
  margin: 0;
}

.email-mock dl {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 1px;
  padding: 0 22px 22px;
}

.email-mock dl div,
.pricing-card dl div {
  border-top: 1px solid var(--line);
  padding: 14px 0;
}

dt {
  color: var(--muted);
  font-family: var(--mono);
  font-size: 12px;
  font-weight: 800;
  text-transform: uppercase;
}

dd {
  margin: 3px 0 0;
  font-weight: 800;
}

.clip-strip {
  display: flex;
  justify-content: space-between;
  gap: 16px;
  border-top: 1px solid var(--line);
  padding: 18px 22px;
  background: var(--paper-3);
}

.clip-strip span {
  color: var(--navy);
  font-family: var(--mono);
  font-weight: 900;
  text-transform: uppercase;
}

.install-section {
  padding-top: 0;
}

.install-columns {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 14px;
}

.install-columns article {
  border-left: 6px solid var(--brand);
  padding: 24px;
  background: var(--paper-2);
}

.install-columns h3 {
  color: var(--navy);
}

.install-columns p {
  color: var(--muted);
}

.pilot-pricing {
  display: grid;
  grid-template-columns: minmax(300px, 1fr) minmax(280px, 0.72fr);
  gap: 16px;
  align-items: stretch;
}

.pilot-card,
.pricing-card {
  padding: clamp(24px, 4vw, 42px);
}

.pilot-card {
  background: var(--navy);
  color: var(--white);
  border: 1px solid var(--navy);
}

.pilot-card .eyebrow {
  color: var(--brand-soft);
}

.pilot-card ul {
  display: grid;
  gap: 10px;
  margin-top: 24px;
}

.pilot-card li::before {
  background: var(--brand-soft);
}

.pricing-card {
  border: 2px solid var(--navy);
  background: var(--white);
  color: var(--navy);
}

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

.pricing-card h2 {
  font-size: clamp(32px, 4vw, 56px);
  white-space: nowrap;
  overflow-wrap: normal;
}

.pricing-card p {
  margin: 8px 0 26px;
  font-weight: 800;
}

.pricing-card dt {
  color: rgba(17, 34, 54, 0.72);
}

.pricing-card dl div {
  border-color: rgba(17, 34, 54, 0.28);
}

.ask-section {
  display: grid;
  grid-template-columns: minmax(240px, 0.7fr) minmax(300px, 1fr);
  gap: clamp(28px, 6vw, 86px);
  align-items: start;
}

.ask-section ul {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 13px 22px;
  border-top: 4px solid var(--brand);
  padding-top: 20px;
}

@media (max-width: 1180px) {
  .problem-list {
    grid-template-columns: repeat(3, minmax(0, 1fr));
  }
}

@media (max-width: 1020px) {
  .problem-list,
  .site-photo-grid,
  .benefit-grid,
  .workflow-track {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .install-columns,
  .pilot-pricing {
    grid-template-columns: 1fr;
  }

  .hero-art {
    max-height: 320px;
  }
}

@media (max-width: 760px) {
  .proposal-nav,
  .section-head,
  .intro-grid,
  .email-section,
  .pilot-pricing,
  .ask-section {
    grid-template-columns: 1fr;
  }

  .proposal-nav {
    flex-direction: column;
    align-items: flex-start;
  }

  .nav-links {
    display: none;
  }

  .hero-copy {
    padding-top: 50px;
  }

  .hero-art {
    aspect-ratio: 11 / 6;
    max-height: 260px;
    margin-top: 8px;
  }

  .hero-proof,
  .problem-list,
  .site-photo-grid,
  .benefit-grid,
  .workflow-track,
  .email-mock dl,
  .ask-section ul {
    grid-template-columns: 1fr;
  }

  .hero-proof {
    width: calc(100% - 36px);
    margin-top: 24px;
    margin-right: 18px;
    margin-left: 18px;
    overflow: hidden;
  }

  .hero-proof strong {
    max-width: 100%;
    font-size: 18px;
    line-height: 1.28;
    overflow-wrap: anywhere;
    white-space: normal;
  }

  .hero-proof article {
    padding: 16px 18px;
  }

  .problem-list article {
    min-height: auto;
  }

  .flip-card,
  .flip-card-inner,
  .flip-face {
    min-height: 330px;
  }

  .photo-placeholder {
    min-height: 180px;
  }

  h1 {
    font-size: clamp(42px, 13vw, 68px);
  }

  .hero-lede {
    font-size: 19px;
  }

  p,
  li,
  dd,
  dt {
    font-size: 16px;
  }

  .clip-strip,
  .email-topline {
    flex-direction: column;
  }

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

  .share-url {
    justify-self: center;
  }
}

@media print {
  * {
    print-color-adjust: exact;
    -webkit-print-color-adjust: exact;
  }

  html,
  body {
    background: var(--paper);
    color: var(--ink);
  }

  .proposal-hero {
    color: var(--white);
    background: var(--navy);
  }

  .nav-links,
  .hero-actions {
    display: none;
  }

  .hero-art {
    display: block;
    width: calc(100% - 36px);
    margin: 18px auto 30px;
  }

  .proposal-nav,
  .hero-copy,
  .section {
    width: 100%;
    padding-right: 18px;
    padding-left: 18px;
  }

  .problem-band,
  .workflow-section {
    background: var(--paper-2);
  }

  .problem-band,
  .workflow-section {
    break-before: page;
    page-break-before: always;
  }

  .pilot-card {
    background: var(--navy);
  }

  .hero-proof {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
  }

  .problem-list {
    display: grid;
    grid-template-columns: repeat(5, minmax(0, 1fr));
  }

  .benefit-grid {
    display: grid;
    grid-template-columns: repeat(4, minmax(0, 1fr));
    break-before: page;
    page-break-before: always;
    break-inside: avoid;
  }

  .workflow-track {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
  }

  .pilot-pricing {
    display: grid;
    grid-template-columns: minmax(300px, 1fr) minmax(260px, 0.72fr);
  }

  .flip-card,
  .flip-card-inner,
  .flip-face {
    height: auto !important;
    min-height: 270px !important;
    overflow: visible !important;
    transform: none !important;
    backface-visibility: visible !important;
  }

  .flip-card {
    margin-bottom: 0;
    perspective: none;
    page-break-inside: avoid;
    break-inside: avoid;
  }

  .flip-card-inner {
    display: block !important;
    position: static !important;
    transform-style: flat;
  }

  .flip-card:hover .flip-card-inner,
  .flip-card:focus .flip-card-inner {
    transform: none;
  }

  .flip-face {
    display: flex !important;
    position: static !important;
    box-shadow: none;
    page-break-inside: avoid;
    break-inside: avoid;
  }

  .flip-front {
    border-bottom: 0;
    margin-bottom: 0;
  }

  .flip-back {
    display: none !important;
  }

  .flip-front::after {
    display: none;
  }

  .problem-list article,
  .workflow-track article,
  .flip-card,
  .install-columns article,
  .pilot-card,
  .pricing-card {
    break-inside: avoid;
    margin-bottom: 12px;
  }
}

/* Improve install section title - make it span full width and more engaging */
.install-section .section-head {
  grid-template-columns: 1fr;
  text-align: center;
  max-width: 900px;
  margin-left: auto;
  margin-right: auto;
}

.install-section .section-head h2 {
  font-size: clamp(28px, 3.8vw, 48px);
  line-height: 1.15;
  font-weight: 700;
  letter-spacing: -0.02em;
  background: linear-gradient(135deg, var(--navy-ink) 0%, var(--navy-600) 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  margin-top: 8px;
}

.install-section .section-head .eyebrow {
  justify-self: center;
}

/* Center the problem title */
#problem-title {
  text-align: center;
  max-width: 900px;
  margin-left: auto;
  margin-right: auto;
}

.problem-band .section-head {
  grid-template-columns: 1fr;
  text-align: center;
}

.problem-band .section-head .eyebrow {
  justify-self: center;
}

/* Center the delivery title */
#delivery-title {
  text-align: center;
  max-width: 900px;
  margin-left: auto;
  margin-right: auto;
}

.delivery-strip .section-head {
  grid-template-columns: 1fr;
  justify-items: center;
  max-width: 900px;
  margin-left: auto;
  margin-right: auto;
  text-align: center;
}

.delivery-strip .section-head .eyebrow {
  justify-self: center;
}
