/* ============================================================
   Aurora Glass Design System — GraftFlow v1
   ============================================================ */

/* Step 1: Design tokens */
:root {
  --accent: #1c6b5e;
  --accent-deep: #134b40;
  --bg-1: #eef3f1;
  --bg-2: #f5f6f1;
  --ink: #0f172a;
  --muted: #475569;
  --glass-bg: rgba(255,255,255,.68);
  --glass-brd: rgba(255,255,255,.85);
  --radius: 16px;
  --shadow: 0 10px 30px rgba(15,23,42,.08);
  --shadow-accent: 0 10px 30px color-mix(in srgb, var(--accent) 22%, transparent);
  /* Legacy aliases kept for structural rules below */
  --max: 1120px;
  --border: rgba(15,23,42,.1);
  --card: #ffffff;
}

* { box-sizing: border-box; }

html { scroll-behavior: smooth; }

body {
  margin: 0;
  color: var(--ink);
  font-family: ui-sans-serif, system-ui, -apple-system, "Segoe UI", Roboto, sans-serif;
  background: linear-gradient(135deg, var(--bg-1), var(--bg-2));
  overflow-x: hidden;
  line-height: 1.5;
}

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

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

button, input, select, textarea { font: inherit; }

:focus-visible {
  outline: 3px solid color-mix(in srgb, var(--accent) 55%, transparent);
  outline-offset: 3px;
}

.container { width: min(1120px, 92vw); margin: 0 auto; }

.section { padding: clamp(48px, 8vw, 96px) 0; position: relative; }

/* band sections — keep subtle differentiation */
.band {
  background: rgba(255,255,255,.28);
  border-block: 1px solid rgba(255,255,255,.6);
}

/* ============================================================
   Step 2: Aurora background + drifting blobs
   ============================================================ */
.aurora-bg { position: fixed; inset: 0; z-index: -1; overflow: hidden; }

.blob { position: absolute; border-radius: 50%; filter: blur(60px); opacity: .55; }

.blob.b1 {
  width: 46vw; height: 46vw; top: -12vw; right: -8vw;
  background: radial-gradient(circle, var(--accent), transparent 65%);
  animation: drift1 22s ease-in-out infinite;
}
.blob.b2 {
  width: 42vw; height: 42vw; bottom: -14vw; left: -10vw;
  background: radial-gradient(circle, #3f8f78, transparent 65%);
  animation: drift2 28s ease-in-out infinite;
}
.blob.b3 {
  width: 30vw; height: 30vw; top: 40vh; left: 50vw;
  background: radial-gradient(circle, var(--accent-deep), transparent 65%);
  opacity: .35;
  animation: drift1 32s ease-in-out infinite reverse;
}

@keyframes drift1 {
  0%,100% { transform: translate(0,0) scale(1); }
  50% { transform: translate(4vw,3vw) scale(1.08); }
}
@keyframes drift2 {
  0%,100% { transform: translate(0,0) scale(1); }
  50% { transform: translate(-3vw,-4vw) scale(1.1); }
}

/* ============================================================
   Step 3: Glass components
   ============================================================ */
.glass, .glass-card {
  background: var(--glass-bg);
  -webkit-backdrop-filter: blur(12px);
  backdrop-filter: blur(12px);
  border: 1px solid var(--glass-brd);
  border-radius: var(--radius);
  box-shadow: var(--shadow);
}

.site-header { position: sticky; top: 0; z-index: 50; }

.site-header .nav-shell {
  display: flex;
  align-items: center;
  gap: 18px;
  padding: 12px 0;
}

.card { padding: 22px; } /* inherits .glass via class in markup */

/* ============================================================
   Step 4: Accent-driven buttons, kickers, pills
   ============================================================ */
.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  padding: 12px 20px;
  border-radius: 12px;
  font-weight: 700;
  text-decoration: none;
  cursor: pointer;
  border: 1px solid transparent;
  background: var(--ink);
  color: #fff;
  transition: transform .15s ease, box-shadow .15s ease;
}
.button:hover { transform: translateY(-1px); }

.button-lg { padding: 15px 26px; font-size: 1.02rem; }

