:root {
  --bg: #f5f7fa;
  --paper: #ffffff;
  --ink: #111827;
  --muted: #64748b;
  --line: #d9e1ea;
  --cobalt: #1757d8;
  --cobalt-dark: #0c2f75;
  --emerald: #10b981;
  --cyan: #20d7ff;
  --silver: #e8edf3;
  --shadow: 0 24px 60px rgba(15, 23, 42, 0.14);
}

* { box-sizing: border-box; }

html { scroll-behavior: smooth; }

body {
  margin: 0;
  font-family: "Arial Narrow", "Roboto Condensed", "Helvetica Neue", Arial, sans-serif;
  color: var(--ink);
  background: var(--bg);
}

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

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

.site-header {
  position: sticky;
  top: 0;
  z-index: 20;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  padding: 18px clamp(20px, 5vw, 72px);
  background: rgba(245, 247, 250, 0.9);
  border-bottom: 1px solid var(--line);
  backdrop-filter: blur(18px);
}

.brand {
  font-weight: 900;
  letter-spacing: 0;
  color: var(--cobalt-dark);
  font-size: 17px;
}

.nav {
  display: flex;
  gap: 22px;
  color: var(--muted);
  font-size: 14px;
  font-weight: 700;
}

.nav a:hover { color: var(--cobalt); }

.band,
.product-band,
.gallery-band,
.contact-band {
  padding: clamp(56px, 8vw, 96px) clamp(20px, 5vw, 72px);
}

.hero {
  min-height: calc(100vh - 66px);
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(320px, 520px);
  align-items: center;
  gap: clamp(30px, 6vw, 80px);
  overflow: hidden;
  background:
    linear-gradient(120deg, rgba(255,255,255,0.94), rgba(232,237,243,0.74)),
    linear-gradient(90deg, rgba(23,87,216,0.08), rgba(16,185,129,0.12));
}

.eyebrow {
  margin: 0 0 14px;
  color: var(--emerald);
  font-size: 13px;
  font-weight: 900;
  text-transform: uppercase;
  letter-spacing: 0;
}

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

h1 {
  max-width: 760px;
  margin-bottom: 22px;
  color: var(--cobalt-dark);
  font-size: clamp(46px, 8vw, 96px);
  line-height: 0.9;
  letter-spacing: 0;
  text-transform: uppercase;
}

h2 {
  margin-bottom: 18px;
  color: var(--cobalt-dark);
  font-size: clamp(34px, 5vw, 64px);
  line-height: 0.94;
  letter-spacing: 0;
  text-transform: uppercase;
}

h3 {
  margin-bottom: 10px;
  font-size: clamp(24px, 3vw, 38px);
  line-height: 1;
  color: var(--ink);
  letter-spacing: 0;
}

.hero-text,
.product-panel p,
.feature-row p,
.gallery-copy p,
.contact-band p {
  max-width: 560px;
  color: var(--muted);
  font-family: Arial, sans-serif;
  font-size: 17px;
  line-height: 1.65;
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-top: 30px;
}

.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 48px;
  padding: 0 22px;
  border: 1px solid var(--line);
  font-family: Arial, sans-serif;
  font-size: 14px;
  font-weight: 800;
  transition: transform 180ms ease, border-color 180ms ease, background 180ms ease;
}

