/* WEB marketing page only */
.marketing-page {
  --marketing-ink: #07130f;
  --marketing-ink-soft: #0d2019;
  --marketing-paper: #f4f3eb;
  --marketing-paper-pure: #fffef8;
  --marketing-acid: #c8ff52;
  --marketing-line-dark: rgba(255, 255, 255, .14);
  --marketing-line-light: rgba(7, 19, 15, .14);
  --primary-color: #8ebd28;
  --primary-hover: #709a1c;
  min-width: 320px;
  overflow-x: hidden;
  background: var(--marketing-ink);
  color: #fff;
  font-family: "Noto Sans JP", "Hiragino Kaku Gothic ProN", "Yu Gothic", sans-serif;
  line-height: 1.8;
  line-break: strict;
  overflow-wrap: break-word;
  -webkit-font-smoothing: antialiased;
}

.marketing-page h1,
.marketing-page h2,
.marketing-page h3,
.marketing-page p { text-wrap: pretty; }

.marketing-page h1,
.marketing-page h2 { text-wrap: balance; }

.marketing-page .container {
  width: min(1180px, calc(100% - 48px));
  max-width: none;
  padding: 0;
}

.marketing-skip-link {
  position: fixed;
  top: 10px;
  left: 10px;
  z-index: 200;
  padding: 10px 16px;
  border-radius: 8px;
  background: var(--marketing-acid);
  color: var(--marketing-ink);
  transform: translateY(-160%);
}

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

.marketing-page .header {
  height: 76px;
  border-bottom: 1px solid transparent;
}

.marketing-page .header.scrolled {
  border-color: var(--marketing-line-dark);
  background: rgba(7, 19, 15, .92);
  -webkit-backdrop-filter: blur(16px);
  backdrop-filter: blur(16px);
}

.marketing-page .header-container {
  width: min(1380px, calc(100% - 48px));
  height: 100%;
  margin: 0 auto;
  padding: 0;
}

.marketing-page .logo-text {
  min-width: max-content;
  font-family: "DM Sans", Arial, sans-serif;
  font-size: 1.25rem;
  font-weight: 700;
  letter-spacing: -.02em;
}

.marketing-page .nav-list { gap: clamp(12px, 1.45vw, 23px); }

.marketing-page .nav-link {
  position: relative;
  color: rgba(255, 255, 255, .72);
  font-size: .68rem;
  font-weight: 500;
  letter-spacing: .025em;
  white-space: nowrap;
}

.marketing-page .nav-link::after {
  content: "";
  position: absolute;
  right: 100%;
  bottom: -7px;
  left: 0;
  height: 1px;
  background: var(--marketing-acid);
  transition: right .25s ease;
}

