/* GPThub landing — editorial dark, inspired by mashagpt.ru visual language */
:root {
  --bg: #06060a;
  --bg-card: rgba(255, 255, 255, 0.03);
  --bg-card-hover: rgba(255, 255, 255, 0.06);
  --border: rgba(255, 255, 255, 0.1);
  --border-soft: rgba(255, 255, 255, 0.06);
  --text: #ffffff;
  --text-muted: rgba(255, 255, 255, 0.62);
  --text-dim: rgba(255, 255, 255, 0.38);
  --accent: #d4ff00;
  --accent-ink: #06100a;
  --radius: 16px;
  --radius-lg: 24px;
  --max: 1120px;
  --nav-h: 64px;
  --font: "Inter", system-ui, -apple-system, sans-serif;
  --font-display: "Inter Tight", "Inter", system-ui, sans-serif;
}

*,
*::before,
*::after {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  min-height: 100vh;
  background: var(--bg);
  color: var(--text);
  font-family: var(--font);
  font-size: 16px;
  line-height: 1.5;
  -webkit-font-smoothing: antialiased;
  overflow-x: clip;
}

body.nav-open {
  overflow: hidden;
}

a {
  color: inherit;
  text-decoration: none;
}

img,
svg {
  display: block;
  max-width: 100%;
}

button {
  font: inherit;
  color: inherit;
  background: none;
  border: 0;
  cursor: pointer;
}

.editorial-root {
  position: relative;
  z-index: 1;
  color: #fff;
}

.editorial-ambient {
  pointer-events: none;
  position: fixed;
  inset: 0;
  z-index: 0;
  background:
    radial-gradient(80% 40% at 50% -10%, rgba(255, 255, 255, 0.1) 0%, transparent 70%),
    radial-gradient(50% 35% at 80% 20%, rgba(212, 255, 0, 0.06) 0%, transparent 60%),
    radial-gradient(60% 40% at 50% 110%, rgba(255, 255, 255, 0.05) 0%, transparent 70%);
}

.editorial-grid-bg {
  pointer-events: none;
  position: fixed;
  inset: 0;
  z-index: 0;
  background-image:
    linear-gradient(rgba(255, 255, 255, 0.03) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255, 255, 255, 0.03) 1px, transparent 1px);
  background-size: 80px 80px;
  mask-image: radial-gradient(70% 60% at 50% 30%, #000 0%, transparent 70%);
  -webkit-mask-image: radial-gradient(70% 60% at 50% 30%, #000 0%, transparent 70%);
}

/* —— Nav —— */
.m-nav {
  position: sticky;
  top: 0;
  z-index: 50;
  height: var(--nav-h);
  display: flex;
  align-items: center;
  transition: background 0.25s, border-color 0.25s, transform 0.3s;
  border-bottom: 1px solid transparent;
}

.m-nav.is-scrolled {
  background: rgba(6, 6, 10, 0.78);
  backdrop-filter: blur(16px);
  -webkit-backdrop-filter: blur(16px);
  border-bottom-color: var(--border-soft);
}

.m-nav.is-hidden {
  transform: translateY(-100%);
}

.m-nav-inner {
  width: 100%;
  max-width: calc(var(--max) + 48px);
  margin: 0 auto;
  padding: 0 20px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
}

.m-logo {
  display: flex;
  align-items: center;
  gap: 10px;
  font-family: var(--font-display);
  font-weight: 600;
  font-size: 17px;
  letter-spacing: -0.02em;
  flex-shrink: 0;
}

.m-logo-mark {
  width: 28px;
  height: 28px;
  border-radius: 7px;
  background: var(--accent);
  color: var(--accent-ink);
  display: grid;
  place-items: center;
  font-weight: 800;
  font-size: 13px;
}

.m-nav-links {
  display: none;
  align-items: center;
  gap: 28px;
  font-size: 14px;
  font-weight: 500;
  color: var(--text-muted);
}

.m-nav-links a:hover {
  color: #fff;
}

.m-nav-actions {
  display: flex;
  align-items: center;
  gap: 10px;
}

.m-nav-toggle {
  display: inline-flex;
  width: 40px;
  height: 40px;
  align-items: center;
  justify-content: center;
  border-radius: 10px;
  border: 1px solid var(--border-soft);
  background: var(--bg-card);
}

.m-nav-toggle span {
  display: block;
  width: 16px;
  height: 1.5px;
  background: #fff;
  position: relative;
}

.m-nav-toggle span::before,
.m-nav-toggle span::after {
  content: "";
  position: absolute;
  left: 0;
  width: 16px;
  height: 1.5px;
  background: #fff;
}

.m-nav-toggle span::before {
  top: -5px;
}

.m-nav-toggle span::after {
  top: 5px;
}

.m-nav-mobile {
  display: none;
  position: fixed;
  inset: var(--nav-h) 0 0 0;
  z-index: 49;
  background: rgba(6, 6, 10, 0.96);
  backdrop-filter: blur(20px);
  padding: 24px 20px;
  flex-direction: column;
  gap: 8px;
}

.m-nav-mobile.is-open {
  display: flex;
}

.m-nav-mobile a {
  padding: 14px 12px;
  border-radius: 12px;
  font-weight: 500;
  font-size: 16px;
  color: var(--text-muted);
}

.m-nav-mobile a:hover {
  background: var(--bg-card);
  color: #fff;
}

/* —— Buttons —— */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  border-radius: 999px;
  font-weight: 600;
  font-size: 14px;
  letter-spacing: -0.01em;
  padding: 12px 20px;
  transition: transform 0.15s, filter 0.15s, background 0.15s, border-color 0.15s;
  white-space: nowrap;
}

