/* ── Poppins (self-hosted, loaded only with this page) — T16856 ── */
@font-face{font-family:'Poppins';src:url('/assets/fonts/Poppins-Regular.ttf') format('truetype');font-weight:400;font-style:normal;font-display:swap;}
@font-face{font-family:'Poppins';src:url('/assets/fonts/Poppins-Medium.ttf') format('truetype');font-weight:500;font-style:normal;font-display:swap;}
@font-face{font-family:'Poppins';src:url('/assets/fonts/Poppins-SemiBold.ttf') format('truetype');font-weight:600;font-style:normal;font-display:swap;}
@font-face{font-family:'Poppins';src:url('/assets/fonts/Poppins-Bold.ttf') format('truetype');font-weight:700;font-style:normal;font-display:swap;}
@font-face{font-family:'Poppins';src:url('/assets/fonts/Poppins-ExtraBold.ttf') format('truetype');font-weight:800;font-style:normal;font-display:swap;}

/* ═══════════════════════════════════════════════
   CamCast Product Page — camcast_v2025.css
   Scoped under #page_content / main
   Breakpoints: 1180px (tablet) / 720px (mobile)
   ═══════════════════════════════════════════════ */

/* ── Page-scoped tokens ── */
#page_content {
  --cc-orange:       #E58120;
  --cc-orange-light: #FFCD9D;
  --cc-orange-bg:    #F2A75E;
  --cc-orange-dark:  #D36A00;
  --cc-gray-05:      #F5F5F5;
  --cc-card-bg:      #1C1C1C;
  --cc-text-sub:     rgba(255,255,255,.82);
  --cc-spec-text:    #1C2D38;
  font-family: "Poppins", "Noto Sans TC", "Noto Sans SC", "PingFang TC", "PingFang SC", "Microsoft JhengHei", "Microsoft YaHei", -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, sans-serif;
}


/* ── Shared section reset ── */
main .cc-section {
  width: 100%;
  max-width: 1920px;
  margin: 0 auto;
  padding: 0;
  overflow: hidden;
}


/* ── Buttons ── */
#page_content .cc-btn-primary {
  display: inline-block;
  padding: 8px 24px;
  font-size: 20px;
  font-weight: 700;
  line-height: 130%;
  border-radius: 100rem;
  border: none;
  cursor: pointer;
  color: var(--black-white);
  background: linear-gradient(180deg, #EEC798 0%, #D49047 100%);
  box-shadow: 0 8px 24px rgba(212,144,71,.35);
  transition: background .3s ease, box-shadow .3s ease, transform .15s ease;
  text-decoration: none;
}
#page_content .cc-btn-primary:hover {
  background: #D0853B;
  box-shadow: 0 10px 28px rgba(208,133,59,.45);
}
#page_content .cc-btn-primary:active {
  background: #E0AA6B;
  box-shadow: 0 4px 14px rgba(224,170,107,.4);
  transform: translateY(1px);
}

#page_content .cc-btn-light {
  display: inline-block;
  font-family: "Poppins", "Noto Sans TC", "Noto Sans SC", "PingFang TC", "PingFang SC", "Microsoft JhengHei", "Microsoft YaHei", -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, sans-serif;
  padding: 14px 40px;
  font-size: 18px;
  font-weight: 700;
  line-height: 130%;
  border-radius: 100rem;
  border: none;
  cursor: pointer;
  color: var(--cc-spec-text);
  background: var(--cc-gray-05);
  transition: background .3s ease, box-shadow .3s ease, transform .15s ease;
  text-decoration: none;
}
#page_content .cc-btn-light:hover {
  background: #fff;
  box-shadow: 0 8px 24px rgba(0,0,0,.25);
}
#page_content .cc-btn-light:active {
  background: #E2E2E2;
  transform: translateY(1px);
}


/* ═══════════════════════════════════════════════
   S1 — Hero
   ═══════════════════════════════════════════════ */
main .cc-hero {
  position: relative;
  width: 100%;
  aspect-ratio: 1280 / 720;
  max-height: 100vh;
  overflow: hidden;
}
main .cc-hero-bg {
  position: absolute;
  inset: 0;
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
}
main .cc-hero-content {
  position: relative;
  z-index: 1;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: flex-start;
  height: 100%;
  padding: 120px 64px 64px;
  gap: 24px;
  width: 38%;
  margin: 0 0 0 40%;
  transform: translateX(-100%);
  max-width: 640px;
  min-width: 320px;
  box-sizing: border-box;
}
main .cc-hero-content > * {
  margin-left: 0;
}
main .cc-hero-logo {
  max-height: 72px;
  width: auto;
  filter: drop-shadow(0 2px 5px rgba(0, 0, 0, .2));
}
main .cc-hero h1 {
  font-size: 32px;
  font-weight: 700;
  line-height: 1.3;
  letter-spacing: 1px;
  color: var(--black-white);
  white-space: pre-line;
  filter: drop-shadow(0 2px 5px rgba(0, 0, 0, .2));
}

