:root {
  --bg: #07080a;
  --bg-elevated: #111214;
  --surface: #1b1c1e;
  --text: #ffffff;
  --text-secondary: #dddee1;
  --text-tertiary: #7a7b7c;
  --accent: #0088FF;
  --accent-rgb: 0, 136, 255;
  --accent-2: #4dabff;
  --accent-soft: rgba(var(--accent-rgb), 0.15);
  --accent-line: rgba(var(--accent-rgb), 0.4);
  --accent-glow: rgba(var(--accent-rgb), 0.2);
  --hairline: rgba(255, 255, 255, 0.08);
  --hairline-strong: rgba(255, 255, 255, 0.14);
  --window: #18181b;
  --window-bar: #1F1F21;
  --row-hover: rgba(var(--accent-rgb), 0.1);
  --row-active: rgba(var(--accent-rgb), 0.16);
  --shadow: 0 20px 50px -24px rgba(0, 0, 0, 0.7);
  --shadow-window: 0 50px 100px -30px rgba(0, 0, 0, 0.85);
  --spotlight: rgba(255, 255, 255, 0.055);
  --radius-md: 12px;
  --radius-lg: 18px;
  --page-pad-top: 176px;
  --page-pad-bottom: 112px;
  --nav-dock: 0;
  --nav-content-max: calc(1200px * (1 - var(--nav-dock)) + 1600px * var(--nav-dock));
  --sans: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, Helvetica, Arial, sans-serif;
  color-scheme: dark;
}

*,
*::before,
*::after {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
  overflow-x: hidden;
  overscroll-behavior-x: none;
}

body {
  margin: 0;
  min-height: 100dvh;
  display: flex;
  flex-direction: column;
  color: var(--text);
  font-family: var(--sans);
  line-height: 1.55;
  -webkit-font-smoothing: antialiased;
  background: var(--bg);
  overflow-x: hidden;
  overscroll-behavior-x: none;
  touch-action: pan-y;
}

main {
  flex: 1;
  display: flex;
  flex-direction: column;
  justify-content: flex-start;
}

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

a {
  color: inherit;
  text-decoration: none;
}

::selection {
  background: rgba(var(--accent-rgb), 0.28);
}

:focus-visible {
  outline: 2px solid rgba(var(--accent-rgb), 0.5);
  outline-offset: 3px;
}

.skip {
  position: absolute;
  left: -999px;
}

.skip:focus {
  left: 1rem;
  top: 1rem;
  z-index: 50;
  padding: 0.5rem 0.85rem;
  border-radius: 999px;
  background: var(--bg-elevated);
  border: 1px solid var(--hairline);
}

/* Header — floating pill → full-width dock (scroll-driven via --nav-dock 0→1) */
.site-header {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 40;
  display: flex;
  justify-content: center;
  width: 100%;
  padding:
    calc(16px * (1 - var(--nav-dock)))
    calc(16px * (1 - var(--nav-dock)))
    0;
  /* Full-bleed frosted bar when docked — translucent so page content blurs through */
  background: rgba(12, 13, 15, calc(0.66 * var(--nav-dock)));
  backdrop-filter: blur(calc(28px * var(--nav-dock))) saturate(calc(1 + 0.6 * var(--nav-dock)));
  -webkit-backdrop-filter: blur(calc(28px * var(--nav-dock))) saturate(calc(1 + 0.6 * var(--nav-dock)));
  border-bottom: 1px solid rgba(255, 255, 255, calc(0.08 * var(--nav-dock)));
  box-shadow: 0 calc(10px * var(--nav-dock)) calc(24px * var(--nav-dock)) rgba(0, 0, 0, calc(0.18 * var(--nav-dock)));
  pointer-events: none;
}

.site-header-inner {
  pointer-events: auto;
  position: relative;
  display: flex;
  flex-direction: column;
  width: 100%;
  /* Pill 1200 → docked content 1600 (shared with footer via --nav-content-max) */
  max-width: var(--nav-content-max);
  padding: 16px;
  overflow: hidden;
  /* Floating pill glass (fades out as the full-bleed header takes over) */
  background: linear-gradient(
    137deg,
    rgba(17, 18, 20, calc(0.62 * (1 - var(--nav-dock)))) 4.87%,
    rgba(12, 13, 15, calc(0.78 * (1 - var(--nav-dock)))) 75.88%
  );
  backdrop-filter: blur(calc(24px * (1 - var(--nav-dock)))) saturate(calc(1 + 0.5 * (1 - var(--nav-dock))));
  -webkit-backdrop-filter: blur(calc(24px * (1 - var(--nav-dock)))) saturate(calc(1 + 0.5 * (1 - var(--nav-dock))));
  border-style: solid;
  border-color: rgba(255, 255, 255, calc(0.08 * (1 - var(--nav-dock))));
  border-width: calc(1px * (1 - var(--nav-dock)));
  border-radius: calc(16px * (1 - var(--nav-dock)));
  box-shadow: inset 0 1px 1px rgba(255, 255, 255, calc(0.14 * (1 - var(--nav-dock))));
  transition: height 0.3s ease;
}

.nav-brand {
  display: flex;
  align-items: center;
  justify-content: space-between;
  width: 100%;
  min-height: 24px;
}

.brand-mark {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  font-size: 15px;
  font-weight: 700;
  letter-spacing: -0.03em;
  color: #fff;
  transition: transform 0.2s ease;
}

.brand-mark:hover {
  transform: scale(1.05);
}

.brand-mark svg {
  display: block;
  width: 22px;
  height: auto;
  color: var(--accent);
  flex-shrink: 0;
}

.nav-toggle {
  display: flex;
  flex-direction: column;
  justify-content: center;
  gap: 5px;
  width: 36px;
  height: 36px;
  margin: -6px -6px -6px 0;
  padding: 8px;
  border: 0;
  border-radius: 8px;
  background: transparent;
  cursor: pointer;
}

.nav-toggle-line {
  display: block;
  width: 100%;
  height: 1.5px;
  border-radius: 1px;
  background: rgba(255, 255, 255, 0.7);
  transition: transform 0.2s ease, opacity 0.2s ease;
}

.site-header.is-open .nav-toggle-line:nth-child(1) {
  transform: translateY(6.5px) rotate(45deg);
}

.site-header.is-open .nav-toggle-line:nth-child(2) {
  opacity: 0;
}