.btn:hover {
  transform: translateY(-1px);
}

.btn-primary {
  background: var(--accent);
  color: var(--accent-ink);
  box-shadow: 0 8px 24px rgba(212, 255, 0, 0.18), inset 0 1px 0 rgba(255, 255, 255, 0.35);
}

.btn-primary:hover {
  filter: brightness(1.05);
}

.btn-ghost {
  background: transparent;
  border: 1px solid var(--border);
  color: #fff;
}

.btn-ghost:hover {
  background: var(--bg-card-hover);
  border-color: rgba(255, 255, 255, 0.18);
}

.btn-lg {
  padding: 14px 26px;
  font-size: 15px;
}

.btn-block {
  width: 100%;
}

/* —— Sections —— */
.section {
  position: relative;
  padding: 72px 20px;
}

.section-inner {
  max-width: var(--max);
  margin: 0 auto;
}

.eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  font-size: 12px;
  font-weight: 500;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--text-dim);
  margin: 0 0 16px;
}

.eyebrow::after {
  content: "";
  width: 40px;
  height: 1px;
  background: rgba(255, 255, 255, 0.2);
}

.section-title {
  font-family: var(--font-display);
  font-weight: 700;
  font-size: clamp(28px, 5vw, 48px);
  line-height: 1.12;
  letter-spacing: -0.03em;
  margin: 0 0 14px;
}

.section-lead {
  margin: 0;
  max-width: 520px;
  color: var(--text-muted);
  font-size: 16px;
  line-height: 1.55;
}

.section-head {
  margin-bottom: 40px;
}

.section-head.center {
  text-align: center;
}

.section-head.center .section-lead {
  margin-left: auto;
  margin-right: auto;
}

.section-head.center .eyebrow {
  justify-content: center;
}

.live-dot {
  width: 7px;
  height: 7px;
  border-radius: 50%;
  background: #22c55e;
  box-shadow: 0 0 0 3px rgba(34, 197, 94, 0.2);
  animation: pulse 1.8s ease-in-out infinite;
}

@keyframes pulse {
  0%,
  100% {
    opacity: 1;
  }
  50% {
    opacity: 0.45;
  }
}

/* —— Hero —— */
.m-hero {
  padding: 28px 20px 48px;
}

.m-hero-grid {
  max-width: calc(var(--max) + 40px);
  margin: 0 auto;
  display: grid;
  gap: 16px;
}

