:root {
  --bg: #f4f0ee;
  --surface: #ffffff;
  --surface-alt: #f6e8df;
  --ink: #130b0b;
  --ink-soft: #6a5752;
  --line: #e3d5cf;
  --brand: #ee212b;
  --brand-dark: #c81a23;
  --brand-warm: #f7a06a;
  --brand-soft: #ffd9c7;
  --hero-shadow: rgba(8, 0, 0, 0.58);
  --max-width: 1180px;
  --radius: 8px;
  --shadow: 0 24px 48px rgba(10, 0, 0, 0.08);
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  font-family: Inter, "Segoe UI", Roboto, Arial, sans-serif;
  color: var(--ink);
  background: var(--bg);
}

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

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

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

.site-header {
  position: sticky;
  top: 0;
  z-index: 40;
  background: #ffffff;
  border-bottom: 1px solid #e5d7d0;
}

.header-inner,
.footer-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  min-height: 82px;
}

.brand-mark,
.footer-brand-mark {
  display: inline-flex;
  align-items: center;
  line-height: 0;
}

.brand-mark img {
  width: 228px;
  height: auto;
}

.site-nav {
  display: flex;
  align-items: center;
  gap: 24px;
  font-size: 0.96rem;
  color: var(--ink-soft);
}

.header-tools {
  display: flex;
  align-items: center;
  gap: 14px;
}

.lang-switcher {
  display: inline-flex;
  align-items: center;
  gap: 4px;
  padding: 4px;
  border-radius: 999px;
  border: 1px solid var(--line);
  background: #fff8f4;
}

.lang-switcher a {
  min-width: 40px;
  min-height: 34px;
  padding: 0 12px;
  border-radius: 999px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  color: var(--ink-soft);
  font-size: 0.82rem;
  font-weight: 800;
  text-transform: uppercase;
}

.lang-switcher a.is-active {
  background: var(--brand);
  color: #ffffff;
}

.site-nav a:hover,
.footer-links a:hover,
.lang-switcher a:hover {
  color: var(--brand);
}

.lang-switcher a.is-active:hover {
  color: #ffffff;
}

.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 46px;
  padding: 0 18px;
  border-radius: var(--radius);
  border: 1px solid transparent;
  font-weight: 700;
  cursor: pointer;
}

.button-primary {
  background: var(--brand);
  color: #ffffff;
}

.button-primary:hover {
  background: var(--brand-dark);
}

.button-primary:focus-visible,
.button-secondary:focus-visible,
.site-nav a:focus-visible,
.footer-links a:focus-visible,
.contact-details a:focus-visible {
  outline: 2px solid var(--brand-warm);
  outline-offset: 2px;
}

.button-secondary {
  color: #ffffff;
  border-color: rgba(255, 255, 255, 0.42);
  background: rgba(255, 255, 255, 0.08);
}

.hero {
  position: relative;
  min-height: 84vh;
  overflow: hidden;
  background: #140a0a;
}

.hero-media,
.hero-media img,
.hero-overlay {
  position: absolute;
  inset: 0;
}

.hero-media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.hero-overlay {
  background:
    linear-gradient(90deg, rgba(10, 0, 0, 0.78) 0%, rgba(10, 0, 0, 0.5) 42%, rgba(10, 0, 0, 0.22) 100%),
    linear-gradient(180deg, rgba(10, 0, 0, 0.08) 0%, rgba(10, 0, 0, 0.72) 100%);
}

.hero-content {
  position: relative;
  z-index: 1;
  display: flex;
  flex-direction: column;
  justify-content: center;
  min-height: 84vh;
  padding: 78px 0 86px;
  color: #ffffff;
}

.hero-kicker,
.section-label,
.service-tag {
  display: inline-flex;
  align-items: center;
  width: fit-content;
  min-height: 28px;
  padding: 0 10px;
  border-radius: 999px;
  background: rgba(238, 33, 43, 0.16);
  color: #ffe1e3;
  font-size: 0.82rem;
  font-weight: 700;
  text-transform: uppercase;
}

