.marketing-body {
  background:
    linear-gradient(180deg, #f7f8f5 0%, #ffffff 22rem),
    #ffffff;
  color: #1f2933;
}

.marketing-shell {
  min-height: 100vh;
  display: flex;
  flex-direction: column;
}

.marketing-main {
  flex: 1 0 auto;
}

.marketing-container {
  width: min(100%, 72rem);
  margin: 0 auto;
  padding: 0 1.5rem;
}

.marketing-header {
  position: sticky;
  top: 0;
  z-index: 20;
  border-bottom: 1px solid rgba(255, 255, 255, 0.1);
  background: rgba(15, 17, 20, 0.94);
  backdrop-filter: blur(14px);
}

.marketing-header__inner,
.marketing-footer__inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
}

.marketing-header__inner {
  padding: 0;
}

.marketing-brand {
  display: inline-flex;
  align-items: center;
  gap: 0.75rem;
  color: #ffffff;
}

.marketing-brand__logo {
  width: 1.8rem;
  height: 1.8rem;
  flex-shrink: 0;
}

.marketing-brand__wordmark {
  height: 0.9rem;
  width: auto;
  flex-shrink: 0;
  /* The shared wordmark is dark by default; invert it only in the marketing header. */
  filter: brightness(0) invert(1);
}

.marketing-nav,
.marketing-footer__nav,
.marketing-footer__mark {
  display: flex;
  align-items: center;
  gap: 1rem;
  flex-wrap: wrap;
}

.marketing-nav__link {
  position: relative;
  display: inline-flex;
  align-items: center;
  min-height: calc(2rem + 1.26rem);
  font-size: 0.9rem;
  line-height: 1.4;
  color: rgba(255, 255, 255, 0.72);
  transition: color 150ms ease;
}

.marketing-nav__link:hover {
  color: #ffffff;
}

.marketing-nav__link--active {
  color: #ffffff;
}

.marketing-nav__link--active::after {
  content: "";
  position: absolute;
  right: 0;
  bottom: -1px;
  left: 0;
  height: 2px;
  border-radius: 999px;
  background: #facc15;
}

.marketing-nav__link--emphasis {
  min-height: auto;
  border: 1px solid rgba(255, 255, 255, 0.28);
  border-radius: 999px;
  padding: 0.4rem 0.82rem;
  color: #ffffff;
  background: rgba(255, 255, 255, 0.08);
}

.marketing-menu-button {
  display: none;
  align-items: center;
  justify-content: center;
  width: 2.5rem;
  height: 2.5rem;
  border: 0;
  color: #ffffff;
  background: transparent;
}

.marketing-mobile-overlay {
  position: fixed;
  inset: 0;
  z-index: 80;
  background: rgba(17, 24, 39, 0.24);
}

.marketing-mobile-overlay.hidden {
  display: none;
}

.marketing-mobile-drawer {
  position: fixed;
  top: 0;
  right: 0;
  z-index: 90;
  width: min(20rem, calc(100vw - 2rem));
  height: 100%;
  border-left: 1px solid rgba(255, 255, 255, 0.1);
  background: #0f1114;
  box-shadow: -24px 0 60px rgba(17, 24, 39, 0.16);
  transform: translateX(0);
  transition: transform 180ms ease;
}

.marketing-mobile-drawer.translate-x-full {
  transform: translateX(100%);
}

.marketing-drawer__header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  padding: 1rem 1.25rem;
  border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

.marketing-drawer__title {
  color: #ffffff;
  font-size: 0.95rem;
  font-weight: 650;
}

.marketing-drawer__close {
  border: 0;
  padding: 0.42rem 0.74rem;
  color: #ffffff;
  background: transparent;
  font-size: 0.86rem;
}

.marketing-drawer__nav {
  display: grid;
  gap: 0.35rem;
  padding: 1rem;
}

.marketing-drawer__link {
  display: block;
  width: 100%;
  border-radius: 0.9rem;
  padding: 0.78rem 0.9rem;
  color: rgba(255, 255, 255, 0.72);
  font-size: 1rem;
  line-height: 1.35;
  text-align: left;
}

.marketing-drawer__link:hover,
.marketing-drawer__link--active {
  color: #ffffff;
  background: rgba(255, 255, 255, 0.08);
}

.marketing-drawer__link--emphasis {
  margin-top: 0.35rem;
  border: 1px solid rgba(255, 255, 255, 0.24);
  color: #ffffff;
  background: rgba(255, 255, 255, 0.08);
}

.marketing-drawer__form {
  margin: 0;
}

.marketing-footer {
  border-top: 1px solid rgba(255, 255, 255, 0.1);
  margin-top: 5rem;
  background: #0f1114;
}

.marketing-main:has(.marketing-contact) + .marketing-footer {
  margin-top: 0;
}

.marketing-footer__inner {
  padding: 1.25rem 0 2rem;
  color: rgba(255, 255, 255, 0.72);
  font-size: 0.85rem;
}

.marketing-footer__link {
  color: rgba(255, 255, 255, 0.72);
}

.marketing-footer__link:hover {
  color: #ffffff;
}

.marketing-hero,
.marketing-section-grid,
.marketing-page-intro,
.marketing-stack,
.marketing-debug,
.marketing-pricing-grid {
  margin: 0 auto;
  padding: 0 1.5rem;
}

.marketing-section-grid,
.marketing-page-intro,
.marketing-stack,
.marketing-debug,
.marketing-pricing-grid {
  width: min(100%, 72rem);
}

.marketing-hero,
.marketing-page-intro {
  padding-top: 5.5rem;
}

.marketing-hero {
  position: relative;
  display: grid;
  min-height: clamp(34rem, 62vw, 47rem);
  width: 100%;
  grid-template-columns: minmax(0, 72rem);
  align-items: center;
  overflow: hidden;
  background-image: var(--marketing-hero-image);
  background-position: center right;
  background-size: cover;
  background-repeat: no-repeat;
}

.marketing-hero::before {
  content: "";
  position: absolute;
  inset: 0;
  background:
    linear-gradient(90deg, rgba(255, 255, 255, 0.9) 0%, rgba(255, 255, 255, 0.85) 18%, rgba(255, 255, 255, 0.56) 43%, rgba(255, 255, 255, 0.04) 70%),
    linear-gradient(180deg, rgba(255, 255, 255, 0.49) 0%, rgba(255, 255, 255, 0) 28%, rgba(255, 255, 255, 0.2) 100%);
  pointer-events: none;
}