.m-hero-card {
  background: linear-gradient(165deg, rgba(255, 255, 255, 0.05) 0%, rgba(255, 255, 255, 0.015) 100%);
  border: 1px solid var(--border-soft);
  border-radius: var(--radius-lg);
  padding: 36px 28px 28px;
  position: relative;
  overflow: hidden;
}

.m-hero-card::before {
  content: "";
  position: absolute;
  inset: 0;
  background: radial-gradient(60% 50% at 10% 0%, rgba(212, 255, 0, 0.08) 0%, transparent 55%);
  pointer-events: none;
}

.m-hero-badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-size: 13px;
  font-weight: 500;
  color: var(--text-muted);
  margin-bottom: 20px;
  position: relative;
}

.m-hero-card h1 {
  position: relative;
  font-family: var(--font-display);
  font-weight: 700;
  font-size: clamp(34px, 9vw, 64px);
  line-height: 1.08;
  letter-spacing: -0.035em;
  margin: 0 0 18px;
}

.m-hero-card h1 em {
  font-style: normal;
  color: var(--accent);
}

.m-hero-sub {
  position: relative;
  margin: 0 0 28px;
  max-width: 440px;
  color: var(--text-muted);
  font-size: 15.5px;
  line-height: 1.55;
}

.m-hero-cta-stack {
  position: relative;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 12px;
}

.m-hero-note {
  font-size: 13px;
  color: var(--text-dim);
}

.m-hero-stats {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 12px;
}

.m-stat {
  background: var(--bg-card);
  border: 1px solid var(--border-soft);
  border-radius: 14px;
  padding: 16px 14px;
  display: flex;
  flex-direction: column;
  gap: 4px;
  min-width: 0;
}

.m-stat-label {
  font-size: 11px;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  color: var(--text-dim);
  font-weight: 500;
}

.m-stat-value {
  font-family: var(--font-display);
  font-weight: 600;
  font-size: clamp(15px, 3.5vw, 20px);
  letter-spacing: -0.02em;
}

