/* Bitlyne — brand UI refinements (light, premium product marketing) */

:root {
  --content: 1180px;
  --measure: 40rem;
  --shadow-sm: 0 1px 2px rgba(29, 29, 31, 0.04);
  --shadow-md: 0 16px 48px -20px rgba(29, 29, 31, 0.14);
  --shadow-lg: 0 40px 80px -32px rgba(29, 29, 31, 0.22);
  --shadow-hero:
    0 0 0 1px rgba(29, 29, 31, 0.06),
    0 28px 80px -24px rgba(29, 29, 31, 0.28),
    0 8px 24px rgba(245, 82, 28, 0.08);
}

.page-sheen {
  position: fixed;
  inset: 0;
  z-index: 0;
  pointer-events: none;
  background:
    radial-gradient(ellipse 70% 32% at 50% -8%, rgba(245, 82, 28, 0.055), transparent 58%);
}

/* Included foundation strip */
.included-strip {
  list-style: none;
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 12px;
  margin: 40px auto 8px;
  max-width: var(--content);
  padding: 0;
}
.included-strip li {
  background: #fff;
  border-radius: 20px;
  padding: 20px 18px;
  text-align: left;
  box-shadow: var(--shadow-sm);
  transition: transform 0.2s ease, box-shadow 0.2s ease;
}
.included-strip li:hover {
  transform: translateY(-3px);
  box-shadow: var(--shadow-md);
}
.included-strip strong {
  display: block;
  font-size: 1rem;
  font-weight: 600;
  letter-spacing: -0.02em;
  margin-bottom: 6px;
  color: var(--text);
}
.included-strip span {
  display: block;
  font-size: 0.9rem;
  line-height: 1.4;
  color: var(--muted);
}

@media (max-width: 900px) {
  .included-strip { grid-template-columns: 1fr 1fr; }
}
@media (max-width: 560px) {
  .included-strip { grid-template-columns: 1fr; }
}

