:root {
  --bg: #f6fbff;
  --surface: #ffffff;
  --surface-soft: #f7fbff;
  --surface-alt: #edf6ff;
  --ink: #102440;
  --ink-soft: #556885;
  --line: rgba(2, 33, 121, 0.12);
  --line-strong: rgba(2, 33, 121, 0.22);
  --brand-navy: #022179;
  --brand-blue: #0a4db3;
  --brand-cyan: #00c0ff;
  --brand-sky: #addcff;
  --brand-ice: #eaf6ff;
  --brand-lime: #80cc28;
  --shadow-soft: 0 18px 48px rgba(11, 46, 116, 0.1);
  --shadow-strong: 0 28px 72px rgba(7, 36, 100, 0.16);
  --radius-xl: 22px;
  --radius-lg: 18px;
  --radius-md: 14px;
  --radius-sm: 10px;
  --content-width: 1200px;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  color: var(--ink);
  background:
    radial-gradient(circle at top right, rgba(0, 192, 255, 0.12), transparent 24%),
    radial-gradient(circle at top left, rgba(173, 220, 255, 0.28), transparent 30%),
    linear-gradient(180deg, #ffffff 0%, #f7fbff 38%, #f2f8ff 100%);
  font-family: "Manrope", "Avenir Next", "Segoe UI", sans-serif;
  line-height: 1.6;
  overflow-x: hidden;
}

body::before {
  content: "";
  position: fixed;
  inset: 0;
  pointer-events: none;
  background:
    linear-gradient(rgba(2, 33, 121, 0.03) 1px, transparent 1px),
    linear-gradient(90deg, rgba(2, 33, 121, 0.03) 1px, transparent 1px);
  background-size: 44px 44px;
  mask-image: linear-gradient(180deg, rgba(0, 0, 0, 0.45), transparent 88%);
}

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

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

.site-shell {
  position: relative;
  width: min(calc(100% - 2rem), var(--content-width));
  margin: 0 auto;
  padding-bottom: 4rem;
}

.site-shell::before {
  content: "";
  position: absolute;
  top: 8rem;
  right: -8rem;
  width: 33rem;
  height: 33rem;
  border-radius: 50%;
  background:
    radial-gradient(circle at center, rgba(0, 192, 255, 0.16), transparent 44%),
    radial-gradient(circle at center, transparent 55%, rgba(2, 33, 121, 0.11) 55.5%, transparent 58%),
    radial-gradient(circle at center, transparent 69%, rgba(2, 33, 121, 0.07) 69.5%, transparent 72%);
  pointer-events: none;
  z-index: 0;
}

.site-shell::after {
  content: "";
  position: absolute;
  left: -7rem;
  top: 26rem;
  width: 22rem;
  height: 24rem;
  border-radius: 32px;
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.18), rgba(255, 255, 255, 0)),
    repeating-linear-gradient(
      180deg,
      rgba(2, 33, 121, 0.08) 0,
      rgba(2, 33, 121, 0.08) 1px,
      transparent 1px,
      transparent 18px
    ),
    linear-gradient(135deg, rgba(173, 220, 255, 0.22), rgba(0, 192, 255, 0.06));
  border: 1px solid rgba(2, 33, 121, 0.1);
  transform: rotate(10deg);
  pointer-events: none;
  z-index: 0;
}

.topbar {
  position: sticky;
  top: 1rem;
  z-index: 20;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  margin: 1rem auto 0;
  padding: 0.95rem 1.1rem;
  border: 1px solid rgba(173, 220, 255, 0.7);
  border-radius: 14px;
  background: rgba(255, 255, 255, 0.92);
  backdrop-filter: blur(16px);
  box-shadow: 0 12px 30px rgba(8, 45, 111, 0.08);
}

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

.brand-logo {
  width: 3rem;
  height: 3rem;
  flex: 0 0 auto;
  border-radius: 14px;
  box-shadow: 0 10px 24px rgba(2, 33, 121, 0.14);
}

.brand-copy {
  display: flex;
  flex-direction: column;
  min-width: 0;
}

