:root {
  --ink: #132c4c;
  --navy: #07192f;
  --blue: #69b9d8;
  --sky: #dff3fb;
  --orange: #f47a3a;
  --teal: #2bb3a3;
  --green: #56b870;
  --gold: #f2b84b;
  --rose: #f7d7d0;
  --mint: #dff7ed;
  --paper: #fbfdff;
  --line: #d7e7ef;
  --muted: #5d7186;
  --shadow: 0 20px 55px rgba(19, 44, 76, .14);
  --shadow-strong: 0 30px 90px rgba(7, 25, 47, .22);
  --ring: 0 0 0 6px rgba(105, 185, 216, .16);
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  background:
    linear-gradient(90deg, rgba(19, 44, 76, .035) 1px, transparent 1px),
    linear-gradient(180deg, rgba(19, 44, 76, .03) 1px, transparent 1px),
    var(--paper);
  background-size: 42px 42px, 42px 42px, auto;
  color: var(--ink);
  font-family: "Inter", "Fira Sans", Arial, sans-serif;
}

a {
  color: inherit;
}

.container {
  width: min(1180px, calc(100% - 32px));
  margin: 0 auto;
}

.topbar {
  background: linear-gradient(90deg, #07192f, #102f52 58%, #1f1f1f);
  color: #fff;
  font-size: 13px;
}

.topbar .container {
  min-height: 32px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  flex-wrap: wrap;
}

.nav {
  position: sticky;
  top: 0;
  z-index: 20;
  background: rgba(255, 255, 255, .94);
  backdrop-filter: blur(14px);
  border-bottom: 1px solid var(--line);
  box-shadow: 0 8px 28px rgba(7, 25, 47, .06);
}

.nav .container {
  min-height: 78px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
}

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

.logo img {
  width: min(280px, 48vw);
  height: auto;
  display: block;
}

.navlinks {
  display: flex;
  align-items: center;
  gap: 18px;
  font-size: 13px;
  font-weight: 800;
  letter-spacing: .04em;
  text-transform: uppercase;
}

.navlinks a {
  border-radius: 999px;
  padding: 9px 0;
  text-decoration: none;
  transition: color .18s ease, background .18s ease;
}

.navlinks a:hover,
.navlinks a:focus-visible {
  color: var(--orange);
}

.button,
button {
  border: 0;
  border-radius: 6px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  padding: 13px 17px;
  color: #fff;
  background: var(--orange);
  font-weight: 900;
  text-decoration: none;
  cursor: pointer;
  min-height: 44px;
  position: relative;
  overflow: hidden;
  transform: translateZ(0);
  transition: transform .18s ease, box-shadow .18s ease, background .18s ease;
}

.button:hover,
.button:focus-visible,
button:hover,
button:focus-visible {
  box-shadow: 0 14px 30px rgba(244, 122, 58, .28);
  transform: translateY(-2px);
}

.button.secondary {
  background: var(--ink);
}

.button.light {
  background: #fff;
  color: var(--ink);
  border: 1px solid var(--line);
}

.hero {
  position: relative;
  overflow: hidden;
  background:
    linear-gradient(90deg, rgba(251, 253, 255, .96) 0%, rgba(251, 253, 255, .82) 47%, rgba(223, 243, 251, .4) 100%),
    repeating-linear-gradient(135deg, rgba(105, 185, 216, .18) 0 1px, transparent 1px 18px);
}

.hero::after,
.subhero::after,
.workspace-hero::after {
  content: "";
  position: absolute;
  inset: auto 0 0;
  height: 8px;
  background: linear-gradient(90deg, var(--orange), var(--gold), var(--teal), var(--blue));
}

.hero .container {
  min-height: 660px;
  display: grid;
  grid-template-columns: minmax(0, 1.1fr) minmax(320px, .9fr);
  gap: 42px;
  align-items: center;
  padding: 64px 0 70px;
}

.eyebrow {
  margin: 0 0 12px;
  color: var(--orange);
  font-size: 13px;
  font-weight: 900;
  letter-spacing: .16em;
  text-transform: uppercase;
}

h1,
h2,
h3 {
  margin: 0;
  line-height: 1.05;
}

h1 {
  font-size: clamp(44px, 7vw, 82px);
  max-width: 840px;
}

h2 {
  font-size: clamp(30px, 4.5vw, 52px);
}

h3 {
  font-size: 22px;
}

.lead {
  color: #344f68;
  font-size: clamp(18px, 2vw, 22px);
  line-height: 1.6;
  max-width: 720px;
}

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

.hero-panel {
  background: #fff;
  border: 1px solid var(--line);
  box-shadow: var(--shadow-strong);
  border-radius: 8px;
  padding: 26px;
  position: relative;
  overflow: hidden;
}

.hero-panel::before,
.subhero-card::before,
.checkout-panel::before,
.thank-you-card::before {
  content: "";
  display: block;
  height: 5px;
  margin: -26px -26px 20px;
  background: linear-gradient(90deg, var(--orange), var(--gold), var(--teal), var(--blue));
}

.hero-panel img.ortho-illus {
  width: 100%;
  min-height: 220px;
  object-fit: contain;
  display: block;
  background: var(--sky);
  border-radius: 8px;
  padding: 18px;
}

.stat-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 10px;
  margin-top: 18px;
}

