:root {
  --cream: #f7f2ea;
  --cream-deep: #efe6d8;
  --ink: #1f1812;
  --ink-soft: #5c5148;
  --ink-muted: #8a7f74;
  --mango: #f28a1a;
  --mango-deep: #d96508;
  --mango-glow: rgba(242, 138, 26, 0.22);
  --card: rgba(255, 252, 247, 0.82);
  --line: rgba(31, 24, 18, 0.08);
  --dark: #17120e;
  --dark-card: #221b15;
  --radius: 18px;
  --radius-sm: 12px;
  --shadow: 0 24px 60px rgba(31, 24, 18, 0.08);
  --max: 1140px;
  --font: "Noto Sans SC", "PingFang SC", "Microsoft YaHei", sans-serif;
  --font-display: "Outfit", "Noto Sans SC", sans-serif;
}

*,
*::before,
*::after {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  font-family: var(--font);
  color: var(--ink);
  background: var(--cream);
  line-height: 1.65;
  -webkit-font-smoothing: antialiased;
}

img {
  display: block;
  max-width: 100%;
}

a {
  color: inherit;
  text-decoration: none;
}

.page-bg {
  position: fixed;
  inset: 0;
  z-index: -1;
  overflow: hidden;
  background:
    radial-gradient(ellipse 80% 50% at 10% -10%, rgba(255, 196, 120, 0.45), transparent 55%),
    radial-gradient(ellipse 60% 40% at 95% 5%, rgba(242, 138, 26, 0.18), transparent 50%),
    linear-gradient(180deg, #faf5ee 0%, var(--cream) 40%, #f3ece2 100%);
}

.page-orb {
  position: absolute;
  border-radius: 50%;
  filter: blur(72px);
  opacity: 0.55;
  pointer-events: none;
  will-change: transform;
}

.page-orb--1 {
  top: -8%;
  left: -6%;
  width: 420px;
  height: 420px;
  background: rgba(255, 196, 120, 0.55);
  animation: orb-drift-1 22s ease-in-out infinite;
}

.page-orb--2 {
  top: 18%;
  right: -10%;
  width: 360px;
  height: 360px;
  background: rgba(242, 138, 26, 0.28);
  animation: orb-drift-2 26s ease-in-out infinite;
}

.page-orb--3 {
  bottom: 8%;
  left: 28%;
  width: 280px;
  height: 280px;
  background: rgba(255, 220, 160, 0.35);
  animation: orb-drift-3 30s ease-in-out infinite;
}

.container {
  width: min(calc(100% - 40px), var(--max));
  margin: 0 auto;
}

/* Header */
.site-header {
  position: sticky;
  top: 0;
  z-index: 30;
  border-bottom: 1px solid transparent;
  transition: background 0.25s ease, border-color 0.25s ease, box-shadow 0.25s ease;
}

.site-header.is-scrolled {
  background: rgba(247, 242, 234, 0.88);
  backdrop-filter: blur(16px);
  border-color: var(--line);
  box-shadow: 0 8px 30px rgba(31, 24, 18, 0.04);
}

.nav {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
  min-height: 76px;
}

.brand {
  display: flex;
  align-items: center;
  gap: 12px;
}

.brand img {
  width: 44px;
  height: 44px;
  border-radius: 13px;
  box-shadow: 0 10px 24px var(--mango-glow);
  transition: transform 0.35s cubic-bezier(0.22, 1, 0.36, 1), box-shadow 0.35s ease;
}

.brand:hover img {
  transform: scale(1.06) rotate(-4deg);
  box-shadow: 0 14px 32px rgba(242, 138, 26, 0.32);
}

.brand-text {
  display: flex;
  flex-direction: column;
  line-height: 1.15;
}

.brand-text strong {
  font-size: 1.02rem;
  font-weight: 700;
}

.brand-text small {
  font-family: var(--font-display);
  font-size: 0.78rem;
  letter-spacing: 0.04em;
  color: var(--ink-muted);
  text-transform: uppercase;
}

.nav-links {
  display: flex;
  gap: 28px;
  font-size: 0.94rem;
  color: var(--ink-soft);
}

.nav-links a {
  position: relative;
  transition: color 0.2s ease;
}

.nav-links a::after {
  content: "";
  position: absolute;
  left: 0;
  bottom: -4px;
  width: 100%;
  height: 2px;
  background: var(--mango);
  transform: scaleX(0);
  transform-origin: left;
  transition: transform 0.2s ease;
}

.nav-links a:hover {
  color: var(--ink);
}

.nav-links a:hover::after {
  transform: scaleX(1);
}

/* Buttons */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  min-height: 50px;
  padding: 0 24px;
  border: 0;
  border-radius: var(--radius-sm);
  font-family: inherit;
  font-size: 0.96rem;
  font-weight: 600;
  cursor: pointer;
  transition: transform 0.18s ease, box-shadow 0.18s ease, background 0.18s ease;
}