@media screen and (max-width: 1180px) {
  main .cc-hero {
    aspect-ratio: 834 / 1000;
  }
  main .cc-hero-bg {
    background-position: center bottom;
  }
  main .cc-hero-content {
    justify-content: flex-start;
    align-items: center;
    text-align: center;
    max-width: 100%;
    width: 100%;
    padding: 48px 40px;
    transform: translateX(0);
    margin: 0;
  }
  main .cc-hero-content > * {
    margin-left: auto;
  }
}
@media screen and (max-width: 720px) {
  main .cc-hero {
    aspect-ratio: 4 / 6;
  }
  main .cc-hero-content {
    padding: 56px 16px;
    gap: 16px;
  }
  main .cc-hero-logo {
    height: 48px;
  }
  main .cc-hero h1 {
    font-size: 24px;
    color: var(--black-white);
  }
}


/* ═══════════════════════════════════════════════
   S2 + S3 — Highlight → One source 4 all
   Pinned scroll transition
   ═══════════════════════════════════════════════ */
main .cc-gz-wrap {
  position: relative;
  height: 320vh; /* T16856 桌機/平板；手機另覆寫 220vh。尾段 dwell 由 JS animEnd 控制 */
  background: #F2A75E; /* T16856 單一色（原為 orange→orange-light 漸層） */
  padding: 0;
  max-width: none;
}
/* T16856 PC 加高 wrap 供影片 dwell（JS DEAD_START/ANIM_END 對應，動畫不壓縮） */
@media screen and (min-width: 1181px) {
  main .cc-gz-wrap { height: 420vh; }
}
main .cc-gz-stage {
  position: sticky;
  top: 0;
  height: 100vh;
  overflow: hidden;
}
main .cc-gz-layer {
  position: absolute;
  inset: 0;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  padding: 56px 40px 32px; /* T16856 top 56px clears the fixed NAV.scroll-top so the title isn't hidden under it on short viewports */
}
main .cc-gz-layer-b {
  opacity: 0;
}
main .cc-gz-title {
  font-size: 40px;
  font-weight: 800;
  line-height: 1.1;
  letter-spacing: 1px;
  color: var(--black-white);
  margin-bottom: 24px;
  text-align: center;
}

/* Grid */
main .cc-gz-grid {
  display: grid;
  grid-template-columns: 1fr 1fr 1fr 1fr 1fr 1fr; /* T16856: 6-col grid per Figma */
  grid-template-rows: auto auto;
  gap: 20px;
  /* T16856 height-aware cap: keep 960 on tall screens; on short viewports shrink the grid
     (its height ≈ 0.64×width) so title + grid fit under the fixed nav within 100vh. */
  max-width: min(960px, calc((100vh - 170px) * 1.5));
  width: 100%;
}
main .cc-gz-cell {
  border-radius: 20px;
  overflow: hidden;
  position: relative;
  margin: 0; /* T16856 override basic_v2025 `body *{margin:0 auto}`; auto margins disable grid stretch → aspect-ratio overflows the column */
  min-width: 0;
}
main .cc-gz-cell img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}
/* Row 1: two wide cells spanning 2 cols each */
main .cc-gz-cell.cc-gz-wide:nth-child(1) {
  grid-column: 1 / 4;
  aspect-ratio: 1980 / 1200;
}
main .cc-gz-cell.cc-gz-wide:nth-child(2) {
  grid-column: 4 / 7;
  aspect-ratio: 1980 / 1200;
}
/* Row 2 left stack: range + power.
   T16856: keep landscape aspect and anchor top/bottom (align-self) instead of
   stretching to the tall row height created by the centre square. */
