:root {
  --green: #2f6b45;
  --green-strong: #245638;
  --green-light: #ddefe4;
  --green-accent: #4bad49;
  --terracotta: #c77b4a;
  --straw: #f7e8b5;
  --straw-soft: #fff6d6;
  --accent-soft: #e9f7df;
  --terracotta-soft: #fff0e7;
  --warm-white: #fafaf7;
  --surface: #ffffff;
  --text: #26332d;
  --muted: #6b756f;
  --border: #e2e8e3;
  --shadow: 0 18px 45px rgba(38, 51, 45, 0.08);
  --radius: 16px;
  --max-width: 1160px;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  background: var(--warm-white);
  color: var(--text);
  font-family: Inter, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  font-size: 16px;
  line-height: 1.6;
}

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

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

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

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

h1,
h2,
h3 {
  color: var(--text);
  font-weight: 800;
  line-height: 1.08;
  letter-spacing: 0;
}

h1 {
  max-width: 760px;
  font-size: clamp(2.45rem, 8vw, 4.65rem);
}

h2 {
  font-size: clamp(2rem, 6vw, 3.2rem);
}

h3 {
  font-size: 1.08rem;
}

button,
input,
textarea {
  font: inherit;
}

.container {
  width: min(100% - 32px, var(--max-width));
  margin: 0 auto;
}

.section-pad {
  padding: 62px 0;
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 20;
  border-bottom: 1px solid rgba(226, 232, 227, 0.9);
  background: rgba(250, 250, 247, 0.92);
  backdrop-filter: blur(16px);
}

.header-inner {
  display: flex;
  min-height: 72px;
  align-items: center;
  justify-content: space-between;
  gap: 18px;
}

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

.brand-mark {
  position: relative;
  display: inline-block;
  width: 34px;
  height: 34px;
  flex: 0 0 auto;
  border: 2px solid var(--green);
  border-radius: 50% 50% 50% 12px;
  background: var(--green-light);
  transform: rotate(-18deg);
}

.brand-mark::after {
  position: absolute;
  inset: 8px 15px 6px auto;
  width: 2px;
  content: "";
  border-radius: 999px;
  background: var(--green);
}

.brand strong {
  display: block;
  color: var(--green);
  font-size: 1.18rem;
  line-height: 1.05;
}

.brand small {
  display: block;
  color: var(--muted);
  font-size: 0.78rem;
  font-weight: 600;
  line-height: 1.15;
}

.main-nav {
  display: none;
  align-items: center;
  gap: 24px;
  color: var(--muted);
  font-size: 0.94rem;
  font-weight: 600;
}

.main-nav a {
  transition: color 160ms ease;
}

.main-nav a:hover {
  color: var(--green);
}

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

.demo-link {
  display: none;
  color: var(--green);
  font-size: 0.92rem;
  font-weight: 800;
}

.demo-link:hover {
  color: var(--green-strong);
}

.button {
  display: inline-flex;
  min-height: 46px;
  align-items: center;
  justify-content: center;
  gap: 8px;
  border: 1px solid transparent;
  border-radius: 999px;
  padding: 0.76rem 1.1rem;
  font-size: 0.95rem;
  font-weight: 800;
  line-height: 1.1;
  text-align: center;
  transition:
    transform 160ms ease,
    box-shadow 160ms ease,
    background 160ms ease;
}

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

.button-primary {
  background: var(--green);
  color: #ffffff;
  box-shadow: 0 12px 24px rgba(47, 107, 69, 0.2);
}

.button-primary:hover {
  background: var(--green-strong);
}

.button-secondary {
  border-color: var(--border);
  background: #ffffff;
  color: var(--green);
}

.button-light {
  border-color: rgba(255, 255, 255, 0.36);
  background: #ffffff;
  color: var(--green);
}

.header-cta {
  min-height: 42px;
  padding: 0.65rem 0.92rem;
  font-size: 0.86rem;
  white-space: nowrap;
}

.hero {
  position: relative;
  overflow: hidden;
  padding-top: 58px;
}

