:root {
  --page: #f6f7f4;
  --paper: #ffffff;
  --ink: #1f2523;
  --muted: #5d6762;
  --line: #d9ded8;
  --soft-line: #e8ece7;
  --accent: #31463d;
  --accent-dark: #23342d;
  --accent-soft: #edf1eb;
  --focus: #7b5c18;
  --max: 72rem;
  --measure: 68ch;
}

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

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  overflow-x: clip;
  background: var(--page);
  color: var(--ink);
  font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, Helvetica, Arial, sans-serif;
  font-size: 1rem;
  line-height: 1.62;
  text-rendering: optimizeLegibility;
}

body::before {
  content: "";
  position: fixed;
  inset: 0;
  z-index: 5;
  pointer-events: none;
  border-top: 4px solid var(--accent);
}

.skip-link {
  position: absolute;
  left: 1rem;
  top: 0.75rem;
  z-index: 20;
  transform: translateY(-180%);
  padding: 0.65rem 0.85rem;
  background: var(--accent-dark);
  color: #ffffff;
  font-weight: 700;
  text-decoration: none;
}

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

a {
  color: inherit;
  text-decoration-color: color-mix(in srgb, currentColor 42%, transparent);
  text-underline-offset: 0.22em;
}

a:hover {
  text-decoration-color: currentColor;
}

a:focus-visible,
.button:focus-visible,
.mobile-cta:focus-visible {
  outline: 3px solid var(--focus);
  outline-offset: 4px;
}

h1,
h2,
h3,
p {
  margin-top: 0;
  overflow-wrap: break-word;
}

h1,
h2,
h3 {
  font-family: Georgia, "Times New Roman", Times, serif;
  font-weight: 600;
  line-height: 1.12;
  letter-spacing: 0;
}

h1 {
  max-width: 11em;
  margin-bottom: 1.45rem;
  font-size: clamp(2.35rem, 6vw, 4.9rem);
}

h2 {
  max-width: 15em;
  margin-bottom: 0;
  font-size: clamp(1.65rem, 4vw, 2.75rem);
}

h3 {
  margin-bottom: 0.72rem;
  font-size: 1.2rem;
}

p {
  max-width: var(--measure);
}

.wrap {
  width: min(calc(100% - 2rem), var(--max));
  margin-inline: auto;
}

.narrow {
  max-width: calc(var(--measure) + 2rem);
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 10;
  border-bottom: 1px solid var(--line);
  background: color-mix(in srgb, var(--paper) 94%, transparent);
}

.header-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  min-height: 4.75rem;
  padding-block: 1rem;
}

.service-name {
  font-family: Georgia, "Times New Roman", Times, serif;
  font-size: 1.15rem;
  font-weight: 600;
  text-decoration: none;
  white-space: nowrap;
}

.nav,
.footer-links {
  display: flex;
  flex-wrap: wrap;
  gap: 0.55rem 1.15rem;
  align-items: center;
  color: var(--muted);
  font-size: 0.92rem;
}

.nav a,
.footer-links a {
  text-decoration-thickness: 1px;
}

.hero {
  position: relative;
  isolation: isolate;
  overflow: hidden;
  border-bottom: 1px solid var(--line);
  background: var(--paper);
}

.hero::before,
.hero::after {
  content: "";
  position: absolute;
  inset: 0;
}

.hero::before {
  z-index: -2;
  background: url("assets/hero-marketplace-portal.jpg") center right / cover no-repeat;
  opacity: 0.88;
}

.hero::after {
  z-index: -1;
  background: rgba(255, 255, 255, 0.76);
}

.hero-inner {
  position: relative;
  z-index: 1;
  padding-block: clamp(4.5rem, 11vw, 9rem) clamp(3rem, 7vw, 5rem);
}

.audience-label {
  display: block;
  width: fit-content;
  max-width: 100%;
  margin-bottom: 1.15rem;
  padding: 0.35rem 0;
  border-bottom: 1px solid var(--accent);
  color: var(--accent);
  font-size: 0.82rem;
  font-weight: 750;
  letter-spacing: 0.07em;
  text-transform: uppercase;
}