main .cc-gz-cell.cc-gz-short:nth-child(3) {
  grid-column: 1 / 3;
  grid-row: 2;
  aspect-ratio: 1980 / 912;
  align-self: start;
}
main .cc-gz-cell.cc-gz-short:nth-child(4) {
  grid-column: 1 / 3;
  grid-row: 3;
  aspect-ratio: 1980 / 912;
  align-self: end;
}
/* Row 2 center: target (1:1) — the sizer for rows 2-3 */
main .cc-gz-cell.cc-gz-square:nth-child(5) {
  grid-column: 3 / 5;
  grid-row: 2 / 4;
  aspect-ratio: 1 / 1;
}
/* Row 2 right: save (1:1), anchored to the top of the two-row span */
main .cc-gz-cell.cc-gz-square:nth-child(6) {
  grid-column: 5 / 7;
  grid-row: 2 / 4;
  aspect-ratio: 1 / 1;
  align-self: start;
}

/* Target cell overlay product */
main .cc-gz-target {
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: visible; /* T16856 let #gzProduct scale beyond the cell without being clipped */
}
main .cc-gz-target-bg {
  position: absolute;
  inset: 0;
  z-index: 1;
  border-radius: 20px; /* keep rounded corners now that the cell no longer clips */
}
main .cc-gz-product { /* rest size = 100% of the target cell (via `main .cc-gz-cell img{width/height:100%}`); the JS grows from that 100% box → no shrink on entry */
  position: relative;
  z-index: 2;
  width: 60%;
  height: auto;
  max-width: none; /* T16856 override global img{max-width:100%} so it can grow to the video width */
  flex-shrink: 0; /* T16856 keep the JS-set px width; don't let the narrow grid cell shrink it back */
  object-fit: contain;
}

/* Layer B inner */
main .cc-gz-inner-b {
  max-width: 960px;
  width: 100%;
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
}
main .cc-gz-text {
  margin-bottom: 24px;
}
main .cc-gz-text h2 {
  font-size: 48px;
  font-weight: 800;
  line-height: 1.15;
  color: var(--black-white);
  margin-bottom: 20px;
}
main .cc-gz-text p {
  font-size: 20px;
  font-weight: 500;
  line-height: 1.3;
  color: var(--black-white);
  white-space: pre-line;
}
main .cc-gz-video {
  width: 100%;
  /* T16856 height-aware cap: on short viewports shrink the 16:9 video so text + video
     fit under the fixed nav within 100vh (title otherwise clipped). Keeps 960 when tall. */
  max-width: min(960px, calc((100vh - 320px) * 1.778));
  aspect-ratio: 16 / 9;
  border-radius: 20px;
  overflow: hidden;
}
main .cc-gz-video .lazy-video {
  width: 100%;
  height: 100%;
  background-size: cover;
  background-position: center;
}

@media screen and (max-width: 1180px) {
  main .cc-gz-title {
    font-size: 34px;
  }
  main .cc-gz-text h2 {
    font-size: 40px;
  }
}
@media screen and (max-width: 720px) {
  /* T16856 mobile: shorten the orange block and centre content vertically so the
     100vh stage isn't half-empty (content otherwise sat in the top half only). */
  main .cc-gz-wrap {
    height: 220vh;
  }
  main .cc-gz-layer {
    padding: 56px 16px 32px; /* keep NAV clearance on mobile too */
    justify-content: center;
  }
  /* Layer A (grid): top-align with extra top space so the title keeps a comfortable
     gap below the fixed nav (layer B stays centred). */
  #gzLayerA {
    justify-content: flex-start;
    padding-top: 96px;
  }
  main .cc-gz-title {
    font-size: 24px;
  }
  main .cc-gz-grid {
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
    /* T16856 mobile height-aware cap: full-width wide cells make the grid tall (~2×width);
       shrink it so title (top-aligned at 96px) + grid fit within 100vh without overflow. */
    max-width: calc((100vh - 190px) * 0.5);
  }
  /* Mobile reorder */
  main .cc-gz-cell.cc-gz-wide:nth-child(1) { order: 1; width: 100%; flex: 0 0 100%; aspect-ratio: 1980/1200; }
  main .cc-gz-cell.cc-gz-square:nth-child(5) { order: 2; width: calc(50% - 4px); flex: 0 0 calc(50% - 4px); aspect-ratio: 1/1; }
  main .cc-gz-cell.cc-gz-square:nth-child(6) { order: 3; width: calc(50% - 4px); flex: 0 0 calc(50% - 4px); aspect-ratio: 1/1; }
  main .cc-gz-cell.cc-gz-wide:nth-child(2) { order: 4; width: 100%; flex: 0 0 100%; aspect-ratio: 1980/1200; }
  main .cc-gz-cell.cc-gz-short:nth-child(3) { order: 5; width: calc(50% - 4px); flex: 0 0 calc(50% - 4px); aspect-ratio: 1980/912; }
  main .cc-gz-cell.cc-gz-short:nth-child(4) { order: 6; width: calc(50% - 4px); flex: 0 0 calc(50% - 4px); aspect-ratio: 1980/912; }
  main .cc-gz-text h2 {
    font-size: 30px;
  }
  main .cc-gz-text p {
    font-size: 15px;
  }
}


