:root {
  --bg: #eef3f8;
  --panel: #ffffff;
  --panel-soft: #f5f8fb;
  --ink: #0b0d10;
  --muted: #58616b;
  --border: #d5dde6;
  --blue: #2563eb;
  --cyan: #00c2ff;
  --teal: #00d4a6;
  --green: #7cff72;
  --shadow: 0 22px 60px rgba(11, 13, 16, 0.1);
}

* {
  box-sizing: border-box;
}

html,
body {
  margin: 0;
  padding: 0;
  background: var(--bg);
  color: var(--ink);
  font-family: "Satoshi", "Inter", system-ui, sans-serif;
}

body {
  min-height: 100vh;
}

.brochure {
  width: 100%;
}

.page {
  width: min(1200px, calc(100% - 64px));
  margin: 32px auto;
  padding: 56px;
  background: var(--panel);
  border: 1px solid var(--border);
  border-radius: 28px;
  box-shadow: var(--shadow);
  page-break-after: always;
}

.hero-page,
.close-page {
  background:
    radial-gradient(circle at top right, rgba(0, 194, 255, 0.16), transparent 28%),
    radial-gradient(circle at bottom left, rgba(124, 255, 114, 0.1), transparent 24%),
    linear-gradient(145deg, #0b0d10, #12161c 50%, #0f141a);
  color: #f4f7f4;
  border-color: rgba(0, 194, 255, 0.2);
}

.hero-page {
  display: grid;
  grid-template-columns: 1.15fr 1fr;
  gap: 40px;
  align-items: center;
}

.hero-copy h1,
.close-copy h2,
h2 {
  font-family: "Satoshi", "Inter", system-ui, sans-serif;
  letter-spacing: 0;
}

.hero-brand {
  display: block;
  width: min(360px, 72%);
  height: auto;
  margin: 0 0 18px;
}

.hero-copy h1 {
  margin: 12px 0 18px;
  font-size: clamp(2.6rem, 5vw, 4.5rem);
  line-height: 0.98;
}

.lede {
  max-width: 42rem;
  font-size: 1.15rem;
  line-height: 1.6;
  color: rgba(244, 247, 244, 0.82);
}

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

.hero-pills {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-top: 28px;
}

.hero-pills span {
  padding: 10px 16px;
  border-radius: 999px;
  border: 1px solid rgba(255, 255, 255, 0.14);
  background: rgba(255, 255, 255, 0.06);
  font-size: 0.88rem;
}

.hero-collage {
  position: relative;
  min-height: 560px;
}

.hero-collage-single {
  min-height: 620px;
}

.frame {
  position: absolute;
  margin: 0;
  overflow: hidden;
  border-radius: 28px;
  border: 1px solid rgba(255, 255, 255, 0.1);
  box-shadow: 0 24px 60px rgba(0, 0, 0, 0.32);
}

.frame img,
.image-col img,
.close-strip img {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.frame-lg {
  left: 0;
  top: 10px;
  width: 58%;
  aspect-ratio: 0.7;
}

.frame-md {
  right: 0;
  top: 0;
  width: 48%;
  aspect-ratio: 0.92;
}

.frame-sm {
  right: 24px;
  bottom: 10px;
  width: 42%;
  aspect-ratio: 0.82;
}

.frame-hero-single {
  inset: 0;
  width: 100%;
  height: 100%;
  border-radius: 32px;
  background: rgba(7, 11, 8, 0.55);
  padding: 14px;
}

.frame-hero-single img {
  object-fit: contain;
  border-radius: 24px;
}

.statement-page {
  background: linear-gradient(180deg, #ffffff, #f4f8fb);
}

.statement-grid {
  display: grid;
  grid-template-columns: 0.9fr 1.1fr;
  gap: 36px;
  align-items: start;
}

h2 {
  margin: 10px 0 18px;
  font-size: clamp(2rem, 3vw, 3rem);
  line-height: 1.05;
}

.statement-grid p,
.copy-col p,
.copy-block p {
  font-size: 1rem;
  line-height: 1.65;
  color: var(--muted);
}

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

.outcome-cards article,
.site-grid article {
  padding: 20px;
  background: rgba(255, 255, 255, 0.86);
  border: 1px solid var(--border);
  border-radius: 22px;
}

.outcome-cards h3,
.site-grid h3 {
  margin: 0 0 8px;
  font-size: 1rem;
}

.outcome-cards p,
.site-grid p {
  margin: 0;
  font-size: 0.95rem;
  line-height: 1.55;
}

.product-page {
  display: grid;
  grid-template-columns: 0.92fr 1.08fr;
  gap: 34px;
  align-items: center;
}

.product-page.reverse {
  grid-template-columns: 1.08fr 0.92fr;
}

.product-page.reverse .copy-col {
  order: 2;
}

.product-page.reverse .image-col {
  order: 1;
}

.copy-col ul {
  margin: 22px 0 0;
  padding: 0;
  list-style: none;
  display: grid;
  gap: 12px;
}

.copy-col li {
  position: relative;
  padding-left: 22px;
  font-size: 1rem;
  line-height: 1.6;
}

.copy-col li::before {
  content: "";
  position: absolute;
  left: 0;
  top: 0.62em;
  width: 8px;
  height: 8px;
  border-radius: 999px;
  background: var(--teal);
}

.image-col {
  margin: 0;
  border-radius: 28px;
  overflow: hidden;
  background: #0f141a;
  border: 1px solid #1d2530;
  box-shadow: 0 24px 50px rgba(11, 13, 16, 0.16);
}

.light-grid-page {
  background: linear-gradient(180deg, #f8fbfd, #eef4f8);
}

.copy-block {
  max-width: 720px;
}

.site-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 16px;
  margin-top: 28px;
}

.close-page {
  display: grid;
  gap: 32px;
}

.close-copy {
  max-width: 760px;
}

.close-copy h2 {
  margin: 12px 0 16px;
  font-size: clamp(2.3rem, 4vw, 3.8rem);
  color: #f4f7f4;
}

.close-copy p {
  max-width: 44rem;
  color: rgba(244, 247, 244, 0.82);
  font-size: 1.05rem;
  line-height: 1.65;
}

.close-strip {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 16px;
}

.close-strip img {
  height: 240px;
  border-radius: 22px;
  border: 1px solid rgba(255, 255, 255, 0.12);
}

@media (max-width: 960px) {
  .page {
    width: min(100%, calc(100% - 24px));
    padding: 28px;
    margin: 12px auto;
  }

  .hero-page,
  .statement-grid,
  .product-page,
  .product-page.reverse {
    grid-template-columns: 1fr;
  }

  .product-page.reverse .copy-col,
  .product-page.reverse .image-col {
    order: initial;
  }

  .hero-collage {
    min-height: 460px;
  }

  .outcome-cards,
  .site-grid,
  .close-strip {
    grid-template-columns: 1fr;
  }

  .close-strip img {
    height: auto;
    aspect-ratio: 1.3;
  }
}

@media print {
  @page {
    size: A4 portrait;
    margin: 10mm;
  }

  body {
    background: #fff;
  }

  .page {
    width: 100%;
    margin: 0 0 10mm;
    box-shadow: none;
    break-inside: avoid;
    page-break-after: always;
  }
}