.btn:hover {
  transform: translateY(-1px);
}

.btn-sm {
  min-height: 42px;
  padding: 0 18px;
  font-size: 0.9rem;
}

.btn-block {
  width: 100%;
}

.btn-primary {
  position: relative;
  overflow: hidden;
  color: #fff;
  background: linear-gradient(145deg, var(--mango-deep), var(--mango));
  box-shadow: 0 14px 30px var(--mango-glow);
}

.btn-primary::before {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(120deg, transparent 30%, rgba(255, 255, 255, 0.22) 50%, transparent 70%);
  transform: translateX(-120%);
  transition: transform 0.55s ease;
}

.btn-primary:hover::before {
  transform: translateX(120%);
}

.btn-primary > * {
  position: relative;
  z-index: 1;
}

.btn-primary:hover {
  box-shadow: 0 18px 36px rgba(242, 138, 26, 0.28);
}

.btn-ghost {
  color: var(--ink);
  background: rgba(255, 255, 255, 0.55);
  border: 1px solid var(--line);
}

.btn.is-disabled,
.btn:disabled {
  opacity: 0.5;
  pointer-events: none;
  transform: none;
  box-shadow: none;
}

/* Hero */
.hero {
  padding: 56px 0 24px;
}

.hero-layout {
  display: grid;
  grid-template-columns: 1.05fr 0.95fr;
  gap: 48px;
  align-items: center;
}

.hero-kicker {
  margin: 0 0 16px;
  font-family: var(--font-display);
  font-size: 0.82rem;
  font-weight: 600;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--mango-deep);
}

.hero h1 {
  margin: 0;
  font-size: clamp(2.4rem, 5.5vw, 4.2rem);
  font-weight: 700;
  line-height: 1.08;
  letter-spacing: -0.03em;
}

.hero h1 span {
  color: var(--mango-deep);
}

.hero-lead {
  margin: 22px 0 0;
  max-width: 520px;
  font-size: 1.05rem;
  color: var(--ink-soft);
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-top: 30px;
}

.hero-points {
  display: flex;
  flex-wrap: wrap;
  gap: 10px 18px;
  margin: 28px 0 0;
  padding: 0;
  list-style: none;
  color: var(--ink-muted);
  font-size: 0.9rem;
}

.hero-points li {
  position: relative;
  padding-left: 14px;
}

.hero-points li::before {
  content: "";
  position: absolute;
  left: 0;
  top: 0.62em;
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: var(--mango);
}

/* Hero entrance */
.hero-enter {
  opacity: 0;
  animation: fade-up 0.85s cubic-bezier(0.22, 1, 0.36, 1) forwards;
}

.hero-copy .hero-kicker { animation-delay: 0.05s; }
.hero-copy h1 { animation-delay: 0.14s; }
.hero-copy .hero-lead { animation-delay: 0.24s; }
.hero-copy .hero-actions { animation-delay: 0.34s; }
.hero-copy .hero-points { animation-delay: 0.44s; }
.hero-visual.hero-enter { animation-delay: 0.28s; }

/* Phone mockup */
.hero-visual {
  position: relative;
  display: grid;
  place-items: center;
  min-height: 480px;
}

.phone-glow {
  position: absolute;
  width: min(100%, 340px);
  height: 420px;
  border-radius: 50%;
  background: radial-gradient(ellipse at center, rgba(242, 138, 26, 0.28), transparent 68%);
  filter: blur(8px);
  animation: glow-breathe 5s ease-in-out infinite;
  pointer-events: none;
}

