/* Apple-inspired presentation layer. The reactor and product illustrations stay intact. */

:root {
  --ink: #1d1d1f;
  --muted: #6e6e73;
  --line: #d2d2d7;
  --surface: #f5f5f7;
  --surface-strong: #e8e8ed;
  --white: #fff;
  --blue: #0071e3;
  --blue-hover: #0077ed;
  --nuke: #8fcf2b;
  --nuke-soft: #e9f7d5;
  --nuke-ink: #355e00;
  --hazard: #8fcf2b;
  --shell: min(1200px, calc(100% - 48px));
  --radius: 30px;
  --shadow: 0 18px 54px rgba(0, 0, 0, 0.08);
}

html {
  scroll-padding-top: 104px;
}

body {
  overflow-x: hidden;
  color: var(--ink);
  background: var(--white);
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 40;
  color: var(--ink);
  background: rgba(250, 250, 252, 0.82);
  border-bottom: 1px solid rgba(0, 0, 0, 0.08);
}

.global-nav {
  width: min(1024px, calc(100% - 40px));
  height: 44px;
}

.nav-links {
  max-width: 760px;
  color: rgba(29, 29, 31, 0.78);
}

.nav-ticket {
  color: #477700;
  font-size: 15px;
}

.local-nav {
  width: var(--shell);
  min-height: 52px;
  border-bottom: 0;
}

.local-title {
  font-size: 21px;
  font-weight: 600;
}

.local-actions {
  display: flex;
  align-items: center;
  gap: 26px;
  color: #424245;
  font-size: 12px;
}

.local-actions a {
  transition: color 160ms ease;
}

.local-actions a:hover {
  color: #000;
}

.local-actions .local-cta {
  padding: 7px 14px;
  color: #fff;
  background: var(--blue);
  border-radius: 999px;
}

.local-actions .local-cta:hover {
  color: #fff;
  background: var(--blue-hover);
}

.hero {
  min-height: 0;
  padding: 0 0 88px;
  display: block;
  overflow: hidden;
  background: #fff;
}

.apple-stage {
  width: var(--shell);
  height: clamp(430px, 43vw, 620px);
  margin: 0 auto;
  display: grid;
  place-items: center;
}

.apple-stage::before {
  z-index: -1;
  width: min(660px, 62vw);
  aspect-ratio: 1;
  display: block;
  background:
    radial-gradient(circle at 45% 48%, rgba(164, 221, 79, 0.12), transparent 47%),
    radial-gradient(circle at 60% 55%, rgba(240, 224, 102, 0.07), transparent 58%);
  border: 0;
  filter: blur(22px);
  animation: none;
}

.apple-stage::after {
  display: none;
}

.reactor-stage {
  width: var(--shell);
  height: clamp(430px, 43vw, 620px);
}

.reactor-shell {
  --energy-x: 50%;
  --energy-y: 50%;
  width: min(650px, 70vw);
  height: 100%;
  margin: 0 auto;
  isolation: isolate;
  cursor: crosshair;
  touch-action: pan-y;
}

.reactor-shell::before {
  content: "";
  position: absolute;
  z-index: 0;
  inset: 4%;
  display: block;
  background:
    radial-gradient(
      circle at var(--energy-x) var(--energy-y),
      rgba(176, 255, 66, 0.22) 0,
      rgba(137, 210, 36, 0.1) 20%,
      transparent 52%
    );
  filter: blur(22px);
  opacity: 0.68;
  pointer-events: none;
}

.reactor-shell.is-pulsing::before {
  animation: reactor-flash 720ms ease-out;
}

.reactor-stage .reactor-fallback {
  width: 74%;
  left: 13%;
  top: 2%;
}

.hero-copy {
  width: var(--shell);
  margin: 0 auto;
  display: grid;
  grid-template-columns: minmax(0, 1.25fr) minmax(330px, 0.75fr);
  align-items: end;
  gap: 80px;
  text-align: left;
}

.hero-kicker {
  margin: 0 0 12px;
  font-size: 25px;
  font-weight: 600;
  letter-spacing: -0.025em;
}

.hero h1 {
  margin: 0;
  max-width: 820px;
  font-size: clamp(52px, 6.2vw, 78px);
  line-height: 0.98;
  letter-spacing: -0.065em;
  font-weight: 700;
}

.hero-lede {
  max-width: 800px;
  margin: 22px 0 0;
  color: #424245;
  font-size: clamp(20px, 2.3vw, 27px);
  line-height: 1.36;
  letter-spacing: -0.025em;
  font-weight: 500;
}

.hero-details {
  padding-bottom: 2px;
}

.event-time {
  margin: 0;
  gap: 5px;
  font-size: 17px;
}

.event-time span {
  color: var(--muted);
}

.hero-actions {
  width: 100%;
  min-height: 92px;
  margin: 8px 0 0;
  justify-content: center;
  overflow: visible;
}

.button {
  min-height: 44px;
  padding: 10px 19px;
  border-radius: 999px;
  font-size: 17px;
  font-weight: 400;
}

.button-primary {
  color: #fff;
  background: var(--blue);
  border-color: var(--blue);
}

.button-primary:hover {
  background: var(--blue-hover);
  border-color: var(--blue-hover);
}

.button-secondary {
  color: var(--blue);
  background: transparent;
  border-color: var(--blue);
}

.button-secondary:hover,
.button-secondary.is-caught {
  color: #fff;
  background: var(--blue);
}

.action-note {
  min-height: 18px;
  margin: -14px 0 0;
  color: #86868b;
  text-align: center;
  font-size: 12px;
}