.brand-copy strong {
  font-size: 0.98rem;
  font-weight: 800;
  letter-spacing: -0.01em;
  white-space: nowrap;
}

.brand-copy small {
  color: var(--ink-soft);
  font-size: 0.78rem;
  white-space: nowrap;
}

.site-nav {
  display: flex;
  align-items: center;
  gap: 1rem;
  flex-wrap: wrap;
}

.site-nav a {
  color: var(--ink-soft);
  font-size: 0.95rem;
  font-weight: 600;
}

.site-nav a:hover,
.site-nav a:focus-visible {
  color: var(--brand-navy);
}

.nav-cta {
  padding: 0.8rem 1rem;
  border-radius: 10px;
  background: linear-gradient(135deg, var(--brand-navy), var(--brand-blue));
  color: #fff !important;
  box-shadow: 0 10px 24px rgba(2, 33, 121, 0.2);
}

.menu-toggle {
  display: none;
  border: 0;
  border-radius: 10px;
  padding: 0.8rem 1rem;
  background: linear-gradient(135deg, var(--brand-navy), var(--brand-blue));
  color: #fff;
  font: inherit;
  font-weight: 700;
}

.hero,
.content-section,
.trust-strip,
.site-footer,
.legal-layout {
  position: relative;
  z-index: 1;
}

.hero {
  display: grid;
  grid-template-columns: minmax(0, 1.08fr) minmax(320px, 0.92fr);
  gap: 3rem;
  padding: 4.5rem 0 3rem;
  align-items: center;
}

.hero-copy {
  position: relative;
}

.hero-copy::before {
  content: "";
  position: absolute;
  top: -1rem;
  left: 0;
  width: 6rem;
  height: 0.3rem;
  border-radius: 999px;
  background: linear-gradient(90deg, var(--brand-cyan), var(--brand-lime));
}

.eyebrow {
  margin: 0 0 1rem;
  color: var(--brand-blue);
  font-size: 0.78rem;
  font-weight: 800;
  letter-spacing: 0.14em;
  text-transform: uppercase;
}

.hero h1,
.section-heading h2,
.legal-hero h1 {
  margin: 0;
  font-family: "Manrope", "Avenir Next", "Segoe UI", sans-serif;
  letter-spacing: -0.04em;
  line-height: 1;
}

.hero h1 {
  max-width: 13ch;
  font-size: clamp(1.28rem, 2.15vw, 2rem);
  font-weight: 800;
}

.hero-text,
.section-heading p,
.legal-hero p,
.legal-card p,
.feature-card p,
.stack-card p,
.device-card p,
.timeline-card p,
.privacy-card p,
.contact-card p,
.site-footer p,
.trust-strip p {
  color: var(--ink-soft);
}

.hero-text {
  max-width: 58ch;
  margin: 1.25rem 0 0;
  font-size: 1.02rem;
}

.hero-actions,
.policy-actions,
.footer-links,
.contact-links {
  display: flex;
  flex-wrap: wrap;
  gap: 0.9rem;
}

.hero-actions {
  margin-top: 1.8rem;
}

.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 3.1rem;
  padding: 0.85rem 1.25rem;
  border-radius: 10px;
  font-weight: 800;
  transition: transform 180ms ease, box-shadow 180ms ease, background 180ms ease;
}

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

.button-primary {
  background: linear-gradient(135deg, var(--brand-navy) 0%, var(--brand-blue) 58%, var(--brand-cyan) 100%);
  color: #fff;
  box-shadow: 0 16px 30px rgba(2, 33, 121, 0.18);
}

.button-secondary {
  border: 1px solid var(--line-strong);
  background: #fff;
  color: var(--brand-navy);
}

.hero-metrics {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 1rem;
  list-style: none;
  padding: 0;
  margin: 2rem 0 0;
}

.hero-metrics li,
.panel-card,
.stack-card,
.feature-card,
.device-card,
.timeline-card,
.privacy-card,
.contact-card,
.legal-card,
.trust-strip {
  border: 1px solid var(--line);
  background: rgba(255, 255, 255, 0.96);
  box-shadow: var(--shadow-soft);
}