.button-sm { padding: 9px 16px; font-size: 0.9rem; }

.button-outline {
  background: transparent;
  color: var(--ink);
  border-color: rgba(15,23,42,.2);
}

.button-accent, .hero-actions .button-lg:first-child {
  background: linear-gradient(90deg, var(--accent), var(--accent-deep));
  color: #fff;
  box-shadow: var(--shadow-accent);
}

.button-full { width: 100%; }

.section-kicker {
  color: var(--accent-deep);
  font-weight: 700;
  letter-spacing: .08em;
  text-transform: uppercase;
  font-size: .8rem;
  /* Reset pill styles from original */
  display: inline-block;
  background: none;
  border: none;
  padding: 0;
  border-radius: 0;
  margin-bottom: 10px;
}

.eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: color-mix(in srgb, var(--accent) 12%, transparent);
  border: 1px solid color-mix(in srgb, var(--accent) 22%, transparent);
  border-radius: 999px;
  padding: 8px 14px;
  font-size: .84rem;
  font-weight: 700;
  margin-bottom: 16px;
}

.eyebrow .pulse {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: var(--accent);
  box-shadow: 0 0 0 0 var(--accent);
  animation: pulse 2s infinite;
  flex-shrink: 0;
}

@keyframes pulse {
  0% { box-shadow: 0 0 0 0 color-mix(in srgb, var(--accent) 60%, transparent); }
  70% { box-shadow: 0 0 0 10px transparent; }
  100% { box-shadow: 0 0 0 0 transparent; }
}

/* Badge pill (used in pricing card) */
.badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: color-mix(in srgb, var(--accent) 12%, transparent);
  border: 1px solid color-mix(in srgb, var(--accent) 22%, transparent);
  border-radius: 999px;
  padding: 6px 12px;
  font-size: .84rem;
  font-weight: 700;
  color: var(--accent-deep);
}

/* ============================================================
   Step 5: Scroll-reveal initial state + reduced motion
   ============================================================ */
.reveal { opacity: 0; transform: translateY(18px); transition: opacity .6s ease, transform .6s ease; }
.reveal.in { opacity: 1; transform: none; }

@media (prefers-reduced-motion: reduce) {
  .blob { animation: none !important; }
  .reveal { opacity: 1 !important; transform: none !important; transition: none !important; }
  .eyebrow .pulse { animation: none !important; }
}

/* ============================================================
   Stat strip (live counters)
   ============================================================ */
.stat-strip { display: grid; grid-template-columns: repeat(3, 1fr); gap: 14px; margin-top: 22px; }
.stat { padding: 18px; text-align: center; }
.stat b { display: block; font-size: clamp(1.8rem, 4vw, 2.6rem); font-weight: 800; color: var(--accent-deep); }
.stat span { font-size: .85rem; color: var(--muted); }
@media (max-width: 640px) { .stat-strip { grid-template-columns: 1fr; } }

/* ============================================================
   Navigation
   ============================================================ */
.nav-shell {
  display: flex;
  align-items: center;
  justify-content: space-between;
  min-height: 70px;
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  font-weight: 800;
}

.brand span { font-size: 1.12rem; }

.nav-links {
  display: flex;
  align-items: center;
  gap: 18px;
  font-size: 0.95rem;
}

.nav-links a:not(.button):hover { color: var(--accent); }

.nav-toggle {
  display: none;
  width: 44px;
  height: 44px;
  border: 1px solid rgba(15,23,42,.15);
  border-radius: var(--radius);
  background: var(--glass-bg);
  -webkit-backdrop-filter: blur(8px);
  backdrop-filter: blur(8px);
  cursor: pointer;
}

.nav-toggle span {
  display: block;
  width: 18px;
  height: 2px;
  margin: 5px auto;
  background: var(--ink);
}

.language-switch {
  display: inline-flex;
  align-items: center;
  gap: 4px;
  padding: 4px;
  background: rgba(15,23,42,.06);
  border: 1px solid rgba(15,23,42,.1);
  border-radius: 999px;
}

