/* ============================================================
   饭粒购 官网样式  styles.css
   配色：珊瑚粉渐变（取自品牌 LOGO）+ 干净中性色 + 玻璃拟态
   ============================================================ */

:root {
  --brand: #F0617B;
  --brand-2: #FF8C7A;
  --brand-soft: #FFEEF0;
  --ink: #2a2030;
  --ink-2: #5f5562;
  --muted: #968d97;
  --line: #f2e9ec;
  --bg: #fffdfc;
  --bg-tint: #fff5f4;
  --white: #ffffff;
  --radius: 20px;
  --radius-sm: 14px;
  --shadow-sm: 0 4px 16px rgba(42, 32, 48, .06);
  --shadow: 0 18px 50px rgba(240, 97, 123, .16);
  --shadow-lg: 0 30px 80px rgba(42, 32, 48, .16);
  --grad: linear-gradient(135deg, var(--brand) 0%, var(--brand-2) 100%);
  --ease: cubic-bezier(.22, 1, .36, 1);
  --container: 1160px;
  --font: "PingFang SC", "Hiragino Sans GB", "Microsoft YaHei", system-ui, -apple-system, "Segoe UI", Roboto, Helvetica, Arial, sans-serif;
}

* { margin: 0; padding: 0; box-sizing: border-box; }

html { scroll-behavior: smooth; -webkit-text-size-adjust: 100%; }

body {
  font-family: var(--font);
  color: var(--ink);
  background: var(--bg);
  line-height: 1.65;
  font-size: 16px;
  overflow-x: hidden;
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
}

a { color: inherit; text-decoration: none; }
ul { list-style: none; }
img, svg { display: block; max-width: 100%; }

.container {
  width: 100%;
  max-width: var(--container);
  margin: 0 auto;
  padding: 0 24px;
}
.container--narrow { max-width: 820px; }

.grad-text {
  background: var(--grad);
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
}

/* ---------- 按钮 ---------- */
.btn {
  --pad-y: 12px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  padding: var(--pad-y) 22px;
  border: none;
  border-radius: 999px;
  font-family: inherit;
  font-size: 15px;
  font-weight: 600;
  cursor: pointer;
  transition: transform .25s var(--ease), box-shadow .25s var(--ease), background .25s, color .25s;
  white-space: nowrap;
}
.btn--lg { --pad-y: 16px; padding-left: 30px; padding-right: 30px; font-size: 16px; }
.btn--sm { --pad-y: 9px; padding-left: 18px; padding-right: 18px; font-size: 14px; }

.btn--primary {
  background: var(--grad);
  color: #fff;
  box-shadow: 0 12px 28px rgba(240, 97, 123, .35);
}
.btn--primary:hover { transform: translateY(-2px); box-shadow: 0 18px 40px rgba(240, 97, 123, .45); }

.btn--soft {
  background: var(--white);
  color: var(--ink);
  box-shadow: var(--shadow-sm);
}
.btn--soft:hover { transform: translateY(-2px); box-shadow: var(--shadow); }

.btn--ghost {
  background: var(--brand-soft);
  color: var(--brand);
}
.btn--ghost:hover { background: var(--brand); color: #fff; }

/* ---------- 导航 ---------- */
.nav {
  position: fixed;
  inset: 0 0 auto 0;
  z-index: 100;
  transition: background .3s, box-shadow .3s, backdrop-filter .3s;
}
.nav.is-scrolled {
  background: rgba(255, 253, 251, .82);
  backdrop-filter: saturate(180%) blur(16px);
  -webkit-backdrop-filter: saturate(180%) blur(16px);
  box-shadow: 0 1px 0 var(--line);
}
.nav__inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 72px;
}
.brand { display: inline-flex; align-items: center; gap: 10px; font-weight: 800; }
.brand__name { font-size: 20px; letter-spacing: .5px; }
.brand__logo {
  width: 44px; height: 44px;
  border-radius: 50%;
  object-fit: cover;
  background: #fff;
  box-shadow: 0 4px 12px rgba(240,97,123,.18);
}
.brand__logo--footer {
  width: 40px; height: 40px;
}