.hero h1,
.section h2,
.legal-page h1 {
  margin: 16px 0 0;
  line-height: 1.02;
}

.hero h1 {
  max-width: 820px;
  font-size: clamp(2.9rem, 6vw, 5.25rem);
}

.hero-copy,
.section-copy,
.intro-copy p,
.trust-columns p,
.feature-card p,
.service-panel p,
.timeline-list p,
.news-panel p,
.channel-list p,
.contact-details p,
.legal-page p,
.legal-page li {
  line-height: 1.75;
}

.hero-copy {
  max-width: 780px;
  margin: 22px 0 0;
  font-size: 1.08rem;
  color: rgba(255, 255, 255, 0.86);
}

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

.hero-stats {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 16px;
  max-width: 900px;
  margin-top: 48px;
}

.hero-stats div {
  padding: 18px 20px;
  border-radius: var(--radius);
  background: rgba(20, 10, 10, 0.58);
  border: 1px solid rgba(255, 255, 255, 0.1);
}

.hero-stats strong,
.feature-icon,
.service-panel h3,
.news-panel h3 {
  display: block;
}

.hero-stats strong {
  font-size: 1.02rem;
}

.hero-stats span {
  display: block;
  margin-top: 8px;
  color: rgba(255, 255, 255, 0.7);
  font-size: 0.92rem;
}

.section {
  padding: 96px 0;
}

.section-heading h2,
.legal-page h1 {
  font-size: clamp(2rem, 3.7vw, 3.3rem);
}

.section-heading span {
  display: block;
}

.section-label {
  background: rgba(238, 33, 43, 0.1);
  color: var(--brand);
}

.section-copy,
.intro-copy p,
.trust-columns p,
.feature-card p,
.service-panel p,
.timeline-list p,
.news-panel p,
.contact-copy .section-copy,
.channel-list p,
.contact-details span,
.contact-details p,
.legal-page p,
.legal-page li {
  color: var(--ink-soft);
}

.tight {
  max-width: 760px;
}

.center {
  margin-left: auto;
  margin-right: auto;
  text-align: center;
}

.intro-grid,
.coverage-grid,
.company-grid,
.news-layout,
.demo-layout,
.contact-grid {
  display: grid;
  gap: 32px;
}

.intro-grid {
  grid-template-columns: 0.95fr 1.05fr;
  align-items: start;
}

.section-intro h2 span,
.trust-panel h2 span {
  color: var(--brand);
}

.section-media-band {
  padding-top: 8px;
}

.media-grid {
  display: grid;
  grid-template-columns: 0.54fr 0.46fr;
  gap: 18px;
  align-items: stretch;
}

.media-card,
.trust-panel,
.feature-card,
.service-panel,
.timeline-list article,
.news-panel,
.contact-form,
.channel-list article {
  border-radius: var(--radius);
}

.media-card {
  overflow: hidden;
  min-height: 100%;
}

.media-card img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.media-card-tall {
  min-height: 680px;
}

.media-stack {
  display: grid;
  grid-template-rows: 320px 1fr;
  gap: 18px;
}

.trust-panel {
  padding: 32px;
  background: var(--surface);
  border: 1px solid var(--line);
  box-shadow: var(--shadow);
}

.trust-columns {
  display: grid;
  gap: 18px;
  margin-top: 28px;
}

.trust-columns article {
  padding-top: 18px;
  border-top: 1px solid var(--line);
}

.trust-columns h3 {
  margin: 0;
  font-size: 1rem;
}

.section-solutions {
  background: var(--surface);
}

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

.product-card {
  display: grid;
  grid-template-columns: auto 1fr;
  gap: 18px;
  padding: 26px;
  border-radius: var(--radius);
  background: #fff9f6;
  border: 1px solid #ead9d1;
  box-shadow: var(--shadow);
}

