:root {
  --ink: #142238;
  --ink-soft: #33445d;
  --navy: #0b2440;
  --navy-deep: #07192d;
  --blue: #155fc4;
  --blue-light: #e8f1fc;
  --green: #0b7a58;
  --green-dark: #075b43;
  --green-light: #e5f4ee;
  --amber: #e6a11a;
  --amber-light: #fff6df;
  --muted: #647084;
  --line: #d7dee8;
  --line-strong: #aeb9c8;
  --paper: #ffffff;
  --surface: #f4f7fa;
  --surface-blue: #edf4fb;
}

* {
  box-sizing: border-box;
  letter-spacing: 0;
}

html {
  scroll-behavior: smooth;
  scroll-padding-top: 92px;
}

body {
  margin: 0;
  background: var(--paper);
  color: var(--ink);
  font-family: "Segoe UI", Arial, sans-serif;
  font-size: 16px;
  line-height: 1.5;
}

body,
button,
select {
  font-family: "Segoe UI", Arial, sans-serif;
}

a,
button,
select,
summary {
  -webkit-tap-highlight-color: transparent;
}

a:focus-visible,
button:focus-visible,
select:focus-visible,
summary:focus-visible {
  outline: 3px solid rgba(21, 95, 196, .35);
  outline-offset: 3px;
}

.skip-link {
  position: fixed;
  top: 10px;
  left: 10px;
  z-index: 100;
  padding: 9px 12px;
  background: var(--paper);
  color: var(--navy);
  border: 2px solid var(--blue);
  transform: translateY(-160%);
}

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

.shell {
  width: min(1280px, calc(100% - 40px));
  margin: 0 auto;
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 40;
  min-height: 76px;
  display: flex;
  align-items: center;
  border-bottom: 1px solid var(--line);
  background: rgba(255, 255, 255, .98);
}

.topbar {
  width: 100%;
  min-width: 0;
  display: grid;
  grid-template-columns: auto minmax(320px, 1fr) auto;
  align-items: center;
  gap: 30px;
}

.brand {
  min-width: 0;
  display: inline-flex;
  align-items: center;
  gap: 11px;
  color: var(--navy);
  text-decoration: none;
}

.brand:hover {
  color: var(--navy);
}

.brand-logo {
  width: 54px;
  height: 44px;
  display: block;
  object-fit: contain;
}

.brand-copy {
  min-width: 0;
  display: grid;
  line-height: 1.15;
}

.brand-name {
  font-size: 1.08rem;
  font-weight: 850;
  white-space: nowrap;
}

.brand-category {
  margin-top: 4px;
  color: var(--muted);
  font-size: .7rem;
  font-weight: 700;
  white-space: nowrap;
}

.main-nav {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 26px;
}

.main-nav a {
  padding: 27px 0 24px;
  border-bottom: 3px solid transparent;
  color: var(--ink-soft);
  font-size: .88rem;
  font-weight: 750;
  text-decoration: none;
}

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

.topbar-actions,
.locale-switch {
  display: flex;
  align-items: center;
  gap: 7px;
}

.locale-btn,
.signin-btn,
.header-trial,
.primary-cta,
.secondary-cta,
.offer-btn,
.btn-plan,
.final-demo {
  min-height: 40px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  border-radius: 4px;
  font-weight: 800;
  text-decoration: none;
}

.locale-btn,
.signin-btn {
  border: 1px solid #b8c3d1;
  background: var(--paper);
  color: var(--ink-soft);
}

.locale-btn {
  min-width: 40px;
  padding: 7px 8px;
}

.locale-btn span {
  display: none;
}

.locale-btn.active {
  border-color: var(--green);
  color: var(--green-dark);
  box-shadow: inset 0 -2px 0 var(--green);
}

.locale-flag-img {
  width: 19px;
  height: 13px;
  border: 1px solid rgba(15, 23, 42, .18);
  object-fit: cover;
}

.signin-btn {
  padding: 8px 11px;
}

.header-trial,
.primary-cta,
.offer-btn,
.btn-plan {
  border: 1px solid var(--green);
  background: var(--green);
  color: #fff;
}