.nav__links { display: flex; align-items: center; gap: 30px; }
.nav__links > a:not(.btn) {
  font-size: 15px;
  font-weight: 500;
  color: var(--ink-2);
  position: relative;
  transition: color .2s;
}
.nav__links > a:not(.btn)::after {
  content: "";
  position: absolute;
  left: 0; bottom: -6px;
  width: 0; height: 2px;
  background: var(--grad);
  border-radius: 2px;
  transition: width .25s var(--ease);
}
.nav__links > a:not(.btn):hover { color: var(--ink); }
.nav__links > a:not(.btn):hover::after { width: 100%; }

.nav__toggle {
  display: none;
  flex-direction: column;
  gap: 5px;
  width: 42px; height: 42px;
  align-items: center; justify-content: center;
  background: var(--white);
  border: none; border-radius: 12px;
  box-shadow: var(--shadow-sm);
  cursor: pointer;
}
.nav__toggle span {
  width: 20px; height: 2px; background: var(--ink); border-radius: 2px;
  transition: transform .3s var(--ease), opacity .3s;
}
.nav__toggle[aria-expanded="true"] span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
.nav__toggle[aria-expanded="true"] span:nth-child(2) { opacity: 0; }
.nav__toggle[aria-expanded="true"] span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }

/* ---------- Hero ---------- */
.hero {
  position: relative;
  padding: 132px 0 60px;
  overflow: hidden;
}
.hero__bg { position: absolute; inset: 0; z-index: 0; pointer-events: none; }
.blob {
  position: absolute;
  border-radius: 50%;
  filter: blur(60px);
  opacity: .55;
}
.blob--1 { width: 460px; height: 460px; top: -140px; right: -80px; background: radial-gradient(circle, #FFB6A8, transparent 70%); }
.blob--2 { width: 380px; height: 380px; top: 120px; left: -120px; background: radial-gradient(circle, #FF9DB0, transparent 70%); }
.blob--3 { width: 300px; height: 300px; bottom: -80px; right: 30%; background: radial-gradient(circle, #FFD3C9, transparent 70%); }

.hero__inner {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: 1.05fr .95fr;
  gap: 48px;
  align-items: center;
}

.pill {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 7px 16px;
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: 999px;
  font-size: 13.5px;
  color: var(--ink-2);
  box-shadow: var(--shadow-sm);
  margin-bottom: 22px;
}
.pill strong { color: var(--brand); }
.pill__dot {
  width: 8px; height: 8px; border-radius: 50%;
  background: #28c76f;
  box-shadow: 0 0 0 4px rgba(40,199,111,.18);
  animation: pulse 2s infinite;
}
@keyframes pulse { 0%,100%{ transform: scale(1); } 50%{ transform: scale(1.35); } }

.hero__title {
  font-size: clamp(34px, 5.2vw, 58px);
  line-height: 1.12;
  font-weight: 900;
  letter-spacing: -.5px;
  margin-bottom: 20px;
}
.hero__sub {
  font-size: 17px;
  color: var(--ink-2);
  max-width: 30em;
  margin-bottom: 30px;
}
.hero__cta { display: flex; flex-wrap: wrap; gap: 14px; margin-bottom: 28px; }

.hero__bullets { display: flex; flex-wrap: wrap; gap: 18px 26px; }
.hero__bullets li {
  display: inline-flex; align-items: center; gap: 7px;
  font-size: 14.5px; color: var(--ink-2);
}
.hero__bullets svg { color: var(--brand); }

/* ---------- 手机 mockup ---------- */
.hero__device { position: relative; display: flex; justify-content: center; }
.phone {
  position: relative;
  width: 310px;
  height: 620px;
  background: #1d1830;
  border-radius: 44px;
  padding: 12px;
  box-shadow: var(--shadow-lg), inset 0 0 0 2px rgba(255,255,255,.06);
  animation: floaty 6s ease-in-out infinite;
}
@keyframes floaty { 0%,100%{ transform: translateY(0); } 50%{ transform: translateY(-14px); } }
.phone__notch {
  position: absolute;
  top: 12px; left: 50%; transform: translateX(-50%);
  width: 120px; height: 26px;
  background: #1d1830;
  border-radius: 0 0 16px 16px;
  z-index: 3;
}
.phone__screen {
  width: 100%; height: 100%;
  background: #ece9f2;
  border-radius: 33px;
  overflow: hidden;
}

.chat { display: flex; flex-direction: column; height: 100%; }
.chat__bar {
  display: flex; align-items: center; justify-content: space-between;
  padding: 38px 18px 12px;
  background: #f7f7f9;
  font-weight: 600;
  border-bottom: 1px solid #e5e2ec;
}
.chat__back, .chat__more { color: var(--muted); font-size: 20px; }
.chat__title { font-size: 16px; }

.chat__body {
  flex: 1;
  padding: 18px 14px;
  display: flex;
  flex-direction: column;
  gap: 12px;
  background: linear-gradient(#ece9f2, #e9e6f0);
}
.bubble {
  max-width: 80%;
  padding: 10px 13px;
  border-radius: 14px;
  font-size: 13.5px;
  line-height: 1.5;
  box-shadow: 0 2px 6px rgba(0,0,0,.05);
}
.bubble--in { background: #fff; border-top-left-radius: 4px; align-self: flex-start; }
.bubble--out { background: #95ec69; border-top-right-radius: 4px; align-self: flex-end; word-break: break-all; }
.bubble--mini { font-size: 12.5px; }

.card {
  background: #fff;
  border-radius: 16px;
  overflow: hidden;
  box-shadow: 0 8px 24px rgba(29,24,48,.12);
  align-self: stretch;
}
.card__media {
  height: 92px;
  background: linear-gradient(135deg, #FFD9D3, #FFC4D0);
  position: relative;
}
.card__media::after {
  content: "🛍️";
  position: absolute; inset: 0;
  display: grid; place-items: center;
  font-size: 38px;
  opacity: .8;
}
.card__tag {
  position: absolute; top: 8px; left: 8px;
  background: rgba(255,0,54,.92); color: #fff;
  font-size: 11px; font-weight: 700;
  padding: 3px 8px; border-radius: 6px;
  z-index: 1;
}
.card__info { padding: 12px; }
.card__name { font-size: 13px; color: var(--ink); line-height: 1.4; margin-bottom: 8px; }
.card__prices { display: flex; align-items: center; gap: 8px; margin-bottom: 4px; }
.card__old { color: var(--muted); text-decoration: line-through; font-size: 12.5px; }
.card__coupon {
  background: #fff0f2; color: #ff3b5c;
  font-size: 11px; font-weight: 700;
  padding: 2px 7px; border-radius: 5px;
  border: 1px dashed #ffb3bf;
}
.card__final { display: flex; align-items: baseline; justify-content: space-between; margin-bottom: 10px; }
.card__now { color: #ff3b5c; font-size: 22px; font-weight: 800; }
.card__now small { font-size: 11px; font-weight: 500; margin-left: 3px; }
.card__rebate {
  background: linear-gradient(135deg,#FFE2DE,#FFE0E6);
  color: #d44a63; font-weight: 700; font-size: 12px;
  padding: 3px 9px; border-radius: 999px;
}
.card__buy {
  width: 100%;
  background: var(--grad);
  color: #fff; border: none;
  padding: 9px; border-radius: 10px;
  font-weight: 700; font-size: 13.5px; font-family: inherit;
  cursor: pointer;
}

.float-chip {
  position: absolute;
  background: var(--white);
  padding: 11px 16px;
  border-radius: 14px;
  box-shadow: var(--shadow);
  font-size: 13.5px;
  font-weight: 600;
  display: flex; align-items: center; gap: 8px;
  z-index: 2;
}
.float-chip span { font-size: 17px; }
.float-chip--a { top: 14%; left: -6%; animation: floaty 5s ease-in-out infinite; }
.float-chip--b { bottom: 16%; right: -4%; animation: floaty 5.5s ease-in-out .5s infinite; }

/* ---------- 平台滚动条 ---------- */
.marquee {
  margin-top: 56px;
  padding: 18px 0;
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
  -webkit-mask-image: linear-gradient(90deg, transparent, #000 12%, #000 88%, transparent);
  mask-image: linear-gradient(90deg, transparent, #000 12%, #000 88%, transparent);
  overflow: hidden;
}
.marquee__track {
  display: flex;
  gap: 60px;
  width: max-content;
  animation: scroll 22s linear infinite;
}
.marquee__track span {
  font-size: 22px;
  font-weight: 800;
  color: #d9d2e0;
  white-space: nowrap;
}
@keyframes scroll { to { transform: translateX(-50%); } }

/* ---------- 通用 section ---------- */
.section { padding: 96px 0; position: relative; }
.section--tint { background: var(--bg-tint); }

.sec-head { text-align: center; max-width: 640px; margin: 0 auto 56px; }
.sec-kicker {
  display: inline-block;
  font-size: 13px;
  font-weight: 700;
  letter-spacing: 1.5px;
  text-transform: uppercase;
  color: var(--brand);
  background: var(--brand-soft);
  padding: 5px 14px;
  border-radius: 999px;
  margin-bottom: 16px;
}
.sec-title {
  font-size: clamp(26px, 3.4vw, 38px);
  font-weight: 800;
  letter-spacing: -.5px;
  margin-bottom: 12px;
}
.sec-desc { font-size: 16.5px; color: var(--ink-2); }

/* ---------- 支持平台 ---------- */
.platforms {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 22px;
}
.plat {
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  padding: 32px 26px;
  text-align: center;
  transition: transform .3s var(--ease), box-shadow .3s var(--ease), border-color .3s;
}
.plat:hover {
  transform: translateY(-6px);
  box-shadow: var(--shadow);
  border-color: transparent;
}
.plat__logo {
  width: 64px; height: 64px;
  margin: 0 auto 18px;
  border-radius: 18px;
  display: grid; place-items: center;
  font-size: 30px; font-weight: 900; color: #fff;
  background: linear-gradient(135deg, var(--c), var(--c2));
  box-shadow: 0 10px 24px color-mix(in srgb, var(--c) 40%, transparent);
}
.plat h3 { font-size: 18px; margin-bottom: 6px; }
.plat p { font-size: 13.5px; color: var(--muted); }

/* ---------- 核心功能 ---------- */
.features {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 22px;
}
.feat {
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  padding: 30px;
  transition: transform .3s var(--ease), box-shadow .3s var(--ease);
}
.feat:hover { transform: translateY(-5px); box-shadow: var(--shadow); }
.feat--wide { grid-column: span 2; }
.feat__icon {
  width: 54px; height: 54px;
  border-radius: 16px;
  display: grid; place-items: center;
  color: var(--brand);
  background: var(--brand-soft);
  margin-bottom: 18px;
}
.feat h3 { font-size: 19px; margin-bottom: 8px; }
.feat p { color: var(--ink-2); font-size: 14.5px; }
.feat__demo {
  margin-top: 18px;
  display: flex; align-items: center; flex-wrap: wrap; gap: 10px;
  padding: 12px 14px;
  background: var(--bg-tint);
  border-radius: var(--radius-sm);
}
.feat__demo code {
  font-family: "SF Mono", ui-monospace, Menlo, Consolas, monospace;
  font-size: 12.5px; color: var(--ink-2);
}
.feat__arrow { color: var(--brand); font-weight: 700; }
.feat__chip {
  background: var(--grad); color: #fff;
  font-size: 12.5px; font-weight: 700;
  padding: 5px 11px; border-radius: 999px;
}
.feat__chip--soft { background: var(--white); color: var(--brand); border: 1px solid #ffd2da; }

/* ---------- 使用流程 ---------- */
.steps {
  position: relative;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}
.steps__line {
  position: absolute;
  top: 34px; left: 16%; right: 16%;
  height: 2px;
  background: repeating-linear-gradient(90deg, #ffc9cf 0 8px, transparent 8px 16px);
  z-index: 0;
}
.step {
  position: relative;
  z-index: 1;
  text-align: center;
  padding: 0 14px;
}
.step__num {
  width: 68px; height: 68px;
  margin: 0 auto 20px;
  border-radius: 22px;
  display: grid; place-items: center;
  font-size: 28px; font-weight: 900; color: #fff;
  background: var(--grad);
  box-shadow: 0 14px 30px rgba(240,97,123,.35);
  transition: transform .3s var(--ease);
}
.step:hover .step__num { transform: translateY(-5px) rotate(-4deg); }
.step h3 { font-size: 19px; margin-bottom: 8px; }
.step p { color: var(--ink-2); font-size: 14.5px; max-width: 24em; margin: 0 auto; }

/* ---------- 数据 ---------- */
.section--dark {
  background: linear-gradient(135deg, #2a2140, #1d1830);
  color: #fff;
  margin: 0;
}
.stats {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 24px;
  text-align: center;
}
.stat__num {
  display: block;
  font-size: clamp(32px, 4.4vw, 48px);
  font-weight: 900;
  letter-spacing: -1px;
  background: linear-gradient(135deg, #FFB37A, #FF8AA8);
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
  line-height: 1.1;
}
.stat__label { font-size: 14.5px; color: rgba(255,255,255,.6); }

/* ---------- FAQ ---------- */
.faq { display: flex; flex-direction: column; gap: 14px; }
.faq__item {
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: var(--radius-sm);
  overflow: hidden;
  transition: box-shadow .3s, border-color .3s;
}
.faq__item[open] { box-shadow: var(--shadow-sm); border-color: #ffd2da; }
.faq__item summary {
  cursor: pointer;
  list-style: none;
  padding: 20px 56px 20px 22px;
  font-weight: 600;
  font-size: 16px;
  position: relative;
}
.faq__item summary::-webkit-details-marker { display: none; }
.faq__item summary::after {
  content: "+";
  position: absolute;
  right: 22px; top: 50%; transform: translateY(-50%);
  width: 26px; height: 26px;
  display: grid; place-items: center;
  font-size: 22px; font-weight: 400; color: var(--brand);
  background: var(--brand-soft);
  border-radius: 8px;
  transition: transform .3s var(--ease);
}
.faq__item[open] summary::after { content: "−"; transform: translateY(-50%) rotate(180deg); }
.faq__body { padding: 0 22px 20px; }
.faq__body p { color: var(--ink-2); font-size: 14.5px; }

/* ---------- 关注引导 ---------- */
.follow {
  position: relative;
  display: grid;
  grid-template-columns: 1fr auto;
  gap: 48px;
  align-items: center;
  padding: 54px 56px;
  border-radius: 32px;
  background: linear-gradient(135deg, var(--brand) 0%, var(--brand-2) 100%);
  color: #fff;
  overflow: hidden;
  box-shadow: var(--shadow-lg);
}
.follow__bg {
  position: absolute; inset: 0;
  background:
    radial-gradient(circle at 80% -10%, rgba(255,255,255,.25), transparent 45%),
    radial-gradient(circle at 0% 120%, rgba(255,255,255,.18), transparent 40%);
}
.follow__copy { position: relative; }
.follow__copy h2 { font-size: clamp(24px, 3vw, 34px); font-weight: 800; margin-bottom: 12px; }
.follow__copy > p { font-size: 16px; opacity: .92; margin-bottom: 20px; max-width: 30em; }
.follow__points { display: flex; flex-direction: column; gap: 8px; }
.follow__points li { font-size: 15px; opacity: .95; }

.qr { position: relative; text-align: center; }
.qr__frame {
  position: relative;
  width: 188px; height: 188px;
  background: #fff;
  border-radius: 22px;
  padding: 16px;
  box-shadow: 0 20px 40px rgba(0,0,0,.2);
}
.qr__img { width: 100%; height: 100%; border-radius: 6px; }
.qr__logo {
  position: absolute; top: 50%; left: 50%; transform: translate(-50%,-50%);
  width: 40px; height: 40px;
  display: grid; place-items: center;
  background: var(--grad); color: #fff;
  font-weight: 900; font-size: 20px;
  border-radius: 11px;
  border: 3px solid #fff;
}
.qr__hint { margin-top: 14px; font-size: 14px; opacity: .92; }

/* ---------- 页脚 ---------- */
.footer { background: #16121f; color: #b9b3c7; padding: 64px 0 32px; }
.footer__inner {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1fr;
  gap: 32px;
  padding-bottom: 40px;
  border-bottom: 1px solid rgba(255,255,255,.08);
}
.footer .brand { color: #fff; margin-bottom: 14px; }
.footer__brand p { font-size: 14px; line-height: 1.7; color: #8d869c; }
.footer__col h4 { color: #fff; font-size: 15px; margin-bottom: 16px; }
.footer__col a, .footer__muted {
  display: block;
  font-size: 14px;
  color: #8d869c;
  margin-bottom: 10px;
  transition: color .2s;
}
.footer__col a:hover { color: var(--brand); }
.footer__bottom {
  display: flex;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 8px;
  padding-top: 24px;
  font-size: 13px;
  color: #6f697d;
}

/* ---------- 滚动入场动画 ---------- */
.reveal {
  opacity: 0;
  transform: translateY(28px);
  transition: opacity .7s var(--ease), transform .7s var(--ease);
  transition-delay: var(--reveal-delay, 0ms);
}
.reveal.is-in { opacity: 1; transform: none; }

.pop {
  opacity: 0;
  transform: scale(.9);
  transition: opacity .5s var(--ease), transform .5s var(--ease);
  transition-delay: var(--reveal-delay, 0ms);
}
.pop.is-in { opacity: 1; transform: scale(1); }

@media (prefers-reduced-motion: reduce) {
  *, *::before, *::after { animation-duration: .001ms !important; animation-iteration-count: 1 !important; }
  .reveal, .pop { opacity: 1; transform: none; transition: none; }
  html { scroll-behavior: auto; }
}

/* ---------- 响应式 ---------- */
@media (max-width: 920px) {
  .hero__inner { grid-template-columns: 1fr; gap: 36px; text-align: center; }
  .hero__copy { display: flex; flex-direction: column; align-items: center; }
  .hero__cta, .hero__bullets { justify-content: center; }
  .features { grid-template-columns: repeat(2, 1fr); }
  .feat--wide { grid-column: span 2; }
  .platforms { grid-template-columns: repeat(2, 1fr); }
  .stats { grid-template-columns: repeat(2, 1fr); gap: 36px 24px; }
  .follow { grid-template-columns: 1fr; text-align: center; gap: 32px; }
  .follow__copy { display: flex; flex-direction: column; align-items: center; }
  .follow__points { align-items: center; }
}

@media (max-width: 720px) {
  .nav__links {
    position: fixed;
    inset: 72px 0 auto 0;
    flex-direction: column;
    align-items: stretch;
    gap: 4px;
    padding: 16px 24px 24px;
    background: rgba(255,253,251,.97);
    backdrop-filter: blur(16px);
    box-shadow: 0 20px 40px rgba(29,24,48,.12);
    transform: translateY(-130%);
    transition: transform .35s var(--ease);
  }
  .nav__links.is-open { transform: translateY(0); }
  .nav__links > a:not(.btn) { padding: 12px 8px; border-radius: 10px; }
  .nav__links > a:not(.btn)::after { display: none; }
  .nav__links .btn { margin-top: 8px; }
  .nav__toggle { display: flex; }
  .nav.is-scrolled, .nav { background: rgba(255,253,251,.9); backdrop-filter: blur(12px); }
}

@media (max-width: 560px) {
  .section { padding: 68px 0; }
  .container { padding: 0 18px; }
  .features, .platforms, .steps, .stats { grid-template-columns: 1fr; }
  .feat--wide { grid-column: span 1; }
  .steps__line { display: none; }
  .follow { padding: 40px 26px; border-radius: 26px; }
  .footer__inner { grid-template-columns: 1fr 1fr; }
  .hero { padding-top: 110px; }
  .float-chip--a { left: 0; }
  .float-chip--b { right: 0; }
}

