/* =============================================
   HERO SECTION
   ============================================= */
.hero {
  position: relative;
  min-height: 745px;
  display: flex;
  align-items: flex-start;
  justify-content: center;
  background: var(--color-a100);
}

.hero__bg {
  position: absolute;
  inset: 0;
  pointer-events: none;
}

.hero__bg img {
  width: 100%;
  height: 676px;
  object-fit: cover;
}

.hero__bg-gradient {
  position: absolute;
  left: 0;
  right: 0;
  bottom: 0;
  height: 535px;
  background: linear-gradient(to bottom, rgba(0,0,0,0) 0%, rgba(0,0,0,1) 100%);
}

.hero__inner {
  position: relative;
  z-index: 1;
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  max-width: 1350px;
}

.hero__header {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0;
  padding-top: 48px;
  width: 100%;
}

.hero__subtitle-row {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 16px;
}

.hero__logo {
  width: 100px;
  height: 18px;
  flex-shrink: 0;
}

.hero__logo svg {
  width: 100px;
  height: 18px;
}

.hero__brand-subtitle {
  font-family: var(--font-heading);
  font-size: 22px;
  font-weight: 400;
  color: var(--sony-light-orange);
  text-shadow: 0 4px 4px rgba(0,0,0,0.25);
  white-space: nowrap;
}

.hero__title {
  font-family: var(--font-heading);
  font-size: 64px;
  font-weight: 900;
  line-height: 44px;
  color: var(--color-a00);
  letter-spacing: -0.96px;
  margin: 30px 0;
}

.hero__title--black {
  font-weight: 900;
  font-style: normal;
}

.hero__title--thin-italic {
  font-weight: 100;
  font-style: italic;
}

.hero__title--black-italic {
  font-weight: 900;
  font-style: italic;
}

.hero__products {
  display: flex;
  align-items: flex-end;
  justify-content: center;
  width: 100%;
  max-width: 1240px;
  position: relative;
  margin-top: 0;
  min-height: 300px;
}

.hero__product-images {
  position: relative;
  width: 732px;
  height: 300px;
  flex-shrink: 0;
  /* overflow: clip; */
}

.hero__product-img {
  position: absolute;
}

.hero__product-img--lens {
  left: 0;
  top: 122px;
  width: 364px;
  height: auto;
}

.hero__product-img--camera {
  left: 318px;
  top: 0;
  width: 347px;
  height: auto;
}

.hero__product-details {
  display: flex;
  flex-direction: column;
  gap: 7px;
  width: 187px;
  flex-shrink: 0;
  align-self: center;
  padding-top: 0;
}

.hero__product-details--lens {
  align-items: flex-end;
  text-align: right;
}

.hero__product-details--camera {
  align-items: flex-start;
  text-align: left;
}

.hero__product-name {
  font-family: var(--font-body);
  font-size: 18px;
  font-weight: 600;
  color: var(--color-a00);
  line-height: 22px;
  text-shadow: 0 0 4px black;
}

.hero__product-price {
  font-family: var(--font-body);
  font-size: 18px;
  font-weight: 800;
  color: var(--color-a00);
  line-height: 20px;
  text-shadow: 0 0 4px black;
}

.hero__product-price.price--loading {
  /* placeholder visible until real price loads */
}

.hero__desc {
  font-family: var(--font-body);
  font-size: 24px;
  color: var(--steel-50);
  line-height: 33px;
  max-width: 1024px;
  text-align: center;
  margin-top: 16px;
  padding: 0 45px 48px;
}

.hero__desc a {
  color: var(--steel-50);
  text-decoration: underline;
  text-decoration-thickness: 1px;
  text-underline-offset: 2px;
  transition: opacity 0.2s;
}

.hero__desc a:hover {
  opacity: 0.8;
}

/* =============================================
   STICKY NAV
   ============================================= */
.sticky-nav {
  position: sticky;
  top: 0;
  z-index: var(--z-sticky-nav);
  background: var(--color-a00);
  box-shadow: var(--shadow-sticky-nav);
}

.sticky-nav__inner {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: var(--space-lg);
  padding: var(--space-sm) var(--space-md);
  max-width: var(--max-width);
  margin: 0 auto;
}

.sticky-nav__link {
  display: inline-flex;
  align-items: center;
  gap: var(--space-xs);
  font-family: var(--font-body);
  font-size: var(--text-body-sm);
  font-weight: 600;
  color: var(--color-a80);
  text-decoration: none;
  padding: var(--space-xs) var(--space-sm);
  border-radius: var(--radius-btn);
  transition: color 0.2s, background 0.2s;
  white-space: nowrap;
}