.marketing-hero__copy {
  position: relative;
  z-index: 1;
  width: min(100%, 30rem);
  margin-left: max(1.5rem, calc((100vw - 72rem) / 2 + 1.5rem));
  padding-top: 0;
  transform: translateY(-2.5rem);
}

.marketing-eyebrow,
.marketing-card__eyebrow {
  margin: 0;
  text-transform: uppercase;
  letter-spacing: 0;
  font-size: 0.72rem;
  color: #56636f;
}

.marketing-hero__title,
.marketing-page-title {
  margin: 0.75rem 0 0;
  font-size: clamp(2.2rem, 4vw, 4.5rem);
  line-height: 0.98;
  letter-spacing: 0;
  color: #111827;
}

.marketing-hero__title {
  max-width: 11.5ch;
}

.marketing-hero__lede,
.marketing-page-copy,
.marketing-card__body,
.marketing-bullet-list {
  margin-top: 1.25rem;
  font-size: 1rem;
  line-height: 1.75;
  color: #4b5563;
}

.marketing-hero__lede-break {
  display: none;
}

.marketing-actions {
  display: flex;
  gap: 0.75rem;
  flex-wrap: wrap;
  margin-top: 2rem;
}

.marketing-button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border: 1px solid rgba(17, 24, 39, 0.16);
  border-radius: 999px;
  padding: 0.72rem 1.2rem;
  font-size: 0.95rem;
  color: #111827;
  background: #ffffff;
}

.marketing-button--primary {
  background: #111827;
  color: #f9fafb;
  border-color: #111827;
}

.marketing-panel,
.marketing-card {
  border: 1px solid rgba(17, 24, 39, 0.08);
  border-radius: 1.5rem;
  background: rgba(255, 255, 255, 0.82);
  padding: 1.6rem;
  box-shadow: 0 18px 42px rgba(17, 24, 39, 0.055);
}

.marketing-card--wide {
  width: min(100%, 72rem);
  margin: 2rem auto 0;
  padding-inline: 1.6rem;
}

.marketing-card--edge {
  border-right: 0;
  border-left: 0;
  border-radius: 0;
  box-shadow: none;
}

.marketing-signed-in-panel {
  width: min(100%, 32rem);
  margin-inline: auto;
  text-align: center;
}

.marketing-signed-in-panel .marketing-actions {
  justify-content: center;
}

.marketing-trial-signup .temporary-trial-form__actions {
  justify-content: center;
}

.marketing-features-intro {
  max-width: 52rem;
}

.marketing-features-intro .marketing-page-title {
  max-width: 48rem;
}

.marketing-feature-sections {
  width: min(100%, 72rem);
  margin: 4.5rem auto 0;
  padding: 0 1.5rem;
  display: grid;
  gap: 4.5rem;
}

.marketing-feature-section {
  display: grid;
  grid-template-columns: minmax(0, 0.86fr) minmax(18rem, 1fr);
  gap: clamp(2rem, 5vw, 4rem);
  align-items: start;
}

.marketing-feature-section--reverse {
  grid-template-columns: minmax(18rem, 1fr) minmax(0, 0.86fr);
}

.marketing-feature-section--reverse .marketing-feature-section__copy {
  order: 2;
}

.marketing-feature-section--reverse .marketing-feature-visual {
  order: 1;
}

.marketing-feature-section--review {
  grid-template-columns: minmax(0, 0.82fr) minmax(20rem, 1.08fr);
}

.marketing-feature-section__copy {
  max-width: 32rem;
  padding-top: clamp(2rem, 5vw, 4.5rem);
}

.marketing-feature-section__title {
  margin: 0.55rem 0 0;
  color: #111827;
  font-size: clamp(1.75rem, 2.8vw, 2.65rem);
  line-height: 1.04;
  letter-spacing: -0.02em;
}

.marketing-feature-section__body {
  margin-top: 1rem;
  color: #4b5563;
  font-size: 1rem;
  line-height: 1.75;
}

.marketing-feature-list {
  display: grid;
  gap: 0.65rem;
  margin: 1.35rem 0 0;
  padding: 0;
  list-style: none;
  color: #374151;
  font-size: 0.95rem;
  line-height: 1.45;
}

.marketing-feature-list li {
  display: flex;
  align-items: center;
  gap: 0.65rem;
}

.marketing-feature-list li::before {
  content: "";
  width: 0.42rem;
  height: 0.42rem;
  flex: 0 0 auto;
  border-radius: 999px;
  background: #facc15;
}

.marketing-feature-visual {
  min-height: 22rem;
}

.marketing-product-mockup {
  position: relative;
  overflow: hidden;
  border: 1px solid rgba(17, 24, 39, 0.08);
  border-radius: 1.75rem;
  background: #ffffff;
  box-shadow: 0 18px 42px rgba(17, 24, 39, 0.045);
}

.marketing-product-mockup--image {
  display: flex;
  align-items: center;
  justify-content: center;
  border-color: rgba(17, 24, 39, 0.08);
  background: #ffffff;
}

.marketing-product-mockup--capture-image::after {
  content: "";
  position: absolute;
  right: 0;
  bottom: 0;
  left: 0;
  height: 28%;
  background: #e4e6e7;
}

.marketing-feature-screenshot {
  position: relative;
  z-index: 1;
  display: block;
  width: 100%;
  height: auto;
}

.marketing-mockup-toolbar {
  position: relative;
  z-index: 1;
  display: flex;
  gap: 0.38rem;
  padding: 1.2rem 1.25rem;
  border-bottom: 1px solid rgba(17, 24, 39, 0.06);
}

.marketing-mockup-toolbar span {
  width: 0.55rem;
  height: 0.55rem;
  border-radius: 999px;
  background: #cbd5e1;
}

.marketing-note-editor-card {
  position: relative;
  z-index: 1;
  width: min(78%, 22rem);
  margin: 3rem auto 0;
  border: 1px solid rgba(148, 163, 184, 0.22);
  border-radius: 1.25rem;
  padding: 1.35rem;
  background: rgba(255, 255, 255, 0.96);
  box-shadow: 0 16px 36px rgba(17, 24, 39, 0.055);
}

.marketing-note-editor-title {
  color: #64748b;
  font-size: 0.92rem;
}