.header-trial {
  padding: 8px 13px;
  font-size: .84rem;
}

.header-trial:hover,
.primary-cta:hover,
.offer-btn:hover,
.btn-plan:hover {
  border-color: var(--green-dark);
  background: var(--green-dark);
  color: #fff;
}

.hero {
  position: relative;
  min-height: min(680px, calc(100svh - 150px));
  overflow: hidden;
  border-bottom: 1px solid #06182b;
  background-color: var(--navy-deep);
  background-image: url("product-workspace-synthetic.png");
  background-position: center 34%;
  background-size: cover;
  color: #fff;
}

.hero::before,
.hero::after {
  content: "";
  position: absolute;
  inset: 0;
  pointer-events: none;
}

.hero::before {
  background: rgba(4, 17, 31, .10);
}

.hero::after {
  right: auto;
  width: calc(50vw + 400px);
  background: linear-gradient(
    90deg,
    rgba(4, 20, 37, .98) 0%,
    rgba(4, 20, 37, .98) calc(100% - 300px),
    rgba(4, 20, 37, .94) calc(100% - 220px),
    rgba(4, 20, 37, .62) calc(100% - 100px),
    rgba(4, 20, 37, 0) 100%
  );
}

.hero-inner {
  position: relative;
  z-index: 1;
  min-height: inherit;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  padding-top: 52px;
}

.hero-copy {
  width: min(660px, 47vw);
  padding: 0 0 42px;
}

.eyebrow,
.section-kicker {
  margin: 0 0 12px;
  color: #7ee0bd;
  font-size: .75rem;
  font-weight: 900;
  text-transform: uppercase;
}

.hero h1 {
  margin: 0;
  font-size: 4.7rem;
  line-height: 1;
  font-weight: 880;
}

.hero-statement {
  max-width: 640px;
  margin: 18px 0 0;
  color: #fff;
  font-size: 2.12rem;
  font-weight: 720;
  line-height: 1.18;
}

.hero-lead {
  max-width: 640px;
  margin: 20px 0 0;
  color: #dfe8f2;
  font-size: 1.08rem;
  line-height: 1.62;
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-top: 26px;
}

.primary-cta,
.secondary-cta,
.final-demo {
  min-height: 50px;
  padding: 12px 18px;
}

.secondary-cta,
.final-demo {
  border: 1px solid rgba(255, 255, 255, .72);
  background: rgba(4, 17, 31, .34);
  color: #fff;
}

.secondary-cta:hover,
.final-demo:hover {
  background: #fff;
  color: var(--navy);
}

.hero-note {
  display: flex;
  align-items: center;
  gap: 8px;
  margin: 14px 0 0;
  color: #cdd9e5;
  font-size: .82rem;
}

.hero-note i {
  color: #7ee0bd;
}

.hero-proof {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  background: rgba(255, 255, 255, .97);
  color: var(--ink);
  border-top: 1px solid rgba(255, 255, 255, .72);
}

.proof-item {
  min-height: 86px;
  padding: 18px 22px;
  display: grid;
  grid-template-columns: 38px 1fr;
  align-items: center;
  gap: 12px;
  font-size: .9rem;
  font-weight: 760;
}

.proof-item + .proof-item {
  border-left: 1px solid var(--line);
}

.proof-item i {
  width: 38px;
  height: 38px;
  display: grid;
  place-items: center;
  background: var(--green-light);
  color: var(--green-dark);
}

.section {
  padding: 86px 0;
}

.section-muted {
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
  background: var(--surface);
}

.section-heading {
  display: grid;
  grid-template-columns: minmax(0, .88fr) minmax(300px, 1.12fr);
  gap: 64px;
  align-items: end;
  margin-bottom: 44px;
}

.section-heading.compact {
  margin-bottom: 34px;
}

.section-kicker {
  color: var(--green-dark);
}

.section-heading h2,
.evidence-copy h2,
.control-intro h2,
.pricing-heading h2,
.faq-intro h2,
.final-cta h2 {
  margin: 0;
  font-size: 2.8rem;
  font-weight: 830;
  line-height: 1.08;
}