/* —— Marquee —— */
.m-marquee-wrap {
  padding: 8px 0 40px;
  overflow: hidden;
  mask-image: linear-gradient(to right, transparent, #000 6%, #000 94%, transparent);
  -webkit-mask-image: linear-gradient(to right, transparent, #000 6%, #000 94%, transparent);
}

.m-marquee {
  display: flex;
  width: max-content;
  animation: marquee 40s linear infinite;
}

.m-marquee:hover {
  animation-play-state: paused;
}

.m-marquee-track {
  display: flex;
  align-items: center;
  gap: 36px;
  padding-right: 36px;
}

.m-marquee-item {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  font-family: var(--font-display);
  font-weight: 500;
  font-size: clamp(18px, 3vw, 26px);
  letter-spacing: -0.02em;
  color: rgba(255, 255, 255, 0.88);
  white-space: nowrap;
}

.m-marquee-item:nth-child(even) {
  color: rgba(255, 255, 255, 0.28);
}

.m-marquee-icon {
  width: 28px;
  height: 28px;
  border-radius: 8px;
  border: 1px solid rgba(255, 255, 255, 0.1);
  background: linear-gradient(155deg, #1a1a1f 0%, #0b0b0f 100%);
  display: inline-flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  color: #fff;
  font-size: 11px;
  font-weight: 700;
}

@keyframes marquee {
  from {
    transform: translateX(0);
  }
  to {
    transform: translateX(-33.333%);
  }
}

/* —— Model cards —— */
.model-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 14px;
}

.model-card {
  display: flex;
  flex-direction: column;
  gap: 16px;
  padding: 22px;
  border-radius: var(--radius);
  border: 1px solid var(--border-soft);
  background: var(--bg-card);
  transition: border-color 0.3s, background 0.3s, transform 0.3s;
  min-height: 180px;
  position: relative;
  overflow: hidden;
}

.model-card:hover {
  border-color: rgba(255, 255, 255, 0.16);
  background: var(--bg-card-hover);
  transform: translateY(-2px);
}

.model-card-top {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
}

.model-card h3 {
  margin: 0;
  font-family: var(--font-display);
  font-size: 20px;
  font-weight: 600;
  letter-spacing: -0.02em;
}

.model-list {
  list-style: none;
  margin: 0;
  padding: 0;
  display: flex;
  flex-direction: column;
  gap: 8px;
}

.model-list li {
  display: flex;
  justify-content: space-between;
  gap: 12px;
  font-size: 13.5px;
  color: var(--text-muted);
  border-top: 1px solid var(--border-soft);
  padding-top: 8px;
}

.model-list li:first-child {
  border-top: 0;
  padding-top: 0;
}

.model-list strong {
  color: #fff;
  font-weight: 500;
}

.model-accent {
  width: 36px;
  height: 36px;
  border-radius: 10px;
  display: grid;
  place-items: center;
  font-size: 12px;
  font-weight: 700;
  border: 1px solid rgba(255, 255, 255, 0.1);
}

/* —— Features bento —— */
.bento {
  display: grid;
  grid-template-columns: 1fr;
  gap: 12px;
}

.bento-card {
  border-radius: var(--radius);
  border: 1px solid var(--border-soft);
  background: var(--bg-card);
  padding: 22px;
  transition: border-color 0.3s, transform 0.3s;
  position: relative;
  overflow: hidden;
}

.bento-card:hover {
  border-color: rgba(255, 255, 255, 0.14);
  transform: translateY(-2px);
}

.bento-card.wide {
  /* filled on larger screens */
}

.bento-tag {
  display: inline-flex;
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: var(--accent-ink);
  background: var(--accent);
  border-radius: 999px;
  padding: 3px 8px;
  margin-bottom: 12px;
}

.bento-card h3 {
  margin: 0 0 8px;
  font-family: var(--font-display);
  font-size: 18px;
  font-weight: 600;
  letter-spacing: -0.02em;
}

.bento-card p {
  margin: 0;
  color: var(--text-muted);
  font-size: 14px;
  line-height: 1.5;
}

/* —— Pricing —— */
.pricing-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 14px;
  align-items: stretch;
}

.price-card {
  border-radius: var(--radius-lg);
  border: 1px solid var(--border-soft);
  background: var(--bg-card);
  padding: 28px 24px;
  display: flex;
  flex-direction: column;
  gap: 18px;
  position: relative;
}

.price-card.popular {
  border-color: rgba(212, 255, 0, 0.35);
  background:
    radial-gradient(80% 60% at 50% 0%, rgba(212, 255, 0, 0.08) 0%, transparent 60%),
    var(--bg-card);
  box-shadow: 0 0 0 1px rgba(212, 255, 0, 0.08);
}

.price-badge {
  position: absolute;
  top: 14px;
  right: 14px;
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  background: var(--accent);
  color: var(--accent-ink);
  border-radius: 999px;
  padding: 4px 10px;
}

.price-card h3 {
  margin: 0;
  font-family: var(--font-display);
  font-size: 22px;
  font-weight: 600;
}

.price-desc {
  margin: 0;
  color: var(--text-dim);
  font-size: 13px;
}

.price-amount {
  font-family: var(--font-display);
  font-size: 40px;
  font-weight: 700;
  letter-spacing: -0.03em;
  line-height: 1;
}

.price-amount span {
  font-size: 15px;
  font-weight: 500;
  color: var(--text-muted);
  letter-spacing: 0;
}

.price-list {
  list-style: none;
  margin: 0;
  padding: 0;
  display: flex;
  flex-direction: column;
  gap: 10px;
  flex: 1;
}

.price-list li {
  display: flex;
  gap: 10px;
  align-items: flex-start;
  font-size: 14px;
  color: var(--text-muted);
}

.price-list li::before {
  content: "";
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: var(--accent);
  margin-top: 7px;
  flex-shrink: 0;
  opacity: 0.85;
}

/* —— CTA band —— */
.cta-band {
  padding: 24px 20px 72px;
}

.cta-band-inner {
  max-width: var(--max);
  margin: 0 auto;
  border-radius: var(--radius-lg);
  border: 1px solid var(--border-soft);
  background:
    radial-gradient(70% 80% at 20% 50%, rgba(212, 255, 0, 0.1) 0%, transparent 55%),
    linear-gradient(135deg, rgba(255, 255, 255, 0.05), rgba(255, 255, 255, 0.02));
  padding: 48px 28px;
  text-align: center;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 14px;
}

.cta-band h2 {
  margin: 0;
  font-family: var(--font-display);
  font-size: clamp(26px, 4vw, 40px);
  letter-spacing: -0.03em;
  line-height: 1.15;
}

.cta-band p {
  margin: 0 0 8px;
  color: var(--text-muted);
  max-width: 420px;
}

/* —— FAQ —— */
.faq-list {
  max-width: 720px;
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  gap: 8px;
}

.faq-item {
  border: 1px solid var(--border-soft);
  border-radius: 14px;
  background: var(--bg-card);
  overflow: hidden;
}

.faq-q {
  width: 100%;
  text-align: left;
  padding: 18px 20px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  font-weight: 500;
  font-size: 15px;
  letter-spacing: -0.01em;
}

.faq-q:hover {
  color: var(--accent);
}

.faq-icon {
  width: 22px;
  height: 22px;
  border-radius: 50%;
  border: 1px solid var(--border);
  display: grid;
  place-items: center;
  flex-shrink: 0;
  transition: transform 0.2s;
  color: var(--text-muted);
  font-size: 14px;
  line-height: 1;
}

.faq-item.is-open .faq-icon {
  transform: rotate(45deg);
  color: var(--accent);
  border-color: rgba(212, 255, 0, 0.4);
}

.faq-a {
  display: none;
  padding: 0 20px 18px;
  color: var(--text-muted);
  font-size: 14.5px;
  line-height: 1.6;
}

.faq-item.is-open .faq-a {
  display: block;
}

/* —— Footer —— */
.m-footer {
  border-top: 1px solid var(--border-soft);
  padding: 48px 20px 56px;
}

.m-footer-inner {
  max-width: var(--max);
  margin: 0 auto;
}

.m-footer-inner-wide {
  max-width: calc(var(--max) + 40px);
}

.m-footer-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 32px;
}

