:root {
  --bg: #f5f3ef;
  --paper: #fffdf9;
  --ink: #1a1d24;
  --muted: #60697a;
  --line: #d9d2c8;
  --brand: #004e64;
  --brand-2: #f59e0b;
  --card: #fff;
  --radius: 16px;
  --shadow: 0 10px 30px rgba(26, 29, 36, 0.08);
  --container: 1160px;
}

* { box-sizing: border-box; }

html { scroll-behavior: smooth; }

body {
  margin: 0;
  color: var(--ink);
  font-family: Manrope, "Segoe UI", sans-serif;
  background:
    radial-gradient(circle at 8% 5%, rgba(245, 158, 11, 0.14) 0, transparent 26%),
    radial-gradient(circle at 88% 8%, rgba(0, 78, 100, 0.12) 0, transparent 30%),
    var(--bg);
}

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

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

.skip-link {
  position: absolute;
  left: 12px;
  top: 12px;
  background: #111;
  color: #fff;
  padding: 8px 10px;
  transform: translateY(-200%);
}

.skip-link:focus { transform: translateY(0); }

.site-header {
  position: sticky;
  top: 0;
  z-index: 20;
  border-bottom: 1px solid rgba(26, 29, 36, 0.12);
  background: rgba(255, 253, 249, 0.9);
  backdrop-filter: blur(8px);
}

.header-inner {
  min-height: 72px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 16px;
}

.brand {
  display: flex;
  align-items: center;
  gap: 10px;
  font-family: "Space Grotesk", sans-serif;
}

.brand-mark {
  width: 34px;
  height: 34px;
  border-radius: 10px;
  background: linear-gradient(135deg, var(--brand), #0f766e);
}

.brand-name { font-weight: 700; font-size: 13px; display: block; }

.brand-badge {
  display: inline-block;
  margin-top: 2px;
  font-size: 11px;
  padding: 3px 8px;
  background: rgba(0, 78, 100, 0.1);
  border: 1px solid rgba(0, 78, 100, 0.2);
  border-radius: 999px;
}

.site-nav { display: flex; gap: 8px; flex-wrap: wrap; }

.site-nav a {
  padding: 9px 12px;
  border: 1px solid transparent;
  border-radius: 999px;
  font-size: 13px;
  font-weight: 700;
}

.site-nav a:hover { border-color: var(--line); background: var(--paper); }

.hero { padding: 56px 0 28px; }

.hero-grid {
  display: grid;
  grid-template-columns: 1.3fr 0.7fr;
  gap: 20px;
  align-items: start;
}

.hero-kicker {
  font-size: 12px;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--brand);
  font-weight: 800;
}

.hero-title {
  font-family: "Space Grotesk", sans-serif;
  font-size: clamp(30px, 4vw, 52px);
  letter-spacing: -0.03em;
  margin: 10px 0;
}

.hero-subtitle {
  color: var(--muted);
  line-height: 1.7;
  max-width: 62ch;
}

.hero-cta-wrap {
  margin-top: 18px;
  display: flex;
  justify-content: center;
}

.hero-cta-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 54px;
  padding: 0 26px;
  border-radius: 999px;
  border: 1px solid #b45309;
  background: linear-gradient(135deg, #fb923c, #ea580c);
  color: #fff;
  font-family: "Space Grotesk", sans-serif;
  font-size: 15px;
  font-weight: 700;
  letter-spacing: 0.01em;
  box-shadow: 0 16px 30px rgba(234, 88, 12, 0.35);
  transition: transform 0.2s ease, box-shadow 0.2s ease, filter 0.2s ease;
}

.hero-cta-btn:hover {
  transform: translateY(-2px);
  box-shadow: 0 20px 34px rgba(234, 88, 12, 0.45);
  filter: brightness(1.03);
}

.hero-cta-btn:focus-visible {
  outline: 3px solid rgba(251, 146, 60, 0.4);
  outline-offset: 3px;
}

.hero-meta {
  margin-top: 18px;
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 10px;
}

.hero-meta div {
  border: 1px solid var(--line);
  border-radius: 12px;
  padding: 12px;
  background: var(--paper);
}

.hero-meta span { color: var(--muted); font-size: 12px; display: block; }
.hero-meta strong { margin-top: 5px; display: block; font-size: 13px; }