.site-header.is-open .nav-toggle-line:nth-child(3) {
  transform: translateY(-6.5px) rotate(-45deg);
}

.nav-links {
  display: none;
  flex-direction: column;
  gap: 4px;
  padding: 48px 0 32px;
}

.site-header.is-open .nav-links {
  display: flex;
}

.nav-link {
  display: block;
  padding: 12px 8px;
  border-radius: 6px;
  color: #9c9c9d;
  font-size: 14px;
  font-weight: 500;
  letter-spacing: 0.2px;
  white-space: nowrap;
  transition: color 0.2s ease-in-out, background 0.2s ease-in-out;
}

.nav-link:hover {
  color: #fff;
}

.nav-secondary {
  display: none;
  gap: 16px;
  align-items: center;
  padding-top: 32px;
  border-top: 1px solid rgba(255, 255, 255, 0.1);
}

.site-header.is-open .nav-secondary {
  display: flex;
  flex-wrap: wrap;
}

.nav-cta {
  gap: 6px;
  white-space: nowrap;
}

.btn-icon,
.icon,
.ph-bold {
  flex-shrink: 0;
  line-height: 1;
}

.btn-icon {
  font-size: 17px;
}

.icon {
  font-size: 15px;
}

.nav-cta-count {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-width: 18px;
  height: 18px;
  padding: 0 5px;
  margin-left: 2px;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.12);
  color: #fff;
  font-size: 11px;
  font-weight: 600;
  line-height: 1;
  letter-spacing: 0;
}

.nav-cta-count[data-count]:not([data-count="0"]) {
  background: var(--accent);
}

@media (min-width: 880px) {
  .site-header-inner {
    display: flex;
    flex-direction: row;
    align-items: center;
    justify-content: center;
    height: 76px;
    padding: 16px 32px;
    overflow: visible;
  }

  .nav-brand {
    position: absolute;
    top: 50%;
    left: 32px;
    width: auto;
    transform: translateY(-50%);
  }

  .nav-toggle {
    display: none;
  }

  .nav-links {
    display: flex;
    flex-direction: row;
    align-items: center;
    gap: 16px;
    padding: 0;
  }

  .nav-secondary {
    position: absolute;
    top: 50%;
    right: 32px;
    display: flex;
    align-items: center;
    height: auto;
    padding: 0;
    border-top: none;
    transform: translateY(-50%);
  }

  .site-header.is-open .nav-links,
  .site-header.is-open .nav-secondary {
    display: flex;
  }
}

/* Hero — Raycast centered */
.hero {
  position: relative;
  isolation: isolate;
  max-width: 920px;
  margin: 0 auto;
  padding: clamp(140px, 20vw, 184px) clamp(20px, 4vw, 36px) clamp(28px, calc(8vw - 25px), 56px);
  text-align: center;
  overflow: visible;
}

/* Centre without transform — transform on the WebGL canvas invites layer reordering */
.hero-webgl-layer {
  position: absolute;
  top: 0;
  bottom: 0;
  left: calc(50% - min(700px, 80vw));
  width: min(1400px, 160vw);
  z-index: 0;
  pointer-events: none;
  overflow: hidden;
}

.hero-webgl {
  display: block;
  width: 100%;
  height: 100%;
}

/* All copy shares one compositor layer above the canvas.
   Without this, text-shadow / large type on the title can promote alone
   and leave the subtitle under the WebGL surface. */
.hero-content {
  position: relative;
  z-index: 2;
  transform: translateZ(0);
  -webkit-backface-visibility: hidden;
  backface-visibility: hidden;
}

.hero-title {
  margin: 0 auto 18px;
  max-width: 14ch;
  font-size: clamp(40px, 8.5vw, 72px);
  font-weight: 800;
  letter-spacing: -0.055em;
  line-height: 1.02;
  color: #fff;
}

.hero-subtitle {
  position: relative;
  margin: 0 auto 28px;
  max-width: 34rem;
  color: var(--text-secondary);
  font-size: clamp(18px, 2.2vw, 21px);
  font-weight: 600;
  line-height: 1.55;
  /* -webkit-font-smoothing: antialiased; */
}

/* CSS fake light behind subtitle.
   Disabled while testing WebGL emissive glow from metaballs.
   REVERT: remove `display: none;` (or delete this one line). */
.hero-subtitle::before {
  display: none;
  content: "";
  position: absolute;
  left: 50%;
  top: 50%;
  z-index: -1;
  width: min(1040px, 140vw);
  height: min(430px, 62vw);
  transform: translate(-50%, -50%);
  pointer-events: none;
  background: radial-gradient(
    ellipse 82% 68% at 50% 50%,
    rgba(var(--accent-rgb), 0.4) 0%,
    rgba(var(--accent-rgb), 0.24) 36%,
    rgba(var(--accent-rgb), 0.1) 60%,
    transparent 78%
  );
  filter: blur(64px);
  opacity: 0.6;
}

.hero-cta {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 10px;
  margin-top: 0;
  padding-top: 12px;
}

/* Buttons — shared red + white system */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  min-height: 36px;
  padding: 8px 14px;
  border: none;
  border-radius: 8px;
  font: inherit;
  font-size: 14px;
  font-weight: 500;
  letter-spacing: 0.2px;
  line-height: 16px;
  text-decoration: none;
  white-space: nowrap;
  cursor: pointer;
  transition:
    transform 0.15s ease,
    background-color 0.2s ease,
    box-shadow 0.2s ease,
    opacity 0.15s ease;
}

.btn-small {
  min-height: 32px;
  padding: 6px 12px;
  font-size: 13px;
}

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

.btn:active {
  transform: translateY(0);
}

.btn:disabled,
.btn[aria-disabled="true"] {
  opacity: 0.7;
  cursor: not-allowed;
  transform: none;
  pointer-events: none;
}

/* Red — primary CTA */
.btn-primary {
  background: var(--accent);
  color: #fff;
  box-shadow: 0 8px 24px rgba(var(--accent-rgb), 0.3);
}

