:root {
  color-scheme: light;
  --ink: #101522;
  --muted: #667085;
  --line: #d9e0ea;
  --soft: #f4f7fb;
  --panel: #ffffff;
  --accent: #8aff3f;
  --accent-dark: #2563eb;
  --cyan: #24c8db;
  --rose: #ff75b8;
  --violet: #7c5cff;
  --green: #6ee764;
  --deep: #070a12;
  --deep-2: #101522;
  --shadow: 0 22px 70px rgba(16, 24, 40, 0.12);
  --shadow-strong: 0 30px 90px rgba(8, 12, 22, 0.24);
  --page-max: 1120px;
  --page-pad: clamp(18px, 4vw, 34px);
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
  margin: 0;
  color: var(--ink);
  background:
    linear-gradient(180deg, #ffffff 0, #f7fafc 38%, #ffffff 100%);
  font-family: Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  line-height: 1.6;
}
a { color: inherit; text-decoration: none; }
img { display: block; max-width: 100%; }
h1, h2, h3, p { overflow-wrap: anywhere; }
h1 {
  max-width: var(--page-max);
  margin: 0;
  font-size: clamp(2.25rem, 4.4vw, 4.15rem);
  line-height: 1.05;
  letter-spacing: 0;
}
h2 {
  margin: 0;
  font-size: clamp(1.85rem, 3vw, 3rem);
  line-height: 1.1;
  letter-spacing: 0;
}
h3 { margin: 0 0 8px; font-size: 1.08rem; line-height: 1.25; }
p { margin: 0; }

.icon {
  display: inline-grid;
  place-items: center;
  width: 20px;
  height: 20px;
  flex: 0 0 auto;
  color: currentColor;
  vertical-align: -4px;
}
.icon svg {
  width: 100%;
  height: 100%;
  fill: none;
  stroke: currentColor;
  stroke-width: 2;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 20;
  display: grid;
  grid-template-columns: auto 1fr auto;
  align-items: center;
  gap: 22px;
  padding: 12px clamp(18px, 4vw, 52px);
  border-bottom: 1px solid rgba(255, 255, 255, 0.12);
  background: rgba(7, 10, 18, 0.88);
  color: #ffffff;
  backdrop-filter: blur(18px);
  box-shadow: 0 12px 34px rgba(7, 10, 18, 0.16);
}
.brand {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  min-width: 0;
  font-weight: 850;
}
.brand span:last-child {
  min-width: 0;
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: nowrap;
}
.brand-mark {
  display: grid;
  place-items: center;
  width: 34px;
  height: 34px;
  border-radius: 8px;
  color: #08110d;
  background:
    linear-gradient(135deg, #c9ff58 0%, #76f35f 48%, #66d5ff 100%);
  font-weight: 900;
  box-shadow: 0 0 0 1px rgba(255, 255, 255, 0.18), 0 10px 28px rgba(138, 255, 63, 0.24);
}
nav {
  display: flex;
  justify-content: center;
  gap: 18px;
  color: #d7deea;
  font-size: 0.95rem;
}
nav a[aria-current="page"] {
  color: var(--accent);
  font-weight: 800;
}
.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  min-height: 46px;
  padding: 0 20px;
  border: 1px solid #0d121d;
  border-radius: 8px;
  background: #0d121d;
  color: #ffffff;
  font-weight: 800;
  text-align: center;
  box-shadow: 0 16px 36px rgba(17, 24, 39, 0.18);
  transition: transform 180ms ease, box-shadow 180ms ease, border-color 180ms ease, background 180ms ease;
}
.button:hover {
  transform: translateY(-2px);
  box-shadow: 0 22px 44px rgba(17, 24, 39, 0.24);
}
.button-small { min-height: 38px; padding: 0 14px; font-size: 0.92rem; }
.site-header .button {
  border-color: rgba(138, 255, 63, 0.72);
  background: var(--accent);
  color: #08110d;
  box-shadow: 0 14px 34px rgba(138, 255, 63, 0.25);
}
.button.secondary {
  background: #ffffff;
  color: var(--ink);
  border-color: var(--line);
  box-shadow: none;
}
.text-link {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  margin-top: 14px;
  color: #1d4ed8;
  font-weight: 800;
}

.hero {
  position: relative;
  display: grid;
  grid-template-columns: minmax(0, 1fr);
  justify-items: center;
  gap: clamp(26px, 4vw, 42px);
  max-width: none;
  margin: 0;
  padding: clamp(54px, 7vw, 92px) var(--page-pad) clamp(38px, 6vw, 70px);
  text-align: center;
  overflow: hidden;
  background:
    linear-gradient(90deg, rgba(255, 255, 255, 0.045) 1px, transparent 1px),
    linear-gradient(180deg, rgba(255, 255, 255, 0.04) 1px, transparent 1px),
    linear-gradient(135deg, #070a12 0%, #111827 50%, #07120f 100%);
  background-size: 72px 72px, 72px 72px, auto;
  color: #ffffff;
}
.hero::before {
  content: "";
  position: absolute;
  inset: auto 0 0;
  height: 36%;
  background: linear-gradient(180deg, rgba(7, 10, 18, 0) 0%, rgba(138, 255, 63, 0.10) 100%);
  pointer-events: none;
}
.hero > * {
  position: relative;
  z-index: 1;
}
.compact-hero {
  padding-bottom: clamp(28px, 5vw, 52px);
}
.hero-copy {
  display: grid;
  justify-items: center;
  max-width: var(--page-max);
}
.kicker {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  margin: 0 0 12px;
  color: #2563eb;
  font-size: 0.82rem;
  font-weight: 900;
  letter-spacing: 0;
  text-transform: uppercase;
}
.hero .kicker {
  margin-bottom: 16px;
  color: #b8ff6b;
  padding: 7px 12px;
  border: 1px solid rgba(184, 255, 107, 0.28);
  border-radius: 999px;
  background: rgba(184, 255, 107, 0.08);
}
.lede {
  max-width: 850px;
  margin-top: 18px;
  color: #475467;
  font-size: 1.12rem;
}
.hero .lede {
  color: #e5eaf4;
  font-size: clamp(1.08rem, 1.6vw, 1.28rem);
}
.hero-note {
  max-width: 820px;
  margin-top: 14px;
  color: #344054;
  font-size: 1rem;
}
.hero-note strong {
  color: #101828;
}
.hero-note {
  color: #cbd5e1;
}
.hero-note strong {
  color: #ffffff;
}
.hero-actions,
.proof-list {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: center;
  gap: 10px;
}
.hero-actions { margin-top: 22px; }
.hero-actions .button:first-child {
  border-color: rgba(138, 255, 63, 0.85);
  background: var(--accent);
  color: #08110d;
  box-shadow: 0 18px 48px rgba(138, 255, 63, 0.24);
}
.hero-actions .button.secondary {
  border-color: rgba(255, 255, 255, 0.20);
  background: rgba(255, 255, 255, 0.08);
  color: #ffffff;
  backdrop-filter: blur(12px);
}
.proof-list {
  margin: 18px 0 0;
  padding: 0;
  list-style: none;
}
.proof-list li {
  display: inline-flex;
  align-items: center;
  gap: 7px;
  border: 1px solid var(--line);
  border-radius: 999px;
  background: #ffffff;
  padding: 8px 12px;
  color: #344054;
  font-size: 0.92rem;
}
.hero .proof-list li {
  border-color: rgba(255, 255, 255, 0.14);
  background: rgba(255, 255, 255, 0.08);
  color: #e5eaf4;
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.07);
  backdrop-filter: blur(12px);
}
.proof-list .icon {
  width: 16px;
  height: 16px;
  color: var(--accent-dark);
}
.hero .proof-list .icon {
  color: var(--accent);
}
.hero-media {
  width: 100%;
  max-width: var(--page-max);
  margin: 0;
  border: 1px solid rgba(255, 255, 255, 0.16);
  border-radius: 18px;
  background: #0b0f19;
  box-shadow: var(--shadow-strong);
  overflow: hidden;
}
.hero-media img {
  width: 100%;
  aspect-ratio: 16 / 9;
  object-fit: cover;
}
.hero-media figcaption {
  margin: 0;
  padding: 14px 18px;
  color: #d8e0ec;
  font-size: 0.94rem;
  background: linear-gradient(90deg, rgba(138, 255, 63, 0.08), rgba(36, 200, 219, 0.08));
}
.guide-media {
  max-width: 760px;
}

.section {
  max-width: none;
  margin: 0;
  padding: clamp(46px, 7vw, 76px) var(--page-pad);
}
.section > * {
  width: min(100%, var(--page-max));
  margin-left: auto;
  margin-right: auto;
}
.section[id],
.final-cta[id] {
  scroll-margin-top: 92px;
}
.article {
  max-width: 860px;
  margin: 0 auto;
  padding: clamp(42px, 7vw, 78px) clamp(18px, 4vw, 34px);
}
.article h1 {
  margin: 0 0 16px;
}
.article h2 {
  margin: 42px 0 14px;
  font-size: clamp(1.65rem, 3vw, 2.65rem);
}
.article h3 {
  margin: 28px 0 10px;
  font-size: clamp(1.15rem, 2vw, 1.35rem);
}
.article p,
.article li {
  color: #344054;
  font-size: 1.04rem;
}
.article p + p {
  margin-top: 12px;
}
.article ul {
  margin: 8px 0 18px;
  padding-left: 24px;
  color: #344054;
}
.article li + li {
  margin-top: 6px;
}
.article hr {
  height: 1px;
  margin: 34px 0;
  border: 0;
  background: var(--line);
}
.section.muted {
  max-width: none;
  background:
    linear-gradient(180deg, #f5f8fc 0%, #eef4fa 100%);
}
.section.muted > * {
  width: min(100%, var(--page-max));
  max-width: none;
  margin-left: auto;
  margin-right: auto;
}
.section-heading {
  display: grid;
  gap: 12px;
  max-width: var(--page-max);
  margin-bottom: 22px;
}
.section-heading .kicker {
  justify-self: start;
  color: #1d4ed8;
  padding: 6px 10px;
  border: 1px solid rgba(37, 99, 235, 0.13);
  border-radius: 999px;
  background: rgba(37, 99, 235, 0.06);
}
.section-heading p {
  max-width: 980px;
  color: #475467;
  font-size: 1.02rem;
}
.verdict-panel,
.note,
.reviewer {
  border: 1px solid var(--line);
  border-radius: 14px;
  background: #ffffff;
  padding: clamp(22px, 3vw, 32px);
  box-shadow: var(--shadow);
}
.verdict-panel {
  display: grid;
  gap: 16px;
  max-width: var(--page-max);
  position: relative;
  overflow: hidden;
  border-color: rgba(124, 92, 255, 0.20);
}
.verdict-panel::before {
  content: "";
  position: absolute;
  inset: 0 auto 0 0;
  width: 5px;
  background: linear-gradient(180deg, var(--accent), var(--cyan), var(--rose));
}
.verdict-panel > * {
  position: relative;
}
.testing-notes {
  margin-top: clamp(24px, 4vw, 36px);
  padding: clamp(18px, 3vw, 24px);
  border: 1px solid rgba(217, 224, 234, 0.92);
  border-left: 4px solid var(--accent);
  border-radius: 12px;
  background: rgba(255, 255, 255, 0.82);
  box-shadow: 0 12px 30px rgba(16, 24, 40, 0.05);
}
.testing-notes h3 {
  margin-bottom: 8px;
}
.testing-notes p {
  max-width: 980px;
  color: #475467;
}
.verdict-panel ul,
.two-lists ul {
  margin: 0;
  padding-left: 20px;
  color: #344054;
}
.verdict-panel li + li,
.two-lists li + li { margin-top: 8px; }
.note + .note,
.two-lists + .note,
.table-wrap + .note,
.proof-layout + .two-lists {
  margin-top: 16px;
}

.table-wrap {
  width: 100%;
  max-width: var(--page-max);
  margin-left: auto;
  margin-right: auto;
  overflow-x: auto;
  border: 1px solid rgba(217, 224, 234, 0.9);
  border-radius: 14px;
  background: #ffffff;
  box-shadow: var(--shadow);
}
table {
  width: 100%;
  border-collapse: collapse;
  min-width: 0;
}
th, td {
  padding: 16px;
  border-bottom: 1px solid var(--line);
  text-align: left;
  vertical-align: top;
}
tr:last-child th,
tr:last-child td { border-bottom: 0; }
th {
  width: 28%;
  color: #101828;
  font-weight: 850;
}
td { color: #475467; }
thead th {
  background: #eef4fb;
  color: #344054;
}
.row-label {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  min-width: 0;
}
.row-label .icon {
  width: 24px;
  height: 24px;
  padding: 4px;
  border-radius: 8px;
  color: #111827;
  background: linear-gradient(135deg, #d9ff7b, #b4f5ff);
}
#glance td strong,
#recommendation td strong {
  color: #101828;
}
#recommendation th:first-child { width: 25%; }
#recommendation td:nth-child(2) { width: 22%; }

.split,
.two-lists,
.card-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 16px;
}
.split.three {
  grid-template-columns: repeat(3, minmax(0, 1fr));
}
.split article,
.two-lists article,
.card {
  position: relative;
  overflow: hidden;
  border: 1px solid rgba(217, 224, 234, 0.92);
  border-radius: 14px;
  background: #ffffff;
  padding: 20px;
  box-shadow: 0 16px 44px rgba(16, 24, 40, 0.07);
}
.split article::before,
.two-lists article::before,
.card::before {
  content: "";
  position: absolute;
  inset: 0;
  height: 4px;
  background: linear-gradient(90deg, var(--accent), var(--cyan), var(--rose));
  opacity: 0.85;
}
.split article > .icon,
.two-lists article > .icon,
.card > .icon {
  width: 28px;
  height: 28px;
  margin-bottom: 14px;
  color: #1d4ed8;
}
.split article p,
.card p,
.two-lists li,
.note p,
.reviewer p {
  color: #475467;
}
.card-grid {
  grid-template-columns: repeat(3, minmax(0, 1fr));
}
.card-grid.two {
  grid-template-columns: repeat(2, minmax(0, 1fr));
}
.story-stack {
  display: grid;
  gap: 16px;
}
.story-panel {
  position: relative;
  overflow: hidden;
  border: 1px solid rgba(217, 224, 234, 0.92);
  border-radius: 14px;
  background: #ffffff;
  padding: clamp(20px, 3vw, 28px);
  box-shadow: 0 16px 44px rgba(16, 24, 40, 0.07);
}
.story-panel::before {
  content: "";
  position: absolute;
  inset: 0;
  height: 4px;
  background: linear-gradient(90deg, var(--accent), var(--cyan), var(--rose));
  opacity: 0.85;
}
.story-panel > .icon {
  width: 28px;
  height: 28px;
  margin-bottom: 14px;
  color: #1d4ed8;
}
.story-panel p {
  max-width: 980px;
  color: #475467;
}
.story-panel p + p {
  margin-top: 10px;
}
.proof-layout {
  display: grid;
  grid-template-columns: minmax(0, 0.95fr) minmax(0, 1.05fr);
  gap: clamp(22px, 4vw, 38px);
  align-items: center;
}
.proof-media {
  margin: 0;
  overflow: hidden;
  border: 1px solid rgba(11, 15, 25, 0.10);
  border-radius: 16px;
  background: #0b0f19;
  box-shadow: var(--shadow-strong);
}
.proof-media img {
  width: 100%;
  aspect-ratio: 16 / 9;
  object-fit: cover;
}
.proof-media figcaption {
  margin: 0;
  padding: 14px 16px;
  color: #d7deea;
  font-size: 0.94rem;
  background: #0b0f19;
}
.proof-copy {
  display: grid;
  gap: 14px;
}
.proof-copy p:not(.kicker),
.proof-points p {
  color: #475467;
}
.proof-points {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 12px;
  margin-top: 6px;
}
.proof-points article {
  border: 1px solid rgba(217, 224, 234, 0.92);
  border-radius: 12px;
  background: #ffffff;
  padding: 16px;
  box-shadow: 0 12px 32px rgba(16, 24, 40, 0.06);
}
.proof-points .icon {
  width: 24px;
  height: 24px;
  margin-bottom: 10px;
  color: #1d4ed8;
}
.linked-card {
  display: block;
}
.linked-card:hover {
  border-color: rgba(79, 70, 229, 0.38);
  transform: translateY(-1px);
}
.faq-list {
  display: grid;
  gap: 10px;
}
details {
  border: 1px solid var(--line);
  border-radius: 12px;
  background: #ffffff;
  padding: 16px 18px;
  box-shadow: 0 10px 26px rgba(16, 24, 40, 0.05);
}
summary {
  cursor: pointer;
  font-weight: 850;
}
details p {
  margin-top: 10px;
  color: #475467;
}
.inline-cta {
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto;
  align-items: center;
  gap: 20px;
  margin-top: clamp(32px, 4vw, 48px);
  padding: clamp(20px, 3vw, 30px);
  border: 1px solid var(--line);
  border-radius: 14px;
  background: #ffffff;
  box-shadow: var(--shadow);
}
.inline-cta h3 {
  margin: 0 0 8px;
  font-size: clamp(1.25rem, 2vw, 1.55rem);
}
.inline-cta p:not(.kicker) {
  max-width: 760px;
  color: #475467;
}
.final-cta {
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto;
  align-items: center;
  gap: 22px;
  max-width: var(--page-max);
  margin: clamp(42px, 6vw, 68px) auto clamp(32px, 5vw, 54px);
  padding: clamp(28px, 5vw, 42px) var(--page-pad);
  border-radius: 18px;
  background:
    linear-gradient(90deg, rgba(138, 255, 63, 0.08) 1px, transparent 1px),
    linear-gradient(180deg, rgba(255, 255, 255, 0.05) 1px, transparent 1px),
    linear-gradient(135deg, #070a12 0%, #111827 64%, #0b241c 100%);
  background-size: 56px 56px, 56px 56px, auto;
  color: #ffffff;
  box-shadow: var(--shadow-strong);
}
.final-cta p {
  max-width: 850px;
  color: #d0d5dd;
}
.final-cta h2 { margin-bottom: 12px; }
.final-cta .kicker { color: #b8ff6b; }
.final-cta h3 {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  margin: 16px 0 6px;
  color: #ffffff;
}
.final-cta h3 .icon {
  width: 20px;
  height: 20px;
  color: #b8ff6b;
}
.final-cta .button {
  background: var(--accent);
  color: #08110d;
  border-color: var(--accent);
  box-shadow: 0 18px 48px rgba(138, 255, 63, 0.22);
}
.reviewer-section {
  padding-top: 0;
  padding-bottom: clamp(52px, 7vw, 84px);
}
.reviewer-card {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(320px, 0.86fr);
  gap: 28px;
  border: 1px solid rgba(217, 224, 234, 0.92);
  border-radius: 16px;
  background: #ffffff;
  padding: clamp(24px, 4vw, 38px);
  box-shadow: var(--shadow);
}
.reviewer-card h2 { margin-bottom: 12px; }
.reviewer-card p {
  color: #475467;
}
.reviewer-card p + p {
  margin-top: 12px;
}
.reviewer-notes {
  display: grid;
  gap: 12px;
}
.reviewer-notes article {
  border: 1px solid var(--line);
  border-radius: 12px;
  background: #f8fbff;
  padding: 16px;
}
.reviewer-notes .icon {
  width: 24px;
  height: 24px;
  margin-bottom: 10px;
  color: #1d4ed8;
}
.site-footer {
  padding: 42px var(--page-pad);
  border-top: 1px solid rgba(255, 255, 255, 0.08);
  background: #090d16;
  color: #c6cfdd;
}
.site-footer .brand {
  color: #ffffff;
}
.site-footer .brand-mark {
  box-shadow: 0 0 0 1px rgba(255, 255, 255, 0.16), 0 12px 30px rgba(138, 255, 63, 0.18);
}
.footer-inner {
  display: grid;
  grid-template-columns: minmax(260px, 1fr) minmax(380px, 0.9fr);
  gap: 36px;
  align-items: start;
  max-width: var(--page-max);
  margin: 0 auto;
}
.footer-brand-block p {
  max-width: 560px;
  margin-top: 10px;
}
.footer-links {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 22px;
}
.footer-links h3 {
  margin: 0 0 10px;
  color: #ffffff;
  font-size: 0.9rem;
}
.footer-links a {
  display: block;
  color: #c6cfdd;
  font-size: 0.94rem;
}
.footer-links a + a {
  margin-top: 8px;
}

@media (max-width: 900px) {
  .site-header {
    grid-template-columns: minmax(0, 1fr) auto;
    gap: 12px;
  }
  nav { display: none; }
  .site-header .button-small {
    width: 42px;
    min-width: 42px;
    padding: 0;
    gap: 0;
    font-size: 0;
  }
  .site-header .button-small .icon {
    width: 20px;
    height: 20px;
  }
  h1 {
    font-size: clamp(2rem, 8.8vw, 2.75rem);
    line-height: 1.08;
  }
  .hero {
    gap: 20px;
    padding-top: 38px;
    padding-bottom: 28px;
  }
  .hero-copy,
  .hero h1,
  .lede,
  .hero-note {
    max-width: 100%;
  }
  .hero-actions {
    width: 100%;
  }
  .hero-actions .button {
    flex: 1 1 0;
    min-width: 0;
    padding-left: 12px;
    padding-right: 12px;
  }
  table {
    min-width: 0;
    table-layout: fixed;
  }
  th, td {
    padding: 12px;
    overflow-wrap: anywhere;
  }
  th {
    width: 34%;
  }
  #glance table,
  #glance tbody,
  #glance tr,
  #glance th,
  #glance td,
  #recommendation table,
  #recommendation thead,
  #recommendation tbody,
  #recommendation tr,
  #recommendation th,
  #recommendation td {
    display: block;
    width: 100%;
  }
  #recommendation thead {
    display: none;
  }
  #glance tr,
  #recommendation tr {
    padding: 14px;
    border-bottom: 1px solid var(--line);
  }
  #glance tr:last-child,
  #recommendation tr:last-child {
    border-bottom: 0;
  }
  #glance th,
  #glance td,
  #recommendation th,
  #recommendation td {
    width: 100%;
    padding: 0;
    border-bottom: 0;
  }
  #recommendation th:first-child,
  #recommendation td:nth-child(2) {
    width: 100%;
  }
  #glance td {
    margin-top: 8px;
    padding-left: 34px;
  }
  #recommendation td {
    margin-top: 10px;
    padding-left: 34px;
  }
  #recommendation td[data-label]::before {
    content: attr(data-label);
    display: block;
    margin-bottom: 2px;
    color: #667085;
    font-size: 0.72rem;
    font-weight: 900;
    letter-spacing: 0.02em;
    text-transform: uppercase;
  }
  .split,
  .split.three,
  .two-lists,
  .card-grid,
  .card-grid.two,
  .proof-layout,
  .proof-points,
  .inline-cta,
  .final-cta,
  .reviewer-card,
  .footer-inner,
  .footer-links {
    grid-template-columns: 1fr;
  }
  .proof-media img { aspect-ratio: 16 / 9; }
  .inline-cta .button { justify-self: start; }
  .final-cta {
    margin-left: 18px;
    margin-right: 18px;
    padding: 24px 20px;
  }
  .reviewer-section {
    padding-bottom: 46px;
  }
  .site-footer {
    padding-top: 32px;
    padding-bottom: 32px;
  }
}

@media (max-width: 520px) {
  h1 {
    font-size: clamp(1.9rem, 8.2vw, 2.25rem);
    line-height: 1.12;
  }
  .hero-actions {
    flex-direction: column;
  }
  .hero-actions .button {
    width: 100%;
    flex: none;
  }
}