.lang-button {
  min-width: 36px;
  min-height: 30px;
  border: 0;
  border-radius: 999px;
  background: transparent;
  color: var(--muted);
  font-weight: 700;
  cursor: pointer;
}

.lang-button.active {
  background: #fff;
  color: var(--accent-deep);
  box-shadow: 0 2px 8px rgba(15,23,42,.1);
}

/* ============================================================
   Typography
   ============================================================ */
h1, h2, h3, p { margin-top: 0; }

h1 {
  margin: 20px 0;
  font-size: clamp(2.7rem, 7vw, 5.9rem);
  line-height: 0.95;
  letter-spacing: 0;
  max-width: 980px;
}

h2 {
  font-size: clamp(2rem, 4vw, 3.6rem);
  line-height: 1;
  letter-spacing: 0;
  margin-bottom: 18px;
}

h3 { font-size: 1.12rem; margin-bottom: 10px; }

.hero-lede,
.section-heading p,
.demo-copy p,
.site-footer p {
  color: var(--muted);
  font-size: 1.04rem;
}

p.muted { color: var(--muted); }

.hero-lede { max-width: 680px; }

/* ============================================================
   Hero section
   ============================================================ */
.hero {
  min-height: calc(100svh - 70px);
  display: grid;
  align-items: center;
  padding: 84px 0 72px;
}

.hero-grid {
  display: grid;
  grid-template-columns: minmax(0, 0.95fr) minmax(420px, 1.05fr);
  gap: 42px;
  align-items: center;
}

