/*
 * buscenter-lp.css  v3
 * 新潟市万代シテイバスセンター バトルロイヤル — 公式LP
 */

/* =============================================
   デザイントークン
============================================= */
.lp-buscenter {
  --lp-bg:     #08090e;
  --lp-bg-2:   #0d0f18;
  --lp-card:   #12151f;
  --lp-card-2: #161a28;

  /* テキスト — WCAG AA 準拠のコントラスト比を確保 */
  --lp-ink:    #f2f4ff;   /* 見出し・強調 */
  --lp-body:   #dde1f0;   /* 本文（旧版より +20% 明るく） */
  --lp-sub:    #9aa3c0;   /* ラベル・補足 */
  --lp-line:   rgba(255,255,255,.10);

  /* アクセント */
  --lp-gold:      #f5c400;
  --lp-gold-dim:  rgba(245,196,0,.16);
  --lp-gold-glow: rgba(245,196,0,.28);
  --lp-purple:    #7c55ff;
  --lp-cyan:      #22d8f0;

  --lp-maxw: 1120px;
  --lp-font: 'Segoe UI', system-ui, 'Hiragino Kaku Gothic ProN', 'Yu Gothic', Meiryo, sans-serif;
  --lp-r:    14px;
  --lp-r-lg: 20px;
}

/* =============================================
   リセット・ベース
============================================= */
.lp-buscenter *, .lp-buscenter *::before, .lp-buscenter *::after {
  box-sizing: border-box; margin: 0; padding: 0;
}
.lp-buscenter {
  background:  var(--lp-bg);
  color:       var(--lp-ink);
  font-family: var(--lp-font);
  line-height: 1.75;
  overflow-x:  hidden;
  -webkit-font-smoothing: antialiased;
}
.lp-buscenter a   { color: inherit; text-decoration: none; }
.lp-buscenter img { max-width: 100%; display: block; }

.lp-wrap {
  max-width: var(--lp-maxw);
  margin:    0 auto;
  padding:   0 28px;
}
.lp-accent { color: var(--lp-gold); }

/* =============================================
   ボタン
============================================= */
.lp-btn {
  display:         inline-flex;
  align-items:     center;
  gap:             .45em;
  font-weight:     800;
  letter-spacing:  .03em;
  padding:         13px 26px;
  border-radius:   10px;
  cursor:          pointer;
  border:          0;
  font-size:       .95rem;
  font-family:     var(--lp-font);
  transition:      transform .15s, box-shadow .15s, background .15s;
  text-decoration: none;
  white-space:     nowrap;
}
/* プライマリ：黒背景 × ゴールドで最大コントラスト */
/* !important でテーマ側の a { color: inherit } を確実に上書き */
.lp-buscenter .lp-btn-primary,
.lp-buscenter a.lp-btn-primary,
.lp-buscenter button.lp-btn-primary {
  background: var(--lp-gold) !important;
  color:      #0a0800 !important;
  box-shadow: 0 4px 20px var(--lp-gold-glow);
}
.lp-buscenter .lp-btn-primary:hover,
.lp-buscenter a.lp-btn-primary:hover {
  background: #ffd130 !important;
  color:      #0a0800 !important;
  transform:  translateY(-2px);
  box-shadow: 0 8px 28px rgba(245,196,0,.42);
}
/* ゴースト */
.lp-btn-ghost {
  background:  rgba(255,255,255,.06);
  color:       var(--lp-ink);
  border:      1px solid rgba(255,255,255,.22);
}
.lp-btn-ghost:hover {
  border-color: var(--lp-cyan);
  color:        var(--lp-cyan);
  transform:    translateY(-2px);
}