.lead {
  margin-bottom: 2rem;
  color: var(--muted);
  font-size: clamp(1.08rem, 2.5vw, 1.3rem);
  line-height: 1.55;
}

.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 3rem;
  max-width: 100%;
  padding: 0.78rem 1rem;
  border: 1px solid var(--accent-dark);
  background: var(--accent);
  color: #ffffff;
  font: inherit;
  font-weight: 650;
  line-height: 1.25;
  text-align: center;
  text-decoration: none;
  cursor: pointer;
}

.button:hover {
  background: var(--accent-dark);
}

.button:disabled {
  cursor: not-allowed;
  opacity: 0.7;
}

.secondary-button {
  background: transparent;
  color: var(--accent);
}

.secondary-button:hover {
  background: var(--accent-soft);
}

.thesis-line {
  margin: clamp(2.75rem, 7vw, 4.75rem) 0 0;
  color: color-mix(in srgb, var(--accent) 52%, var(--paper));
  font-family: Georgia, "Times New Roman", Times, serif;
  font-size: clamp(2rem, 6vw, 5rem);
  line-height: 1;
}

.cta-note {
  margin-top: 0.75rem;
  margin-bottom: 0;
  color: var(--muted);
  font-size: 0.9rem;
}

.marketplace-strip {
  border-bottom: 1px solid var(--line);
  background: var(--page);
}

.marketplace-strip-inner {
  display: grid;
  grid-template-columns: minmax(0, 0.78fr) minmax(18rem, 1.22fr);
  gap: clamp(1.5rem, 5vw, 4rem);
  align-items: start;
  padding-block: clamp(2rem, 5vw, 3.5rem);
}

.marketplace-strip h2 {
  max-width: 12em;
  font-size: clamp(1.45rem, 3vw, 2.15rem);
}

.marketplace-copy p {
  margin-bottom: 0;
  color: var(--muted);
}

.section {
  padding-block: clamp(3.75rem, 8vw, 6.5rem);
  border-bottom: 1px solid var(--line);
}

.example-section {
  background: #eef2ed;
}

.example-layout,
.fit-layout {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(18rem, 0.78fr);
  gap: clamp(2rem, 7vw, 5rem);
  align-items: start;
}

.example-layout p,
.fit-copy p {
  color: var(--muted);
}

.example-layout strong,
.fit-copy strong {
  color: var(--ink);
}

.finding-card {
  border: 1px solid var(--line);
  border-radius: 8px;
  background: var(--paper);
}

.finding-row,
.finding-result {
  display: flex;
  justify-content: space-between;
  gap: 1rem;
  padding: 1rem 1.1rem;
  border-bottom: 1px solid var(--soft-line);
}

.finding-row span,
.finding-result span {
  color: var(--muted);
}

.finding-row strong,
.finding-result strong {
  white-space: nowrap;
}

.finding-result {
  display: grid;
  gap: 0.35rem;
  padding: 1.25rem 1.1rem;
  background: var(--accent);
  color: #ffffff;
}

.finding-result span {
  color: color-mix(in srgb, #ffffff 70%, var(--accent));
}

.finding-result strong {
  color: #ffffff;
  font-family: Georgia, "Times New Roman", Times, serif;
  font-size: clamp(2rem, 6vw, 3.5rem);
  line-height: 1;
}

.finding-card p {
  margin: 0;
  padding: 1rem 1.1rem 1.15rem;
  color: var(--muted);
  font-size: 0.94rem;
}

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

.section-label {
  margin-bottom: 1rem;
  color: var(--accent);
  font-size: 0.78rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.intro {
  margin-top: 1.3rem;
  margin-bottom: 2rem;
  color: var(--muted);
  font-size: 1.08rem;
}

.audience-section {
  background: var(--page);
}

.audience-layout {
  display: grid;
  grid-template-columns: minmax(0, 0.95fr) minmax(18rem, 1.15fr);
  gap: clamp(2rem, 7vw, 5rem);
  align-items: start;
}

.audience-copy p {
  margin-bottom: 1rem;
  color: var(--muted);
}

.fit-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(min(100%, 18rem), 1fr));
  gap: 0;
  margin-top: clamp(2rem, 5vw, 3rem);
  border-top: 1px solid var(--line);
  border-left: 1px solid var(--line);
  background: var(--paper);
}