/* ── Cinematic full-bleed hero (Option C) ── */
.hero-cinematic {
  position: relative;
  overflow: hidden;
  min-height: min(86vh, 780px);
  padding: 96px 0 88px;
}
.hero-cinematic .hero-bg {
  position: absolute;
  inset: 0;
  z-index: 0;
  background: #0a1222 url("assets/hero-bg.png") center right / cover no-repeat;
}
.hero-cinematic .hero-scrim {
  position: absolute;
  inset: 0;
  z-index: 1;
  background:
    linear-gradient(102deg, rgba(8,14,28,.96) 28%, rgba(8,14,28,.66) 52%, rgba(8,14,28,.12) 80%),
    linear-gradient(0deg, rgba(8,14,28,.5), rgba(8,14,28,0) 42%);
}
.hero-cine-inner { position: relative; z-index: 2; }
.hero-cinematic .hero-copy { max-width: 620px; }
.hero-cinematic h1 { color: #f4f8ff; }
.hero-cinematic .hero-lede { color: #c6d4ec; }
.hero-cinematic .eyebrow { color: #8fd6c8; }
.hero-cinematic .eyebrow .pulse { background: #5fc9b8; box-shadow: 0 0 0 0 #5fc9b8; }
.hero-cinematic .button-outline {
  color: #fff;
  border-color: rgba(255,255,255,.42);
  background: rgba(255,255,255,.06);
}
.hero-cinematic .button-outline:hover { background: rgba(255,255,255,.15); }

/* ── Journey demo band (showcase under hero) ── */
.journey-band { padding-top: 60px; }
.journey-band .section-kicker { text-align: center; margin-bottom: 18px; }
.journey-band .journey {
  max-width: 940px;
  margin: 0 auto;
  padding: 22px;
}
.journey-band .journey-steps { justify-content: center; }
.journey-band .journey-screen { min-height: 220px; }

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin: 30px 0 22px;
}

.trust-row {
  display: flex;
  flex-wrap: wrap;
  gap: 9px;
}

.trust-row span {
  border: 1px solid rgba(15,23,42,.12);
  background: rgba(255,255,255,.7);
  border-radius: 999px;
  padding: 8px 11px;
  font-size: .88rem;
}

.hero-photo-card,
.feature-image-card {
  position: relative;
  overflow: hidden;
  border-radius: 18px;
}

.hero-photo-card {
  min-height: 520px;
  transform: rotate(0.6deg);
}

.hero-photo-card img,
.feature-image-card img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.photo-overlay {
  position: absolute;
  left: 22px;
  right: 22px;
  bottom: 22px;
  display: grid;
  gap: 8px;
  padding: 18px;
  border: 1px solid rgba(255,255,255,.4);
  border-radius: var(--radius);
  background: rgba(15,23,42,.78);
  color: #ffffff;
  -webkit-backdrop-filter: blur(14px);
  backdrop-filter: blur(14px);
}

.photo-overlay span {
  color: var(--accent);
  font-size: .86rem;
  font-weight: 800;
}

.photo-overlay strong { font-size: 1.05rem; line-height: 1.25; }

/* ============================================================
   Hero visual stack — photo card only (journey demo added in Task 3)
   ============================================================ */
.hero-visual-stack {
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.hero-visual-stack .hero-photo-card {
  min-height: 520px;
}

/* ============================================================
   Two-column layouts
   ============================================================ */
.split,
.pilot-grid,
.demo-grid,
.faq-grid,
.tabs-layout,
.feature-visual-grid {
  display: grid;
  grid-template-columns: 0.86fr 1.14fr;
  gap: 44px;
  align-items: start;
}

.feature-visual-grid {
  grid-template-columns: 1.08fr 0.92fr;
  align-items: center;
}

.feature-image-card { min-height: 430px; }

.feature-pills {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-top: 24px;
}

.feature-pills span {
  display: inline-flex;
  align-items: center;
  min-height: 38px;
  padding: 0 13px;
  border: 1px solid color-mix(in srgb, var(--accent) 22%, transparent);
  border-radius: 999px;
  background: color-mix(in srgb, var(--accent) 10%, transparent);
  color: var(--accent-deep);
  font-weight: 800;
  font-size: .9rem;
}

/* ============================================================
   Section headings
   ============================================================ */
.section-heading {
  max-width: 760px;
  margin: 0 auto 38px;
  text-align: center;
}

.section-heading.align-left {
  margin-inline: 0;
  text-align: left;
}

/* ============================================================
   Problem section
   ============================================================ */
.problem-list { display: grid; gap: 12px; }

.problem-item {
  border: 1px solid rgba(255,255,255,.6);
  border-radius: var(--radius);
  background: var(--glass-bg);
  -webkit-backdrop-filter: blur(12px);
  backdrop-filter: blur(12px);
  box-shadow: var(--shadow);
  padding: 18px;
  display: grid;
  gap: 4px;
}

.problem-item span { color: var(--muted); }

/* ============================================================
   Flow / steps grid
   ============================================================ */
.flow-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 14px;
}

.flow-step { padding: 22px; min-height: 220px; }

.flow-step span {
  display: inline-flex;
  margin-bottom: 34px;
  color: var(--accent);
  font-weight: 900;
}

.flow-step p { color: var(--muted); }

/* ============================================================
   Cards grid (modules)
   ============================================================ */
.cards-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 14px;
}

/* Module scene images */
.card-scene { margin: -22px -22px 14px; border-radius: var(--radius) var(--radius) 0 0; overflow: hidden; aspect-ratio: 16/10; }
.card-scene img { width: 100%; height: 100%; object-fit: cover; display: block; }
.card.has-scene { padding-top: 0; overflow: hidden; }

.icon-box {
  width: 44px;
  height: 44px;
  display: grid;
  place-items: center;
  margin-bottom: 18px;
  border-radius: var(--radius);
  background: var(--ink);
  color: var(--accent);
  font-weight: 900;
  font-size: .86rem;
}

.card p { color: var(--muted); }

/* ============================================================
   Tabs card
   ============================================================ */
.tabs-card { padding: 10px; }

.tabs-list {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 8px;
  padding: 6px;
  background: rgba(15,23,42,.06);
  border-radius: var(--radius);
}

.tab-trigger {
  min-height: 42px;
  border: 0;
  border-radius: 8px;
  background: transparent;
  color: var(--muted);
  font-weight: 700;
  cursor: pointer;
  transition: background .15s ease, color .15s ease;
}

.tab-trigger.active {
  background: #fff;
  color: var(--ink);
  box-shadow: 0 4px 12px rgba(15,23,42,.08);
}

.tab-panel {
  display: none;
  padding: 28px 18px 18px;
}

.tab-panel.active { display: block; }

.tab-panel p { color: var(--muted); }

/* ============================================================
   Pricing card
   ============================================================ */
.pricing-card { padding: 24px; }

.pricing-head {
  display: grid;
  gap: 14px;
  margin-bottom: 20px;
}

.pricing-head strong { font-size: 1.45rem; line-height: 1.1; }

.check-list {
  list-style: none;
  padding: 0;
  margin: 0 0 22px;
  display: grid;
  gap: 12px;
}

.check-list li { position: relative; padding-left: 26px; color: var(--muted); }

.check-list li::before {
  content: "";
  position: absolute;
  left: 0;
  top: .42em;
  width: 12px;
  height: 12px;
  border-radius: 999px;
  background: var(--accent);
}

/* ============================================================
   Lead form
   ============================================================ */
.lead-form { padding: 22px; display: grid; gap: 15px; }

.lead-form label {
  display: grid;
  gap: 8px;
  font-weight: 700;
  font-size: .93rem;
}

.lead-form input,
.lead-form select,
.lead-form textarea {
  width: 100%;
  border: 1px solid rgba(255,255,255,.7);
  border-radius: var(--radius);
  background: rgba(255,255,255,.82);
  color: var(--ink);
  min-height: 46px;
  padding: 11px 12px;
}

.lead-form textarea { resize: vertical; }

.lead-form input:focus,
.lead-form select:focus,
.lead-form textarea:focus {
  outline: 2px solid var(--accent);
  border-color: transparent;
}

.form-status {
  min-height: 24px;
  margin: 0;
  color: var(--accent-deep);
  font-weight: 700;
}

/* ============================================================
   Mini-note
   ============================================================ */
.mini-note {
  padding: 16px;
  margin-top: 22px;
  background: rgba(255,255,255,.6);
  border: 1px solid rgba(255,255,255,.8);
  border-radius: var(--radius);
  backdrop-filter: blur(8px);
  -webkit-backdrop-filter: blur(8px);
  color: var(--ink);
}

/* ============================================================
   Accordion
   ============================================================ */
.accordion { display: grid; gap: 10px; }

.accordion-trigger {
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
  min-height: 58px;
  padding: 0 18px;
  border: 1px solid var(--glass-brd);
  border-radius: var(--radius);
  background: var(--glass-bg);
  -webkit-backdrop-filter: blur(12px);
  backdrop-filter: blur(12px);
  font-weight: 800;
  text-align: left;
  cursor: pointer;
  color: var(--ink);
  box-shadow: var(--shadow);
}

.accordion-panel {
  display: none;
  padding: 0 18px 18px;
  border: 1px solid var(--glass-brd);
  border-top: 0;
  border-radius: 0 0 var(--radius) var(--radius);
  background: var(--glass-bg);
  -webkit-backdrop-filter: blur(12px);
  backdrop-filter: blur(12px);
  margin-top: -12px;
  color: var(--muted);
}

.accordion-panel.open { display: block; }

/* ============================================================
   Footer
   ============================================================ */
.site-footer {
  padding: 36px 0;
  background: var(--ink);
  color: #f8fafc;
}

.footer-grid {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
}

.footer-brand { margin-bottom: 10px; }

.site-footer p {
  max-width: 540px;
  margin-bottom: 0;
  color: rgba(248,250,252,.65);
}

.footer-links {
  display: flex;
  flex-wrap: wrap;
  gap: 16px;
  color: var(--accent);
  font-weight: 700;
}

/* ============================================================
   Journey demo (Task 3)
   ============================================================ */
.journey { padding: 16px; display: grid; gap: 12px; }
.journey-steps { display: flex; flex-wrap: wrap; gap: 6px; }
.jstep { border: 1px solid rgba(15,23,42,.12); background: #fff; padding: 6px 10px; border-radius: 999px;
  font: inherit; font-size: .8rem; font-weight: 600; cursor: pointer; color: var(--muted); }
.jstep.active { background: linear-gradient(90deg, var(--accent), var(--accent-deep)); color: #fff; border-color: transparent; }
.journey-screen { position: relative; min-height: 168px; }
.jscreen { display: none; animation: jfade .35s ease; }
.jscreen.active { display: block; }
@keyframes jfade { from { opacity: 0; transform: translateY(6px); } to { opacity: 1; transform: none; } }
.jbubble { padding: 9px 12px; border-radius: 12px; font-size: .9rem; margin-bottom: 8px; max-width: 88%; }
.jbubble.in { background: #fff; border: 1px solid rgba(15,23,42,.08); }
.jbubble.ai { background: color-mix(in srgb, var(--accent) 12%, #fff); margin-left: auto; }
.jtiles { display: flex; gap: 8px; } .jtiles span { flex: 1; text-align: center; padding: 16px 6px; border-radius: 10px;
  background: color-mix(in srgb, var(--accent) 10%, #fff); font-weight: 600; font-size: .85rem; }
.jsummary { list-style: none; margin: 0; padding: 0; display: grid; grid-template-columns: 1fr 1fr; gap: 6px; font-size: .85rem; }
.jsplit { display: flex; gap: 8px; } .jsplit span { flex: 1; text-align: center; padding: 22px 6px; border-radius: 10px; font-weight: 600; }
.jsplit .before { background: #eef2f7; } .jsplit .after { background: color-mix(in srgb, var(--accent) 16%, #fff); }
.jscore { display: flex; align-items: baseline; gap: 8px; } .jscore b { font-size: 2rem; color: var(--accent-deep); }
.jrow { display: grid; grid-template-columns: 1fr auto auto 1fr; gap: 8px; align-items: center; padding: 8px 4px; border-top: 1px solid rgba(15,23,42,.08); font-size: .85rem; }
.jrow .hot { color: #ef4444; } .jrow .warm { color: #f59e0b; } .jrow .cool { color: #64748b; }
.jcap { font-size: .78rem; color: var(--muted); margin: 8px 0 0; }
@media (prefers-reduced-motion: reduce) { .jscreen { animation: none; } }

/* ============================================================
   Responsive — tablet (<=980px)
   ============================================================ */
@media (max-width: 980px) {
  .hero-grid,
  .split,
  .pilot-grid,
  .demo-grid,
  .faq-grid,
  .tabs-layout,
  .feature-visual-grid {
    grid-template-columns: 1fr;
  }

  .hero-grid { gap: 34px; }

  .hero-photo-card { transform: none; }

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

/* ============================================================
   Responsive — mobile (<=720px)
   ============================================================ */
@media (max-width: 720px) {
  .section { padding: 64px 0; }

  .nav-toggle { display: block; }

  .site-header .nav-shell { padding: 10px 0; }

  .nav-links {
    position: absolute;
    top: 70px;
    left: 16px;
    right: 16px;
    display: none;
    flex-direction: column;
    align-items: stretch;
    padding: 16px;
    background: var(--glass-bg);
    -webkit-backdrop-filter: blur(16px);
    backdrop-filter: blur(16px);
    border: 1px solid var(--glass-brd);
    border-radius: var(--radius);
    box-shadow: var(--shadow);
  }

  .language-switch {
    width: 100%;
    justify-content: center;
  }

  .nav-links.open { display: flex; }

  .nav-links .button { width: 100%; }

  .hero { padding-top: 52px; }

  .hero-cinematic { min-height: auto; padding: 72px 0 60px; }
  .hero-cinematic .hero-bg { background-position: center top; }
  .hero-cinematic .hero-scrim {
    background: linear-gradient(180deg, rgba(8,14,28,.8) 0%, rgba(8,14,28,.9) 60%, rgba(8,14,28,.95) 100%);
  }
  .journey-band { padding-top: 40px; }
  .journey-band .journey { padding: 16px; }

  .hero-photo-card { min-height: 360px; }

  .feature-image-card { min-height: 300px; }

  .hero-actions { display: grid; }

  .flow-grid,
  .cards-grid {
    grid-template-columns: 1fr;
  }

  .tabs-list { grid-template-columns: 1fr; }

  .footer-grid {
    flex-direction: column;
    align-items: flex-start;
  }
}
