:root {
  --ink: #121212;
  --muted: #66636a;
  --paper: #fff8f6;
  --panel: #ffffff;
  --line: #eadfda;
  --red: #ff3038;
  --red-dark: #c91d28;
  --blue: #1f2b47;
  --teal: #0d8f8f;
  --yellow: #ffd447;
  --green: #2e9f62;
  --shadow: 0 18px 50px rgba(18, 18, 18, 0.14);
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  background:
    radial-gradient(circle at 18px 18px, rgba(255, 48, 56, 0.08) 0 3px, transparent 4px),
    linear-gradient(180deg, #fff 0%, var(--paper) 48%, #fff7ee 100%);
  background-size: 34px 34px, 100% 100%;
  color: var(--ink);
  font-family:
    Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI",
    sans-serif;
  line-height: 1.5;
}

a {
  color: inherit;
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 20;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
  min-height: 70px;
  padding: 14px clamp(18px, 4vw, 56px);
  background: rgba(255, 250, 248, 0.94);
  border-bottom: 3px solid #111;
  backdrop-filter: blur(18px);
  overflow-x: hidden;
}

.brand,
.nav-links {
  display: flex;
  align-items: center;
}

.brand {
  gap: 10px;
  font-weight: 800;
  text-decoration: none;
  font-size: 1.08rem;
}

.brand-logo {
  width: 50px;
  height: 42px;
  border: 3px solid #111;
  border-radius: 12px;
  background: white;
  object-fit: cover;
  object-position: center 42%;
  box-shadow: 3px 3px 0 #111;
}

.nav-links {
  gap: 4px;
  min-width: 0;
  max-width: 100%;
}

.nav-links a,
.button,
.profile-button {
  min-height: 42px;
  padding: 10px 14px;
  border-radius: 8px;
  text-decoration: none;
  font-weight: 700;
  font-size: 0.92rem;
}

.nav-links a {
  color: var(--muted);
}

.nav-links a:hover {
  color: var(--red-dark);
  background: #fff0f0;
}

.profile-button {
  border: 3px solid #111;
  color: white;
  background: var(--red);
  box-shadow: 3px 3px 0 #111;
  cursor: pointer;
}

.hero {
  display: grid;
  grid-template-columns: minmax(280px, 0.86fr) minmax(320px, 1.14fr);
  gap: clamp(24px, 4vw, 56px);
  align-items: center;
  min-height: calc(100vh - 70px);
  padding: clamp(34px, 6vw, 78px) clamp(18px, 5vw, 72px) clamp(28px, 5vw, 58px);
  overflow: hidden;
  background:
    linear-gradient(90deg, rgba(255, 255, 255, 0.86), rgba(255, 248, 246, 0.5)),
    radial-gradient(circle at 82% 18%, rgba(255, 48, 56, 0.18), transparent 24%),
    radial-gradient(circle at 78% 78%, rgba(255, 212, 71, 0.25), transparent 26%);
}

.hero-copy {
  position: relative;
  z-index: 2;
}

.eyebrow {
  margin: 0 0 10px;
  color: var(--red-dark);
  font-weight: 850;
  text-transform: uppercase;
  font-size: 0.78rem;
  letter-spacing: 0.08em;
}

h1,
h2,
h3,
p {
  margin-top: 0;
}

h1 {
  max-width: 760px;
  margin-bottom: 18px;
  font-size: clamp(2.5rem, 6vw, 5.85rem);
  line-height: 0.94;
  letter-spacing: 0;
}

h2 {
  margin-bottom: 14px;
  font-size: clamp(2rem, 3.5vw, 3.4rem);
  line-height: 1.02;
  letter-spacing: 0;
}

h3 {
  margin-bottom: 8px;
  font-size: 1.08rem;
  line-height: 1.2;
}

.lead {
  max-width: 620px;
  color: var(--muted);
  font-size: clamp(1.04rem, 1.8vw, 1.28rem);
}

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

.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border: 3px solid #111;
  box-shadow: 4px 4px 0 #111;
  transition: transform 150ms ease, box-shadow 150ms ease;
}