.btn-primary:hover {
  background: color-mix(in srgb, var(--accent) 88%, #fff);
  color: #fff;
}

.btn-primary:active {
  background: #f25555;
}

a.app-store-badge {
  display: inline-block;
  line-height: 0;
  text-decoration: none;
}

a.app-store-badge img {
  display: block;
  height: 40px;
  width: auto;
}

/* White — secondary / ghost actions */
.btn-secondary,
.btn-ghost {
  background: #e6e6e6;
  color: #2f3031;
  box-shadow:
    rgba(0, 0, 0, 0.5) 0 0 0 2px,
    rgba(255, 255, 255, 0.19) 0 0 14px 0,
    rgba(0, 0, 0, 0.2) 0 -1px 0.4px 0 inset,
    rgb(255, 255, 255) 0 1px 0.4px 0 inset;
}

.btn-secondary:hover,
.btn-ghost:hover {
  background: #fff;
  color: #2f3031;
}

.btn-secondary:active,
.btn-ghost:active {
  background: #f2f2f2;
}

/* Dark — nav cart (lifts from nav like elevated panels lift from page bg) */
.btn-cart {
  background: #1b1c1e;
  color: #fff;
  border: 1px solid rgba(255, 255, 255, 0.1);
  box-shadow: none;
}

.btn-cart:hover {
  background: #232427;
  color: #fff;
  border-color: rgba(255, 255, 255, 0.14);
}

.btn-cart:active {
  background: #161719;
  color: #fff;
}

.btn-block {
  width: 100%;
}

/* Apps stage */
.apps {
  position: relative;
  padding: 25px clamp(20px, 4vw, 36px) clamp(72px, 12vw, 120px);
  overflow: visible;
}

.apps-stage {
  position: relative;
  z-index: 1;
  max-width: 860px;
  margin: 0 auto;
  user-select: none;
}

/* Launcher window — tongue-in-cheek macOS Finder */
.product_hero {
  position: relative;
  z-index: 1;
  border: 1px solid rgba(255, 255, 255, 0.18);
  border-radius: 12px;
  background: #1c1c1e;
  box-shadow: 0 22px 60px rgba(0, 0, 0, 0.22);
  overflow: hidden;
  text-align: left;
  transform: translateZ(0);
  animation: rise 0.8s cubic-bezier(0.2, 0.8, 0.2, 1) both;
}

@keyframes rise {
  from {
    opacity: 0;
    transform: translateY(18px) scale(0.98);
  }
  to {
    opacity: 1;
    transform: translateY(0) scale(1);
  }
}

.product_hero-shell {
  display: grid;
  grid-template-columns: 188px 1fr;
  /* ~toolbar + a couple of product rows so sparse lists don’t collapse the chrome */
  min-height: 510px;
  align-items: stretch;
}

.finder-sidebar {
  display: flex;
  flex-direction: column;
  gap: 18px;
  padding: 12px 10px 16px;
  background: #25262A;
  border-right: 1px solid rgba(0, 0, 0, 0.4);
  /* Full-height sidebar: traffic lights live here, not in a shared title bar */
  align-self: stretch;
}

.product_hero-controls {
  display: flex;
  gap: 7px;
  padding: 2px 8px 10px;
}

.product_hero-controls--toolbar {
  display: none;
  padding: 0;
  flex-shrink: 0;
}

.product_hero-controls span {
  width: 12px;
  height: 12px;
  border-radius: 50%;
  background: #3f3f46;
  box-shadow: inset 0 0 0 0.5px rgba(0, 0, 0, 0.25);
}

.product_hero-controls span:nth-child(1) { background: #ff5f57; }
.product_hero-controls span:nth-child(2) { background: #febc2e; }
.product_hero-controls span:nth-child(3) { background: #28c840; }

.finder-section + .finder-section {
  margin-top: 4px;
}

.finder-section-label {
  margin: 0 0 6px;
  padding: 0 10px;
  color: rgba(255, 255, 255, 0.45);
  font-size: 12px;
  font-weight: 600;
  letter-spacing: 0.01em;
}

.finder-item {
  display: flex;
  align-items: center;
  gap: 9px;
  width: 100%;
  margin: 0;
  padding: 10px 10px;
  border: 0;
  border-radius: 7px;
  background: transparent;
  color: rgba(255, 255, 255, 0.92);
  font: inherit;
  font-size: 14.5px;
  font-weight: 400;
  text-align: left;
  text-decoration: none;
  cursor: default;
  box-sizing: border-box;
}

a.finder-item {
  cursor: pointer;
}

a.finder-item:hover {
  background: rgba(255, 255, 255, 0.08);
}

.finder-item svg {
  width: 20px;
  height: 20px;
  flex-shrink: 0;
  font-size: 20px;
  line-height: 1;
}

.finder-item .finder-apps-icon,
.finder-item .finder-apps-icon path,
.finder-item .finder-nav-icon,
.finder-item .finder-nav-icon path {
  color: var(--accent);
  fill: var(--accent);
}

.finder-item.is-selected {
  background: #343438;
  color: #fff;
}

.finder-item.is-selected .finder-apps-icon,
.finder-item.is-selected .finder-apps-icon path,
.finder-item.is-selected .finder-nav-icon,
.finder-item.is-selected .finder-nav-icon path {
  color: var(--accent);
  fill: var(--accent);
}

.finder-main {
  position: relative;
  display: flex;
  flex-direction: column;
  min-width: 0;
  background: #1c1c1e;
  isolation: isolate;
}

.product_hero-toolbar {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  z-index: 2;
  display: flex;
  align-items: center;
  gap: 12px;
  min-height: 52px;
  padding: 0 16px 0 12px;
  /* Same frosted main-pane glass as the path bar */
  background: rgba(28, 28, 30, 0.72);
  border-bottom: 0;
  backdrop-filter: blur(40px) saturate(1.8);
  -webkit-backdrop-filter: blur(40px) saturate(1.8);
  box-shadow: none;
}

.product_hero-title {
  margin: 0;
  flex-shrink: 0;
  color: rgba(255, 255, 255, 0.92);
  font-size: 15px;
  font-weight: 700;
  letter-spacing: -0.015em;
  text-align: left;
}

.finder-search {
  position: relative;
  display: flex;
  align-items: center;
  margin-left: auto;
  flex: 0 1 220px;
  min-width: 148px;
  max-width: 248px;
  height: 38px;
  min-height: 38px;
  padding: 0 10px 0 32px;
  border: 1px solid rgba(255, 255, 255, 0.12);
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.08);
  box-sizing: border-box;
  transition: border-color 0.12s ease, box-shadow 0.12s ease, background 0.12s ease;
}

.finder-search:focus-within {
  border-color: var(--accent);
  background: rgba(255, 255, 255, 0.1);
  box-shadow: 0 0 0 2.5px color-mix(in srgb, var(--accent) 55%, transparent);
}

.finder-search-icon {
  position: absolute;
  left: 11px;
  top: 50%;
  transform: translateY(-50%);
  display: inline-flex;
  color: rgba(255, 255, 255, 0.48);
  font-size: 14px;
  line-height: 1;
  pointer-events: none;
}

.finder-search-input {
  width: 100%;
  min-width: 0;
  margin: 0;
  padding: 0 28px 0 0;
  border: 0;
  background: transparent;
  color: rgba(255, 255, 255, 0.94);
  font: inherit;
  font-size: 13px;
  font-weight: 400;
  letter-spacing: -0.01em;
  outline: none;
  appearance: none;
  -webkit-appearance: none;
  user-select: text;
  -webkit-user-select: text;
  pointer-events: auto;
}

.finder-search-input::placeholder {
  color: rgba(255, 255, 255, 0.45);
}

.finder-search-input::-webkit-search-decoration,
.finder-search-input::-webkit-search-cancel-button,
.finder-search-input::-webkit-search-results-button,
.finder-search-input::-webkit-search-results-decoration {
  -webkit-appearance: none;
  appearance: none;
}

.finder-search-clear {
  position: absolute;
  right: 8px;
  top: 50%;
  transform: translateY(-50%);
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 18px;
  height: 18px;
  margin: 0;
  padding: 0;
  border: 0;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.28);
  color: rgba(28, 28, 30, 0.92);
  font-size: 10px;
  line-height: 1;
  cursor: pointer;
  appearance: none;
}

.finder-search-clear[hidden] {
  display: none !important;
}

.finder-search-clear:hover {
  background: rgba(255, 255, 255, 0.42);
}

.finder-search-clear:focus-visible {
  outline: 2px solid rgba(var(--accent-rgb), 0.55);
  outline-offset: 1px;
}

.product_hero-body {
  flex: 1;
  max-height: min(480px, 56vh);
  overflow-y: auto;
  padding: 52px 12px 16px;
}

/* Finder path bar — sits in main pane only (not across sidebar) */
.finder-pathbar {
  position: relative;
  z-index: 2;
  display: flex;
  align-items: center;
  flex-shrink: 0;
  min-height: 34px;
  padding: 0 12px;
  background: rgba(28, 28, 30, 0.72);
  border-top: 1px solid rgba(255, 255, 255, 0.1);
  backdrop-filter: blur(40px) saturate(1.8);
  -webkit-backdrop-filter: blur(40px) saturate(1.8);
}

.finder-pathbar-text {
  margin: 0;
  min-width: 0;
  overflow: hidden;
  color: rgba(255, 255, 255, 0.88);
  font-size: 13px;
  font-weight: 400;
  letter-spacing: -0.01em;
  line-height: 1.3;
  white-space: nowrap;
  text-overflow: ellipsis;
}

.finder-pathbar-text strong {
  font-weight: 700;
  color: rgba(255, 255, 255, 0.96);
}

.finder-empty {
  display: flex;
  flex-direction: column;
  justify-content: center;
  min-height: 180px;
  padding: 18px 14px;
  color: var(--text-secondary);
}

.finder-empty strong {
  margin-bottom: 4px;
  color: var(--text);
}

.finder-empty--search {
  min-height: 140px;
  text-align: center;
  align-items: center;
}

.finder-icon-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(128px, 1fr));
  gap: 6px 4px;
  padding: 10px 4px 8px;
  align-content: start;
}