.scroll-cue {
  position: static;
  width: max-content;
  margin: 48px auto 0;
  color: var(--blue);
  font-size: 13px;
}

.scroll-arrow {
  color: #86868b;
}

.section-shell {
  width: var(--shell);
}

.eyebrow {
  margin: 0 0 14px;
  color: #5c840e;
  font-size: 13px;
  font-weight: 600;
  letter-spacing: 0;
  text-transform: none;
}

.dark-eyebrow {
  color: var(--muted);
}

.section-heading h2,
.invitation-copy h2 {
  font-size: clamp(42px, 5vw, 64px);
  line-height: 1.05;
  letter-spacing: -0.052em;
}

.section-heading > p:last-child,
.invitation-copy > p:last-child {
  margin-top: 20px;
  color: var(--muted);
  font-size: 20px;
  line-height: 1.5;
}

.rumors-section {
  padding: 24px 0 128px;
  background: var(--surface);
  background-image: none;
}

.centered-heading {
  max-width: none;
  margin: 0 auto 56px;
  text-align: left;
}

.centered-heading > p:last-child {
  margin-right: 0;
  margin-left: 0;
}

.centered-heading h2 {
  max-width: 1080px;
  font-size: clamp(50px, 6.2vw, 78px);
}

.soft-text {
  color: #86868b;
}

.product-grid {
  grid-template-columns: repeat(12, minmax(0, 1fr));
  gap: 24px;
}

.product-card {
  min-height: 650px;
  padding: 42px;
  background: #fff;
  border: 0;
  border-radius: var(--radius);
  box-shadow: none;
}

.product-card:nth-child(1),
.product-card:nth-child(2),
.product-card:nth-child(3),
.product-card:nth-child(4) {
  grid-column: auto;
}

.phone-card {
  grid-column: span 7 !important;
}

.ultra-card {
  grid-column: span 5 !important;
  color: #f5f5f7;
  background: #1d1d1f;
}

.watch-card {
  grid-column: span 5 !important;
}

.pods-card {
  grid-column: span 7 !important;
  background: #edf2e9;
}

.classification {
  top: 28px;
  right: 30px;
  color: #86868b;
  font-size: 9px;
  letter-spacing: 0.08em;
}

.ultra-card .classification {
  color: #86868b;
}

.product-copy {
  order: -1;
}

.product-overline {
  margin-bottom: 10px;
  color: #5c840e;
  font-size: 13px;
  font-weight: 600;
  letter-spacing: 0;
}

.ultra-card .product-overline {
  color: #a8d565;
}

.product-copy h3 {
  font-size: clamp(34px, 3.4vw, 48px);
  line-height: 1.04;
  letter-spacing: -0.045em;
}

.product-copy > p:not(.product-overline) {
  max-width: 560px;
  margin-top: 16px;
  color: var(--muted);
  font-size: 17px;
  line-height: 1.48;
}

.ultra-card .product-copy > p:not(.product-overline) {
  color: #a1a1a6;
}

.fake-link {
  margin-top: 18px;
  color: var(--blue);
}

.ultra-card .fake-link {
  color: #6cb7ff;
}

.product-art {
  min-height: 330px;
}

.isotope-badge {
  color: #456f09;
  background: rgba(255, 255, 255, 0.82);
  border: 0;
  box-shadow: none;
}

.product-reactor {
  color: #ecffd2;
}