/* ── Buttons ── */
.btn-primary {
  background: linear-gradient(180deg, #ff6a33 0%, #f5521c 55%, #e84814 100%);
  box-shadow: 0 8px 24px rgba(245, 82, 28, 0.28);
}
.btn-primary:hover {
  background: linear-gradient(180deg, #ff7a45 0%, #e84814 100%);
  box-shadow: 0 12px 32px rgba(245, 82, 28, 0.34);
  transform: translateY(-1px) scale(1.01);
}
.btn-ghost {
  padding-inline: 8px;
}
.btn-ghost:hover {
  opacity: 1;
  color: var(--accent);
}

/* ── Header ── */
.site-header {
  background: rgba(245, 245, 247, 0.65);
}
.site-header.is-scrolled,
body[data-page="security"] .site-header {
  background: rgba(255, 255, 255, 0.82);
  box-shadow: 0 1px 0 rgba(29, 29, 31, 0.06);
}
.logo-img { height: 36px; }
.header-nav { gap: 22px; }
.header-cta {
  box-shadow: 0 6px 18px rgba(245, 82, 28, 0.22);
}
.header-badge {
  border: none;
  background: rgba(255, 255, 255, 0.7);
  box-shadow: var(--shadow-sm);
}

/* ── Hero stage as device ── */
.hero { padding-top: 40px; }
.hero-top { padding-bottom: 36px; max-width: 760px; }
.hero-brand {
  font-size: clamp(2.2rem, 5vw, 3rem) !important;
}
.hero-mark { margin-bottom: 18px !important; }
.hero-mark-icon { width: 42px !important; height: 42px !important; }
.hero h1 {
  max-width: 11em !important;
  font-size: clamp(2.35rem, 5.2vw, 3.6rem) !important;
}
.hero-sub { max-width: 36rem !important; }
.hero-stage {
  max-width: 1000px;
  margin-top: 4px;
  padding: 0 20px 8px;
}
.hero-stage::before {
  content: "";
  position: absolute;
  left: 50%;
  top: 40%;
  transform: translate(-50%, -50%);
  width: min(90%, 880px);
  height: 70%;
  background: radial-gradient(ellipse at center, rgba(245, 82, 28, 0.14), transparent 68%);
  filter: blur(40px);
  z-index: 0;
  pointer-events: none;
}
.hero-demo {
  border-radius: 28px;
  border: 1px solid rgba(29, 29, 31, 0.08);
  box-shadow: var(--shadow-hero);
  background: #fff;
}
.hero-demo .shot-chrome-bar,
.hero-demo > .shot-chrome-bar {
  background: linear-gradient(180deg, #fbfbfd, #f3f4f6);
  padding: 12px 16px;
}
.hero-demo-caption {
  padding: 14px 18px 10px;
}
.hero-demo-label {
  font-size: 0.9rem;
  font-weight: 600;
  letter-spacing: -0.015em;
}
.hero-demo-dots { padding-bottom: 14px; }
.hero-demo-toggle {
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
  border-color: rgba(29, 29, 31, 0.08);
}

/* ── Thesis as featured quote band ── */
.thesis {
  margin-top: 100px;
  padding: 56px 32px;
  max-width: none;
  background:
    radial-gradient(ellipse at 50% 0%, rgba(245, 82, 28, 0.07), transparent 55%),
    #fff;
  border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
}
.thesis-h {
  font-size: clamp(1.75rem, 3.8vw, 2.5rem);
  max-width: 44rem;
  margin-left: auto;
  margin-right: auto;
}
.thesis-sub {
  margin-left: auto;
  margin-right: auto;
}

/* ── Section rhythm ── */
.mk-section {
  padding: 110px 28px 32px;
}
.mk-band {
  padding: 120px 28px 100px;
  margin-top: 40px;
  background: linear-gradient(180deg, #ffffff 0%, #fbfbfd 100%);
}
.section-label {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 6px 12px;
  border-radius: 999px;
  background: rgba(245, 82, 28, 0.08);
  color: var(--accent-deep);
  font-size: 0.8rem;
  margin-bottom: 14px;
}
.section-h2 {
  font-size: clamp(2.25rem, 5vw, 3.4rem);
}

/* ── Pillars ── */
.pillar-3 { gap: 18px; margin-top: 48px; }
.pillar {
  background: #fff;
  border-radius: 24px;
  padding: 30px 26px;
  box-shadow: var(--shadow-sm);
  transition: transform 0.22s ease, box-shadow 0.22s ease;
}
.pillar:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-md);
  background: #fff;
}

/* ── Path compare ── */
.path-compare { gap: 20px; margin-top: 56px; }
.path-card {
  padding: 36px 32px;
  transition: transform 0.25s ease, box-shadow 0.25s ease;
}
.path-card--old {
  background: #f0f0f2;
}
.path-card--new {
  position: relative;
  overflow: hidden;
}
.path-card--new::before {
  content: "";
  position: absolute;
  left: 0;
  right: 0;
  top: 0;
  height: 3px;
  background: linear-gradient(90deg, #f5521c, #ff8a5c);
}
.path-card--new:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-lg);
}
.path-vs {
  width: 44px;
  height: 44px;
  border-radius: 999px;
  background: #fff;
  box-shadow: var(--shadow-sm);
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-size: 0.72rem;
  letter-spacing: 0.06em;
}

/* ── Trust duo ── */
.trust-duo { gap: 20px; }
.trust-duo article {
  padding: 32px 30px;
  border: 1px solid transparent;
  transition: border-color 0.2s, box-shadow 0.2s, transform 0.2s;
}
.trust-duo article:last-child {
  background: #fff;
  border-color: rgba(245, 82, 28, 0.16);
  box-shadow: var(--shadow-md);
}
.trust-duo article:hover {
  transform: translateY(-3px);
}

/* ── Meta ── */
.meta-callout {
  border-radius: 32px;
  padding: 40px 40px;
  background: #fff;
  box-shadow: var(--shadow-md);
}
.meta-grid { gap: 16px; margin-top: 36px; }
.meta-card {
  padding: 26px 22px 28px;
  border-radius: 22px;
  background: #fff;
  box-shadow: var(--shadow-sm);
  min-height: 148px;
  transition: transform 0.22s ease, box-shadow 0.22s ease;
}
.meta-card:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-md);
  background: #fff;
}
.mk-band .meta-card,
.mk-section .meta-card {
  background: #fff;
}
.mk-band .meta-callout { background: var(--bg); box-shadow: none; }