.hero::before {
  position: absolute;
  inset: 0 0 auto;
  height: 45%;
  content: "";
  background:
    radial-gradient(circle at 12% 8%, rgba(247, 232, 181, 0.7), transparent 28%),
    linear-gradient(180deg, rgba(221, 239, 228, 0.48), rgba(250, 250, 247, 0));
  pointer-events: none;
}

.hero-grid {
  position: relative;
  display: grid;
  gap: 24px;
  align-items: center;
}

.hero-copy {
  display: grid;
  gap: 22px;
}

.eyebrow {
  color: var(--terracotta);
  font-size: 0.78rem;
  font-weight: 800;
  letter-spacing: 0;
  text-transform: uppercase;
}

.hero-lead {
  max-width: 690px;
  color: #46524c;
  font-size: 1.08rem;
}

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

.hero-actions .button {
  width: 100%;
}

.microcopy {
  max-width: 560px;
  font-size: 0.92rem;
}

.microcopy.light {
  color: rgba(255, 255, 255, 0.82);
}

.hero-visual {
  position: relative;
  min-height: 250px;
  overflow: hidden;
  border: 1px solid var(--border);
  border-radius: var(--radius);
  background:
    linear-gradient(135deg, rgba(221, 239, 228, 0.86), rgba(250, 250, 247, 0.96) 46%),
    #ffffff;
  box-shadow: var(--shadow);
}

.field-lines {
  position: absolute;
  inset: auto -18% -12% -18%;
  height: 63%;
  transform: perspective(340px) rotateX(58deg);
  transform-origin: bottom;
}

.field-lines span {
  position: absolute;
  bottom: 0;
  width: 3px;
  height: 100%;
  border-radius: 999px;
  background: linear-gradient(180deg, rgba(47, 107, 69, 0.06), rgba(47, 107, 69, 0.24));
}

.field-lines span:nth-child(1) {
  left: 22%;
}

.field-lines span:nth-child(2) {
  left: 39%;
}

.field-lines span:nth-child(3) {
  left: 57%;
}

.field-lines span:nth-child(4) {
  left: 74%;
}

.visual-stack {
  position: relative;
  z-index: 2;
  display: grid;
  min-height: 250px;
  align-content: center;
  gap: 12px;
  padding: 18px;
}

.visual-card {
  width: min(100%, 390px);
  border: 1px solid rgba(226, 232, 227, 0.9);
  border-radius: var(--radius);
  background: rgba(255, 255, 255, 0.86);
  box-shadow: 0 16px 36px rgba(38, 51, 45, 0.09);
}

.visual-card-main {
  display: grid;
  gap: 10px;
  padding: 18px;
}

.visual-card strong {
  font-size: 1.25rem;
}

.leaf-icon {
  position: relative;
  width: 42px;
  height: 42px;
  border-radius: 50% 50% 50% 12px;
  background: var(--green-light);
  transform: rotate(-18deg);
}

.leaf-icon::before {
  position: absolute;
  inset: 11px 23px 8px auto;
  width: 2px;
  content: "";
  border-radius: 999px;
  background: var(--green);
}

.tag-row {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
}

.tag-row-offset {
  padding-left: 28px;
}

.tag-row span,
.trust-grid span {
  display: inline-flex;
  align-items: center;
  border: 1px solid rgba(47, 107, 69, 0.14);
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.82);
  color: var(--green);
  font-size: 0.9rem;
  font-weight: 800;
}

.tag-row span {
  min-height: 36px;
  padding: 0 13px;
}

.trust-strip {
  padding: 0 0 34px;
}

.trust-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 10px;
  border: 0;
  background: transparent;
}

.trust-grid span {
  position: relative;
  min-height: 76px;
  justify-content: flex-start;
  align-items: flex-end;
  padding: 34px 14px 14px;
  border: 1px solid var(--border);
  border-radius: 14px;
  background: #ffffff;
  color: var(--text);
  box-shadow: 0 12px 26px rgba(38, 51, 45, 0.05);
  font-size: 0.88rem;
  font-weight: 800;
}