.button:hover {
  transform: translate(-1px, -1px);
  box-shadow: 5px 5px 0 #111;
}

.button.primary {
  color: white;
  background: var(--red);
  border-color: #111;
}

.button.secondary {
  color: var(--ink);
  background: white;
}

.hero-visual {
  position: relative;
  min-height: 420px;
}

.brand-hero {
  display: grid;
  align-items: center;
}

.hero-logo-card {
  position: relative;
  width: min(760px, 54vw);
  padding: 14px;
  border: 4px solid #111;
  border-radius: 24px;
  background: white;
  box-shadow: 12px 12px 0 #111;
  transform: rotate(1deg);
}

.hero-logo-card::before,
.hero-logo-card::after {
  content: "";
  position: absolute;
  z-index: -1;
  border: 4px solid #111;
  border-radius: 999px;
}

.hero-logo-card::before {
  width: 128px;
  height: 128px;
  top: -38px;
  right: -30px;
  background: var(--yellow);
}

.hero-logo-card::after {
  width: 76px;
  height: 76px;
  left: -28px;
  bottom: -22px;
  background: var(--red);
}

.hero-logo-card img {
  display: block;
  width: 100%;
  max-width: none;
  height: auto;
  border-radius: 16px;
}

.hero-wordmark {
  position: absolute;
  left: 24px;
  bottom: 24px;
  display: inline-flex;
  align-items: baseline;
  gap: 2px;
  padding: 8px 14px 10px;
  border: 4px solid #111;
  border-radius: 14px;
  background: rgba(255, 255, 255, 0.96);
  box-shadow: 5px 5px 0 #111;
  font-size: clamp(1.35rem, 3vw, 2.6rem);
  font-weight: 950;
  line-height: 1;
}

.hero-wordmark span {
  color: #111;
}

.hero-wordmark strong {
  color: var(--red);
}

.hero-bubbles {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-top: 28px;
}

.hero-bubbles span {
  padding: 9px 12px;
  border: 3px solid #111;
  border-radius: 999px;
  background: white;
  box-shadow: 3px 3px 0 #111;
  font-size: 0.86rem;
  font-weight: 900;
}

.section {
  padding: clamp(54px, 8vw, 100px) clamp(18px, 5vw, 72px);
}

.section-heading {
  max-width: 820px;
  margin-bottom: 28px;
}

.section-heading p:not(.eyebrow) {
  color: var(--muted);
  font-size: 1.06rem;
}

.section-heading.compact {
  max-width: 620px;
}

.metric-grid,
.glossary-grid,
.number-grid,
.catalogue-kpis {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 16px;
}

.metric-card,
.number-card,
.catalogue-kpis article,
.signal-item,
.story-flow article,
.glossary-grid article,
.state-section {
  border: 3px solid #111;
  border-radius: 14px;
  background: var(--panel);
  box-shadow: 6px 6px 0 rgba(17, 17, 17, 0.9);
}

.metric-card {
  display: flex;
  flex-direction: column;
  min-height: 315px;
  padding: 20px;
}

.card-topline {
  display: flex;
  justify-content: space-between;
  gap: 10px;
  align-items: center;
  margin-bottom: 20px;
}

.pill {
  display: inline-flex;
  align-items: center;
  min-height: 28px;
  padding: 5px 9px;
  border-radius: 999px;
  color: white;
  font-size: 0.75rem;
  font-weight: 850;
}

.pill.live {
  background: var(--red);
}

.pill.economy {
  background: #111;
}

.pill.jobs {
  background: var(--red);
}

.pill.people {
  background: var(--teal);
}

.small {
  color: var(--muted);
  font-size: 0.78rem;
  text-align: right;
}

.metric-value {
  margin: 6px 0 0;
  font-size: clamp(2.8rem, 5vw, 4.5rem);
  font-weight: 900;
  line-height: 0.95;
  color: var(--ink);
}

.metric-label,
.plain-meaning {
  color: var(--muted);
}