.hero-metrics li {
  position: relative;
  overflow: hidden;
  padding: 1rem;
  border-radius: 16px;
}

.hero-metrics li::before {
  content: "";
  position: absolute;
  inset: 0 auto 0 0;
  width: 0.32rem;
  background: linear-gradient(180deg, var(--brand-cyan), var(--brand-lime));
}

.hero-metrics strong {
  display: block;
  margin-bottom: 0.3rem;
  color: var(--brand-navy);
}

.hero-metrics span {
  font-size: 0.9rem;
}

.hero-panel {
  position: relative;
  padding: 1rem;
  border-radius: 18px;
  background: linear-gradient(180deg, rgba(173, 220, 255, 0.2), rgba(255, 255, 255, 0.88));
  border: 1px solid rgba(173, 220, 255, 0.75);
  box-shadow: var(--shadow-strong);
}

.hero-panel::before {
  content: "";
  position: absolute;
  inset: 0;
  border-radius: inherit;
  background:
    linear-gradient(rgba(2, 33, 121, 0.04) 1px, transparent 1px),
    linear-gradient(90deg, rgba(2, 33, 121, 0.04) 1px, transparent 1px);
  background-size: 28px 28px;
  pointer-events: none;
}

.panel-card {
  padding: 1.75rem 1.6rem 1.45rem;
  border-radius: 16px;
}

.panel-card-primary {
  position: relative;
  overflow: hidden;
  background:
    linear-gradient(160deg, rgba(2, 33, 121, 0.98), rgba(10, 77, 179, 0.96) 62%, rgba(0, 192, 255, 0.88)),
    var(--brand-navy);
  color: #fff;
}

.panel-card-primary p {
  color: rgba(255, 255, 255, 0.84);
}

.panel-chip {
  display: inline-flex;
  padding: 0.4rem 0.72rem;
  border-radius: 10px;
  background: rgba(255, 255, 255, 0.14);
  color: rgba(255, 255, 255, 0.88);
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.panel-card h2 {
  margin: 1rem 0 0.75rem;
  font-size: clamp(1rem, 1.45vw, 1.3rem);
  font-weight: 800;
  line-height: 1.05;
}

.stack-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 1rem;
  margin-top: 1rem;
}

.stack-card {
  border-radius: 14px;
  padding: 1.1rem;
  background: #fff;
}

.stack-number,
.timeline-step {
  display: inline-grid;
  place-items: center;
  width: 2.2rem;
  height: 2.2rem;
  border-radius: 999px;
  background: linear-gradient(135deg, var(--brand-ice), #ffffff);
  border: 1px solid rgba(2, 33, 121, 0.1);
  color: var(--brand-navy);
  font-weight: 800;
}

.stack-card h3,
.feature-card h3,
.device-card h3,
.timeline-card h3,
.privacy-card h3,
.legal-card h2,
.contact-card h2 {
  margin: 0.9rem 0 0.5rem;
  font-size: 1.04rem;
  font-weight: 800;
  letter-spacing: -0.02em;
}

.trust-strip {
  display: grid;
  gap: 1rem;
  padding: 1.4rem 1.5rem;
  border-radius: 16px;
  background: linear-gradient(135deg, rgba(234, 246, 255, 0.94), rgba(255, 255, 255, 0.94));
}

.trust-strip p {
  margin: 0;
  max-width: 52rem;
}

.trust-items {
  display: flex;
  flex-wrap: wrap;
  gap: 0.8rem;
}

.trust-items span {
  padding: 0.72rem 0.95rem;
  border-radius: 10px;
  background: #fff;
  border: 1px solid rgba(173, 220, 255, 0.8);
  color: var(--brand-navy);
  font-weight: 700;
  font-size: 0.9rem;
  box-shadow: 0 10px 20px rgba(9, 49, 123, 0.06);
}

.content-section {
  padding: 5rem 0 0;
}

.section-heading {
  max-width: 52rem;
}

.section-heading::after {
  content: "";
  display: block;
  width: 5.2rem;
  height: 0.32rem;
  margin-top: 1.25rem;
  border-radius: 999px;
  background: linear-gradient(90deg, var(--brand-cyan), var(--brand-lime));
}

.section-heading h2 {
  font-size: clamp(1.18rem, 1.65vw, 1.55rem);
  font-weight: 800;
}

.section-heading p {
  margin-top: 1rem;
  font-size: 1rem;
}

.feature-grid,
.privacy-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 1.25rem;
  margin-top: 2rem;
}