.section-heading > p,
.evidence-copy > p,
.control-intro > p,
.pricing-heading > p,
.faq-intro > p,
.final-cta p {
  margin: 0;
  color: var(--muted);
  line-height: 1.72;
}

.production-rail {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  border-top: 1px solid var(--line-strong);
  border-bottom: 1px solid var(--line-strong);
}

.production-stage {
  min-width: 0;
  padding: 28px 25px 30px;
}

.production-stage + .production-stage {
  border-left: 1px solid var(--line-strong);
}

.stage-top {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 24px;
}

.stage-number {
  color: var(--green-dark);
  font-size: .75rem;
  font-weight: 900;
}

.stage-top i {
  color: var(--blue);
  font-size: 1.25rem;
}

.production-stage h3 {
  margin: 0 0 9px;
  font-size: 1.08rem;
  font-weight: 820;
}

.production-stage p {
  margin: 0;
  color: var(--muted);
  font-size: .92rem;
  line-height: 1.58;
}

.workflow-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  border: 1px solid var(--line-strong);
  background: var(--paper);
}

.workflow-item {
  min-width: 0;
  padding: 32px;
}

.workflow-item + .workflow-item {
  border-left: 1px solid var(--line-strong);
}

.workflow-icon {
  width: 48px;
  height: 48px;
  display: grid;
  place-items: center;
  margin-bottom: 24px;
  background: var(--surface-blue);
  color: var(--blue);
  font-size: 1.15rem;
}

.workflow-label {
  display: block;
  margin-bottom: 9px;
  color: var(--green-dark);
  font-size: .72rem;
  font-weight: 900;
  text-transform: uppercase;
}

.workflow-item h3 {
  margin: 0 0 12px;
  font-size: 1.25rem;
  font-weight: 820;
}

.workflow-item p {
  margin: 0;
  color: var(--muted);
  line-height: 1.62;
}

.workflow-proof {
  margin-top: 22px;
  padding-top: 16px;
  border-top: 1px solid var(--line);
  color: var(--ink-soft);
  font-size: .86rem;
  font-weight: 760;
}

.workflow-proof i {
  margin-right: 7px;
  color: var(--green);
}

.evidence-section {
  padding: 86px 0;
  background: var(--navy);
  color: #fff;
}

.evidence-layout {
  display: grid;
  grid-template-columns: minmax(280px, .82fr) minmax(0, 1.18fr);
  gap: 74px;
  align-items: start;
}

.evidence-copy > p {
  margin-top: 20px;
  color: #c8d5e2;
}

.evidence-list {
  border-top: 1px solid rgba(255, 255, 255, .28);
}

.evidence-item {
  display: grid;
  grid-template-columns: 48px 1fr;
  gap: 18px;
  padding: 22px 0;
  border-bottom: 1px solid rgba(255, 255, 255, .28);
}

.evidence-item i {
  width: 44px;
  height: 44px;
  display: grid;
  place-items: center;
  background: #dff5ec;
  color: var(--green-dark);
}

.evidence-item strong {
  display: block;
  font-size: 1.02rem;
}

.evidence-item span {
  display: block;
  margin-top: 5px;
  color: #c8d5e2;
  font-size: .91rem;
  line-height: 1.55;
}

.formats-section {
  padding: 70px 0;
  border-bottom: 1px solid var(--line);
  background: var(--amber-light);
}

.format-matrix {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  border-top: 1px solid #cdbb8b;
  border-bottom: 1px solid #cdbb8b;
}

.format-group {
  min-width: 0;
  padding: 23px 22px;
}

.format-group + .format-group {
  border-left: 1px solid #cdbb8b;
}

.format-group strong {
  display: block;
  margin-bottom: 9px;
  color: var(--navy);
}

.format-group span {
  color: #5f594b;
  font-size: .9rem;
  line-height: 1.55;
}

.format-note {
  margin: 18px 0 0;
  color: #6d654f;
  font-size: .84rem;
}

.control-layout {
  display: grid;
  grid-template-columns: minmax(280px, .78fr) minmax(0, 1.22fr);
  gap: 70px;
  align-items: start;
}