/* ═══════════════════════════════════════════════
   S4 — Control your camera
   ═══════════════════════════════════════════════ */
main .cc-control {
  background: var(--black-100);
  padding: 120px 40px 80px;
}
main .cc-control-inner {
  display: flex;
  flex-direction: row;
  gap: 36px;
  max-width: 1280px;
  margin: 0 auto;
  align-items: center;
}
main .cc-control-video {
  flex: 1;
}
main .cc-control-video .lazy-video {
  width: 100%;
  aspect-ratio: 1080 / 773;
  border-radius: 20px;
  background-size: cover;
  background-position: center;
  overflow: hidden;
}
main .cc-control-text {
  flex: 1;
  display: flex;
  flex-direction: column;
}
main .cc-control-text h2 {
  font-size: 40px;
  font-weight: 800;
  line-height: 1.3;
  color: var(--black-white);
  margin-left: 0;
}
main .cc-control-text p {
  font-size: 20px;
  font-weight: 500;
  line-height: 1.35;
  color: var(--cc-text-sub);
}
/* T16856 S4 accordion (Adjust Parameters / Focus & Shoot) */
main .cc-acc { display: flex; flex-direction: column; gap: 16px; margin: 16px 0 0; font-family: "Poppins", "Noto Sans TC", "Noto Sans SC", "PingFang TC", "PingFang SC", "Microsoft JhengHei", "Microsoft YaHei", -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, sans-serif;}
main .cc-acc-item { margin: 0; background: var(--cc-card-bg); border-radius: 12px; overflow: hidden; }
main .cc-acc-head { width: 100%; margin: 0; display: flex; align-items: center; justify-content: space-between; gap: 16px; padding: 20px 24px; background: transparent; border: 0; cursor: pointer; text-align: left; color: var(--black-white); font-size: 20px; font-weight: 700; line-height: 1.3;  font-family: "Poppins", "Noto Sans TC", "Noto Sans SC", "PingFang TC", "PingFang SC", "Microsoft JhengHei", "Microsoft YaHei", -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, sans-serif;}
main .cc-acc-head span { margin: 0; }
main .cc-acc-chev { flex: 0 0 auto; align-self: flex-end; color: #fff; transition: transform .3s ease; margin: 0;
}
main .cc-acc-item.is-open .cc-acc-chev { transform: rotate(180deg); }
/* T16856 grid-rows 0fr↔1fr 動畫實際高度，開/闔對稱同步（原 max-height 會先開後闔） */
main .cc-acc-body { display: grid; grid-template-rows: 0fr; transition: grid-template-rows .4s ease; }
main .cc-acc-item.is-open .cc-acc-body { grid-template-rows: 1fr; }
main .cc-acc-body > div { overflow: hidden; min-height: 0; width: 100%; } /* inner wrapper collapses fully incl. p padding */
main .cc-acc-body p { margin: 0; padding: 0 24px 22px; font-size: 16px; font-weight: 500; line-height: 1.5; color: var(--cc-text-sub); }
/* T16856 PC(>=1181)：手風琴全數展開、不收闔；tablet 以下(<=1180)才是收闔切換 */
@media screen and (min-width: 1181px) {
  main .cc-acc-body { grid-template-rows: 1fr; }
  main .cc-acc-chev { display: none; }
  main .cc-acc-head { cursor: default; padding: 20px 24px 10px;}
}

@media screen and (max-width: 1180px) {
  main .cc-control {
    padding: 120px 32px 80px;
  }
  main .cc-control-inner {
    flex-direction: column-reverse;
    gap: 36px;
  }
  main .cc-control-video,
  main .cc-control-text {
    max-width: 100%;
    width: 100%;
  }
  main .cc-control-text h2 {
    font-size: 34px;
  }
}
@media screen and (max-width: 720px) {
  main .cc-control {
    padding: 64px 16px 32px;
  }
  main .cc-control-text h2 {
    font-size: 24px;
  }
  main .cc-control-text p {
    font-size: 15px;
  }
}


/* ═══════════════════════════════════════════════
   S5 — Ready to go live
   ═══════════════════════════════════════════════ */