.marketing-note-editor-body {
  margin-top: 0.45rem;
  color: #111827;
  font-size: 2rem;
  font-weight: 700;
  line-height: 1.1;
}

.marketing-note-editor-line {
  height: 1px;
  margin-top: 1.4rem;
  background: rgba(148, 163, 184, 0.25);
}

.marketing-note-editor-row {
  display: flex;
  flex-wrap: wrap;
  gap: 0.55rem;
  margin-top: 1rem;
}

.marketing-note-editor-row span {
  border: 1px solid rgba(148, 163, 184, 0.22);
  border-radius: 999px;
  padding: 0.38rem 0.62rem;
  color: #64748b;
  font-size: 0.75rem;
}

.marketing-product-mockup--outline {
  padding: 2rem;
}

.marketing-product-mockup--outline .marketing-outline-header,
.marketing-product-mockup--outline .marketing-outline-list {
  margin-left: clamp(1.5rem, 18%, 5rem);
}

.marketing-outline-header {
  position: relative;
  z-index: 1;
  color: #111827;
  font-size: 1.15rem;
  font-weight: 700;
}

.marketing-outline-list {
  position: relative;
  z-index: 1;
  display: grid;
  gap: 0.75rem;
  margin-top: 1.6rem;
}

.marketing-outline-item {
  display: flex;
  align-items: center;
  gap: 0.6rem;
  min-height: 1.65rem;
  color: #475569;
  font-size: 0.92rem;
}

.marketing-outline-item i {
  width: 0;
  height: 0;
  border-top: 0.32rem solid transparent;
  border-bottom: 0.32rem solid transparent;
  border-left: 0.48rem solid #94a3b8;
}

.marketing-outline-item span {
  width: 2px;
  align-self: stretch;
  border-radius: 999px;
  background: #e5e7eb;
}

.marketing-outline-item--indent {
  padding-left: 1.85rem;
}

.marketing-outline-item--strong {
  color: #111827;
  font-weight: 700;
}

.marketing-outline-item--active {
  color: #111827;
  font-weight: 700;
}

.marketing-outline-item--active span {
  background: #facc15;
}

.marketing-product-mockup--review {
  min-height: 24.5rem;
  padding: clamp(1.2rem, 3vw, 2rem);
}

.marketing-review-card {
  position: relative;
  z-index: 1;
  border: 1px solid rgba(148, 163, 184, 0.22);
  border-radius: 1.25rem;
  background: rgba(255, 255, 255, 0.96);
  padding: 1.35rem;
  box-shadow: 0 14px 34px rgba(17, 24, 39, 0.045);
}

.marketing-review-card p {
  margin: 0;
  color: #111827;
  font-size: 1rem;
  line-height: 1.5;
}

.marketing-review-actions {
  display: flex;
  flex-wrap: wrap;
  justify-content: flex-end;
  gap: 0.55rem;
  margin-top: 1.6rem;
  padding-top: 1.25rem;
  border-top: 1px solid rgba(148, 163, 184, 0.2);
}

.marketing-review-actions span {
  border: 1px solid rgba(148, 163, 184, 0.28);
  border-radius: 0.72rem;
  padding: 0.5rem 0.68rem;
  color: #475569;
  font-size: 0.78rem;
}

.marketing-review-actions__primary {
  border-color: #111827 !important;
  color: #ffffff !important;
  background: #111827;
}

.marketing-review-timeline {
  position: relative;
  z-index: 1;
  display: flex;
  justify-content: space-between;
  margin: 4.25rem auto 0;
  width: min(82%, 25rem);
}