.control-intro > p {
  margin-top: 20px;
}

.control-standard {
  margin-top: 28px;
  padding: 18px 0 0;
  border-top: 1px solid var(--line-strong);
  color: var(--navy);
  font-weight: 760;
  line-height: 1.55;
}

.control-standard i {
  margin-right: 8px;
  color: var(--green);
}

.control-list {
  border-top: 1px solid var(--line-strong);
}

.control-item {
  display: grid;
  grid-template-columns: 40px 1fr;
  gap: 16px;
  padding: 22px 0;
  border-bottom: 1px solid var(--line-strong);
}

.control-item i {
  color: var(--blue);
  font-size: 1.15rem;
  margin-top: 3px;
}

.control-item strong {
  display: block;
}

.control-item span {
  display: block;
  margin-top: 5px;
  color: var(--muted);
  font-size: .91rem;
  line-height: 1.55;
}

.pricing-section {
  padding: 86px 0;
  border-top: 1px solid var(--line);
  background: var(--surface);
}

.pricing-heading {
  max-width: 770px;
}

.pricing-heading > p {
  margin-top: 16px;
}

.first-month-offer {
  margin-top: 38px;
  display: grid;
  grid-template-columns: minmax(0, 1.25fr) minmax(290px, .75fr);
  border: 1px solid var(--line-strong);
  background: var(--paper);
  box-shadow: 10px 10px 0 #dbe3ec;
}

.offer-copy {
  padding: 34px;
}

.offer-badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  margin-bottom: 14px;
  color: var(--green-dark);
  font-size: .8rem;
  font-weight: 900;
  text-transform: uppercase;
}

.first-month-offer h3 {
  margin: 0;
  font-size: 1.65rem;
  line-height: 1.25;
}

.first-month-offer p {
  margin: 11px 0 0;
  color: var(--muted);
  line-height: 1.58;
}

.offer-benefits {
  margin: 20px 0 0;
  padding: 0;
  display: grid;
  gap: 10px;
  list-style: none;
}

.offer-benefits li {
  display: grid;
  grid-template-columns: 20px 1fr;
  gap: 9px;
}

.offer-benefits i {
  margin-top: 4px;
  color: var(--green);
}

.offer-meta {
  font-size: .84rem;
}

.guarantee-box {
  margin-top: 18px;
  padding-top: 15px;
  display: flex;
  gap: 10px;
  border-top: 1px solid var(--line);
  color: var(--green-dark);
}

.guarantee-copy strong,
.guarantee-copy span {
  display: block;
}

.guarantee-copy span {
  margin-top: 3px;
  color: var(--muted);
  font-size: .88rem;
}

.offer-action {
  padding: 34px;
  display: flex;
  flex-direction: column;
  justify-content: center;
  background: var(--navy);
  color: #fff;
}

.offer-price {
  font-size: 3.5rem;
  font-weight: 900;
  line-height: 1;
}

.offer-action small {
  margin: 9px 0 22px;
  color: #c9d7e4;
}

.offer-btn {
  min-height: 48px;
  padding: 11px 16px;
}

.plans-wrap {
  margin-top: 68px;
  padding-top: 42px;
  border-top: 1px solid var(--line-strong);
}

.plans-toolbar {
  display: flex;
  align-items: end;
  justify-content: space-between;
  gap: 20px;
  flex-wrap: wrap;
}

.plans-copy h3 {
  margin: 0;
  font-size: 1.45rem;
}

.plans-copy p {
  margin: 6px 0 0;
  color: var(--muted);
  font-size: .9rem;
}

.price-controls {
  display: flex;
  align-items: center;
  gap: 9px;
  flex-wrap: wrap;
}

.cycle {
  display: inline-flex;
  border: 1px solid #b9c3d0;
  background: var(--paper);
}

.cycle button {
  min-height: 36px;
  padding: 7px 12px;
  border: 0;
  background: transparent;
  color: var(--ink-soft);
  font-weight: 750;
}

.cycle button + button {
  border-left: 1px solid #b9c3d0;
}

.cycle button.active {
  background: var(--navy);
  color: #fff;
}