.stat {
  border: 1px solid var(--line);
  border-radius: 8px;
  padding: 14px;
  background: #f8fbfd;
}

.stat strong {
  display: block;
  font-size: 22px;
}

.stat span {
  color: var(--muted);
  font-size: 12px;
  font-weight: 800;
  text-transform: uppercase;
}

section {
  padding: 78px 0;
}

.section-head {
  display: flex;
  align-items: end;
  justify-content: space-between;
  gap: 24px;
  margin-bottom: 30px;
}

.section-head p {
  color: var(--muted);
  line-height: 1.6;
  max-width: 560px;
}

.band-dark {
  background: var(--navy);
  color: #fff;
}

.band-dark .lead,
.band-dark .section-head p,
.band-dark .card p,
.band-dark .lane p {
  color: #d7e7ef;
}

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

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

.card,
.lane,
.qr-card {
  border: 1px solid var(--line);
  border-radius: 8px;
  background: #fff;
  padding: 24px;
  box-shadow: 0 12px 32px rgba(19, 44, 76, .08);
  position: relative;
  overflow: hidden;
  transition: border-color .2s ease, box-shadow .2s ease, transform .2s ease;
}

.card::before,
.lane::before,
.qr-card::before {
  content: "";
  position: absolute;
  inset: 0 0 auto;
  height: 4px;
  background: linear-gradient(90deg, var(--blue), var(--teal), var(--gold), var(--orange));
}

.card:hover,
.lane:hover,
.qr-card:hover {
  border-color: rgba(105, 185, 216, .68);
  box-shadow: var(--shadow);
  transform: translateY(-3px);
}

.band-dark .card,
.band-dark .lane,
.band-dark .qr-card {
  background: rgba(255, 255, 255, .07);
  border-color: rgba(255, 255, 255, .14);
}

.card p,
.lane p {
  color: var(--muted);
  line-height: 1.6;
}

.card-link {
  color: inherit;
  display: block;
  text-decoration: none;
  transition: transform .18s ease, box-shadow .18s ease;
}

.card-link:hover,
.card-link:focus-visible {
  box-shadow: var(--shadow);
  transform: translateY(-2px);
}

.pill {
  display: inline-flex;
  padding: 6px 9px;
  border-radius: 999px;
  background: var(--sky);
  color: var(--ink);
  font-size: 12px;
  font-weight: 900;
  text-transform: uppercase;
}

.lane {
  min-height: 260px;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
}

.lane-price {
  display: flex;
  align-items: end;
  justify-content: space-between;
  gap: 12px;
  margin-top: 18px;
  border-top: 1px solid var(--line);
  padding-top: 16px;
}

.lane-price strong {
  font-size: 28px;
}

