:root {
  --canvas-width: 1440px;
  --header-height: 73px;
  --footer-height: 148px;
  --ink: #171b2a;
  --body: #343746;
  --muted: #666979;
  --line: #e5e7eb;
  --warm: #fff7ed;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  background: #f5f5f5;
  color: var(--body);
  font-family: "Nunito Sans", sans-serif;
  margin: 0;
  overflow-x: hidden;
}

a {
  color: inherit;
}

.scale-shell {
  margin: var(--scaled-header-height, 73px) auto var(--scaled-footer-height, 148px);
  overflow: visible;
  position: relative;
}

.site-page {
  background: #fff;
  position: relative;
  transform-origin: top left;
  width: var(--canvas-width);
}

.fixed-region {
  background: #fff;
  left: 0;
  overflow: hidden;
  position: fixed;
  width: 100%;
  z-index: 20;
}

.fixed-region--header {
  height: var(--scaled-header-height, 73px);
  top: 0;
}

.fixed-region--footer {
  border-top: 1px solid var(--line);
  bottom: 0;
  height: var(--scaled-footer-height, 148px);
}

.fixed-canvas {
  left: 0;
  position: absolute;
  transform-origin: top left;
  width: var(--canvas-width);
}

.fixed-canvas--header {
  align-items: center;
  background: linear-gradient(90deg, #ff5e62 0%, #00f2fe 35%, #f2d933 58%, #9b51e0 100%);
  border-bottom: 1px solid var(--line);
  display: flex;
  height: var(--header-height);
  padding: 18px 80px;
}

.brand-tagline {
  background: rgba(255, 255, 255, 0.88);
  border: 1px solid rgba(23, 27, 42, 0.12);
  border-radius: 20px;
  color: #292b35;
  font-family: Consolas, "Courier New", monospace;
  font-size: 15px;
  font-weight: 700;
  line-height: 1;
  margin: 0;
  padding: 9px 16px;
}

.page-section {
  padding-left: 80px;
  padding-right: 80px;
}

.page-section h1,
.page-section h2 {
  color: var(--ink);
  font-size: 44px;
  font-weight: 900;
  letter-spacing: 0;
  line-height: 1.08;
  margin: 0;
}

.products-section {
  background: linear-gradient(90deg, #fff 0%, var(--warm) 100%);
  padding-top: 72px;
}

.products-grid {
  display: grid;
  gap: 16px;
  grid-template-columns: repeat(5, 1fr);
  margin-top: 32px;
}

.product-card {
  align-items: stretch;
  border: 1px solid transparent;
  border-radius: 24px;
  box-shadow: 0 10px 22px rgba(31, 35, 54, 0.08);
  display: flex;
  flex-direction: column;
  height: 190px;
  padding: 14px;
  text-decoration: none;
  transition: box-shadow 180ms ease, transform 180ms ease;
}

.product-card:hover {
  box-shadow: 0 15px 28px rgba(31, 35, 54, 0.14);
  transform: translateY(-5px);
}

.product-card:focus-visible,
.footer-nav a:focus-visible,
.contact-card:focus-visible {
  outline: 4px solid rgba(0, 141, 213, 0.45);
  outline-offset: 4px;
}

.product-card--rose { background: #fff0f0; border-color: #f8dada; }
.product-card--cyan { background: #edfcfc; border-color: #d3f4f4; }
.product-card--yellow { background: #fffbea; border-color: #f5edcf; }
.product-card--violet { background: #f8effb; border-color: #ead8f1; }
.product-card--mint { background: #effcf3; border-color: #d7f1df; }

.product-card__media {
  align-items: center;
  border: 1px solid rgba(23, 27, 42, 0.08);
  border-radius: 16px;
  display: flex;
  flex: 0 0 100px;
  justify-content: center;
}

.product-card__media img {
  border-radius: 16px;
  height: 84px;
  object-fit: cover;
  width: 84px;
}

.product-card__title {
  align-items: center;
  color: var(--ink);
  display: flex;
  flex: 1;
  font-size: 17px;
  font-weight: 900;
  justify-content: center;
  line-height: 1.15;
  text-align: center;
}

.about-section {
  background: linear-gradient(90deg, #fff 0%, var(--warm) 100%);
  padding-top: 88px;
}

.about-grid {
  align-items: center;
  /* display: grid;
  gap: 80px;
  grid-template-columns: 1.45fr 0.9fr; */
  margin-top: 40px;
}

.about-grid p {
  font-size: 17px;
  line-height: 1.56;
  margin: 0;
}

.about-grid strong,
.privacy-copy strong {
  color: var(--ink);
  font-weight: 900;
}

.about-grid aside {
  background: #fff0ec;
  border: 1px solid #f8d8d1;
  border-radius: 24px;
  box-shadow: 0 8px 20px rgba(64, 41, 36, 0.05);
  color: #292d3b;
  font-size: 16px;
  line-height: 1.5;
  padding: 40px;
}

.privacy-section {
  background: #fff;
  padding-top: 72px;
}

.section-accent {
  background: linear-gradient(90deg, #ff5e62, #00f2fe, #f2d933, #9b51e0);
  height: 8px;
  margin-bottom: 40px;
  width: 100%;
}

.last-updated {
  color: #ff5e62;
  font-family: Consolas, "Courier New", monospace;
  font-size: 14px;
  font-weight: 700;
  margin: 14px 0 36px;
}

.privacy-copy {
  border-top: 1px solid var(--line);
  font-size: 13px;
  line-height: 1.45;
  padding-top: 32px;
}

.privacy-copy p {
  margin: 0 0 8px;
}

.privacy-copy h3 {
  color: var(--ink);
  font-size: 14px;
  font-weight: 900;
  margin: 25px 0 9px;
}

.privacy-copy ul {
  margin: 3px 0 8px;
  padding-left: 19px;
}

.privacy-copy li {
  margin: 1px 0;
}

.app-list {
  list-style: none;
  padding-left: 0 !important;
}

.app-list li::before {
  content: "- ";
}

.contact-list {
  list-style: none;
  padding-left: 0 !important;
}

.privacy-copy a {
  text-underline-offset: 2px;
}

.fixed-canvas--footer {
  background: #fff;
  height: var(--footer-height);
  padding: 24px 80px 20px;
}

.contact-section {
  background: #fff;
  height: 188px;
  padding-bottom: 48px;
  padding-top: 48px;
}

.contact-grid {
  display: grid;
  gap: 24px;
  grid-template-columns: 1fr 1fr;
}

.contact-card {
  align-items: center;
  border: 1px solid transparent;
  border-radius: 20px;
  display: flex;
  gap: 18px;
  height: 92px;
  padding: 20px 28px;
  text-decoration: none;
}

.contact-card--support {
  background: #fff1f1;
  border-color: #f8dddd;
}

.contact-card--business {
  background: #edfcfc;
  border-color: #d3f4f4;
}

.contact-card__icon {
  align-items: center;
  background: rgba(255, 255, 255, 0.75);
  border-radius: 12px;
  color: #ff5e62;
  display: flex;
  flex: 0 0 48px;
  font-size: 15px;
  font-weight: 900;
  height: 48px;
  justify-content: center;
}

.contact-card--business .contact-card__icon {
  color: #00b8c2;
}

.contact-card strong,
.contact-card small {
  display: block;
}

.contact-card strong {
  color: var(--ink);
  font-size: 15px;
  font-weight: 900;
  margin-bottom: 3px;
}

.contact-card small {
  font-family: Consolas, "Courier New", monospace;
  font-size: 13px;
}

.footer-nav {
  display: flex;
  gap: 44px;
  justify-content: center;
  margin: 0 0 20px;
}

.footer-nav a {
  color: var(--ink);
  font-size: 14px;
  font-weight: 800;
  text-decoration: none;
}

.footer-nav a:hover {
  text-decoration: underline;
  text-underline-offset: 4px;
}

.copyright {
  border-top: 1px solid var(--line);
  color: var(--muted);
  font-size: 13px;
  margin: 0;
  padding-top: 19px;
  text-align: center;
}

@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
  .product-card { transition: none; }
}