.trust-grid span::before {
  position: absolute;
  left: 14px;
  top: 14px;
  width: 12px;
  height: 12px;
  content: "";
  border: 3px solid rgba(255, 255, 255, 0.7);
  border-radius: 50%;
  background: var(--green);
}

.trust-grid span:nth-child(2) {
  background: var(--straw-soft);
}

.trust-grid span:nth-child(3) {
  background: var(--green-accent);
  color: #ffffff;
}

.trust-grid span:nth-child(3)::before {
  background: #ffffff;
  border-color: rgba(255, 255, 255, 0.32);
}

.trust-grid span:nth-child(4) {
  background: var(--terracotta-soft);
}

.section-muted {
  border-top: 1px solid rgba(226, 232, 227, 0.72);
  border-bottom: 1px solid rgba(226, 232, 227, 0.72);
  background: #ffffff;
}

.section-heading {
  display: grid;
  gap: 16px;
  max-width: 780px;
}

.section-heading.centered {
  margin: 0 auto 34px;
  text-align: left;
}

.split-section,
.demo-grid,
.faq-layout {
  display: grid;
  gap: 34px;
}

.problem-list,
.principle-grid {
  display: grid;
  gap: 0;
}

.feature-summary,
.privacy-box,
.faq-list details,
.demo-form {
  border: 1px solid var(--border);
  border-radius: var(--radius);
  background: #ffffff;
  box-shadow: 0 14px 30px rgba(38, 51, 45, 0.045);
}

.problem-list {
  gap: 12px;
  border-top: 0;
}

.problem-list div {
  display: grid;
  grid-template-columns: auto 1fr;
  gap: 6px 14px;
  padding: 18px;
  border: 1px solid var(--border);
  border-radius: var(--radius);
  background: #ffffff;
  box-shadow: 0 14px 28px rgba(38, 51, 45, 0.045);
}

.problem-list div:nth-child(2) {
  background: var(--straw-soft);
}

.problem-list div:nth-child(3) {
  background: var(--terracotta-soft);
}

.problem-list h3 {
  align-self: center;
}

.problem-list p {
  grid-column: 2;
}

.mini-icon {
  position: relative;
  width: 34px;
  height: 34px;
  border-radius: 10px;
  background: var(--green-light);
}

.mini-icon::after {
  position: absolute;
  inset: 10px;
  content: "";
  border: 2px solid var(--green);
  border-top: 0;
  border-right: 0;
  transform: rotate(-45deg);
}

.feature-board {
  display: grid;
  gap: 24px;
  align-items: stretch;
}

.feature-list {
  display: grid;
  gap: 12px;
  margin: 0;
  padding: 0;
  list-style: none;
  border-top: 0;
}

.feature-list li {
  display: grid;
  grid-template-columns: 48px 1fr;
  gap: 4px 18px;
  padding: 18px;
  border: 1px solid var(--border);
  border-radius: var(--radius);
  background: #ffffff;
  box-shadow: 0 12px 28px rgba(38, 51, 45, 0.04);
}

.feature-list li:nth-child(2),
.feature-list li:nth-child(5) {
  background: var(--accent-soft);
}

.feature-list li:nth-child(3) {
  background: var(--straw-soft);
}

.feature-list li:nth-child(4),
.feature-list li:nth-child(6) {
  background: var(--terracotta-soft);
}

.feature-list span {
  grid-row: span 2;
  color: var(--terracotta);
  font-size: 0.82rem;
  font-weight: 800;
}

.feature-list strong {
  color: var(--text);
  font-size: 1.02rem;
}

.feature-summary {
  position: relative;
  display: grid;
  align-content: end;
  gap: 14px;
  min-height: 320px;
  overflow: hidden;
  padding: 28px;
  background:
    linear-gradient(145deg, rgba(47, 107, 69, 0.98), rgba(75, 173, 73, 0.86)),
    var(--green);
}

.feature-summary h3,
.feature-summary p {
  color: #ffffff;
}