.qr-layout {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(260px, .7fr);
  gap: 22px;
  align-items: start;
}

.qr-layout.single {
  grid-template-columns: minmax(0, 760px);
  justify-content: center;
}

.qr-image {
  width: min(330px, 100%);
  height: auto;
  display: block;
  margin: 0 auto 16px;
  background: #fff;
  border-radius: 8px;
}

.timeline {
  display: grid;
  grid-template-columns: repeat(6, minmax(0, 1fr));
  gap: 12px;
}

.month {
  background: #fff;
  border: 1px solid var(--line);
  border-radius: 8px;
  padding: 18px;
  min-height: 270px;
}

.month strong {
  display: block;
  margin-bottom: 12px;
  color: var(--orange);
  font-size: 13px;
  text-transform: uppercase;
}

.month h3 {
  font-size: 18px;
  margin-bottom: 10px;
}

.month p {
  color: var(--muted);
  font-size: 14px;
  line-height: 1.55;
}

.proposal {
  background: linear-gradient(135deg, #eef9fd 0%, #fff 54%, #fff5ef 100%);
}

.invoice-table {
  width: 100%;
  border-collapse: collapse;
  background: #fff;
  border: 1px solid var(--line);
  border-radius: 8px;
  overflow: hidden;
  box-shadow: var(--shadow);
}

.invoice-table th,
.invoice-table td {
  padding: 15px;
  border-bottom: 1px solid var(--line);
  text-align: left;
  vertical-align: top;
}

.invoice-table th {
  background: var(--ink);
  color: #fff;
  font-size: 12px;
  text-transform: uppercase;
  letter-spacing: .08em;
}

.invoice-table tr:last-child td {
  border-bottom: 0;
}

.note {
  color: var(--muted);
  font-size: 13px;
  line-height: 1.55;
}

.footer {
  background: #101820;
  color: #dcebf2;
  padding: 34px 0;
}

.footer .container {
  display: flex;
  justify-content: space-between;
  gap: 18px;
  flex-wrap: wrap;
}

.subhero {
  position: relative;
  overflow: hidden;
  background: linear-gradient(135deg, #fbfdff 0%, #eef9fd 62%, #fff5ef 100%);
  border-bottom: 1px solid var(--line);
}

.subhero .container {
  min-height: 420px;
  display: grid;
  grid-template-columns: minmax(0, 1.05fr) minmax(280px, .95fr);
  gap: 38px;
  align-items: center;
  padding: 54px 0;
}

.subhero h1 {
  font-size: clamp(38px, 5.4vw, 68px);
}

.subhero-card {
  background: #fff;
  border: 1px solid var(--line);
  border-radius: 8px;
  box-shadow: var(--shadow-strong);
  padding: 26px;
  position: relative;
  overflow: hidden;
}

.subhero-card img {
  width: 100%;
  max-height: 260px;
  object-fit: contain;
  border-radius: 8px;
  background: var(--sky);
  padding: 18px;
}

.page-nav {
  display: flex;
  gap: 10px;
  flex-wrap: wrap;
  margin-top: 24px;
}

.page-nav a {
  border: 1px solid var(--line);
  border-radius: 999px;
  color: var(--ink);
  font-size: 13px;
  font-weight: 900;
  padding: 9px 12px;
  text-decoration: none;
}

.split-panel {
  display: grid;
  grid-template-columns: minmax(0, .8fr) minmax(0, 1.2fr);
  gap: 22px;
  align-items: start;
}

.check-list {
  margin: 16px 0 0;
  padding: 0;
  list-style: none;
}

.check-list li {
  border-top: 1px solid var(--line);
  color: var(--muted);
  line-height: 1.55;
  padding: 12px 0;
}

.route-list {
  display: grid;
  gap: 12px;
}

.route-item {
  border: 1px solid var(--line);
  border-radius: 8px;
  background: #fff;
  display: grid;
  grid-template-columns: 120px minmax(0, 1fr);
  gap: 18px;
  padding: 18px;
}

.route-item strong {
  color: var(--orange);
  text-transform: uppercase;
}

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

.product-card {
  border: 1px solid var(--line);
  border-radius: 8px;
  background: #fff;
  min-height: 310px;
  padding: 24px;
  box-shadow: 0 12px 32px rgba(19, 44, 76, .08);
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  overflow: hidden;
  position: relative;
  transition: border-color .2s ease, box-shadow .2s ease, transform .2s ease;
}

.product-card::before {
  content: "";
  position: absolute;
  inset: 0 0 auto;
  height: 4px;
  background: linear-gradient(90deg, var(--orange), var(--gold), var(--teal));
}

.product-card:hover {
  border-color: rgba(244, 122, 58, .55);
  box-shadow: var(--shadow);
  transform: translateY(-3px);
}

.product-card p {
  color: var(--muted);
  line-height: 1.6;
}

.product-card strong {
  font-size: 30px;
}

.mini-footer-actions {
  border-top: 1px solid var(--line);
  margin-top: 26px;
  padding-top: 22px;
}

.brand-strip {
  align-items: center;
  display: flex;
  gap: 16px;
  flex-wrap: wrap;
}

.brand-strip img {
  background: #fff;
  border: 1px solid var(--line);
  border-radius: 8px;
  height: 54px;
  object-fit: contain;
  padding: 8px;
  width: auto;
}

.workspace-hero {
  position: relative;
  overflow: hidden;
  background:
    repeating-linear-gradient(135deg, rgba(255, 255, 255, .1) 0 1px, transparent 1px 18px),
    linear-gradient(135deg, #07192f 0%, #12375d 58%, #69b9d8 100%);
  color: #fff;
}

.workspace-hero .lead,
.workspace-hero .section-head p,
.workspace-hero .note {
  color: #d9ecf5;
}

.workspace-grid {
  display: grid;
  grid-template-columns: minmax(260px, .8fr) minmax(0, 1.2fr);
  gap: 22px;
  align-items: start;
}

.workspace-panel,
.checkout-panel,
.flyer-stage {
  background: #fff;
  border: 1px solid var(--line);
  border-radius: 8px;
  box-shadow: var(--shadow);
  padding: 24px;
  overflow: hidden;
  position: relative;
}

.checkout-panel {
  display: grid;
  gap: 18px;
}

.checkout-panel .logo-row {
  display: flex;
  gap: 14px;
  align-items: center;
  flex-wrap: wrap;
}

.checkout-panel .logo-row img {
  border: 1px solid var(--line);
  border-radius: 8px;
  height: 56px;
  object-fit: contain;
  padding: 8px;
  width: auto;
}

.pay-methods {
  display: flex;
  gap: 9px;
  flex-wrap: wrap;
}

.pay-methods span {
  border: 1px solid var(--line);
  border-radius: 999px;
  color: var(--ink);
  font-size: 12px;
  font-weight: 900;
  padding: 7px 10px;
  text-transform: uppercase;
}

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

.tool-card {
  background: #fff;
  border: 1px solid var(--line);
  border-radius: 8px;
  display: flex;
  flex-direction: column;
  gap: 12px;
  min-height: 250px;
  padding: 18px;
  overflow: hidden;
  position: relative;
  transition: border-color .2s ease, box-shadow .2s ease, transform .2s ease;
}

.tool-card::before,
.workspace-panel::before {
  content: "";
  position: absolute;
  inset: 0 0 auto;
  height: 4px;
  background: linear-gradient(90deg, var(--blue), var(--teal), var(--gold), var(--orange));
}

.tool-card:hover,
.workspace-panel:hover {
  border-color: rgba(105, 185, 216, .68);
  box-shadow: var(--shadow);
  transform: translateY(-3px);
}

.tool-card p {
  color: var(--muted);
  line-height: 1.55;
}

.tool-card strong {
  font-size: 24px;
}

.edit-grid {
  display: grid;
  gap: 12px;
}

.edit-grid label {
  color: var(--muted);
  display: grid;
  font-size: 13px;
  font-weight: 900;
  gap: 6px;
  text-transform: uppercase;
}

.edit-grid input,
.edit-grid textarea,
.edit-grid select {
  border: 1px solid var(--line);
  border-radius: 6px;
  color: var(--ink);
  font: inherit;
  padding: 12px;
  width: 100%;
}

.edit-grid textarea {
  min-height: 96px;
  resize: vertical;
}

.status-card {
  background: var(--sky);
  border: 1px solid var(--line);
  border-radius: 8px;
  color: var(--ink);
  padding: 16px;
}

.flyer-stage {
  background:
    radial-gradient(circle at 12% 10%, rgba(105, 185, 216, .24), transparent 28%),
    linear-gradient(180deg, #fff, #eef9fd);
}

.flyer100 {
  background: #fff;
  border: 1px solid var(--line);
  border-radius: 8px;
  box-shadow: var(--shadow);
  color: var(--ink);
  margin: 0 auto;
  max-width: 540px;
  min-height: 760px;
  padding: 28px;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
}

.flyer100 img.logo-mark {
  height: 72px;
  object-fit: contain;
  width: fit-content;
  max-width: 100%;
}

.flyer100 h1 {
  font-size: clamp(42px, 8vw, 72px);
}

.flyer100 .qr-image {
  margin: 0;
  width: min(210px, 72vw);
}

.flyer100-bottom {
  align-items: end;
  border-top: 1px solid var(--line);
  display: flex;
  gap: 18px;
  justify-content: space-between;
  padding-top: 20px;
}

.thank-you-card {
  background: #fff;
  border: 1px solid var(--line);
  border-radius: 8px;
  box-shadow: var(--shadow);
  margin: 0 auto;
  max-width: 820px;
  padding: 34px;
  text-align: center;
}

.thank-you-card img {
  max-height: 66px;
  max-width: min(340px, 100%);
  object-fit: contain;
}

.proof-strip,
.conversion-strip,
.workspace-status-grid,
.activation-flow,
.offer-stack,
.handoff-grid {
  display: grid;
  gap: 14px;
}

.proof-strip {
  grid-template-columns: repeat(4, minmax(0, 1fr));
  margin-top: 28px;
}

.proof-pill,
.conversion-step,
.status-tile,
.offer-row,
.handoff-tile {
  background: rgba(255, 255, 255, .88);
  border: 1px solid var(--line);
  border-radius: 8px;
  box-shadow: 0 12px 32px rgba(19, 44, 76, .08);
  padding: 16px;
}

.proof-pill {
  display: grid;
  gap: 6px;
}

.proof-pill strong,
.status-tile strong,
.handoff-tile strong {
  color: var(--ink);
  display: block;
  font-size: 15px;
  margin-bottom: 6px;
}

.proof-pill span,
.status-tile span,
.handoff-tile span,
.conversion-step p,
.offer-row p {
  color: var(--muted);
  font-size: 13px;
  line-height: 1.5;
}

.band-dark .proof-pill,
.workspace-hero .proof-pill {
  background: rgba(255, 255, 255, .1);
  border-color: rgba(255, 255, 255, .2);
}

.band-dark .proof-pill strong,
.workspace-hero .proof-pill strong,
.band-dark .proof-pill span,
.workspace-hero .proof-pill span {
  color: #fff;
}

.audit-board {
  align-items: stretch;
  display: grid;
  grid-template-columns: minmax(260px, .7fr) minmax(0, 1.3fr);
  gap: 18px;
  margin-bottom: 26px;
}

.audit-score {
  background:
    linear-gradient(160deg, rgba(7, 25, 47, .98), rgba(18, 55, 93, .96)),
    repeating-linear-gradient(135deg, rgba(255, 255, 255, .12) 0 1px, transparent 1px 18px);
  border-radius: 8px;
  box-shadow: var(--shadow-strong);
  color: #fff;
  display: grid;
  gap: 18px;
  padding: 26px;
}

.score-ring {
  align-items: center;
  aspect-ratio: 1;
  background:
    conic-gradient(var(--orange) 0 58%, rgba(255, 255, 255, .15) 58% 100%);
  border-radius: 999px;
  display: grid;
  justify-items: center;
  margin: 0 auto;
  max-width: 210px;
  padding: 18px;
  width: 100%;
}

.score-ring > span {
  align-items: center;
  background: #07192f;
  border-radius: 999px;
  display: grid;
  font-size: 46px;
  font-weight: 900;
  height: 100%;
  justify-items: center;
  width: 100%;
}

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

.signal-list article {
  background: #fff;
  border: 1px solid var(--line);
  border-radius: 8px;
  box-shadow: 0 12px 32px rgba(19, 44, 76, .08);
  padding: 18px;
}

.signal-list h3 {
  font-size: 18px;
  margin-bottom: 8px;
}

.signal-list p {
  color: var(--muted);
  line-height: 1.55;
  margin: 0;
}

.conversion-strip {
  grid-template-columns: repeat(5, minmax(0, 1fr));
  margin-top: 26px;
}

.conversion-step {
  position: relative;
}

.conversion-step strong {
  align-items: center;
  background: var(--ink);
  border-radius: 999px;
  color: #fff;
  display: inline-flex;
  height: 34px;
  justify-content: center;
  margin-bottom: 12px;
  width: 34px;
}

.feature-callout,
.route-banner {
  align-items: center;
  background:
    linear-gradient(120deg, rgba(7, 25, 47, .98), rgba(18, 55, 93, .95) 52%, rgba(43, 179, 163, .9)),
    repeating-linear-gradient(135deg, rgba(255, 255, 255, .12) 0 1px, transparent 1px 18px);
  border-radius: 8px;
  box-shadow: var(--shadow-strong);
  color: #fff;
  display: grid;
  gap: 18px;
  grid-template-columns: minmax(0, 1.25fr) minmax(260px, .75fr);
  margin-top: 28px;
  padding: 28px;
}

.feature-callout p,
.route-banner p {
  color: #e9f5fa;
  line-height: 1.6;
  margin: 0;
}

.demo-browser {
  background: #fff;
  border: 1px solid var(--line);
  border-radius: 8px;
  box-shadow: var(--shadow);
  overflow: hidden;
}

.screen-bar {
  align-items: center;
  background: #eef6fa;
  border-bottom: 1px solid var(--line);
  display: flex;
  gap: 6px;
  padding: 10px;
}

.screen-dot {
  background: var(--orange);
  border-radius: 999px;
  height: 10px;
  width: 10px;
}

.screen-dot:nth-child(2) {
  background: var(--gold);
}

.screen-dot:nth-child(3) {
  background: var(--teal);
}

.screen-flow {
  display: grid;
  gap: 10px;
  padding: 16px;
}

.screen-flow span {
  background: #f8fbfd;
  border: 1px solid var(--line);
  border-radius: 8px;
  color: var(--ink);
  font-weight: 900;
  padding: 12px;
}

.workspace-status-grid {
  grid-template-columns: repeat(4, minmax(0, 1fr));
  margin-bottom: 22px;
}

.status-tile {
  position: relative;
}

.status-tile::before {
  content: "";
  background: var(--green);
  border-radius: 999px;
  box-shadow: var(--ring);
  display: block;
  height: 10px;
  margin-bottom: 12px;
  width: 10px;
}

.activation-flow {
  grid-template-columns: repeat(5, minmax(0, 1fr));
  margin-bottom: 22px;
}

.step-node {
  background: #fff;
  border: 1px solid var(--line);
  border-radius: 8px;
  box-shadow: 0 12px 32px rgba(19, 44, 76, .08);
  min-height: 132px;
  padding: 16px;
}

.step-node strong {
  color: var(--orange);
  display: block;
  font-size: 13px;
  margin-bottom: 10px;
  text-transform: uppercase;
}

.step-node p {
  color: var(--muted);
  line-height: 1.5;
  margin: 0;
}

.offer-stack {
  grid-template-columns: repeat(3, minmax(0, 1fr));
  margin-top: 22px;
}

.offer-row {
  border-left: 5px solid var(--orange);
}

.offer-row h3 {
  margin-bottom: 8px;
}

.flyer100 {
  background:
    linear-gradient(180deg, rgba(255, 255, 255, .96), rgba(255, 255, 255, .9)),
    repeating-linear-gradient(135deg, rgba(105, 185, 216, .18) 0 1px, transparent 1px 20px);
  border: 10px solid #fff;
  outline: 1px solid var(--line);
}

.flyer100 .pill {
  background: var(--ink);
  color: #fff;
}

.flyer-meta {
  border-left: 5px solid var(--orange);
  color: var(--muted);
  line-height: 1.55;
  padding-left: 14px;
}

.thank-you-card {
  position: relative;
  overflow: hidden;
}

.handoff-grid {
  grid-template-columns: repeat(3, minmax(0, 1fr));
  margin: 26px 0;
  text-align: left;
}

.decision-board {
  background: #fff;
  border: 1px solid var(--line);
  border-radius: 8px;
  box-shadow: var(--shadow-strong);
  display: grid;
  gap: 18px;
  margin-top: 28px;
  padding: 24px;
}

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

.decision-card {
  border: 1px solid var(--line);
  border-radius: 8px;
  padding: 18px;
}

.decision-card.keep {
  background: linear-gradient(180deg, rgba(223, 247, 237, .75), #fff);
}

.decision-card.remove {
  background: linear-gradient(180deg, rgba(247, 215, 208, .68), #fff);
}

.decision-card.add {
  background: linear-gradient(180deg, rgba(223, 243, 251, .8), #fff);
}

.decision-card h3 {
  margin-bottom: 10px;
}

.decision-card ul {
  margin: 0;
  padding-left: 18px;
}

.decision-card li {
  color: var(--muted);
  line-height: 1.55;
  margin: 8px 0;
}

.launch-priority {
  align-items: center;
  background:
    linear-gradient(120deg, rgba(7, 25, 47, .98), rgba(18, 55, 93, .95) 55%, rgba(244, 122, 58, .88)),
    repeating-linear-gradient(135deg, rgba(255, 255, 255, .12) 0 1px, transparent 1px 18px);
  border-radius: 8px;
  color: #fff;
  display: grid;
  gap: 14px;
  grid-template-columns: minmax(0, 1fr) auto;
  padding: 20px;
}

.launch-priority p {
  color: #e9f5fa;
  line-height: 1.55;
  margin: 0;
}

.launch-priority strong {
  display: block;
  font-size: clamp(28px, 6vw, 52px);
  line-height: 1;
}

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

@media (max-width: 940px) {
  .hero .container,
  .subhero .container,
  .qr-layout,
  .grid,
  .grid.two,
  .split-panel,
  .product-grid,
  .workspace-grid,
  .tool-grid,
  .audit-board,
  .feature-callout,
  .route-banner,
  .offer-stack,
  .handoff-grid {
    grid-template-columns: 1fr;
  }

  .proof-strip,
  .workspace-status-grid,
  .activation-flow,
  .conversion-strip,
  .decision-grid,
  .launch-priority {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

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

  .nav .container {
    align-items: flex-start;
    flex-direction: column;
    padding: 14px 0;
  }

  .navlinks {
    width: 100%;
    overflow-x: auto;
    padding-bottom: 5px;
  }

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

  .flyer100-bottom {
    align-items: start;
    flex-direction: column;
  }
}

@media (max-width: 620px) {
  .topbar .container {
    font-size: 12px;
  }

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

  .stat-grid,
  .timeline {
    grid-template-columns: 1fr;
  }

  .invoice-table {
    font-size: 14px;
  }

  .proof-strip,
  .workspace-status-grid,
  .activation-flow,
  .conversion-strip,
  .decision-grid,
  .launch-priority {
    grid-template-columns: 1fr;
  }
}