.finder-icon-grid[hidden],
.finder-icon[hidden],
.finder-icon.is-search-hidden,
.finder-empty[hidden] {
  display: none !important;
}

.finder-icon {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 6px;
  padding: 4px 4px 6px;
  border-radius: 8px;
  color: var(--text);
  text-decoration: none;
  text-align: center;
  outline: none;
}

.finder-icon-tile {
  display: grid;
  place-items: center;
  padding: 10px;
  border-radius: 12px;
  background: transparent;
  transition: background 0.12s ease;
}

.finder-icon-img,
.finder-icon-fallback {
  width: 80px;
  height: 80px;
  border-radius: 16px;
  flex-shrink: 0;
}

.finder-icon-fallback {
  background: rgba(255, 255, 255, 0.06);
}

.finder-icon-img {
  display: block;
  object-fit: cover;
  box-shadow: 0 1px 2px rgba(0, 0, 0, 0.25);
}

.finder-icon:hover .finder-icon-tile,
.finder-icon:focus-visible .finder-icon-tile {
  background: #343438;
}

.finder-icon-name {
  display: inline-block;
  max-width: 100%;
  padding: 2px 8px;
  border-radius: 999px;
  color: rgba(255, 255, 255, 0.92);
  font-size: 12px;
  font-weight: 400;
  line-height: 1.35;
  letter-spacing: -0.01em;
  overflow-wrap: anywhere;
}

.finder-icon:hover .finder-icon-name,
.finder-icon:focus-visible .finder-icon-name {
  background: var(--accent);
  color: #fff;
}

@media (max-width: 639px) {
  .product_hero-shell {
    grid-template-columns: 1fr;
  }

  .finder-sidebar {
    display: none;
  }

  .product_hero-controls--toolbar {
    display: flex;
  }

  .product_hero-body {
    max-height: none;
  }

  .finder-icon-grid {
    grid-template-columns: repeat(auto-fill, minmax(96px, 1fr));
  }

  .finder-search {
    flex-basis: 168px;
    max-width: 188px;
    height: 36px;
    min-height: 36px;
  }
}

/* Product page */
.product-hero {
  position: relative;
  min-height: min(92vh, 920px);
  display: grid;
  align-items: end;
  overflow: hidden;
  isolation: isolate;
  margin-inline: 12px;
  border-radius: var(--radius-lg);
}

.product-hero-media {
  position: absolute;
  inset: 0;
  z-index: 0;
}

.product-hero-media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center top;
  display: block;
  transform: scale(1.02);
}

.product-hero-veil {
  position: absolute;
  inset: 0;
  z-index: 1;
  background:
    linear-gradient(180deg, rgba(7, 8, 10, 0.35) 0%, rgba(7, 8, 10, 0.55) 42%, rgba(7, 8, 10, 0.92) 78%, var(--bg) 100%),
    linear-gradient(90deg, rgba(7, 8, 10, 0.55) 0%, transparent 55%);
  pointer-events: none;
}