.plans {
  margin-top: 20px;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 16px;
}

.plan {
  min-width: 0;
  padding: 25px;
  border: 1px solid #b9c3d0;
  border-radius: 6px;
  background: var(--paper);
}

.plan h4 {
  margin: 0;
  font-weight: 820;
}

.price {
  margin-top: 16px;
  color: var(--navy);
  font-size: 2rem;
  font-weight: 900;
}

.price small {
  font-size: .8rem;
  font-weight: 700;
}

.meta {
  margin-top: 7px;
  color: var(--muted);
  font-size: .85rem;
}

.btn-plan {
  width: 100%;
  min-height: 44px;
  margin-top: 20px;
}

.commercial-notes {
  margin: 30px 0 0;
  padding: 22px 0 0;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
  border-top: 1px solid var(--line-strong);
  list-style: none;
}

.commercial-notes li {
  display: grid;
  grid-template-columns: 24px 1fr;
  gap: 10px;
  color: var(--muted);
  font-size: .84rem;
  line-height: 1.5;
}

.commercial-notes i {
  margin-top: 3px;
  color: var(--green);
}

.faq-section {
  padding: 82px 0;
}

.faq-layout {
  display: grid;
  grid-template-columns: 1fr;
  gap: 34px;
  align-items: start;
}

.faq-intro {
  max-width: 760px;
}

.faq-intro > p {
  margin-top: 18px;
}

.faq-columns {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 56px;
}

.faq-list {
  border-top: 1px solid var(--line-strong);
}

.faq-item {
  border-bottom: 1px solid var(--line-strong);
}

.faq-item summary {
  position: relative;
  padding: 19px 38px 19px 0;
  cursor: pointer;
  color: var(--navy);
  font-weight: 800;
  list-style: none;
}

.faq-item summary::-webkit-details-marker {
  display: none;
}

.faq-item summary::after {
  content: "+";
  position: absolute;
  top: 18px;
  right: 4px;
  color: var(--green-dark);
  font-size: 1.25rem;
}

.faq-item[open] summary::after {
  content: "−";
}

.faq-item p {
  margin: 0;
  padding: 0 38px 19px 0;
  color: var(--muted);
  line-height: 1.6;
}

.final-band {
  padding: 68px 0;
  background: var(--navy-deep);
  color: #fff;
}

.final-cta {
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto;
  gap: 50px;
  align-items: center;
}

.final-cta p {
  max-width: 720px;
  margin-top: 14px;
  color: #cbd8e4;
}

.final-actions {
  display: flex;
  gap: 10px;
  flex-wrap: wrap;
}

.site-footer {
  padding: 30px 0;
  border-top: 1px solid rgba(255, 255, 255, .12);
  background: #071321;
  color: #c2ceda;
}

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

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

.footer-brand strong {
  color: #fff;
}

.footer-brand span {
  color: #98a8b9;
  font-size: .8rem;
}

.footer-nav {
  display: flex;
  gap: 20px;
  flex-wrap: wrap;
}

.footer-nav a {
  color: #c2ceda;
  font-size: .84rem;
  font-weight: 700;
  text-decoration: none;
}

.footer-nav a:hover {
  color: #fff;
}

@media (max-width: 1120px) {
  .topbar {
    grid-template-columns: auto 1fr auto;
    gap: 18px;
  }

  .main-nav {
    gap: 16px;
  }

  .main-nav a {
    font-size: .82rem;
  }

  .header-trial {
    display: none;
  }

  .hero-copy {
    width: min(650px, 57vw);
  }

}