.feature-card,
.privacy-card {
  padding: 1.5rem;
  border-radius: 14px;
}

.feature-card {
  background: linear-gradient(180deg, #ffffff, #fbfdff);
}

.device-layout {
  display: grid;
  grid-template-columns: minmax(340px, 0.94fr) minmax(0, 1.06fr);
  gap: 1.6rem;
  margin-top: 2rem;
  align-items: center;
}

.preview-layout {
  display: grid;
  grid-template-columns: minmax(0, 1.25fr) minmax(280px, 0.75fr);
  gap: 1.4rem;
  margin-top: 2rem;
  align-items: stretch;
}

.preview-gallery {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 1.25rem;
}

.preview-graphic,
.preview-card {
  border: 1px solid var(--line);
  background: rgba(255, 255, 255, 0.96);
  box-shadow: var(--shadow-soft);
}

.preview-graphic {
  position: relative;
  overflow: hidden;
  padding: 0;
  border-radius: 18px;
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.98), rgba(244, 250, 255, 0.98));
}

.preview-art {
  width: 100%;
  display: block;
  aspect-ratio: 4 / 3;
  height: 100%;
  object-fit: cover;
  object-position: center;
  border-radius: inherit;
}

.preview-card {
  display: grid;
  align-content: center;
  gap: 1rem;
  padding: 2rem;
  border-radius: 18px;
  background:
    linear-gradient(145deg, rgba(2, 33, 121, 0.98), rgba(10, 77, 179, 0.95) 58%, rgba(0, 192, 255, 0.86));
  color: #fff;
}

.preview-card .eyebrow,
.preview-card h3,
.preview-card p {
  color: #fff;
}

.preview-card .eyebrow {
  margin-bottom: 0;
}

.preview-card h3 {
  margin: 0;
  font-size: clamp(1.4rem, 2vw, 1.8rem);
  font-weight: 800;
  letter-spacing: -0.03em;
}

.preview-card p {
  margin: 0;
  opacity: 0.86;
}