.phone-frame {
  position: relative;
  z-index: 1;
  width: min(100%, 300px);
  padding: 12px;
  border-radius: 34px;
  background: linear-gradient(160deg, #2a2118, #120e0b);
  box-shadow:
    0 40px 80px rgba(23, 18, 14, 0.28),
    inset 0 1px 0 rgba(255, 255, 255, 0.08);
  animation: phone-float 6s ease-in-out infinite;
  transition: transform 0.4s cubic-bezier(0.22, 1, 0.36, 1);
}

.phone-frame:hover {
  animation-play-state: paused;
  transform: translateY(-6px) rotate(-1.5deg);
}

.phone-notch {
  width: 92px;
  height: 24px;
  margin: 0 auto 10px;
  border-radius: 0 0 16px 16px;
  background: #0d0a08;
}

.phone-screen {
  padding: 18px 16px 24px;
  border-radius: 24px;
  background: linear-gradient(180deg, #fffaf4 0%, #fff6ec 100%);
}

.screen-top {
  display: flex;
  align-items: center;
  gap: 10px;
  margin-bottom: 22px;
  animation: fade-up 0.6s cubic-bezier(0.22, 1, 0.36, 1) 0.55s both;
}

.screen-top img {
  width: 38px;
  height: 38px;
  border-radius: 11px;
}

.screen-top strong {
  display: block;
  font-size: 0.92rem;
}

.screen-top span {
  font-size: 0.76rem;
  color: var(--ink-muted);
}

.chat-bubble {
  max-width: 82%;
  margin-bottom: 10px;
  padding: 11px 14px;
  border-radius: 16px;
  font-size: 0.88rem;
  line-height: 1.45;
  opacity: 0;
  transform: translateY(10px) scale(0.96);
  animation: bubble-in 0.55s cubic-bezier(0.22, 1, 0.36, 1) forwards;
}

.phone-screen > .chat-bubble:nth-child(2) { animation-delay: 0.85s; }
.phone-screen > .chat-bubble:nth-child(3) { animation-delay: 1.25s; }
.phone-screen > .chat-bubble:nth-child(4) { animation-delay: 1.65s; }

.chat-bubble--left {
  background: #fff;
  border: 1px solid var(--line);
  border-bottom-left-radius: 6px;
}

.chat-bubble--right {
  margin-left: auto;
  background: linear-gradient(145deg, var(--mango-deep), var(--mango));
  color: #fff;
  border-bottom-right-radius: 6px;
}

.hero-float {
  position: absolute;
  animation: float 5s ease-in-out infinite;
}

.hero-float--icon {
  right: 4%;
  bottom: 8%;
  width: 108px;
  filter: drop-shadow(0 20px 40px rgba(31, 24, 18, 0.18));
  animation: float 5s ease-in-out infinite;
}

.hero-float--icon img {
  border-radius: 24px;
}

@keyframes float {
  0%, 100% { transform: translateY(0); }
  50% { transform: translateY(-10px); }
}

@keyframes fade-up {
  from {
    opacity: 0;
    transform: translateY(22px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

@keyframes bubble-in {
  to {
    opacity: 1;
    transform: translateY(0) scale(1);
  }
}

@keyframes phone-float {
  0%, 100% { transform: translateY(0); }
  50% { transform: translateY(-8px); }
}

@keyframes glow-breathe {
  0%, 100% { opacity: 0.65; transform: scale(1); }
  50% { opacity: 1; transform: scale(1.06); }
}

@keyframes orb-drift-1 {
  0%, 100% { transform: translate(0, 0) scale(1); }
  50% { transform: translate(36px, 28px) scale(1.08); }
}

@keyframes orb-drift-2 {
  0%, 100% { transform: translate(0, 0) scale(1); }
  50% { transform: translate(-42px, 24px) scale(1.05); }
}

@keyframes orb-drift-3 {
  0%, 100% { transform: translate(0, 0) scale(1); }
  50% { transform: translate(24px, -30px) scale(1.1); }
}

/* Stats */
.stats-band {
  padding: 8px 0 40px;
}

.stats-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 14px;
}

.stat-item {
  padding: 20px 22px;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: var(--card);
  backdrop-filter: blur(8px);
  transition: transform 0.28s cubic-bezier(0.22, 1, 0.36, 1), box-shadow 0.28s ease, border-color 0.28s ease;
}

.stat-item:hover {
  transform: translateY(-4px);
  border-color: rgba(242, 138, 26, 0.2);
  box-shadow: 0 18px 40px rgba(31, 24, 18, 0.08);
}

.stat-item strong {
  display: block;
  margin-bottom: 4px;
  font-family: var(--font-display);
  font-size: 1.15rem;
  letter-spacing: 0.02em;
  background: linear-gradient(135deg, var(--ink), var(--mango-deep));
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
}

.stat-item span {
  color: var(--ink-muted);
  font-size: 0.9rem;
}

/* Sections */
.section {
  padding: 36px 0 72px;
}

.section-head {
  max-width: 560px;
  margin-bottom: 36px;
}

.section-head--light {
  color: #f7f2ea;
}

.section-head--light p {
  color: rgba(247, 242, 234, 0.72);
}

.section-kicker {
  margin: 0 0 10px;
  font-family: var(--font-display);
  font-size: 0.8rem;
  font-weight: 600;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--mango-deep);
}

.section-head--light .section-kicker {
  color: #ffb35c;
}

.section-head h2 {
  margin: 0 0 10px;
  font-size: clamp(1.8rem, 3vw, 2.5rem);
  letter-spacing: -0.02em;
}

.section-head p:last-child {
  margin: 0;
  color: var(--ink-soft);
}

/* Bento grid */
.bento {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 16px;
}

.bento-card {
  position: relative;
  padding: 26px;
  border: 1px solid var(--line);
  border-radius: calc(var(--radius) + 2px);
  background: var(--card);
  backdrop-filter: blur(10px);
  box-shadow: var(--shadow);
  overflow: hidden;
  transition: transform 0.28s cubic-bezier(0.22, 1, 0.36, 1), border-color 0.28s ease, box-shadow 0.28s ease;
}

.bento-card::before {
  content: "";
  position: absolute;
  inset: 0;
  background: radial-gradient(ellipse 80% 60% at 0% 0%, rgba(242, 138, 26, 0.12), transparent 55%);
  opacity: 0;
  transition: opacity 0.35s ease;
  pointer-events: none;
}

.bento-card:hover {
  transform: translateY(-5px);
  border-color: rgba(242, 138, 26, 0.28);
  box-shadow: 0 28px 56px rgba(31, 24, 18, 0.1);
}

.bento-card:hover::before {
  opacity: 1;
}

.bento-card:hover .bento-icon {
  transform: scale(1.08) rotate(-4deg);
  background: rgba(242, 138, 26, 0.16);
}

.bento-card--large {
  grid-column: span 2;
}

.bento-card--wide {
  grid-column: span 3;
}

.bento-icon {
  width: 44px;
  height: 44px;
  display: grid;
  place-items: center;
  margin-bottom: 18px;
  border-radius: 12px;
  background: rgba(242, 138, 26, 0.1);
  color: var(--mango-deep);
  transition: transform 0.35s cubic-bezier(0.22, 1, 0.36, 1), background 0.35s ease;
}

.bento-icon svg {
  width: 22px;
  height: 22px;
}

.bento-card h3 {
  margin: 0 0 8px;
  font-size: 1.08rem;
}

.bento-card p {
  margin: 0;
  color: var(--ink-soft);
  font-size: 0.94rem;
}

/* Download */
.section-download {
  position: relative;
  margin-top: 12px;
  padding-top: 72px;
  padding-bottom: 88px;
  overflow: hidden;
  background:
    radial-gradient(ellipse 70% 80% at 50% 0%, rgba(242, 138, 26, 0.14), transparent 60%),
    linear-gradient(180deg, var(--dark) 0%, #120e0b 100%);
  border-radius: 32px 32px 0 0;
}

.section-download::before {
  content: "";
  position: absolute;
  top: -40%;
  left: 50%;
  width: 120%;
  height: 80%;
  transform: translateX(-50%);
  background: radial-gradient(ellipse at center, rgba(242, 138, 26, 0.12), transparent 60%);
  animation: download-glow 8s ease-in-out infinite;
  pointer-events: none;
}

.section-download .container {
  position: relative;
  z-index: 1;
}

.download-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 18px;
}

.download-card {
  position: relative;
  padding: 28px;
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: calc(var(--radius) + 4px);
  background: linear-gradient(180deg, rgba(255, 255, 255, 0.06), rgba(255, 255, 255, 0.02));
  color: #f7f2ea;
  transition: transform 0.32s cubic-bezier(0.22, 1, 0.36, 1), border-color 0.32s ease, box-shadow 0.32s ease;
}

.download-card::after {
  content: "";
  position: absolute;
  inset: -1px;
  border-radius: inherit;
  padding: 1px;
  background: linear-gradient(135deg, rgba(242, 138, 26, 0.45), transparent 40%, rgba(255, 255, 255, 0.12));
  -webkit-mask: linear-gradient(#fff 0 0) content-box, linear-gradient(#fff 0 0);
  mask: linear-gradient(#fff 0 0) content-box, linear-gradient(#fff 0 0);
  -webkit-mask-composite: xor;
  mask-composite: exclude;
  opacity: 0;
  transition: opacity 0.35s ease;
  pointer-events: none;
}

.download-card:hover {
  transform: translateY(-6px);
  border-color: rgba(255, 255, 255, 0.14);
  box-shadow: 0 24px 48px rgba(0, 0, 0, 0.28);
}

.download-card:hover::after {
  opacity: 1;
}

.download-card:hover .platform-mark {
  transform: scale(1.06);
}

.download-card-top {
  display: grid;
  grid-template-columns: auto 1fr auto;
  gap: 14px;
  align-items: center;
  margin-bottom: 14px;
}

.platform-mark {
  flex-shrink: 0;
  width: 48px;
  height: 48px;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 14px;
  overflow: visible;
  transition: transform 0.35s cubic-bezier(0.22, 1, 0.36, 1);
}

.platform-mark svg {
  display: block;
  width: 26px;
  height: 26px;
  overflow: visible;
}

.platform-mark--android {
  background: rgba(164, 198, 57, 0.16);
  color: #c8e67a;
}

.platform-mark--ios {
  background: rgba(255, 255, 255, 0.1);
  color: #f5f5f5;
}

.download-card h3 {
  margin: 0;
  font-size: 1.15rem;
  line-height: 1.2;
}

.version-line {
  margin: 4px 0 0;
}

.version-line,
.download-meta {
  color: rgba(247, 242, 234, 0.62);
  font-size: 0.9rem;
}

.download-meta {
  margin: 0 0 4px;
}

.update-box {
  margin: 18px 0 22px;
  padding: 14px 16px;
  border-radius: var(--radius-sm);
  background: rgba(0, 0, 0, 0.22);
  border: 1px solid rgba(255, 255, 255, 0.06);
}

.update-label {
  display: block;
  margin-bottom: 6px;
  font-size: 0.76rem;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: rgba(247, 242, 234, 0.45);
}

.update-log {
  margin: 0;
  white-space: pre-line;
  color: rgba(247, 242, 234, 0.78);
  font-size: 0.9rem;
  line-height: 1.55;
  min-height: 44px;
}

.status-pill {
  display: inline-flex;
  align-items: center;
  padding: 5px 10px;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.08);
  color: rgba(247, 242, 234, 0.55);
  font-size: 0.78rem;
  white-space: nowrap;
}

.status-pill.is-ready {
  background: rgba(74, 222, 128, 0.14);
  color: #86efac;
  animation: status-pulse 2.8s ease-in-out infinite;
}

.status-pill.is-ready::before {
  content: "";
  width: 6px;
  height: 6px;
  margin-right: 6px;
  border-radius: 50%;
  background: currentColor;
  box-shadow: 0 0 0 0 rgba(134, 239, 172, 0.5);
  animation: status-dot 2.8s ease-in-out infinite;
}

/* Footer */
.site-footer {
  padding: 36px 0 48px;
  background: #120e0b;
  color: rgba(247, 242, 234, 0.62);
  font-size: 0.9rem;
}

.footer-inner {
  display: grid;
  grid-template-columns: 1.4fr 1.2fr auto;
  gap: 24px;
  align-items: start;
}

.footer-links {
  display: flex;
  flex-direction: column;
  gap: 14px;
}

.footer-legal {
  display: flex;
  flex-wrap: wrap;
  gap: 8px 16px;
}

.footer-legal a {
  color: rgba(247, 242, 234, 0.72);
  font-size: 0.88rem;
  transition: color 0.2s ease;
}

.footer-legal a:hover {
  color: #ffb35c;
}

.footer-brand {
  display: flex;
  align-items: center;
  gap: 12px;
}

.footer-brand img {
  width: 40px;
  height: 40px;
  border-radius: 11px;
}

.footer-brand strong {
  display: block;
  color: #f7f2ea;
}

.footer-brand p {
  margin: 2px 0 0;
}

.footer-meta {
  display: flex;
  flex-direction: column;
  gap: 6px;
}

.footer-meta a:hover {
  color: #ffb35c;
}

.footer-copy {
  margin: 0;
  text-align: right;
}

/* Toast */
.toast {
  position: fixed;
  left: 50%;
  bottom: 28px;
  z-index: 50;
  padding: 12px 18px;
  border-radius: var(--radius-sm);
  background: rgba(23, 18, 14, 0.92);
  color: #fff;
  font-size: 0.9rem;
  opacity: 0;
  pointer-events: none;
  transform: translateX(-50%) translateY(12px);
  transition: 0.25s ease;
}

.toast.show {
  opacity: 1;
  transform: translateX(-50%) translateY(0);
}

/* Scroll reveal */
.reveal {
  opacity: 0;
  transform: translateY(28px);
  transition:
    opacity 0.75s cubic-bezier(0.22, 1, 0.36, 1),
    transform 0.75s cubic-bezier(0.22, 1, 0.36, 1);
}

.reveal.is-visible {
  opacity: 1;
  transform: translateY(0);
}

.reveal--delay-1 { transition-delay: 0.08s; }
.reveal--delay-2 { transition-delay: 0.16s; }
.reveal--delay-3 { transition-delay: 0.24s; }

@keyframes download-glow {
  0%, 100% { opacity: 0.5; transform: translateX(-50%) scale(1); }
  50% { opacity: 1; transform: translateX(-50%) scale(1.08); }
}

@keyframes status-pulse {
  0%, 100% { box-shadow: 0 0 0 0 rgba(74, 222, 128, 0); }
  50% { box-shadow: 0 0 0 6px rgba(74, 222, 128, 0.08); }
}

@keyframes status-dot {
  0%, 100% { box-shadow: 0 0 0 0 rgba(134, 239, 172, 0.45); }
  50% { box-shadow: 0 0 0 5px rgba(134, 239, 172, 0); }
}

@media (prefers-reduced-motion: reduce) {
  html {
    scroll-behavior: auto;
  }

  .page-orb,
  .phone-frame,
  .phone-glow,
  .hero-float,
  .hero-enter,
  .chat-bubble,
  .screen-top,
  .section-download::before,
  .status-pill.is-ready,
  .status-pill.is-ready::before {
    animation: none !important;
  }

  .hero-enter,
  .chat-bubble,
  .screen-top {
    opacity: 1;
    transform: none;
  }

  .reveal {
    opacity: 1;
    transform: none;
    transition: none;
  }

  .btn-primary::before {
    display: none;
  }
}

/* Responsive */
@media (max-width: 960px) {
  .hero-layout,
  .bento,
  .download-grid,
  .stats-grid,
  .footer-inner {
    grid-template-columns: 1fr;
  }

  .bento-card--large,
  .bento-card--wide {
    grid-column: span 1;
  }

  .nav-links {
    display: none;
  }

  .hero-visual {
    min-height: auto;
    padding-top: 12px;
  }

  .hero-float--icon {
    right: 0;
    width: 84px;
  }

  .footer-copy {
    text-align: left;
  }
}

@media (max-width: 600px) {
  .container {
    width: min(calc(100% - 28px), var(--max));
  }

  .hero-actions .btn {
    width: 100%;
  }

  .section-download {
    border-radius: 24px 24px 0 0;
  }
}