.metric-label {
  margin: 8px 0 22px;
  font-weight: 800;
}

.plain-meaning {
  margin: auto 0 0;
}

.share-button {
  align-self: flex-start;
  min-height: 38px;
  margin-top: 18px;
  padding: 8px 12px;
  border: 3px solid #111;
  border-radius: 8px;
  color: #111;
  background: var(--yellow);
  box-shadow: 3px 3px 0 #111;
  cursor: pointer;
  font: inherit;
  font-size: 0.86rem;
  font-weight: 900;
}

.share-button:hover,
.profile-button:hover {
  transform: translate(-1px, -1px);
}

.clickable-data {
  cursor: pointer;
  transition: transform 150ms ease, box-shadow 150ms ease;
}

.clickable-data:hover,
.clickable-data:focus-visible {
  transform: translate(-2px, -2px);
  box-shadow: 8px 8px 0 #111;
  outline: 0;
}

.numbers-section {
  background: #fff0f0;
  border-block: 3px solid #111;
}

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

.number-card {
  min-height: 238px;
  padding: 18px;
}

.number-topic {
  display: inline-flex;
  margin-bottom: 18px;
  padding: 5px 9px;
  border-radius: 999px;
  color: white;
  font-size: 0.72rem;
  font-weight: 850;
}

.number-topic.prices {
  background: var(--red);
}

.number-topic.jobs {
  background: var(--red);
}

.number-topic.economy {
  background: #111;
}

.number-topic.trade {
  background: var(--teal);
}

.number-topic.industry {
  background: #6f49b6;
}

.number-topic.retail {
  background: #a85f13;
}

.number-topic.youth {
  background: #111;
}

.number-topic.transport {
  background: var(--teal);
}

.number-topic.fuel {
  background: var(--red);
}

.number-topic.birthday {
  color: #111;
  background: var(--yellow);
}

.number-topic.car {
  background: #111;
}

.number-topic.colour {
  color: #111;
  background: #d6e9ff;
}

.number-topic.food {
  background: var(--red);
}

.number-topic.blood {
  background: #b41422;
}

.number-topic.ev {
  background: var(--green);
}

.number-topic.quake {
  background: #6f49b6;
}

.number-topic.passport {
  background: var(--teal);
}

.number-topic.apps {
  background: #6f49b6;
}

.number-value {
  margin: 2px 0 6px;
  font-size: clamp(1.85rem, 3vw, 3rem);
  font-weight: 900;
  line-height: 1;
}

.number-meta {
  margin-bottom: 14px;
  color: var(--red-dark);
  font-size: 0.86rem;
  font-weight: 850;
}

.number-card p:last-child {
  margin-bottom: 0;
  color: var(--muted);
}

.split-section {
  display: grid;
  grid-template-columns: minmax(260px, 0.75fr) minmax(340px, 1.25fr);
  gap: clamp(22px, 4vw, 54px);
  align-items: start;
  background: #fff0f0;
  border-block: 3px solid #111;
}

.signal-list {
  display: grid;
  gap: 12px;
}

.signal-item {
  display: grid;
  grid-template-columns: 58px 1fr;
  gap: 16px;
  padding: 18px;
}

.signal-icon {
  display: grid;
  place-items: center;
  width: 58px;
  height: 58px;
  border: 3px solid #111;
  border-radius: 14px;
  color: white;
  background: var(--red);
  font-size: 0.78rem;
  font-weight: 900;
}

.signal-item p {
  margin-bottom: 0;
  color: var(--muted);
}

.number-card .share-button {
  margin-top: 16px;
}