main .cc-golive {
  background: var(--black-100);
  padding: 80px 40px;
}
main .cc-golive-inner {
  max-width: 960px;
  margin: 0 auto;
  text-align: center;
}
main .cc-golive-text {
  margin-bottom: 36px;
}
main .cc-golive-text h2 {
  font-size: 48px;
  font-weight: 800;
  line-height: 1.15;
  color: var(--black-white);
  margin-bottom: 24px;
  white-space: pre-line;
}
main .cc-golive-text p {
  font-size: 20px;
  font-weight: 500;
  line-height: 1.3;
  color: var(--cc-text-sub);
}
main .cc-golive-img {
  width: 100%;
  border-radius: 20px;
  overflow: hidden;
}
main .cc-golive-img img {
  width: 100%;
  aspect-ratio: 1980 / 1114;
  object-fit: cover;
}

@media screen and (max-width: 1180px) {
  main .cc-golive {
    padding: 80px 32px;
  }
  main .cc-golive-text h2 {
    font-size: 40px;
  }
}
@media screen and (max-width: 720px) {
  main .cc-golive {
    padding: 32px 16px;
  }
  main .cc-golive-text h2 {
    font-size: 30px;
  }
  main .cc-golive-text p {
    font-size: 15px;
  }
}


/* ═══════════════════════════════════════════════
   S6 / S7 — Stay back (Focus Zoom)
   ═══════════════════════════════════════════════ */
main .cc-cf-wrap {
  position: relative;
  height: 340vh;
  background: var(--black-100);
  padding: 0;
  max-width: none;
}
main .cc-cf-stage {
  position: sticky;
  top: 0;
  height: 100vh;
  overflow: hidden;
}
main .cc-cf-frame {
  position: absolute;
  top: 50%;
  left: 10%;
  width: min(960px, 50vw);
  aspect-ratio: 16 / 9;
  transform: translateY(-50%);
  border-radius: 20px;
  background-size: 200%;
  background-position: 57% 20%;
  background-repeat: no-repeat;
  box-shadow: 0 24px 64px rgba(0,0,0,.5);
  overflow: hidden;
}
main .cc-cf-text {
  position: absolute;
  top: 50%;
  right: 40px;
  transform: translateY(-50%);
  width: 36%;
  max-width: 420px;
}
main .cc-cf-text h2 {
  font-size: 48px;
  font-weight: 800;
  line-height: 1.15;
  color: var(--black-white);
  margin-bottom: 24px;
  white-space: pre-line;
}
main .cc-cf-text p {
  font-size: 20px;
  font-weight: 500;
  line-height: 1.3;
  color: var(--cc-text-sub);
}

/* Tablet / Mobile: degrade to static */
@media screen and (max-width: 1180px) {
  main .cc-cf-wrap {
    height: auto;
  }
  main .cc-cf-stage {
    position: static;
    height: auto;
    display: flex;
    flex-direction: column;
    padding: 64px 32px;
    gap: 24px;
  }
  main .cc-cf-frame {
    position: static;
    transform: none;
    width: 100%;
    max-width: 960px;
    margin: 0 auto;
    background-size: cover;
    background-position: center;
    box-shadow: none;
  }
  main .cc-cf-text {
    position: static;
    transform: none;
    width: 100%;
    max-width: 960px;
    margin: 0 auto;
    order: -1;
  }
  main .cc-cf-text h2 {
    font-size: 40px;
  }
}
@media screen and (max-width: 720px) {
  main .cc-cf-stage {
    padding: 64px 16px;
  }
  main .cc-cf-text h2 {
    font-size: 30px;
  }
  main .cc-cf-text p {
    font-size: 15px;
  }
}


/* ═══════════════════════════════════════════════
   S8 / S9 — Shared orange background
   ═══════════════════════════════════════════════ */
main .cc-bg-orange {
  background-color: var(--cc-orange-bg);
  color: var(--black-white);
}

/* Eyebrow */
#page_content .cc-eyebrow {
  font-size: 24px;
  font-weight: 700;
  line-height: 1.35;
  color: var(--cc-orange);
  margin-bottom: -16px;
}


/* ═══════════════════════════════════════════════
   S8 — Flexible mounting
   ═══════════════════════════════════════════════ */