.button:hover { transform: translateY(-2px); }
.button.primary { color: #fff; background: var(--cobalt); border-color: var(--cobalt); }
.button.secondary { color: var(--cobalt-dark); background: #fff; }

.hero-visual {
  position: relative;
  min-height: 620px;
  display: grid;
  place-items: center;
}

.hero-visual::before {
  content: "";
  position: absolute;
  width: 82%;
  height: 74%;
  background: linear-gradient(145deg, #ffffff, var(--silver));
  border: 1px solid var(--line);
  box-shadow: var(--shadow);
  transform: skewY(-4deg);
}

.shot {
  position: absolute;
  width: min(245px, 45vw);
  border-radius: 24px;
  box-shadow: 0 28px 56px rgba(12, 47, 117, 0.26);
}

.shot-a { left: 12%; bottom: 38px; transform: rotate(-5deg); }
.shot-b { right: 6%; top: 18px; transform: rotate(5deg); }

.product-band { background: var(--paper); border-top: 1px solid var(--line); border-bottom: 1px solid var(--line); }

.section-head {
  display: grid;
  grid-template-columns: 220px minmax(0, 760px);
  gap: 28px;
  align-items: start;
  margin-bottom: 34px;
}

.product-panel {
  display: grid;
  grid-template-columns: minmax(0, 1.05fr) minmax(280px, 0.95fr);
  gap: 36px;
  padding: clamp(24px, 4vw, 42px);
  background: linear-gradient(135deg, #f9fbfd, #edf3f8);
  border: 1px solid var(--line);
  box-shadow: 0 18px 38px rgba(15, 23, 42, 0.07);
}

.product-points {
  display: grid;
  gap: 12px;
  margin: 0;
  padding: 0;
  list-style: none;
  font-family: Arial, sans-serif;
  color: var(--ink);
  font-weight: 700;
}

.product-points li {
  display: grid;
  grid-template-columns: 46px 1fr;
  gap: 14px;
  align-items: center;
  padding: 14px 0;
  border-bottom: 1px solid var(--line);
}

.product-points span { color: var(--emerald); font-weight: 900; }

.light { background: #eef3f8; }

.feature-grid {
  display: grid;
  gap: 0;
}

.feature-row {
  display: grid;
  grid-template-columns: 160px minmax(220px, 0.7fr) minmax(260px, 1fr);
  gap: 24px;
  align-items: baseline;
  padding: 28px 0;
  border-top: 1px solid var(--line);
}

.feature-row:last-child { border-bottom: 1px solid var(--line); }

.feature-index {
  color: var(--cobalt);
  font-size: 13px;
  font-weight: 900;
  text-transform: uppercase;
}

.gallery-band {
  display: grid;
  grid-template-columns: minmax(260px, 420px) minmax(0, 1fr);
  gap: clamp(28px, 5vw, 72px);
  align-items: center;
  background: var(--paper);
}

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

.gallery figure {
  margin: 0;
  padding: 12px;
  background: #f8fafc;
  border: 1px solid var(--line);
}

.gallery img {
  width: 100%;
  aspect-ratio: 9 / 16;
  object-fit: cover;
  object-position: top center;
}

figcaption {
  padding-top: 12px;
  color: var(--muted);
  font-family: Arial, sans-serif;
  font-size: 14px;
  font-weight: 700;
}

.contact-band {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 28px;
  color: #fff;
  background: linear-gradient(120deg, var(--cobalt-dark), #154bc0 58%, #058764);
}

.contact-band h2,
.contact-band p { color: #fff; }
.contact-band .eyebrow { color: var(--cyan); }

.contact-link {
  display: inline-flex;
  align-items: center;
  min-height: 54px;
  padding: 0 22px;
  background: rgba(255,255,255,0.12);
  border: 1px solid rgba(255,255,255,0.35);
  font-family: Arial, sans-serif;
  font-weight: 800;
  word-break: break-word;
}

.site-footer {
  display: flex;
  justify-content: space-between;
  gap: 20px;
  padding: 24px clamp(20px, 5vw, 72px);
  color: var(--muted);
  background: #f8fafc;
  border-top: 1px solid var(--line);
  font-family: Arial, sans-serif;
  font-size: 14px;
}

.site-footer a { color: var(--cobalt); font-weight: 700; }

@media (max-width: 900px) {
  .hero,
  .product-panel,
  .section-head,
  .gallery-band {
    grid-template-columns: 1fr;
  }

  .hero { min-height: auto; padding-top: 52px; }
  .hero-visual { min-height: 560px; }
  .feature-row { grid-template-columns: 1fr; gap: 8px; }
  .contact-band { align-items: flex-start; flex-direction: column; }
}

@media (max-width: 620px) {
  .site-header { align-items: flex-start; flex-direction: column; gap: 12px; }
  .nav { width: 100%; justify-content: space-between; gap: 12px; }
  h1 { font-size: 44px; }
  h2 { font-size: 34px; }
  .hero-visual { min-height: 500px; }
  .shot { width: 205px; border-radius: 20px; }
  .shot-a { left: 2%; bottom: 26px; }
  .shot-b { right: 0; top: 26px; }
  .gallery { grid-template-columns: 1fr; }
  .site-footer { flex-direction: column; }
}

/* Generator safety overrides */
h1,
.hero h1,
[class*="hero"] h1 {
  font-size: clamp(2.35rem, 5vw, 4rem) !important;
  line-height: 1.06 !important;
  letter-spacing: 0 !important;
  overflow-wrap: anywhere;
}

@media (max-width: 640px) {
  h1,
  .hero h1,
  [class*="hero"] h1 {
    font-size: clamp(2rem, 10vw, 2.8rem) !important;
    line-height: 1.08 !important;
  }
}

.user-policy-section {
  background: #f7f7fb !important;
  color: #191927 !important;
  padding: 56px 18px !important;
  font-family: Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif !important;
}

.user-policy-inner {
  max-width: 980px !important;
  margin: 0 auto !important;
  padding: 56px 72px !important;
  background: #fff !important;
  box-shadow: none !important;
}

.user-policy-inner h2 {
  margin: 0 0 48px !important;
  color: #10101f !important;
  font-size: 30px !important;
  line-height: 1.2 !important;
  text-align: center !important;
  font-weight: 900 !important;
}

.user-policy-inner h3 {
  margin: 34px 0 14px !important;
  color: #000 !important;
  font-size: 22px !important;
  line-height: 1.3 !important;
  font-weight: 900 !important;
}

.user-policy-inner p {
  margin: 0 0 14px !important;
  color: #555 !important;
  font-size: 16px !important;
  line-height: 1.55 !important;
  font-weight: 400 !important;
}

.user-policy-inner a {
  color: #d83260 !important;
  text-decoration: underline !important;
}

@media (max-width: 720px) {
  .user-policy-inner {
    padding: 34px 22px !important;
  }
}