.young-section {
  background:
    linear-gradient(180deg, #ffffff 0%, #fffdf4 100%);
}

.young-grid {
  grid-template-columns: repeat(3, minmax(0, 1fr));
  max-width: 1080px;
}

.young-section .number-card {
  min-height: 260px;
}

.fun-section {
  position: relative;
  overflow: hidden;
  background:
    linear-gradient(135deg, rgba(255, 255, 255, 0.92), rgba(255, 253, 244, 0.86)),
    repeating-linear-gradient(45deg, rgba(255, 48, 56, 0.08) 0 10px, transparent 10px 22px);
  border-block: 3px solid #111;
}

.fun-section::before {
  content: "DATA-LAH";
  position: absolute;
  right: clamp(14px, 5vw, 70px);
  top: 20px;
  color: rgba(17, 17, 17, 0.045);
  font-size: clamp(4rem, 12vw, 10rem);
  font-weight: 950;
  line-height: 1;
  pointer-events: none;
}

.fun-section .section-heading,
.fun-grid {
  position: relative;
  z-index: 1;
}

.fun-grid .number-card {
  min-height: 270px;
}

.fun-grid .number-card:nth-child(2n) {
  background: #fffdf4;
}

.fun-grid .number-card:nth-child(3) {
  background: #f4fffb;
}

.fun-grid .number-card:nth-child(4) {
  background: #fbf7ff;
}

.story-flow {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 14px;
}

.income-panel {
  display: flex;
  gap: 18px;
  align-items: flex-start;
  margin-bottom: 18px;
  padding: 20px;
  border: 3px solid #111;
  border-radius: 14px;
  background: #fffdf4;
  box-shadow: 6px 6px 0 #111;
}

.income-panel .pill {
  flex: 0 0 auto;
}

.small-value {
  font-size: clamp(2.1rem, 4vw, 3.3rem);
}

.story-flow article {
  position: relative;
  min-height: 220px;
  padding: 22px;
}

.step {
  display: grid;
  place-items: center;
  width: 46px;
  height: 46px;
  margin-bottom: 22px;
  border-radius: 50%;
  background: var(--yellow);
  border: 3px solid #111;
  font-weight: 900;
}

.story-flow p,
.glossary-grid p {
  color: var(--muted);
}

.state-section {
  margin: clamp(18px, 4vw, 56px);
  padding: clamp(28px, 5vw, 56px);
  background: #fffdf4;
}

.state-bars {
  display: grid;
  gap: 16px;
  margin-top: 28px;
}

.state-meta {
  color: var(--muted);
  font-size: 0.95rem;
  font-weight: 800;
}

.bar-row {
  display: grid;
  grid-template-columns: 100px minmax(140px, 1fr) 130px;
  gap: 14px;
  align-items: center;
}

.state-bar-button {
  width: 100%;
  padding: 0;
  border: 0;
  color: inherit;
  background: transparent;
  font: inherit;
  text-align: left;
  cursor: pointer;
}

.state-bar-button:hover .bar-track,
.state-bar-button.active .bar-track {
  background: #fff;
  box-shadow: 0 0 0 3px var(--red);
}

.state-bar-button.active strong {
  color: var(--red-dark);
}

.bar-row span,
.bar-row strong {
  font-size: 0.92rem;
}

.bar-track {
  height: 18px;
  overflow: hidden;
  border-radius: 999px;
  background: #f1e3df;
  border: 2px solid #111;
}

.bar-track span {
  display: block;
  height: 100%;
  border-radius: inherit;
  background: linear-gradient(90deg, var(--red), var(--yellow));
}

.state-drilldown {
  display: grid;
  gap: 18px;
  margin-top: 28px;
  padding-top: 28px;
  border-top: 3px solid #111;
}

.state-drilldown[hidden] {
  display: none;
}

.drilldown-head {
  display: flex;
  justify-content: space-between;
  gap: 18px;
  align-items: end;
}

.drilldown-head h3 {
  margin-bottom: 6px;
  font-size: clamp(1.7rem, 3vw, 2.5rem);
}

.drilldown-head p:not(.eyebrow),
.age-share-card small {
  color: var(--muted);
  font-weight: 800;
}

.age-share-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 12px;
}

.age-share-card {
  display: grid;
  gap: 9px;
  min-height: 150px;
  padding: 16px;
  border: 3px solid #111;
  border-radius: 14px;
  background: white;
  box-shadow: 4px 4px 0 #111;
}

.age-share-card span {
  color: var(--red-dark);
  font-size: 0.8rem;
  font-weight: 900;
}