.feature-summary::before {
  position: absolute;
  right: -40px;
  bottom: -90px;
  width: 240px;
  height: 240px;
  content: "";
  border: 1px solid rgba(255, 255, 255, 0.22);
  border-radius: 50%;
}

.summary-leaf {
  position: relative;
  width: 56px;
  height: 56px;
  border-radius: 50% 50% 50% 14px;
  background: rgba(255, 255, 255, 0.22);
  transform: rotate(-18deg);
}

.summary-leaf::after {
  position: absolute;
  inset: 12px 27px 9px auto;
  width: 2px;
  content: "";
  border-radius: 999px;
  background: #ffffff;
}

.steps {
  position: relative;
  display: grid;
  gap: 16px;
  padding-left: 13px;
}

.steps::before {
  position: absolute;
  left: 14px;
  top: 2px;
  bottom: 18px;
  width: 2px;
  content: "";
  background: var(--green-light);
}

.steps div {
  position: relative;
  display: grid;
  gap: 10px;
  padding: 0 0 20px 44px;
  border-bottom: 0;
}

.steps span {
  position: absolute;
  left: -13px;
  top: 0;
  display: inline-flex;
  width: 30px;
  height: 30px;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  background: var(--green);
  color: #ffffff;
  font-size: 0.86rem;
  font-weight: 800;
}

.benefit-strip {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 12px;
  border-top: 0;
  border-bottom: 0;
}

.benefit-strip div {
  min-height: 126px;
  padding: 18px;
  border: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
  border-radius: var(--radius);
  background: #ffffff;
  box-shadow: 0 12px 26px rgba(38, 51, 45, 0.045);
}

.benefit-strip div:last-child {
  border-bottom: 1px solid var(--border);
}

.benefit-strip h3 {
  margin-bottom: 6px;
}

.benefit-strip div:nth-child(1) {
  background: var(--straw-soft);
}

.benefit-strip div:nth-child(2) {
  background: var(--green);
}

.benefit-strip div:nth-child(2) h3,
.benefit-strip div:nth-child(2) p {
  color: #ffffff;
}

.benefit-strip div:nth-child(3) {
  background: var(--accent-soft);
}

.benefit-strip div:nth-child(4) {
  background: var(--terracotta-soft);
}

.experience-layout {
  align-items: start;
}

.principle-grid {
  gap: 10px;
  border-left: 0;
  padding-left: 0;
}

.principle-grid div {
  padding: 16px 0 16px 18px;
  border-left: 4px solid var(--green-light);
  background: linear-gradient(90deg, rgba(221, 239, 228, 0.5), rgba(255, 255, 255, 0));
}

.principle-grid div:last-child {
  padding-bottom: 16px;
}

.principle-grid div:nth-child(2) {
  border-left-color: var(--terracotta);
  background: linear-gradient(90deg, rgba(255, 240, 231, 0.9), rgba(255, 255, 255, 0));
}

.principle-grid div:nth-child(3) {
  border-left-color: var(--green-accent);
  background: linear-gradient(90deg, rgba(233, 247, 223, 0.9), rgba(255, 255, 255, 0));
}

.principle-grid h3 {
  margin-bottom: 6px;
}

.privacy-box {
  display: grid;
  gap: 28px;
  padding: 28px;
}

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

.check-list li {
  position: relative;
  min-height: 30px;
  padding-left: 34px;
  color: var(--text);
  font-weight: 700;
}

.check-list li::before {
  position: absolute;
  left: 0;
  top: 1px;
  width: 22px;
  height: 22px;
  content: "";
  border-radius: 50%;
  background: var(--green-light);
}

.check-list li::after {
  position: absolute;
  left: 7px;
  top: 7px;
  width: 8px;
  height: 5px;
  content: "";
  border: 2px solid var(--green);
  border-top: 0;
  border-right: 0;
  transform: rotate(-45deg);
}

.cta-band {
  background:
    linear-gradient(135deg, rgba(47, 107, 69, 0.98), rgba(36, 86, 56, 0.98)),
    var(--green);
  color: #ffffff;
}