.sticky-nav__link:hover {
  color: var(--color-a100);
}

.sticky-nav__link svg {
  width: 20px;
  height: 20px;
  flex-shrink: 0;
}

.sticky-nav__link--cta {
  background: var(--steel-100);
  color: var(--color-a00);
}

.sticky-nav__link--cta:hover {
  background: var(--steel-300);
  color: var(--color-a00);
}

/* =============================================
   LIVESTREAM SECTION
   ============================================= */
.livestream {
  background: var(--steel-700);
  padding: 64px 45px;
}

.livestream__inner {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 48px;
  max-width: 1350px;
  margin: 0 auto;
}

.livestream-divider {
  align-self: stretch;
  border-top: 1px solid var(--steel-300);
}

/* -- Primary area (States A/B: side-by-side) -- */
.livestream__primary--panel {
  display: flex;
  gap: 64px;
  width: 100%;
}

/* -- Primary area (State C: stacked) -- */
.livestream__primary--pro {
  display: flex;
  flex-direction: column;
  gap: 32px;
  width: 100%;
}

.livestream__pro-content {
  display: flex;
  align-items: flex-start;
  gap: 64px;
  width: 100%;
}

.livestream__pro-info {
  display: flex;
  flex-direction: column;
  gap: 20px;
  flex: 0 0 619px;
  align-items: flex-start;
}

.livestream__pro-subtitle {
  font-family: var(--font-heading);
  font-size: 28px;
  font-weight: 400;
  line-height: 34px;
  letter-spacing: -0.42px;
  color: var(--steel-100);
}

/* -- Description (States A/B left column) -- */
.livestream__description {
  display: flex;
  flex-direction: column;
  gap: 32px;
  flex: 0 0 619px;
  min-width: 0;
}

.livestream__meta {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 20px;
}

.panel-discussion-wrapper {
    display: flex;
    flex-direction: column;
    gap: 16px;
    align-items: flex-start;
}

.livestream__title {
  font-family: var(--font-heading);
  font-size: 32px;
  font-weight: 700;
  color: var(--color-a00);
  line-height: 38px;
  letter-spacing: -0.48px;
  margin: 0;
}

.livestream__datetime {
  display: flex;
  flex-direction: column;
  gap: 8px;
  color: var(--steel-50);
  font-size: 20px;
  line-height: 27px;
}

.livestream__datetime-item {
  display: flex;
  align-items: center;
  gap: 16px;
}

.livestream__datetime-item svg {
  width: 20px;
  height: 20px;
  flex-shrink: 0;
}