/* =============================================
   ヘッダー
============================================= */
#lp-header {
  position:        fixed;
  top: 0; left: 0; right: 0;
  z-index:         50;
  backdrop-filter: blur(18px) saturate(1.5);
  /* トップでも画像に溶け込まないよう最初から濃く */
  background:      rgba(8,9,14,.80);
  border-bottom:   1px solid var(--lp-line);
  transition:      background .3s;
}
#lp-header.scrolled {
  background: rgba(8,9,14,.97);
}
.lp-nav {
  display:         flex;
  align-items:     center;
  justify-content: space-between;
  height:          64px;
}
.lp-logo {
  font-weight:    800;
  letter-spacing: .04em;
  font-size:      .92rem;
  display:        flex;
  align-items:    center;
  gap:            .5em;
  color:          var(--lp-ink);
}
.lp-logo-dot {
  width: 8px; height: 8px;
  border-radius: 2px;
  background:    var(--lp-gold);
  flex-shrink:   0;
}
.lp-nav-links {
  display:     flex;
  gap:         24px;
  align-items: center;
}
.lp-nav-links a {
  color:       var(--lp-sub);
  font-size:   .88rem;
  font-weight: 500;
  transition:  color .2s;
}
.lp-nav-links a:hover { color: var(--lp-ink); }
.lp-nav-links .lp-btn { padding: 8px 18px; font-size: .86rem; }
.lp-burger {
  display:    none;
  background: none;
  border:     0;
  color:      var(--lp-ink);
  font-size:  1.4rem;
  cursor:     pointer;
  line-height: 1;
}

/* =============================================
   ヒーロー
   戦略：背景画像 → 均一暗幕 → グラデーション → テキスト
   テキストは純白で、shadow で念押し
============================================= */
.lp-hero {
  position:    relative;
  min-height:  100vh;
  display:     flex;
  align-items: center;
  padding:     120px 0 100px;
  overflow:    hidden;
}

/* 背景画像レイヤー */
.lp-hero-bg {
  position: absolute;
  top: 0; right: 0; bottom: 0; left: 0;
  width: 100%; height: 100%;
  z-index: 0;
}
.lp-hero-slides {
  position: absolute;
  top: 0; right: 0; bottom: 0; left: 0;
  width: 100%; height: 100%;
  overflow: hidden;
}
.lp-hero-slides img {
  position:   absolute;
  top: 0; right: 0; bottom: 0; left: 0;
  width: 100%; height: 100%;
  object-fit: cover;
}

/*
  オーバーレイ 2層構成：
  ::before — 均一暗幕（単色）
  ::after  — 上下グラデーション
  inset は使わず top/right/bottom/left で展開
*/

/* Layer 1: 均一暗幕 */
.lp-hero-bg::before {
  content:    "";
  position:   absolute;
  top: 0; right: 0; bottom: 0; left: 0;
  width: 100%; height: 100%;
  z-index:    1;
  background: rgba(6,7,12,.78);
}

/* Layer 2: 上下グラデーション */
.lp-hero-bg::after {
  content:  "";
  position: absolute;
  top: 0; right: 0; bottom: 0; left: 0;
  width: 100%; height: 100%;
  z-index:  2;
  background: linear-gradient(
    to bottom,
    rgba(6,7,12,.50) 0%,
    rgba(6,7,12,.00) 18%,
    rgba(6,7,12,.00) 68%,
    rgba(6,7,12,.80) 100%
  );
  pointer-events: none;
}

