:root {
  --bg: #f7f4ee;
  --surface: #fffdf9;
  --text: #18243a;
  --muted: #687186;
  --border: #ddd7cc;
  --accent: #304c72;
  --accent-soft: #e7edf4;
  --shadow: 0 18px 50px rgba(31, 42, 61, 0.10);
  --max-width: 1040px;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  background: var(--bg);
  color: var(--text);
  font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, Helvetica,
    Arial, sans-serif;
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
}

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

.hero {
  width: 100%;
  background: #1b2940;
  border-bottom: 1px solid rgba(24, 36, 58, 0.16);
}

.hero__image {
  width: 100%;
  height: auto;
}

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

.section {
  padding: 72px 0;
}

.intro {
  text-align: center;
  max-width: 820px;
  margin: 0 auto;
}

.eyebrow {
  margin: 0 0 12px;
  color: var(--accent);
  font-size: 0.78rem;
  font-weight: 700;
  letter-spacing: 0.14em;
  text-transform: uppercase;
}

h1,
h2,
h3,
p {
  margin-top: 0;
}

h1 {
  margin-bottom: 20px;
  font-family: Georgia, "Times New Roman", serif;
  font-size: clamp(2rem, 5vw, 3.5rem);
  line-height: 1.12;
  font-weight: 500;
  letter-spacing: -0.02em;
}

.intro__copy {
  max-width: 680px;
  margin: 0 auto;
  color: var(--muted);
  font-size: 1.08rem;
}

.products {
  border-top: 1px solid var(--border);
}

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

.section-heading h2 {
  margin-bottom: 0;
  font-family: Georgia, "Times New Roman", serif;
  font-size: clamp(1.8rem, 4vw, 2.5rem);
  font-weight: 500;
}

.product-card {
  display: grid;
  grid-template-columns: 220px 1fr;
  gap: 36px;
  align-items: center;
  padding: 34px;
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: 22px;
  box-shadow: var(--shadow);
}

.product-card__icon-wrap {
  display: flex;
  justify-content: center;
}

.product-card__icon {
  width: 190px;
  aspect-ratio: 1 / 1;
  object-fit: cover;
  border-radius: 22%;
  box-shadow: 0 12px 30px rgba(31, 42, 61, 0.18);
}

.status {
  display: inline-block;
  margin-bottom: 12px;
  padding: 6px 10px;
  border-radius: 999px;
  background: var(--accent-soft);
  color: var(--accent);
  font-size: 0.78rem;
  font-weight: 700;
  letter-spacing: 0.04em;
  text-transform: uppercase;
}

.product-card h3 {
  margin-bottom: 12px;
  font-family: Georgia, "Times New Roman", serif;
  font-size: clamp(1.55rem, 3vw, 2rem);
  font-weight: 500;
}

.product-card p {
  color: var(--muted);
}

.product-card p:last-child {
  margin-bottom: 0;
}

.platforms {
  font-weight: 600;
  color: var(--text) !important;
}

.site-footer {
  margin-top: 24px;
  background: #18243a;
  color: #f5f1e9;
}

.site-footer__inner {
  width: min(var(--max-width), calc(100% - 40px));
  margin: 0 auto;
  padding: 32px 0;
  display: flex;
  justify-content: space-between;
  gap: 30px;
  align-items: flex-start;
}

.site-footer strong {
  font-family: Georgia, "Times New Roman", serif;
  font-size: 1.15rem;
}

.site-footer p {
  margin: 6px 0 0;
  color: #c9d0dc;
  font-size: 0.92rem;
}

.site-footer__contact {
  text-align: right;
}

.site-footer a {
  color: #ffffff;
  text-decoration: none;
}

.site-footer a:hover,
.site-footer a:focus-visible {
  text-decoration: underline;
}

@media (max-width: 720px) {
  main,
  .site-footer__inner {
    width: min(100% - 28px, var(--max-width));
  }

  .section {
    padding: 52px 0;
  }

  .product-card {
    grid-template-columns: 1fr;
    gap: 26px;
    padding: 24px;
  }

  .product-card__icon {
    width: 160px;
  }

  .site-footer__inner {
    flex-direction: column;
  }

  .site-footer__contact {
    text-align: left;
  }
}