.cta-band .eyebrow,
.cta-band h2,
.cta-band p {
  color: #ffffff;
}

.demo-copy {
  display: grid;
  align-content: start;
  gap: 18px;
}

.demo-copy p {
  max-width: 620px;
  color: rgba(255, 255, 255, 0.82);
}

.demo-form {
  display: grid;
  gap: 16px;
  padding: 24px;
}

.demo-form h3 {
  margin-bottom: 2px;
  color: var(--green);
}

.form-row {
  display: grid;
  gap: 16px;
}

.form-field {
  display: grid;
  gap: 7px;
}

.form-field label {
  color: var(--text);
  font-size: 0.9rem;
  font-weight: 800;
}

.form-field input,
.form-field textarea {
  width: 100%;
  min-height: 46px;
  border: 1px solid var(--border);
  border-radius: 12px;
  padding: 0.78rem 0.9rem;
  background: #ffffff;
  color: var(--text);
  outline: none;
  transition:
    border-color 160ms ease,
    box-shadow 160ms ease;
}

.form-field textarea {
  resize: vertical;
}

.form-field input:focus,
.form-field textarea:focus {
  border-color: var(--green);
  box-shadow: 0 0 0 4px rgba(75, 173, 73, 0.16);
}

.form-button {
  width: 100%;
  border: 0;
  cursor: pointer;
}

.form-note {
  font-size: 0.9rem;
}

.faq-layout {
  align-items: start;
}

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

.faq-list details {
  padding: 18px 20px;
}

.faq-list summary {
  cursor: pointer;
  color: var(--text);
  font-weight: 800;
}

.faq-list summary::marker {
  color: var(--green);
}

.faq-list p {
  padding-top: 10px;
}

.site-footer {
  border-top: 1px solid var(--border);
  background: #ffffff;
  padding: 34px 0;
}

.footer-inner {
  display: grid;
  gap: 22px;
  color: var(--muted);
}

.footer-brand {
  display: grid;
  gap: 2px;
}

.footer-brand strong {
  color: var(--green);
  font-size: 1.25rem;
}

.footer-nav {
  display: flex;
  flex-wrap: wrap;
  gap: 14px 22px;
  font-weight: 700;
}

.footer-nav a:hover {
  color: var(--green);
}