.product-card-featured {
  grid-column: span 2;
  background:
    linear-gradient(135deg, rgba(247, 160, 106, 0.14) 0%, rgba(238, 33, 43, 0.06) 100%),
    #fff8f4;
}

.product-icon {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 56px;
  height: 56px;
  border-radius: 16px;
  background: #1a1212;
  color: #fff7f3;
  flex-shrink: 0;
}

.product-icon svg {
  width: 28px;
  height: 28px;
  stroke: currentColor;
  stroke-width: 1.7;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.product-body h3 {
  margin: 14px 0 0;
  font-size: clamp(1.45rem, 2vw, 2rem);
  line-height: 1.08;
}

.product-lead,
.product-body p:last-child {
  margin: 12px 0 0;
  color: var(--ink-soft);
  line-height: 1.72;
}

.product-points {
  margin: 18px 0 0;
  padding-left: 20px;
  color: var(--ink-soft);
  line-height: 1.8;
}

.product-card .service-tag {
  background: rgba(238, 33, 43, 0.1);
  color: var(--brand);
}

.solutions-architecture {
  display: grid;
  grid-template-columns: 1.1fr 0.9fr;
  gap: 20px;
  margin-top: 38px;
}

.solution-primary,
.solution-support-card {
  border-radius: var(--radius);
}

.solution-primary {
  display: grid;
  gap: 18px;
  padding: 30px;
  background:
    linear-gradient(135deg, rgba(247, 160, 106, 0.16) 0%, rgba(238, 33, 43, 0.06) 100%),
    #fff8f5;
  border: 1px solid #ecd6cb;
  box-shadow: var(--shadow);
}

.solution-primary-copy h3,
.solution-support-card h3 {
  margin: 14px 0 0;
  font-size: 1.35rem;
  line-height: 1.15;
}

.solution-primary-copy p:last-child,
.solution-support-card p:last-child {
  margin: 14px 0 0;
  color: var(--ink-soft);
  line-height: 1.72;
}

.solution-primary .service-tag {
  background: rgba(238, 33, 43, 0.1);
  color: var(--brand);
}

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

.solution-chip-row span {
  min-height: 38px;
  padding: 0 14px;
  border-radius: 999px;
  display: inline-flex;
  align-items: center;
  background: rgba(255, 255, 255, 0.78);
  border: 1px solid #e8d4cb;
  color: var(--ink);
  font-size: 0.92rem;
  font-weight: 600;
}

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

.solution-support-card {
  padding: 24px;
  background: #161010;
  color: #ffffff;
}

.solution-support-card .service-tag {
  background: rgba(255, 255, 255, 0.12);
  color: #ffe0d1;
}

.solution-support-card p:last-child {
  color: rgba(255, 255, 255, 0.76);
}

.platform-showcase {
  display: grid;
  grid-template-columns: 0.42fr 0.58fr;
  gap: 22px;
  margin-top: 40px;
  padding: 24px;
  border-radius: var(--radius);
  background:
    linear-gradient(180deg, rgba(255, 138, 76, 0.08) 0%, rgba(255, 255, 255, 0) 100%),
    #fff8f6;
  border: 1px solid #ecd7d2;
}

.platform-copy {
  display: grid;
  align-content: start;
}

.platform-copy h3,
.linkedin-highlight h3 {
  margin: 14px 0 0;
  font-size: clamp(1.6rem, 2.4vw, 2.2rem);
  line-height: 1.08;
}

.platform-copy p,
.linkedin-highlight p,
.linkedin-card p {
  line-height: 1.7;
}

.platform-copy p {
  margin: 14px 0 0;
  color: var(--ink-soft);
}

.platform-points {
  margin: 18px 0 0;
  padding-left: 20px;
  color: var(--ink-soft);
  line-height: 1.8;
}

.platform-shot {
  display: flex;
  min-height: 100%;
  overflow: hidden;
  border-radius: var(--radius);
  border: 1px solid #2b1b1b;
  box-shadow: 0 20px 44px rgba(10, 0, 0, 0.16);
}

.platform-shot img {
  width: 100%;
  height: 100%;
  min-height: 100%;
  aspect-ratio: 16 / 10;
  object-fit: cover;
  object-position: center center;
}

.feature-grid,
.news-panels {
  display: grid;
  gap: 18px;
}

.feature-grid {
  grid-template-columns: repeat(4, minmax(0, 1fr));
  margin-top: 36px;
}

.feature-card {
  padding: 24px;
  background: #faf7f7;
  border: 1px solid #eadede;
}

.feature-icon {
  color: var(--brand);
  font-size: 0.82rem;
  font-weight: 800;
  letter-spacing: 0.08em;
}

.feature-card h3 {
  margin: 14px 0 0;
  font-size: 1.15rem;
}

.feature-card h4 {
  margin: 10px 0 0;
  font-size: 0.98rem;
  line-height: 1.45;
}

.feature-card p {
  margin: 12px 0 0;
}

.service-tag {
  background: rgba(255, 255, 255, 0.1);
  color: #ffd9dc;
}

.section-coverage {
  background: linear-gradient(180deg, #f6f0ec 0%, #f2e8e2 100%);
  color: var(--ink);
}

.section-coverage .section-label {
  color: var(--brand);
  background: rgba(238, 33, 43, 0.1);
}

.section-coverage .section-copy {
  color: var(--ink-soft);
}

.coverage-grid {
  grid-template-columns: 0.95fr 1.05fr;
  align-items: center;
}

.world-map-panel {
  display: grid;
  gap: 18px;
}

.world-map-stage {
  position: relative;
  aspect-ratio: 1.7 / 1;
  overflow: hidden;
  border-radius: 18px;
  border: 1px solid #e5d7d0;
  background:
    radial-gradient(circle at top left, rgba(247, 160, 106, 0.16), rgba(255, 255, 255, 0) 40%),
    #fffdfa;
  box-shadow: var(--shadow);
}

.world-map-stage img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center center;
  display: block;
}

.world-point {
  position: absolute;
  width: 14px;
  height: 14px;
  border-radius: 999px;
  background: var(--brand);
  border: 3px solid #fff7f4;
  box-shadow: 0 0 0 7px rgba(238, 33, 43, 0.12);
}

.point-california { left: 16.9%; top: 30%; }
.point-mexico { left: 21.7%; top: 37.2%; }
.point-colombia { left: 29.4%; top: 47.8%; }
.point-chile { left: 30.3%; top: 68.3%; }
.point-argentina { left: 32.2%; top: 68.9%; }
.point-spain { left: 49.2%; top: 27.8%; }
.point-france { left: 50.6%; top: 24.4%; }
.point-italy { left: 53.3%; top: 26.4%; }
.point-poland { left: 55.3%; top: 21.1%; }
.point-uganda { left: 58.9%; top: 49.4%; }
.point-india { left: 71.7%; top: 37.8%; }
.point-japan { left: 88.3%; top: 30%; }

.presence-list {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
}

.presence-list span {
  min-height: 40px;
  padding: 0 14px;
  border-radius: 999px;
  display: inline-flex;
  align-items: center;
  border: 1px solid #e0d2cb;
  background: rgba(255, 255, 255, 0.8);
}

.company-grid,
.news-layout,
.demo-layout,
.contact-grid {
  grid-template-columns: 0.92fr 1.08fr;
  align-items: start;
}

.timeline-list {
  display: grid;
  gap: 14px;
}

.timeline-list article {
  padding: 22px 24px;
  background: var(--surface);
  border: 1px solid var(--line);
  box-shadow: var(--shadow);
}

.timeline-list span {
  display: block;
  color: var(--brand);
  font-size: 0.84rem;
  font-weight: 800;
  text-transform: uppercase;
}

.timeline-list h3 {
  margin: 8px 0 0;
  font-size: 1.04rem;
}

.timeline-list p {
  margin: 10px 0 0;
}

.section-news {
  background: linear-gradient(180deg, #f5efea 0%, #f1e5df 100%);
  color: var(--ink);
}

.section-news .section-label {
  color: var(--brand);
  background: rgba(238, 33, 43, 0.1);
}

.section-news .section-copy {
  color: var(--ink-soft);
}

.news-hero {
  display: grid;
  grid-template-columns: 0.95fr 0.62fr;
  gap: 24px;
  align-items: end;
}

.linkedin-highlight {
  padding: 24px;
  border-radius: var(--radius);
  background: #fff8f4;
  border: 1px solid #e8d8cf;
  box-shadow: var(--shadow);
}

.linkedin-highlight p:last-of-type {
  margin: 14px 0 0;
  color: var(--ink-soft);
}

.linkedin-feed-shell {
  margin-top: 28px;
}

.linkedin-feed {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 18px;
}

.linkedin-card {
  display: grid;
  align-content: start;
  gap: 14px;
  min-height: 100%;
  overflow: hidden;
  border-radius: var(--radius);
  background: #ffffff;
  border: 1px solid #e6d7cf;
  box-shadow: var(--shadow);
}

.linkedin-card-body {
  display: grid;
  gap: 12px;
  padding: 0 24px 24px;
}

.linkedin-image {
  overflow: hidden;
  aspect-ratio: 16 / 9;
  background: rgba(255, 255, 255, 0.05);
}

.linkedin-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.linkedin-card h3 {
  margin: 0;
  font-size: 1.1rem;
  line-height: 1.35;
}

.linkedin-card p {
  margin: 0;
  color: var(--ink-soft);
}

.linkedin-meta {
  display: inline-flex;
  align-items: center;
  width: fit-content;
  min-height: 28px;
  margin: 0;
  padding: 0 10px;
  border-radius: 999px;
  background: rgba(238, 33, 43, 0.1);
  color: var(--brand);
  font-size: 0.8rem;
  font-weight: 800;
  text-transform: uppercase;
}

.linkedin-link {
  display: inline-flex;
  align-items: center;
  width: fit-content;
  margin-top: 4px;
  color: var(--brand);
  font-weight: 700;
}

.linkedin-link:hover {
  color: var(--brand-dark);
}

.linkedin-card-loading {
  grid-column: 1 / -1;
  padding: 24px;
}

.linkedin-card-featured {
  grid-column: span 2;
}

.linkedin-card-featured .linkedin-image {
  aspect-ratio: 18 / 9;
}

.section-demo {
  background: var(--surface);
}

.bullet-list {
  margin: 22px 0 0;
  padding-left: 20px;
  color: var(--ink-soft);
  line-height: 1.8;
}

.contact-form {
  display: grid;
  gap: 16px;
  padding: 28px;
  background: #fff9f6;
  border: 1px solid #eadfd8;
  box-shadow: var(--shadow);
}

.demo-form {
  background: #140a0a;
  border-color: rgba(255, 255, 255, 0.08);
}

.demo-form,
.demo-form label {
  color: #ffffff;
}

.demo-form input:not([type="checkbox"]):not([type="hidden"]):not(.form-honeypot),
.demo-form select,
.demo-form textarea {
  background: rgba(255, 255, 255, 0.96);
}

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

.contact-form label {
  display: grid;
  gap: 8px;
  font-size: 0.92rem;
  font-weight: 600;
}

.contact-form input:not([type="checkbox"]):not([type="hidden"]):not(.form-honeypot),
.contact-form select,
.contact-form textarea {
  width: 100%;
  min-height: 48px;
  padding: 12px 14px;
  border: 1px solid #ccbcbc;
  border-radius: var(--radius);
  font: inherit;
  color: var(--ink);
}

.contact-form textarea {
  min-height: 140px;
  resize: vertical;
}

.form-honeypot {
  position: absolute;
  left: -9999px;
  width: 1px;
  height: 1px;
  opacity: 0;
  pointer-events: none;
}

.consent-row {
  display: grid;
  grid-template-columns: auto 1fr;
  align-items: start;
  gap: 10px;
  font-weight: 500;
  line-height: 1.55;
}

.consent-row input {
  min-height: auto;
  margin-top: 3px;
}

.consent-row a {
  color: inherit;
  text-decoration: underline;
}

.form-status {
  min-height: 24px;
  margin: 0;
  font-size: 0.92rem;
  font-weight: 600;
}

.fallback-challenge {
  display: grid;
  gap: 8px;
  max-width: 360px;
  margin-top: 4px;
}

.fallback-challenge-label {
  display: block;
}

.fallback-challenge input {
  width: 100%;
  min-height: 48px;
  padding: 12px 14px;
  border: 1px solid #ccbcbc;
  border-radius: var(--radius);
  font: inherit;
  color: var(--ink);
  background: #ffffff;
}

.form-status.is-success {
  color: #0d6b42;
}

.form-status.is-error {
  color: #b42318;
}

.section-contact {
  background: #f2ece9;
}

.channel-list {
  display: grid;
  gap: 16px;
  margin-top: 22px;
}

.channel-list article {
  padding: 20px 22px;
  background: var(--surface);
  border: 1px solid var(--line);
}

.channel-list h3 {
  margin: 0;
  font-size: 1.02rem;
}

.channel-list p {
  margin: 10px 0 0;
}

.contact-details {
  display: grid;
  gap: 18px;
  margin-top: 28px;
}

.contact-details span {
  display: block;
  margin-bottom: 6px;
  font-size: 0.84rem;
}

.contact-details a {
  display: block;
  width: fit-content;
  font-weight: 700;
}

.site-footer {
  padding: 34px 0;
  background: #171010;
  color: rgba(255, 255, 255, 0.8);
}

.footer-inner {
  min-height: auto;
  align-items: center;
}

.footer-brand img {
  width: 220px;
  height: auto;
}

.footer-brand-mark {
  padding: 8px 10px;
  border-radius: var(--radius);
  background: #ffffff;
}

.footer-brand p {
  margin: 12px 0 0;
}

.footer-links {
  display: flex;
  flex-wrap: wrap;
  gap: 18px;
}

.legal-page {
  padding: 80px 0 96px;
}

.legal-wrap {
  max-width: 860px;
}

.legal-back {
  color: var(--brand);
  font-weight: 700;
}

.legal-page h1 {
  margin-bottom: 16px;
}

.legal-page h2 {
  margin-top: 34px;
  font-size: 1.35rem;
}

.legal-page ul {
  padding-left: 20px;
}

@media (max-width: 1120px) {
  .feature-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .product-grid,
  .solutions-architecture,
  .intro-grid,
  .coverage-grid,
  .company-grid,
  .demo-layout,
  .contact-grid,
  .media-grid {
    grid-template-columns: 1fr;
  }

  .media-stack {
    grid-template-rows: 280px auto;
  }

  .platform-showcase,
  .news-hero,
  .linkedin-feed {
    grid-template-columns: 1fr;
  }

  .solution-support-grid {
    grid-template-columns: 1fr 1fr;
  }

  .product-card-featured,
  .linkedin-card-featured {
    grid-column: auto;
  }
}

@media (max-width: 860px) {
  .header-inner {
    flex-wrap: wrap;
    justify-content: center;
    padding: 14px 0;
  }

  .header-tools {
    width: 100%;
    justify-content: center;
  }

  .site-nav {
    order: 3;
    flex-wrap: wrap;
    justify-content: center;
    gap: 14px 18px;
  }

  .hero {
    min-height: auto;
  }

  .hero-content {
    min-height: auto;
    padding: 96px 0 74px;
  }

  .hero-stats,
  .form-row,
  .product-grid,
  .solution-support-grid,
  .linkedin-feed {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 640px) {
  .container {
    width: min(var(--max-width), calc(100% - 28px));
  }

  .section {
    padding: 72px 0;
  }

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

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

  .brand-mark img,
  .footer-brand img {
    width: 188px;
  }
}