@media (max-width: 920px) {
  .main-nav {
    display: none;
  }

  .topbar {
    grid-template-columns: 1fr auto;
  }

  .hero-copy {
    width: min(700px, 80vw);
  }

  .hero::after {
    width: 100%;
    background: rgba(4, 20, 37, .88);
  }

  .section-heading,
  .evidence-layout,
  .control-layout,
  .faq-layout,
  .final-cta {
    grid-template-columns: 1fr;
    gap: 32px;
  }

  .production-rail,
  .format-matrix {
    grid-template-columns: repeat(2, 1fr);
  }

  .production-stage:nth-child(3),
  .production-stage:nth-child(4),
  .format-group:nth-child(3),
  .format-group:nth-child(4) {
    border-top: 1px solid var(--line-strong);
  }

  .production-stage:nth-child(3),
  .format-group:nth-child(3) {
    border-left: 0;
  }

  .workflow-grid,
  .plans {
    grid-template-columns: 1fr;
  }

  .faq-columns {
    grid-template-columns: 1fr;
    gap: 0;
  }

  .workflow-item + .workflow-item {
    border-top: 1px solid var(--line-strong);
    border-left: 0;
  }

  .first-month-offer {
    grid-template-columns: 1fr;
  }

  .commercial-notes {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 680px) {
  html {
    scroll-padding-top: 116px;
  }

  .shell {
    width: min(100% - 24px, 1280px);
  }

  .site-header {
    min-height: 106px;
    padding: 9px 0;
  }

  .topbar {
    grid-template-columns: 1fr;
    gap: 8px;
  }

  .brand {
    justify-content: center;
  }

  .brand-category {
    display: none;
  }

  .topbar-actions {
    justify-content: center;
  }

  .signin-btn {
    min-width: 112px;
  }

  .hero {
    min-height: min(690px, calc(100svh - 140px));
    background-position: 54% center;
  }

  .hero::before {
    background: rgba(4, 17, 31, .58);
  }

  .hero::after {
    width: 100%;
    background: rgba(4, 20, 37, .76);
  }

  .hero-inner {
    padding-top: 30px;
  }

  .hero-copy {
    width: 100%;
    padding-bottom: 28px;
  }

  .hero h1 {
    font-size: 3.15rem;
  }

  .hero-statement {
    margin-top: 13px;
    font-size: 1.5rem;
  }

  .hero-lead {
    margin-top: 15px;
    font-size: .95rem;
    line-height: 1.55;
  }

  .hero-actions {
    margin-top: 20px;
  }

  .hero-actions > a {
    width: 100%;
  }

  .hero-proof {
    grid-template-columns: 1fr;
  }

  .proof-item {
    min-height: 56px;
    padding: 10px 14px;
    grid-template-columns: 32px 1fr;
    font-size: .8rem;
  }

  .proof-item + .proof-item {
    border-top: 1px solid var(--line);
    border-left: 0;
  }

  .proof-item i {
    width: 32px;
    height: 32px;
  }

  .section,
  .evidence-section,
  .pricing-section,
  .faq-section {
    padding: 58px 0;
  }

  .formats-section {
    padding: 52px 0;
  }

  .section-heading {
    margin-bottom: 30px;
    gap: 18px;
  }

  .section-heading h2,
  .evidence-copy h2,
  .control-intro h2,
  .pricing-heading h2,
  .faq-intro h2,
  .final-cta h2 {
    font-size: 2.05rem;
  }

  .production-rail,
  .format-matrix {
    grid-template-columns: 1fr;
  }

  .production-stage + .production-stage,
  .format-group + .format-group {
    border-top: 1px solid var(--line-strong);
    border-left: 0;
  }

  .workflow-item,
  .offer-copy,
  .offer-action,
  .plan {
    padding: 23px;
  }

  .evidence-layout,
  .control-layout,
  .faq-layout {
    gap: 28px;
  }

  .offer-price {
    font-size: 3rem;
  }

  .plans-toolbar,
  .price-controls {
    align-items: stretch;
  }

  .price-controls,
  .price-controls > * {
    width: 100%;
  }

  .cycle {
    display: grid;
    grid-template-columns: 1fr 1fr;
  }

  .final-actions > a {
    width: 100%;
  }

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

@media (max-width: 390px) {
  .brand-logo {
    width: 46px;
    height: 38px;
  }

  .brand-name {
    font-size: 1rem;
  }

  .hero h1 {
    font-size: 2.8rem;
  }

  .hero-statement {
    font-size: 1.36rem;
  }
}

@media (prefers-reduced-motion: reduce) {
  html {
    scroll-behavior: auto;
  }
}
