:root {
  --bg: #07111f;
  --bg-2: #0b1728;
  --panel: #111f31;
  --panel-2: #132337;
  --text: #f5f7fb;
  --muted: #b8c3d4;
  --gold: #f0bf54;
  --gold-2: #ffe08a;
  --cyan: #4bd7d9;
  --green: #56d68a;
  --coral: #ff7b67;
  --line: rgba(255, 255, 255, 0.12);
  --shadow: 0 18px 48px rgba(0, 0, 0, 0.34);
  --max: 1120px;
  --page-pad: 20px;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  color: var(--text);
  background:
    radial-gradient(circle at 75% 8%, rgba(240, 191, 84, 0.14), transparent 30rem),
    linear-gradient(180deg, #050b14 0%, var(--bg) 46%, #08101d 100%);
  font-family: Arial, Helvetica, sans-serif;
  line-height: 1.6;
  overflow-x: hidden;
}

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

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

a:focus-visible,
button:focus-visible {
  outline: 3px solid var(--cyan);
  outline-offset: 4px;
}

.sr-only {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  white-space: nowrap;
  border: 0;
}

.skip-link {
  position: absolute;
  left: 1rem;
  top: 1rem;
  z-index: 20;
  padding: 0.65rem 0.9rem;
  color: #06101c;
  background: var(--gold-2);
  transform: translateY(-150%);
}

.skip-link:focus {
  transform: translateY(0);
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 10;
  width: min(var(--max), calc(100% - (var(--page-pad) * 2)));
  margin: 0 auto;
  border-right: 1px solid rgba(240, 191, 84, 0.24);
  border-left: 1px solid rgba(240, 191, 84, 0.24);
  border-bottom: 1px solid var(--line);
  background: rgba(5, 11, 20, 0.86);
  backdrop-filter: blur(14px);
}

.nav {
  width: 100%;
  min-height: 76px;
  margin: 0 auto;
  padding-inline: 1rem;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1.25rem;
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 0.7rem;
  min-width: 0;
}

.brand-mark {
  width: 56px;
  height: 52px;
  flex: 0 0 auto;
  border-radius: 8px;
  object-fit: cover;
  object-position: center;
  box-shadow: 0 8px 24px rgba(0, 0, 0, 0.28);
}

.brand-copy {
  display: grid;
  gap: 0.1rem;
  min-width: 0;
}

.brand-wordmark {
  width: min(23rem, 52vw);
  height: auto;
}

.brand strong,
.footer-brand {
  display: block;
  font-size: 1rem;
  letter-spacing: 0;
}

.brand small {
  display: block;
  max-width: 28rem;
  color: var(--muted);
  font-size: 0.74rem;
}

.nav-links {
  display: flex;
  align-items: center;
  justify-content: flex-end;
  gap: 0.35rem;
  flex-wrap: wrap;
}

.nav-links a {
  padding: 0.6rem 0.7rem;
  color: var(--muted);
  font-size: 0.92rem;
}

.nav-links a:hover {
  color: var(--gold-2);
}

.hero {
  position: relative;
  width: min(var(--max), calc(100% - (var(--page-pad) * 2)));
  min-height: min(560px, calc(100svh - 152px));
  margin: 0 auto;
  display: grid;
  align-items: start;
  overflow: hidden;
  border-right: 1px solid rgba(240, 191, 84, 0.24);
  border-left: 1px solid rgba(240, 191, 84, 0.24);
  border-bottom: 1px solid var(--line);
}

.hero-media {
  position: absolute;
  inset: 0;
  background:
    linear-gradient(90deg, rgba(5, 11, 20, 0.96) 0%, rgba(5, 11, 20, 0.78) 38%, rgba(5, 11, 20, 0.3) 72%, rgba(5, 11, 20, 0.68) 100%),
    linear-gradient(180deg, transparent 72%, var(--bg) 100%),
    url("assets/streak-mobile-gaming-hero.png") center right / cover no-repeat;
}

.hero-inner {
  position: relative;
  width: 100%;
  margin: 0 auto;
  padding: 4.55rem 1rem 2.45rem;
}

.eyebrow {
  margin: 0 0 0.8rem;
  color: var(--gold-2);
  font-size: 0.78rem;
  font-weight: 800;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

h1,
h2,
h3,
p {
  overflow-wrap: anywhere;
}

h1,
h2,
h3 {
  margin: 0;
  line-height: 1.08;
  letter-spacing: 0;
}

h1 {
  max-width: 720px;
  color: transparent;
  background: linear-gradient(105deg, #ffffff 0%, #f7f9ff 38%, var(--gold-2) 63%, var(--gold) 74%, #ffffff 96%);
  -webkit-background-clip: text;
  background-clip: text;
  font-size: clamp(2rem, 4.1vw, 3.28rem);
  text-shadow: 0 12px 34px rgba(0, 0, 0, 0.42);
}

h1 span {
  display: block;
}

h2 {
  font-size: clamp(1.45rem, 2.5vw, 2.15rem);
}

h3 {
  font-size: 1.25rem;
}

.hero-copy {
  max-width: 650px;
  margin: 1.4rem 0 0;
  color: #dbe4f2;
  font-size: clamp(1.05rem, 2vw, 1.28rem);
}

.hero-actions {
  display: flex;
  flex-wrap: nowrap;
  gap: 0.55rem;
  max-width: 1080px;
  margin-top: 1.55rem;
}

.newsletter-action {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.55rem;
  flex: 0 0 auto;
  min-height: 38px;
  padding: 0.66rem 1rem;
  border: 1px solid var(--cyan);
  border-radius: 8px;
  color: var(--gold-2);
  background: rgba(5, 11, 20, 0.74);
  font-size: 0.92rem;
  font-weight: 900;
  line-height: 1.15;
}

.header-newsletter {
  margin-left: auto;
  white-space: nowrap;
}

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

.newsletter-action svg {
  width: 18px;
  height: 18px;
  fill: none;
  stroke: currentColor;
  stroke-width: 2;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.button,
.brand-card a {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 42px;
  padding: 0.66rem 0.78rem;
  border: 1px solid rgba(240, 191, 84, 0.42);
  border-radius: 8px;
  color: var(--text);
  background: rgba(17, 31, 49, 0.82);
  font-weight: 800;
  font-size: 0.92rem;
  line-height: 1.15;
  box-shadow: 0 12px 28px rgba(0, 0, 0, 0.2);
}

.button:hover,
.brand-card a:hover {
  border-color: var(--gold-2);
  transform: translateY(-1px);
}

.button.primary {
  color: #08101d;
  background: linear-gradient(135deg, var(--gold-2), var(--gold));
}

.button.small {
  min-height: 42px;
  padding-inline: 0.9rem;
  font-size: 0.92rem;
}

.section {
  width: min(var(--max), calc(100% - (var(--page-pad) * 2)));
  margin: 0 auto;
  padding: 5rem 0;
}

.feature-band {
  width: min(var(--max), calc(100% - (var(--page-pad) * 2)));
  max-width: none;
  padding-inline: 1rem;
  background:
    linear-gradient(135deg, rgba(75, 215, 217, 0.06), transparent 32rem),
    linear-gradient(180deg, rgba(255, 255, 255, 0.035), rgba(255, 255, 255, 0.01));
  border: 1px solid var(--line);
  border-right-color: rgba(240, 191, 84, 0.24);
  border-left-color: rgba(240, 191, 84, 0.24);
  border-top: 0;
}

.section-heading {
  display: grid;
  grid-template-columns: minmax(11rem, 0.42fr) minmax(0, 1fr);
  gap: 2rem;
  align-items: end;
  margin-bottom: 2.2rem;
}

.section-heading.compact {
  display: block;
  max-width: none;
}

.section-lead {
  max-width: 820px;
  margin: 0.9rem 0 0;
  color: var(--muted);
  font-size: 1.02rem;
}

.about {
  padding-block: 4rem;
}

.about-grid {
  display: grid;
  gap: 1.6rem;
}

.about-intro {
  max-width: var(--max);
  margin: 0 auto;
  text-align: center;
}

.about-intro .eyebrow {
  margin-bottom: 0.95rem;
  font-size: 0.9rem;
  letter-spacing: 0.16em;
}

.about-intro h2 {
  max-width: 760px;
  margin: 0 auto;
  color: transparent;
  background: linear-gradient(105deg, #ffffff 0%, #f7f9ff 48%, var(--gold-2) 76%, #ffffff 96%);
  -webkit-background-clip: text;
  background-clip: text;
  font-size: clamp(1.65rem, 2.65vw, 2.25rem);
}

.about-intro > p:not(.eyebrow) {
  max-width: 820px;
  margin: 1.1rem auto 0;
  color: var(--muted);
  font-size: 1.08rem;
}

.about-stats {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 0.75rem;
  margin-top: 1.6rem;
}

.about-stats span {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  width: fit-content;
  min-height: 44px;
  padding: 0.55rem 0.8rem;
  border: 1px solid rgba(240, 191, 84, 0.28);
  border-radius: 8px;
  color: #dbe4f2;
  background: rgba(17, 31, 49, 0.62);
}

.about-stats strong {
  color: var(--gold-2);
  font-size: 1.12rem;
  line-height: 1;
}

.about-panels {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 1rem;
  max-width: none;
  margin: 0.4rem auto 0;
}

.about-panels article {
  min-height: 0;
  padding: 1.05rem 1.15rem;
  border: 1px solid var(--line);
  border-radius: 8px;
  background:
    linear-gradient(135deg, rgba(240, 191, 84, 0.08), transparent 58%),
    rgba(17, 31, 49, 0.58);
  box-shadow: 0 16px 38px rgba(0, 0, 0, 0.22);
}

.about-panels article:nth-child(2),
.about-panels article:nth-child(3) {
  background:
    linear-gradient(135deg, rgba(75, 215, 217, 0.07), transparent 58%),
    rgba(17, 31, 49, 0.58);
}

.about-panels h3 {
  color: var(--gold-2);
  font-size: 1.08rem;
}

.about-panels p {
  margin: 0.65rem 0 0;
  color: var(--muted);
  font-size: 1rem;
  line-height: 1.48;
}

.text-columns {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 1.2rem 2.6rem;
  color: var(--muted);
  font-size: 1.03rem;
}

.text-columns p,
.trust-copy p {
  margin: 0 0 1rem;
}

.text-columns p {
  max-width: 42rem;
}

.card-grid,
.network-grid {
  display: grid;
  gap: 1rem;
}

.brand-grid {
  grid-template-columns: repeat(4, minmax(0, 1fr));
  margin-top: 2rem;
}

.brand-card,
.network-card {
  min-width: 0;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: linear-gradient(180deg, rgba(255, 255, 255, 0.055), rgba(255, 255, 255, 0.025));
  box-shadow: var(--shadow);
}

.brand-card {
  display: grid;
  grid-template-rows: auto auto 1fr auto;
  gap: 0.75rem;
  min-height: 245px;
  padding: 1rem;
}

.brand-card p,
.network-card p,
.promo p,
.responsible p {
  color: var(--muted);
}

.logo-tile {
  width: 100%;
  aspect-ratio: 16 / 5.4;
  display: grid;
  place-items: center;
  border: 1px solid rgba(240, 191, 84, 0.24);
  border-radius: 8px;
  color: var(--gold-2);
  background:
    linear-gradient(135deg, rgba(240, 191, 84, 0.13), transparent),
    radial-gradient(circle at 70% 25%, rgba(75, 215, 217, 0.18), transparent 34%),
    #0c1829;
  font-size: 1.8rem;
  font-weight: 900;
}

.logo-tile img {
  max-width: 82%;
  max-height: 68px;
  object-fit: contain;
}

.logo-tile.text-logo {
  color: var(--gold-2);
  font-size: 1.32rem;
  letter-spacing: 0;
}

.honey-logo {
  background:
    linear-gradient(135deg, rgba(240, 191, 84, 0.18), rgba(75, 215, 217, 0.08)),
    #0c1829;
}

.crypto-card .logo-tile {
  border-color: rgba(75, 215, 217, 0.28);
  color: var(--cyan);
}

.online-card .logo-tile {
  border-color: rgba(255, 123, 103, 0.26);
}

.brand-card a {
  width: 100%;
  color: #07111f;
  background: var(--gold-2);
}

.promo {
  width: min(var(--max), calc(100% - (var(--page-pad) * 2)));
  margin: 1rem auto;
  padding: 2rem;
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto;
  gap: 2rem;
  align-items: center;
  border: 1px solid rgba(240, 191, 84, 0.24);
  border-radius: 8px;
  background:
    linear-gradient(135deg, rgba(240, 191, 84, 0.16), rgba(255, 123, 103, 0.08)),
    var(--panel);
  box-shadow: var(--shadow);
}

.promo h2 {
  max-width: 760px;
}

.promo p {
  max-width: 820px;
  margin: 1rem 0 0;
}

.network-grid {
  grid-template-columns: repeat(5, minmax(0, 1fr));
  gap: 0.85rem;
  margin-top: 1.6rem;
}

.network-card {
  min-height: 0;
  padding: 0.8rem;
  display: grid;
  grid-template-rows: auto auto auto 1fr auto;
  gap: 0.55rem;
  border-color: rgba(240, 191, 84, 0.22);
  background: linear-gradient(180deg, rgba(255, 255, 255, 0.052), rgba(255, 255, 255, 0.018));
}

.network-card img {
  width: 100%;
  aspect-ratio: 16 / 8.5;
  object-fit: contain;
  padding: 0.45rem;
  border: 1px solid rgba(240, 191, 84, 0.22);
  border-radius: 8px;
  background: #03070d;
}

.network-label {
  margin: 0.25rem 0 0;
  color: var(--gold-2) !important;
  font-size: 0.68rem;
  font-weight: 900;
  letter-spacing: 0.08em;
  line-height: 1.15;
  text-transform: uppercase;
}

.network-card h3 {
  font-size: 1.03rem;
}

.network-card p:not(.network-label) {
  margin: 0;
  font-size: 0.86rem;
  line-height: 1.45;
}

.network-card .button {
  width: 100%;
  min-height: 38px;
  padding: 0.55rem 0.65rem;
  font-size: 0.86rem;
}

.network-card:nth-child(2) {
  border-color: rgba(75, 215, 217, 0.26);
}

.network-card:nth-child(3) {
  border-color: rgba(86, 214, 138, 0.26);
}

.network-card:nth-child(4) {
  border-color: rgba(255, 123, 103, 0.26);
}

.trust-layout {
  display: grid;
  grid-template-columns: minmax(0, 1.35fr) minmax(270px, 0.65fr);
  gap: 1.6rem;
  align-items: start;
}

.trust-box {
  padding: clamp(1.35rem, 3vw, 2rem);
  border: 1px solid rgba(240, 191, 84, 0.22);
  border-radius: 8px;
  background:
    linear-gradient(135deg, rgba(240, 191, 84, 0.075), transparent 42%),
    linear-gradient(180deg, rgba(255, 255, 255, 0.035), rgba(255, 255, 255, 0.015)),
    rgba(17, 31, 49, 0.46);
  box-shadow: var(--shadow);
}

.trust-header {
  display: grid;
  grid-template-columns: minmax(220px, 0.32fr) minmax(0, 1.68fr);
  gap: 1.5rem;
  align-items: end;
  margin-bottom: 1.5rem;
  padding-bottom: 1.2rem;
  border-bottom: 1px solid var(--line);
}

.trust-header .eyebrow {
  margin-bottom: 0.25rem;
  font-size: 0.88rem;
  letter-spacing: 0.14em;
}

.trust-header h2 {
  max-width: none;
  font-size: clamp(1.45rem, 2vw, 2rem);
  font-weight: 800;
  line-height: 1.12;
}

.trust-points {
  display: grid;
  gap: 0.75rem;
}

.trust-point {
  padding: 0.95rem;
  border: 1px solid rgba(240, 191, 84, 0.3);
  border-radius: 8px;
  background: rgba(10, 22, 36, 0.72);
}

.trust-point span {
  display: block;
  color: var(--gold-2);
  font-size: 1.3rem;
  font-weight: 900;
  line-height: 1;
}

.trust-point strong {
  display: block;
  margin-top: 0.35rem;
  color: var(--text);
  font-size: 1rem;
  line-height: 1.2;
}

.trust-point small {
  display: block;
  margin-top: 0.45rem;
  color: var(--muted);
  font-size: 0.88rem;
  line-height: 1.45;
}

.trust-copy {
  color: var(--muted);
  font-size: 1rem;
}

.trust-copy p:last-child {
  margin-bottom: 0;
}

.responsible {
  width: min(var(--max), calc(100% - (var(--page-pad) * 2)));
  margin: 0 auto 5rem;
  padding: 2rem;
  display: grid;
  grid-template-columns: minmax(190px, 0.35fr) minmax(0, 1fr);
  gap: 2rem;
  align-items: center;
  border: 1px solid rgba(86, 214, 138, 0.28);
  border-radius: 8px;
  background: linear-gradient(135deg, rgba(86, 214, 138, 0.1), rgba(75, 215, 217, 0.06)), var(--panel);
}

.responsible p {
  margin: 0;
}

.site-footer {
  border-top: 1px solid var(--line);
  background: #050b14;
}

.footer-inner {
  width: min(var(--max), calc(100% - (var(--page-pad) * 2)));
  margin: 0 auto;
  padding: 2rem 0;
  display: grid;
  grid-template-columns: 1fr auto;
  gap: 1rem 2rem;
  align-items: center;
}

.footer-brand {
  color: var(--gold-2);
  font-weight: 900;
}

.site-footer nav {
  display: flex;
  flex-wrap: wrap;
  justify-content: flex-end;
  gap: 0.8rem 1rem;
}

.site-footer a:not(.footer-brand) {
  color: var(--muted);
}

.site-footer a:hover {
  color: var(--gold-2);
}

.site-footer p {
  grid-column: 1 / -1;
  margin: 0;
  color: #8f9caf;
  font-size: 0.92rem;
}

body.newsletter-open {
  overflow: hidden;
}

.newsletter-modal {
  position: fixed;
  inset: 0;
  z-index: 50;
  display: none;
  align-items: center;
  justify-content: center;
  padding: 1rem;
  background:
    radial-gradient(circle at 50% 10%, rgba(75, 215, 217, 0.18), transparent 28rem),
    rgba(3, 7, 13, 0.78);
  backdrop-filter: blur(12px);
}

.newsletter-modal.is-open {
  display: flex;
}

.newsletter-dialog {
  position: relative;
  width: min(100%, 780px);
  padding: clamp(1.35rem, 4vw, 2rem);
  border: 1px solid rgba(75, 215, 217, 0.38);
  border-radius: 8px;
  background: linear-gradient(180deg, rgba(8, 18, 32, 0.98), rgba(4, 10, 18, 0.98));
  box-shadow:
    0 0 55px rgba(75, 215, 217, 0.16),
    0 24px 80px rgba(0, 0, 0, 0.52);
}

.newsletter-dialog h2 {
  margin: 0;
  font-size: clamp(1.7rem, 4vw, 2.7rem);
  text-transform: uppercase;
}

.newsletter-dialog p {
  margin: 0.8rem 0 1.35rem;
  color: #dbe4f2;
  font-size: 1.08rem;
}

.newsletter-close {
  position: absolute;
  top: 1rem;
  right: 1rem;
  width: 48px;
  height: 48px;
  border: 1px solid rgba(75, 215, 217, 0.38);
  border-radius: 8px;
  color: var(--cyan);
  background: rgba(8, 18, 32, 0.92);
  font-size: 2rem;
  line-height: 1;
  cursor: pointer;
}

.newsletter-signup-form {
  display: grid;
  gap: 1rem;
}

.newsletter-input-row {
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto;
  gap: 0.8rem;
}

.newsletter-input-row input {
  min-width: 0;
  min-height: 58px;
  padding: 0.9rem 1rem;
  border: 1px solid rgba(75, 215, 217, 0.5);
  border-radius: 8px;
  color: var(--text);
  background: #07111f;
  font: inherit;
  font-size: 1.02rem;
}

.newsletter-input-row input::placeholder {
  color: #94a3b8;
}

.newsletter-input-row button {
  min-height: 58px;
  padding: 0.9rem 1.35rem;
  border: 1px solid #38bdf8;
  border-radius: 8px;
  color: white;
  background: linear-gradient(180deg, #38bdf8, #1584f7);
  font-weight: 900;
  text-transform: uppercase;
  cursor: pointer;
}

.newsletter-status {
  min-height: 1.4rem;
  color: var(--gold-2);
  font-weight: 800;
}

.newsletter-submit-frame {
  position: absolute;
  width: 1px;
  height: 1px;
  border: 0;
  opacity: 0;
  pointer-events: none;
}

@media (max-width: 980px) {
  .nav {
    align-items: flex-start;
    flex-direction: column;
    padding: 0.9rem 0;
  }

  .nav-links {
    justify-content: flex-start;
  }

  .header-newsletter {
    margin-left: 0;
  }

  .hero {
    min-height: auto;
  }

  .section-heading,
  .about-grid,
  .text-columns,
  .trust-layout,
  .trust-header,
  .responsible {
    grid-template-columns: 1fr;
  }

  .about-intro {
    text-align: left;
  }

  .about-intro h2 {
    max-width: 16ch;
    margin: 0;
  }

  .about-intro > p:not(.eyebrow) {
    margin-inline: 0;
  }

  .about-stats {
    justify-content: flex-start;
  }

  .brand-grid,
  .about-panels {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

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

  .promo {
    grid-template-columns: 1fr;
  }

  .promo .button {
    justify-self: start;
  }

  .hero-actions {
    flex-wrap: wrap;
  }

  .trust-header {
    align-items: start;
  }
}

@media (max-width: 640px) {
  .brand {
    align-items: flex-start;
  }

  .brand small {
    display: none;
  }

  .nav-links {
    width: 100%;
    gap: 0;
  }

  .nav-links a {
    font-size: 0.9rem;
    padding-inline: 0;
    margin-right: 0.85rem;
  }

  .hero {
    align-items: start;
  }

  .hero-media {
    background:
      linear-gradient(180deg, rgba(5, 11, 20, 0.82) 0%, rgba(5, 11, 20, 0.72) 48%, var(--bg) 100%),
      url("assets/streak-mobile-gaming-hero.png") center top / cover no-repeat;
  }

  .hero-inner {
    padding: 3.3rem 0 2rem;
  }

  h1 {
    font-size: 2.05rem;
    line-height: 1.06;
  }

  .hero-copy {
    margin-top: 1rem;
    font-size: 1rem;
  }

  .hero-actions {
    gap: 0.55rem;
    margin-top: 1.2rem;
  }

  .hero-actions,
  .button {
    width: 100%;
    min-height: 43px;
  }

  .header-newsletter {
    width: auto;
  }

  .newsletter-input-row {
    grid-template-columns: 1fr;
  }

  .newsletter-input-row button {
    width: 100%;
  }

  .section {
    padding: 3.4rem 0;
  }

  .brand-grid,
  .about-panels {
    grid-template-columns: 1fr;
  }

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

  .about {
    padding-block: 3.4rem;
  }

  .about-intro .eyebrow {
    font-size: 0.82rem;
  }

  .about-panels article {
    min-height: 0;
  }

  .brand-card {
    min-height: 0;
  }

  .promo,
  .responsible {
    padding: 1.25rem;
  }

  .footer-inner {
    grid-template-columns: 1fr;
  }

  .site-footer nav {
    justify-content: flex-start;
  }
}

@media (max-width: 460px) {
  .network-grid {
    grid-template-columns: 1fr;
  }
}