main .cc-mount {
  padding: 120px 40px 64px;
}
main .cc-mount-inner {
  display: flex;
  flex-direction: row;
  gap: 36px;
  max-width: 1000px;
  margin: 0 auto;
  align-items: center;
}
main .cc-mount-video {
  flex: 0 1 400px;
  max-width: 400px;
}
main .cc-mount-text {
  flex: 1;
  max-width: 600px;
  display: flex;
  flex-direction: column;
  gap: 24px;
}
main .cc-mount-text > *, main .cc-power-text > *{
  margin-left: 0;
}
main .cc-mount-text h2 {
  font-size: 48px;
  font-weight: 800;
  line-height: 1.15;
  color: var(--black-white);
  white-space: pre-line;
}
main .cc-mount-text p {
  font-size: 20px;
  font-weight: 500;
  line-height: 1.3;
  color: var(--black-white);
}

/* Video box (shared S8/S9) */
#page_content .cc-video-box {
  position: relative;
  width: 100%;
  aspect-ratio: 1 / 1;
  border-radius: 20px;
  overflow: hidden;
  background: transparent;
}
#page_content .cc-mount-vid {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  background-size: cover;
  background-position: center;
  opacity: 0;
  transition: opacity .4s ease;
  pointer-events: none;
}
#page_content .cc-mount-vid.is-active {
  opacity: 1;
  pointer-events: auto;
}
#page_content .cc-mount-vid video {
  height: 100%;
  width: auto;
  margin: 0 auto;
  display: block;
  object-fit: contain;
}

/* Segmented toggle (shared S8/S9) */
#page_content .cc-segmented {
  position: relative;
  display: inline-flex;
  height: 44px;
  border-radius: 100rem;
  box-shadow: inset 0 0 0 2px #fff;
  overflow: hidden;
}
#page_content .cc-seg-thumb {
  position: absolute;
  top: 0;
  left: 0;
  height: 100%;
  background: #fff;
  border-radius: 100rem;
  transition: transform .38s cubic-bezier(.4,0,.2,1), width .38s cubic-bezier(.4,0,.2,1);
  z-index: 0;
}
#page_content .cc-seg-btn {
  position: relative;
  z-index: 1;
  padding: 8px 24px;
  font-size: 20px;
  font-weight: 700;
  line-height: 1;
  white-space: nowrap;
  border: none;
  background: none;
  cursor: pointer;
  color: #fff;
  font-family: inherit;
  transition: color .38s ease;
}
#page_content .cc-seg-btn.is-active {
  color: var(--cc-orange-dark);
}

@media screen and (max-width: 1180px) {
  main .cc-mount {
    padding: 120px 32px 64px;
  }
  main .cc-mount-text h2 {
    font-size: 40px;
  }
}
@media screen and (max-width: 720px) {
  main .cc-mount {
    padding: 64px 16px 32px;
  }
  main .cc-mount-inner {
    flex-direction: column-reverse;
    gap: 24px;
  }
  main .cc-mount-video {
    flex: none;
    max-width: 100%;
    width: 100%;
  }
  main .cc-mount-text {
    max-width: 100%;
    text-align: center;
    align-items: center;
  }
  main .cc-mount-text > *, main .cc-power-text > *{
    margin-left: auto;
  }
  main .cc-mount-text h2 {
    font-size: 30px;
  }
  main .cc-mount-text p {
    font-size: 15px;
  }
  #page_content .cc-eyebrow {
    font-size: 18px;
  }
}


/* ═══════════════════════════════════════════════
   S9 — Flexible powering (mirrored layout)
   ═══════════════════════════════════════════════ */
main .cc-power {
  padding: 64px 40px 120px;
}
main .cc-power-inner {
  display: flex;
  flex-direction: row;
  gap: 36px;
  max-width: 1000px;
  margin: 0 auto;
  align-items: center;
}
main .cc-power-text {
  flex: 1;
  max-width: 600px;
  display: flex;
  flex-direction: column;
  gap: 24px;
}
main .cc-power-text h2 {
  font-size: 48px;
  font-weight: 800;
  line-height: 1.15;
  color: var(--black-white);
  white-space: pre-line;
}
main .cc-power-text p {
  font-size: 20px;
  font-weight: 500;
  line-height: 1.3;
  color: var(--black-white);
}
main .cc-power-video {
  flex: 0 1 400px;
  max-width: 400px;
}

@media screen and (max-width: 1180px) {
  main .cc-power {
    padding: 64px 32px 120px;
  }
  main .cc-power-text h2 {
    font-size: 40px;
  }
}
@media screen and (max-width: 720px) {
  main .cc-power {
    padding: 32px 16px 64px;
  }
  main .cc-power-inner {
    flex-direction: column;
    gap: 24px;
  }
  main .cc-power-text {
    max-width: 100%;
    text-align: center;
    align-items: center;
  }
  main .cc-power-text h2 {
    font-size: 30px;
  }
  main .cc-power-text p {
    font-size: 15px;
  }
  main .cc-power-video {
    flex: none;
    max-width: 100%;
    width: 100%;
  }
}