@media (min-width: 560px) {
  .hero-actions .button {
    width: auto;
  }

  .trust-grid,
  .benefit-strip,
  .form-row {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
}

@media (max-width: 759px) {
  .hero {
    display: flex;
    min-height: calc(100svh - 72px);
    align-items: flex-start;
    padding-top: 34px;
    padding-bottom: 34px;
  }

  .hero-grid {
    width: 100%;
  }

  .hero-visual {
    display: none;
  }

  .hero-copy {
    min-height: calc(100svh - 140px);
    align-content: center;
    gap: 24px;
  }

  .hero-copy .eyebrow {
    width: max-content;
    border: 1px solid rgba(199, 123, 74, 0.24);
    border-radius: 999px;
    padding: 7px 11px;
    background: var(--terracotta-soft);
  }

  .hero h1 {
    max-width: 10ch;
    font-size: clamp(3.05rem, 15vw, 4.7rem);
    line-height: 0.98;
  }

  .hero-lead {
    max-width: 34rem;
    border-left: 4px solid var(--green-accent);
    padding-left: 16px;
    font-size: 1.08rem;
    line-height: 1.55;
  }

  .hero-actions {
    gap: 10px;
  }

  .hero-actions .button {
    min-height: 52px;
  }

  .microcopy {
    max-width: 19rem;
    color: #56625c;
  }
}

@media (min-width: 760px) {
  .section-pad {
    padding: 96px 0;
  }

  .main-nav {
    display: flex;
  }

  .demo-link {
    display: inline-flex;
  }

  .header-cta {
    padding: 0.72rem 1.1rem;
    font-size: 0.92rem;
  }

  .hero {
    padding-top: 74px;
  }

  .hero-grid {
    grid-template-columns: minmax(0, 1.08fr) minmax(330px, 0.92fr);
    gap: 46px;
  }

  .hero-visual,
  .visual-stack {
    min-height: 390px;
  }

  .visual-stack {
    gap: 18px;
    padding: 28px;
  }

  .visual-card-main {
    padding: 28px;
  }

  .leaf-icon {
    width: 48px;
    height: 48px;
  }

  .tag-row span {
    min-height: 42px;
    padding: 0 16px;
  }

  .section-heading.centered {
    text-align: center;
  }

  .section-heading.centered p {
    margin: 0 auto;
  }

  .feature-board {
    grid-template-columns: minmax(0, 1fr) minmax(280px, 0.55fr);
    align-items: stretch;
  }

  .feature-list {
    gap: 0;
    border-top: 1px solid var(--border);
  }

  .feature-list li,
  .feature-list li:nth-child(2),
  .feature-list li:nth-child(3),
  .feature-list li:nth-child(4),
  .feature-list li:nth-child(5),
  .feature-list li:nth-child(6) {
    padding: 18px 0;
    border: 0;
    border-bottom: 1px solid var(--border);
    border-radius: 0;
    background: transparent;
    box-shadow: none;
  }

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

  .steps::before {
    display: none;
  }

  .steps div {
    padding: 46px 22px 0 0;
    border-top: 1px solid var(--border);
    border-bottom: 0;
  }

  .steps span {
    left: 0;
    top: -15px;
  }

  .split-section,
  .demo-grid,
  .faq-layout {
    grid-template-columns: minmax(0, 0.86fr) minmax(0, 1.14fr);
  }

  .problem-list {
    gap: 0;
    border-top: 1px solid var(--border);
  }

  .problem-list div,
  .problem-list div:nth-child(2),
  .problem-list div:nth-child(3) {
    padding: 20px 0;
    border: 0;
    border-bottom: 1px solid var(--border);
    border-radius: 0;
    background: transparent;
    box-shadow: none;
  }

  .privacy-box {
    grid-template-columns: minmax(0, 1fr) minmax(300px, 0.72fr);
    align-items: center;
    padding: 36px;
  }
}

@media (min-width: 1020px) {
  .steps {
    grid-template-columns: repeat(4, minmax(0, 1fr));
  }

  .benefit-strip {
    grid-template-columns: repeat(4, minmax(0, 1fr));
    gap: 0;
    border-top: 1px solid var(--border);
    border-bottom: 1px solid var(--border);
  }

  .benefit-strip div,
  .benefit-strip div:nth-child(even),
  .benefit-strip div:nth-child(odd) {
    padding-right: 24px;
    padding-left: 24px;
    border-right: 1px solid var(--border);
    border-bottom: 0;
    border-top: 0;
    border-left: 0;
    border-radius: 0;
    box-shadow: none;
  }

  .benefit-strip div:first-child {
    padding-left: 0;
  }

  .benefit-strip div:last-child {
    padding-right: 0;
    border-right: 0;
  }

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

  .trust-grid span {
    padding-right: 16px;
  }

  .trust-grid span + span {
    padding-left: 14px;
  }

  .trust-grid span + span::before {
    left: 14px;
  }

  .footer-inner {
    grid-template-columns: 1fr auto auto;
    align-items: center;
  }
}

@media (max-width: 420px) {
  .container {
    width: min(100% - 24px, var(--max-width));
  }

  h2 {
    font-size: 1.82rem;
  }

  .header-inner {
    min-height: 66px;
    gap: 10px;
  }

  .brand small {
    display: none;
  }

  .header-cta {
    max-width: 48vw;
    padding-right: 0.78rem;
    padding-left: 0.78rem;
    white-space: normal;
  }

  .hero {
    padding-top: 34px;
    padding-bottom: 26px;
    min-height: calc(100svh - 66px);
  }

  .hero-visual,
  .visual-stack {
    min-height: 240px;
  }

  .visual-stack {
    padding: 18px;
  }

  .tag-row-offset {
    padding-left: 0;
  }

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

  .problem-list p {
    grid-column: 1;
  }
}