.hero-panel {
  background: linear-gradient(160deg, #fff, #fbf7f2);
  border: 1px solid var(--line);
  box-shadow: var(--shadow);
  border-radius: var(--radius);
  padding: 18px;
}

.hero-panel h2 { margin: 0 0 8px; font-family: "Space Grotesk", sans-serif; }
.hero-panel p { margin: 0 0 12px; color: var(--muted); line-height: 1.65; }
.hero-panel ul { margin: 0; padding-left: 18px; color: var(--ink); }

.section { padding: 50px 0; }
.section-muted { background: rgba(255, 255, 255, 0.58); border-block: 1px solid var(--line); }

.section-head h2 {
  margin: 6px 0 8px;
  font-family: "Space Grotesk", sans-serif;
  font-size: clamp(24px, 3vw, 38px);
}

.section-head p { color: var(--muted); margin: 0; }
.section-kicker { font-size: 12px; text-transform: uppercase; letter-spacing: 0.08em; color: var(--brand); font-weight: 800; }

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

.product-card {
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: var(--card);
  box-shadow: var(--shadow);
  overflow: hidden;
}

.product-cover {
  aspect-ratio: 16 / 9;
  width: 100%;
  object-fit: cover;
  display: block;
  border-bottom: 1px solid var(--line);
}

.product-cover-placeholder {
  border-bottom: 1px solid var(--line);
  background: repeating-linear-gradient(
    -45deg,
    #f4efe8,
    #f4efe8 12px,
    #ebe4d8 12px,
    #ebe4d8 24px
  );
  display: grid;
  place-items: center;
  text-align: center;
  color: #6b7280;
  font-size: 13px;
  font-weight: 700;
  padding: 12px;
}

.product-body {
  padding: 14px;
  display: flex;
  flex-direction: column;
}
.product-head { display: flex; justify-content: space-between; gap: 8px; align-items: baseline; }
.product-title { margin: 0; font-family: "Space Grotesk", sans-serif; font-size: 22px; }
.product-status { font-size: 12px; color: var(--muted); }
.product-icon-row { margin-top: 10px; }
.product-icon {
  width: 64px;
  height: 64px;
  border-radius: 14px;
  border: 1px solid var(--line);
  object-fit: cover;
  display: grid;
  place-items: center;
}
.product-icon-placeholder {
  background: var(--paper);
  color: var(--muted);
  font-size: 11px;
  font-weight: 700;
}
.product-desc {
  color: var(--muted);
  line-height: 1.6;
  margin: 10px 0 0;
  min-height: 7.2em;
}

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

.product-shots-large {
  grid-template-columns: 1fr;
}

.product-shot {
  width: 100%;
  height: 220px;
  object-fit: contain;
  border: 1px solid var(--line);
  border-radius: 10px;
  display: block;
  background: #f7f3ec;
  padding: 6px;
}

.product-shots-large .product-shot {
  height: 340px;
}

.product-video-wrap {
  margin-top: 12px;
}

.product-video {
  width: 100%;
  max-height: 280px;
  border: 1px solid var(--line);
  border-radius: 10px;
  background: #000;
}

.product-tags {
  margin-top: 12px;
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
}

.product-tags span {
  font-size: 12px;
  border-radius: 999px;
  border: 1px solid var(--line);
  padding: 4px 10px;
  background: var(--paper);
}

.product-links {
  margin-top: 12px;
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
}

.product-links a {
  font-size: 12px;
  font-weight: 700;
  color: var(--brand);
  border: 1px solid rgba(0, 78, 100, 0.25);
  border-radius: 999px;
  padding: 5px 10px;
}

.info-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 14px; }

.info-card {
  background: var(--card);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  box-shadow: var(--shadow);
  padding: 16px;
}

.info-card h3 { margin-top: 0; font-family: "Space Grotesk", sans-serif; }
.info-card ul { margin: 0; padding-left: 18px; color: var(--muted); line-height: 1.75; }
.info-card strong { color: var(--ink); }
.info-card a { color: var(--brand); }

.compliance-links {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
}

.compliance-links a {
  border: 1px solid var(--line);
  background: var(--paper);
  border-radius: 10px;
  padding: 10px 12px;
  font-size: 13px;
  font-weight: 700;
}

.site-footer {
  border-top: 1px solid var(--line);
  background: rgba(255, 255, 255, 0.75);
}

.footer-inner {
  min-height: 74px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 8px;
  flex-wrap: wrap;
  font-size: 13px;
}

@media (max-width: 980px) {
  .hero-grid,
  .product-grid,
  .info-grid {
    grid-template-columns: 1fr;
  }

  .hero-meta {
    grid-template-columns: 1fr;
  }
}

.product-cta {
  margin-top: 12px;
}

.play-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-width: 170px;
  border-radius: 999px;
  border: 1px solid rgba(155, 74, 4, 0.5);
  background: linear-gradient(135deg, #f59e0b, #f97316);
  color: #fff;
  font-size: 15px;
  font-weight: 800;
  letter-spacing: 0.02em;
  text-transform: uppercase;
  padding: 12px 18px;
  box-shadow: 0 10px 24px rgba(249, 115, 22, 0.35);
  transition: transform 0.2s ease, box-shadow 0.2s ease, filter 0.2s ease;
}

.play-btn:hover {
  transform: translateY(-1px);
  box-shadow: 0 14px 28px rgba(249, 115, 22, 0.45);
  filter: brightness(1.04);
}

.play-btn:focus-visible {
  outline: 3px solid rgba(245, 158, 11, 0.35);
  outline-offset: 3px;
}

.play-note {
  margin: 8px 0 0;
  font-size: 12px;
  color: #965200;
  font-weight: 700;
}