/* ── Steps ── */
.steps-clean li {
  border-radius: 22px;
  padding: 26px 28px 26px 76px;
  box-shadow: var(--shadow-sm);
  transition: box-shadow 0.2s, transform 0.2s;
}
.steps-clean li:hover {
  transform: translateY(-2px);
  box-shadow: var(--shadow-md);
}
.steps-clean li::before {
  left: 22px;
  top: 24px;
  width: 32px;
  height: 32px;
  border-radius: 10px;
  background: rgba(245, 82, 28, 0.1);
  line-height: 32px;
  text-align: center;
  font-size: 0.85rem;
}

/* ── Screenshots ── */
.shot-chrome {
  border-radius: 22px;
  box-shadow: var(--shadow-md);
  transition: transform 0.25s ease, box-shadow 0.25s ease;
}
.desk-duo .shot-chrome:hover,
.showcase .shot-chrome:hover,
.mp-card .shot-chrome:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-lg);
}
.shot-chrome-bar {
  background: linear-gradient(180deg, #fbfbfd, #f2f3f5);
}
.desk-duo figcaption,
.showcase-item figcaption,
.mp-card figcaption {
  font-size: 0.95rem;
  line-height: 1.45;
  padding-top: 4px;
}

/* ── Marketplace flow ── */
.mp-flow { gap: 14px; margin-top: 40px; }
.mp-flow article {
  border-radius: 22px;
  padding: 24px 20px;
  background: #fff;
  box-shadow: var(--shadow-sm);
  transition: transform 0.2s, box-shadow 0.2s;
}
.mp-flow article:hover {
  transform: translateY(-3px);
  box-shadow: var(--shadow-md);
}
.mp-flow span {
  width: 32px;
  height: 32px;
  border-radius: 10px;
}

.community-band {
  margin-top: 56px;
  border-radius: 32px;
  padding: 44px 40px;
  box-shadow: var(--shadow-lg);
}

.mp-dev {
  margin-top: 56px;
  border-radius: 32px;
  padding: 36px 32px;
}
.mp-dev .section-label {
  background: rgba(245, 82, 28, 0.18);
  color: #ffb089;
}
.mp-dev .btn-ghost {
  color: #fff;
  border: 1px solid rgba(255, 255, 255, 0.22);
  padding: 12px 20px;
  background: rgba(255, 255, 255, 0.06);
}
.mp-dev .btn-ghost:hover {
  background: rgba(245, 82, 28, 0.28);
  border-color: rgba(245, 82, 28, 0.5);
  color: #fff;
  opacity: 1;
}

/* ── System stack ── */
.sys-stack {
  max-width: 720px;
  margin: 48px auto 0;
}
.sys-layer {
  border-radius: 22px !important;
  padding: 22px 24px !important;
  text-align: left;
  box-shadow: var(--shadow-sm);
}
.sys-layer--core {
  background: linear-gradient(135deg, #1d1d1f, #2c2c2e) !important;
  color: #f5f5f7 !important;
  box-shadow: var(--shadow-md) !important;
}
.sys-layer--core strong { color: #fff; }
.sys-layer--core em { color: #a1a1a6; }
.sys-grid { gap: 16px; margin-top: 40px; }
.sys-card {
  border-radius: 24px;
  padding: 30px 26px;
}

/* ── Promise ── */
.promise {
  border: none;
  border-radius: 32px;
  box-shadow: var(--shadow-lg);
}
.promise-main { padding: 40px 36px; }
.promise-side {
  padding: 40px 32px;
  background: linear-gradient(165deg, #2c2c2e 0%, #1d1d1f 100%);
}
.promise-lead { font-size: 1.05rem; line-height: 1.5; }
.promise-list li { font-size: 1rem; }

/* ── Pricing ── */
.price-row {
  gap: 16px;
  margin-top: 40px;
}
.price-card {
  border: none;
  border-radius: 24px;
  padding: 32px 26px;
  box-shadow: var(--shadow-sm);
  text-align: left;
  transition: transform 0.22s, box-shadow 0.22s;
}
.price-card:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-md);
}
.price-card--hi {
  background: linear-gradient(165deg, #fff8f5 0%, #fff 60%);
  box-shadow: 0 18px 40px -16px rgba(245, 82, 28, 0.28);
  position: relative;
  overflow: hidden;
}
.price-card--hi::before {
  content: "";
  position: absolute;
  top: 0; left: 0; right: 0;
  height: 3px;
  background: linear-gradient(90deg, #f5521c, #ff8a5c);
}
.price-card h3 {
  font-size: 1.05rem;
  font-weight: 600;
  letter-spacing: -0.02em;
}
.price-n {
  font-size: 2.25rem;
  font-weight: 600;
  letter-spacing: -0.04em;
  color: var(--text);
}
.price-card--hi .price-n { color: var(--accent-deep); }
.price-card p:last-child {
  font-size: 0.98rem;
  line-height: 1.5;
}

/* ── FAQ ── */
.faq-list { gap: 10px; max-width: 680px; }
.faq-item {
  border: none;
  border-radius: 18px;
  box-shadow: var(--shadow-sm);
  background: #fff;
  transition: box-shadow 0.2s;
}
.faq-item[open] { box-shadow: var(--shadow-md); }
.faq-item summary {
  padding: 18px 20px;
  font-size: 1.02rem;
  font-weight: 600;
  letter-spacing: -0.015em;
}

/* ── Final CTA ── */
.final-cta { margin-top: 64px; margin-bottom: 130px; }
.fcta-inner {
  border-radius: 32px;
  padding: 64px 40px;
  box-shadow: var(--shadow-lg);
  background:
    radial-gradient(ellipse at 50% -20%, rgba(245, 82, 28, 0.12), transparent 55%),
    #fff;
}
.access-form .btn-primary {
  margin-top: 8px;
  padding: 16px 22px;
  font-size: 1.02rem;
}
.af-field input {
  border-radius: 16px;
  padding: 15px 14px 15px 44px;
  font-size: 1rem;
  background: var(--bg);
  border-color: transparent;
}
.af-field input:focus {
  background: #fff;
}

/* ── Footer ── */
.site-footer {
  background: #1d1d1f;
  padding: 64px 28px 32px;
}
.footer-brand p { color: #a1a1a6; font-size: 0.95rem; }
.footer-col h4 {
  text-transform: none;
  letter-spacing: -0.01em;
  font-size: 0.8rem;
  font-weight: 600;
  color: #86868b;
}
.footer-col a { font-weight: 500; }
.footer-col a:hover { color: #ff8a5c; }

/* ── Bitlyne Agent ── */
.agent-flow {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 14px;
  margin: 40px auto 0;
  max-width: var(--content);
  text-align: left;
}
.agent-flow article {
  background: #fff;
  border-radius: 22px;
  padding: 24px 20px;
  box-shadow: var(--shadow-sm);
  transition: transform 0.25s ease, box-shadow 0.25s ease;
}
.agent-flow article:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-md);
}
.agent-flow span {
  display: block;
  font-size: 0.8rem;
  font-weight: 600;
  color: var(--accent-deep);
  margin-bottom: 10px;
  letter-spacing: -0.01em;
}
.agent-flow h3 {
  font-size: 1.05rem;
  font-weight: 600;
  letter-spacing: -0.02em;
  margin-bottom: 8px;
}
.agent-flow p {
  font-size: 0.95rem;
  line-height: 1.45;
  color: var(--muted);
  margin: 0;
}

.agent-creates {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 12px;
  margin: 20px auto 0;
  max-width: var(--content);
  text-align: left;
}
.agent-creates article {
  background: #fff;
  border-radius: 18px;
  padding: 18px 18px;
  box-shadow: var(--shadow-sm);
  transition: transform 0.22s ease, box-shadow 0.22s ease;
}
.agent-creates article:hover {
  transform: translateY(-3px);
  box-shadow: var(--shadow-md);
}
.agent-creates strong {
  display: block;
  font-size: 0.98rem;
  font-weight: 600;
  letter-spacing: -0.02em;
  margin-bottom: 6px;
}
.agent-creates span {
  font-size: 0.9rem;
  line-height: 1.45;
  color: var(--muted);
}

.agent-prompt-lead {
  margin-bottom: 24px !important;
}

.prompt-stack {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 16px;
  margin: 0 auto;
  max-width: var(--content);
  text-align: left;
}
.prompt-card--lite {
  margin: 0;
  background: #fff;
  border-radius: 24px;
  padding: 26px 24px 22px;
  box-shadow: var(--shadow-sm);
  border: 1px solid transparent;
  transition: transform 0.35s cubic-bezier(0.22, 1, 0.36, 1),
    box-shadow 0.35s ease, border-color 0.3s ease;
}
.prompt-card--lite:hover {
  transform: translateY(-5px);
  box-shadow: var(--shadow-lg);
  border-color: rgba(245, 82, 28, 0.18);
}
.prompt-kicker {
  font-size: 0.78rem;
  font-weight: 650;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  color: var(--accent-deep);
  margin-bottom: 14px;
}
.prompt-quote {
  margin: 0 0 16px;
  padding: 0;
  border: none;
  font-size: 1.02rem;
  font-weight: 500;
  letter-spacing: -0.02em;
  line-height: 1.5;
  color: var(--text);
  quotes: none;
}
.prompt-result {
  margin: 0;
  padding-top: 14px;
  border-top: 1px solid var(--border);
  font-size: 0.92rem;
  line-height: 1.45;
  color: var(--muted);
}
.prompt-result strong {
  display: block;
  color: var(--text);
  font-weight: 600;
  font-size: 0.82rem;
  letter-spacing: -0.01em;
  margin-bottom: 4px;
}

/* Future of Agent */
.evolve {
  margin: 64px auto 0;
  max-width: var(--content);
  padding: 40px 36px;
  border-radius: 32px;
  text-align: left;
  background:
    radial-gradient(ellipse at 0% 0%, rgba(245, 82, 28, 0.1), transparent 50%),
    linear-gradient(165deg, #1d1d1f 0%, #2c2c2e 100%);
  color: #f5f5f7;
  box-shadow: var(--shadow-lg);
}
.evolve .section-label {
  background: rgba(245, 82, 28, 0.2);
  color: #ffb089;
}
.evolve-intro h3 {
  font-size: clamp(1.45rem, 2.8vw, 1.9rem);
  font-weight: 600;
  letter-spacing: -0.03em;
  line-height: 1.2;
  margin: 10px 0 14px;
  color: #fff;
}
.evolve-intro > p:last-child {
  font-size: 1.05rem;
  line-height: 1.55;
  color: #a1a1a6;
  max-width: 40rem;
  margin: 0;
}
.evolve-timeline {
  list-style: none;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 14px;
  margin: 32px 0 0;
  padding: 0;
  counter-reset: evolve;
}
.evolve-timeline li {
  counter-increment: evolve;
  background: rgba(255, 255, 255, 0.05);
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: 20px;
  padding: 22px 20px;
  transition: transform 0.35s cubic-bezier(0.22, 1, 0.36, 1),
    background 0.3s ease, border-color 0.3s ease;
}
.evolve-timeline li:hover {
  transform: translateY(-4px);
  background: rgba(255, 255, 255, 0.08);
  border-color: rgba(245, 82, 28, 0.35);
}
.evolve-timeline li::before {
  content: "0" counter(evolve);
  display: block;
  font-size: 0.78rem;
  font-weight: 650;
  color: #ff8a5c;
  margin-bottom: 10px;
}
.evolve-timeline strong {
  display: block;
  font-size: 1.05rem;
  font-weight: 600;
  letter-spacing: -0.02em;
  margin-bottom: 8px;
  color: #fff;
}
.evolve-timeline span {
  font-size: 0.92rem;
  line-height: 1.5;
  color: #a1a1a6;
}
.evolve-tag {
  margin: 28px 0 0;
  font-size: 1.15rem;
  font-weight: 500;
  letter-spacing: -0.025em;
  line-height: 1.4;
  color: #e8eaef;
  max-width: 36rem;
}

.agent-note {
  max-width: var(--measure);
  margin: 36px auto 0;
  font-size: 1.05rem;
  line-height: 1.5;
  color: var(--muted);
  text-align: center;
}

.pkg-path {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 16px;
  margin: 40px auto 0;
  max-width: 800px;
  text-align: left;
}
.pkg-path > div {
  background: #fff;
  border-radius: 22px;
  padding: 26px 24px;
  box-shadow: var(--shadow-sm);
  transition: transform 0.22s ease, box-shadow 0.22s ease;
}
.pkg-path > div:hover {
  transform: translateY(-3px);
  box-shadow: var(--shadow-md);
}
.pkg-path h3 {
  font-size: 1.1rem;
  font-weight: 600;
  letter-spacing: -0.02em;
  margin-bottom: 12px;
}
.pkg-path ul {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 10px;
}
.pkg-path li {
  position: relative;
  padding-left: 18px;
  font-size: 0.98rem;
  line-height: 1.45;
  color: var(--muted);
}
.pkg-path li::before {
  content: "→";
  position: absolute;
  left: 0;
  color: var(--accent-deep);
  font-weight: 700;
}

/* ── Motion / transitions ── */
a, button, .btn-primary, .btn-ghost {
  transition: color 0.25s ease, background 0.25s ease, border-color 0.25s ease,
    transform 0.3s cubic-bezier(0.22, 1, 0.36, 1), box-shadow 0.3s ease, opacity 0.25s ease;
}
.shot-chrome,
.meta-card,
.pillar,
.path-card,
.price-card,
.faq-item,
.agent-flow article,
.agent-creates article,
.included-strip li,
.mp-flow article,
.sys-card {
  transition: transform 0.4s cubic-bezier(0.22, 1, 0.36, 1),
    box-shadow 0.4s ease, border-color 0.3s ease, background 0.3s ease;
}
.faq-item summary {
  transition: color 0.25s ease, background 0.25s ease;
}
.faq-item[open] summary { color: var(--accent-deep); }
.hero-demo {
  transition: box-shadow 0.5s ease, transform 0.5s cubic-bezier(0.22, 1, 0.36, 1);
}
.section-label {
  transition: background 0.3s ease, color 0.3s ease;
}

html.js-reveal .reveal-block {
  opacity: 0;
  transform: translateY(36px);
  filter: blur(2px);
  transition: opacity 0.9s cubic-bezier(0.22, 1, 0.36, 1),
    transform 0.9s cubic-bezier(0.22, 1, 0.36, 1),
    filter 0.9s ease;
}
html.js-reveal .reveal-block.visible {
  opacity: 1;
  transform: none;
  filter: none;
}
html.js-reveal .reveal-item {
  opacity: 0;
  transform: translateY(22px);
  transition: opacity 0.65s cubic-bezier(0.22, 1, 0.36, 1),
    transform 0.65s cubic-bezier(0.22, 1, 0.36, 1);
  transition-delay: calc(var(--ri, 0) * 70ms);
}
html.js-reveal .reveal-item.visible {
  opacity: 1;
  transform: none;
}
@media (prefers-reduced-motion: reduce) {
  html.js-reveal .reveal-block,
  html.js-reveal .reveal-item {
    opacity: 1 !important;
    transform: none !important;
    filter: none !important;
    transition: none !important;
  }
}

@media (max-width: 900px) {
  .agent-flow,
  .agent-creates,
  .prompt-stack,
  .pkg-path,
  .evolve-timeline { grid-template-columns: 1fr; }
  .evolve { padding: 28px 22px; }
}

@media (max-width: 900px) {
  .thesis { padding: 40px 24px; margin-top: 64px; }
  .mk-section { padding-top: 80px; }
  .path-vs { display: none; }
  .community-band,
  .mp-dev,
  .fcta-inner,
  .promise { border-radius: 24px; }
}