/* ═══════════════════════════════════════════════
   S10 — Gallery
   ═══════════════════════════════════════════════ */
main .cc-gallery {
  background: var(--black-100);
  padding: 120px 40px 64px;
}
/* T16856: flattened — items are direct children of .cc-gallery-grid so RWD reorder (order) works globally */
main .cc-gallery-grid {
  max-width: 960px;
  margin: 0 auto;
  display: flex;
  flex-wrap: wrap;
  gap: 24px;
}
/* Desktop: row 1 = g1,g2 (50/50); row 2 = g3,g4,g5 (30/40/30) */
main .cc-gallery-grid .cc-g1,
main .cc-gallery-grid .cc-g2 { flex: 0 0 calc(50% - 12px); }
main .cc-gallery-grid .cc-g1 img,
main .cc-gallery-grid .cc-g2 img { aspect-ratio: 1980 / 1114; }
main .cc-gallery-grid .cc-g3 { flex: 0 0 calc(30% - 16px); }
main .cc-gallery-grid .cc-g4 { flex: 0 0 calc(40% - 16px); }
main .cc-gallery-grid .cc-g5 { flex: 0 0 calc(30% - 16px); }
main .cc-gallery-grid .cc-g3 img,
main .cc-gallery-grid .cc-g5 img { aspect-ratio: 1 / 1; }
main .cc-gallery-grid .cc-g4 img { aspect-ratio: 1080 / 810; }
main .cc-gallery-item {
  margin: 0;
  border-radius: 20px;
  overflow: hidden;
}
main .cc-gallery-item img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

@media screen and (max-width: 1180px) {
  main .cc-gallery {
    padding: 120px 32px 64px;
  }
}
@media screen and (max-width: 720px) {
  main .cc-gallery {
    padding: 64px 16px 32px;
  }
  main .cc-gallery-grid {
    gap: 16px;
  }
  /* Mobile reorder — now works because items are direct flex children of the grid */
  main .cc-gallery-grid .cc-g3 { flex: 0 0 calc(36% - 8px); order: 0; }
  main .cc-gallery-grid .cc-g4 { flex: 0 0 calc(64% - 8px); order: 1; }
  main .cc-gallery-grid .cc-g1 { flex: 0 0 100%;            order: 2; }
  main .cc-gallery-grid .cc-g2 { flex: 0 0 calc(57% - 8px); order: 3; }
  main .cc-gallery-grid .cc-g5 { flex: 0 0 calc(43% - 8px); order: 4; }
}


/* ═══════════════════════════════════════════════
   S11 — CamCast App
   ═══════════════════════════════════════════════ */
main .cc-app {
  background: var(--black-100);
  padding: 64px 40px;
}
main .cc-app-inner {
  display: flex;
  flex-direction: row;
  gap: 0;
  max-width: 1260px;
  margin: 0 auto;
  align-items: center;
}
main .cc-app-video {
  flex: 0 1 520px;
  max-width: 520px;
  margin-left: 20px;
}
main .cc-app-video .lazy-video {
  width: 100%;
  aspect-ratio: 1560 / 1080;
  border-radius: 20px;
  background-size: cover;
  background-position: center;
  overflow: hidden;
}
main .cc-app-text {
  flex: 1.35;
  max-width: 840px;
  padding-right: 80px;
  display: flex;
  flex-direction: column;
  gap: 20px;
}
main .cc-app-text > * {
  margin-left: 0;
}

/* App brand row */
#page_content .cc-app-brand {
  display: flex;
  align-items: center;
  gap: 12px;
}
#page_content .cc-app-icon {
  width: 56px;
  height: 56px;
  border-radius: 16px;
  border: 1px solid #fff;
  padding: 6px;
  flex-shrink: 0;
}
#page_content .cc-app-icon img {
  width: 100%;
  height: 100%;
  object-fit: contain;
}
#page_content .cc-app-logo {
  height: 30px;
  width: auto;
}
#page_content .cc-app-label {
  font-size: 28px;
  font-weight: 500;
  color: var(--black-white);
}

main .cc-app-text h2 {
  font-size: 40px;
  font-weight: 800;
  line-height: 1.15;
  color: var(--black-white);
  white-space: pre-line;
}
main .cc-app-text p {
  font-size: 20px;
  font-weight: 500;
  line-height: 1.3;
  color: var(--cc-text-sub);
}