.product-hero-inner {
  position: relative;
  z-index: 2;
  width: min(100%, 980px);
  margin: 0 auto;
  padding: clamp(120px, 18vh, 180px) clamp(20px, 4vw, 36px) clamp(40px, 6vh, 64px);
}

.product-hero-icon {
  width: 72px;
  height: 72px;
  border-radius: 18px;
  margin-bottom: 18px;
  box-shadow: 0 16px 40px rgba(0, 0, 0, 0.45);
}

.product-hero-title {
  margin: 0 0 10px;
  font-size: clamp(42px, 8vw, 72px);
  font-weight: 800;
  letter-spacing: -0.05em;
  line-height: 0.98;
  color: var(--text);
}

.product-hero-tagline {
  margin: 0 0 14px;
  color: var(--text-secondary);
  font-size: clamp(1.05rem, 2.2vw, 1.25rem);
  max-width: 28rem;
}

.product-hero-price {
  margin: 0 0 22px;
  color: var(--text);
  font-size: 1.15rem;
  font-weight: 650;
  letter-spacing: -0.02em;
}

.product-hero-cta {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
}

.product-story {
  padding-top: clamp(28px, 5vw, 48px);
}

.product-story .about-panel {
  max-width: 640px;
  margin-inline: auto;
}

@media (prefers-reduced-motion: reduce) {
  .product-hero-media img {
    transform: none;
  }
}

/* Sections */
.section {
  max-width: 980px;
  margin: 0 auto;
  padding: clamp(56px, 10vw, 96px) clamp(20px, 4vw, 36px);
}

.section-intro {
  max-width: 36rem;
  margin: 0 auto 36px;
  text-align: center;
}

.section-title {
  margin: 0 0 12px;
  font-size: clamp(28px, 5vw, 40px);
  font-weight: 750;
  letter-spacing: -0.04em;
  line-height: 1.1;
}

.section-lead {
  margin: 0;
  color: var(--text-secondary);
  font-size: 1.05rem;
}

/* Product board — extension store style */
.product-board {
  display: grid;
  grid-template-columns: 1fr;
  gap: 10px;
}

@media (min-width: 760px) {
  .product-board {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .product--feature,
  .product--wide {
    grid-column: 1 / -1;
  }
}

.product {
  display: grid;
  grid-template-columns: auto 1fr;
  gap: 14px;
  align-items: center;
  padding: 16px;
  border: 1px solid var(--hairline);
  border-radius: var(--radius-lg);
  background: color-mix(in srgb, var(--bg-elevated) 92%, transparent);
  color: inherit;
  transition:
    transform 0.2s ease,
    border-color 0.2s ease,
    background 0.2s ease,
    box-shadow 0.2s ease;
}

.product:hover {
  transform: translateY(-2px);
  border-color: color-mix(in srgb, var(--accent) 45%, var(--hairline));
  background: var(--bg-elevated);
  box-shadow: var(--shadow);
}

.product--feature,
.product--wide {
  grid-template-columns: auto 1fr auto;
  gap: 18px;
  padding: 20px;
  background:
    linear-gradient(135deg, var(--accent-soft), transparent 50%),
    var(--bg-elevated);
}

.product-icon {
  width: 48px;
  height: 48px;
  border-radius: 12px;
  box-shadow: 0 8px 20px rgba(0, 0, 0, 0.25);
}

.product--feature .product-icon {
  width: 72px;
  height: 72px;
  border-radius: 18px;
}

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

.product-topline {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 8px 10px;
  margin-bottom: 4px;
}

.product h3 {
  margin: 0;
  font-size: 15px;
  font-weight: 650;
  letter-spacing: -0.02em;
}

.product--feature h3 {
  font-size: 20px;
  font-weight: 700;
}

.product-tag {
  padding: 3px 8px;
  border-radius: 999px;
  background: var(--accent-soft);
  color: var(--accent);
  font-size: 11px;
  font-weight: 650;
}

.product p {
  margin: 0;
  color: var(--text-secondary);
  font-size: 13.5px;
  line-height: 1.45;
}

.product-go {
  color: var(--text-tertiary);
  font-size: 13px;
  font-weight: 600;
  white-space: nowrap;
}

.product:hover .product-go {
  color: var(--accent);
}

@media (max-width: 639px) {
  .product--feature,
  .product--wide {
    grid-template-columns: auto 1fr;
  }

  .product-go {
    grid-column: 1 / -1;
  }
}

/* About */
.about-panel {
  --spotlight-x: 50%;
  --spotlight-y: 40%;
  position: relative;
  isolation: isolate;
  overflow: hidden;
  max-width: 40rem;
  margin: 0 auto;
  padding: clamp(28px, 5vw, 40px);
  border: 1px solid var(--hairline);
  border-radius: 24px;
  background: var(--bg-elevated);
  text-align: center;
}

.about-panel::before {
  content: "";
  position: absolute;
  inset: 0;
  border-radius: inherit;
  background: radial-gradient(
    320px circle at var(--spotlight-x) var(--spotlight-y),
    var(--spotlight),
    transparent 55%
  );
  opacity: 0;
  transition: opacity 0.4s ease;
  pointer-events: none;
  z-index: 0;
}

.about-panel.is-lit::before {
  opacity: 1;
}

.about-panel > * {
  position: relative;
  z-index: 1;
}

@media (prefers-reduced-motion: reduce) {
  .about-panel::before {
    display: none;
  }
}

.about-panel .section-title {
  margin-bottom: 14px;
}

.about-warning-title {
  color: #e5484d;
}

.about-copy {
  margin: 0 0 12px;
  color: var(--text-secondary);
  font-size: 1.05rem;
}

.about-meta {
  margin: 0;
  color: var(--text-tertiary);
  font-size: 0.95rem;
  font-weight: 500;
}

.about-panel .btn {
  margin-top: 16px;
}

/* Footer — full-bleed bar; content morphs with nav via --nav-content-max */
.site-footer {
  flex-shrink: 0;
  width: 100%;
  padding: 56px clamp(20px, 4vw, 32px) 48px;
  border-top: 1px solid var(--hairline);
}

.footer-inner {
  max-width: var(--nav-content-max);
  width: 100%;
  margin: 0 auto;
}

.footer-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 36px 32px;
}

