/* =========================================================
   Biz Hub landing page — scoped under .bz-page
   Source: design_handoff_bizhub_landing/bizhub.html
   All selectors are prefixed `bz-` and live under .bz-page
   to avoid colliding with site-wide style.css.
   ========================================================= */

.bz-page {
  --bz-navy-900: #061328;
  --bz-navy-800: #0a1d3a;
  --bz-navy-700: #14366b;
  --bz-green:    #3ddb6f;
  --bz-green-bright: #4ef07f;
  --bz-green-dark:   #2eb858;
  --bz-ink:   #0b1220;
  --bz-ink-2: #1f2937;
  --bz-muted: #5b6b80;
  --bz-line:  #e6e9ef;
  --bz-bg-soft:   #f5f7fa;
  --bz-shadow-lg: 0 30px 60px -25px rgba(10, 29, 58, 0.35);

  font-family: 'Inter', system-ui, -apple-system, sans-serif;
  color: var(--bz-ink);
  line-height: 1.55;
}
.bz-page img { max-width: 100%; display: block; }

/* ===== HERO ===== */
.bz-hero {
  position: relative; overflow: hidden;
  background:
    radial-gradient(ellipse at 80% 110%, rgba(61, 219, 111, 0.18) 0%, transparent 50%),
    linear-gradient(135deg, #0a1d3a 0%, #0f2952 50%, #14366b 100%);
  color: #fff;
  /* top padding clears the site's fixed .navbar */
  padding: 160px 0 120px;
}
.bz-hero::before {
  content: ''; position: absolute; inset: 0;
  background-image:
    linear-gradient(rgba(255,255,255,.04) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255,255,255,.04) 1px, transparent 1px);
  background-size: 80px 80px;
  background-position: center bottom;
  transform: perspective(700px) rotateX(60deg);
  transform-origin: bottom;
  opacity: .55;
  mask-image: linear-gradient(to top, black 0%, transparent 70%);
  -webkit-mask-image: linear-gradient(to top, black 0%, transparent 70%);
  pointer-events: none;
}
.bz-hero-grid {
  position: relative; z-index: 2;
  display: grid; grid-template-columns: 1.1fr 0.9fr;
  gap: 64px; align-items: center;
}
.bz-kicker {
  display: inline-flex; align-items: center; gap: 8px;
  padding: 6px 14px; border-radius: 999px;
  border: 1px solid rgba(61,219,111,.4);
  color: var(--bz-green);
  font-size: 11px; font-weight: 700; letter-spacing: 0.14em; text-transform: uppercase;
}
.bz-kicker::before {
  content: ''; width: 7px; height: 7px; border-radius: 50%;
  background: var(--bz-green); box-shadow: 0 0 12px var(--bz-green);
}
.bz-hero h1 {
  font-family: 'Inter', system-ui, sans-serif;
  font-size: clamp(44px, 5.4vw, 72px); font-weight: 800; letter-spacing: -0.03em;
  line-height: 1.0; margin: 22px 0;
  color: #fff;
}
.bz-hero h1 .bz-accent { color: var(--bz-green); display: block; }
.bz-hero .bz-lede {
  font-size: 19px; color: rgba(255,255,255,.78);
  max-width: 540px; margin: 0 0 36px; font-weight: 400; line-height: 1.55;
}
.bz-ctas { display: flex; gap: 14px; flex-wrap: wrap; align-items: center; }
.bz-btn {
  display: inline-flex; align-items: center; gap: 10px;
  padding: 14px 22px; border-radius: 12px; font-size: 15px; font-weight: 700;
  transition: transform .15s ease, background .15s ease, border-color .15s ease;
  border: 1px solid transparent;
  text-decoration: none;
}
.bz-btn.bz-btn-primary { background: var(--bz-green); color: #04240f; }
.bz-btn.bz-btn-primary:hover { background: var(--bz-green-bright); }
.bz-btn.bz-btn-white { background: #fff; color: var(--bz-navy-800); }
.bz-btn.bz-btn-white:hover { background: #f5f7fa; }
.bz-store-meta { line-height: 1.0; text-align: left; }
.bz-store-meta .bz-s1 { font-size: 10px; font-weight: 600; opacity: .7; display: block; margin-bottom: 2px; }
.bz-store-meta .bz-s2 { font-size: 15px; font-weight: 800; display: block; }

.bz-hero-meta { margin-top: 36px; display: flex; gap: 36px; flex-wrap: wrap; }
.bz-hero-meta .bz-m {
  display: flex; align-items: center; gap: 10px;
  color: rgba(255,255,255,.7); font-size: 13px; font-weight: 500;
}
.bz-hero-meta .bz-m svg { color: var(--bz-green); flex-shrink: 0; }

/* ===== Phone mockup ===== */
.bz-phone-wrap { position: relative; display: flex; justify-content: center; }
.bz-phone {
  position: relative;
  width: 290px; aspect-ratio: 9/19.5;
  background: #0a1d3a; border-radius: 42px;
  padding: 12px;
  box-shadow: var(--bz-shadow-lg), 0 0 0 1px rgba(255,255,255,.06);
  transform: rotate(0);
}
.bz-phone::before {
  content: ''; position: absolute; top: 18px; left: 50%; transform: translateX(-50%);
  width: 96px; height: 26px; background: #000; border-radius: 999px; z-index: 2;
}
.bz-phone-screen { width: 100%; height: 100%; border-radius: 32px; overflow: hidden; background: #0a1d3a; }
.bz-phone-screen img {
  width: 100%; height: 100%; object-fit: cover;
  /* Ask Chrome/Edge for a higher-quality downsampler on these large screenshots. */
  image-rendering: -webkit-optimize-contrast;
}
.bz-phone-glow {
  position: absolute; inset: -40px; z-index: -1; border-radius: 50%;
  background: radial-gradient(circle, rgba(61,219,111,.35) 0%, transparent 60%);
  filter: blur(40px);
}

/* ===== Section common ===== */
.bz-section { padding: 110px 0; }
.bz-sec-head { max-width: 760px; margin: 0 auto 64px; text-align: center; }
.bz-sec-kicker {
  display: inline-block; padding: 5px 12px; border-radius: 999px;
  background: rgba(20, 54, 107, 0.08); color: var(--bz-navy-700);
  font-size: 11px; font-weight: 700; letter-spacing: 0.14em; text-transform: uppercase;
  margin-bottom: 18px;
}
.bz-sec-head h2 {
  font-family: 'Inter', system-ui, sans-serif;
  font-size: clamp(34px, 4vw, 52px); font-weight: 800; letter-spacing: -0.025em;
  line-height: 1.05; margin: 0 0 18px; color: var(--bz-navy-800);
}
.bz-sec-head h2 .bz-accent { color: var(--bz-green-dark); }
.bz-sec-head p { font-size: 18px; color: var(--bz-muted); margin: 0; line-height: 1.55; }

/* ===== Bento grid ===== */
.bz-bento {
  display: grid; grid-template-columns: repeat(6, 1fr);
  gap: 22px;
}
.bz-bcard {
  background: var(--bz-bg-soft); border-radius: 24px; padding: 36px;
  position: relative; overflow: hidden;
  border: 1px solid var(--bz-line);
  display: flex; flex-direction: column;
  min-height: 360px;
}
.bz-bcard .bz-label {
  font-size: 11px; font-weight: 700; letter-spacing: 0.14em; text-transform: uppercase;
  color: var(--bz-green-dark); margin-bottom: 10px;
}
.bz-bcard h3 {
  font-family: 'Inter', system-ui, sans-serif;
  font-size: 22px; font-weight: 800; letter-spacing: -0.015em;
  margin: 0 0 10px; color: var(--bz-navy-800); line-height: 1.15;
}
.bz-bcard p { font-size: 14.5px; color: var(--bz-muted); margin: 0; }
.bz-bcard .bz-img {
  margin-top: auto; padding-top: 24px;
  display: flex; justify-content: center; align-items: flex-end; flex: 1;
}
.bz-bcard .bz-img img {
  max-height: 320px; width: auto;
  border-radius: 18px 18px 0 0;
  box-shadow: 0 30px 50px -25px rgba(10,29,58,0.4);
}
.bz-bcard.bz-col-3 { grid-column: span 3; }
.bz-bcard.bz-col-2 { grid-column: span 2; }
.bz-bcard.bz-feature-1 {
  background: linear-gradient(160deg, #0a1d3a 0%, #14366b 100%);
  color: #fff; border-color: transparent;
}
.bz-bcard.bz-feature-1 h3 { color: #fff; }
.bz-bcard.bz-feature-1 p { color: rgba(255,255,255,.7); }
.bz-bcard.bz-feature-1 .bz-label { color: var(--bz-green); }
.bz-bcard.bz-feature-1::after {
  content: ''; position: absolute; top: -40%; right: -20%; width: 80%; height: 140%;
  background: radial-gradient(circle, rgba(61,219,111,.15) 0%, transparent 60%);
  pointer-events: none;
}

/* ===== Split showcase ===== */
.bz-split { background: var(--bz-bg-soft); }
.bz-split-row {
  display: grid; grid-template-columns: 1fr 1fr; gap: 80px; align-items: center;
  margin-bottom: 120px;
}
.bz-split-row:last-child { margin-bottom: 0; }
.bz-split-row.bz-flip { direction: rtl; }
.bz-split-row.bz-flip > * { direction: ltr; }
.bz-split-text .bz-sec-kicker { margin-bottom: 16px; }
.bz-split-text h2 {
  font-family: 'Inter', system-ui, sans-serif;
  font-size: clamp(32px, 3.4vw, 44px); font-weight: 800; letter-spacing: -0.025em;
  line-height: 1.1; margin: 0 0 18px; color: var(--bz-navy-800);
}
.bz-split-text p { font-size: 17px; color: var(--bz-muted); margin: 0 0 24px; }
.bz-split-text ul {
  list-style: none; padding: 0; margin: 0;
  display: flex; flex-direction: column; gap: 14px;
}
.bz-split-text ul li {
  display: flex; align-items: flex-start; gap: 12px;
  font-size: 15px; color: var(--bz-ink-2); font-weight: 500;
}
.bz-split-text ul li::before {
  content: ''; width: 22px; height: 22px; border-radius: 50%; background: var(--bz-green);
  flex-shrink: 0;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='14' height='14' viewBox='0 0 24 24' fill='none' stroke='%23042510' stroke-width='3.5' stroke-linecap='round' stroke-linejoin='round'%3E%3Cpolyline points='20 6 9 17 4 12'/%3E%3C/svg%3E");
  background-repeat: no-repeat; background-position: center;
  margin-top: 1px;
}
.bz-split-phone { display: flex; justify-content: center; position: relative; }
.bz-split-phone .bz-phone { transform: rotate(0); width: 320px; }
.bz-split-phone.bz-tilt-l .bz-phone { transform: rotate(0); }
.bz-split-phone.bz-tilt-r .bz-phone { transform: rotate(0); }
.bz-split-phone::before {
  content: ''; position: absolute; inset: 30px; border-radius: 50%;
  background: radial-gradient(circle, rgba(61,219,111,.18) 0%, transparent 60%);
  z-index: 0;
}

/* ===== Tour strip ===== */
.bz-strip-section {
  background: var(--bz-navy-800); color: #fff;
  padding: 90px 0;
  position: relative; overflow: hidden;
}
.bz-strip-arrow {
  /* Hidden by default; only revealed on devices with a fine pointer below. */
  display: none;
  position: absolute; top: 60%; transform: translateY(-50%);
  z-index: 3;
  width: 48px; height: 48px;
  border-radius: 50%; border: 1px solid rgba(255,255,255,.2);
  background: rgba(10,29,58,.7);
  backdrop-filter: blur(8px);
  color: #fff;
  align-items: center; justify-content: center;
  cursor: pointer;
  transition: background .15s ease, border-color .15s ease, transform .15s ease;
}
.bz-strip-arrow:hover {
  background: var(--bz-navy-800);
  border-color: var(--bz-green);
  color: var(--bz-green);
}
.bz-strip-arrow:active { transform: translateY(-50%) scale(.94); }
.bz-strip-arrow-prev { left: 16px; }
.bz-strip-arrow-next { right: 16px; }
@media (hover: hover) and (pointer: fine) {
  .bz-strip-arrow { display: inline-flex; }
}
.bz-strip-section::before {
  content: ''; position: absolute; inset: 0;
  background-image:
    linear-gradient(rgba(255,255,255,.04) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255,255,255,.04) 1px, transparent 1px);
  background-size: 60px 60px;
  opacity: .4;
  pointer-events: none;
}
.bz-strip-section .bz-sec-head h2 { color: #fff; }
.bz-strip-section .bz-sec-head p { color: rgba(255,255,255,.65); }
.bz-strip-section .bz-sec-kicker { background: rgba(61,219,111,.15); color: var(--bz-green); }
.bz-strip-track {
  position: relative; z-index: 2;
  display: flex; gap: 28px; padding: 20px 0;
  overflow-x: auto; scroll-snap-type: x mandatory;
  scrollbar-width: none;
  padding-left: max(28px, calc((100vw - 1200px)/2));
  padding-right: max(28px, calc((100vw - 1200px)/2));
}
.bz-strip-track::-webkit-scrollbar { display: none; }
.bz-strip-card { flex-shrink: 0; width: 240px; scroll-snap-align: start; }
.bz-strip-card .bz-phone-mini {
  width: 100%; aspect-ratio: 9/19.5;
  background: #050d1c; border-radius: 32px; padding: 8px;
  box-shadow: 0 30px 50px -20px rgba(0,0,0,.6), 0 0 0 1px rgba(255,255,255,.08);
  overflow: hidden;
}
.bz-strip-card .bz-phone-mini > div { width: 100%; height: 100%; border-radius: 24px; overflow: hidden; }
.bz-strip-card .bz-phone-mini img { width: 100%; height: 100%; object-fit: cover; object-position: top; }
.bz-strip-card .bz-name { margin-top: 18px; font-size: 14px; font-weight: 700; color: #fff; letter-spacing: -0.01em; }
.bz-strip-card .bz-sub { font-size: 12.5px; color: rgba(255,255,255,.55); margin-top: 4px; }

/* ===== Who it's for ===== */
.bz-who { background: #fff; }
.bz-who-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 24px; }
.bz-who-card {
  padding: 36px 28px; border-radius: 20px;
  background: var(--bz-bg-soft);
  border: 1px solid var(--bz-line);
}
.bz-who-card .bz-icon {
  width: 44px; height: 44px; border-radius: 12px;
  background: rgba(61,219,111,.15); color: var(--bz-green-dark);
  display: flex; align-items: center; justify-content: center;
  margin-bottom: 18px;
}
.bz-who-card h4 {
  font-family: 'Inter', system-ui, sans-serif;
  font-size: 16px; font-weight: 700; margin: 0 0 8px;
  color: var(--bz-navy-800); letter-spacing: -0.01em;
}
.bz-who-card p { font-size: 14px; color: var(--bz-muted); margin: 0; }

/* ===== CTA section ===== */
.bz-cta {
  background:
    radial-gradient(ellipse at 20% 0%, rgba(61, 219, 111, 0.18) 0%, transparent 50%),
    linear-gradient(135deg, #0a1d3a 0%, #14366b 100%);
  color: #fff;
  position: relative; overflow: hidden;
}
.bz-cta-inner { text-align: center; max-width: 720px; margin: 0 auto; position: relative; z-index: 2; }
.bz-cta-inner .bz-sec-kicker { background: rgba(61,219,111,.15); color: var(--bz-green); }
.bz-cta-inner h2 {
  font-family: 'Inter', system-ui, sans-serif;
  font-size: clamp(34px, 4vw, 52px); font-weight: 800; letter-spacing: -0.025em;
  line-height: 1.05; margin: 0 0 18px; color: #fff;
}
.bz-cta-inner p.bz-lede { color: rgba(255,255,255,.75); font-size: 19px; margin: 0 0 36px; }
.bz-cta-buttons { display: flex; gap: 14px; justify-content: center; flex-wrap: wrap; }
.bz-cta-disclaimer {
  margin: 28px 0 0; font-size: 13.5px;
  color: rgba(255,255,255,.6); font-weight: 500;
}
.bz-cta-disclaimer svg { vertical-align: -2px; margin-right: 4px; }

/* ===== Responsive ===== */
@media (max-width: 980px) {
  .bz-hero { padding: 110px 0 80px; }
  .bz-hero-grid { grid-template-columns: 1fr; gap: 48px; }
  .bz-hero .bz-phone-wrap { display: none; }
  .bz-phone { width: 240px; }
  .bz-section { padding: 70px 0; }
  .bz-bento { grid-template-columns: 1fr; }
  .bz-bcard.bz-col-3, .bz-bcard.bz-col-2 { grid-column: span 1; }
  .bz-split-row { grid-template-columns: 1fr; gap: 48px; margin-bottom: 80px; }
  .bz-split-row.bz-flip { direction: ltr; }
  .bz-split-phone .bz-phone { width: 256px; }
  .bz-who-grid { grid-template-columns: repeat(2, 1fr); }
}
@media (max-width: 560px) {
  .bz-who-grid { grid-template-columns: 1fr; }
  .bz-hero h1 { font-size: 44px; }
  .bz-bcard { padding: 28px; min-height: 320px; }
}
</content>
</invoke>