.age-share-card strong {
  font-size: clamp(1.9rem, 3vw, 2.7rem);
  line-height: 1;
}

.age-share-card .bar-track {
  height: 14px;
}

.district-bars {
  display: grid;
  gap: 12px;
  padding: 18px;
  border: 3px solid #111;
  border-radius: 14px;
  background: white;
  box-shadow: 6px 6px 0 #111;
}

.district-row {
  grid-template-columns: 160px minmax(160px, 1fr) 110px;
}

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

.glossary-grid article {
  padding: 20px;
}

.catalogue-section {
  background: #fff0f0;
  border-block: 3px solid #111;
}

.catalogue-kpis {
  margin-bottom: 28px;
}

.catalogue-kpis article {
  padding: 20px;
}

.catalogue-kpis strong {
  display: block;
  margin-bottom: 4px;
  font-size: clamp(2.1rem, 4vw, 3.3rem);
  line-height: 1;
}

.catalogue-kpis span {
  color: var(--muted);
  font-weight: 800;
}

.catalogue-layout {
  display: grid;
  grid-template-columns: minmax(320px, 1.2fr) minmax(280px, 0.8fr);
  gap: 18px;
  min-width: 0;
}

.catalogue-layout > div {
  min-width: 0;
  padding: 22px;
  border: 3px solid #111;
  border-radius: 14px;
  background: white;
  box-shadow: 6px 6px 0 #111;
}

.theme-bars {
  display: grid;
  gap: 12px;
  margin-top: 18px;
}

.theme-bars .bar-row {
  grid-template-columns: 150px minmax(120px, 1fr) 44px;
}

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

.recent-list li {
  display: grid;
  gap: 3px;
  padding-bottom: 12px;
  border-bottom: 1px solid var(--line);
}

.recent-list li:last-child {
  padding-bottom: 0;
  border-bottom: 0;
}

.recent-list span {
  color: var(--muted);
  font-size: 0.92rem;
}

.api-scout {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 18px;
  margin-top: 18px;
}

.api-scout article {
  padding: 22px;
  border: 3px solid #111;
  border-radius: 14px;
  background: #fffdf4;
  box-shadow: 6px 6px 0 #111;
}

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

.footer {
  display: grid;
  grid-template-columns: minmax(260px, 1fr) auto;
  gap: 26px;
  align-items: end;
  padding: 40px clamp(18px, 5vw, 72px);
  color: white;
  background: #111;
  border-top: 6px solid var(--red);
}

.footer p {
  max-width: 780px;
  color: #f5dfdc;
}

.source-links {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  justify-content: flex-end;
}

.source-links a {
  min-height: 40px;
  padding: 9px 12px;
  border: 2px solid rgba(255, 255, 255, 0.7);
  border-radius: 10px;
  color: white;
  text-decoration: none;
  font-weight: 800;
}

.modal-backdrop {
  position: fixed;
  inset: 0;
  z-index: 40;
  display: grid;
  place-items: center;
  padding: 18px;
  background: rgba(17, 17, 17, 0.58);
}

.modal-backdrop[hidden],
.toast[hidden] {
  display: none;
}

.profile-modal,
.detail-modal {
  position: relative;
  width: min(480px, 100%);
  padding: 26px;
  border: 4px solid #111;
  border-radius: 18px;
  background: white;
  box-shadow: 10px 10px 0 #111;
}

.detail-modal {
  width: min(680px, 100%);
}

.profile-modal img {
  width: 76px;
  height: 60px;
  margin-bottom: 10px;
  border: 3px solid #111;
  border-radius: 12px;
  object-fit: cover;
  object-position: center 42%;
  box-shadow: 3px 3px 0 #111;
}

.profile-modal h2 {
  font-size: clamp(1.8rem, 6vw, 2.6rem);
}

.detail-modal h2 {
  padding-right: 34px;
  font-size: clamp(2rem, 6vw, 3.2rem);
}