.m-footer-brand {
  display: flex;
  flex-direction: column;
  gap: 12px;
  max-width: 280px;
}

.m-footer-tag {
  margin: 0;
  font-size: 14px;
  color: var(--text-muted);
  line-height: 1.45;
}

.m-footer-col h4 {
  margin: 0 0 14px;
  font-family: var(--font-display);
  font-size: 13px;
  font-weight: 600;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: var(--text-dim);
}

.m-footer-links-col {
  display: flex;
  flex-direction: column;
  gap: 10px;
  font-size: 14px;
  color: var(--text-muted);
}

.m-footer-links-col a:hover {
  color: #fff;
}

.m-footer-copy {
  font-size: 13px;
  color: var(--text-dim);
  margin: 0;
}

.m-footer-copy a {
  color: var(--text-muted);
  text-decoration: underline;
  text-underline-offset: 2px;
}

.m-footer-copy a:hover {
  color: #fff;
}

/* —— Legal / info pages —— */
.legal-page {
  padding: 32px 20px 72px;
  position: relative;
}

.legal-inner {
  max-width: 760px;
  margin: 0 auto;
}

.legal-crumb {
  font-size: 13px;
  color: var(--text-dim);
  margin: 0 0 20px;
}

.legal-crumb a {
  color: var(--text-muted);
}

.legal-crumb a:hover {
  color: var(--accent);
}

.legal-page h1 {
  font-family: var(--font-display);
  font-size: clamp(28px, 5vw, 42px);
  font-weight: 700;
  letter-spacing: -0.03em;
  line-height: 1.15;
  margin: 0 0 12px;
}

.legal-subh {
  display: block;
  font-size: 0.55em;
  font-weight: 500;
  color: var(--text-muted);
  letter-spacing: -0.01em;
  margin-top: 6px;
}