.fit-grid article {
  min-height: 11rem;
  padding: clamp(1.2rem, 3.5vw, 1.75rem);
  border-right: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
}

.fit-grid span {
  display: block;
  margin-bottom: 0.65rem;
  color: var(--accent);
  font-size: 0.82rem;
  font-weight: 800;
  letter-spacing: 0.07em;
  text-transform: uppercase;
}

.fit-grid p {
  margin-bottom: 0;
  color: var(--muted);
}

.operations-grid article {
  position: relative;
  padding-top: 3.25rem;
}

.operations-grid article::before {
  content: "";
  position: absolute;
  left: 1.25rem;
  top: 1.25rem;
  width: 2.3rem;
  height: 0.26rem;
  background: var(--accent);
}

.operations-grid strong {
  display: block;
  margin-bottom: 0.65rem;
  font-family: Georgia, "Times New Roman", Times, serif;
  font-size: 1.1rem;
  line-height: 1.2;
}

.waterfall-layout {
  display: grid;
  grid-template-columns: minmax(14rem, 0.38fr) minmax(0, 1fr);
  gap: clamp(1.25rem, 4vw, 2.5rem);
  align-items: start;
}

.waterfall-summary {
  position: sticky;
  top: 6.25rem;
  padding: 1.25rem;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: var(--accent);
  color: #ffffff;
}

