@font-face {
  font-family: "Space Mono";
  src: url("fonts/SpaceMono-Regular.ttf") format("truetype");
  font-style: normal;
  font-weight: 400;
  font-display: swap;
}

@font-face {
  font-family: "Space Mono";
  src: url("fonts/SpaceMono-Bold.ttf") format("truetype");
  font-style: normal;
  font-weight: 600 900;
  font-display: swap;
}

:root {
  color-scheme: dark;
  --background: #0e0e0e;
  --panel: #1a1a1a;
  --panel-strong: #2a2a2a;
  --text: #f6f6f6;
  --secondary: #b8b8b8;
  --muted: #888888;
  --outline: #4a4a4a;
  --signal: #e2242d;
  --mint: #74bba6;
  --cyan: #6eb0cd;
  --blue: #8f9fc4;
  --purple: #ad91b0;
  --amber: #d1ac5e;
  --coral: #d18989;
  --content: 1180px;
  --reading: 820px;
  --radius: 6px;
  --small-radius: 3px;
  --rule: 1.25px;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
  scroll-padding-top: 88px;
  overflow-x: hidden;
}

body {
  min-width: 320px;
  margin: 0;
  background: var(--background);
  color: var(--text);
  font-family: "Space Mono", monospace;
  font-size: 16px;
  line-height: 1.65;
  -webkit-font-smoothing: antialiased;
}

button,
input,
select,
textarea {
  font: inherit;
}

img {
  display: block;
  max-width: 100%;
  height: auto;
}

a {
  color: inherit;
  text-decoration-thickness: 1px;
  text-underline-offset: 4px;
}

a:hover {
  color: var(--text);
}

:focus-visible {
  outline: 3px solid var(--amber);
  outline-offset: 4px;
}

.skip-link {
  position: fixed;
  top: -80px;
  left: 16px;
  z-index: 20;
  padding: 10px 14px;
  background: var(--text);
  color: var(--background);
  font-weight: 800;
}

.skip-link:focus {
  top: 16px;
}

.shell {
  width: min(var(--content), calc(100% - 40px));
  margin-inline: auto;
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 10;
  border-bottom: var(--rule) solid var(--outline);
  background: rgba(14, 14, 14, 0.94);
  backdrop-filter: blur(14px);
  -webkit-backdrop-filter: blur(14px);
}

.site-nav {
  min-height: 72px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 28px;
}

.wordmark {
  display: inline-flex;
  align-items: center;
  gap: 11px;
  text-decoration: none;
  font-size: 0.92rem;
  font-weight: 800;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  white-space: nowrap;
}

.wordmark img {
  width: 36px;
  height: 36px;
  border: 1px solid var(--outline);
  border-radius: 9px;
}

.nav-links {
  display: flex;
  align-items: center;
  justify-content: flex-end;
  gap: 22px;
}

.nav-links a {
  color: var(--secondary);
  font-size: 0.82rem;
  font-weight: 700;
  text-decoration: none;
}

.nav-links a:hover,
.nav-links a[aria-current="page"] {
  color: var(--text);
}

.nav-links .nav-action {
  padding: 9px 13px;
  background: var(--signal);
  color: #ffffff;
}

.eyebrow {
  margin: 0 0 16px;
  color: var(--muted);
  font-size: 0.76rem;
  font-weight: 800;
  letter-spacing: 0.18em;
  text-transform: uppercase;
}

h1,
h2,
h3 {
  margin-top: 0;
  font-weight: 800;
  letter-spacing: -0.045em;
  line-height: 1.08;
}

h1 {
  max-width: 900px;
  margin-bottom: 24px;
  font-size: clamp(3rem, 8vw, 7.25rem);
}

h2 {
  margin-bottom: 16px;
  font-size: clamp(2rem, 5vw, 4.5rem);
}

h3 {
  margin-bottom: 11px;
  font-size: 1.08rem;
  letter-spacing: -0.02em;
}

p {
  margin-top: 0;
}

.hero {
  padding: clamp(74px, 11vw, 150px) 0 72px;
  border-bottom: var(--rule) solid var(--outline);
}

.hero-grid {
  display: grid;
  grid-template-columns: minmax(0, 1.2fr) minmax(290px, 0.8fr);
  gap: clamp(40px, 8vw, 110px);
  align-items: end;
}

.hero-copy {
  max-width: 760px;
  margin-bottom: 0;
  color: var(--secondary);
  font-size: clamp(1.05rem, 2vw, 1.3rem);
}

