:root {
  --bg: #151312;
  --bg-soft: #1f1b19;
  --card: rgba(14, 14, 14, 0.74);
  --card-strong: rgba(8, 8, 8, 0.84);
  --line: rgba(255, 255, 255, 0.08);
  --text: #f6f0e8;
  --muted: rgba(246, 240, 232, 0.68);
  --ember: #ff6b21;
  --amber: #f8b24f;
  --ash: #d7d1c8;
  --shadow: 0 40px 90px rgba(0, 0, 0, 0.35);
  --toggle-bg: #ebebeb;
  --toggle-button-gradient: linear-gradient(180deg, #ffcc89 0%, #d8860b 100%);
  --toggle-button-left: 2px;
  --toggle-button-transform: translateX(0);
  --toggle-sun-opacity: 1;
  --toggle-moon-opacity: 1;
  --toggle-inset-shadow: inset 0 5px 15px rgba(0, 0, 0, 0.4), inset 0 -5px 15px rgba(255, 255, 255, 0.4);
  --toggle-sun-icon: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='%23ffffff' stroke-width='2' stroke-linecap='round' stroke-linejoin='round'%3E%3Ccircle cx='12' cy='12' r='4'/%3E%3Cpath d='M12 2v2.5M12 19.5V22M4.93 4.93l1.77 1.77M17.3 17.3l1.77 1.77M2 12h2.5M19.5 12H22M4.93 19.07l1.77-1.77M17.3 6.7l1.77-1.77'/%3E%3C/svg%3E");
  --toggle-moon-icon: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='%23515151'%3E%3Cpath d='M21 14.08A9 9 0 1 1 9.92 3 7 7 0 0 0 21 14.08Z'/%3E%3C/svg%3E");
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  min-width: 320px;
  font-family: "Avenir Next", "Trebuchet MS", "Segoe UI", sans-serif;
  color: var(--text);
  background:
    radial-gradient(circle at top left, rgba(248, 178, 79, 0.14), transparent 26%),
    radial-gradient(circle at 78% 16%, rgba(255, 107, 33, 0.18), transparent 18%),
    linear-gradient(145deg, #130f0d 0%, #221a16 42%, #0f0e0d 100%);
}

body::before,
body::after {
  content: "";
  position: fixed;
  inset: auto;
  pointer-events: none;
  filter: blur(10px);
  opacity: 0.55;
}

body::before {
  top: 6rem;
  right: 12%;
  width: 18rem;
  height: 18rem;
  background: radial-gradient(circle, rgba(255, 255, 255, 0.12), transparent 70%);
  animation: drift 14s ease-in-out infinite;
}

body::after {
  top: 10rem;
  right: 20%;
  width: 10rem;
  height: 14rem;
  background: radial-gradient(circle, rgba(255, 255, 255, 0.09), transparent 72%);
  animation: drift 18s ease-in-out infinite reverse;
}

.page-shell {
  position: relative;
  overflow: hidden;
}

.hero,
.screens-section,
.sync-section,
.footer {
  width: min(1180px, calc(100% - 2rem));
  margin: 0 auto;
}

.hero {
  padding: 1.25rem 0 4rem;
}

.topbar {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  margin-bottom: 3rem;
}

.topbar-actions {
  display: flex;
  align-items: center;
  gap: 0.8rem;
}

.language-switch {
  display: inline-flex;
  padding: 0.2rem;
  border: 1px solid var(--line);
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.03);
}

.language-button {
  min-width: 3rem;
  min-height: 2.35rem;
  padding: 0 0.9rem;
  border: 0;
  border-radius: 999px;
  background: transparent;
  color: var(--muted);
  font: inherit;
  font-size: 0.84rem;
  font-weight: 800;
  letter-spacing: 0.08em;
  cursor: pointer;
  transition: background-color 160ms ease, color 160ms ease, transform 160ms ease;
}

.language-button:hover {
  transform: translateY(-1px);
}

.language-button.is-active {
  background: linear-gradient(135deg, rgba(248, 178, 79, 0.95), rgba(255, 107, 33, 0.95));
  color: #121212;
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 0.9rem;
  font-size: 1rem;
  font-weight: 700;
  letter-spacing: 0.04em;
}

.brand-icon {
  width: 2.9rem;
  height: 2.9rem;
  border-radius: 0.95rem;
  box-shadow: 0 14px 28px rgba(0, 0, 0, 0.25);
}

.brand-by {
  color: var(--muted);
  font-size: 0.92rem;
  font-weight: 700;
}

.brand-bytefeed-link {
  display: inline-flex;
  align-items: center;
}

.brand-bytefeed-logo {
  width: auto;
  height: 1.12rem;
  opacity: 0.88;
}

.ghost-link,
.primary-link,
.secondary-link {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 2.8rem;
  padding: 0.8rem 1.2rem;
  border-radius: 999px;
  text-decoration: none;
  transition: transform 160ms ease, background-color 160ms ease, border-color 160ms ease;
}

.ghost-link {
  color: var(--text);
  border: 1px solid var(--line);
  background: rgba(255, 255, 255, 0.02);
}

.ghost-link:hover,
.primary-link:hover,
.secondary-link:hover,
.icon-button:hover {
  transform: translateY(-2px);
}

.hero-grid {
  display: grid;
  grid-template-columns: minmax(0, 1.02fr) minmax(320px, 0.98fr);
  gap: 3rem;
  align-items: center;
}

.hero-visual {
  display: flex;
  justify-content: flex-end;
}

.hero-copy,
.hero-visual,
.feature-card,
.showcase-card,
.sync-card {
  animation: rise 700ms ease both;
}

.hero-copy {
  animation-delay: 80ms;
}

.hero-visual {
  animation-delay: 180ms;
}

.eyebrow {
  margin: 0 0 1rem;
  color: var(--amber);
  font-size: 0.85rem;
  font-weight: 800;
  letter-spacing: 0.16em;
  text-transform: uppercase;
}

h1,
h2,
h3,
p {
  margin: 0;
}

h1 {
  max-width: 12ch;
  font-size: clamp(3.1rem, 8vw, 5.9rem);
  line-height: 0.95;
  letter-spacing: -0.05em;
}

.lede {
  max-width: 38rem;
  margin-top: 1.35rem;
  color: var(--muted);
  font-size: 1.08rem;
  line-height: 1.7;
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 0.85rem;
  margin-top: 1.8rem;
}

.primary-link {
  color: #101010;
  background: linear-gradient(135deg, var(--amber), var(--ember));
  font-weight: 800;
}

.secondary-link {
  color: var(--text);
  border: 1px solid var(--line);
  background: rgba(255, 255, 255, 0.02);
}

.hero-points {
  margin: 1.8rem 0 0;
  padding: 0;
  list-style: none;
}

.hero-points li {
  position: relative;
  margin-top: 0.8rem;
  padding-left: 1.5rem;
  color: var(--muted);
}

.hero-points li::before {
  content: "";
  position: absolute;
  left: 0;
  top: 0.55rem;
  width: 0.5rem;
  height: 0.5rem;
  border-radius: 999px;
  background: linear-gradient(135deg, var(--amber), var(--ember));
  box-shadow: 0 0 1rem rgba(255, 107, 33, 0.35);
}

.device-stack {
  position: relative;
  min-height: 44rem;
}

.lift-card {
  box-shadow: var(--shadow);
}

.phone-mock {
  position: relative;
  width: min(23rem, 100%);
  padding: 0.95rem;
  margin-left: auto;
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: 2.5rem;
  background: linear-gradient(180deg, #2e2b2a, #151515);
}

.phone-notch {
  position: absolute;
  top: 1rem;
  left: 50%;
  width: 8rem;
  height: 1.5rem;
  transform: translateX(-50%);
  border-radius: 999px;
  background: #050505;
  z-index: 2;
}

.screen {
  position: relative;
  min-height: 46rem;
  padding: 3.9rem 1.15rem 1.2rem;
  border-radius: 2rem;
  overflow: hidden;
}

.screen-today {
  background:
    radial-gradient(circle at top right, rgba(248, 178, 79, 0.17), transparent 25%),
    linear-gradient(160deg, #1b1b21, #3a2917 48%, #0c0c0e);
}

.screen-label {
  color: rgba(255, 255, 255, 0.62);
  font-size: 0.95rem;
  font-weight: 700;
}

.today-card,
.widget-body,
.showcase-screen,
.purchase-card {
  border: 1px solid rgba(255, 255, 255, 0.06);
}

.today-card {
  margin-top: 0.7rem;
  padding: 1.25rem;
  border-radius: 1.7rem;
  background: rgba(0, 0, 0, 0.68);
}

.today-card.compact {
  margin-top: 0;
}

.muted,
.meta-title,
.widget-meta span,
.settings-row span:last-child,
.purchase-card span,
.summary-strip span {
  color: rgba(246, 240, 232, 0.6);
}

.muted {
  font-size: 0.88rem;
  font-weight: 700;
  letter-spacing: 0.03em;
}

.count-row {
  display: flex;
  align-items: flex-end;
  gap: 0.7rem;
  margin-top: 0.55rem;
}

.count-number {
  font-size: clamp(3.7rem, 8vw, 5.1rem);
  line-height: 0.88;
  font-weight: 900;
  letter-spacing: -0.06em;
}

.count-unit {
  padding-bottom: 0.65rem;
  color: rgba(255, 255, 255, 0.72);
  font-size: 1rem;
  font-weight: 700;
}

.meta-row,
.widget-meta,
.summary-strip,
.sync-grid {
  display: grid;
  gap: 0.9rem;
}

.meta-row,
.widget-meta,
.summary-strip {
  grid-template-columns: repeat(2, minmax(0, 1fr));
  margin-top: 1rem;
}

.meta-title,
.widget-meta span {
  display: block;
  margin-bottom: 0.3rem;
  font-size: 0.73rem;
  font-weight: 800;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.smoke-button-preview {
  display: grid;
  place-items: center;
  gap: 0.45rem;
  margin-top: 1rem;
  min-height: 12rem;
  border-radius: 2rem;
  color: #090909;
  background: linear-gradient(135deg, #f8b24f, #ff6b21);
  font-size: 1.3rem;
  font-weight: 800;
  text-align: center;
  box-shadow: 0 22px 50px rgba(255, 107, 33, 0.24);
}

.smoke-button-preview.compact {
  min-height: 9rem;
}

.plus-mark {
  font-size: 2.4rem;
  line-height: 1;
  font-weight: 900;
}

.mini-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 0.8rem;
  margin-top: 1rem;
}

.mini-card,
.purchase-card,
.sync-card,
.showcase-card,
.feature-card,
.widget-mock,
.watch-screen {
  background: rgba(0, 0, 0, 0.5);
}

.mini-card {
  padding: 1rem;
  border: 1px solid rgba(255, 255, 255, 0.06);
  border-radius: 1.35rem;
}

.mini-card span,
.mini-card small {
  display: block;
  color: rgba(255, 255, 255, 0.6);
  font-size: 0.76rem;
}

.mini-card strong {
  display: block;
  margin-top: 0.35rem;
  font-size: 1.8rem;
  line-height: 1;
}

.mini-card.wide {
  grid-column: 1 / -1;
}

.mini-card.wide strong {
  font-size: 1.05rem;
  line-height: 1.2;
}

.widget-mock {
  position: absolute;
  right: 15rem;
  bottom: 2.2rem;
  width: 22rem;
  padding: 1rem;
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: 2rem;
  backdrop-filter: blur(12px);
}

.widget-head,
.showcase-head {
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.widget-head {
  margin-bottom: 0.8rem;
  color: rgba(246, 240, 232, 0.78);
  font-size: 0.85rem;
  font-weight: 700;
}

.pill {
  padding: 0.22rem 0.55rem;
  border-radius: 999px;
  background: rgba(255, 107, 33, 0.16);
  color: #ffb98b;
}

.widget-body {
  padding: 1.05rem;
  border-radius: 1.55rem;
  background: rgba(0, 0, 0, 0.72);
}

.widget-count {
  display: flex;
  align-items: center;
  gap: 0.65rem;
  margin-top: 0.45rem;
}

.widget-count span {
  font-size: 3rem;
  line-height: 0.9;
  font-weight: 900;
}

.widget-count small {
  color: rgba(246, 240, 232, 0.72);
  font-size: 0.92rem;
  font-weight: 700;
}

.icon-button {
  width: 3rem;
  height: 3rem;
  padding: 0;
  border: 0;
  border-radius: 0.9rem;
  background: transparent;
  cursor: pointer;
}

.icon-button img,
.watch-screen img {
  width: 100%;
  height: 100%;
  border-radius: inherit;
  display: block;
}

.watch-mock {
  position: absolute;
  right: 0;
  top: 3rem;
  width: 12rem;
  padding: 0.9rem;
  border-radius: 2.6rem;
  border: 1px solid rgba(255, 255, 255, 0.08);
  background: linear-gradient(180deg, #2a2827, #121212);
}

.watch-screen {
  display: grid;
  place-items: center;
  gap: 0.65rem;
  min-height: 14rem;
  padding: 1.25rem;
  border-radius: 2rem;
  text-align: center;
}

.watch-screen img {
  width: 4rem;
  height: 4rem;
  border-radius: 1.25rem;
}

.watch-screen p {
  color: var(--muted);
  font-weight: 700;
}

.watch-screen strong {
  font-size: 1.35rem;
  line-height: 1.1;
}

.feature-band {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 1rem;
  width: min(1180px, calc(100% - 2rem));
  margin: 0 auto;
  padding: 1rem 0 4rem;
}

.feature-card,
.showcase-card,
.sync-card {
  padding: 1.4rem;
  border: 1px solid var(--line);
  border-radius: 1.7rem;
  backdrop-filter: blur(10px);
}

.feature-kicker {
  display: inline-block;
  margin-bottom: 0.8rem;
  color: var(--amber);
  font-size: 0.78rem;
  font-weight: 800;
  letter-spacing: 0.14em;
  text-transform: uppercase;
}

.feature-card h2,
.section-copy h2 {
  font-size: clamp(1.6rem, 4vw, 2.8rem);
  line-height: 1.02;
  letter-spacing: -0.04em;
}

.feature-card p,
.section-copy p,
.sync-card p,
.footer p {
  margin-top: 0.8rem;
  color: var(--muted);
  line-height: 1.7;
}

.screens-section {
  padding: 2rem 0 4rem;
}

.section-copy {
  max-width: 40rem;
}

.section-copy.narrow {
  max-width: 46rem;
  text-align: center;
  margin: 0 auto;
}

.screens-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 1rem;
  margin-top: 2rem;
}

.showcase-card:nth-child(1) {
  animation-delay: 110ms;
}

.showcase-card:nth-child(2) {
  animation-delay: 180ms;
}

.showcase-card:nth-child(3) {
  animation-delay: 250ms;
}

.showcase-head {
  margin-bottom: 1rem;
  color: rgba(246, 240, 232, 0.84);
  font-size: 0.95rem;
  font-weight: 700;
}

.dot {
  width: 0.55rem;
  height: 0.55rem;
  border-radius: 999px;
  background: linear-gradient(135deg, var(--amber), var(--ember));
}

.showcase-screen {
  min-height: 24rem;
  padding: 1rem;
  border-radius: 1.4rem;
  background:
    radial-gradient(circle at top right, rgba(255, 255, 255, 0.08), transparent 22%),
    rgba(0, 0, 0, 0.42);
}

.segment-row {
  display: flex;
  flex-wrap: wrap;
  gap: 0.45rem;
}

.segment {
  padding: 0.42rem 0.75rem;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.06);
  color: rgba(246, 240, 232, 0.72);
  font-size: 0.76rem;
  font-weight: 700;
}

.segment.active {
  color: #0f0f0f;
  background: linear-gradient(135deg, var(--amber), var(--ember));
}

.bar-chart {
  display: flex;
  align-items: end;
  justify-content: space-between;
  gap: 0.45rem;
  height: 11rem;
  margin-top: 1.2rem;
  padding: 0.6rem 0.35rem 0;
}

.bar-chart span {
  flex: 1 1 auto;
  border-radius: 999px 999px 0.45rem 0.45rem;
  background: linear-gradient(180deg, #f8b24f, #ff6b21);
  box-shadow: 0 10px 24px rgba(255, 107, 33, 0.18);
}

.axis-row {
  display: flex;
  justify-content: space-between;
  margin-top: 0.7rem;
  color: rgba(246, 240, 232, 0.56);
  font-size: 0.73rem;
  font-weight: 700;
}

.summary-strip {
  margin-top: 1rem;
}

.summary-strip strong {
  display: block;
  font-size: 1.25rem;
}

.settings-showcase {
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
}

.settings-row {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  padding: 0.9rem 1rem;
  border-radius: 1rem;
  background: rgba(255, 255, 255, 0.04);
}

.settings-row.active {
  outline: 1px solid rgba(255, 107, 33, 0.44);
  background: rgba(255, 107, 33, 0.08);
}

.settings-row span {
  font-size: 0.9rem;
}

.purchase-card {
  margin-top: auto;
  padding: 1rem;
  border-radius: 1.15rem;
}

.purchase-card strong,
.sync-card h3 {
  display: block;
  margin-top: 0.25rem;
  font-size: 1.15rem;
}

.purchase-card small {
  display: block;
  margin-top: 0.45rem;
  color: rgba(246, 240, 232, 0.6);
}

.shot-cluster {
  position: relative;
  display: grid;
  grid-template-columns: minmax(240px, 320px) minmax(180px, 240px);
  gap: 1rem;
  align-items: end;
  width: 100%;
  max-width: 36rem;
  margin-left: auto;
}

.hero-watch-stack {
  display: grid;
  gap: 1rem;
}

.hero-shot,
.gallery-block {
  padding: 1rem;
  border: 1px solid var(--line);
  border-radius: 1.8rem;
  background: linear-gradient(180deg, rgba(19, 17, 16, 0.86), rgba(7, 7, 7, 0.92));
  backdrop-filter: blur(12px);
}

.hero-phone {
  padding: 1.1rem;
  background:
    radial-gradient(circle at top right, rgba(248, 178, 79, 0.16), transparent 24%),
    linear-gradient(180deg, rgba(19, 17, 16, 0.86), rgba(7, 7, 7, 0.92));
}

.hero-widget {
  align-self: start;
}

.hero-shot-head,
.gallery-header {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  gap: 1rem;
}

.hero-shot-head {
  margin-bottom: 0.85rem;
}

.hero-shot-kicker {
  display: inline-block;
  color: var(--amber);
  font-size: 0.72rem;
  font-weight: 800;
  letter-spacing: 0.14em;
  text-transform: uppercase;
}

.hero-shot-title {
  display: block;
  margin-top: 0.35rem;
  font-size: 1rem;
  font-weight: 700;
  color: rgba(246, 240, 232, 0.84);
}

.hero-image,
.gallery-card img {
  display: block;
  width: 100%;
  height: auto;
  border-radius: 1.35rem;
}

.hero-image {
  border: 1px solid rgba(255, 255, 255, 0.06);
  box-shadow: 0 24px 60px rgba(0, 0, 0, 0.28);
}

.phone-image {
  aspect-ratio: 1242 / 2688;
  object-fit: cover;
}

.widget-image {
  aspect-ratio: 1242 / 2688;
  object-fit: cover;
  object-position: top center;
}

.watch-image,
.complication-image {
  aspect-ratio: 422 / 514;
  object-fit: cover;
  background: #000;
}

.gallery-stack {
  display: grid;
  gap: 1.35rem;
  margin-top: 2rem;
}

.gallery-header p {
  max-width: 28rem;
  margin: 0;
  color: var(--muted);
  line-height: 1.7;
}

.gallery-header-main {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  gap: 1rem;
  width: 100%;
}

.gallery-header-copy {
  flex: 1 1 22rem;
}

.gallery-header h3 {
  margin: 0.2rem 0 0;
  font-size: clamp(1.4rem, 3.4vw, 2rem);
  line-height: 1.05;
  letter-spacing: -0.04em;
}

.gallery-theme-control {
  display: inline-flex;
  align-items: center;
  gap: 0.75rem;
  margin-left: auto;
}

.gallery-theme-text {
  color: rgba(246, 240, 232, 0.72);
  font-size: 0.78rem;
  font-weight: 800;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  white-space: nowrap;
}

.darkmode-switch-wrap {
  flex: 0 0 auto;
}

.darkmode-toggle {
  width: 0;
  height: 0;
  visibility: hidden;
  position: absolute;
}

.darkmode-label {
  width: 76px;
  height: 32px;
  position: relative;
  display: block;
  border-radius: 200px;
  background: var(--toggle-bg);
  box-shadow: var(--toggle-inset-shadow);
  cursor: pointer;
  transition: 0.3s;
}

.darkmode-label::after {
  content: "";
  width: 28px;
  height: 28px;
  position: absolute;
  top: 2px;
  left: var(--toggle-button-left);
  transform: var(--toggle-button-transform);
  border-radius: 180px;
  background: var(--toggle-button-gradient);
  box-shadow: 0 5px 10px rgba(0, 0, 0, 0.2);
  transition: 0.3s;
  z-index: 1;
}

.darkmode-label:active::after {
  width: 38px;
}

.darkmode-label .sun,
.darkmode-label .moon {
  position: absolute;
  top: 8px;
  width: 16px;
  height: 16px;
  transition: 0.3s;
  background-repeat: no-repeat;
  background-position: center;
  background-size: 16px 16px;
  z-index: 2;
}

.darkmode-label .sun {
  left: 8px;
  opacity: var(--toggle-sun-opacity);
  background-image: var(--toggle-sun-icon);
}

.darkmode-label .moon {
  left: 52px;
  opacity: var(--toggle-moon-opacity);
  background-image: var(--toggle-moon-icon);
}

.darkmode-toggle:checked + .darkmode-label::after {
  left: calc(100% - 2px);
  transform: translateX(-100%);
}

.gallery-block.is-light {
  border-color: rgba(25, 25, 25, 0.08);
  background: linear-gradient(180deg, rgba(248, 246, 241, 0.98), rgba(235, 232, 225, 0.98));
  box-shadow: 0 30px 80px rgba(0, 0, 0, 0.12);
}

.gallery-block.is-light .eyebrow,
.gallery-block.is-light .gallery-theme-text {
  color: #8f5207;
}

.gallery-block.is-light .gallery-header p {
  color: rgba(40, 38, 33, 0.72);
}

.gallery-block.is-light .gallery-header h3,
.gallery-block.is-light .gallery-caption {
  color: #171513;
}

.gallery-block.is-light .gallery-card {
  border-color: rgba(20, 20, 20, 0.08);
  background: rgba(255, 255, 255, 0.84);
  box-shadow: 0 18px 36px rgba(27, 23, 18, 0.08);
}

.gallery-grid {
  display: grid;
  gap: 1rem;
  margin-top: 1.35rem;
}

.gallery-grid-5 {
  grid-template-columns: repeat(auto-fit, minmax(150px, 180px));
  justify-content: center;
}

.gallery-grid-4 {
  grid-template-columns: repeat(auto-fit, minmax(220px, 320px));
  justify-content: center;
}

.gallery-grid-watch {
  grid-template-columns: repeat(auto-fit, minmax(170px, 210px));
  justify-content: center;
}

.gallery-card {
  padding: 0.75rem;
  border-radius: 1.5rem;
  border: 1px solid rgba(255, 255, 255, 0.06);
  background: rgba(0, 0, 0, 0.48);
}

.gallery-grid-5 .gallery-card {
  max-width: 180px;
}

.gallery-grid-4 .gallery-card {
  max-width: 320px;
}

.gallery-grid-watch .gallery-card {
  max-width: 210px;
}

.gallery-card img {
  background: #000;
}

.tablet-card img {
  aspect-ratio: 2064 / 2752;
  object-fit: cover;
}

.gallery-caption {
  margin-top: 0.8rem;
  color: rgba(246, 240, 232, 0.9);
  font-size: 0.93rem;
  font-weight: 700;
}

.watch-card {
  max-width: 17rem;
}

.watch-device-shot {
  display: block;
  width: min(13rem, 100%);
  height: auto;
  margin: 0 auto;
}

.privacy-card {
  max-width: 52rem;
  margin: 0 auto;
  padding: 2rem;
}

.privacy-section + .privacy-section {
  margin-top: 2rem;
  padding-top: 2rem;
  border-top: 1px solid var(--line);
}

.privacy-section h2 {
  font-size: 1.2rem;
  line-height: 1.2;
}

.privacy-section p {
  margin-top: 0.9rem;
  color: var(--muted);
  line-height: 1.75;
}

.privacy-list {
  margin: 1rem 0 0;
  padding-left: 1.2rem;
  color: var(--muted);
}

.privacy-list li + li {
  margin-top: 0.7rem;
}

.sync-section {
  padding: 2rem 0 4rem;
}

.sync-grid {
  grid-template-columns: repeat(3, minmax(0, 1fr));
  margin-top: 2rem;
}

.footer {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  padding: 0 0 2.5rem;
  border-top: 1px solid rgba(255, 255, 255, 0.08);
}

.footer-copy {
  display: flex;
  flex-direction: column;
  align-items: flex-end;
  gap: 0.55rem;
}

.footer p {
  max-width: 32rem;
}

.footer-link {
  color: var(--amber);
  font-size: 0.95rem;
  font-weight: 700;
  text-decoration: none;
}

.footer-links {
  display: flex;
  align-items: center;
  gap: 0.9rem;
}

.footer-logo-link {
  display: inline-flex;
  align-items: center;
}

.footer-logo {
  width: auto;
  height: 1.18rem;
  opacity: 0.9;
}

.footer-link:hover {
  text-decoration: underline;
}

@keyframes rise {
  from {
    opacity: 0;
    transform: translateY(24px);
  }

  to {
    opacity: 1;
    transform: translateY(0);
  }
}

@keyframes drift {
  0%,
  100% {
    transform: translate3d(0, 0, 0) scale(1);
  }

  50% {
    transform: translate3d(1rem, -1.2rem, 0) scale(1.06);
  }
}

@media (max-width: 1080px) {
  .hero-grid,
  .feature-band,
  .screens-grid,
  .sync-grid,
  .footer {
    grid-template-columns: 1fr;
  }

  .hero-grid {
    gap: 2rem;
  }

  .shot-cluster {
    grid-template-columns: 1fr 1fr;
    max-width: 42rem;
    margin: 0 auto;
  }

  .hero-watch-stack {
    grid-column: 1 / -1;
    grid-template-columns: 1fr 1fr;
  }

  .device-stack {
    min-height: auto;
    display: grid;
    gap: 1rem;
  }

  .phone-mock,
  .widget-mock,
  .watch-mock {
    position: static;
    width: 100%;
    max-width: 24rem;
    margin: 0 auto;
  }

  .screen {
    min-height: 40rem;
  }

  .feature-band {
    padding-top: 0;
  }

  .footer {
    display: grid;
  }

  .footer-copy {
    align-items: flex-start;
  }
}

@media (max-width: 720px) {
  .hero {
    padding-top: 1rem;
  }

  .topbar {
    align-items: flex-start;
    flex-direction: column;
    margin-bottom: 2rem;
  }

  .topbar-actions {
    width: 100%;
    justify-content: space-between;
  }

  h1 {
    max-width: none;
  }

  .shot-cluster,
  .hero-watch-stack,
  .gallery-grid-5,
  .gallery-grid-4,
  .gallery-grid-watch,
  .footer {
    grid-template-columns: 1fr;
  }

  .gallery-header,
  .hero-shot-head {
    flex-direction: column;
  }

  .gallery-header-main {
    width: 100%;
    flex-direction: column;
  }

  .gallery-theme-control {
    margin-left: 0;
  }

  .hero-visual {
    justify-content: center;
  }

  .shot-cluster {
    max-width: 22rem;
  }

  .gallery-grid-5 .gallery-card,
  .gallery-grid-4 .gallery-card,
  .gallery-grid-watch .gallery-card {
    width: 100%;
    max-width: 22rem;
    margin: 0 auto;
  }

  .gallery-card {
    padding: 0.6rem;
  }

  .watch-card {
    max-width: none;
  }

  .screen {
    min-height: auto;
  }

  .today-card,
  .showcase-screen,
  .widget-body {
    padding: 1rem;
  }

  .count-row {
    flex-wrap: wrap;
  }

  .count-unit {
    padding-bottom: 0;
  }

  .meta-row,
  .widget-meta,
  .summary-strip {
    grid-template-columns: 1fr;
  }
}