/* -- Speakers Panel (States A/B: 4 speakers, large) -- */
.livestream__speakers-panel {
  background: var(--steel-500);
  border-radius: 6px;
  padding: 20px;
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.livestream__speakers-title {
  font-family: var(--font-body);
  font-size: 18px;
  font-weight: 600;
  color: var(--steel-50);
  line-height: 24px;
}

.livestream__speakers {
  display: flex;
  gap: 16px;
}

.livestream__speaker {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 8px;
  /* cursor: pointer; */
  transition: opacity 0.2s;
  width: 85px;
}

.livestream__speaker:hover {
  /* opacity: 0.8; */
}

.livestream__speaker-img {
  width: 72px;
  height: 72px;
  border-radius: 50%;
  object-fit: cover;
}

.livestream__speaker-name {
  font-size: 18px;
  color: var(--steel-50);
  text-align: center;
  line-height: 24px;
}

/* -- Speakers Panel (State C: 14 speakers, small inline) -- */
.livestream__speakers--inline {
  flex-wrap: wrap;
  gap: 8px;
}

.livestream__speaker--inline {
  flex-direction: row;
  width: 175px;
  gap: 8px;
  align-items: center;
}

.livestream__speaker--inline .livestream__speaker-name {
  font-size: 14px;
  line-height: 19px;
  text-align: left;
  flex: 1;
  min-width: 0;
}

.livestream__speaker-img--sm {
  width: 44px;
  height: 44px;
}

/* -- Video (right side) -- */
.livestream__video {
  flex: 1;
  min-width: 0;
}

/* -- Bottom Bar -- */
.livestream__bar {
  display: flex;
  align-items: center;
  gap: 40px;
  width: 100%;
  background: var(--steel-700);
  border: 1px solid var(--steel-300);
  border-radius: 6px;
  padding: 16px 24px;
}

.livestream__bar-left {
  display: flex;
  align-items: center;
  gap: 16px;
  flex: 1;
  min-width: 0;
}

.livestream__bar-icon {
  width: 48px;
  height: 48px;
  border-radius: 32px;
  background: var(--color-a00);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  color: var(--color-a100);
}

.livestream__bar-icon svg {
  width: 24px;
  height: 24px;
}

.livestream__bar-text {
  display: flex;
  flex-direction: column;
  min-width: 0;
}

.livestream__bar-label {
  font-family: var(--font-heading);
  font-size: 12px;
  font-weight: 400;
  line-height: 16px;
  text-transform: uppercase;
  color: var(--color-a00);
}

.livestream__bar-title {
  font-family: var(--font-heading);
  font-size: 24px;
  font-weight: 600;
  line-height: 28px;
  letter-spacing: -0.36px;
  color: var(--color-a00);
}

.livestream__bar-datetime {
  display: flex;
  flex-direction: column;
  gap: 4px;
  flex-shrink: 0;
}

.livestream__bar-datetime-item {
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 14px;
  line-height: 19px;
  color: var(--steel-50);
  white-space: nowrap;
}

.livestream__bar-datetime-item svg {
  flex-shrink: 0;
}

.livestream__bar-cta {
  flex-shrink: 0;
  width: 176px;
}

.livestream__bar-cta .btn {
  width: 100%;
}

/* =============================================
   CAMERA SECTION
   ============================================= */

/* Camera Hero */
.camera-hero {
  position: relative;
  min-height: 500px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: var(--color-a100);
  overflow: hidden;
}

.camera-hero__video-bg {
  position: absolute;
  inset: 0;
  z-index: 0;
}

.camera-hero__video-bg video {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.camera-hero__overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(to top, rgba(0, 0, 0, 1) 0%, rgba(0, 0, 0, 0.95) 25%, rgba(0, 0, 0, 0.4) 60%, rgba(0, 0, 0, 0.1) 80%, transparent 100%);
  z-index: 1;
}

.camera-hero__inner {
  position: relative;
  z-index: 2;
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  gap: 80px;
  padding: var(--space-xl) var(--space-md);
}

.camera-hero__title-group {
  display: flex;
  flex-direction: column;
  gap: 16px;
  align-items: center;
  max-width: 1024px;
}

.camera-hero__title {
  font-family: var(--font-heading);
  font-size: var(--text-h2);
  font-weight: 800;
  line-height: 52px;
  letter-spacing: -0.72px;
  color: var(--color-a00);
  margin-bottom: 0;
}

.camera-hero__subtitle {
  font-family: var(--font-heading);
  font-size: var(--text-h4);
  font-weight: 600;
  line-height: 32px;
  letter-spacing: -0.42px;
  color: var(--color-a00);
}

.camera-hero__product-img {
  width: 550px;
  max-width: 100%;
  height: auto;
  filter: drop-shadow(var(--shadow-camera-product));
}

/* Camera Description */
.camera-desc {
  background: var(--color-a100);
  padding: 0 0 80px;
}

.camera-desc__inner {
  max-width: 1280px;
  margin: 0 auto;
  text-align: center;
  padding: 0 var(--space-md);
}

.camera-desc__text {
  font-size: 24px;
  color: var(--steel-50);
  line-height: 33px;
}

.section-desc__link {
  color: var(--color-a00);
  font-weight: 600;
  text-decoration: underline;
  text-decoration-thickness: 1px;
  text-underline-offset: 2px;
  cursor: pointer;
  transition: opacity 0.2s;
}

.section-desc__link:hover {
  opacity: 0.8;
}

/* Hands-On Review */
.hands-on {
  background: var(--color-a100);
  padding: 0 0 80px;
}

.hands-on-camera {
  background: var(--steel-700);
  padding: 64px 0;
}

.hands-on-camera-scroll {
  scroll-margin-top: 72px;
}

.hands-on__inner {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: var(--space-md);
}

.hands-on__title {
  font-family: var(--font-heading);
  font-size: var(--text-h3);
  font-weight: 700;
  color: var(--color-a00);
}

.hands-on__video {
  max-width: 960px;
  width: 100%;
  aspect-ratio: 16 / 9;
  border-radius: var(--radius-img);
  overflow: hidden;
}

.hands-on__video .video-thumb {
  height: 100%;
}

/* Camera Highlights */
.camera-highlights {
  background: var(--color-a100);
  padding: 0 0 80px;
}

.camera-highlights__inner {
  max-width: 1280px;
  margin: 0 auto;
  padding: 0 var(--space-md);
}

.camera-highlights__grid {
  display: flex;
  flex-wrap: wrap;
  gap: 24px;
}

/* Camera Features */
.camera-features {
  background: var(--color-a100);
  padding: 0 0 80px;
}

.camera-features__inner {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 32px;
}

/* Dangerous Combination */
.dangerous-combo {
  background: var(--color-a100);
  padding: 0 0 80px;
}

.dangerous-combo__inner {
  max-width: 1280px;
  margin: 0 auto;
  padding: 0 var(--space-md);
}

.dangerous-combo__block {
  border-top: 1px solid var(--steel-500);
  padding-top: 32px;
  display: flex;
  flex-direction: column;
  gap: 48px;
}

.dangerous-combo__block + .dangerous-combo__block {
  margin-top: 80px;
}

.dangerous-combo__header {
  display: flex;
  gap: 32px;
  align-items: flex-start;
}

.dangerous-combo__title {
  font-family: var(--font-heading);
  font-size: 32px;
  font-weight: 700;
  line-height: 38px;
  letter-spacing: -0.48px;
  color: var(--color-a00);
  min-width: 320px;
  max-width: 350px;
  flex-shrink: 0;
}

.dangerous-combo__paragraph {
  flex: 1;
  min-width: 0;
  font-family: var(--font-body);
  font-size: 20px;
  color: var(--steel-50);
  line-height: 27px;
}

.dangerous-combo__paragraph p + p {
  margin-top: 27px;
}

.dangerous-combo__usecases {
  display: flex;
  flex-direction: column;
  gap: 24px;
}

/* Burst Sequence */
.burst-sequence__images {
  display: flex;
  gap: 8px;
  display: none;
}

.burst-sequence__frame {
  flex: 1;
  overflow: hidden;
  opacity: 0.5;
  transition: opacity 0.15s ease;
}

.burst-sequence__frame.is-active {
  opacity: 1;
}

.burst-sequence__frame img {
  width: 100%;
  aspect-ratio: 275 / 166;
  object-fit: cover;
  display: block;
}

/* Camera Sample Images */
.sample-images {
  background: var(--color-a100);
  padding: 0 0 80px;
}

.sample-images__inner {
  max-width: 1280px;
  margin: 0 auto;
  background: var(--steel-700);
  border-radius: 8px;
  padding: 32px;
}

.sample-images__title {
  font-family: var(--font-body);
  font-size: 12px;
  font-weight: 600;
  color: var(--color-a00);
  text-transform: uppercase;
  letter-spacing: 0;
  line-height: 16px;
  margin-bottom: 24px;
  text-align: left;
}

/* =============================================
   COMPARISON SECTION
   ============================================= */
.comparison {
  background: var(--color-a00);
  padding: 48px 0 64px;
  color: var(--color-a100);
}

.comparison__inner {
  max-width: 800px;
  margin: 0 auto;
  padding: 0 var(--space-md);
}

.comparison__header {
  text-align: center;
  margin-bottom: 32px;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 16px;
}

.comparison__label {
  font-family: var(--font-body);
  font-size: 12px;
  font-weight: 600;
  text-transform: uppercase;
  color: var(--steel-300);
  line-height: 16px;
}

.comparison__title {
  font-family: var(--font-heading);
  font-size: 32px;
  font-weight: 700;
  line-height: 38px;
  letter-spacing: -0.48px;
  color: var(--color-a100);
}

.comparison__table {
  border: 1px solid var(--steel-100);
  border-radius: 6px;
  overflow: hidden;
}

.comparison__row {
  display: flex;
  border-top: 1px solid var(--steel-100);
}

.comparison__row:first-child {
  border-top: none;
}

.comparison__cell {
  flex: 1;
  padding: 16px;
  font-family: var(--font-body);
  font-size: 18px;
  font-weight: 600;
  line-height: 24px;
  color: var(--color-a100);
  min-width: 0;
}

.comparison__cell--new {
  background: var(--steel-10);
}

.comparison__row--header .comparison__cell {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 24px;
  padding: 40px 16px;
  position: relative;
}

.comparison__row--header .comparison__cell--new {
  padding: 32px 16px;
}

.comparison__product-name {
  font-family: var(--font-heading);
  font-size: 20px;
  font-weight: 800;
  line-height: 27px;
  color: var(--color-a100);
}

.comparison__product-img {
  width: 146px;
  height: 100px;
  object-fit: contain;
}

.comparison__badge {
  position: absolute;
  bottom: 16px;
  left: 50%;
  transform: translateX(-50%);
  background: var(--sony-orange);
  color: var(--color-a00);
  font-family: var(--font-body);
  font-size: 14px;
  font-weight: 600;
  text-transform: uppercase;
  padding: 6px 12px;
  border-radius: 100px;
  line-height: 14px;
}

.comparison__row--footer .comparison__cell {
  padding: 16px;
  display: flex;
  justify-content: center;
  border-top: none;
}

.comparison__row--footer {
  border-top: none;
}

/* =============================================
   LENS SECTION
   ============================================= */

/* Lens Hero */
.lens-hero {
  position: relative;
  min-height: 600px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: var(--color-a100);
  overflow: hidden;
}

.lens-hero__video-bg {
  position: absolute;
  inset: 0;
  z-index: 0;
}

.lens-hero__video-bg video {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.lens-hero__overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(to top, rgba(0, 0, 0, 1) 0%, rgba(0, 0, 0, 0.95) 25%, rgba(0, 0, 0, 0.4) 60%, rgba(0, 0, 0, 0.1) 80%, transparent 100%);
  z-index: 1;
}

.lens-hero__inner {
  position: relative;
  z-index: 2;
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  gap: var(--space-md);
  padding: var(--space-xxl) var(--space-md);
}

.lens-hero__product-img {
  width: 1150px;
  max-width: 100%;
  height: auto;
}

.lens-hero__title {
  font-family: var(--font-heading);
  font-size: 48px;
  font-weight: 800;
  line-height: 52px;
  letter-spacing: -0.72px;
  color: var(--color-a00);
}

.lens-hero__subtitle {
  font-family: var(--font-heading);
  font-size: 28px;
  font-weight: 400;
  line-height: 32px;
  letter-spacing: -0.42px;
  color: var(--color-a00);
}

/* Lens Description */
.lens-desc {
  background: var(--color-a100);
  padding: 64px 0 80px;
}

.lens-desc__inner {
  max-width: 1280px;
  margin: 0 auto;
  text-align: center;
  padding: 0 var(--space-md);
}

.lens-desc__text {
  font-size: 24px;
  color: var(--steel-50);
  line-height: 33px;
}

/* Lens Highlights */
.lens-highlights {
  background: var(--color-a100);
  padding: 0 0 80px;
}

.lens-highlights__inner {
  max-width: 1280px;
  margin: 0 auto;
  padding: 0 var(--space-md);
}

.lens-highlights__grid {
  display: flex;
  flex-wrap: wrap;
  gap: 24px;
}

/* Lens Features */
.lens-features {
  background: var(--color-a100);
  padding: 0 0 80px;
}

.lens-features__inner {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 32px;
}

/* =============================================
   FOOTER CTA SECTION
   ============================================= */
.footer-cta {
  position: relative;
  min-height: 550px;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow-x: clip;
}

.footer-cta__bg {
  position: absolute;
  inset: 0;
}

.footer-cta__bg img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: bottom;
}

