:root {
  --ink: #1d2730;
  --muted: #596876;
  --paper: #fffdf8;
  --surface: #ffffff;
  --soft: #eef7f4;
  --teal: #126b6f;
  --teal-dark: #0d4f52;
  --coral: #d75f4d;
  --gold: #e0aa37;
  --mint: #9fd8c6;
  --line: #dce7e2;
  --shadow: 0 24px 70px rgba(29, 39, 48, 0.12);
  --radius: 8px;
  --max: 1120px;
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
  margin: 0;
  font-family: Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  color: var(--ink);
  background: var(--paper);
  line-height: 1.6;
  text-rendering: optimizeLegibility;
}
body.nav-open { overflow: hidden; }
a { color: var(--teal); text-underline-offset: 0.18em; }
a:hover { color: var(--teal-dark); }
img { max-width: 100%; height: auto; }
.container { width: min(100% - 40px, var(--max)); margin: 0 auto; }
.section-pad { padding: 88px 0; }
.skip-link {
  position: absolute;
  left: 16px;
  top: -80px;
  z-index: 20;
  background: var(--ink);
  color: #fff;
  padding: 10px 14px;
  border-radius: var(--radius);
}
.skip-link:focus { top: 16px; }
:focus-visible { outline: 3px solid var(--gold); outline-offset: 4px; }
.sr-only {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  white-space: nowrap;
  border: 0;
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 10;
  background: rgba(255, 253, 248, 0.92);
  border-bottom: 1px solid rgba(220, 231, 226, 0.8);
  backdrop-filter: blur(16px);
}
.nav {
  width: min(100% - 40px, 1180px);
  min-height: 76px;
  margin: 0 auto;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
}
.brand {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  color: var(--ink);
  font-weight: 800;
  text-decoration: none;
  letter-spacing: 0;
}
.brand-mark {
  display: grid;
  place-items: center;
  width: 42px;
  height: 42px;
  border-radius: var(--radius);
  color: #fff;
  background: linear-gradient(135deg, var(--teal), var(--coral));
  font-size: 0.85rem;
  font-weight: 800;
}
.nav-links {
  display: flex;
  align-items: center;
  gap: 8px;
}
.nav-links a {
  color: var(--ink);
  text-decoration: none;
  font-weight: 700;
  font-size: 0.95rem;
  padding: 10px 12px;
  border-radius: var(--radius);
}
.nav-links a:hover { background: var(--soft); color: var(--teal-dark); }
.nav-links .nav-contact {
  background: var(--teal);
  color: #fff;
  padding-inline: 16px;
}
.nav-links .nav-contact:hover { background: var(--teal-dark); color: #fff; }
.nav-toggle {
  display: none;
  width: 44px;
  height: 44px;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: var(--surface);
  padding: 10px;
}
.nav-toggle span:not(.sr-only) {
  display: block;
  width: 100%;
  height: 2px;
  margin: 5px 0;
  background: var(--ink);
}

.hero {
  position: relative;
  overflow: hidden;
  background:
    radial-gradient(circle at 82% 20%, rgba(224, 170, 55, 0.2), transparent 28%),
    linear-gradient(135deg, #fffdf8 0%, #eef7f4 100%);
}
.hero-grid {
  display: grid;
  grid-template-columns: minmax(0, 1.05fr) minmax(340px, 0.95fr);
  align-items: center;
  gap: 64px;
}
.eyebrow {
  margin: 0 0 12px;
  color: var(--coral);
  font-size: 0.78rem;
  font-weight: 800;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}
h1, h2, h3 { line-height: 1.12; margin: 0; letter-spacing: 0; }
h1 { font-size: clamp(2.45rem, 6vw, 5.25rem); max-width: 850px; }
h2 { font-size: clamp(2rem, 4vw, 3.3rem); }
h3 { font-size: 1.25rem; }
.hero-text {
  max-width: 680px;
  margin: 24px 0 0;
  color: var(--muted);
  font-size: clamp(1.05rem, 2vw, 1.28rem);
}
.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
  margin-top: 34px;
}
.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 48px;
  border-radius: var(--radius);
  padding: 12px 18px;
  font-weight: 800;
  text-decoration: none;
  border: 1px solid transparent;
}
.button.primary { background: var(--teal); color: #fff; box-shadow: 0 12px 28px rgba(18, 107, 111, 0.22); }
.button.primary:hover { background: var(--teal-dark); color: #fff; }
.button.secondary { background: #fff; color: var(--teal-dark); border-color: var(--line); }
.button.secondary:hover { border-color: var(--teal); }
.hero-visual {
  position: relative;
  min-height: 430px;
}
.device-panel {
  position: relative;
  z-index: 2;
  min-height: 400px;
  border: 1px solid rgba(18, 107, 111, 0.14);
  border-radius: 28px;
  background: linear-gradient(150deg, #ffffff, #eef7f4 60%, #fff3dc);
  box-shadow: var(--shadow);
  padding: 32px;
  overflow: hidden;
}
.device-panel::before {
  content: "";
  position: absolute;
  inset: 90px 28px auto auto;
  width: 170px;
  height: 170px;
  border-radius: 50%;
  background: conic-gradient(from 20deg, var(--teal), var(--mint), var(--gold), var(--coral), var(--teal));
  opacity: 0.82;
}
.device-topline {
  width: 90px;
  height: 8px;
  border-radius: 999px;
  background: rgba(29, 39, 48, 0.16);
  margin: 0 auto 42px;
}
.learning-card {
  position: absolute;
  display: flex;
  align-items: center;
  gap: 12px;
  min-width: 190px;
  padding: 16px;
  border: 1px solid rgba(220, 231, 226, 0.9);
  border-radius: var(--radius);
  background: rgba(255, 255, 255, 0.86);
  box-shadow: 0 18px 45px rgba(29, 39, 48, 0.12);
}
.card-one { left: 34px; top: 110px; }
.card-two { right: 34px; top: 220px; }
.card-three { left: 72px; bottom: 42px; }
.mini-icon {
  display: grid;
  place-items: center;
  width: 44px;
  height: 44px;
  border-radius: var(--radius);
  color: #fff;
  background: var(--teal);
  font-weight: 900;
}
.card-two .mini-icon { background: var(--coral); }
.card-three .mini-icon { background: var(--gold); color: var(--ink); }
.signal-block {
  position: absolute;
  border-radius: 24px;
  background: var(--coral);
  opacity: 0.18;
}
.signal-a { width: 120px; height: 120px; right: -16px; top: -12px; }
.signal-b { width: 170px; height: 90px; left: -22px; bottom: 28px; background: var(--teal); }

.about-band { background: #fff; }
.two-column {
  display: grid;
  grid-template-columns: minmax(220px, 0.8fr) minmax(0, 1.2fr);
  gap: 56px;
}
.content-stack p { margin: 0 0 18px; color: var(--muted); font-size: 1.05rem; }
.company-facts {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 14px;
  margin: 28px 0 0;
}
.company-facts div {
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: var(--paper);
  padding: 16px;
}
dt { color: var(--muted); font-size: 0.85rem; font-weight: 800; }
dd { margin: 4px 0 0; font-weight: 800; }
.section-heading { max-width: 760px; margin-bottom: 36px; }
.section-heading p:not(.eyebrow) { color: var(--muted); font-size: 1.08rem; margin: 14px 0 0; }
.section-heading.compact { max-width: 680px; }
.product-grid { display: grid; grid-template-columns: repeat(2, minmax(0, 1fr)); gap: 24px; }
.product-card {
  display: grid;
  grid-template-columns: auto 1fr;
  gap: 20px;
  min-height: 100%;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: #fff;
  padding: 24px;
  box-shadow: 0 16px 50px rgba(29, 39, 48, 0.08);
}
.product-icon {
  display: grid;
  place-items: center;
  width: 58px;
  height: 58px;
  border-radius: var(--radius);
  color: #fff;
  font-weight: 900;
  background: var(--teal);
}
.product-icon.lumora { background: var(--coral); }
.product-title-row {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 10px;
  justify-content: space-between;
  margin-bottom: 12px;
}
.status {
  display: inline-flex;
  align-items: center;
  min-height: 28px;
  border-radius: 999px;
  padding: 4px 10px;
  background: var(--soft);
  color: var(--teal-dark);
  font-size: 0.78rem;
  font-weight: 900;
}
.status.concept { background: #fff3dc; color: #76510a; }
.product-card p { color: var(--muted); margin: 0 0 16px; }
.feature-list { padding-left: 18px; margin: 0 0 16px; color: var(--ink); }
.feature-list li { margin: 7px 0; }
.audience { font-size: 0.95rem; }
.approach-band { background: var(--teal-dark); color: #fff; }
.approach-band .eyebrow { color: var(--mint); }
.approach-band .section-heading p { color: rgba(255,255,255,0.78); }
.values-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 16px;
}
.values-grid article {
  border: 1px solid rgba(255, 255, 255, 0.18);
  border-radius: var(--radius);
  padding: 20px;
  background: rgba(255, 255, 255, 0.07);
}
.values-grid p { margin: 10px 0 0; color: rgba(255, 255, 255, 0.78); }
.contact-section { background: #fff; }
.contact-grid {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(280px, 420px);
  gap: 40px;
  align-items: start;
}
.contact-grid p { max-width: 650px; color: var(--muted); font-size: 1.08rem; }
.contact-card {
  display: grid;
  gap: 8px;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: var(--paper);
  padding: 24px;
  font-style: normal;
  font-weight: 700;
}
.site-footer {
  background: var(--ink);
  color: rgba(255, 255, 255, 0.78);
  padding: 28px 0;
}
.footer-grid {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 20px;
}
.footer-grid p { margin: 0; }
.footer-links { display: flex; flex-wrap: wrap; gap: 14px; }
.footer-links a { color: #fff; font-weight: 700; text-decoration: none; }
.footer-links a:hover { text-decoration: underline; }
.legal-page { background: #fff; }
.legal-content {
  max-width: 860px;
  padding-top: 72px;
  padding-bottom: 88px;
}
.legal-content h1 { font-size: clamp(2.3rem, 5vw, 4rem); }
.legal-content h2 { font-size: 1.45rem; margin-top: 34px; }
.legal-content p { color: var(--muted); }
.effective-date { font-weight: 800; color: var(--ink) !important; }

@media (max-width: 900px) {
  .section-pad { padding: 68px 0; }
  .hero-grid, .two-column, .contact-grid { grid-template-columns: 1fr; }
  .hero-grid { gap: 42px; }
  .hero-visual { min-height: 360px; }
  .device-panel { min-height: 350px; }
  .product-grid, .values-grid { grid-template-columns: 1fr; }
  .company-facts { grid-template-columns: 1fr; }
}

@media (max-width: 760px) {
  .container, .nav { width: min(100% - 28px, var(--max)); }
  .nav-toggle { display: block; }
  .nav-links {
    position: fixed;
    inset: 76px 14px auto 14px;
    display: none;
    flex-direction: column;
    align-items: stretch;
    gap: 6px;
    padding: 14px;
    border: 1px solid var(--line);
    border-radius: var(--radius);
    background: #fff;
    box-shadow: var(--shadow);
  }
  body.nav-open .nav-links { display: flex; }
  .nav-links a { padding: 13px 12px; }
  .hero { padding-top: 12px; }
  h1 { font-size: clamp(2.35rem, 13vw, 3.8rem); }
  .hero-actions { align-items: stretch; flex-direction: column; }
  .button { width: 100%; }
  .product-card { grid-template-columns: 1fr; }
  .footer-grid { align-items: flex-start; flex-direction: column; }
  .learning-card { min-width: 160px; }
  .card-one { left: 18px; }
  .card-two { right: 18px; }
  .card-three { left: 34px; }
}

@media (max-width: 430px) {
  .section-pad { padding: 56px 0; }
  .device-panel { padding: 24px 18px; }
  .hero-visual { min-height: 330px; }
  .device-panel { min-height: 320px; }
  .learning-card { padding: 12px; min-width: 142px; }
  .mini-icon { width: 38px; height: 38px; }
  .card-two { top: 192px; }
  .card-three { bottom: 30px; left: 18px; }
}

@media (prefers-reduced-motion: reduce) {
  *, *::before, *::after {
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
    scroll-behavior: auto !important;
    transition-duration: 0.01ms !important;
  }
}

.not-found-page {
  min-height: 62vh;
  display: grid;
  align-items: center;
  background: linear-gradient(135deg, #fffdf8 0%, #eef7f4 100%);
}
.not-found-content {
  max-width: 760px;
  padding-top: 84px;
  padding-bottom: 84px;
}
.not-found-content p:not(.eyebrow) {
  color: var(--muted);
  font-size: 1.12rem;
  margin: 20px 0 0;
}
@media (max-width: 760px) {
  .static-links {
    position: static;
    display: flex;
    flex-direction: row;
    box-shadow: none;
    border: 0;
    padding: 0;
    background: transparent;
  }
  .static-links a:not(.nav-contact) { display: none; }
}


/* Dark GitHub-inspired landing treatment */
:root {
  --ink: #f0f6fc;
  --muted: #8b949e;
  --paper: #0d1117;
  --surface: #161b22;
  --soft: #21262d;
  --teal: #2f81f7;
  --teal-dark: #58a6ff;
  --coral: #f778ba;
  --gold: #d29922;
  --mint: #3fb950;
  --line: #30363d;
  --shadow: 0 32px 90px rgba(1, 4, 9, 0.48);
}

body {
  color: var(--ink);
  background:
    radial-gradient(circle at 50% -10%, rgba(47, 129, 247, 0.22), transparent 34%),
    linear-gradient(180deg, #0d1117 0%, #0d1117 48%, #010409 100%);
}

a { color: #58a6ff; }
a:hover { color: #79c0ff; }

.site-header {
  background: rgba(13, 17, 23, 0.88);
  border-bottom: 1px solid rgba(48, 54, 61, 0.82);
}

.brand,
.nav-links a { color: #f0f6fc; }

.brand-mark {
  color: #0d1117;
  background: linear-gradient(135deg, #f0f6fc, #8b949e);
}

.nav-links a:hover {
  background: #21262d;
  color: #f0f6fc;
}

.nav-links .nav-contact {
  background: transparent;
  color: #f0f6fc;
  border: 1px solid #8b949e;
}

.nav-links .nav-contact:hover {
  background: #238636;
  border-color: #3fb950;
  color: #fff;
}

.nav-toggle {
  background: #161b22;
  border-color: #30363d;
}

.nav-toggle span:not(.sr-only) { background: #f0f6fc; }

.hero {
  min-height: calc(100vh - 76px);
  display: grid;
  align-items: center;
  background:
    radial-gradient(circle at 18% 25%, rgba(63, 185, 80, 0.16), transparent 22%),
    radial-gradient(circle at 78% 20%, rgba(247, 120, 186, 0.14), transparent 24%),
    radial-gradient(circle at 50% 0%, rgba(47, 129, 247, 0.26), transparent 35%),
    #0d1117;
  border-bottom: 1px solid #30363d;
}

.hero::before {
  content: "";
  position: absolute;
  inset: 0;
  pointer-events: none;
  background-image:
    linear-gradient(rgba(139, 148, 158, 0.08) 1px, transparent 1px),
    linear-gradient(90deg, rgba(139, 148, 158, 0.08) 1px, transparent 1px);
  background-size: 64px 64px;
  mask-image: linear-gradient(to bottom, rgba(0,0,0,0.95), transparent 78%);
}

.hero-shell {
  position: relative;
  z-index: 1;
  display: grid;
  gap: 54px;
  padding-top: 36px;
}

.hero-copy {
  max-width: 980px;
  margin: 0 auto;
  text-align: center;
}

.hero .eyebrow {
  display: inline-flex;
  align-items: center;
  min-height: 32px;
  margin-bottom: 18px;
  padding: 5px 12px;
  border: 1px solid rgba(139, 148, 158, 0.34);
  border-radius: 999px;
  color: #7ee787;
  background: rgba(22, 27, 34, 0.7);
}

.hero h1 {
  max-width: 1040px;
  margin: 0 auto;
  font-size: clamp(3.1rem, 8vw, 6.85rem);
  line-height: 0.96;
  color: #f0f6fc;
}

.hero-text {
  max-width: 780px;
  margin: 28px auto 0;
  color: #c9d1d9;
  font-size: clamp(1.12rem, 2.2vw, 1.45rem);
}

.hero-actions {
  justify-content: center;
  gap: 12px;
  margin-top: 34px;
}

.button {
  min-height: 54px;
  border-radius: 999px;
  padding: 13px 22px;
  font-weight: 800;
}

.button.primary {
  background: #238636;
  color: #fff;
  box-shadow: 0 0 0 1px rgba(63, 185, 80, 0.45), 0 18px 42px rgba(35, 134, 54, 0.28);
}

.button.primary:hover { background: #2ea043; }

.button.secondary {
  background: rgba(22, 27, 34, 0.72);
  color: #f0f6fc;
  border-color: #8b949e;
}

.button.secondary:hover {
  border-color: #f0f6fc;
  color: #fff;
}

.hero-showcase {
  width: min(100%, 1040px);
  margin: 0 auto;
  overflow: hidden;
  border: 1px solid rgba(139, 148, 158, 0.32);
  border-radius: 14px;
  background: rgba(13, 17, 23, 0.72);
  box-shadow: var(--shadow), 0 0 0 1px rgba(240, 246, 252, 0.04) inset;
  backdrop-filter: blur(18px);
}

.showcase-topbar {
  display: flex;
  align-items: center;
  gap: 8px;
  min-height: 48px;
  padding: 0 16px;
  border-bottom: 1px solid #30363d;
  background: #161b22;
}

.showcase-topbar span {
  width: 12px;
  height: 12px;
  border-radius: 50%;
  background: #f85149;
}

.showcase-topbar span:nth-child(2) { background: #d29922; }
.showcase-topbar span:nth-child(3) { background: #3fb950; }
.showcase-topbar strong {
  margin-left: 10px;
  color: #8b949e;
  font-size: 0.86rem;
}

.showcase-grid {
  display: grid;
  grid-template-columns: minmax(0, 1.14fr) minmax(300px, 0.86fr);
  gap: 16px;
  padding: 16px;
}

.showcase-panel {
  border: 1px solid #30363d;
  border-radius: 8px;
  background: linear-gradient(180deg, rgba(22, 27, 34, 0.96), rgba(13, 17, 23, 0.96));
  padding: 22px;
}

.panel-header {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  gap: 18px;
}

.panel-kicker {
  margin-bottom: 12px;
  color: #7ee787;
  font-size: 0.78rem;
  font-weight: 800;
  text-transform: uppercase;
}

.panel-badge {
  display: inline-flex;
  align-items: center;
  min-height: 30px;
  white-space: nowrap;
  border: 1px solid rgba(63, 185, 80, 0.34);
  border-radius: 999px;
  padding: 4px 11px;
  color: #7ee787;
  background: rgba(63, 185, 80, 0.12);
  font-size: 0.78rem;
  font-weight: 900;
}

.product-preview h2 {
  color: #f0f6fc;
  font-size: clamp(2.5rem, 5vw, 4.4rem);
}

.product-preview p,
.status-preview p,
.mini-product p {
  color: #8b949e;
  margin: 14px 0 0;
}

.primary-preview {
  position: relative;
  min-height: 430px;
  overflow: hidden;
}

.primary-preview::after {
  content: "";
  position: absolute;
  right: -70px;
  bottom: -90px;
  width: 250px;
  height: 250px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(47, 129, 247, 0.28), transparent 64%);
}

.learning-path {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 10px;
  margin-top: 30px;
}

.learning-path span {
  min-height: 78px;
  display: grid;
  place-items: center;
  border: 1px solid rgba(88, 166, 255, 0.3);
  border-radius: 8px;
  color: #f0f6fc;
  background:
    linear-gradient(180deg, rgba(88, 166, 255, 0.18), rgba(63, 185, 80, 0.08)),
    #0d1117;
  font-size: 1.05rem;
  font-weight: 900;
}

.learning-path span:nth-child(2) {
  border-color: rgba(63, 185, 80, 0.34);
  background:
    linear-gradient(180deg, rgba(63, 185, 80, 0.18), rgba(88, 166, 255, 0.08)),
    #0d1117;
}

.learning-path span:nth-child(3) {
  border-color: rgba(247, 120, 186, 0.34);
  background:
    linear-gradient(180deg, rgba(247, 120, 186, 0.18), rgba(88, 166, 255, 0.08)),
    #0d1117;
}

.topic-grid {
  position: relative;
  z-index: 1;
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-top: 24px;
}

.topic-grid span,
.principle-list span {
  display: inline-flex;
  align-items: center;
  min-height: 32px;
  border: 1px solid #30363d;
  border-radius: 999px;
  padding: 5px 11px;
  color: #c9d1d9;
  background: #0d1117;
  font-size: 0.9rem;
  font-weight: 800;
}

.showcase-stack {
  display: grid;
  gap: 16px;
}

.mini-product h3 {
  color: #f0f6fc;
  font-size: 2rem;
}

.principle-list {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
}

.refined-status {
  grid-column: 1 / -1;
  display: flex;
  gap: 14px;
  align-items: flex-start;
  background:
    linear-gradient(90deg, rgba(63, 185, 80, 0.11), transparent 42%),
    #0d1117;
}

.status-dot {
  flex: 0 0 auto;
  width: 14px;
  height: 14px;
  margin-top: 6px;
  border-radius: 50%;
  background: #3fb950;
  box-shadow: 0 0 0 7px rgba(63, 185, 80, 0.14);
}

.about-band,
.contact-section,
.legal-page {
  background: #0d1117;
}

#products {
  background: #010409;
}

.approach-band {
  background: #161b22;
}

.content-stack p,
.section-heading p:not(.eyebrow),
.product-card p,
.contact-grid p,
.legal-content p,
.not-found-content p:not(.eyebrow) {
  color: #8b949e;
}

.company-facts div,
.product-card,
.contact-card,
.values-grid article {
  border-color: #30363d;
  background: #161b22;
  box-shadow: none;
}

.company-facts div { background: #0d1117; }

.product-icon,
.product-icon.lumora {
  color: #0d1117;
  background: #58a6ff;
}

.product-icon.lumora { background: #f778ba; }

.status {
  background: rgba(63, 185, 80, 0.14);
  color: #7ee787;
}

.status.concept {
  background: rgba(210, 153, 34, 0.16);
  color: #e3b341;
}

.site-footer {
  background: #010409;
  border-top: 1px solid #30363d;
}

.not-found-page {
  background: radial-gradient(circle at 50% 0%, rgba(47, 129, 247, 0.18), transparent 38%), #0d1117;
}

@media (max-width: 900px) {
  .showcase-grid { grid-template-columns: 1fr; }
  .status-preview { grid-column: auto; }
}

@media (max-width: 760px) {
  .nav-links {
    background: #161b22;
    border-color: #30363d;
  }
  .hero { min-height: auto; }
  .hero-shell { padding-top: 8px; }
  .hero h1 { font-size: clamp(3rem, 15vw, 4.7rem); }
  .hero-actions { align-items: center; }
  .button { width: min(100%, 340px); }
}