/* App store badges */
#page_content .cc-app-badges {
  display: flex;
  gap: 16px;
  align-items: center;
}
#page_content .cc-badge img {
  height: 46px;
  width: auto;
}

@media screen and (max-width: 1180px) {
  main .cc-app {
    padding: 64px 32px;
  }
  main .cc-app-video {
    flex: 0 1 40%;
    max-width: 40%;
    margin-left: 0;
  }
  main .cc-app-text {
    padding-right: 8px;
  }
  main .cc-app-text h2 {
    font-size: 34px;
  }
}
@media screen and (max-width: 720px) {
  main .cc-app {
    padding: 32px 0;
  }
  main .cc-app-inner {
    flex-direction: column-reverse;
    gap: 24px;
  }
  main .cc-app-video {
    flex: none;
    max-width: 100%;
    width: 100%;
    margin-left: 0;
  }
  main .cc-app-video .lazy-video {
    border-radius: 0;
  }
  main .cc-app-text {
    flex: none;
    max-width: 100%;
    width: 100%;
    padding: 0 16px;
  }
  #page_content .cc-app-icon {
    width: 46px;
    height: 46px;
  }
  #page_content .cc-app-logo {
    height: 26px;
  }
  #page_content .cc-app-label {
    font-size: 20px;
  }
  main .cc-app-text h2 {
    font-size: 24px;
  }
  main .cc-app-text p {
    font-size: 15px;
  }
}


/* ═══════════════════════════════════════════════
   S12 — Specification
   ═══════════════════════════════════════════════ */
main .cc-spec {
  background: var(--black-100);
  padding: 64px 40px;
}
main .cc-spec-inner {
  max-width: 840px;
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 36px;
}
main .cc-spec-inner > h2 {
  font-size: 48px;
  font-weight: 800;
  line-height: 1.15;
  color: var(--black-white);
  text-align: center;
}

/* Table block */
#page_content .cc-spec-block {
  width: 100%;
}
#page_content .cc-spec-header {
  height: 47px;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 0 16px;
  background: #fff;
  color: var(--cc-spec-text);
  font-size: 18px;
  font-weight: 700;
  border-radius: 10px 10px 0 0;
}
#page_content .cc-spec-table {
  border: 1px solid #fff;
  border-top: none;
  border-bottom: none;
  border-radius: 0 0 10px 10px;
}
#page_content .cc-spec-row {
  display: flex;
  flex-direction: row;
}
#page_content .cc-spec-key,
#page_content .cc-spec-val {
  padding: 12px 16px;
  font-size: 18px;
  line-height: 1.4;
  color: var(--black-white);
  display: flex;
  align-items: center;
  box-shadow: inset 0 0 0 1px #fff;
  white-space: pre-line;
}
#page_content .cc-spec-key {
  flex: 0 0 253px;
  font-weight: 700;
}
#page_content .cc-spec-val {
  flex: 1;
  font-weight: 400;
}
#page_content .cc-spec-note {
  font-size: 16px;
  line-height: 1.5;
  opacity: .85;
}
#page_content .cc-spec-row-last {
  border-radius: 0 0 10px 10px;
  overflow: hidden;
}

@media screen and (max-width: 1180px) {
  main .cc-spec {
    padding: 64px 32px;
  }
  main .cc-spec-inner > h2 {
    font-size: 40px;
  }
}
@media screen and (max-width: 720px) {
  main .cc-spec {
    padding: 32px 16px 64px;
  }
  main .cc-spec-inner > h2 {
    font-size: 30px;
  }
  /* Mobile: stack key/val vertically */
  #page_content .cc-spec-row {
    flex-direction: column;
    border-bottom: 1px solid #fff;
  }
  #page_content .cc-spec-key {
    flex: none;
    width: 100%;
    font-weight: 700;
    box-shadow: none;
    border-bottom: 1px solid rgba(255,255,255,.28);
    padding: 10px 16px;
    font-size: 15px;
  }
  #page_content .cc-spec-val {
    flex: none;
    width: 100%;
    box-shadow: none;
    background: rgba(255,255,255,.1);
    padding: 10px 16px;
    font-size: 15px;
    word-break: break-word;
  }
  #page_content .cc-spec-row:last-child {
    border-radius: 0 0 10px 10px;
  }
  #page_content .cc-spec-row:last-child .cc-spec-val {
    border-radius: 0 0 10px 10px;
  }
  #page_content .cc-spec-table {
    border: 1px solid #fff;
  }
}