@media (min-width: 640px) {
  .footer-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
}

@media (min-width: 960px) {
  .footer-grid {
    grid-template-columns: repeat(4, minmax(0, 1fr));
    gap: 32px 40px;
  }
}

.footer-heading {
  margin: 0 0 14px;
  color: var(--text);
  font-size: 13px;
  font-weight: 650;
  letter-spacing: 0.04em;
  text-transform: uppercase;
}

.footer-list {
  margin: 0;
  padding: 0;
  list-style: none;
  display: grid;
  gap: 10px;
}

.footer-list a {
  color: var(--text-secondary);
  font-size: 14px;
  line-height: 1.4;
  text-decoration: none;
}

.footer-list a:hover {
  color: var(--accent);
}

.footer-subscribe-lead {
  margin: 0 0 14px;
  color: var(--text-tertiary);
  font-size: 13px;
  line-height: 1.45;
}

.footer-subscribe {
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.footer-subscribe-field--solo {
  display: flex;
  width: 100%;
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 8px;
  background: #161719;
  overflow: hidden;
  transition: border-color 0.15s ease;
}

.footer-subscribe-field--solo:focus-within {
  border-color: color-mix(in srgb, var(--accent) 50%, rgba(255, 255, 255, 0.1));
}

.footer-subscribe-field--solo:has(input.is-invalid) {
  border-color: color-mix(in srgb, var(--accent) 70%, rgba(255, 255, 255, 0.1));
}

.footer-subscribe-row {
  display: flex;
  flex-wrap: nowrap;
  align-items: stretch;
  gap: 0;
  width: 100%;
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 8px;
  background: #161719;
  overflow: hidden;
  transition: border-color 0.15s ease;
}

.footer-subscribe-row:focus-within {
  border-color: color-mix(in srgb, var(--accent) 50%, rgba(255, 255, 255, 0.1));
}

.footer-subscribe-field {
  flex: 1 1 auto;
  min-width: 0;
  display: flex;
}

.footer-subscribe-field input {
  width: 100%;
  margin: 0;
  min-height: 40px;
  padding: 0 12px;
  border: 0;
  border-radius: 0;
  background: transparent;
  color: var(--text);
  font: inherit;
  font-size: 14px;
  outline: none;
  box-shadow: none;
}

.footer-subscribe-field input::placeholder {
  color: var(--text-tertiary);
}

.footer-subscribe-field input:focus {
  border: 0;
  background: transparent;
}

.footer-subscribe-field input.is-invalid {
  color: #ffb4b4;
}

.footer-subscribe-row:has(input.is-invalid) {
  border-color: color-mix(in srgb, var(--accent) 70%, rgba(255, 255, 255, 0.1));
}

.footer-subscribe-submit {
  flex: 0 0 auto;
  margin: 0;
  min-height: 40px;
  padding: 0 14px;
  border: 0;
  border-left: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 0;
  background: #1b1c1e;
  color: #fff;
  box-shadow: none;
  transform: none;
}

.footer-subscribe-submit:hover,
.footer-subscribe-submit:focus-visible {
  background: #242528;
  color: #fff;
  transform: none;
}

.footer-subscribe-row .btn:hover,
.footer-subscribe-row .btn:active {
  transform: none;
}

.footer-subscribe-submit:active {
  background: #141516;
  transform: none;
}

.footer-subscribe.is-loading .footer-subscribe-submit {
  opacity: 0.7;
  pointer-events: none;
}

.footer-subscribe-status {
  margin: 0;
  font-size: 13px;
  line-height: 1.4;
}

.footer-subscribe-status--success {
  color: #8fdfb0;
}

.footer-subscribe-status--error {
  color: var(--accent-2);
}

.footer-bottom {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: space-between;
  gap: 12px 24px;
  margin-top: 36px;
  padding-top: 24px;
  border-top: 1px solid var(--hairline);
}

.footer-copy {
  margin: 0;
  color: var(--text-tertiary);
  font-size: 13px;
}

.footer-admin {
  color: var(--text-tertiary);
  font-size: 13px;
  text-decoration: none;
}

.footer-admin:hover {
  color: var(--accent);
}

/* Support page form */
body.cart-drawer-open {
  overflow: hidden;
}

/* Cart drawer */
.cart-drawer {
  position: fixed;
  inset: 0;
  z-index: 85;
  visibility: hidden;
  pointer-events: none;
}

.cart-drawer.is-open {
  visibility: visible;
  pointer-events: auto;
}

.cart-drawer-backdrop {
  position: absolute;
  inset: 0;
  background: rgba(0, 0, 0, 0.62);
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
  opacity: 0;
  transition: opacity 0.2s ease;
}

.cart-drawer.is-open .cart-drawer-backdrop {
  opacity: 1;
}

.cart-drawer-panel {
  position: absolute;
  top: 0;
  right: 0;
  z-index: 1;
  display: flex;
  flex-direction: column;
  width: min(100%, 420px);
  height: 100%;
  border-left: 1px solid var(--hairline-strong);
  background: color-mix(in srgb, var(--bg-elevated) 94%, #000 6%);
  box-shadow: var(--shadow-window);
  transform: translateX(100%);
  transition: transform 0.22s ease;
}

.cart-drawer.is-open .cart-drawer-panel {
  transform: translateX(0);
}

.cart-drawer-head {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
  padding: 20px 20px 12px;
  border-bottom: 1px solid var(--hairline);
}

.cart-drawer-title {
  margin: 0;
  font-size: 22px;
  font-weight: 700;
  letter-spacing: -0.03em;
}

.cart-drawer-close {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 32px;
  height: 32px;
  border: 0;
  border-radius: 8px;
  background: transparent;
  color: var(--text-secondary);
  cursor: pointer;
}

.cart-drawer-close:hover {
  background: rgba(255, 255, 255, 0.06);
  color: var(--text);
}

.cart-drawer-body {
  flex: 1;
  overflow: auto;
  padding: 12px 16px 20px;
}

.cart-empty {
  padding: 28px 12px;
  color: var(--text-secondary);
  font-size: 14px;
  line-height: 1.5;
  text-align: center;
}

.cart-line {
  display: grid;
  grid-template-columns: 40px 1fr auto;
  grid-template-areas:
    "icon meta remove"
    "icon qty total";
  gap: 6px 10px;
  align-items: center;
  padding: 12px 4px;
  border-bottom: 1px solid var(--hairline);
}

.cart-line-icon {
  grid-area: icon;
  width: 40px;
  height: 40px;
  border-radius: 10px;
  object-fit: cover;
}

.cart-line-meta {
  grid-area: meta;
  min-width: 0;
}

.cart-line-meta strong {
  display: block;
  font-size: 14px;
  font-weight: 650;
  letter-spacing: -0.01em;
}

.cart-line-meta span {
  color: var(--text-secondary);
  font-size: 12px;
}

.cart-line-qty {
  grid-area: qty;
  display: inline-flex;
  align-items: center;
  gap: 6px;
}

.cart-line-qty button {
  width: 28px;
  height: 28px;
  border: 1px solid var(--hairline-strong);
  border-radius: 8px;
  background: transparent;
  color: var(--text);
  cursor: pointer;
}

.cart-line-qty span {
  min-width: 1.25em;
  text-align: center;
  font-size: 13px;
  font-weight: 600;
}

.cart-line-total {
  grid-area: total;
  font-size: 13px;
  font-weight: 650;
  text-align: right;
}

.cart-line-remove {
  grid-area: remove;
  justify-self: end;
  width: 28px;
  height: 28px;
  border: 0;
  border-radius: 8px;
  background: transparent;
  color: var(--text-secondary);
  cursor: pointer;
}

.cart-line-remove:hover {
  color: var(--accent);
  background: rgba(var(--accent-rgb), 0.12);
}

.cart-drawer-foot {
  padding: 16px 20px 24px;
  border-top: 1px solid var(--hairline);
}

.cart-drawer-total {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 12px;
  font-size: 14px;
}

.cart-drawer-total strong {
  font-size: 18px;
  letter-spacing: -0.02em;
}

.cart-drawer-error {
  margin: 0 0 10px;
  color: var(--accent-2);
  font-size: 13px;
  line-height: 1.4;
}

.cart-success .about-panel {
  max-width: 520px;
  margin-inline: auto;
}

@media (prefers-reduced-motion: reduce) {
  .cart-drawer-backdrop,
  .cart-drawer-panel {
    transition: none;
  }
}

/* Simple product page (no full-bleed hero) */
.product-simple {
  width: min(100% - 32px, 720px);
  margin: 0 auto;
  padding: 160px 0 80px;
}

.product-simple-intro {
  text-align: center;
  margin-bottom: 48px;
}

.product-simple-icon {
  width: 126px;
  height: 126px;
  margin: 0 auto 24px;
  border-radius: 28px;
  box-shadow: 0 16px 40px rgba(0, 0, 0, 0.45);
}

.product-simple-title {
  margin: 0 0 8px;
  font-size: clamp(36px, 7vw, 56px);
  font-weight: 800;
  letter-spacing: -0.045em;
  line-height: 1;
}

.product-simple-tagline {
  margin: 0 0 14px;
  color: var(--text-secondary);
  font-size: clamp(1.05rem, 2.2vw, 1.2rem);
}

.product-simple-copy {
  margin: 0 auto 18px;
  max-width: 34rem;
  color: var(--text-secondary);
  font-size: 15px;
  line-height: 1.6;
}

.product-simple-price {
  margin: 0 0 16px;
  font-size: 1.1rem;
  font-weight: 650;
  letter-spacing: -0.02em;
}

.product-simple-cta {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 10px;
}

.product-simple-shot {
  margin: 0;
}

.product-simple-shot-btn {
  display: block;
  width: 100%;
  margin: 0;
  padding: 0;
  border: 0;
  background: transparent;
  cursor: zoom-in;
  border-radius: inherit;
}

.product-simple-shot-btn:focus-visible {
  outline: 2px solid rgba(var(--accent-rgb), 0.55);
  outline-offset: 3px;
}

.product-simple-shot img {
  width: 100%;
  height: auto;
  border-radius: var(--radius-lg);
  border: 1px solid var(--hairline-strong);
  box-shadow: var(--shadow-window);
  background: #0a0a0c;
}

.product-simple--phones {
  width: min(100% - 32px, 980px);
}

.product-simple-phones {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 14px;
  align-items: start;
}

.product-simple-shot--phone {
  border-radius: 22px;
}

.product-simple-shot--phone img {
  border-radius: 22px;
  box-shadow: 0 24px 48px -28px rgba(0, 0, 0, 0.9);
}

@media (max-width: 880px) {
  .product-simple-phones {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 12px;
  }
}

@media (max-width: 420px) {
  .product-simple-phones {
    grid-template-columns: 1fr;
    max-width: 260px;
    margin-inline: auto;
  }
}

/* Product screenshot lightbox */
.product-lightbox {
  position: fixed;
  inset: 0;
  z-index: 80;
  padding: 20px;
  margin: 0;
  border: 0;
  max-width: none;
  max-height: none;
  width: 100%;
  height: 100%;
  background: rgba(4, 5, 7, 0.88);
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
  color: var(--text);
}

.product-lightbox:not([open]) {
  display: none;
}

.product-lightbox[open] {
  display: grid;
  place-items: center;
}

.product-lightbox::backdrop {
  background: transparent;
}

.product-lightbox-inner {
  position: relative;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 14px;
  width: min(100%, 920px);
  max-height: calc(100dvh - 40px);
}

.product-lightbox-figure {
  margin: 0;
  max-width: 100%;
  max-height: calc(100dvh - 100px);
}

.product-lightbox-figure img {
  display: block;
  width: auto;
  height: auto;
  max-width: 100%;
  max-height: calc(100dvh - 100px);
  margin: 0 auto;
  border-radius: 18px;
  border: 1px solid var(--hairline-strong);
  box-shadow: var(--shadow-window);
  background: #0a0a0c;
}

.product-lightbox-caption {
  margin: 0;
  max-width: 36rem;
  text-align: center;
  color: var(--text-secondary);
  font-size: 14px;
  line-height: 1.45;
}

.product-lightbox-close,
.product-lightbox-nav {
  position: absolute;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 44px;
  height: 44px;
  padding: 0;
  border: 1px solid var(--hairline-strong);
  border-radius: 999px;
  background: rgba(17, 18, 20, 0.88);
  color: var(--text);
  cursor: pointer;
}

.product-lightbox-close {
  top: 16px;
  right: 16px;
  z-index: 2;
}

.product-lightbox-nav {
  top: 50%;
  transform: translateY(-50%);
  z-index: 2;
}

.product-lightbox-nav--prev {
  left: 12px;
}

.product-lightbox-nav--next {
  right: 12px;
}

.product-lightbox-close:hover,
.product-lightbox-nav:hover {
  background: rgba(27, 28, 30, 0.96);
}

.product-lightbox-close:focus-visible,
.product-lightbox-nav:focus-visible {
  outline: 2px solid rgba(var(--accent-rgb), 0.55);
  outline-offset: 2px;
}

.product-lightbox-nav[hidden] {
  display: none;
}

@media (max-width: 720px) {
  .product-lightbox {
    padding: 12px;
  }

  .product-lightbox-nav {
    width: 40px;
    height: 40px;
  }

  .product-lightbox-nav--prev {
    left: 4px;
  }

  .product-lightbox-nav--next {
    right: 4px;
  }
}

/* Shared interior-page spacing: clear sticky nav + room before footer */
.support-page,
.page-doc,
.legal-doc,
.cart-success {
  padding-top: var(--page-pad-top);
  padding-bottom: var(--page-pad-bottom);
}

.legal-doc {
  width: 100%;
  margin-inline: auto;
  text-align: left;
}

.legal-doc-header {
  margin-bottom: 2.5rem;
  padding-bottom: 1.5rem;
  border-bottom: 1px solid var(--hairline);
}

.legal-doc-title {
  margin: 0 0 0.5rem;
  font-size: clamp(1.85rem, 4vw, 2.35rem);
  font-weight: 700;
  letter-spacing: -0.03em;
  line-height: 1.15;
  color: var(--text);
}

.legal-doc-updated {
  margin: 0 0 1.25rem;
  color: var(--text-tertiary);
  font-size: 0.9rem;
  font-weight: 500;
}

.legal-doc-lead {
  margin: 0;
  color: var(--text-secondary);
  font-size: 1.05rem;
  line-height: 1.65;
}

.legal-doc-section {
  margin: 0 0 2rem;
}

.legal-doc-section:last-child {
  margin-bottom: 0;
}

.legal-doc-section h2 {
  margin: 0 0 0.65rem;
  font-size: 1.1rem;
  font-weight: 650;
  letter-spacing: -0.02em;
  color: var(--text);
}

.legal-doc-section p {
  margin: 0;
  color: var(--text-secondary);
  font-size: 1rem;
  line-height: 1.7;
}

.legal-doc-section a {
  color: var(--accent-2);
  text-decoration: underline;
  text-underline-offset: 2px;
}

.legal-doc-section a:hover {
  color: #fff;
}

.support-page-inner {
  width: 100%;
  margin-inline: auto;
}

.support-page-intro {
  margin-bottom: 36px;
}

.support-kicker {
  margin: 0 0 10px;
  color: var(--accent-2);
  font-size: 0.85rem;
  font-weight: 650;
  letter-spacing: 0.04em;
  text-transform: uppercase;
}

.support-page-intro .section-title {
  margin-bottom: 12px;
}

.support-page-intro .section-lead {
  margin-bottom: 0;
}

.support-block {
  margin-bottom: 32px;
}

.support-block:last-child {
  margin-bottom: 0;
}

.support-block--secondary {
  padding-top: 8px;
}

.support-block-title {
  margin: 0 0 8px;
  font-size: 1.15rem;
  font-weight: 700;
  letter-spacing: -0.03em;
}

.support-block-lead {
  margin: 0 0 14px;
  color: var(--text-secondary);
  font-size: 15px;
  line-height: 1.5;
}

.support-form {
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.support-form--page {
  padding: 24px;
  border: 1px solid var(--hairline-strong);
  border-radius: var(--radius-lg);
  background: color-mix(in srgb, var(--bg-elevated) 92%, #000 8%);
}

.support-honeypot {
  position: absolute;
  left: -9999px;
  top: -9999px;
  width: 1px;
  height: 1px;
  overflow: hidden;
  opacity: 0;
  pointer-events: none;
}

.support-field input,
.support-field textarea {
  width: 100%;
  margin: 0;
  padding: 12px 14px;
  border: 1px solid var(--hairline-strong);
  border-radius: 10px;
  background: rgba(255, 255, 255, 0.04);
  color: var(--text);
  font: inherit;
  font-size: 15px;
  line-height: 1.4;
  outline: none;
  transition: border-color 0.15s ease, background 0.15s ease;
}

.support-field textarea {
  resize: vertical;
  min-height: 140px;
}

.support-field input::placeholder,
.support-field textarea::placeholder {
  color: var(--text-tertiary);
}

.support-field input:focus,
.support-field textarea:focus {
  border-color: color-mix(in srgb, var(--accent) 55%, var(--hairline-strong));
  background: rgba(255, 255, 255, 0.06);
}

.support-field input.is-invalid,
.support-field textarea.is-invalid {
  border-color: var(--accent);
}

.support-consent {
  display: flex;
  align-items: flex-start;
  gap: 10px;
  margin: 4px 0 2px;
  color: var(--text-secondary);
  font-size: 13px;
  line-height: 1.45;
  cursor: pointer;
}

.support-consent input {
  margin-top: 2px;
  accent-color: var(--accent);
}

.support-consent a {
  color: var(--text);
  text-decoration: underline;
  text-underline-offset: 2px;
}

.support-consent a:hover {
  color: var(--accent);
}

.support-submit {
  margin-top: 12px;
  align-self: flex-start;
}

[data-order-lookup-form] .support-field {
  display: block;
  width: 100%;
  max-width: 50%;
}

@media (max-width: 560px) {
  [data-order-lookup-form] .support-field {
    max-width: none;
  }
}

.support-form.is-loading .support-submit {
  opacity: 0.7;
  pointer-events: none;
}

.support-status {
  margin: 0;
  font-size: 13px;
  line-height: 1.45;
}

.support-status--success {
  color: #8fdfb0;
}

.support-status--error {
  color: var(--accent-2);
}

.support-status a {
  color: inherit;
  text-decoration: underline;
  text-underline-offset: 2px;
}

.sr-only {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  white-space: nowrap;
  border: 0;
}

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

  .product,
  .btn,
  .product_hero,
  body {
    transition: none !important;
    animation: none !important;
  }

  .product:hover,
  .btn:hover {
    transform: none;
  }
}
