
:root {
  --bg: #ffffff;
  --surface: #ffffff;
  --surface-soft: #fafafa;
  --text: #1d1d1f;
  --muted: #6f6f75;
  --line: rgba(29,29,31,.08);
  --line-strong: rgba(29,29,31,.14);
  --accent: #b20b68;
  --accent-soft: rgba(178,11,104,.08);
  --radius: 28px;
  --shadow: 0 18px 42px rgba(17,20,31,.06);
  --max: 1220px;
}
* { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
  margin: 0;
  background: var(--bg);
  color: var(--text);
  font-family: -apple-system, BlinkMacSystemFont, "SF Pro Display", "SF Pro Text", Inter, Arial, sans-serif;
  -webkit-font-smoothing: antialiased;
  overflow-x: hidden;
}
img { display: block; max-width: 100%; }
a { color: inherit; text-decoration: none; }
button,input,textarea { font: inherit; }

.site-header {
  position: sticky;
  top: 0;
  z-index: 60;
  background: rgba(255,255,255,.92);
  backdrop-filter: saturate(180%) blur(16px);
  border-bottom: 1px solid rgba(29,29,31,.06);
}
.header-inner {
  width: min(calc(100% - 40px), var(--max));
  margin: 0 auto;
  min-height: 76px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
}
.brand { font-size: 26px; font-weight: 700; letter-spacing: -.05em; }
.brand span { color: var(--accent); }
.desktop-nav { display: flex; gap: 24px; font-size: 15px; color: #37373c; }
.desktop-nav a:hover { opacity: .65; }
.header-cta {
  padding: 12px 20px;
  border-radius: 999px;
  background: var(--text);
  color: #fff;
  font-size: 15px;
  font-weight: 600;
}

.section-pad {
  width: min(calc(100% - 40px), var(--max));
  margin: 0 auto;
  padding: 76px 0;
}
.eyebrow {
  margin: 0 0 14px;
  color: var(--accent);
  font-size: 12px;
  font-weight: 700;
  letter-spacing: .12em;
  text-transform: uppercase;
}
.section-heading {
  max-width: 900px;
  margin-bottom: 34px;
}
.section-heading h2,
.models-copy h2,
.contact-box h2 {
  margin: 0 0 16px;
  font-size: clamp(32px, 4vw, 50px);
  line-height: 1.06;
  letter-spacing: -.045em;
  font-weight: 650;
}
.section-heading p:last-child,
.hero-footnote,
.content-card p,
.ready-card p,
.prod-card p,
.pack-card figcaption span,
.transfer-card p,
.contact-box p,
.section-note,
.models-copy p {
  color: var(--muted);
  font-size: 17px;
  line-height: 1.62;
}

.hero {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 42px;
  align-items: center;
  min-height: auto;
  padding-top: 34px;
  padding-bottom: 26px;
}
.hero-copy { max-width: 620px; }
.hero h1 {
  margin: 0;
  font-weight: 650;
  letter-spacing: -.05em;
  line-height: 1.03;
  font-size: clamp(38px, 4.5vw, 58px);
}
.hero h1 span { font-size: 1em; }
.hero-lead {
  margin: 22px 0 0;
  max-width: 580px;
  font-size: 20px;
  line-height: 1.55;
  color: #4d4d53;
}
.hero-footnote {
  margin: 14px 0 0;
  font-size: 13px;
  line-height: 1.6;
}
.hero-actions { display: flex; flex-wrap: wrap; gap: 12px; margin-top: 26px; }
.button {
  min-height: 52px;
  padding: 0 24px;
  border: 0;
  border-radius: 999px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  font-weight: 650;
  transition: transform .2s ease, box-shadow .2s ease;
}
.button:hover { transform: translateY(-1px); }
.button-primary { color: #fff; background: linear-gradient(100deg, #a4005d, #c31579); box-shadow: 0 14px 26px rgba(178,11,104,.16); }
.button-secondary { background: #fff; color: var(--text); border: 1px solid var(--line-strong); }
.facts-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 14px; margin-top: 30px; }
.fact-card {
  padding: 18px;
  border: 1px solid var(--line);
  border-radius: 22px;
  background: #fff;
  box-shadow: var(--shadow);
}
.fact-card span { display: block; color: var(--muted); font-size: 13px; line-height: 1.45; margin-bottom: 10px; }
.fact-card strong { font-size: 22px; line-height: 1.2; letter-spacing: -.03em; }
.hero-media { display: flex; align-items: center; justify-content: center; }
.hero-media img { width: min(760px, 100%); height: auto; object-fit: contain; }

.overview-grid,
.ready-grid,
.prod-grid,
.packaging-grid,
.documents-grid,
.transfer-grid { display: grid; gap: 18px; }
.overview-grid { grid-template-columns: repeat(3, 1fr); }
.content-card,
.ready-card,
.prod-card,
.pack-card,
.document-card,
.transfer-card,
.contact-box {
  background: #fff;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  box-shadow: var(--shadow);
}
.content-card,
.ready-card,
.prod-card,
.transfer-card,
.contact-box { padding: 24px; }
.card-tag,
.icon-line { color: var(--accent); font-size: 12px; font-weight: 700; letter-spacing: .12em; text-transform: uppercase; margin: 0 0 14px; }
.content-card h3,
.ready-card h3,
.prod-card h3,
.transfer-card h3,
.document-card h3 {
  margin: 0 0 12px;
  font-size: 24px;
  line-height: 1.22;
  letter-spacing: -.03em;
  overflow-wrap: anywhere;
}
.content-card p,
.ready-card p,
.prod-card p,
.transfer-card p { margin: 0; }

.models-grid { display: grid; grid-template-columns: .95fr 1.05fr; gap: 40px; align-items: center; }
.mini-feature { display: grid; grid-template-columns: repeat(2, 1fr); gap: 14px; margin-top: 24px; }
.mini-box {
  padding: 18px;
  border-radius: 22px;
  border: 1px solid var(--line);
  background: #fff;
  box-shadow: var(--shadow);
}
.mini-box strong { display: block; font-size: 28px; letter-spacing: -.04em; margin-bottom: 6px; }
.mini-box span { color: var(--muted); font-size: 15px; line-height: 1.5; }
.media-shell {
  background: #fff;
  border: 1px solid var(--line);
  border-radius: 30px;
  box-shadow: var(--shadow);
  padding: 20px;
}
.media-shell.large { padding: 24px; }
.media-shell img { width: 100%; height: auto; object-fit: contain; }

.ready-grid { grid-template-columns: repeat(4, 1fr); }
.ready-card.wide { grid-column: span 4; }

.prod-grid { grid-template-columns: repeat(3, 1fr); }
.badge-list { display: flex; flex-wrap: wrap; gap: 8px; margin-top: 18px; }
.badge-list span {
  padding: 8px 12px;
  border-radius: 999px;
  background: var(--surface-soft);
  border: 1px solid var(--line);
  font-size: 13px;
  font-weight: 600;
  color: #3f3f46;
}
.nowrap { white-space: nowrap; }
.section-note { margin: 16px 0 0; }

.packaging-grid { grid-template-columns: repeat(4, 1fr); align-items: start; }
.pack-card,.document-card { padding: 18px; }
.gallery-button,.document-button { width: 100%; padding: 0; border: 0; background: transparent; cursor: pointer; text-align: left; }
.media {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 100%;
  background: #fff;
  border: 1px solid var(--line);
  border-radius: 22px;
  overflow: hidden;
}
.media.portrait { aspect-ratio: 3 / 4; padding: 14px; }
.media img { width: 100%; height: 100%; object-fit: contain; object-position: center center; }
.zoom-hint,.document-button span {
  display: inline-flex;
  margin-top: 12px;
  padding: 8px 12px;
  border-radius: 999px;
  background: #f5f5f7;
  color: #4a4a51;
  font-size: 13px;
}
.pack-card figcaption { margin-top: 14px; }
.pack-card figcaption strong { display: block; font-size: 18px; line-height: 1.35; margin-bottom: 8px; }

.documents-grid { grid-template-columns: repeat(3, 1fr); }
.document-button img {
  width: 100%;
  aspect-ratio: 4 / 5;
  object-fit: contain;
  border: 1px solid var(--line);
  border-radius: 22px;
  background: #fff;
  padding: 10px;
}

.flow-grid { display: grid; grid-template-columns: repeat(6, 1fr); gap: 14px; }
.flow-step {
  padding: 18px;
  border: 1px solid var(--line);
  border-radius: 22px;
  background: #fff;
  box-shadow: var(--shadow);
  min-height: 122px;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
}
.flow-step span { font-size: 12px; font-weight: 700; letter-spacing: .12em; color: var(--accent); }
.flow-step strong { font-size: 17px; line-height: 1.4; }

.transfer-grid { grid-template-columns: 1fr 1fr; }
.contact-box { max-width: 780px; }
.email-card {
  margin: 18px 0 22px;
  padding: 18px 20px;
  border-radius: 22px;
  background: var(--surface-soft);
  border: 1px solid var(--line);
}
.email-card span { display: block; color: var(--muted); font-size: 13px; margin-bottom: 8px; }
.email-card a { font-size: 28px; font-weight: 650; letter-spacing: -.03em; }

.lightbox {
  position: fixed;
  inset: 0;
  background: rgba(255,255,255,.96);
  display: none;
  align-items: center;
  justify-content: center;
  padding: 34px;
  z-index: 1000;
}
.lightbox.open { display: flex; }
.lightbox-inner { max-width: min(1100px, 92vw); max-height: 90vh; text-align: center; }
.lightbox img {
  max-width: 100%;
  max-height: 78vh;
  object-fit: contain;
  margin: 0 auto;
  border-radius: 18px;
  box-shadow: 0 25px 60px rgba(0,0,0,.10);
}
.lightbox p { margin: 14px 0 0; color: #55555c; font-size: 15px; }
.lightbox-close {
  position: absolute;
  top: 18px;
  right: 18px;
  width: 48px;
  height: 48px;
  border-radius: 999px;
  border: 1px solid rgba(29,29,31,.10);
  background: #fff;
  font-size: 30px;
  line-height: 1;
  cursor: pointer;
}

.reveal { opacity: 0; transform: translateY(24px); transition: opacity .65s ease, transform .65s ease; }
.reveal.in-view { opacity: 1; transform: none; }

@media (max-width: 1080px) {
  .hero,.models-grid { grid-template-columns: 1fr; min-height: auto; }
  .hero-media { order: -1; }
  .overview-grid,.prod-grid,.documents-grid,.packaging-grid { grid-template-columns: repeat(2, 1fr); }
  .ready-grid { grid-template-columns: repeat(2, 1fr); }
  .ready-card.wide { grid-column: span 2; }
  .flow-grid { grid-template-columns: repeat(3, 1fr); }
  .facts-grid { grid-template-columns: 1fr; }
}
@media (max-width: 760px) {
  .header-inner { min-height: 68px; gap: 14px; }
  .desktop-nav { display: none; }
  .brand { font-size: 23px; }
  .header-cta { padding: 10px 16px; font-size: 14px; }
  .section-pad { width: min(calc(100% - 28px), var(--max)); padding: 56px 0; }
  .hero h1 { font-size: clamp(34px, 9vw, 44px); }
  .hero-lead { font-size: 18px; }
  .overview-grid,.ready-grid,.prod-grid,.packaging-grid,.documents-grid,.transfer-grid,.flow-grid,.mini-feature { grid-template-columns: 1fr; }
  .ready-card.wide { grid-column: auto; }
  .content-card,.ready-card,.prod-card,.pack-card,.document-card,.transfer-card,.contact-box { border-radius: 22px; }
  .section-heading h2,.models-copy h2,.contact-box h2 { font-size: clamp(30px, 8vw, 40px); }
  .email-card a { font-size: 22px; overflow-wrap: anywhere; }
}

/* Compact spacing around the hero section */
.hero + .overview {
  padding-top: 32px !important;
}
@media (max-width: 760px) {
  .hero {
    padding-top: 26px !important;
    padding-bottom: 22px !important;
  }
  .hero + .overview {
    padding-top: 26px !important;
  }
}