.detail-main {
  display: grid;
  gap: 6px;
  margin: 16px 0;
  padding: 18px;
  border: 3px solid #111;
  border-radius: 12px;
  background: #fffdf4;
  box-shadow: 4px 4px 0 #111;
}

.detail-main strong {
  font-size: clamp(2.5rem, 9vw, 4.8rem);
  line-height: 0.95;
}

.detail-main span,
#detail-reading {
  color: var(--muted);
  font-weight: 800;
}

.detail-list {
  display: grid;
  gap: 10px;
  margin: 18px 0;
}

.detail-list div {
  display: grid;
  grid-template-columns: 130px 1fr;
  gap: 12px;
  padding-bottom: 10px;
  border-bottom: 1px solid var(--line);
}

.detail-list dt {
  color: var(--red-dark);
  font-weight: 900;
}

.detail-list dd {
  margin: 0;
  color: var(--muted);
}

.detail-history {
  margin-top: 18px;
}

.detail-history h3 {
  margin-bottom: 10px;
}

#detail-history-list {
  display: grid;
  gap: 8px;
}

.history-row {
  display: grid;
  grid-template-columns: minmax(110px, 1fr) auto;
  gap: 12px;
  align-items: center;
  padding: 10px 12px;
  border: 2px solid #111;
  border-radius: 10px;
  background: #fff8f6;
}

.history-row span {
  color: var(--muted);
  font-weight: 800;
}

.history-row strong {
  color: #111;
  font-size: 1.05rem;
}

.modal-note {
  color: var(--muted);
}

.profile-modal label {
  display: grid;
  gap: 7px;
  margin: 14px 0;
  color: #111;
  font-weight: 850;
}

.profile-modal input,
.profile-modal select {
  width: 100%;
  min-height: 46px;
  padding: 10px 12px;
  border: 3px solid #111;
  border-radius: 8px;
  background: #fff8f6;
  color: #111;
  font: inherit;
}

.modal-close {
  position: absolute;
  top: 14px;
  right: 14px;
  width: 38px;
  height: 38px;
  border: 3px solid #111;
  border-radius: 50%;
  background: var(--yellow);
  box-shadow: 2px 2px 0 #111;
  cursor: pointer;
  font-weight: 900;
}

.toast {
  position: fixed;
  right: 18px;
  bottom: 18px;
  z-index: 50;
  max-width: min(360px, calc(100vw - 36px));
  padding: 14px 16px;
  border: 3px solid #111;
  border-radius: 10px;
  color: white;
  background: #111;
  box-shadow: 5px 5px 0 var(--red);
  font-weight: 850;
}

@media (max-width: 980px) {
  .hero,
  .split-section,
  .footer {
    grid-template-columns: 1fr;
  }

  .hero {
    min-height: auto;
  }

  .hero-visual {
    min-height: 0;
  }

  .hero-logo-card {
    width: min(640px, 100%);
    transform: none;
  }

  .metric-grid,
  .number-grid,
  .catalogue-kpis,
  .story-flow,
  .age-share-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .glossary-grid,
  .catalogue-layout,
  .api-scout {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
}

@media (max-width: 720px) {
  .site-header {
    position: static;
    align-items: flex-start;
    flex-direction: column;
  }

  .nav-links {
    width: 100%;
    min-width: 0;
    max-width: 100%;
    overflow-x: auto;
    overflow-y: hidden;
    padding-bottom: 4px;
    overscroll-behavior-inline: contain;
    contain: paint;
  }

  .nav-links a {
    flex: 0 0 auto;
    white-space: nowrap;
  }

  .metric-grid,
  .number-grid,
  .catalogue-kpis,
  .story-flow,
  .age-share-grid,
  .glossary-grid,
  .catalogue-layout,
  .api-scout {
    grid-template-columns: 1fr;
  }

  .bar-row {
    grid-template-columns: 1fr;
    gap: 6px;
  }

  .theme-bars .bar-row {
    grid-template-columns: 1fr;
  }

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

  .bar-row strong {
    color: var(--muted);
  }

  .state-section {
    margin: 0;
    border-left: 0;
    border-right: 0;
  }
}