/* グリッド床 — ::after(z-index:2) より上に */
.lp-grid-floor {
  position: absolute;
  left: -20%; right: -20%; bottom: -8%;
  height: 48%;
  background-image:
    linear-gradient(rgba(124,85,255,.15) 1px, transparent 1px),
    linear-gradient(90deg, rgba(124,85,255,.15) 1px, transparent 1px);
  background-size: 56px 56px;
  transform: perspective(400px) rotateX(62deg);
  transform-origin: bottom center;
  mask-image: linear-gradient(to top, #000 8%, transparent 72%);
  animation: lpFloor 10s linear infinite;
  z-index: 3;
  opacity: .30;
}
@keyframes lpFloor { to { background-position: 0 56px, 56px 0; } }

/* バトルバス */
.lp-bus {
  position:  absolute;
  top:       16%;
  left:      -12%;
  font-size: 2.8rem;
  z-index:   20;
  filter:    drop-shadow(0 0 14px rgba(245,196,0,.55));
  animation: lpFly 14s linear infinite;
  pointer-events: none;
}
@keyframes lpFly {
  0%   { left: -12%; transform: translateY(0)    rotate(-3deg); }
  50%  {              transform: translateY(-18px) rotate(1deg); }
  100% { left: 112%; transform: translateY(0)    rotate(-3deg); }
}

/* ヒーロー内コンテンツ */
.lp-hero-inner { position: relative; z-index: 2; }

.lp-badge {
  display:        inline-flex;
  align-items:    center;
  gap:            .45em;
  background:     rgba(34,216,240,.08);
  border:         1px solid rgba(34,216,240,.30);
  padding:        5px 13px;
  border-radius:  999px;
  font-size:      .78rem;
  color:          var(--lp-cyan);
  font-weight:    600;
  letter-spacing: .07em;
  margin-bottom:  20px;
}
.lp-blink {
  width: 6px; height: 6px;
  border-radius: 50%;
  background:    var(--lp-cyan);
  animation:     lpBlink 1.5s ease-in-out infinite;
}
@keyframes lpBlink { 50% { opacity: .15; } }

/* h1：白固定 + 強いテキストシャドウで画像に関わらず読める */
.lp-hero h1 {
  font-size:      clamp(2.6rem, 6.5vw, 5rem);
  line-height:    1.05;
  font-weight:    900;
  letter-spacing: .01em;
  margin-bottom:  20px;
  color:          #ffffff;
}
/* 「最後の1人」— アウトライン廃止、シンプルなゴールドテキスト */
.lp-stroke {
  color: var(--lp-gold);
}

/* リード文 */
.lp-lead {
  font-size:     clamp(1rem, 2vw, 1.15rem);
  color:         rgba(255,255,255,.90);
  margin-bottom: 36px;
  font-weight:   500;
}
.lp-hero-cta  { display: flex; gap: 12px; flex-wrap: wrap; align-items: center; }
.lp-hero-note {
  margin-top: 14px;
  font-size:  .82rem;
  color:      rgba(255,255,255,.75);
}

/* 配信中バナー */
.lp-live-banner {
  display:       none;
  align-items:   center;
  gap:           .55em;
  margin-top:    24px;
  padding:       12px 18px;
  background:    rgba(0,0,0,.45);
  border:        1px solid rgba(245,196,0,.35);
  border-radius: var(--lp-r);
  font-size:     .95rem;
  font-weight:   600;
  color:         var(--lp-ink);
  backdrop-filter: blur(6px);
}
.lp-live-banner.visible { display: flex; }
.lp-live-dot {
  width: 8px; height: 8px;
  border-radius: 50%;
  background:    var(--lp-gold);
  animation:     lpBlink 1.2s ease-in-out infinite;
  flex-shrink:   0;
}
.lp-live-banner code {
  background:     rgba(245,196,0,.14);
  padding:        2px 8px;
  border-radius:  5px;
  font-size:      1rem;
  letter-spacing: .1em;
  color:          var(--lp-gold);
}

/* =============================================
   セクション共通
============================================= */
.lp-section { position: relative; padding: 100px 0; }
.lp-section-dark { background: var(--lp-bg-2); }

.lp-eyebrow {
  display:        inline-block;
  color:          var(--lp-gold);
  font-weight:    700;
  letter-spacing: .18em;
  font-size:      .72rem;
  text-transform: uppercase;
  margin-bottom:  14px;
  padding-bottom: 6px;
  border-bottom:  1px solid rgba(245,196,0,.3);
}
.lp-section-title {
  font-size:     clamp(1.7rem, 4vw, 2.7rem);
  font-weight:   900;
  line-height:   1.18;
  margin-bottom: 20px;
  color:         var(--lp-ink);
}
.lp-section-title em { font-style: normal; color: var(--lp-gold); }
.lp-section-lead {
  color:       var(--lp-body);
  font-size:   1rem;
  line-height: 1.82;
}

/* =============================================
   スクロールアニメ
============================================= */
.lp-reveal {
  opacity:    0;
  transform:  translateY(24px);
  transition: opacity .65s ease, transform .65s ease;
}
.lp-reveal.lp-in { opacity: 1; transform: none; }

/* =============================================
   配信概要テーブル
============================================= */
.lp-spec-table {
  margin-top:    48px;
  overflow-x:    auto;
  border-radius: var(--lp-r-lg);
  border:        1px solid var(--lp-line);
}
.lp-spec-table table { width: 100%; border-collapse: collapse; }
.lp-spec-table th,
.lp-spec-table td {
  padding:       13px 22px;
  border-bottom: 1px solid var(--lp-line);
  font-size:     .93rem;
  text-align:    left;
}
.lp-spec-table tr:last-child th,
.lp-spec-table tr:last-child td { border-bottom: 0; }
.lp-spec-table th {
  background:  rgba(255,255,255,.025);
  color:       var(--lp-sub);
  font-weight: 500;
  white-space: nowrap;
  width:       140px;
}
.lp-spec-table td { color: var(--lp-body); }
.lp-spec-table strong.lp-accent {
  font-size:      1.1rem;
  letter-spacing: .1em;
  color:          var(--lp-gold);
}

/* =============================================
   Technology
============================================= */
.lp-tech-grid {
  display:               grid;
  grid-template-columns: 1fr 36px 1fr 36px 1fr;
  gap:                   12px;
  align-items:           center;
  margin-top:            52px;
}
.lp-tech-card,
.lp-tech-result {
  background:    var(--lp-card);
  border:        1px solid var(--lp-line);
  border-radius: var(--lp-r-lg);
  padding:       28px 24px;
  transition:    border-color .25s;
}
.lp-tech-card:hover   { border-color: rgba(124,85,255,.5); }
.lp-tech-result {
  border-color: rgba(245,196,0,.22);
  background:   var(--lp-card-2);
}
.lp-tech-result:hover { border-color: rgba(245,196,0,.55); }
.lp-tech-ico { font-size: 2rem; margin-bottom: 14px; }
.lp-tech-card h3,
.lp-tech-result h3 { font-size: 1.05rem; font-weight: 700; margin-bottom: 8px; color: var(--lp-ink); }
.lp-tech-card p,
.lp-tech-result p  { color: var(--lp-body); font-size: .9rem; line-height: 1.72; }
.lp-tech-plus,
.lp-tech-eq { text-align: center; font-size: 1.4rem; font-weight: 700; color: var(--lp-sub); }

/* =============================================
   Features
============================================= */
.lp-features {
  display:               grid;
  grid-template-columns: repeat(3, 1fr);
  gap:                   16px;
  margin-top:            48px;
}
.lp-feature {
  background:    var(--lp-card);
  border:        1px solid var(--lp-line);
  border-radius: var(--lp-r-lg);
  padding:       28px 26px;
  transition:    border-color .25s, transform .25s;
}
.lp-feature:hover { border-color: rgba(124,85,255,.45); transform: translateY(-4px); }
.lp-feature-ico { font-size: 2rem; margin-bottom: 14px; }
.lp-feature h3  { font-size: 1.05rem; font-weight: 700; margin-bottom: 10px; color: var(--lp-ink); }
.lp-feature p   { color: var(--lp-body); font-size: .9rem; line-height: 1.72; }

/* =============================================
   マップ（スプリット）
============================================= */
.lp-split {
  display:               grid;
  grid-template-columns: 1.1fr 1fr;
  gap:                   52px;
  align-items:           center;
  margin-top:            52px;
}
.lp-map-visual {
  aspect-ratio:  4 / 3;
  border-radius: var(--lp-r-lg);
  border:        1px solid var(--lp-line);
  overflow:      hidden;
  position:      relative;
  background:    var(--lp-card);
}
.lp-map-visual img {
  position: absolute; inset: 0;
  width: 100%; height: 100%;
  object-fit: cover;
}
.lp-map-list {
  list-style: none;
  display:    flex;
  flex-direction: column;
  gap:        20px;
  margin-top: 28px;
}
.lp-map-list li { display: flex; gap: 14px; align-items: flex-start; }
.lp-chk {
  flex:          0 0 auto;
  width:         22px; height: 22px;
  border-radius: 6px;
  background:    var(--lp-gold-dim);
  color:         var(--lp-gold);
  display:       flex;
  align-items:   center;
  justify-content: center;
  font-weight:   700;
  font-size:     .8rem;
  margin-top:    3px;
}
.lp-map-list b    { display: block; font-size: .95rem; color: var(--lp-ink); font-weight: 700; }
.lp-map-list span { color: var(--lp-body); font-size: .88rem; }

/* =============================================
   ギャラリー
============================================= */
.lp-gallery {
  display:               grid;
  grid-template-columns: repeat(4, 1fr);
  gap:                   10px;
  margin-top:            44px;
}
.lp-shot {
  aspect-ratio:  16 / 10;
  border-radius: var(--lp-r);
  overflow:      hidden;
  border:        1px solid var(--lp-line);
  background:    var(--lp-card);
  transition:    transform .2s, border-color .2s;
}
.lp-shot:hover { transform: scale(1.025); border-color: rgba(34,216,240,.35); }
.lp-shot:nth-child(1) { grid-column: span 2; grid-row: span 2; aspect-ratio: auto; }
.lp-shot img { width: 100%; height: 100%; object-fit: cover; display: block; }

/* =============================================
   遊び方 STEPS
============================================= */
.lp-steps {
  display:               grid;
  grid-template-columns: repeat(3, 1fr);
  gap:                   20px;
  margin-top:            48px;
}
.lp-step {
  background:    var(--lp-card);
  border:        1px solid var(--lp-line);
  border-radius: var(--lp-r-lg);
  padding:       28px 24px;
}
.lp-step-n {
  font-size:     1.6rem;
  font-weight:   900;
  color:         var(--lp-gold);
  line-height:   1;
  margin-bottom: 14px;
  opacity:       .75;
}
.lp-step h3 { font-size: 1.05rem; font-weight: 700; margin-bottom: 8px; color: var(--lp-ink); }
.lp-step p  { color: var(--lp-body); font-size: .9rem; line-height: 1.72; }

.lp-code-box {
  margin-top:    18px;
  display:       flex;
  gap:           10px;
  align-items:   center;
  flex-wrap:     wrap;
  background:    var(--lp-bg);
  border:        1px solid rgba(245,196,0,.35);
  border-radius: var(--lp-r);
  padding:       12px 16px;
}
.lp-code {
  font-size:      1.25rem;
  font-weight:    900;
  letter-spacing: .12em;
  color:          var(--lp-gold);
  font-variant-numeric: tabular-nums;
}
.lp-code-box button {
  background:  var(--lp-gold-dim);
  color:       var(--lp-gold);
  border:      0;
  border-radius: 7px;
  padding:     7px 13px;
  font-weight: 600;
  cursor:      pointer;
  font-size:   .82rem;
  font-family: var(--lp-font);
  transition:  background .15s;
}
.lp-code-box button:hover { background: rgba(245,196,0,.28); }

/* =============================================
   Business（自治体・観光向け）
============================================= */
.lp-biz-grid {
  display:               grid;
  grid-template-columns: repeat(3, 1fr);
  gap:                   16px;
  margin-top:            48px;
}
.lp-biz-card {
  background:    var(--lp-card);
  border:        1px solid var(--lp-line);
  border-radius: var(--lp-r-lg);
  padding:       24px;
}
.lp-biz-card h4 {
  color:          var(--lp-ink);
  font-size:      .78rem;
  font-weight:    700;
  letter-spacing: .14em;
  text-transform: uppercase;
  margin-bottom:  10px;
  padding-bottom: 8px;
  border-bottom:  1px solid var(--lp-line);
}
.lp-biz-card p { color: var(--lp-body); font-size: .9rem; line-height: 1.78; }
.lp-biz-cta { margin-top: 40px; text-align: center; }
.lp-biz-cta p { color: var(--lp-body); margin-bottom: 22px; font-size: .95rem; }

/* =============================================
   Comments — citeを下部に固定
============================================= */
.lp-comments {
  display:               grid;
  grid-template-columns: repeat(2, 1fr);
  gap:                   20px;
  margin-top:            48px;
}
.lp-comment-card {
  background:     var(--lp-card);
  border:         1px solid var(--lp-line);
  border-radius:  var(--lp-r-lg);
  padding:        30px;
  display:        flex;
  flex-direction: column;
}
.lp-comment-card blockquote {
  flex:          1;           /* 残り高さを使い切り cite を下に押す */
  font-size:     .93rem;
  color:         var(--lp-body);
  line-height:   1.85;
  border-left:   2px solid var(--lp-gold);
  padding-left:  18px;
  margin-bottom: 24px;
  font-style:    normal;
}
.lp-comment-card cite {
  display:        flex;
  flex-direction: column;
  gap:            3px;
  font-style:     normal;
  padding-top:    16px;
  border-top:     1px solid var(--lp-line);
}
.lp-comment-card cite strong { font-size: .95rem; color: var(--lp-ink); font-weight: 700; }
.lp-comment-card cite span   { font-size: .82rem; color: var(--lp-sub); }

/* =============================================
   Trailer
============================================= */
.lp-trailer-frame {
  max-width:     960px;
  margin:        44px auto 0;
  border-radius: var(--lp-r-lg);
  overflow:      hidden;
  border:        1px solid var(--lp-line);
  box-shadow:    0 20px 60px rgba(0,0,0,.5);
}
.lp-trailer-frame video { display: block; width: 100%; height: auto; background: #000; }
.lp-trailer-note { text-align: center; color: var(--lp-sub); font-size: .82rem; margin-top: 12px; }

/* =============================================
   Final CTA
============================================= */
.lp-final-cta {
  text-align:    center;
  border-radius: var(--lp-r-lg);
  background:    #0b0d16;
  border:        1px solid rgba(255,255,255,.10);
  padding:       80px 30px;
  position:      relative;
  overflow:      hidden;
}
.lp-final-cta::before {
  content:    "";
  position:   absolute;
  top: -80px; left: 50%;
  transform:  translateX(-50%);
  width:      560px; height: 260px;
  background: radial-gradient(ellipse, rgba(245,196,0,.13), transparent 65%);
  pointer-events: none;
}
.lp-final-cta h2 {
  font-size:     clamp(1.8rem, 4.5vw, 3rem);
  font-weight:   900;
  margin-bottom: 14px;
  position:      relative;
  color:         var(--lp-ink);
}
.lp-final-cta h2 .lp-accent { color: var(--lp-gold); }
.lp-final-cta p {
  color:         var(--lp-body);
  margin-bottom: 32px;
  font-size:     1rem;
  position:      relative;
}
.lp-final-cta .lp-btn { position: relative; }

/* =============================================
   Footer
============================================= */
#lp-footer {
  border-top: 1px solid var(--lp-line);
  padding:    48px 0 40px;
}
.lp-foot {
  display:         flex;
  justify-content: space-between;
  gap:             20px;
  flex-wrap:       wrap;
  align-items:     center;
  margin-bottom:   28px;
}
.lp-foot-links   { display: flex; gap: 20px; flex-wrap: wrap; }
.lp-foot-links a { color: var(--lp-sub); font-size: .88rem; transition: color .2s; }
.lp-foot-links a:hover { color: var(--lp-ink); }

.lp-credits {
  display:     flex;
  gap:         24px;
  flex-wrap:   wrap;
  align-items: center;
  padding:     16px 0;
  border-top:  1px solid var(--lp-line);
  border-bottom: 1px solid var(--lp-line);
  margin-bottom: 22px;
}
.lp-credit-item { display: flex; align-items: center; gap: 10px; font-size: .88rem; }
.lp-credit-label {
  color:          var(--lp-sub);
  font-size:      .72rem;
  font-weight:    600;
  letter-spacing: .1em;
  text-transform: uppercase;
  white-space:    nowrap;
}
.lp-credit-link { color: var(--lp-body); font-weight: 600; transition: color .2s; }
.lp-credit-link:hover { color: var(--lp-gold); }

.lp-disclaimer {
  font-size:   .72rem;
  color:       #4e5468;
  line-height: 1.8;
}

/* =============================================
   Responsive
============================================= */
@media (max-width: 860px) {
  .lp-nav-links { display: none; }
  .lp-burger    { display: block; }

  .lp-tech-grid { grid-template-columns: 1fr; gap: 10px; }
  .lp-tech-plus,
  .lp-tech-eq   { text-align: center; font-size: 1.2rem; }

  .lp-features,
  .lp-steps,
  .lp-biz-grid,
  .lp-comments  { grid-template-columns: 1fr; }

  .lp-split   { grid-template-columns: 1fr; gap: 28px; }
  .lp-gallery { grid-template-columns: repeat(2, 1fr); }
  .lp-shot:nth-child(1) { grid-column: span 2; grid-row: auto; aspect-ratio: 16/10; }
  .lp-section { padding: 72px 0; }
  .lp-spec-table th { width: 100px; }

  /* モバイル：均一暗幕を少し強くする */
  .lp-hero-bg::before {
    background: rgba(6,7,12,.82);
  }
}

@media (max-width: 480px) {
  .lp-hero h1   { font-size: 2.3rem; }
  .lp-hero-cta  { flex-direction: column; align-items: flex-start; }
  .lp-gallery   { grid-template-columns: 1fr; }
  .lp-shot:nth-child(1) { grid-column: span 1; }
  .lp-final-cta { padding: 56px 20px; }
  .lp-wrap      { padding: 0 18px; }
}