.footer-cta__bg-overlay {
  position: absolute;
  inset: 0;
  background: rgba(0, 0, 0, 0.3);
  mix-blend-mode: multiply;
}

.footer-cta__inner {
  position: relative;
  z-index: 1;
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  gap: 40px;
  max-width: 1024px;
  padding: 80px 20px;
}

.footer-cta__text {
  display: flex;
  flex-direction: column;
  gap: 12px;
  align-items: center;
  width: 100%;
  filter: drop-shadow(0 0 5px rgba(0, 0, 0, 0.4));
}

.footer-cta__title {
  font-family: var(--font-heading);
  font-size: 48px;
  font-weight: 800;
  line-height: 52px;
  letter-spacing: -0.72px;
  color: var(--color-a00);
}

.footer-cta__subtitle {
  font-size: 24px;
  line-height: 33px;
  color: var(--color-a00);
}

.footer-cta__actions {
  display: flex;
  gap: 24px;
  align-items: center;
  justify-content: center;
}

.footer-cta__actions .btn {
  width: 218px;
}
 /* day 2 live panel fixes */
 html .livestream__state-c .livestream__speakers {
  justify-content: flex-start;
  gap: 20px;
}

html .livestream__state-c .livestream__speaker.livestream__speaker--inline {
  width: 235px;
  gap: 16px;
}

html .livestream__state-c img.livestream__speaker-img.livestream__speaker-img--sm {
  width: 60px;
  height: 60px;
}

html .livestream__state-b span.livestream__speaker-name {
  padding: 0 20px;
}