.legal-lead {
  font-size: 17px;
  color: var(--text-muted);
  line-height: 1.55;
  margin: 0 0 16px;
}

.legal-note {
  font-size: 13.5px;
  color: var(--text-dim);
  margin: 0 0 28px;
  padding: 12px 14px;
  border-radius: 12px;
  border: 1px solid var(--border-soft);
  background: var(--bg-card);
}

.legal-page h2 {
  font-family: var(--font-display);
  font-size: 20px;
  font-weight: 600;
  letter-spacing: -0.02em;
  margin: 32px 0 12px;
}

.legal-page p,
.legal-page li {
  color: var(--text-muted);
  font-size: 15px;
  line-height: 1.65;
}

.legal-page p {
  margin: 0 0 12px;
}

.legal-page ul {
  margin: 0 0 16px;
  padding-left: 1.2em;
}

.legal-page a {
  color: #e8ff8a;
  text-decoration: underline;
  text-underline-offset: 2px;
}

.legal-page a:hover {
  color: var(--accent);
}

.legal-page code {
  font-size: 0.9em;
  padding: 1px 6px;
  border-radius: 6px;
  background: rgba(255, 255, 255, 0.06);
  border: 1px solid var(--border-soft);
}

.legal-callout {
  margin: 0 0 24px;
  padding: 14px 16px;
  border-radius: 12px;
  border: 1px solid rgba(212, 255, 0, 0.25);
  background: rgba(212, 255, 0, 0.06);
  color: var(--text-muted);
  font-size: 14px;
  line-height: 1.55;
}

.legal-callout strong {
  color: #fff;
}

.legal-table-wrap {
  overflow-x: auto;
  margin: 16px 0 24px;
  border-radius: 12px;
  border: 1px solid var(--border-soft);
}

.legal-table {
  width: 100%;
  border-collapse: collapse;
  font-size: 14px;
}

.legal-table th,
.legal-table td {
  padding: 12px 14px;
  text-align: left;
  border-bottom: 1px solid var(--border-soft);
  color: var(--text-muted);
  vertical-align: top;
}

.legal-table th {
  color: #fff;
  font-weight: 500;
  background: rgba(255, 255, 255, 0.03);
  white-space: nowrap;
}

.legal-table tr:last-child th,
.legal-table tr:last-child td {
  border-bottom: 0;
}

.legal-pricing {
  margin: 28px 0 40px;
}

.legal-faq {
  margin-top: 8px;
}

/* —— Desktop —— */
@media (min-width: 720px) {
  .m-footer-grid {
    grid-template-columns: 1fr 1fr;
  }

  .m-hero-card {
    padding: 44px 40px 36px;
  }

  .m-hero-cta-stack {
    flex-direction: row;
    align-items: center;
    flex-wrap: wrap;
  }

  .model-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .bento {
    grid-template-columns: repeat(2, 1fr);
  }

  .bento-card.wide {
    grid-column: span 2;
  }

  .pricing-grid {
    grid-template-columns: repeat(3, 1fr);
  }
}

@media (min-width: 980px) {
  .m-nav-links {
    display: flex;
  }

  .m-nav-toggle {
    display: none;
  }

  .m-hero-grid {
    grid-template-columns: minmax(0, 1.4fr) minmax(0, 0.75fr);
    align-items: stretch;
  }

  .m-hero-stats {
    grid-template-columns: 1fr;
    height: 100%;
  }

  .m-stat {
    flex: 1;
    justify-content: center;
    padding: 22px 18px;
  }

  .model-grid {
    grid-template-columns: repeat(3, 1fr);
  }

  .bento {
    grid-template-columns: repeat(3, 1fr);
  }

  .bento-card.wide {
    grid-column: span 2;
  }

  .section {
    padding: 96px 24px;
  }

  .m-footer-grid {
    grid-template-columns: 1.1fr 1.2fr 0.8fr;
    gap: 40px;
    align-items: start;
  }
}

@media (min-width: 1280px) {
  .m-hero {
    padding-top: 40px;
  }

  .m-hero-card h1 {
    font-size: clamp(48px, 5.2vw, 72px);
  }
}