.store-availability {
  max-width: 760px;
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto;
  gap: 24px;
  align-items: center;
  margin-top: 30px;
  padding: 20px;
  border: var(--rule) solid var(--outline);
  border-left: 5px solid var(--signal);
  border-radius: var(--radius);
  background: var(--panel);
}

.store-platform {
  display: block;
  margin-bottom: 7px;
  color: var(--muted);
  font-size: 0.72rem;
  font-weight: 800;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.store-availability p {
  margin-bottom: 0;
  color: var(--secondary);
  font-size: 0.86rem;
  line-height: 1.5;
}

.store-availability p + p {
  margin-top: 5px;
}

.store-availability strong {
  color: var(--text);
  font-size: 1.05rem;
}

.store-status {
  min-width: 142px;
  min-height: 48px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 0 16px;
  border: var(--rule) solid var(--outline);
  border-radius: var(--small-radius);
  color: var(--secondary);
  font-size: 0.82rem;
  font-weight: 800;
  text-align: center;
  text-decoration: none;
  white-space: nowrap;
}

.store-status:hover {
  border-color: var(--secondary);
  background: var(--panel-strong);
}

.hero-index {
  display: grid;
  gap: 1px;
  border: var(--rule) solid var(--outline);
  background: var(--outline);
}

.hero-index div {
  display: flex;
  align-items: baseline;
  justify-content: space-between;
  gap: 20px;
  padding: 16px;
  background: var(--panel);
}

.hero-index dt,
.hero-index dd {
  margin: 0;
}

.hero-index dt {
  color: var(--muted);
  font-size: 0.72rem;
  font-weight: 800;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.hero-index dd {
  color: var(--text);
  font-weight: 800;
  text-align: right;
}

.actions {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-top: 30px;
}

.button {
  min-height: 48px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 0 17px;
  border: var(--rule) solid var(--outline);
  border-radius: var(--small-radius);
  background: var(--panel);
  color: var(--text);
  font-size: 0.88rem;
  font-weight: 800;
  text-decoration: none;
}

.button:hover {
  border-color: var(--secondary);
  background: var(--panel-strong);
}

.button-primary {
  border-color: var(--signal);
  background: var(--signal);
  color: #ffffff;
}

.button-primary:hover {
  border-color: #ff5459;
  background: #d8172f;
  color: #ffffff;
}

.section {
  padding: clamp(70px, 10vw, 130px) 0;
  border-bottom: var(--rule) solid var(--outline);
}

.section-heading {
  max-width: 780px;
  margin-bottom: 42px;
}

.section-heading p,
.lede {
  color: var(--secondary);
  font-size: 1.06rem;
}

.grid-3,
.grid-2 {
  display: grid;
  gap: 10px;
}

.grid-3 {
  grid-template-columns: repeat(3, 1fr);
}

.grid-2 {
  grid-template-columns: repeat(2, 1fr);
}

.card {
  padding: clamp(22px, 3vw, 34px);
  border: var(--rule) solid var(--outline);
  border-radius: var(--radius);
  background: var(--panel);
}

.card p:last-child,
.card ul:last-child {
  margin-bottom: 0;
}

.card p,
.card li {
  color: var(--secondary);
}

.card-number {
  display: block;
  margin-bottom: 36px;
  color: var(--muted);
  font-size: 0.74rem;
  font-weight: 800;
  letter-spacing: 0.14em;
}

.card-accent {
  border-top: 4px solid var(--signal);
}

.card-cyan {
  border-top: 4px solid var(--cyan);
}

.card-mint {
  border-top: 4px solid var(--mint);
}

.card-purple {
  border-top: 4px solid var(--purple);
}

.stat-strip {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  border: var(--rule) solid var(--outline);
  background: var(--outline);
  gap: 1px;
}

.stat {
  min-height: 150px;
  padding: 22px;
  background: var(--panel);
}

.stat-value {
  display: block;
  margin-bottom: 12px;
  color: var(--text);
  font-size: clamp(1.7rem, 4vw, 2.75rem);
  font-weight: 800;
  letter-spacing: -0.06em;
  line-height: 1;
}

.stat-label {
  color: var(--muted);
  font-size: 0.73rem;
  font-weight: 800;
  letter-spacing: 0.1em;
  text-transform: uppercase;
}

.product-row {
  display: grid;
  grid-template-columns: minmax(0, 0.82fr) minmax(0, 1.18fr);
  gap: clamp(42px, 8vw, 110px);
  align-items: center;
}

.product-row.reverse {
  grid-template-columns: minmax(0, 1.18fr) minmax(0, 0.82fr);
}

.product-row.reverse .product-copy {
  order: 2;
}

.product-copy ul,
.legal-body ul,
.legal-body ol,
.faq-answer ul {
  padding-left: 1.25rem;
}

.product-copy li {
  margin: 10px 0;
  color: var(--secondary);
}

.screen-wrap {
  position: relative;
  max-width: 430px;
  margin-inline: auto;
  padding: 14px;
  border: var(--rule) solid var(--outline);
  border-radius: 38px;
  background: #050505;
  box-shadow: 0 30px 80px rgba(0, 0, 0, 0.42);
}

.screen-wrap::before {
  content: "";
  position: absolute;
  top: 8px;
  left: 50%;
  width: 30%;
  height: 18px;
  border-radius: 0 0 14px 14px;
  background: #050505;
  transform: translateX(-50%);
}

.screen-wrap img {
  width: 100%;
  border-radius: 27px;
}

.screen-caption {
  max-width: 430px;
  margin: 14px auto 0;
  color: var(--muted);
  font-size: 0.72rem;
  text-align: center;
}

.screen-section {
  overflow: hidden;
}

.screen-gallery {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: clamp(14px, 2vw, 24px);
  align-items: start;
}

.screen-card {
  min-width: 0;
  margin: 0;
  overflow: hidden;
  border: var(--rule) solid var(--outline);
  border-radius: 18px;
  background: var(--panel);
}

.gallery-shot {
  border-color: rgba(255, 255, 255, 0.16);
  border-radius: 24px;
  background: #101010;
  box-shadow: 0 24px 56px rgba(0, 0, 0, 0.28);
}

.gallery-shot img {
  display: block;
  width: 100%;
  height: auto;
  aspect-ratio: 828 / 1800;
  object-fit: cover;
}

.screen-card-light {
  border-color: #d6d6d6;
  background: #f5f5f5;
  color: #111111;
}

.screen-card-copy {
  min-height: 238px;
  padding: 24px 22px 18px;
}

.screen-card-copy .card-number {
  margin-bottom: 24px;
}

.screen-card-light .card-number,
.screen-card-light .screen-card-copy p {
  color: #626262;
}

.screen-card-copy p {
  margin-bottom: 0;
  color: var(--secondary);
  font-size: 0.82rem;
  line-height: 1.55;
}

.cycle-preview {
  display: grid;
  grid-template-columns: minmax(0, 1.15fr) minmax(270px, 0.85fr);
  gap: clamp(26px, 6vw, 72px);
  align-items: center;
  margin-top: 14px;
  padding: clamp(24px, 4vw, 46px);
  border: var(--rule) solid var(--outline);
  border-radius: var(--radius);
  background: radial-gradient(circle at 80% 10%, rgba(185, 130, 246, 0.22), transparent 30%), var(--panel);
}

.cycle-preview-copy h3 { max-width: 520px; }
.cycle-preview-copy p, .cycle-preview-copy li { color: var(--secondary); }
.cycle-preview-copy ul { margin: 24px 0 0; padding-left: 1.2rem; }
.cycle-preview-copy li + li { margin-top: 9px; }

.cycle-preview-capture {
  width: min(100%, 360px);
  margin-inline: auto;
  overflow: hidden;
  border: var(--rule) solid rgba(255, 255, 255, 0.16);
  border-radius: 24px;
  background: #101010;
  box-shadow: 0 24px 56px rgba(0, 0, 0, 0.32);
}

.cycle-preview-capture img {
  display: block;
  width: 100%;
  height: auto;
}

.screen-disclaimer {
  max-width: 820px;
  margin: 24px auto 0;
  color: var(--muted);
  font-size: 0.75rem;
  text-align: center;
}

.privacy-callout {
  display: grid;
  grid-template-columns: 1fr auto;
  gap: 32px;
  align-items: center;
  padding: clamp(28px, 5vw, 56px);
  border: var(--rule) solid var(--outline);
  border-left: 5px solid var(--mint);
  border-radius: var(--radius);
  background: var(--panel);
}

.privacy-callout h2 {
  max-width: 780px;
  margin-bottom: 12px;
}

.privacy-callout p {
  max-width: 760px;
  margin-bottom: 0;
  color: var(--secondary);
}

.membership-list {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 10px;
}

.membership-card {
  min-height: 230px;
  display: flex;
  flex-direction: column;
}

.membership-card .button {
  margin-top: auto;
}

.membership-type {
  margin-bottom: 28px;
  color: var(--signal);
  font-size: 0.75rem;
  font-weight: 800;
  letter-spacing: 0.14em;
  text-transform: uppercase;
}

.membership-price {
  margin-bottom: 16px;
  font-size: clamp(1.65rem, 3vw, 2.5rem);
  letter-spacing: -0.055em;
}

.membership-price span {
  color: var(--muted);
  font-size: 0.78rem;
  letter-spacing: 0.02em;
  text-transform: uppercase;
}

.error-page {
  min-height: calc(100vh - 173px);
  display: grid;
  place-items: center;
  padding: 72px 0;
}

.error-card {
  max-width: 760px;
  padding: clamp(28px, 6vw, 64px);
  border: var(--rule) solid var(--outline);
  border-top: 5px solid var(--signal);
  border-radius: var(--radius);
  background: var(--panel);
}

.error-code {
  margin-bottom: 20px;
  color: var(--signal);
  font-size: 0.78rem;
  font-weight: 800;
  letter-spacing: 0.16em;
}

.error-card h1 {
  margin-bottom: 18px;
  font-size: clamp(2.5rem, 8vw, 5.8rem);
}

.error-card > p:not(.error-code) {
  color: var(--secondary);
}

.fine-print {
  max-width: 850px;
  margin: 22px auto 0;
  color: var(--muted);
  font-size: 0.78rem;
  text-align: center;
}

.top-gap {
  margin-top: 10px;
}

.support-stack {
  padding-bottom: 100px;
}

.site-footer {
  padding: 42px 0 55px;
}

.footer-grid {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  gap: 30px;
}

.footer-copy {
  max-width: 520px;
  color: var(--muted);
  font-size: 0.75rem;
}

.footer-links {
  display: flex;
  flex-wrap: wrap;
  justify-content: flex-end;
  gap: 18px;
}

.footer-links a {
  color: var(--secondary);
  font-size: 0.78rem;
  font-weight: 700;
  text-decoration: none;
}

/* Legal and support pages */
.document-hero {
  padding: clamp(64px, 9vw, 116px) 0 45px;
}

.document-hero h1 {
  max-width: var(--reading);
  margin-bottom: 18px;
  font-size: clamp(2.7rem, 7vw, 5.4rem);
}

.document-meta {
  color: var(--muted);
  font-size: 0.8rem;
}

.document-layout {
  display: grid;
  grid-template-columns: 240px minmax(0, var(--reading));
  gap: clamp(36px, 7vw, 90px);
  align-items: start;
  padding-bottom: 100px;
}

.document-toc {
  position: sticky;
  top: 100px;
  margin: 0;
  padding: 0;
  list-style: none;
}

.document-toc li {
  border-top: 1px solid var(--outline);
}

.document-toc li:last-child {
  border-bottom: 1px solid var(--outline);
}

.document-toc a {
  display: block;
  padding: 10px 0;
  color: var(--muted);
  font-size: 0.72rem;
  font-weight: 700;
  text-decoration: none;
}

.document-toc a:hover {
  color: var(--text);
}

.legal-body {
  min-width: 0;
}

.legal-summary {
  margin-bottom: 46px;
  padding: 24px;
  border: var(--rule) solid var(--outline);
  border-left: 5px solid var(--signal);
  background: var(--panel);
}

.legal-summary p:last-child {
  margin-bottom: 0;
}

.legal-body section {
  padding: 36px 0;
  border-top: var(--rule) solid var(--outline);
}

.legal-body h2 {
  margin-bottom: 18px;
  font-size: clamp(1.35rem, 4vw, 2rem);
  letter-spacing: -0.035em;
}

.legal-body h3 {
  margin-top: 28px;
  font-size: 1rem;
}

.legal-body p,
.legal-body li {
  color: var(--secondary);
}

.legal-body li {
  margin: 8px 0;
}

.legal-body strong {
  color: var(--text);
}

.legal-body a,
.contact-link {
  color: var(--text);
  text-decoration-color: var(--signal);
}

.caps {
  color: var(--text) !important;
  font-size: 0.92rem;
  font-weight: 800;
  letter-spacing: 0.01em;
  text-transform: uppercase;
}

.notice {
  padding: 18px;
  border: 1px solid var(--outline);
  background: var(--panel);
}

.faq-list {
  display: grid;
  gap: 10px;
}

.faq-item {
  border: var(--rule) solid var(--outline);
  border-radius: var(--radius);
  background: var(--panel);
}

.faq-item summary {
  padding: 20px 54px 20px 20px;
  cursor: pointer;
  color: var(--text);
  font-weight: 800;
  list-style: none;
  position: relative;
}

.faq-item summary::-webkit-details-marker {
  display: none;
}

.faq-item summary::after {
  content: "+";
  position: absolute;
  top: 50%;
  right: 20px;
  color: var(--muted);
  font-size: 1.3rem;
  transform: translateY(-50%);
}

.faq-item[open] summary::after {
  content: "−";
}

.faq-answer {
  padding: 0 20px 20px;
  color: var(--secondary);
}

.faq-answer p:last-child,
.faq-answer ul:last-child {
  margin-bottom: 0;
}

.support-contact {
  padding: clamp(26px, 5vw, 46px);
  border: var(--rule) solid var(--outline);
  border-top: 5px solid var(--signal);
  border-radius: var(--radius);
  background: var(--panel);
}

.support-contact h2 {
  font-size: clamp(1.7rem, 4vw, 2.8rem);
}

@media (max-width: 900px) {
  .hero-grid,
  .product-row,
  .product-row.reverse,
  .document-layout {
    grid-template-columns: 1fr;
  }

  .product-row.reverse .product-copy {
    order: initial;
  }

  .grid-3,
  .membership-list {
    grid-template-columns: 1fr 1fr;
  }

  .stat-strip {
    grid-template-columns: 1fr 1fr;
  }

  .screen-gallery {
    grid-template-columns: 1fr 1fr;
  }

  .cycle-preview {
    grid-template-columns: 1fr;
  }

  .document-toc {
    position: static;
    display: grid;
    grid-template-columns: repeat(2, 1fr);
  }

  .document-toc li:nth-last-child(2) {
    border-bottom: 1px solid var(--outline);
  }
}

@media (max-width: 680px) {
  .shell {
    width: min(100% - 28px, var(--content));
  }

  .site-nav {
    min-height: 64px;
  }

  h1 {
    font-size: clamp(2.65rem, 15vw, 4.4rem);
  }

  h2 {
    font-size: clamp(2rem, 11vw, 3.25rem);
  }

  .hero {
    padding-top: 62px;
  }

  .store-availability {
    grid-template-columns: 1fr;
    gap: 16px;
  }

  .store-status {
    width: 100%;
  }

  .nav-links {
    gap: 12px;
  }

  .nav-links a:not(.nav-action) {
    display: none;
  }

  .nav-links .nav-action {
    padding: 8px 10px;
  }

  .grid-3,
  .grid-2,
  .membership-list,
  .privacy-callout {
    grid-template-columns: 1fr;
  }

  .stat {
    min-height: 125px;
  }

  .screen-gallery {
    width: calc(100% + 14px);
    display: flex;
    gap: 12px;
    overflow-x: auto;
    overscroll-behavior-inline: contain;
    scroll-snap-type: inline mandatory;
    scroll-padding-inline: 0 14px;
    padding: 2px 14px 18px 0;
    -webkit-overflow-scrolling: touch;
  }

  .screen-gallery::-webkit-scrollbar {
    display: none;
  }

  .screen-card {
    flex: 0 0 min(84vw, 340px);
    scroll-snap-align: start;
  }

  .gallery-shot {
    flex-basis: min(78vw, 330px);
  }

  .screen-card-copy {
    min-height: 218px;
  }

  .footer-grid {
    flex-direction: column;
  }

  .footer-links {
    justify-content: flex-start;
  }

  .document-toc {
    grid-template-columns: 1fr;
  }

  .document-toc li:nth-last-child(2) {
    border-bottom: 0;
  }
}

@media (prefers-reduced-motion: reduce) {
  html {
    scroll-behavior: auto;
  }
}

/* The language overview shares the same static, locally hosted assets. */
.hero-subline { display: block; margin-top: .3em; color: var(--secondary); font-size: .65em; }
.hero { padding-top: clamp(60px, 7vw, 94px); }
.hero-grid { align-items: center; }
.hero h1 { font-size: clamp(2.65rem, 5.3vw, 5rem); }
.nav-links a.language-switch { display: inline-flex; align-items: center; min-height: 44px; }
@media (max-width: 360px) {
  .site-nav, .nav-links { gap: 8px; }
  .nav-links .nav-action { padding-inline: 10px; }
}

.nav-links { flex-wrap: wrap; row-gap: 4px; min-width: 0; }
.contact-link { overflow-wrap: anywhere; }
@media (min-width: 681px) and (max-width: 1100px) {
  .site-nav { padding-block: 10px; }
}

.feature-callout {
  margin-top: 24px;
  padding: clamp(24px, 4vw, 40px);
  border: var(--rule) solid var(--outline);
  border-left: 5px solid var(--mint);
  border-radius: var(--radius);
  background: var(--panel);
}
.feature-callout h3 { margin-bottom: 12px; }
.feature-callout p { max-width: 900px; margin-bottom: 0; color: var(--secondary); }

/* Keep Watch captures at their native proportions on narrow screens. */
.watch-gallery { display: grid; grid-template-columns: repeat(2, minmax(0, 280px)); gap: 24px; justify-content: center; }
.watch-shot img { display: block; width: 100%; height: auto; aspect-ratio: 416 / 496; }
.watch-shot figcaption { padding: 16px; font-size: 14px; line-height: 1.5; }
@media (max-width: 480px) { .watch-gallery { grid-template-columns: minmax(0, 280px); } }

/* Compact introduction and six native Watch captures. */
.hero { padding: 42px 0 36px; }
.hero-grid { grid-template-columns: minmax(0, 1.65fr) minmax(240px, .75fr); gap: 48px; }
.hero h1 { font-size: clamp(2.1rem, 4.1vw, 3.4rem); line-height: 1.12; margin-bottom: 18px; }
.hero-copy { max-width: 620px; font-size: 1.05rem; line-height: 1.6; }
.hero .eyebrow { margin-bottom: 12px; }
.hero .actions { margin-top: 22px; }
.launch-note { margin: 18px 0 0; color: var(--secondary); font-size: .8rem; }
.hero-index { margin: 0; }
.hero-index > div { padding-block: 13px; }
.section { padding-block: 64px; }
.section-heading h2 { font-size: clamp(1.8rem, 3.6vw, 3rem); }
.section-heading p { max-width: 720px; }
.watch-gallery { grid-template-columns: repeat(3, minmax(0, 1fr)); gap: 32px 24px; }
.watch-shot { margin: 0; padding: 24px 12px 16px; text-align: center; border: 1px solid var(--outline); background: var(--panel); border-radius: var(--radius); }
.watch-case { max-width: 228px; margin: auto; border: 9px solid #232323; border-radius: 48px; background: #000; box-shadow: 0 8px 22px #0004; overflow: hidden; }
.watch-shot img { width: 100%; height: auto; aspect-ratio: 416 / 496; }
.watch-shot figcaption { padding: 18px 0 0; font-size: .85rem; }
.info-note { max-width: 720px; margin-top: 16px; }
.info-note summary { width: 32px; height: 32px; display: grid; place-items: center; border: 1px solid var(--outline); border-radius: 50%; cursor: pointer; font-weight: bold; }
.info-note summary::-webkit-details-marker { display: none; }
.info-note p { margin-top: 14px; font-size: .85rem; color: var(--secondary); }
@media (max-width: 760px) {
 .hero-grid { grid-template-columns: 1fr; gap: 24px; }
 .hero { padding-block: 28px; }
 .hero-index { display: grid; grid-template-columns: 1fr 1fr; gap: 0 18px; }
 .hero-index > div { display: block; padding-block: 9px; }
 .hero-index dt { font-size: .68rem; }
 .hero-index dd { margin: 4px 0 0; font-size: .76rem; }
 .hero h1 { font-size: clamp(1.8rem, 6.8vw, 2.6rem); }
 .section { padding-block: 42px; }
 .watch-gallery { grid-template-columns: repeat(2, minmax(0, 1fr)); gap: 16px 12px; }
 .watch-shot { padding: 14px 8px 12px; }
 .watch-case { border-width: 5px; border-radius: 28px; }
 .watch-shot figcaption { font-size: .72rem; padding-top: 12px; }
}
@media (max-width: 760px) {
 .hero-index { gap: 1px; }
 .hero-index dd { text-align: left; }
}
@media (max-width: 760px) {
 .hero-index { display: none; }
}