.marketing-review-timeline::before {
  content: "";
  position: absolute;
  top: 50%;
  right: 0;
  left: 0;
  height: 2px;
  background: linear-gradient(90deg, #111827, #111827 63%, #cbd5e1 63%, #cbd5e1);
  transform: translateY(-50%);
}

.marketing-review-timeline span {
  position: relative;
  z-index: 1;
  width: 0.82rem;
  height: 0.82rem;
  border: 2px solid #111827;
  border-radius: 999px;
  background: #ffffff;
}

.marketing-review-timeline__now {
  width: 1.05rem !important;
  height: 1.05rem !important;
  border-color: #facc15 !important;
  background: #facc15 !important;
  box-shadow: 0 0 0 0.4rem rgba(250, 204, 21, 0.16);
}

.marketing-review-labels {
  position: relative;
  z-index: 1;
  display: flex;
  justify-content: space-between;
  width: min(82%, 25rem);
  margin: 1rem auto 0;
  color: #94a3b8;
  font-size: 0.72rem;
}

.marketing-product-mockup--search {
  padding: 2rem;
}

.marketing-search-box,
.marketing-search-result,
.marketing-chat-snippet {
  position: relative;
  z-index: 1;
}

.marketing-search-box {
  border: 1px solid rgba(148, 163, 184, 0.28);
  border-radius: 999px;
  padding: 0.85rem 1rem;
  color: #94a3b8;
  background: #ffffff;
}

.marketing-search-result {
  margin-top: 0.9rem;
  border: 1px solid rgba(148, 163, 184, 0.18);
  border-radius: 1rem;
  padding: 0.9rem 1rem;
  background: rgba(255, 255, 255, 0.94);
}

.marketing-search-result strong,
.marketing-chat-snippet span {
  display: block;
  color: #111827;
  font-size: 0.92rem;
}

.marketing-search-result span,
.marketing-chat-snippet p {
  display: block;
  margin: 0.3rem 0 0;
  color: #64748b;
  font-size: 0.78rem;
  line-height: 1.45;
}

.marketing-chat-snippet {
  margin-top: 1.15rem;
  border-left: 2px solid #facc15;
  padding: 0.75rem 0 0.75rem 1rem;
}

.marketing-product-mockup--tools {
  display: grid;
  place-items: center;
  padding: 2rem;
}

.marketing-tool-grid {
  position: relative;
  z-index: 1;
  display: grid;
  width: min(100%, 24rem);
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 0.75rem;
}

.marketing-tool-grid span {
  border: 1px solid rgba(148, 163, 184, 0.2);
  border-radius: 0.95rem;
  padding: 0.95rem 1rem;
  color: #374151;
  background: rgba(255, 255, 255, 0.94);
  font-size: 0.86rem;
  box-shadow: 0 8px 20px rgba(17, 24, 39, 0.035);
}

@media print {
  /*
   * Safari's PDF renderer can misprint transparent CSS gradients inside
   * clipped rounded panels as black diagonal fills. Keep the screen mockups
   * subtly shaded, but export them as plain white product panels.
   */
  .marketing-product-mockup {
    background: #ffffff !important;
    box-shadow: none;
    print-color-adjust: exact;
    -webkit-print-color-adjust: exact;
  }

  .marketing-feature-visual {
    break-inside: avoid;
    page-break-inside: avoid;
  }

  .marketing-note-editor-card,
  .marketing-review-card,
  .marketing-search-result,
  .marketing-tool-grid span {
    background: #ffffff !important;
    box-shadow: none;
  }
}

/* Why it works: a full-bleed moment of discovery, with a live Retinere note. */
.marketing-why-hero {
  width: 100%;
  overflow: hidden;
}

.marketing-why-hero__stage {
  position: relative;
  min-height: clamp(46rem, 56.25vw, 58rem);
  overflow: hidden;
  background: #050c16;
}

.marketing-why-hero__image {
  position: absolute;
  inset: 0;
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
}

.marketing-why-hero__stage::before {
  content: "";
  position: absolute;
  z-index: 1;
  inset: 0;
  background:
    linear-gradient(90deg, rgba(5, 12, 22, 0.96) 0%, rgba(5, 12, 22, 0.88) 29%, rgba(5, 12, 22, 0.54) 48%, rgba(5, 12, 22, 0.08) 70%),
    linear-gradient(180deg, rgba(5, 12, 22, 0.12) 0%, rgba(5, 12, 22, 0.02) 55%, rgba(5, 12, 22, 0.48) 100%);
  pointer-events: none;
}

.marketing-why-hero__inner {
  position: relative;
  z-index: 1;
  display: grid;
  min-height: inherit;
  width: min(100%, 72rem);
  margin: 0 auto;
  padding: clamp(4rem, 7vw, 6.5rem) 1.5rem 4rem;
  grid-template-columns: 1fr;
  align-items: center;
}

.marketing-why-hero__copy {
  max-width: 39rem;
  transform: translateY(-5%);
}

.marketing-why-hero .marketing-eyebrow {
  color: rgba(255, 255, 255, 0.7);
}

.marketing-why-intro__title {
  max-width: 10ch;
  margin: 0.8rem 0 0;
  color: #ffffff;
  font-size: clamp(2.2rem, 4vw, 4.5rem);
  line-height: 0.98;
  letter-spacing: 0;
}

.marketing-why-prose {
  color: #4b5563;
  font-size: 1rem;
  line-height: 1.78;
}

.marketing-why-prose--lede {
  max-width: 36rem;
  margin-top: 1.75rem;
  color: rgba(255, 255, 255, 0.8);
  font-size: clamp(1rem, 1.55vw, 1.1rem);
}

.marketing-why-prose p {
  margin: 0;
}

.marketing-why-prose p + p {
  margin-top: 0.9rem;
}

.marketing-why-note {
  width: 100%;
  border-top: 1px solid rgba(17, 24, 39, 0.08);
  border-bottom: 1px solid rgba(17, 24, 39, 0.08);
  color: #111827;
  background: linear-gradient(105deg, #ffffff 0%, #f7f8f5 100%);
}

.marketing-why-note__inner {
  display: grid;
  width: min(100%, 72rem);
  margin: 0 auto;
  padding: 1.75rem 1.5rem;
  grid-template-columns: minmax(10rem, 0.34fr) minmax(0, 1.66fr);
  gap: clamp(2rem, 6vw, 5rem);
  align-items: center;
}

.marketing-why-note__header,
.marketing-why-note__meta {
  display: flex;
  align-items: center;
}

.marketing-why-note__header {
  gap: 0.55rem;
  color: #6b7280;
  font-size: 0.68rem;
  font-weight: 700;
  letter-spacing: 0.06em;
  text-transform: uppercase;
}

.marketing-why-note__logo {
  width: 1.2rem;
  height: 1.2rem;
}

.marketing-why-note__content {
  display: grid;
  grid-template-columns: minmax(17rem, 0.9fr) minmax(19rem, 1.1fr);
  gap: clamp(2rem, 5vw, 4.5rem);
  align-items: center;
}

.marketing-why-note h2 {
  margin: 0;
  color: #111827;
  font-size: clamp(1.2rem, 2vw, 1.55rem);
  line-height: 1.15;
  letter-spacing: -0.02em;
}

.marketing-why-note__detail > p {
  margin: 0;
  color: #4b5563;
  font-size: 0.85rem;
  line-height: 1.62;
}

.marketing-why-note__meta {
  justify-content: space-between;
  margin-top: 1.15rem;
  padding-top: 0.85rem;
  border-top: 1px solid rgba(17, 24, 39, 0.09);
  color: #6b7280;
  font-size: 0.68rem;
}

.marketing-why-note__review {
  display: inline-flex;
  align-items: center;
  gap: 0.4rem;
}

.marketing-why-note__review::before {
  content: "";
  width: 0.42rem;
  height: 0.42rem;
  border-radius: 50%;
  background: #ef4444;
}

.marketing-why-content {
  display: grid;
  width: min(100%, 72rem);
  margin: clamp(5rem, 9vw, 8.5rem) auto 0;
  padding: 0 1.5rem;
  gap: clamp(5rem, 10vw, 9rem);
}

.marketing-why-section {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(18rem, 0.82fr);
  gap: clamp(2.5rem, 7vw, 6.5rem);
  align-items: center;
}

.marketing-why-section__copy {
  max-width: 38rem;
}

.marketing-why-section h2,
.marketing-why-loop-section h2,
.marketing-why-ai h2,
.marketing-why-close h2 {
  margin: 0.7rem 0 0;
  color: #111827;
  font-size: clamp(2.15rem, 4.3vw, 4.15rem);
  line-height: 1;
  letter-spacing: -0.035em;
}

.marketing-why-section .marketing-why-prose,
.marketing-why-close .marketing-why-prose {
  margin-top: 1.5rem;
}

.marketing-why-pullquote {
  margin: 0;
  padding: clamp(2rem, 5vw, 4rem);
  border-top: 2px solid #facc15;
  border-bottom: 1px solid rgba(17, 24, 39, 0.08);
  color: #111827;
  background: linear-gradient(135deg, rgba(250, 204, 21, 0.08), rgba(255, 255, 255, 0));
}

.marketing-why-pullquote p {
  margin: 0;
  font-size: clamp(1.7rem, 3.2vw, 2.75rem);
  line-height: 1.12;
  letter-spacing: -0.025em;
}

.marketing-why-forces {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 0.8rem;
  padding: 1.1rem;
  border: 1px solid rgba(17, 24, 39, 0.08);
  border-radius: 2rem;
  background: #f7f7f3;
}

.marketing-why-force {
  display: flex;
  min-height: 10.5rem;
  flex-direction: column;
  justify-content: flex-end;
  border-radius: 1.25rem;
  padding: 1.25rem;
  color: #111827;
  background: #ffffff;
  box-shadow: 0 12px 28px rgba(17, 24, 39, 0.04);
}

.marketing-why-force span {
  margin-bottom: auto;
  color: #9ca3af;
  font-size: 0.72rem;
}

.marketing-why-force strong {
  font-size: 1rem;
}

.marketing-why-force small {
  margin-top: 0.25rem;
  color: #6b7280;
  font-size: 0.75rem;
  line-height: 1.4;
}

.marketing-why-force--repetition {
  background: linear-gradient(145deg, #fff8d8, #ffffff 72%);
}

.marketing-why-force--association {
  background: linear-gradient(145deg, #f1f5f9, #ffffff 72%);
}

.marketing-why-loop-section {
  padding: clamp(2rem, 5vw, 4.5rem);
  border: 1px solid rgba(17, 24, 39, 0.08);
  border-radius: 2rem;
  background: #fbfbf8;
}

.marketing-why-loop-section__intro {
  max-width: 42rem;
}

.marketing-why-loop-section__intro > p:last-child {
  margin: 1.25rem 0 0;
  color: #4b5563;
  line-height: 1.75;
}

.marketing-why-loop {
  display: grid;
  margin: 3rem 0 0;
  padding: 0;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  list-style: none;
}

.marketing-why-loop li {
  position: relative;
  min-height: 12rem;
  padding: 0 1.5rem;
  border-left: 1px solid rgba(17, 24, 39, 0.1);
}

.marketing-why-loop li:first-child {
  padding-left: 0;
  border-left: 0;
}

.marketing-why-loop li:last-child {
  padding-right: 0;
}

.marketing-why-loop__number {
  display: grid;
  width: 2rem;
  height: 2rem;
  margin-bottom: 1.5rem;
  place-items: center;
  border-radius: 50%;
  color: #111827;
  background: #facc15;
  font-size: 0.75rem;
  font-weight: 700;
}

.marketing-why-loop strong {
  color: #111827;
  font-size: 1.05rem;
}

.marketing-why-loop p {
  margin: 0.7rem 0 0;
  color: #6b7280;
  font-size: 0.86rem;
  line-height: 1.6;
}

.marketing-why-emphasis {
  border: 1px solid rgba(17, 24, 39, 0.08);
  border-radius: 1.75rem;
  padding: clamp(2rem, 5vw, 3.5rem);
  background:
    radial-gradient(circle at 100% 0%, rgba(250, 204, 21, 0.22), transparent 42%),
    #ffffff;
  box-shadow: 0 18px 42px rgba(17, 24, 39, 0.045);
}

.marketing-why-emphasis p {
  margin: 0;
  color: #111827;
  font-size: clamp(1.45rem, 2.7vw, 2.25rem);
  line-height: 1.16;
  letter-spacing: -0.025em;
}

.marketing-why-emphasis p + p {
  color: #9a7a00;
}

.marketing-why-emphasis span {
  display: block;
  margin-top: 2rem;
  padding-top: 1.25rem;
  border-top: 1px solid rgba(17, 24, 39, 0.09);
  color: #6b7280;
  font-size: 0.84rem;
  line-height: 1.55;
}

.marketing-why-examples {
  display: grid;
  margin: 0;
  padding: 0;
  gap: 0.65rem;
  list-style: none;
}

.marketing-why-examples li {
  border: 1px solid rgba(17, 24, 39, 0.08);
  border-radius: 999px;
  padding: 0.85rem 1.1rem;
  color: #374151;
  background: #ffffff;
  font-size: 0.86rem;
  box-shadow: 0 8px 20px rgba(17, 24, 39, 0.03);
}

.marketing-why-ai {
  display: grid;
  grid-template-columns: minmax(0, 1.05fr) minmax(21rem, 0.95fr);
  gap: clamp(2.5rem, 7vw, 6rem);
  align-items: center;
  padding: clamp(2.25rem, 6vw, 5rem);
  border-radius: 2rem;
  overflow: hidden;
  background:
    radial-gradient(circle at 88% 18%, rgba(250, 204, 21, 0.17), transparent 28rem),
    #111827;
}

.marketing-why-ai .marketing-card__eyebrow {
  color: #facc15;
}

.marketing-why-ai h2 {
  color: #ffffff;
}

.marketing-why-prose--inverse {
  margin-top: 1.5rem;
  color: rgba(255, 255, 255, 0.72);
}

.marketing-why-ai__visual {
  display: grid;
  margin: 0;
  grid-template-columns: 1fr auto 1fr;
  gap: 0.85rem;
  align-items: center;
}

.marketing-why-ai__column {
  display: grid;
  min-height: 15rem;
  align-content: center;
  gap: 0.8rem;
  border: 1px solid rgba(255, 255, 255, 0.14);
  border-radius: 1.25rem;
  padding: 1.35rem;
  background: rgba(255, 255, 255, 0.06);
}

.marketing-why-ai__column span {
  margin-bottom: 0.5rem;
  color: rgba(255, 255, 255, 0.53);
  font-size: 0.68rem;
  text-transform: uppercase;
}

.marketing-why-ai__column strong {
  color: #ffffff;
  font-size: 0.9rem;
  font-weight: 500;
}

.marketing-why-ai__column--memory {
  border-color: rgba(250, 204, 21, 0.28);
  background: rgba(250, 204, 21, 0.08);
}

.marketing-why-ai__plus {
  color: #facc15;
  font-size: 1.35rem;
}

.marketing-why-ai__visual figcaption {
  grid-column: 1 / -1;
  margin-top: 0.8rem;
  color: rgba(255, 255, 255, 0.78);
  font-size: 0.78rem;
  line-height: 1.55;
  text-align: center;
}

.marketing-why-close {
  max-width: 51rem;
  margin: 0 auto;
  padding-bottom: 1rem;
  text-align: center;
}

.marketing-why-close .marketing-actions {
  justify-content: center;
}

.marketing-card__title {
  margin: 0.45rem 0 0;
  font-size: 1.2rem;
  line-height: 1.25;
  color: #111827;
}

.marketing-price {
  margin-top: 0.75rem;
  font-size: 2rem;
  line-height: 1;
  color: #111827;
}

.marketing-section-grid,
.marketing-pricing-grid {
  display: grid;
  gap: 1rem;
  margin-top: 2rem;
}

.marketing-section-grid {
  grid-template-columns: repeat(3, minmax(0, 1fr));
}

.marketing-review-story {
  width: 100%;
  margin: 5.5rem auto 0;
  display: grid;
  grid-template-columns:
    minmax(0, calc((100vw - 72rem) / 2 + 43.2rem))
    minmax(17rem, 28.8rem)
    minmax(1.5rem, 1fr);
  gap: clamp(2.5rem, 5vw, 4.6rem);
  align-items: center;
}

.marketing-review-story__image-wrap {
  overflow: hidden;
  border-radius: 0 1.5rem 1.5rem 0;
  background: #f3f4f6;
  box-shadow: 0 24px 60px rgba(17, 24, 39, 0.075);
}

.marketing-review-story__image {
  display: block;
  width: 100%;
  height: clamp(22rem, 34vw, 27rem);
  object-fit: cover;
}

.marketing-review-story__copy {
  max-width: 25rem;
  padding-right: 1.5rem;
}

.marketing-review-story__title {
  margin: 0.75rem 0 0;
  color: #111827;
  font-size: clamp(2.1rem, 3.4vw, 3.15rem);
  line-height: 1.05;
  letter-spacing: -0.02em;
}

.marketing-review-story__copy .marketing-page-copy p {
  margin: 0;
}

.marketing-review-story__copy .marketing-page-copy p + p {
  margin-top: 1rem;
}

.marketing-review-story__copy .marketing-button {
  display: flex;
  width: fit-content;
  margin: 1.75rem auto 0;
}

.marketing-pricing-grid {
  grid-template-columns: repeat(2, minmax(0, 1fr));
  margin-top: 2.5rem;
}

.marketing-pricing-footnote {
  width: min(100%, 72rem);
  margin: 0.75rem auto 0;
  padding: 0 1.5rem;
  font-size: 0.78rem;
  line-height: 1.5;
  color: #6b7280;
}

.marketing-stack {
  display: grid;
  gap: 1rem;
  margin-top: 2rem;
}

.marketing-bullet-list {
  padding-left: 1.1rem;
}

.marketing-bullet-list li + li {
  margin-top: 0.45rem;
}

.marketing-internal-note {
  margin-top: 1rem;
  font-size: 0.9rem;
}

.marketing-debug {
  margin-top: 2rem;
}

.marketing-showcase {
  width: min(100%, 72rem);
  margin: 4rem auto 0;
  padding: 0 1.5rem;
  display: grid;
  grid-template-columns: minmax(0, 0.7fr) minmax(0, 1.3fr);
  gap: 2rem;
  align-items: start;
}

.marketing-showcase__copy {
  padding-top: clamp(2rem, 5vw, 4.5rem);
}

.marketing-showcase--mcp {
  margin-top: 6rem;
}

.marketing-showcase--mcp + .marketing-showcase {
  margin-top: 5.5rem;
}

.marketing-showcase--connections .marketing-showcase__copy {
  order: 2;
}

.marketing-showcase--connections .marketing-showcase__media {
  order: 1;
}

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

.marketing-showcase__image-wrap {
  border: 1px solid rgba(17, 24, 39, 0.08);
  border-radius: 1.75rem;
  overflow: hidden;
  background: rgba(255, 255, 255, 0.82);
  box-shadow: 0 24px 60px rgba(17, 24, 39, 0.075);
}

.marketing-showcase__image-wrap--unframed {
  border: 0;
  border-radius: 0;
  overflow: visible;
  background: transparent;
  box-shadow: none;
}

.marketing-showcase__image {
  display: block;
  width: 100%;
  height: auto;
}

.marketing-showcase__image--phone {
  width: 50%;
  margin-inline: auto;
  transform: translateX(10%);
}

.marketing-showcase__media {
  display: grid;
  gap: 1.25rem;
}

.marketing-flow {
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto minmax(0, 1fr) auto minmax(0, 1fr);
  align-items: center;
  gap: 0.5rem;
  width: min(100%, 26rem);
  margin: 1.5rem auto 0;
  padding: 0.72rem 0.95rem;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.78);
  border: 1px solid rgba(17, 24, 39, 0.08);
  color: #4b5563;
  font-size: 0.86rem;
  line-height: 1.4;
  text-align: center;
}

.marketing-flow span {
  min-width: 0;
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: nowrap;
}

.marketing-flow span[aria-hidden="true"] {
  color: #9ca3af;
  line-height: 1;
}

.marketing-discussion-story {
  position: relative;
  width: 100%;
  margin: 5.5rem auto 0;
  overflow: hidden;
  background: #111827;
}

.marketing-discussion-story__image {
  display: block;
  width: 100%;
  height: clamp(24rem, 45vw, 34rem);
  object-fit: cover;
}

.marketing-discussion-story__copy {
  position: absolute;
  top: 30%;
  left: clamp(1.5rem, 4vw, 3rem);
  max-width: min(25rem, 42%);
  color: #ffffff;
  text-align: left;
  text-shadow: 0 2px 18px rgba(0, 0, 0, 0.32);
  transform: translateY(calc(-50% - 2.2rem));
}

.marketing-discussion-story__quote {
  margin: 0;
  font-size: clamp(1.35rem, 2.4vw, 2.4rem);
  line-height: 1.06;
  letter-spacing: -0.02em;
}

.marketing-discussion-story__brand {
  margin: 0.85rem 0 0;
}

.marketing-discussion-story__wordmark {
  display: block;
  width: clamp(3.45rem, 5.4vw, 4.8rem);
  height: auto;
  opacity: 0.78;
  filter: invert(1);
}

.marketing-contact {
  width: 100%;
  margin: 4.5rem auto 0;
  border-top: 1px solid rgba(17, 24, 39, 0.08);
  border-bottom: 1px solid rgba(17, 24, 39, 0.08);
  background: linear-gradient(180deg, rgba(248, 250, 252, 0.55), rgba(255, 255, 255, 0));
}

.marketing-contact__panel {
  width: min(100%, 72rem);
  margin: 0 auto;
  padding: 0 1.5rem;
  scroll-margin-top: 5rem;
}

.marketing-contact__summary {
  list-style: none;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  padding: 2.25rem 0;
  cursor: pointer;
}

.marketing-contact__summary::-webkit-details-marker {
  display: none;
}

.marketing-contact__summary-copy {
  min-width: 0;
}

.marketing-contact__title {
  margin-top: 0.45rem;
  font-size: clamp(1.5rem, 2.4vw, 2.35rem);
}

.marketing-contact__lede {
  margin: 0.8rem 0 0;
  color: #374151;
  font-size: 0.98rem;
  line-height: 1.7;
}

.marketing-contact__toggle {
  flex-shrink: 0;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 2.75rem;
  padding: 0.6rem 1rem;
  border-radius: 999px;
  border: 1px solid rgba(17, 24, 39, 0.14);
  background: rgba(255, 255, 255, 0.85);
  color: #111827;
  font-size: 0.92rem;
}

.marketing-contact__toggle-label--open,
.marketing-contact__panel[open] .marketing-contact__toggle-label--closed {
  display: none;
}

.marketing-contact__panel[open] .marketing-contact__toggle-label--open {
  display: inline;
}

.marketing-contact__body {
  display: grid;
  grid-template-columns: minmax(0, 0.8fr) minmax(0, 1.2fr);
  gap: 1.25rem;
  padding: 0 0 2.25rem;
  scroll-margin-top: 5rem;
}

.marketing-contact__form-wrap {
  padding: 1.1rem;
  border-radius: 1.25rem;
  background: rgba(255, 255, 255, 0.9);
  border: 1px solid rgba(17, 24, 39, 0.08);
  box-shadow: 0 18px 42px rgba(17, 24, 39, 0.045);
}

.marketing-contact-form {
  display: grid;
  gap: 1rem;
}

.marketing-contact-form__grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 1rem;
}

.marketing-contact-form__field {
  display: grid;
  gap: 0.45rem;
}

.marketing-contact-form__field label {
  font-size: 0.88rem;
  line-height: 1.4;
  color: #374151;
}

.marketing-contact-form__field input,
.marketing-contact-form__field textarea {
  width: 100%;
  border: 1px solid rgba(17, 24, 39, 0.14);
  border-radius: 1rem;
  padding: 0.82rem 0.95rem;
  background: #ffffff;
  color: #111827;
}

.marketing-contact-form__field textarea {
  resize: vertical;
  min-height: 10rem;
}

.marketing-contact-form__field input:focus,
.marketing-contact-form__field textarea:focus {
  outline: 2px solid rgba(247, 186, 0, 0.35);
  outline-offset: 1px;
  border-color: rgba(17, 24, 39, 0.28);
}

.marketing-contact-form__actions {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  flex-wrap: wrap;
}

.marketing-contact-form__hint {
  margin: 0;
  color: #6b7280;
  font-size: 0.88rem;
  line-height: 1.5;
}

.marketing-contact-form__errors {
  padding: 0.9rem 1rem;
  border-radius: 1rem;
  background: #fff1f2;
  border: 1px solid #fecdd3;
  color: #9f1239;
  font-size: 0.92rem;
}

.marketing-contact-form__errors p {
  margin: 0;
}

.marketing-contact-form__honeypot {
  position: absolute;
  left: -9999px;
  width: 1px;
  height: 1px;
  overflow: hidden;
}

.marketing-coming-soon {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(18rem, 28rem);
  gap: 1.5rem;
  align-items: start;
  padding: 2rem;
  border: 1px solid rgba(17, 24, 39, 0.12);
  border-radius: 1.75rem;
  background:
    linear-gradient(135deg, rgba(255, 255, 255, 0.96), rgba(242, 244, 240, 0.9)),
    linear-gradient(180deg, rgba(17, 24, 39, 0.04), rgba(17, 24, 39, 0));
  box-shadow: 0 24px 60px rgba(17, 24, 39, 0.08);
}

.marketing-coming-soon__title {
  font-size: clamp(2.1rem, 3.4vw, 3.6rem);
}

.marketing-coming-soon__form-wrap {
  padding: 1.1rem;
  border-radius: 1.35rem;
  background: rgba(255, 255, 255, 0.85);
  border: 1px solid rgba(17, 24, 39, 0.08);
}

.marketing-coming-soon__form {
  display: grid;
  gap: 1rem;
}

.legal-document {
  color: #334155;
  font-size: 0.98rem;
  line-height: 1.7;
}

.legal-document h1,
.legal-document h2,
.legal-document h3 {
  color: #0f172a;
  font-weight: 700;
  letter-spacing: 0;
}

.legal-document h1 {
  font-size: 1.55rem;
  margin: 0 0 1rem;
}

.legal-document h2 {
  font-size: 1.2rem;
  margin: 2rem 0 0.75rem;
}

.legal-document h3 {
  font-size: 1rem;
  margin: 1.25rem 0 0.4rem;
}

.legal-document p {
  margin: 0.7rem 0;
}

.legal-document ul {
  margin: 0.75rem 0 1rem 1.25rem;
  padding: 0;
}

.legal-document li {
  margin: 0.3rem 0;
}

.legal-document hr {
  border: 0;
  border-top: 1px solid rgba(148, 163, 184, 0.35);
  margin: 2rem 0;
}

@media (max-width: 960px) {
  .marketing-hero {
    min-height: 34rem;
    background-position: 64% center;
  }

  .marketing-hero::before {
    background:
      linear-gradient(90deg, rgba(255, 255, 255, 0.9) 0%, rgba(255, 255, 255, 0.86) 24%, rgba(255, 255, 255, 0.7) 50%, rgba(255, 255, 255, 0.22) 76%),
      linear-gradient(180deg, rgba(255, 255, 255, 0.54) 0%, rgba(255, 255, 255, 0.07) 38%, rgba(255, 255, 255, 0.27) 100%);
  }

  .marketing-hero__copy {
    width: min(54vw, 24rem);
    transform: translateY(-1.75rem);
  }

  .marketing-hero__title,
  .marketing-why-intro__title {
    font-size: clamp(2.6rem, 6vw, 3.6rem);
  }

  .marketing-why-note__inner {
    grid-template-columns: 1fr;
    gap: 1rem;
  }

  .marketing-hero__lede {
    max-width: 23rem;
  }

  .marketing-hero__lede-break {
    display: block;
  }

  .marketing-review-story {
    grid-template-columns:
      minmax(0, calc(60vw + 1.5rem))
      minmax(17rem, 1fr)
      1.5rem;
    gap: clamp(2rem, 4vw, 3rem);
  }
}

@media (max-width: 768px) {
  .marketing-footer__inner {
    flex-direction: column;
    align-items: flex-start;
  }

  .marketing-nav {
    display: none;
  }

  .marketing-header__inner {
    padding: 0.65rem 0;
  }

  .marketing-menu-button {
    display: inline-flex;
  }

  .marketing-hero {
    grid-template-columns: 1fr;
    min-height: 32rem;
    padding-top: 2.27rem;
    background-position: 70% center;
  }

  .marketing-hero__copy {
    width: min(100%, 21.5rem);
    margin-left: 0;
    padding-top: 0;
    transform: translateY(-1rem);
  }

  .marketing-hero__title {
    font-size: clamp(2.65rem, 10vw, 3.4rem);
  }

  .temporary-trial-form__actions {
    justify-content: center;
  }

  .marketing-page-intro {
    padding-top: 3.5rem;
  }

  .marketing-section-grid,
  .marketing-pricing-grid {
    grid-template-columns: 1fr;
  }

  .marketing-review-story {
    grid-template-columns: 1fr;
    margin-top: 3.5rem;
  }

  .marketing-review-story__image-wrap {
    margin-right: 1.5rem;
  }

  .marketing-review-story__image {
    height: clamp(18rem, 72vw, 25rem);
  }

  .marketing-review-story__copy {
    max-width: none;
    padding: 0 1.5rem;
  }

  .marketing-discussion-story__copy {
    top: 28%;
    max-width: min(18rem, 48%);
    transform: translateY(calc(-50% - 1.4rem));
  }

  .marketing-discussion-story__quote {
    font-size: clamp(1.05rem, 4.8vw, 1.65rem);
    line-height: 1.08;
  }

  .marketing-discussion-story__wordmark {
    width: clamp(3rem, 13vw, 3.9rem);
  }

  .marketing-why-hero__stage {
    display: flex;
    min-height: 0;
    flex-direction: column;
  }

  .marketing-why-hero__stage::before {
    display: none;
  }

  .marketing-why-hero__image {
    position: relative;
    order: 2;
    height: auto;
    aspect-ratio: 4 / 3;
    object-position: right center;
  }

  .marketing-why-hero__inner {
    order: 1;
    min-height: 0;
    padding: 4rem 1.5rem 3rem;
    background: #050c16;
  }

  .marketing-why-hero__copy {
    transform: none;
  }

  .marketing-why-intro__title {
    max-width: 12ch;
    font-size: clamp(2.65rem, 10vw, 3.4rem);
  }

  .marketing-why-note__content {
    grid-template-columns: 1fr;
    gap: 1rem;
  }

  .marketing-why-content {
    margin-top: 5rem;
    gap: 5rem;
  }

  .marketing-why-section,
  .marketing-why-ai {
    grid-template-columns: 1fr;
    gap: 2rem;
  }

  .marketing-why-loop {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 2rem 0;
  }

  .marketing-why-loop li:nth-child(3) {
    padding-left: 0;
    border-left: 0;
  }

  .marketing-why-ai {
    padding: 2rem 1.4rem;
  }

  .marketing-feature-sections {
    gap: 3rem;
    margin-top: 3rem;
  }

  .marketing-feature-section,
  .marketing-feature-section--reverse,
  .marketing-feature-section--review {
    grid-template-columns: 1fr;
    gap: 1.35rem;
  }

  .marketing-feature-section__copy {
    padding-top: 0;
  }

  .marketing-feature-section--reverse .marketing-feature-section__copy,
  .marketing-feature-section--reverse .marketing-feature-visual {
    order: initial;
  }

  .marketing-feature-visual {
    min-height: 18rem;
  }

  .marketing-note-editor-card {
    width: 86%;
    margin-top: 2.1rem;
  }

  .marketing-product-mockup--outline,
  .marketing-product-mockup--search,
  .marketing-product-mockup--tools,
  .marketing-product-mockup--review {
    padding: 1.25rem;
  }

  .marketing-product-mockup--outline .marketing-outline-header,
  .marketing-product-mockup--outline .marketing-outline-list {
    margin-left: 0;
  }

  .marketing-tool-grid {
    grid-template-columns: 1fr;
  }

  .marketing-showcase {
    grid-template-columns: 1fr;
    margin-top: 3rem;
  }

  .marketing-showcase__copy {
    padding-top: 0;
  }

  .marketing-showcase--connections .marketing-showcase__copy,
  .marketing-showcase--connections .marketing-showcase__media {
    order: initial;
  }

  .marketing-showcase__image--phone {
    width: min(78%, 22rem);
    transform: none;
  }

  .marketing-contact__summary,
  .marketing-contact__body,
  .marketing-contact-form__grid,
  .marketing-coming-soon {
    grid-template-columns: 1fr;
  }

  .marketing-contact__summary {
    align-items: flex-start;
    flex-direction: column;
  }

  .marketing-contact__toggle {
    width: 100%;
  }

}

@media (max-width: 520px) {
  .marketing-why-note__inner {
    padding-block: 1.5rem;
  }

  .marketing-why-forces,
  .marketing-why-loop {
    grid-template-columns: 1fr;
  }

  .marketing-why-loop li,
  .marketing-why-loop li:first-child,
  .marketing-why-loop li:nth-child(3),
  .marketing-why-loop li:last-child {
    min-height: 0;
    padding: 0 0 1.5rem 3rem;
    border: 0;
    border-bottom: 1px solid rgba(17, 24, 39, 0.09);
  }

  .marketing-why-loop li:last-child {
    padding-bottom: 0;
    border-bottom: 0;
  }

  .marketing-why-loop__number {
    position: absolute;
    top: 0;
    left: 0;
    margin: 0;
  }

  .marketing-why-ai__visual {
    grid-template-columns: 1fr;
  }

  .marketing-why-ai__plus {
    text-align: center;
  }
}