.waterfall-summary span,
.waterfall-summary small {
  display: block;
  color: color-mix(in srgb, #ffffff 72%, var(--accent));
}

.waterfall-summary span {
  margin-bottom: 1rem;
  font-size: 0.76rem;
  font-weight: 800;
  letter-spacing: 0.07em;
  text-transform: uppercase;
}

.waterfall-summary strong {
  display: block;
  font-family: Georgia, "Times New Roman", Times, serif;
  font-size: clamp(2.1rem, 6vw, 3.7rem);
  line-height: 1;
}

.waterfall-summary i {
  display: block;
  width: 1px;
  height: 4.5rem;
  margin: 0.85rem 0 0.85rem 0.55rem;
  background: color-mix(in srgb, #ffffff 36%, var(--accent));
}

.waterfall-summary small {
  margin-top: 1.2rem;
  line-height: 1.45;
}

.waterfall {
  max-width: none;
  margin-top: 0;
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
  background: var(--paper);
}

.waterfall-row {
  display: grid;
  grid-template-columns: minmax(12rem, 1.35fr) 5.8rem minmax(8rem, 1fr);
  gap: 0.85rem;
  align-items: center;
  min-height: 2.55rem;
  padding: 0.5rem 0.75rem;
  border-bottom: 1px solid var(--soft-line);
  font-variant-numeric: tabular-nums;
}

.waterfall-row:last-child {
  border-bottom: 0;
}

.wf-label {
  font-weight: 560;
}

.wf-value {
  color: var(--muted);
  text-align: right;
  white-space: nowrap;
}

.wf-bar {
  display: block;
  width: var(--size);
  min-width: 0.55rem;
  height: 0.82rem;
  background: var(--accent);
}

.muted-bar {
  background: color-mix(in srgb, var(--accent) 42%, var(--paper));
}

.subtotal {
  background: #fbfcfa;
}

.subtotal .wf-label,
.subtotal .wf-value {
  color: var(--ink);
  font-weight: 700;
}

.final-row {
  min-height: 3.1rem;
  background: var(--accent-soft);
}

.final-row .wf-label,
.final-row .wf-value {
  color: var(--accent-dark);
  font-weight: 800;
}

.final-bar {
  height: 1.1rem;
  border: 2px solid var(--accent-dark);
  background: var(--accent-dark);
}

.small-note,
.method-note,
.closing-line {
  margin-top: 1.1rem;
  margin-bottom: 0;
  color: var(--muted);
  font-size: 0.92rem;
}

.closing-line {
  max-width: var(--measure);
  padding-left: 1rem;
  border-left: 3px solid var(--accent);
  color: var(--ink);
  font-size: 1rem;
}

.text-grid,
.proof-points {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(min(100%, 18rem), 1fr));
  gap: 0;
  margin-top: clamp(2rem, 5vw, 3rem);
  border-top: 1px solid var(--line);
  border-left: 1px solid var(--line);
}

.text-grid article,
.proof-points article {
  min-height: 15rem;
  padding: clamp(1.25rem, 4vw, 2rem);
  border-right: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
  background: var(--paper);
}

.text-grid p,
.proof-points p {
  margin-bottom: 0;
  color: var(--muted);
}

.difference-section {
  background: var(--accent);
  color: #ffffff;
}

.difference-section .section-label,
.difference-section p {
  color: color-mix(in srgb, #ffffff 78%, var(--accent));
}

.difference-layout {
  display: grid;
  grid-template-columns: minmax(0, 0.9fr) minmax(18rem, 1.25fr);
  gap: clamp(2rem, 7vw, 5rem);
  align-items: start;
}

.difference-copy p {
  margin-bottom: 1rem;
}

.difference-copy .standfirst {
  color: #ffffff;
  font-size: 1.18rem;
  font-weight: 700;
}

.proof-points {
  margin-top: clamp(2.25rem, 6vw, 4rem);
  border-color: color-mix(in srgb, #ffffff 22%, var(--accent));
}

.proof-points article {
  border-color: color-mix(in srgb, #ffffff 22%, var(--accent));
  background: color-mix(in srgb, #ffffff 7%, var(--accent));
}

.proof-points h3,
.proof-points p {
  color: #ffffff;
}

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

.method-list {
  display: grid;
  gap: 0;
  max-width: var(--measure);
  margin: clamp(2rem, 5vw, 3rem) 0 0;
  padding: 0;
  list-style: none;
  border-top: 1px solid var(--line);
}

.method-list li {
  display: grid;
  grid-template-columns: 3.5rem 1fr;
  gap: 1rem;
  padding-block: 1.35rem;
  border-bottom: 1px solid var(--line);
}

.method-list p {
  margin-bottom: 0;
}

.step-number {
  color: var(--accent);
  font-family: Georgia, "Times New Roman", Times, serif;
  font-size: 1.08rem;
  font-weight: 700;
}

.no-list {
  max-width: calc(var(--measure) + 2rem);
}

.no-list h2 {
  margin-bottom: 2rem;
}

.no-list p:not(.section-label) {
  margin-bottom: 0;
  padding-block: 1rem;
  border-top: 1px solid var(--line);
  color: var(--muted);
}

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

.fit-section {
  background: #f1f3ef;
}

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

.faq-list {
  max-width: calc(var(--measure) + 2rem);
  margin-top: clamp(2rem, 5vw, 3rem);
  border-top: 1px solid var(--line);
}

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

.faq-list summary {
  display: grid;
  grid-template-columns: 1fr auto;
  gap: 1rem;
  align-items: center;
  padding-block: 1.2rem;
  cursor: pointer;
  list-style: none;
}

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

.faq-list summary::after {
  content: "+";
  color: var(--accent);
  font-family: Georgia, "Times New Roman", Times, serif;
  font-size: 1.45rem;
  line-height: 1;
}

.faq-list details[open] summary::after {
  content: "−";
}

.faq-list h3 {
  margin-bottom: 0;
  font-size: 1.12rem;
}

.faq-list p {
  margin-bottom: 0;
  padding: 0 0 1.25rem;
  color: var(--muted);
}

.contact-dialog {
  width: min(calc(100% - 2rem), 46rem);
  max-height: min(90vh, 54rem);
  padding: 0;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: var(--paper);
  color: var(--ink);
}

.contact-dialog::backdrop {
  background: color-mix(in srgb, var(--ink) 55%, transparent);
}

.contact-modal {
  display: grid;
  gap: 1.1rem;
  padding: clamp(1.25rem, 4vw, 2rem);
}

.modal-head {
  display: grid;
  grid-template-columns: 1fr auto;
  gap: 1rem;
  align-items: start;
}

.modal-head h2 {
  font-size: clamp(1.55rem, 4vw, 2.2rem);
}

.icon-close {
  width: 2.25rem;
  height: 2.25rem;
  border: 1px solid var(--line);
  background: var(--paper);
  color: var(--ink);
  font: inherit;
  font-size: 1.3rem;
  cursor: pointer;
}

.icon-close:hover {
  background: var(--accent-soft);
}

.modal-intro {
  margin-bottom: 0;
  color: var(--muted);
}

.form-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(min(100%, 15rem), 1fr));
  gap: 1rem;
}

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

.optional-details summary {
  padding-block: 0.8rem;
  color: var(--accent);
  font-weight: 700;
  cursor: pointer;
}

.optional-fields {
  display: grid;
  gap: 1rem;
  padding-bottom: 1rem;
}

.contact-modal label {
  display: grid;
  gap: 0.4rem;
  color: var(--ink);
  font-weight: 650;
}

.contact-modal input,
.contact-modal select,
.contact-modal textarea {
  width: 100%;
  border: 1px solid var(--line);
  border-radius: 0;
  padding: 0.78rem 0.85rem;
  background: #ffffff;
  color: var(--ink);
  font: inherit;
}

.contact-modal textarea {
  resize: vertical;
}

.contact-modal input:focus,
.contact-modal select:focus,
.contact-modal textarea:focus,
.icon-close:focus-visible {
  outline: 3px solid var(--focus);
  outline-offset: 2px;
}

.hp-field {
  position: absolute;
  left: -999rem;
}

.privacy-consent {
  display: grid;
  grid-template-columns: auto 1fr;
  gap: 0.65rem;
  align-items: start;
  font-weight: 600;
}

.privacy-consent input {
  width: auto;
  margin-top: 0.35rem;
}

.consent-note {
  margin-top: -0.55rem;
  margin-bottom: 0;
  color: var(--muted);
  font-size: 0.86rem;
  line-height: 1.45;
}

.form-status {
  min-height: 1.5rem;
  margin-bottom: 0;
  color: var(--muted);
  font-size: 0.94rem;
}

.modal-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 0.8rem;
  justify-content: flex-end;
}

.revision-layout {
  display: grid;
  grid-template-columns: minmax(0, 0.9fr) minmax(18rem, 1.1fr);
  gap: clamp(2rem, 7vw, 5rem);
  align-items: start;
}

.revision-copy p {
  margin-bottom: 1rem;
}

.catalog-page {
  background: var(--paper);
}

.catalog-content {
  max-width: calc(var(--measure) + 2rem);
}

.catalog-hero {
  padding-block: clamp(4rem, 9vw, 7rem) clamp(2.5rem, 6vw, 4rem);
}

.catalog-hero h1 {
  max-width: 12em;
}

.catalog-index {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(min(100%, 13rem), 1fr));
  gap: 0;
  margin-bottom: clamp(3rem, 7vw, 5rem);
  border-top: 1px solid var(--line);
  border-left: 1px solid var(--line);
}

.catalog-index a {
  min-height: 3.5rem;
  padding: 0.85rem 1rem;
  border-right: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
  background: var(--page);
  color: var(--ink);
  font-weight: 650;
  text-decoration: none;
}

.catalog-index a:hover {
  background: var(--accent-soft);
}

.catalog-section {
  padding-block: clamp(2.5rem, 6vw, 4rem);
  border-top: 1px solid var(--line);
}

.catalog-section h2 {
  margin-bottom: 1.5rem;
}

.catalog-section > p {
  color: var(--muted);
}

.leak-item {
  padding-block: 1.35rem;
  border-top: 1px solid var(--soft-line);
}

.leak-item h3 {
  max-width: var(--measure);
  font-size: 1.16rem;
}

.leak-item p {
  margin-bottom: 0;
  color: var(--muted);
}

.leak-tag {
  display: inline-block;
  padding: 0.08rem 0.42rem;
  border: 1px solid color-mix(in srgb, var(--accent) 44%, var(--line));
  color: var(--accent-dark);
  font-size: 0.86em;
  font-weight: 750;
  line-height: 1.35;
  vertical-align: baseline;
}

.pending {
  font-weight: 700;
}

.site-footer {
  padding-block: 2rem;
  color: var(--muted);
  font-size: 0.9rem;
}

.mobile-cta {
  position: fixed;
  left: 1rem;
  right: 1rem;
  bottom: 1rem;
  z-index: 12;
  display: none;
  min-height: 3rem;
  border: 1px solid var(--accent-dark);
  background: var(--accent);
  color: #ffffff;
  font: inherit;
  font-weight: 700;
  box-shadow: 0 0.75rem 1.8rem rgba(31, 37, 35, 0.18);
  cursor: pointer;
}

.footer-inner {
  display: grid;
  gap: 0.9rem;
}

.footer-inner p {
  margin-bottom: 0;
}

.legal-page {
  background: var(--paper);
}

.legal-content {
  max-width: calc(var(--measure) + 2rem);
  padding-block: clamp(3.5rem, 10vw, 6rem);
}

.legal-content h1 {
  max-width: var(--measure);
  margin-bottom: 2.5rem;
  font-size: clamp(2.1rem, 6vw, 3.6rem);
}

.legal-content section {
  padding-block: 1.4rem;
  border-top: 1px solid var(--line);
}

.legal-content h2 {
  margin-bottom: 0.85rem;
  font-size: 1.35rem;
}

.legal-content p {
  margin-bottom: 0.65rem;
  color: var(--muted);
}

.back-link {
  margin-top: 2rem;
}

@media (max-width: 50rem) {
  .header-inner,
  .example-layout,
  .fit-layout,
  .audience-layout,
  .marketplace-strip-inner,
  .difference-layout,
  .revision-layout {
    display: grid;
    grid-template-columns: 1fr;
    align-items: start;
  }

  .waterfall-row {
    grid-template-columns: minmax(0, 1fr) 4.6rem;
    gap: 0.55rem 0.8rem;
  }

  .wf-bar {
    grid-column: 1 / -1;
  }

  .method-list li {
    grid-template-columns: 2.75rem 1fr;
  }

  .waterfall-layout {
    grid-template-columns: 1fr;
  }

  .waterfall-summary {
    position: static;
  }

}

@media (max-width: 32rem) {
  .wrap {
    width: min(calc(100% - 1.5rem), var(--max));
  }

  .header-inner {
    gap: 0.65rem;
    min-height: 5.8rem;
  }

  .nav {
    flex-wrap: nowrap;
    max-width: 100%;
    overflow-x: auto;
    padding-bottom: 0.15rem;
  }

  .nav a {
    white-space: nowrap;
  }

  h1 {
    max-width: 100%;
    font-size: clamp(1.9rem, 8.6vw, 2.25rem);
    line-height: 1.08;
  }

  .audience-label {
    max-width: 100%;
    font-size: 0.74rem;
    overflow-wrap: anywhere;
  }

  .lead {
    font-size: 1rem;
  }

  .thesis-line {
    font-size: clamp(1.8rem, 8vw, 2.35rem);
  }

  .hero::before {
    background-position: 58% 50%;
    opacity: 0.7;
  }

  .hero::after {
    background: rgba(255, 255, 255, 0.86);
  }

  .modal-actions {
    justify-content: stretch;
  }

  .modal-actions .button {
    width: 100%;
  }

  .mobile-cta.is-visible {
    display: block;
  }
}