.marketing-page .nav-link:hover,
.marketing-page .nav-link:focus-visible,
.marketing-page .nav-link.active { color: #fff; }

.marketing-page .nav-link:hover::after,
.marketing-page .nav-link:focus-visible::after,
.marketing-page .nav-link.active::after { right: 0; }

.marketing-page .mobile-menu-button span { background: #fff; }

.marketing-page .mobile-nav {
  background: rgba(7, 19, 15, .99);
  color: #fff;
}

.marketing-page .mobile-nav-link {
  font-family: "Noto Sans JP", sans-serif;
  font-size: clamp(1.15rem, 5vw, 1.65rem);
  font-weight: 600;
}

.marketing-page .mobile-nav-link[aria-current="page"] { color: var(--marketing-acid); }

.marketing-page .nav_global_sp_info {
  margin-top: auto;
  padding: 0 40px 36px;
  color: rgba(255, 255, 255, .45);
}

.marketing-page .nav_global_sp_info_logo { margin-bottom: 5px; }
.marketing-page .nav_global_sp_info_logo .name { color: #fff; font-size: .78rem; font-weight: 700; }
.marketing-page .nav_global_sp_info_detail { font-size: .68rem; }

.marketing-hero {
  position: relative;
  isolation: isolate;
  min-height: 820px;
  display: grid;
  align-items: center;
  overflow: hidden;
  padding: 150px 0 90px;
  background: radial-gradient(circle at 80% 36%, #1b4935 0, var(--marketing-ink) 45%), var(--marketing-ink);
}

.marketing-grid,
.marketing-cta-grid {
  position: absolute;
  inset: 0;
  z-index: -2;
  opacity: .13;
  background-image: linear-gradient(rgba(255, 255, 255, .12) 1px, transparent 1px), linear-gradient(90deg, rgba(255, 255, 255, .12) 1px, transparent 1px);
  background-size: 74px 74px;
  -webkit-mask-image: linear-gradient(to bottom, #000 10%, transparent 92%);
  mask-image: linear-gradient(to bottom, #000 10%, transparent 92%);
}

.marketing-hero::after {
  content: "";
  position: absolute;
  z-index: -1;
  top: 16%;
  right: -12vw;
  width: 52vw;
  aspect-ratio: 1;
  border: 1px solid rgba(200, 255, 82, .13);
  border-radius: 50%;
  box-shadow: inset 0 0 100px rgba(200, 255, 82, .035), 0 0 0 90px rgba(200, 255, 82, .018);
}

.marketing-hero-inner {
  display: grid;
  grid-template-columns: minmax(0, 1.08fr) minmax(390px, .92fr);
  align-items: center;
  gap: clamp(56px, 8vw, 118px);
}

.marketing-hero-copy { position: relative; z-index: 2; }

.marketing-kicker,
.marketing-section-number {
  font-family: "DM Sans", Arial, sans-serif;
  font-size: .68rem;
  font-weight: 700;
  letter-spacing: .2em;
}

.marketing-kicker {
  display: flex;
  align-items: center;
  gap: 11px;
  margin-bottom: 27px;
  color: var(--marketing-acid);
}

.marketing-kicker span {
  width: 7px;
  height: 7px;
  border-radius: 50%;
  background: var(--marketing-acid);
  box-shadow: 0 0 0 6px rgba(200, 255, 82, .1);
}

.marketing-hero h1 {
  max-width: 760px;
  margin-bottom: 28px;
  font-size: clamp(3rem, 5.3vw, 5.65rem);
  font-weight: 650;
  line-height: 1.23;
  letter-spacing: -.055em;
}

.marketing-hero-lead {
  max-width: 670px;
  margin-bottom: 34px;
  color: rgba(255, 255, 255, .67);
  font-size: clamp(.92rem, 1.2vw, 1.04rem);
  line-height: 2;
}

.marketing-actions {
  display: flex;
  align-items: center;
  flex-wrap: wrap;
  gap: 18px 24px;
}

.marketing-primary-button {
  display: inline-flex;
  align-items: center;
  justify-content: space-between;
  gap: 30px;
  min-height: 62px;
  padding: 8px 12px 8px 24px;
  border-radius: 999px;
  background: var(--marketing-acid);
  color: var(--marketing-ink);
  font-size: .83rem;
  font-weight: 800;
  transition: transform .25s ease, background .25s ease, box-shadow .25s ease;
}

.marketing-primary-button span {
  display: grid;
  place-items: center;
  width: 46px;
  height: 46px;
  border-radius: 50%;
  background: var(--marketing-ink);
  color: var(--marketing-acid);
  font-size: 1.1rem;
}

.marketing-primary-button:hover,
.marketing-primary-button:focus-visible {
  background: #ddff91;
  box-shadow: 0 18px 50px rgba(174, 230, 60, .17);
  transform: translateY(-3px);
}

.marketing-text-link {
  padding: 10px 3px;
  border-bottom: 1px solid rgba(255, 255, 255, .32);
  color: rgba(255, 255, 255, .74);
  font-size: .76rem;
  font-weight: 600;
}

.marketing-text-link span { margin-left: 8px; color: var(--marketing-acid); }

.marketing-hero-points {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin-top: 29px;
}

.marketing-hero-points li {
  padding: 7px 13px;
  border: 1px solid var(--marketing-line-dark);
  border-radius: 999px;
  color: rgba(255, 255, 255, .52);
  font-size: .67rem;
}

.strategy-board {
  position: relative;
  z-index: 2;
  padding: 14px;
  border: 1px solid rgba(255, 255, 255, .18);
  border-radius: 26px;
  background: rgba(13, 37, 28, .76);
  box-shadow: 0 40px 100px rgba(0, 0, 0, .38);
  -webkit-backdrop-filter: blur(18px);
  backdrop-filter: blur(18px);
}

.strategy-board::before {
  content: "";
  position: absolute;
  inset: -1px;
  z-index: -1;
  border-radius: inherit;
  background: linear-gradient(145deg, rgba(200, 255, 82, .3), transparent 31%, transparent 75%, rgba(200, 255, 82, .1));
}

.strategy-board-head {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
  min-height: 56px;
  padding: 0 12px;
  border-bottom: 1px solid var(--marketing-line-dark);
}

.strategy-board-head span {
  color: var(--marketing-acid);
  font-family: "DM Sans", Arial, sans-serif;
  font-size: .56rem;
  font-weight: 700;
  letter-spacing: .15em;
}

.strategy-board-head b { font-size: .76rem; font-weight: 600; }

.strategy-route { padding: 18px 8px 7px; }

.strategy-route li {
  position: relative;
  display: grid;
  grid-template-columns: 58px 1fr;
  align-items: center;
  min-height: 92px;
  border-bottom: 1px solid var(--marketing-line-dark);
}

.strategy-route li > span {
  color: var(--marketing-acid);
  font-family: "DM Sans", Arial, sans-serif;
  font-size: .66rem;
  font-weight: 700;
  letter-spacing: .12em;
}

.strategy-route li > div { display: flex; align-items: baseline; justify-content: space-between; gap: 20px; }
.strategy-route small { color: rgba(255, 255, 255, .38); font-family: "DM Sans", Arial, sans-serif; font-size: .54rem; letter-spacing: .14em; }
.strategy-route strong { font-size: 1rem; font-weight: 650; }

.strategy-channels { display: flex; flex-wrap: wrap; gap: 7px; padding: 17px 8px 10px; }
.strategy-channels span { padding: 5px 9px; border-radius: 999px; background: var(--marketing-acid); color: var(--marketing-ink); font-family: "DM Sans", Arial, sans-serif; font-size: .48rem; font-weight: 700; letter-spacing: .08em; }
.strategy-board > p { margin: 0; padding: 10px 8px 13px; color: rgba(255, 255, 255, .54); font-size: .7rem; line-height: 1.8; }

.marketing-overview {
  padding: clamp(92px, 11vw, 148px) 0;
  background: var(--marketing-paper);
  color: var(--marketing-ink);
}

.marketing-overview-inner {
  display: grid;
  grid-template-columns: .38fr 1fr;
  align-items: start;
  gap: 60px;
}

.marketing-section-number { color: #658d20; }

.marketing-overview h2 {
  max-width: 850px;
  margin-bottom: 26px;
  font-size: clamp(2.2rem, 4.4vw, 4.6rem);
  font-weight: 650;
  line-height: 1.3;
  letter-spacing: -.055em;
}

.marketing-overview div > p:last-child {
  max-width: 720px;
  margin: 0;
  color: #3d4b45;
  font-size: .94rem;
  line-height: 2;
}

.marketing-services,
.marketing-flow {
  padding: clamp(96px, 12vw, 158px) 0;
  background: var(--marketing-paper-pure);
  color: var(--marketing-ink);
}

.marketing-section-heading {
  display: grid;
  grid-template-columns: 1.12fr .68fr;
  align-items: end;
  gap: 70px;
  margin-bottom: 58px;
}

.marketing-section-heading .marketing-section-number { margin-bottom: 18px; }

.marketing-section-heading h2,
.strengths-heading h2 {
  font-size: clamp(2.15rem, 4vw, 4.1rem);
  font-weight: 650;
  line-height: 1.3;
  letter-spacing: -.05em;
}

.marketing-section-heading > p {
  margin: 0 0 7px;
  color: #48564f;
  font-size: .88rem;
  line-height: 2;
}

.creative-service-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  border-top: 1px solid var(--marketing-line-light);
  border-left: 1px solid var(--marketing-line-light);
}

.marketing-service-card {
  min-height: 430px;
  padding: 38px;
  border-right: 1px solid var(--marketing-line-light);
  border-bottom: 1px solid var(--marketing-line-light);
  background: rgba(244, 243, 235, .32);
  transition: transform .3s ease, background .3s ease, box-shadow .3s ease;
}

.marketing-service-card:hover {
  position: relative;
  z-index: 2;
  background: #fff;
  box-shadow: 0 26px 80px rgba(7, 19, 15, .12);
  transform: translateY(-6px);
}

.service-card-top {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 48px;
}

.service-card-top > span { color: #658d20; font-family: "DM Sans", Arial, sans-serif; font-size: .68rem; font-weight: 700; letter-spacing: .16em; }
.service-card-top small { color: #78847e; font-family: "DM Sans", Arial, sans-serif; font-size: .54rem; font-weight: 700; letter-spacing: .14em; }
.marketing-service-card h3 { margin-bottom: 18px; font-size: clamp(1.45rem, 2.3vw, 2.1rem); font-weight: 700; letter-spacing: -.03em; }
.marketing-service-card > p { margin: 0; color: #45524c; font-size: .82rem; line-height: 2; }

.service-strength {
  display: grid;
  grid-template-columns: 56px 1fr;
  gap: 16px;
  margin-top: 32px;
  padding-top: 22px;
  border-top: 1px solid var(--marketing-line-light);
}

.service-strength > span { color: #658d20; font-size: .66rem; font-weight: 800; }
.service-strength p { margin: 0; color: #27352f; font-size: .76rem; font-weight: 600; line-height: 1.85; }

.restaurant-support {
  position: relative;
  isolation: isolate;
  overflow: hidden;
  padding: clamp(100px, 12vw, 164px) 0;
  background: #0b1b15;
  color: #fff;
}

.restaurant-pattern {
  position: absolute;
  inset: 0;
  z-index: -1;
  opacity: .12;
  background-image: radial-gradient(circle, rgba(200, 255, 82, .6) 1px, transparent 1px);
  background-size: 34px 34px;
  -webkit-mask-image: linear-gradient(110deg, transparent 15%, #000 75%);
  mask-image: linear-gradient(110deg, transparent 15%, #000 75%);
}

.restaurant-heading .marketing-section-number { color: var(--marketing-acid); }
.restaurant-heading > p { color: rgba(255, 255, 255, .56); }

.restaurant-service-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 18px;
}

.restaurant-service-card {
  min-height: 590px;
  display: flex;
  flex-direction: column;
  padding: clamp(30px, 4vw, 48px);
  border: 1px solid rgba(255, 255, 255, .16);
  border-radius: 22px;
  background: rgba(16, 42, 31, .72);
  -webkit-backdrop-filter: blur(14px);
  backdrop-filter: blur(14px);
}

.restaurant-card-label { display: flex; align-items: center; justify-content: space-between; margin-bottom: 55px; }
.restaurant-card-label span { color: var(--marketing-acid); font-family: "DM Sans", Arial, sans-serif; font-size: .68rem; font-weight: 700; letter-spacing: .15em; }
.restaurant-card-label small { color: rgba(255, 255, 255, .4); font-family: "DM Sans", Arial, sans-serif; font-size: .53rem; font-weight: 700; letter-spacing: .14em; }
.restaurant-service-card h3 { margin-bottom: 20px; font-size: clamp(1.6rem, 2.6vw, 2.4rem); font-weight: 700; line-height: 1.4; letter-spacing: -.035em; }
.restaurant-service-card > p { margin: 0 0 29px; color: rgba(255, 255, 255, .67); font-size: .83rem; line-height: 2; }
.restaurant-service-card ul { margin: 0 0 32px; }
.restaurant-service-card li { position: relative; padding: 11px 0 11px 23px; border-bottom: 1px solid rgba(255, 255, 255, .1); color: rgba(255, 255, 255, .79); font-size: .77rem; }
.restaurant-service-card li::before { content: ""; position: absolute; top: 20px; left: 2px; width: 7px; height: 7px; border-radius: 50%; background: var(--marketing-acid); box-shadow: 0 0 0 5px rgba(200, 255, 82, .08); }

.restaurant-strength {
  margin-top: auto;
  padding: 22px;
  border-radius: 14px;
  background: var(--marketing-acid);
  color: var(--marketing-ink);
}

.restaurant-strength span { display: block; margin-bottom: 8px; font-family: "DM Sans", Arial, sans-serif; font-size: .52rem; font-weight: 800; letter-spacing: .16em; }
.restaurant-strength p { margin: 0; font-size: .76rem; font-weight: 650; line-height: 1.8; }

.marketing-strengths {
  padding: clamp(96px, 12vw, 158px) 0;
  background: var(--marketing-paper);
  color: var(--marketing-ink);
}

.strengths-heading { max-width: 900px; margin-bottom: 58px; }
.strengths-heading .marketing-section-number { margin-bottom: 19px; }
.strength-list { border-top: 1px solid var(--marketing-line-light); }

.strength-list li {
  display: grid;
  grid-template-columns: 120px 1fr;
  align-items: center;
  min-height: 144px;
  border-bottom: 1px solid var(--marketing-line-light);
}

.strength-list > li > span { color: #658d20; font-family: "DM Sans", Arial, sans-serif; font-size: .68rem; font-weight: 700; letter-spacing: .15em; }
.strength-list li > div { display: grid; grid-template-columns: .7fr 1fr; align-items: center; gap: 50px; }
.strength-list h3 { margin: 0; font-size: 1.25rem; font-weight: 700; }
.strength-list p { max-width: 510px; margin: 0; color: #4d5b54; font-size: .82rem; line-height: 1.9; }

.marketing-flow { background: var(--marketing-paper-pure); }
.marketing-flow-list { display: grid; grid-template-columns: repeat(5, 1fr); border-top: 1px solid var(--marketing-line-light); border-left: 1px solid var(--marketing-line-light); }
.marketing-flow-list li { min-height: 270px; padding: 27px 24px; border-right: 1px solid var(--marketing-line-light); border-bottom: 1px solid var(--marketing-line-light); }
.marketing-flow-list > li > span { display: block; margin-bottom: 55px; color: #658d20; font-family: "DM Sans", Arial, sans-serif; font-size: .65rem; font-weight: 700; letter-spacing: .14em; }
.marketing-flow-list h3 { margin-bottom: 13px; font-size: .98rem; font-weight: 700; line-height: 1.6; }
.marketing-flow-list p { margin: 0; color: #56625c; font-size: .74rem; line-height: 1.85; }

.marketing-cta {
  position: relative;
  isolation: isolate;
  min-height: 660px;
  display: grid;
  place-items: center;
  overflow: hidden;
  background: var(--marketing-acid);
  color: var(--marketing-ink);
}

.marketing-cta-grid {
  opacity: .14;
  background-image: linear-gradient(rgba(7, 19, 15, .28) 1px, transparent 1px), linear-gradient(90deg, rgba(7, 19, 15, .28) 1px, transparent 1px);
  -webkit-mask-image: none;
  mask-image: none;
}

.marketing-cta::before {
  content: "";
  position: absolute;
  z-index: -1;
  width: 520px;
  height: 520px;
  border: 1px solid rgba(7, 19, 15, .14);
  border-radius: 50%;
  box-shadow: 0 0 0 90px rgba(7, 19, 15, .026), 0 0 0 180px rgba(7, 19, 15, .018);
}

.marketing-cta-inner { display: flex; flex-direction: column; align-items: center; text-align: center; }
.marketing-cta-inner > p:first-child { margin-bottom: 16px; font-family: "DM Sans", Arial, sans-serif; font-size: .68rem; font-weight: 700; letter-spacing: .2em; }
.marketing-cta h2 { max-width: 940px; margin-bottom: 22px; font-size: clamp(2.6rem, 5.6vw, 5.7rem); font-weight: 700; line-height: 1.2; letter-spacing: -.06em; }
.marketing-cta h2 + p { max-width: 620px; margin: 0 0 34px; color: rgba(7, 19, 15, .68); font-size: .88rem; }
.marketing-primary-button-dark { background: var(--marketing-ink); color: #fff; }
.marketing-primary-button-dark span { background: var(--marketing-acid); color: var(--marketing-ink); }
.marketing-primary-button-dark:hover, .marketing-primary-button-dark:focus-visible { background: #12291f; }

.marketing-page .footer { background: var(--marketing-ink); color: #fff; }
.marketing-page .footer-tagline,
.marketing-page .footer-link,
.marketing-page .copyright { color: rgba(255, 255, 255, .48); }
.marketing-page .footer-bottom { border-color: var(--marketing-line-dark); }
.marketing-page .footer-link:hover,
.marketing-page .footer-link:focus-visible,
.marketing-page .footer-link[aria-current="page"] { color: var(--marketing-acid); }

@media (max-width: 1120px) {
  .marketing-page .desktop-nav { display: none; }
  .marketing-page .mobile-menu-button { display: block; }
  .marketing-page .mobile-nav { display: flex; }
  .marketing-hero-inner { grid-template-columns: minmax(0, 1fr) minmax(340px, .72fr); gap: 42px; }
}

@media (max-width: 820px) {
  .marketing-page .header { height: 68px; }
  .marketing-page .header-container { width: calc(100% - 32px); background: transparent; }
  .marketing-hero { min-height: auto; padding: 120px 0 88px; }
  .marketing-hero-inner { grid-template-columns: 1fr; }
  .strategy-board { width: min(100%, 520px); margin: 22px auto 0; }
  .marketing-overview-inner { grid-template-columns: 1fr; gap: 26px; }
  .marketing-section-heading { grid-template-columns: 1fr; gap: 22px; }
  .creative-service-grid { grid-template-columns: 1fr; }
  .restaurant-service-grid { grid-template-columns: 1fr; }
  .restaurant-service-card { min-height: 0; }
  .strength-list li { grid-template-columns: 72px 1fr; }
  .strength-list li > div { grid-template-columns: 1fr; gap: 9px; }
  .marketing-flow-list { grid-template-columns: repeat(2, 1fr); }
  .marketing-page .footer-links { grid-template-columns: repeat(2, 1fr); }
}

@media (max-width: 600px) {
  .marketing-page .container { width: calc(100% - 36px); }
  .marketing-page .header-container { width: calc(100% - 30px); }
  .marketing-page .mobile-nav-list { gap: 22px; margin-bottom: 38px; }
  .marketing-page .mobile-nav-link { padding: 0 28px; }
  .marketing-page .nav_global_sp_info { padding: 0 28px 30px; }
  .marketing-kicker { margin-bottom: 20px; font-size: .57rem; }
  .marketing-hero h1 { margin-bottom: 22px; font-size: clamp(2.3rem, 11.2vw, 3.2rem); line-height: 1.32; letter-spacing: -.045em; }
  .marketing-hero-lead { font-size: .84rem; line-height: 1.95; }
  .marketing-actions { align-items: stretch; flex-direction: column; }
  .marketing-primary-button { width: 100%; min-height: 60px; font-size: .78rem; }
  .marketing-text-link { width: max-content; }
  .marketing-hero-points { margin-top: 24px; }
  .strategy-board { padding: 10px; border-radius: 20px; }
  .strategy-board-head { align-items: flex-start; flex-direction: column; justify-content: center; gap: 2px; min-height: 66px; }
  .strategy-route li { grid-template-columns: 44px 1fr; min-height: 82px; }
  .strategy-route li > div { align-items: flex-start; flex-direction: column; justify-content: center; gap: 2px; }
  .marketing-overview,
  .marketing-services,
  .restaurant-support,
  .marketing-strengths,
  .marketing-flow { padding: 84px 0; }
  .marketing-overview h2,
  .marketing-section-heading h2,
  .strengths-heading h2 { font-size: clamp(2rem, 9.5vw, 3rem); line-height: 1.38; letter-spacing: -.04em; }
  .marketing-section-heading { margin-bottom: 38px; }
  .marketing-service-card { min-height: 0; padding: 29px 25px; }
  .service-card-top { margin-bottom: 34px; }
  .service-strength { grid-template-columns: 1fr; gap: 7px; }
  .restaurant-service-card { padding: 28px 23px; }
  .restaurant-card-label { margin-bottom: 39px; }
  .restaurant-strength { padding: 19px; }
  .strengths-heading { margin-bottom: 38px; }
  .strength-list li { grid-template-columns: 44px 1fr; min-height: 145px; }
  .strength-list h3 { font-size: 1.08rem; }
  .strength-list p { font-size: .76rem; }
  .marketing-flow-list { grid-template-columns: 1fr; }
  .marketing-flow-list li { min-height: 0; display: grid; grid-template-columns: 48px 1fr; gap: 6px; padding: 24px 21px; }
  .marketing-flow-list > li > span { margin: 4px 0 0; }
  .marketing-cta { min-height: 590px; }
  .marketing-cta h2 { font-size: clamp(2.35rem, 11.5vw, 3.6rem); line-height: 1.3; letter-spacing: -.045em; }
  .marketing-page .footer-links { grid-template-columns: 1fr 1fr; }
}

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