.product-reactor svg,
.phone-pro .product-reactor svg,
.ultra-reactor svg,
.compact-reactor svg {
  filter:
    drop-shadow(0 0 2px #fff)
    drop-shadow(0 0 8px #a8ed3e)
    drop-shadow(0 0 18px rgba(111, 195, 0, 0.85));
  animation: core-pulse 2.8s ease-in-out infinite;
}

.invitation-section {
  position: relative;
  padding: 132px 0;
  color: #f5f5f7;
  background: #000;
  overflow: hidden;
}

.invitation-section::after {
  content: "";
  position: absolute;
  width: 600px;
  height: 600px;
  right: -230px;
  top: -260px;
  background: radial-gradient(circle, rgba(133, 207, 37, 0.16), transparent 66%);
  pointer-events: none;
}

.invitation-section .section-shell::before {
  display: none;
}

.invitation-grid {
  grid-template-columns: minmax(0, 1.08fr) minmax(380px, 0.92fr);
  gap: 72px 88px;
}

.invitation-section .dark-eyebrow,
.invitation-section .invitation-copy > p:last-child {
  color: #a1a1a6;
}

.event-details {
  margin: 18px 0 0;
  gap: 20px;
}

.event-details div {
  border-color: #424245;
}

.event-details dt,
.event-details dd span {
  color: #86868b;
}

.event-details dd {
  color: #f5f5f7;
}

.schedule-card {
  background: #151516;
  border: 0;
  border-radius: var(--radius);
  box-shadow: none;
}

.schedule-header {
  padding: 30px 34px 24px;
  border-color: #353538;
}

.schedule-header span,
.schedule-list time,
.schedule-list span {
  color: #86868b;
}

.schedule-list {
  padding: 4px 34px 10px;
}

.schedule-list li {
  border-color: #353538;
}

.faq-section {
  padding: 132px 0;
  background: #fff;
}

.faq-shell {
  grid-template-columns: 0.75fr 1.25fr;
  gap: 100px;
}

.faq-list {
  border-color: var(--line);
}

.faq-list details {
  border-color: var(--line);
}

.faq-list summary {
  padding: 27px 48px 27px 0;
  font-size: 19px;
}

.faq-list details p {
  color: var(--muted);
  font-size: 16px;
}

.site-footer {
  padding: 74px 0 34px;
  color: #6e6e73;
  background: var(--surface);
  border-top: 0;
  border-image: none;
}

.footer-shell {
  width: var(--shell);
}

.legal-section {
  margin-bottom: 58px;
}

.legal-kicker {
  margin-bottom: 12px;
  color: var(--muted);
  font-family: inherit;
  font-size: 12px;
  font-weight: 600;
  letter-spacing: 0;
}

.legal-section > h2 {
  max-width: 760px;
  margin-bottom: 38px;
  font-size: clamp(38px, 4.6vw, 58px);
}

.legal-grid {
  gap: 20px;
}

.legal-card {
  min-height: 190px;
  padding: 30px;
  background: #fff;
  border: 0;
  border-radius: 24px;
  box-shadow: none;
}

.legal-card span {
  color: #86868b;
  font-family: inherit;
  font-size: 11px;
  letter-spacing: 0;
  text-transform: none;
}

.legal-card > p {
  max-width: 440px;
  margin-top: 34px;
  color: #424245;
  font-size: clamp(18px, 2vw, 24px);
  line-height: 1.28;
  letter-spacing: -0.025em;
}

.legal-fine-print {
  margin-top: 30px;
  padding-top: 24px;
  border-color: var(--line);
}

.legal-fine-print p {
  max-width: 980px;
  color: #6e6e73;
  font-family: "SFMono-Regular", Consolas, "Liberation Mono", monospace;
  font-size: 9px;
  line-height: 1.68;
  letter-spacing: 0.015em;
  text-align: left;
}

.rsvp-dialog {
  border-radius: 28px;
}

.rsvp-form {
  padding: 42px;
  border: 0;
  border-radius: 28px;
}

.rsvp-form input,
.rsvp-form select {
  background: #fff;
  border-color: #c7c7cc;
  border-radius: 12px;
}

.toast {
  background: rgba(29, 29, 31, 0.94);
}

.reveal {
  transform: translateY(18px);
  transition: opacity 650ms ease, transform 650ms ease;
}

@keyframes core-pulse {
  0%,
  100% {
    opacity: 0.88;
    filter:
      drop-shadow(0 0 2px #fff)
      drop-shadow(0 0 7px #a8ed3e)
      drop-shadow(0 0 15px rgba(111, 195, 0, 0.72));
  }
  50% {
    opacity: 1;
    filter:
      drop-shadow(0 0 3px #fff)
      drop-shadow(0 0 11px #b9ff50)
      drop-shadow(0 0 24px rgba(111, 195, 0, 0.95));
  }
}

@keyframes reactor-flash {
  0% {
    opacity: 0.68;
    transform: scale(0.96);
  }
  28% {
    opacity: 1;
  }
  100% {
    opacity: 0.68;
    transform: scale(1.06);
  }
}

@media (max-width: 980px) {
  :root {
    --shell: min(100% - 40px, 920px);
  }

  .hero-copy {
    grid-template-columns: 1fr;
    gap: 38px;
  }

  .hero-details {
    max-width: 480px;
  }

  .phone-card,
  .ultra-card,
  .watch-card,
  .pods-card {
    grid-column: span 6 !important;
  }

  .invitation-grid {
    grid-template-columns: 1fr;
    gap: 52px;
  }

  .event-details {
    max-width: 720px;
  }

  .faq-shell {
    grid-template-columns: 1fr;
    gap: 46px;
  }
}

@media (max-width: 700px) {
  :root {
    --shell: calc(100% - 36px);
    --radius: 24px;
  }

  html {
    scroll-padding-top: 98px;
  }

  .global-nav {
    width: calc(100% - 30px);
    grid-template-columns: 34px 1fr 34px;
  }

  .nav-links {
    display: none;
  }

  .nav-ticket {
    grid-column: 3;
  }

  .local-title {
    font-size: 19px;
  }

  .local-actions {
    gap: 0;
  }

  .local-actions > a:not(.local-cta) {
    display: none;
  }

  .hero {
    padding-bottom: 72px;
  }

  .apple-stage,
  .reactor-stage {
    height: 350px;
  }

  .reactor-shell {
    width: min(430px, 104vw);
  }

  .hero-kicker {
    font-size: 20px;
  }

  .hero h1 {
    font-size: clamp(44px, 12.8vw, 58px);
  }

  .hero-lede {
    font-size: 20px;
  }

  .hero-details {
    width: 100%;
  }

  .hero-actions {
    min-height: 108px;
  }

  .scroll-cue {
    margin-top: 34px;
  }

  .rumors-section {
    padding: 8px 0 96px;
  }

  .centered-heading {
    margin-bottom: 42px;
  }

  .centered-heading h2 {
    font-size: clamp(44px, 13vw, 62px);
  }

  .product-grid {
    display: grid;
    gap: 18px;
  }

  .phone-card,
  .ultra-card,
  .watch-card,
  .pods-card {
    grid-column: span 12 !important;
  }

  .product-card {
    min-height: 590px;
    padding: 32px 26px;
  }

  .classification {
    top: 20px;
    right: 22px;
  }

  .product-art {
    min-height: 320px;
  }

  .invitation-section,
  .faq-section {
    padding: 96px 0;
  }

  .event-details {
    grid-template-columns: 1fr;
    gap: 18px;
  }

  .schedule-header {
    padding: 26px 24px 20px;
  }

  .schedule-header span {
    display: block;
  }

  .schedule-list {
    padding: 2px 24px 8px;
  }

  .schedule-list li {
    grid-template-columns: 58px 1fr;
    gap: 16px;
  }

  .schedule-list div {
    flex-direction: column;
    gap: 5px;
  }

  .schedule-list span {
    text-align: left;
  }

  .site-footer {
    padding-top: 60px;
  }

  .legal-grid {
    grid-template-columns: 1fr;
  }

  .legal-card {
    min-height: 170px;
    padding: 26px;
  }

  .rsvp-form {
    padding: 36px 24px 28px;
  }
}

@media (max-width: 430px) {
  .hero-actions {
    min-height: 126px;
  }

  .button {
    padding-right: 16px;
    padding-left: 16px;
    font-size: 15px;
  }

}

@media (prefers-reduced-motion: reduce) {
  .reactor-shell {
    cursor: default;
  }

  .reactor-shell.is-pulsing::before {
    animation: none;
  }

  .product-reactor svg,
  .phone-pro .product-reactor svg,
  .ultra-reactor svg,
  .compact-reactor svg {
    animation: none;
  }
}

/* Product render refinements */

.product-art {
  --electric-blue: #25c7ff;
  --deep-blue: #0066ff;
  isolation: isolate;
}

/* iPhone Pro camera system */

.phone-body {
  border-width: 7px;
  border-color: #e0e5dc;
  background:
    linear-gradient(118deg, rgba(255, 255, 255, 0.78), transparent 24% 76%, rgba(255, 255, 255, 0.32)),
    linear-gradient(145deg, #eef7e7 0%, #cae89b 54%, #e9edcf 100%);
  box-shadow:
    0 30px 48px rgba(37, 56, 14, 0.2),
    0 0 44px rgba(142, 225, 36, 0.1),
    inset 0 0 0 1px rgba(255, 255, 255, 0.94);
}

.phone-body::before {
  content: "";
  position: absolute;
  z-index: 1;
  width: 116px;
  height: 124px;
  top: 12px;
  left: 12px;
  border: 1px solid rgba(255, 255, 255, 0.62);
  border-radius: 31px;
  background:
    linear-gradient(145deg, rgba(255, 255, 255, 0.55), rgba(174, 204, 134, 0.72)),
    #c9dfa7;
  box-shadow:
    0 8px 18px rgba(42, 61, 18, 0.17),
    inset 0 1px 2px rgba(255, 255, 255, 0.86);
}

.phone-body::after {
  content: "";
  position: absolute;
  z-index: 0;
  inset: 0;
  border-radius: 35px;
  box-shadow:
    inset 4px 0 7px rgba(255, 255, 255, 0.42),
    inset -5px -8px 14px rgba(70, 98, 34, 0.08);
  pointer-events: none;
}

.camera {
  z-index: 3;
  width: 42px;
  height: 42px;
  border: 4px solid #8c959f;
  background:
    radial-gradient(circle at 35% 31%, rgba(191, 235, 255, 0.95) 0 4%, transparent 5%),
    radial-gradient(circle at 44% 40%, #668eb3 0 8%, #172c43 11% 31%, #05080e 34% 56%, #294861 59% 69%, #070a0e 72% 100%);
  box-shadow:
    0 4px 9px rgba(0, 0, 0, 0.38),
    0 0 0 2px rgba(225, 230, 235, 0.84),
    inset 0 0 7px rgba(84, 173, 255, 0.55);
}

.camera::after {
  content: "";
  position: absolute;
  inset: 5px;
  border: 1px solid rgba(108, 176, 229, 0.4);
  border-radius: 50%;
}

.camera-one {
  top: 20px;
  left: 20px;
}

.camera-two {
  top: 70px;
  left: 20px;
  right: auto;
}

.camera-three {
  top: 45px;
  left: 70px;
}

.camera-flash,
.camera-lidar {
  position: absolute;
  z-index: 3;
  display: block;
  border-radius: 50%;
}

.camera-flash {
  width: 14px;
  height: 14px;
  top: 21px;
  left: 84px;
  background: radial-gradient(circle, #fff 0 26%, #fff3be 32% 56%, #d9ccb1 62% 100%);
  box-shadow: 0 0 8px rgba(255, 244, 190, 0.72);
}

.camera-lidar {
  width: 12px;
  height: 12px;
  top: 102px;
  left: 84px;
  border: 2px solid rgba(164, 178, 183, 0.78);
  background: radial-gradient(circle, #193147, #070b0f 66%);
}

/* HDR-like blue bloom for every rear Apple mark */

.product-reactor {
  color: #dff9ff;
  isolation: isolate;
}

.product-reactor::before,
.product-reactor::after {
  content: "";
  position: absolute;
  display: block;
  border-radius: 50%;
  pointer-events: none;
}

.product-reactor::before {
  z-index: 0;
  inset: -92%;
  background: radial-gradient(
    circle,
    rgba(232, 253, 255, 0.98) 0 4%,
    rgba(82, 218, 255, 0.9) 10%,
    rgba(0, 128, 255, 0.62) 23%,
    rgba(0, 71, 255, 0.24) 42%,
    transparent 69%
  );
  filter: blur(7px) saturate(1.55);
  mix-blend-mode: screen;
  opacity: 0.96;
  animation: hdr-logo-bloom 2.6s ease-in-out infinite;
}

.product-reactor::after {
  z-index: 1;
  inset: -22%;
  border: 1px solid rgba(152, 235, 255, 0.72);
  box-shadow:
    0 0 14px rgba(39, 194, 255, 0.92),
    inset 0 0 12px rgba(0, 105, 255, 0.72);
  opacity: 0.62;
}

.product-reactor svg,
.phone-pro .product-reactor svg,
.ultra-reactor svg,
.compact-reactor svg,
.ultra-reverse-logo svg {
  z-index: 2;
  color: inherit;
  filter:
    brightness(2.8)
    saturate(1.45)
    drop-shadow(0 0 2px #fff)
    drop-shadow(0 0 6px rgba(126, 228, 255, 1))
    drop-shadow(0 0 15px rgba(0, 148, 255, 0.98))
    drop-shadow(0 0 30px rgba(0, 78, 255, 0.86));
  mix-blend-mode: screen;
  animation: hdr-logo-pulse 2.6s ease-in-out infinite;
}

/* iPhone Ultra, both display surfaces */

.ultra-art {
  min-height: 340px;
}

.ultra-showcase {
  position: relative;
  width: 390px;
  height: 300px;
  margin-top: 4px;
}

.foldable-phone {
  position: absolute;
  z-index: 3;
  width: 286px;
  height: 222px;
  left: 0;
  top: 62px;
  display: flex;
  filter: drop-shadow(0 25px 28px rgba(0, 0, 0, 0.42));
  transform: perspective(900px) rotateX(6deg) rotateZ(-4deg);
}

.fold-panel {
  width: 140px;
  height: 222px;
  overflow: hidden;
  border: 5px solid #8c929a;
  background-color: #04070c;
  box-shadow: inset 0 0 0 1px rgba(255, 255, 255, 0.08);
}

.fold-left {
  border-radius: 30px 4px 4px 30px;
  background:
    radial-gradient(circle at 78% 28%, rgba(0, 213, 255, 0.66), transparent 22%),
    radial-gradient(circle at 28% 68%, rgba(46, 255, 128, 0.42), transparent 27%),
    linear-gradient(155deg, #071c38 0%, #07101e 48%, #020407 100%);
}

.fold-right {
  border-radius: 4px 30px 30px 4px;
  background:
    radial-gradient(circle at 52% 46%, rgba(0, 150, 255, 0.2), transparent 34%),
    linear-gradient(145deg, #08182d, #020408 72%);
}

.fold-hinge {
  z-index: 4;
  width: 9px;
  height: 208px;
  margin: 7px -3px 0;
  border-radius: 6px;
  background: linear-gradient(90deg, #555b63, #e8ebee 46%, #5b6067);
  box-shadow: 0 0 8px rgba(255, 255, 255, 0.2);
}

.ultra-display::after,
.ultra-reverse-face::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(118deg, rgba(255, 255, 255, 0.15), transparent 24% 72%, rgba(255, 255, 255, 0.06));
  pointer-events: none;
}

.ultra-statusbar {
  position: absolute;
  z-index: 2;
  top: 14px;
  right: 14px;
  left: 17px;
  display: flex;
  justify-content: space-between;
  color: rgba(255, 255, 255, 0.88);
  font-family: -apple-system, BlinkMacSystemFont, sans-serif;
  font-size: 7px;
  font-style: normal;
}

.ultra-statusbar i {
  font-style: normal;
  letter-spacing: 0.04em;
}

.ultra-wave {
  position: absolute;
  z-index: 1;
  width: 158px;
  height: 72px;
  left: -18px;
  top: 80px;
  border: 1px solid rgba(70, 226, 255, 0.72);
  border-radius: 50%;
  box-shadow: 0 0 18px rgba(0, 157, 255, 0.35);
  transform: rotate(-24deg);
}

.ultra-wave-two {
  top: 96px;
  border-color: rgba(83, 255, 161, 0.52);
  transform: rotate(23deg);
}

.ultra-screen-caption {
  position: absolute;
  z-index: 2;
  right: 15px;
  bottom: 15px;
  left: 15px;
  color: rgba(224, 242, 255, 0.78);
  font-family: "SFMono-Regular", Consolas, monospace;
  font-size: 7px;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.fold-right .ultra-screen-caption {
  text-align: right;
}

.fold-right .reactor-orbit {
  width: 100px;
  height: 46px;
  border-color: rgba(64, 202, 255, 0.58);
  box-shadow: 0 0 13px rgba(0, 121, 255, 0.22);
}

.ultra-reactor {
  left: 50%;
  top: 48%;
  width: 46px;
  transform: translate(-50%, -50%);
}

.ultra-reactor svg {
  width: 39px;
  height: 39px;
}

.ultra-reverse-face {
  position: absolute;
  z-index: 1;
  width: 132px;
  height: 248px;
  top: 8px;
  right: 2px;
  overflow: hidden;
  border: 6px solid #9ba0a8;
  border-radius: 34px;
  background:
    radial-gradient(circle at 55% 60%, rgba(0, 130, 255, 0.54), transparent 27%),
    radial-gradient(circle at 38% 28%, rgba(65, 236, 255, 0.25), transparent 32%),
    linear-gradient(165deg, #092247, #050a13 56%, #020306);
  box-shadow:
    0 24px 34px rgba(0, 0, 0, 0.42),
    inset 0 0 0 1px rgba(255, 255, 255, 0.1);
  transform: perspective(800px) rotateY(-8deg) rotateZ(8deg);
}

.ultra-dynamic-island {
  position: absolute;
  z-index: 3;
  width: 45px;
  height: 12px;
  top: 11px;
  left: 50%;
  border: 1px solid rgba(76, 94, 116, 0.36);
  border-radius: 999px;
  background: #020306;
  box-shadow: inset -6px 0 8px rgba(33, 68, 105, 0.4);
  transform: translateX(-50%);
}

.ultra-reverse-time {
  position: absolute;
  z-index: 2;
  top: 43px;
  left: 0;
  width: 100%;
  color: rgba(255, 255, 255, 0.92);
  font-size: 26px;
  font-weight: 600;
  letter-spacing: -0.06em;
  text-align: center;
}

.ultra-reverse-orb {
  position: absolute;
  width: 100px;
  height: 100px;
  top: 104px;
  left: 12px;
  border: 1px solid rgba(61, 213, 255, 0.28);
  border-radius: 50%;
  background: radial-gradient(circle, rgba(99, 229, 255, 0.14), transparent 62%);
  box-shadow: 0 0 26px rgba(0, 125, 255, 0.18);
}

.ultra-reverse-logo {
  width: 42px;
  left: 50%;
  top: 63%;
  transform: translate(-50%, -50%);
}

.ultra-reverse-logo svg {
  width: 36px;
  height: 36px;
}

/* Apple Watch dial */

.watch-strap {
  width: 114px;
  border: 1px solid rgba(128, 151, 89, 0.48);
  background:
    linear-gradient(90deg, rgba(255, 255, 255, 0.36), transparent 18% 82%, rgba(77, 98, 45, 0.18)),
    #bcd08d;
  box-shadow: inset 0 0 12px rgba(75, 94, 42, 0.12);
}

.watch-face {
  width: 180px;
  height: 208px;
  padding: 0;
  display: block;
  border: 0;
  border-radius: 50px;
  background: linear-gradient(135deg, #f0f1ed 0%, #7f877f 22%, #e9ece6 48%, #747c75 75%, #d9ddd6 100%);
  box-shadow:
    0 27px 42px rgba(0, 0, 0, 0.24),
    inset 0 0 0 1px rgba(255, 255, 255, 0.6);
  transform: rotate(3deg);
}

.watch-face::before {
  content: "";
  position: absolute;
  width: 8px;
  height: 34px;
  right: -11px;
  top: 98px;
  border-radius: 0 5px 5px 0;
  background: linear-gradient(90deg, #707871, #c2c7c0);
  box-shadow: 0 2px 5px rgba(0, 0, 0, 0.28);
}

.watch-face::after {
  width: 17px;
  height: 31px;
  right: -19px;
  top: 49px;
  border: 1px solid #6e756f;
  border-radius: 50%;
  background: repeating-linear-gradient(90deg, #727a73 0 2px, #cbd0c9 2px 4px);
  box-shadow: 0 3px 7px rgba(0, 0, 0, 0.32);
}

.watch-screen {
  position: absolute;
  inset: 8px;
  overflow: hidden;
  border-radius: 42px;
  color: #fff;
  background:
    radial-gradient(circle at 50% 48%, rgba(16, 75, 118, 0.46), transparent 34%),
    radial-gradient(circle at 25% 78%, rgba(61, 190, 76, 0.22), transparent 34%),
    #030507;
  box-shadow:
    inset 0 0 0 1px rgba(173, 208, 222, 0.2),
    inset 0 0 24px rgba(0, 86, 151, 0.24);
}

.watch-index {
  position: absolute;
  z-index: 1;
  width: 112px;
  height: 112px;
  top: 40px;
  left: 26px;
  border-radius: 50%;
  background: repeating-conic-gradient(from -1deg, rgba(219, 244, 255, 0.9) 0 1deg, transparent 1.2deg 7.5deg);
  -webkit-mask: radial-gradient(circle, transparent 0 45%, #000 47% 53%, transparent 55%);
  mask: radial-gradient(circle, transparent 0 45%, #000 47% 53%, transparent 55%);
  opacity: 0.82;
}

.watch-complication {
  position: absolute;
  z-index: 3;
  width: 40px;
  height: 40px;
  padding-top: 6px;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  border: 1px solid rgba(118, 204, 238, 0.3);
  border-radius: 50%;
  background: rgba(4, 12, 18, 0.78);
  box-shadow: inset 0 0 12px rgba(25, 125, 178, 0.15);
  line-height: 0.9;
}

.watch-complication b {
  font-size: 12px;
  font-weight: 650;
  letter-spacing: -0.04em;
}

.watch-complication small {
  margin-top: 3px;
  color: #91dfff;
  font-family: "SFMono-Regular", Consolas, monospace;
  font-size: 6px;
  letter-spacing: 0.08em;
}

.watch-date {
  top: 15px;
  left: 16px;
}

.watch-weather {
  top: 15px;
  right: 16px;
}

.watch-core {
  bottom: 15px;
  left: 16px;
  border-color: rgba(42, 206, 255, 0.58);
  color: #b8f3ff;
  box-shadow: 0 0 14px rgba(0, 146, 255, 0.2), inset 0 0 13px rgba(24, 146, 209, 0.22);
}

.watch-core b {
  font-size: 16px;
}

.watch-years {
  right: 16px;
  bottom: 15px;
  border-color: rgba(174, 237, 74, 0.38);
}

.watch-years b,
.watch-years small {
  color: #baf264;
}

.watch-hands {
  position: absolute;
  z-index: 4;
  width: 68px;
  height: 68px;
  top: 50%;
  left: 50%;
  border: 1px solid rgba(79, 186, 230, 0.26);
  border-radius: 50%;
  box-shadow: 0 0 18px rgba(0, 122, 196, 0.16);
  transform: translate(-50%, -50%);
}

.watch-hand {
  position: absolute;
  left: 50%;
  bottom: 50%;
  display: block;
  border-radius: 999px;
  background: #f7f8f8;
  transform-origin: 50% 100%;
}

.watch-hour {
  width: 4px;
  height: 19px;
  margin-left: -2px;
  transform: rotate(44deg);
}

.watch-minute {
  width: 2px;
  height: 27px;
  margin-left: -1px;
  transform: rotate(118deg);
}

.watch-second {
  width: 1px;
  height: 30px;
  background: #ff5b45;
  transform: rotate(218deg);
}

.watch-center-dot {
  position: absolute;
  width: 7px;
  height: 7px;
  top: 50%;
  left: 50%;
  border: 2px solid #fff;
  border-radius: 50%;
  background: #ff5b45;
  box-shadow: 0 0 6px rgba(255, 91, 69, 0.8);
  transform: translate(-50%, -50%);
}

/* AirPods Pro silhouette */

.pods-case {
  width: 220px;
  height: 154px;
  top: 70px;
  border: 2px solid #d9ddd7;
  border-radius: 54px;
  background:
    linear-gradient(118deg, rgba(255, 255, 255, 0.95), rgba(242, 245, 242, 0.78) 52%, rgba(211, 219, 213, 0.92)),
    #f4f6f4;
  box-shadow:
    0 25px 44px rgba(27, 38, 47, 0.15),
    inset 0 2px 1px #fff,
    inset -8px -10px 20px rgba(93, 110, 104, 0.08);
  transform: rotate(-2deg);
}

.pods-case::before {
  inset: 44% 5px auto;
  height: 2px;
  background: linear-gradient(90deg, transparent, #cdd3cf 12% 88%, transparent);
  box-shadow: 0 -3px 8px rgba(122, 134, 127, 0.08);
}

.pods-case::after {
  content: "";
  position: absolute;
  width: 5px;
  height: 5px;
  left: 50%;
  bottom: 17px;
  border-radius: 50%;
  background: #58d5ff;
  box-shadow: 0 0 8px rgba(0, 158, 255, 0.92);
  transform: translateX(-50%);
}

.compact-reactor {
  width: 47px;
  transform: translateY(-4px);
}

.compact-reactor svg {
  width: 40px;
  height: 40px;
}

.pod {
  z-index: 3;
  width: 78px;
  height: 62px;
  border: 1px solid rgba(196, 202, 207, 0.88);
  border-radius: 55% 45% 48% 52% / 62% 52% 48% 38%;
  background:
    radial-gradient(circle at 35% 27%, #fff 0 16%, transparent 17%),
    linear-gradient(125deg, #fff 0%, #f4f6f7 52%, #d7dce0 100%);
  box-shadow:
    0 18px 28px rgba(30, 39, 54, 0.18),
    inset -7px -8px 13px rgba(107, 119, 131, 0.09);
}

.pod::before {
  content: "";
  position: absolute;
  z-index: -1;
  width: 38px;
  height: 39px;
  top: 12px;
  left: -17px;
  border: 1px solid #d6dbe0;
  border-radius: 52% 38% 42% 55%;
  background: linear-gradient(135deg, #f7f9fa, #dce1e5);
  box-shadow: inset -7px 0 9px rgba(86, 99, 111, 0.1);
}

.pod::after {
  width: 24px;
  height: 92px;
  top: 42px;
  right: 6px;
  bottom: auto;
  border: 1px solid rgba(205, 210, 214, 0.84);
  border-top: 0;
  border-radius: 4px 4px 15px 15px;
  background: linear-gradient(90deg, #dfe3e6 0%, #fff 44%, #eef1f3 78%, #cfd4d8 100%);
  box-shadow: 5px 12px 14px rgba(27, 39, 55, 0.1);
}

.pod span {
  width: 39px;
  height: 22px;
  top: 19px;
  left: 2px;
  border: 2px solid #16191d;
  border-radius: 50%;
  background:
    radial-gradient(ellipse at center, #454b51 0 18%, #111417 21% 66%, #2b3035 69% 100%);
  box-shadow: inset 0 0 4px #000;
  transform: rotate(-13deg);
}

.pod i,
.pod b {
  position: absolute;
  z-index: 4;
  display: block;
  background: #24282c;
}

.pod i {
  width: 20px;
  height: 7px;
  top: 7px;
  right: 13px;
  border-radius: 50%;
  transform: rotate(12deg);
}

.pod b {
  width: 7px;
  height: 24px;
  top: 72px;
  right: 14px;
  border-radius: 999px;
  background: linear-gradient(#262a2e, #555c61 62%, #1f2225);
}

.pod-left {
  transform: translate(-73px, -24px) rotate(-18deg);
}

.pod-right {
  transform: translate(76px, -8px) scaleX(-1) rotate(-13deg);
}

.pods-art .sound-ring {
  border-color: rgba(24, 164, 255, 0.2);
  box-shadow: 0 0 32px rgba(0, 116, 255, 0.06);
}

.pods-art .ring-two {
  border-color: rgba(49, 213, 255, 0.13);
}

@keyframes hdr-logo-bloom {
  0%, 100% {
    opacity: 0.72;
    transform: scale(0.9);
  }

  50% {
    opacity: 1;
    transform: scale(1.1);
  }
}

@keyframes hdr-logo-pulse {
  0%, 100% {
    filter:
      brightness(2.5)
      saturate(1.35)
      drop-shadow(0 0 2px #fff)
      drop-shadow(0 0 7px rgba(95, 220, 255, 0.92))
      drop-shadow(0 0 18px rgba(0, 135, 255, 0.86));
  }

  50% {
    filter:
      brightness(3.5)
      saturate(1.7)
      drop-shadow(0 0 3px #fff)
      drop-shadow(0 0 10px rgba(130, 235, 255, 1))
      drop-shadow(0 0 27px rgba(0, 153, 255, 1))
      drop-shadow(0 0 44px rgba(0, 68, 255, 0.92));
  }
}

@media (dynamic-range: high) and (color-gamut: p3) {
  .product-reactor {
    color: color(display-p3 0.7 0.95 1);
  }

  .product-reactor::before {
    background: radial-gradient(
      circle,
      color(display-p3 0.9 1 1 / 1) 0 5%,
      color(display-p3 0.08 0.76 1 / 0.98) 12%,
      color(display-p3 0 0.38 1 / 0.72) 30%,
      color(display-p3 0 0.12 1 / 0.25) 49%,
      transparent 72%
    );
    filter: blur(6px) brightness(1.38) saturate(1.8);
  }
}

@media (max-width: 600px) {
  .phone-body::before {
    width: 101px;
    height: 108px;
    top: 10px;
    left: 10px;
    border-radius: 27px;
  }

  .camera {
    width: 36px;
    height: 36px;
    border-width: 3px;
  }

  .camera-one {
    top: 17px;
    left: 17px;
  }

  .camera-two {
    top: 59px;
    left: 17px;
  }

  .camera-three {
    top: 38px;
    left: 59px;
  }

  .camera-flash {
    width: 12px;
    height: 12px;
    top: 18px;
    left: 72px;
  }

  .camera-lidar {
    width: 10px;
    height: 10px;
    top: 88px;
    left: 72px;
  }

  .ultra-showcase {
    width: 310px;
    height: 280px;
  }

  .foldable-phone {
    top: 58px;
    transform: perspective(900px) rotateX(6deg) rotateZ(-4deg) scale(0.86);
    transform-origin: left center;
  }

  .ultra-reverse-face {
    right: 0;
    transform: perspective(800px) rotateY(-8deg) rotateZ(8deg) scale(0.88);
    transform-origin: right top;
  }

  .watch-face {
    width: 174px;
    height: 200px;
  }

  .watch-index {
    top: 36px;
    left: 23px;
  }

  .pods-art .ring-two {
    width: 310px;
  }
}

@media (prefers-reduced-motion: reduce) {
  .product-reactor::before,
  .product-reactor svg {
    animation: none;
  }
}

/* Pure silhouette light: the Apple shape itself is the only light source. */

.product-reactor {
  color: #9be8ff;
}

.product-reactor::before,
.product-reactor::after {
  content: none;
  display: none;
}

.product-reactor svg,
.phone-pro .product-reactor svg,
.ultra-reactor svg,
.compact-reactor svg,
.ultra-reverse-logo svg {
  color: inherit;
  filter:
    brightness(1.52)
    saturate(1.08)
    drop-shadow(0 0 1px rgba(240, 253, 255, 1))
    drop-shadow(0 0 4px rgba(155, 232, 255, 1))
    drop-shadow(0 0 11px rgba(67, 201, 255, 0.98))
    drop-shadow(0 0 23px rgba(0, 139, 255, 0.84))
    drop-shadow(0 0 38px rgba(0, 87, 255, 0.55));
  mix-blend-mode: screen;
  animation: pure-logo-hdr 3.2s ease-in-out infinite;
}

@keyframes pure-logo-hdr {
  0%, 100% {
    opacity: 0.94;
    filter:
      brightness(1.42)
      saturate(1.02)
      drop-shadow(0 0 1px rgba(240, 253, 255, 1))
      drop-shadow(0 0 4px rgba(155, 232, 255, 0.96))
      drop-shadow(0 0 10px rgba(67, 201, 255, 0.9))
      drop-shadow(0 0 22px rgba(0, 139, 255, 0.72));
  }

  50% {
    opacity: 1;
    filter:
      brightness(1.72)
      saturate(1.12)
      drop-shadow(0 0 2px rgba(247, 254, 255, 1))
      drop-shadow(0 0 6px rgba(167, 238, 255, 1))
      drop-shadow(0 0 15px rgba(60, 207, 255, 1))
      drop-shadow(0 0 31px rgba(0, 139, 255, 0.92))
      drop-shadow(0 0 48px rgba(0, 78, 255, 0.58));
  }
}

@media (dynamic-range: high) and (color-gamut: p3) {
  .product-reactor {
    color: color(display-p3 0.42 0.86 1);
  }

  .product-reactor svg,
  .phone-pro .product-reactor svg,
  .ultra-reactor svg,
  .compact-reactor svg,
  .ultra-reverse-logo svg {
    filter:
      brightness(1.88)
      saturate(1.16)
      drop-shadow(0 0 2px color(display-p3 0.9 1 1 / 1))
      drop-shadow(0 0 7px color(display-p3 0.36 0.9 1 / 1))
      drop-shadow(0 0 17px color(display-p3 0 0.64 1 / 1))
      drop-shadow(0 0 36px color(display-p3 0 0.32 1 / 0.88))
      drop-shadow(0 0 56px color(display-p3 0 0.12 1 / 0.62));
  }
}

@media (prefers-reduced-motion: reduce) {
  .product-reactor svg,
  .phone-pro .product-reactor svg,
  .ultra-reactor svg,
  .compact-reactor svg,
  .ultra-reverse-logo svg {
    animation: none;
  }
}