.device-orbit {
  position: relative;
  min-height: 28rem;
  border-radius: 18px;
  border: 1px solid rgba(173, 220, 255, 0.85);
  background:
    radial-gradient(circle at center, rgba(173, 220, 255, 0.38) 0, rgba(173, 220, 255, 0.08) 36%, transparent 64%),
    linear-gradient(180deg, #ffffff, #f3f9ff);
  overflow: hidden;
}

.device-orbit::before {
  content: "";
  position: absolute;
  inset: 1.3rem;
  border-radius: 18px;
  border: 1px solid rgba(2, 33, 121, 0.08);
  background:
    linear-gradient(rgba(2, 33, 121, 0.04) 1px, transparent 1px),
    linear-gradient(90deg, rgba(2, 33, 121, 0.04) 1px, transparent 1px);
  background-size: 24px 24px;
}

.orbit-core,
.orbit-node {
  position: absolute;
  display: grid;
  place-items: center;
  text-align: center;
  box-shadow: 0 16px 34px rgba(9, 49, 123, 0.12);
}

.orbit-core {
  inset: 50%;
  width: 12rem;
  height: 9rem;
  transform: translate(-50%, -50%);
  border-radius: 14px;
  background: linear-gradient(135deg, var(--brand-navy) 0%, var(--brand-blue) 52%, var(--brand-cyan) 100%);
  color: #fff;
}

.orbit-core span {
  font-size: 0.78rem;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  opacity: 0.8;
}

.orbit-core strong {
  max-width: 7rem;
  font-size: 1.2rem;
  font-weight: 800;
  line-height: 1.06;
  letter-spacing: -0.03em;
}

.orbit-node {
  width: 9rem;
  height: 4.8rem;
  border-radius: 14px;
  background: #fff;
  border: 1px solid rgba(173, 220, 255, 0.8);
  color: var(--brand-navy);
  padding: 1rem;
  font-weight: 800;
}

.orbit-node-1 {
  top: 1.6rem;
  left: 50%;
  transform: translateX(-50%);
}

.orbit-node-2 {
  top: 50%;
  right: 1.3rem;
  transform: translateY(-50%);
}

.orbit-node-3 {
  bottom: 1.6rem;
  left: 50%;
  transform: translateX(-50%);
}

.orbit-node-4 {
  top: 50%;
  left: 1.3rem;
  transform: translateY(-50%);
}

.device-list,
.timeline {
  display: grid;
  gap: 1rem;
}

.device-card,
.timeline-card {
  padding: 1.4rem;
  border-radius: 14px;
}

.timeline {
  grid-template-columns: repeat(4, minmax(0, 1fr));
  margin-top: 2rem;
}

.timeline-card {
  background: linear-gradient(180deg, #ffffff, #fbfdff);
}

.privacy-highlight {
  padding-bottom: 0.5rem;
}

.privacy-grid .privacy-card:first-child {
  border-top: 4px solid var(--brand-cyan);
}

.privacy-grid .privacy-card:nth-child(2) {
  border-top: 4px solid var(--brand-lime);
}

.privacy-grid .privacy-card:nth-child(3) {
  border-top: 4px solid var(--brand-blue);
}

.policy-actions {
  margin-top: 1.5rem;
}

.contact-section {
  padding-bottom: 1rem;
}

.contact-card {
  display: grid;
  grid-template-columns: minmax(0, 1.08fr) minmax(260px, 0.92fr);
  gap: 1.6rem;
  padding: 2rem;
  border-radius: 18px;
  background:
    linear-gradient(135deg, rgba(2, 33, 121, 0.98), rgba(10, 77, 179, 0.95) 60%, rgba(0, 192, 255, 0.86));
  color: #fff;
  box-shadow: var(--shadow-strong);
}

.contact-card .eyebrow,
.contact-card h2,
.contact-card p,
.contact-card .contact-link {
  color: #fff;
}

.contact-card p {
  opacity: 0.84;
}

.contact-links {
  align-content: start;
}

.contact-link {
  display: block;
  padding: 1rem 1.1rem;
  border-radius: 10px;
  background: rgba(255, 255, 255, 0.12);
  border: 1px solid rgba(255, 255, 255, 0.16);
  font-weight: 800;
}

.site-footer {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  flex-wrap: wrap;
  margin-top: 4rem;
  padding: 1.5rem 0 0;
  border-top: 1px solid rgba(2, 33, 121, 0.08);
}

.footer-links a {
  color: var(--ink-soft);
}

.footer-copy {
  width: 100%;
  margin: 0;
}

.inline-link {
  color: var(--brand-blue);
  font-weight: 700;
}

.inline-link:hover,
.inline-link:focus-visible {
  color: var(--brand-navy);
}

.legal-page,
.product-page {
  background:
    radial-gradient(circle at top right, rgba(0, 192, 255, 0.1), transparent 22%),
    linear-gradient(180deg, #ffffff 0%, #f7fbff 100%);
}

.legal-page .site-shell {
  width: min(calc(100% - 2rem), 1000px);
}

.legal-layout {
  display: grid;
  gap: 1.25rem;
  padding-top: 3.6rem;
}

.legal-hero {
  position: relative;
  overflow: hidden;
  padding: 2rem 2rem 1.6rem;
  border-radius: 18px;
  background: linear-gradient(135deg, rgba(234, 246, 255, 0.98), rgba(255, 255, 255, 0.98));
  border: 1px solid rgba(173, 220, 255, 0.78);
  box-shadow: var(--shadow-soft);
}

.legal-hero::after {
  content: "";
  position: absolute;
  top: -2rem;
  right: -1rem;
  width: 15rem;
  height: 15rem;
  border-radius: 50%;
  background:
    radial-gradient(circle at center, rgba(0, 192, 255, 0.18), transparent 44%),
    radial-gradient(circle at center, transparent 56%, rgba(2, 33, 121, 0.08) 56.5%, transparent 59%);
}

.legal-hero h1 {
  font-size: clamp(1.3rem, 2vw, 1.85rem);
  font-weight: 800;
}

.legal-card {
  padding: 1.6rem;
  border-radius: 14px;
  background: #fff;
}

.legal-card h2 {
  margin-top: 0;
}

.legal-list {
  margin: 0;
  padding-left: 1.2rem;
  color: var(--ink-soft);
}

.legal-list li + li {
  margin-top: 0.68rem;
}

.product-brand {
  display: inline-flex;
  align-items: center;
  gap: 0.9rem;
  margin: 0.4rem 0 1.05rem;
}

.product-logo {
  width: 3.5rem;
  height: 3.5rem;
  flex: 0 0 auto;
  border-radius: 50%;
  box-shadow: 0 10px 24px rgba(2, 33, 121, 0.14);
}

.product-brand-copy {
  display: flex;
  flex-direction: column;
}

.product-brand-copy span {
  color: var(--ink-soft);
  font-size: 0.74rem;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.product-brand-copy strong {
  font-size: 1.28rem;
  font-weight: 800;
  letter-spacing: -0.03em;
}

.reveal {
  opacity: 0;
  transform: translateY(18px);
  animation: rise 720ms ease forwards;
}

.hero .reveal:nth-child(2),
.feature-card:nth-child(2),
.privacy-card:nth-child(2),
.device-card:nth-child(2),
.timeline-card:nth-child(2) {
  animation-delay: 110ms;
}

.feature-card:nth-child(3),
.privacy-card:nth-child(3),
.device-card:nth-child(3),
.timeline-card:nth-child(3) {
  animation-delay: 180ms;
}

.feature-card:nth-child(4),
.device-card:nth-child(4),
.timeline-card:nth-child(4) {
  animation-delay: 250ms;
}

@keyframes rise {
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

@media (max-width: 980px) {
  .hero,
  .preview-layout,
  .device-layout,
  .contact-card,
  .timeline {
    grid-template-columns: 1fr;
  }

  .preview-gallery,
  .feature-grid,
  .privacy-grid,
  .hero-metrics,
  .stack-grid {
    grid-template-columns: 1fr;
  }

  .hero h1 {
    max-width: none;
  }

  .device-orbit {
    min-height: 24rem;
  }

  .site-shell::before,
  .site-shell::after {
    opacity: 0.45;
  }
}

@media (max-width: 780px) {
  .topbar {
    display: grid;
    grid-template-columns: 1fr auto;
    border-radius: 14px;
  }

  .menu-toggle {
    display: inline-flex;
    align-items: center;
    justify-content: center;
  }

  .site-nav {
    display: none;
    grid-column: 1 / -1;
    padding-top: 0.5rem;
    flex-direction: column;
    align-items: flex-start;
  }

  .site-nav.is-open,
  .site-nav-static {
    display: flex;
  }

  .brand-copy small {
    white-space: normal;
  }

  .hero {
    padding-top: 3.5rem;
  }
}

@media (max-width: 560px) {
  .site-shell {
    width: min(calc(100% - 1rem), var(--content-width));
  }

  .site-shell::before,
  .site-shell::after,
  .legal-hero::after {
    display: none;
  }

  .topbar {
    top: 0.5rem;
    padding: 0.9rem;
  }

  .brand-logo {
    width: 2.7rem;
    height: 2.7rem;
  }

  .hero h1 {
    font-size: clamp(1.16rem, 6.8vw, 1.7rem);
  }

  .orbit-node {
    width: 6.5rem;
    height: 4.8rem;
    font-size: 0.83rem;
  }

  .orbit-core {
    width: 8.8rem;
    height: 7.7rem;
  }

  .product-logo {
    width: 3rem;
    height: 3rem;
  }

  .legal-hero {
    padding: 1.5rem;
  }
}
