:root {
  --ink: #19212a;
  --muted: #637083;
  --line: #dce4ea;
  --paper: #f7f4ec;
  --surface: #ffffff;
  --soft: #eaf3ef;
  --mint: #1f9d78;
  --coral: #ef6a4f;
  --sun: #f3bf45;
  --teal: #0c4f54;
  --shadow: 0 20px 60px rgba(23, 34, 44, 0.12);
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
  scroll-padding-top: 82px;
}

body {
  margin: 0;
  color: var(--ink);
  background: #f7f8f8;
  font-family:
    Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI",
    sans-serif;
  font-size: 16px;
  line-height: 1.5;
}

body.cart-is-open {
  overflow: hidden;
}

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

a:focus-visible,
button:focus-visible,
select:focus-visible,
summary:focus-visible {
  outline: 3px solid rgba(239, 106, 79, 0.42);
  outline-offset: 3px;
}

video {
  display: block;
  width: 100%;
  background: #111820;
}

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

.site-glow,
.rgb-ring {
  display: none;
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 20;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
  padding: 14px clamp(18px, 4vw, 56px);
  background: rgba(247, 244, 236, 0.92);
  border-bottom: 1px solid rgba(25, 33, 42, 0.08);
  backdrop-filter: blur(16px);
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  font-weight: 900;
  white-space: nowrap;
}

.brand-mark {
  display: grid;
  width: 34px;
  height: 34px;
  place-items: center;
  color: white;
  background: var(--teal);
  border-radius: 8px;
}

.nav-links {
  display: flex;
  gap: 24px;
  color: var(--muted);
  font-size: 0.95rem;
}

.nav-links a:hover {
  color: var(--teal);
}

.header-action,
.cart-trigger,
.primary-button,
.secondary-button {
  display: inline-flex;
  min-height: 48px;
  align-items: center;
  justify-content: center;
  padding: 0 20px;
  border: 1px solid transparent;
  border-radius: 8px;
  font-weight: 900;
}

.header-action,
.cart-trigger,
.primary-button {
  color: white;
  background: var(--teal);
  box-shadow: 0 10px 24px rgba(12, 79, 84, 0.22);
}

.cart-trigger {
  cursor: pointer;
  font: inherit;
}

.cart-trigger span {
  display: grid;
  min-width: 24px;
  height: 24px;
  place-items: center;
  margin-left: 8px;
  color: var(--teal);
  background: white;
  border-radius: 999px;
  font-size: 0.8rem;
}

.secondary-button {
  color: var(--teal);
  background: rgba(255, 255, 255, 0.7);
  border-color: var(--line);
}

.hero {
  position: relative;
  display: grid;
  min-height: calc(100vh - 65px);
  align-items: center;
  padding: clamp(54px, 8vw, 108px) clamp(18px, 6vw, 92px);
  overflow: hidden;
}

.hero-copy {
  position: relative;
  z-index: 3;
  max-width: 680px;
  color: white;
}

.eyebrow {
  margin: 0 0 12px;
  color: var(--coral);
  font-size: 0.86rem;
  font-weight: 950;
  letter-spacing: 0;
  text-transform: uppercase;
}

h1,
h2,
h3,
p {
  overflow-wrap: anywhere;
}

h1 {
  margin: 0;
  max-width: 12ch;
  font-size: clamp(2.9rem, 5.4vw, 5.15rem);
  line-height: 0.96;
  letter-spacing: 0;
}

h2 {
  margin: 0;
  font-size: clamp(2.25rem, 4.2vw, 3.65rem);
  line-height: 1;
  letter-spacing: 0;
}

h3 {
  margin: 0;
  font-size: 1.08rem;
}

.hero-text,
.section-heading p,
.showcase-card p,
.mini-card p,
.feature-card p,
.creator-copy p,
.testimonial-grid p,
.faq-list p,
.buy-copy p,
.fine-print {
  color: var(--muted);
}

.hero-text {
  max-width: 620px;
  margin: 24px 0 0;
  color: rgba(255, 255, 255, 0.88);
  font-size: clamp(1rem, 1.05vw, 1.08rem);
}

.hero-actions,
.hero-proof,
.buy-includes {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
}

.hero-actions {
  margin-top: 30px;
}

.hero-proof {
  margin-top: 24px;
}

.hero-proof span,
.buy-includes span {
  padding: 7px 10px;
  color: var(--teal);
  background: rgba(31, 157, 120, 0.1);
  border: 1px solid rgba(31, 157, 120, 0.22);
  border-radius: 8px;
  font-size: 0.86rem;
  font-weight: 850;
}

.hero .eyebrow {
  color: #ffd3c9;
}

.hero .secondary-button {
  color: white;
  background: rgba(255, 255, 255, 0.18);
  border-color: rgba(255, 255, 255, 0.34);
  backdrop-filter: blur(12px);
}

.hero .hero-proof span {
  color: white;
  background: rgba(12, 79, 84, 0.5);
  border-color: rgba(255, 255, 255, 0.24);
  backdrop-filter: blur(12px);
}

.hero-stage {
  position: absolute;
  inset: 0;
  z-index: 0;
  overflow: hidden;
  background: #fffaf0;
  border: 0;
  border-radius: 0;
  box-shadow: none;
}

.hero-stage::before {
  position: absolute;
  inset: 0;
  z-index: 2;
  content: "";
  background:
    linear-gradient(90deg, rgba(12, 32, 36, 0.72) 0%, rgba(12, 32, 36, 0.42) 42%, rgba(12, 32, 36, 0.04) 72%),
    linear-gradient(0deg, rgba(12, 32, 36, 0.28), rgba(12, 32, 36, 0.02) 38%);
}

.hero-stage video,
.hero-stage img {
  position: absolute;
  inset: 0;
  z-index: 1;
  width: 100%;
  height: 100%;
  aspect-ratio: auto;
  object-fit: cover;
  border: 0;
  border-radius: 0;
  box-shadow: none;
}

.hero-stage.hero-banner {
  min-height: 0;
  padding: 0;
}

.hero-stage.hero-banner img {
  width: 100%;
  max-width: none;
  height: 100%;
  aspect-ratio: auto;
  border: 0;
  object-fit: cover;
}

.floating-chip {
  position: absolute;
  z-index: 4;
  padding: 9px 12px;
  color: white;
  background: rgba(12, 79, 84, 0.92);
  border: 1px solid rgba(255, 255, 255, 0.3);
  border-radius: 8px;
  font-size: 0.82rem;
  font-weight: 900;
}

.chip-top {
  top: auto;
  right: clamp(18px, 4vw, 56px);
  bottom: clamp(74px, 9vw, 120px);
}

.chip-bottom {
  right: clamp(18px, 4vw, 56px);
  bottom: clamp(26px, 4vw, 54px);
  left: auto;
}

.showcase-section,
.detail-section,
.selfie-section,
.smart-section,
.stand-section,
.version-section,
.feature-section,
.creator-section,
.spec-section,
.testimonial-section,
.cta-band,
.faq-section,
.buy-section {
  padding: clamp(70px, 9vw, 120px) clamp(18px, 5vw, 72px);
}

.section-heading {
  display: grid;
  max-width: 860px;
  gap: 8px;
  margin-bottom: 28px;
}

.section-heading.center {
  max-width: 960px;
  margin-right: auto;
  margin-left: auto;
  text-align: center;
}

.showcase-section,
.detail-section,
.selfie-section,
.smart-section,
.stand-section,
.version-section,
.spec-section,
.testimonial-section {
  background: var(--surface);
}

.showcase-grid {
  display: grid;
  grid-template-columns: minmax(0, 1.35fr) minmax(260px, 0.65fr);
  gap: 16px;
}

.detail-section,
.smart-section {
  background: #f7f8f8;
}

.smart-section {
  display: grid;
  justify-items: center;
}

.smart-section .editorial-heading {
  width: min(100%, 1500px);
}

#screen-display {
  min-height: clamp(900px, 108vh, 1180px);
  padding-top: clamp(96px, 11vw, 150px);
  padding-right: clamp(8px, 1.4vw, 22px);
  padding-bottom: clamp(110px, 12vw, 170px);
  padding-left: clamp(8px, 1.4vw, 22px);
}

.editorial-heading {
  max-width: 1280px;
  margin-bottom: clamp(76px, 8vw, 132px);
}

.editorial-heading h2 {
  text-wrap: balance;
}

#screen-display .editorial-heading h2 {
  max-width: 1280px;
  margin: 0 auto;
  font-size: clamp(3.1rem, 4.2vw, 5rem);
  line-height: 0.98;
}

#screen-display .editorial-heading h2 span {
  white-space: nowrap;
}

#screen-display .editorial-heading p {
  max-width: 980px;
  margin: 0 auto;
  font-size: clamp(1.05rem, 1.1vw, 1.22rem);
  line-height: 1.55;
}

.display-story {
  display: grid;
  width: min(100%, 1880px);
  max-width: 1880px;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: clamp(18px, 1.6vw, 34px);
  margin: 0 auto;
}

.display-feature,
.smart-feature,
.stand-grid article {
  overflow: hidden;
  background: #ffffff;
  border: 1px solid rgba(25, 33, 42, 0.08);
  border-radius: 8px;
}

.display-feature {
  display: grid;
  align-content: start;
  grid-template-columns: 1fr;
  justify-items: center;
  gap: clamp(20px, 2vw, 30px);
  min-height: 0;
  padding: 0;
  background: transparent;
  border: 0;
  border-radius: 0;
}

.display-feature + .display-feature {
  padding-top: 0;
  border-top: 0;
}

.display-media {
  display: grid;
  place-items: center;
  overflow: hidden;
  width: 100%;
  aspect-ratio: 1 / 1;
  margin: 0 auto;
  background: #f2f2ef;
  border-radius: 8px;
  box-shadow: 0 20px 48px rgba(25, 33, 42, 0.08);
}

.display-media img {
  width: 100%;
  height: 100%;
  max-width: none;
  object-fit: cover;
  object-position: center;
  background: transparent;
  border-radius: 0;
}

.smart-feature div,
.stand-grid article h3,
.stand-grid article p {
  padding: 0 clamp(22px, 4vw, 48px);
}

.display-copy {
  display: grid;
  gap: 12px;
  max-width: 520px;
  padding: 0;
  margin: 0 auto;
  text-align: center;
}

.display-feature:nth-child(even) {
  grid-template-columns: 1fr;
}

.display-feature:nth-child(even) .display-copy {
  order: initial;
}

.display-feature:nth-child(even) .display-media {
  order: initial;
}

.display-feature h3,
.smart-feature h3,
.split-copy h2,
.stand-copy h2 {
  font-size: clamp(1.6rem, 2.4vw, 2.5rem);
  line-height: 1;
}

.display-feature h3 {
  font-size: clamp(2.25rem, 2.8vw, 3.45rem);
}

.smart-feature h3 {
  font-size: clamp(2rem, 2.7vw, 3.25rem);
}

.display-feature p,
.smart-feature p,
.split-copy p,
.stand-copy p,
.stand-grid p {
  margin: 0;
  color: var(--muted);
  font-size: clamp(0.98rem, 1.1vw, 1.08rem);
}

.display-feature p {
  font-size: clamp(1rem, 1.05vw, 1.16rem);
  line-height: 1.45;
}

.live-demo-panel {
  display: grid;
  width: min(96vw, 1760px);
  grid-template-columns: minmax(280px, 0.8fr) minmax(360px, 0.9fr);
  align-items: center;
  gap: clamp(28px, 4vw, 76px);
  margin: clamp(86px, 9vw, 150px) auto 0;
  padding: clamp(28px, 5vw, 72px);
  background:
    radial-gradient(circle at 85% 12%, rgba(31, 157, 120, 0.1), transparent 32%),
    linear-gradient(135deg, #ffffff 0%, #f4f6f3 100%);
  border: 1px solid rgba(25, 33, 42, 0.08);
  border-radius: 8px;
  box-shadow: 0 24px 70px rgba(25, 33, 42, 0.07);
}

.live-demo-copy {
  display: grid;
  gap: 16px;
  max-width: 560px;
}

.live-demo-copy h3 {
  font-size: clamp(2.5rem, 4.2vw, 4.9rem);
  line-height: 0.98;
}

.live-demo-copy p:not(.eyebrow) {
  color: var(--muted);
  font-size: clamp(1.08rem, 1.25vw, 1.3rem);
  line-height: 1.58;
}

.live-demo-media {
  display: grid;
  position: relative;
  overflow: hidden;
  width: min(100%, clamp(420px, 36vw, 680px));
  aspect-ratio: 1 / 1;
  justify-self: center;
  place-items: center;
  background: #10161c;
  border-radius: 8px;
  box-shadow: 0 28px 80px rgba(16, 22, 28, 0.16);
}

.live-demo-media video {
  position: absolute;
  top: 50%;
  left: 50%;
  width: 100%;
  height: auto;
  min-height: 100%;
  max-width: none;
  object-fit: unset;
  object-position: center;
  transform: translate(-50%, -50%);
  background: #10161c;
}

.smart-feature p {
  font-size: clamp(1.02rem, 1.2vw, 1.22rem);
  line-height: 1.55;
}

.feature-large {
  min-height: 0;
}

.selfie-section {
  display: grid;
  grid-template-columns: minmax(300px, 0.68fr) minmax(0, 1fr);
  gap: clamp(34px, 6vw, 86px);
  align-items: center;
  min-height: clamp(620px, 70vh, 820px);
  padding-bottom: clamp(34px, 5vw, 68px);
  background: #ffffff;
}

.magnetic-section {
  display: grid;
  grid-template-columns: minmax(360px, 0.46fr) minmax(0, 1fr);
  gap: clamp(38px, 5vw, 78px);
  align-items: center;
  min-height: clamp(620px, 72vh, 860px);
  padding-right: clamp(34px, 6vw, 108px);
  padding-left: clamp(34px, 6vw, 108px);
  background:
    radial-gradient(circle at 84% 14%, rgba(12, 79, 84, 0.08), transparent 30%),
    linear-gradient(135deg, #f7f6f2 0%, #f7f6f2 100%);
}

.magnetic-heading {
  display: grid;
  gap: 16px;
  max-width: 620px;
  justify-self: end;
}

.magnetic-heading h2 {
  font-size: clamp(2.45rem, 4.8vw, 5rem);
  line-height: 0.98;
}

.magnetic-heading p:not(.eyebrow) {
  max-width: 46ch;
  color: var(--muted);
  font-size: clamp(1.02rem, 1.2vw, 1.18rem);
  line-height: 1.6;
}

.magnetic-composite {
  position: relative;
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: clamp(14px, 2vw, 24px);
  align-items: center;
  min-height: clamp(320px, 32vw, 480px);
  padding: clamp(18px, 3vw, 42px);
  overflow: hidden;
  border-radius: 8px;
  background:
    linear-gradient(90deg, rgba(247, 246, 242, 0.2), rgba(247, 246, 242, 0.95)),
    radial-gradient(circle at 70% 18%, rgba(255, 255, 255, 0.85), transparent 34%);
}

.magnetic-composite::before {
  position: absolute;
  right: -12%;
  bottom: -30%;
  width: 86%;
  height: 52%;
  border-radius: 999px;
  background: rgba(12, 79, 84, 0.08);
  content: "";
  transform: rotate(-6deg);
}

.magnetic-composite-step {
  position: relative;
  margin: 0;
  overflow: hidden;
  border-radius: 8px;
  background: #ffffff;
  box-shadow: 0 28px 68px rgba(25, 33, 42, 0.13);
  z-index: 2;
}

.magnetic-composite-step img {
  display: block;
  width: 100%;
  aspect-ratio: 4 / 3;
  object-fit: cover;
}

.magnetic-composite-step figcaption {
  position: absolute;
  top: 16px;
  left: 16px;
  min-width: 74px;
  padding: 8px 13px;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.86);
  color: var(--ink);
  font-size: 0.9rem;
  font-weight: 900;
  text-align: center;
  backdrop-filter: blur(14px);
}

.magnetic-composite-attach {
  transform: none;
}

.magnetic-composite-shoot {
  transform: none;
}

.magnetic-link-line {
  position: absolute;
  top: 50%;
  left: 48%;
  width: 4%;
  height: 2px;
  background: linear-gradient(90deg, rgba(12, 79, 84, 0.18), rgba(12, 79, 84, 0.42));
  z-index: 1;
}

.split-copy,
.stand-copy {
  display: grid;
  max-width: 620px;
  gap: 16px;
}

.selfie-section .split-copy h2 {
  font-size: clamp(3rem, 5.4vw, 5.9rem);
  line-height: 0.96;
}

.selfie-section .split-copy p:not(.eyebrow) {
  max-width: 54ch;
  font-size: clamp(1.05rem, 1.35vw, 1.32rem);
  line-height: 1.58;
}

.selfie-section .eyebrow {
  font-size: clamp(0.9rem, 1vw, 1.08rem);
}

.split-media,
.smart-feature img,
.stand-grid img {
  overflow: hidden;
  border-radius: 8px;
}

.split-media img {
  aspect-ratio: 16 / 10;
  object-fit: cover;
}

.selfie-section .split-media img {
  object-position: 82% center;
  transform: scale(1.22);
  transform-origin: 82% 45%;
}

.smart-grid {
  display: grid;
  width: min(100%, 1640px);
  max-width: 1640px;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: clamp(20px, 2vw, 32px);
  justify-content: center;
  margin: 0 auto;
}

.smart-feature {
  display: grid;
  align-content: start;
}

.smart-feature img {
  aspect-ratio: 16 / 10;
  object-fit: cover;
}

.smart-feature div {
  display: grid;
  gap: 12px;
  padding-top: clamp(30px, 3vw, 46px);
  padding-bottom: clamp(38px, 4vw, 58px);
}

.smart-feature-large {
  grid-column: 1 / -1;
}

.smart-feature-large img {
  aspect-ratio: 2 / 1;
}

.smart-feature-soft {
  min-height: 100%;
}

.inline-list {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  padding: 0;
  margin: 8px 0 0;
  list-style: none;
}

.inline-list li {
  padding: 8px 10px;
  color: var(--teal);
  background: rgba(31, 157, 120, 0.1);
  border-radius: 8px;
  font-size: 0.84rem;
  font-weight: 850;
}

.stand-section {
  background: #ffffff;
}

.stand-copy {
  max-width: 880px;
  margin-bottom: clamp(28px, 5vw, 58px);
}

.stand-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 18px;
}

.stand-grid article {
  display: grid;
  align-content: start;
  gap: 12px;
  padding-bottom: 28px;
}

.stand-text-card {
  min-height: 260px;
  align-content: end;
  padding-top: 32px;
  background:
    linear-gradient(135deg, rgba(12, 79, 84, 0.08), rgba(25, 33, 42, 0.03)),
    #ffffff;
}

.stand-grid img {
  aspect-ratio: 4 / 3;
  object-fit: cover;
  border-radius: 0;
}

.stand-hero-card {
  grid-column: 1 / -1;
  padding-bottom: 0;
}

.stand-hero-card img {
  aspect-ratio: 16 / 8;
  object-fit: contain;
  background: #ffffff;
}

.stand-hero-card div {
  display: grid;
  gap: 8px;
  padding: 24px clamp(22px, 4vw, 48px) 34px;
}

.stand-grid h3 {
  padding-top: 18px;
  font-size: 1.25rem;
}

.stand-grid .portability-panel {
  grid-column: 1 / -1;
  grid-template-columns: minmax(340px, 0.55fr) minmax(0, 1fr);
  align-items: center;
  gap: clamp(36px, 4.5vw, 72px);
  padding: clamp(34px, 6vw, 76px);
  background:
    radial-gradient(circle at 8% 12%, rgba(12, 79, 84, 0.08), transparent 28%),
    linear-gradient(135deg, #ffffff 0%, #f7f8f6 100%);
  border: 1px solid rgba(25, 33, 42, 0.08);
  border-radius: 8px;
  overflow: hidden;
}

.portability-copy {
  display: grid;
  align-content: center;
  gap: 20px;
  width: 100%;
  max-width: 560px;
}

.stand-grid .portability-copy h3 {
  display: grid;
  gap: 4px;
  max-width: none;
  padding: 0;
  font-size: clamp(3rem, 3.6vw, 4.25rem);
  line-height: 0.98;
  letter-spacing: 0;
  overflow-wrap: normal;
  word-break: normal;
}

.portability-copy h3 span {
  white-space: nowrap;
}

.live-demo-media video {
  cursor: pointer;
}

.portability-copy p:not(.eyebrow) {
  max-width: 46ch;
  color: var(--muted);
  font-size: clamp(1.05rem, 1.3vw, 1.25rem);
  line-height: 1.58;
}

.portable-points {
  display: grid;
  grid-template-columns: repeat(2, max-content);
  gap: 12px;
  margin-top: 10px;
}

.portable-points span {
  display: flex;
  align-items: center;
  justify-content: center;
  min-height: 38px;
  padding: 0 16px;
  border: 1px solid rgba(12, 79, 84, 0.14);
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.82);
  color: #0c4f54;
  font-size: 0.92rem;
  font-weight: 850;
}

.portable-points span:last-child {
  grid-column: 1 / -1;
  justify-self: start;
}

.portability-visuals {
  display: grid;
  grid-template-columns: minmax(0, 1.12fr) minmax(190px, 0.78fr);
  gap: clamp(14px, 2vw, 24px);
  align-items: end;
}

.portability-visuals figure {
  display: grid;
  gap: 0;
  margin: 0;
  overflow: hidden;
  border: 1px solid rgba(25, 33, 42, 0.08);
  border-radius: 8px;
  background: #ffffff;
  box-shadow: 0 26px 60px rgba(25, 33, 42, 0.08);
}

.portability-visuals img {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
  border-radius: 0;
}

.portable-pocket img {
  aspect-ratio: 4 / 3;
  object-position: center;
}

.portable-setup {
  transform: translateY(34px);
}

.portable-setup img {
  aspect-ratio: 3 / 4;
  object-position: center 58%;
}

.portability-visuals figcaption {
  padding: 16px 18px 18px;
  color: var(--ink);
  font-size: 1rem;
  font-weight: 850;
}

.mount-panel {
  grid-column: 1 / -1;
  grid-template-columns: minmax(430px, 0.62fr) minmax(0, 1.38fr);
  align-items: center;
  gap: clamp(36px, 4vw, 70px);
  padding: clamp(40px, 5.2vw, 78px);
  background:
    radial-gradient(circle at 88% 16%, rgba(12, 79, 84, 0.08), transparent 30%),
    linear-gradient(135deg, #f7f8f6 0%, #ffffff 56%, #f3f5f2 100%);
  border: 1px solid rgba(25, 33, 42, 0.08);
  border-radius: 8px;
  overflow: hidden;
}

.mount-copy {
  align-content: center;
  gap: 18px;
  max-width: 610px;
  min-width: 0;
}

.mount-copy h3 {
  max-width: 14ch;
  padding-top: 0;
  font-size: clamp(2.35rem, 3vw, 3.85rem);
  line-height: 1.04;
  text-wrap: balance;
}

.mount-copy p:not(.eyebrow) {
  max-width: 40ch;
  color: var(--muted);
  font-size: clamp(1rem, 0.95vw, 1.1rem);
  line-height: 1.6;
}

.mount-visuals {
  display: grid;
  grid-template-columns: minmax(280px, 0.9fr) minmax(420px, 1.1fr);
  gap: clamp(18px, 2.2vw, 32px);
  align-items: center;
}

.mount-visuals figure {
  display: grid;
  gap: 0;
  margin: 0;
  overflow: hidden;
  border: 1px solid rgba(25, 33, 42, 0.08);
  border-radius: 8px;
  background: #ffffff;
  box-shadow: 0 26px 70px rgba(25, 33, 42, 0.08);
}

.mount-visuals img {
  display: block;
  width: 100%;
  height: auto;
  object-fit: contain;
  border-radius: 0;
}

.mount-laptop img {
  aspect-ratio: 1 / 1;
}

.mount-guide img {
  aspect-ratio: 1402 / 1122;
}

.mount-visuals figcaption {
  padding: 16px 18px 18px;
  color: var(--ink);
  font-size: 1rem;
  font-weight: 850;
}

.version-section {
  background: #f7f8f8;
}

.version-section .section-heading {
  margin-bottom: clamp(34px, 5vw, 72px);
}

.version-section .section-heading p:not(.eyebrow) {
  max-width: 820px;
  margin: 0 auto;
  color: var(--muted);
  font-size: clamp(1.08rem, 1.2vw, 1.28rem);
  line-height: 1.58;
}

.version-panel {
  display: grid;
  width: min(100%, 1280px);
  gap: 20px;
  margin: 0 auto;
  padding: clamp(18px, 2vw, 28px);
  background: #ffffff;
  border: 1px solid rgba(25, 33, 42, 0.08);
  border-radius: 8px;
  box-shadow: 0 26px 70px rgba(25, 33, 42, 0.08);
}

.version-panel img {
  width: 100%;
  height: auto;
  border-radius: 8px;
}

.version-notes {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 14px;
}

.version-notes div {
  display: grid;
  gap: 6px;
  min-height: 92px;
  align-content: center;
  padding: 18px 22px;
  background: #f7f8f8;
  border: 1px solid rgba(25, 33, 42, 0.08);
  border-radius: 8px;
}

.version-notes span {
  color: var(--muted);
  font-size: 0.9rem;
  font-weight: 950;
  text-transform: uppercase;
}

.version-notes strong {
  color: var(--ink);
  font-size: clamp(1.18rem, 1.35vw, 1.45rem);
  line-height: 1.18;
}

.display-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 16px;
}

.showcase-card,
.display-card,
.mini-card,
.feature-card,
.device-panel,
.spec-grid div,
.testimonial-grid article,
.faq-list details,
.checkout-card {
  background: var(--surface);
  border: 1px solid rgba(25, 33, 42, 0.08);
  border-radius: 8px;
  box-shadow: 0 12px 32px rgba(23, 34, 44, 0.06);
}

.display-card {
  display: grid;
  align-content: start;
  gap: 18px;
  overflow: hidden;
  padding: 14px;
}

.display-card img {
  aspect-ratio: 4 / 3;
  object-fit: cover;
  border-radius: 8px;
}

.display-card div {
  display: grid;
  gap: 8px;
  padding: 0 6px 8px;
}

.display-card p {
  color: var(--muted);
}

.showcase-card.large {
  display: grid;
  grid-row: span 2;
  grid-template-columns: minmax(220px, 0.55fr) 1fr;
  align-items: center;
  gap: 26px;
  padding: clamp(18px, 3vw, 30px);
}

.showcase-card video,
.showcase-card img {
  aspect-ratio: 9 / 16;
  object-fit: cover;
  border-radius: 8px;
}

.mini-card {
  min-height: 230px;
  padding: 24px;
}

.orb {
  display: grid;
  width: 46px;
  height: 46px;
  place-items: center;
  margin-bottom: 32px;
  background: var(--coral);
  border-radius: 8px;
}

.orb::before {
  color: white;
  content: "✦";
  font-weight: 950;
}

.orb.cyan {
  background: var(--teal);
}

.orb.magenta {
  background: var(--coral);
}

.feature-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 16px;
}

.feature-card {
  min-height: 246px;
  padding: 24px;
}

.icon {
  display: grid;
  width: 42px;
  height: 42px;
  place-items: center;
  margin-bottom: 26px;
  color: white;
  background: var(--coral);
  border-radius: 8px;
  font-weight: 900;
}

.creator-section {
  display: grid;
  grid-template-columns: minmax(280px, 0.95fr) minmax(0, 1.05fr);
  align-items: center;
  gap: clamp(26px, 5vw, 76px);
  background: var(--soft);
}

.creator-copy {
  max-width: 700px;
}

.check-list {
  display: grid;
  gap: 12px;
  padding: 0;
  margin: 24px 0 0;
  list-style: none;
}

.check-list li {
  position: relative;
  padding-left: 28px;
  color: var(--ink);
  font-weight: 780;
}

.check-list li::before {
  position: absolute;
  left: 0;
  color: var(--mint);
  content: "✓";
  font-weight: 950;
}

.device-panel {
  display: grid;
  min-height: 430px;
  place-items: center;
  overflow: hidden;
  background:
    linear-gradient(160deg, rgba(12, 79, 84, 0.1), transparent),
    #ffffff;
}

.device-panel img {
  width: min(640px, 92%);
  aspect-ratio: 4 / 3;
  object-fit: cover;
  border-radius: 8px;
  box-shadow: 0 24px 50px rgba(12, 22, 28, 0.18);
}

.screen-stack {
  display: grid;
  width: min(420px, 86%);
  min-height: 280px;
  align-content: end;
  gap: 10px;
  padding: 28px;
  color: white;
  background:
    linear-gradient(135deg, rgba(31, 157, 120, 0.25), rgba(239, 106, 79, 0.18)),
    var(--teal);
  border-radius: 8px;
  box-shadow: 0 24px 50px rgba(12, 22, 28, 0.18);
}

.screen-stack span,
.screen-stack small {
  color: #dff5ef;
}

.screen-stack strong {
  font-size: clamp(2rem, 5vw, 4.6rem);
  line-height: 0.95;
}

.spec-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 14px;
}

.spec-grid div {
  display: grid;
  min-height: 138px;
  align-content: space-between;
  padding: 20px;
}

.spec-grid span {
  color: var(--muted);
  font-size: 0.9rem;
  font-weight: 900;
  text-transform: uppercase;
}

.spec-grid strong {
  font-size: 1.14rem;
}

.testimonial-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 16px;
}

.testimonial-grid article {
  padding: 28px;
}

.testimonial-grid p {
  font-size: 1.04rem;
  line-height: 1.6;
}

.testimonial-grid strong {
  font-size: 1.04rem;
}

.stars {
  margin-bottom: 14px;
  color: var(--sun);
  font-weight: 950;
}

.cta-band {
  display: grid;
  justify-items: center;
  gap: 22px;
  margin: 0 clamp(18px, 5vw, 72px);
  padding-right: clamp(24px, 6vw, 72px);
  padding-left: clamp(24px, 6vw, 72px);
  color: white;
  background: var(--teal);
  border-radius: 8px;
  text-align: center;
}

.cta-band .eyebrow,
.cta-band p {
  color: #ffe0d7;
}

.cta-band h2 {
  max-width: 900px;
}

.cta-band .cta-keywords {
  display: flex;
  max-width: none;
  align-items: center;
  justify-content: center;
  gap: clamp(22px, 3vw, 52px);
  font-size: clamp(2.5rem, 4.4vw, 5rem);
  line-height: 1;
}

.cta-keywords span {
  display: inline-flex;
  align-items: center;
  white-space: nowrap;
}

.cta-keywords span + span::before {
  width: 1px;
  height: 0.72em;
  margin-right: clamp(22px, 3vw, 52px);
  background: rgba(255, 255, 255, 0.34);
  content: "";
}

.faq-section {
  background: var(--paper);
}

.faq-list {
  display: grid;
  gap: 12px;
  max-width: 940px;
}

.faq-list details {
  padding: 18px 20px;
}

.faq-list summary {
  cursor: pointer;
  font-weight: 950;
}

.faq-list p {
  margin-bottom: 0;
}

.buy-section {
  display: grid;
  grid-template-columns: minmax(560px, 820px) minmax(360px, 460px);
  justify-content: center;
  align-items: start;
  gap: clamp(28px, 4vw, 64px);
  padding-top: clamp(42px, 4.5vw, 72px);
  padding-bottom: clamp(42px, 4.5vw, 72px);
  color: var(--ink);
  background: #ffffff;
}

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

.gallery-thumbs {
  display: grid;
  gap: 10px;
}

.gallery-thumb {
  display: block;
  width: 72px;
  height: 72px;
  padding: 4px;
  background: #ffffff;
  border: 1px solid var(--line);
  border-radius: 8px;
  cursor: pointer;
  box-shadow: 0 10px 22px rgba(23, 34, 44, 0.08);
}

.gallery-thumb.is-active {
  border-color: rgba(12, 79, 84, 0.55);
  box-shadow: 0 0 0 2px rgba(12, 79, 84, 0.12);
}

.gallery-thumb img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  border-radius: 6px;
}

.product-main-frame {
  overflow: hidden;
  min-height: clamp(440px, 42vw, 640px);
  background: #f7f8f6;
  border-radius: 8px;
}

.product-main-frame img {
  width: 100%;
  height: 100%;
  min-height: inherit;
  object-fit: contain;
  object-position: center;
  display: block;
}

.product-title-block {
  display: grid;
  gap: 8px;
}

.product-title-block h2 {
  font-size: clamp(2.1rem, 2.8vw, 3.4rem);
  line-height: 0.95;
}

.product-title-block .eyebrow {
  margin-bottom: 2px;
  color: var(--muted);
}

.product-price {
  font-size: clamp(1.35rem, 1.5vw, 1.8rem);
}

.rating-row {
  display: flex;
  align-items: center;
  gap: 8px;
}

.rating-row span {
  color: #ffb31a;
  letter-spacing: 1px;
}

.rating-row small,
.offer-copy {
  color: var(--muted);
}

.offer-copy {
  padding: 14px 0;
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
  font-size: 0.95rem;
  line-height: 1.5;
}

.offer-copy strong {
  color: var(--coral);
}

.checkout-card {
  display: grid;
  width: 100%;
  gap: 16px;
  padding: 0;
  color: var(--ink);
}

.product-info-card {
  position: sticky;
  top: 96px;
  background: transparent;
  border: 0;
  box-shadow: none;
}

.deal-tag {
  width: fit-content;
  padding: 8px 12px;
  color: white;
  background: var(--coral);
  border-radius: 8px;
  font-size: 0.82rem;
  font-weight: 900;
}

.variant-selector {
  display: grid;
  gap: 10px;
  padding: 0;
  margin: 0;
  border: 0;
}

.variant-selector legend {
  padding: 0;
  color: var(--muted);
  font-weight: 850;
}

.variant-options {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 10px;
}

.variant-option {
  display: grid;
  gap: 8px;
  align-content: start;
  padding: 10px;
  color: var(--ink);
  background: #f9fbfb;
  border: 1px solid var(--line);
  border-radius: 8px;
  font: inherit;
  text-align: left;
}

.variant-option img {
  width: 100%;
  aspect-ratio: 1 / 1;
  object-fit: contain;
  background: #ffffff;
  border-radius: 8px;
}

.variant-option span {
  font-size: clamp(0.98rem, 0.9vw, 1.08rem);
  font-weight: 950;
}

.variant-option small {
  color: var(--muted);
  font-size: clamp(0.78rem, 0.72vw, 0.9rem);
  line-height: 1.35;
}

label {
  display: grid;
  gap: 8px;
  color: var(--muted);
  font-weight: 850;
}

select {
  width: 100%;
  min-height: 50px;
  padding: 0 12px;
  color: var(--ink);
  background: #f9fbfb;
  border: 1px solid var(--line);
  border-radius: 8px;
  font: inherit;
}

.price-row,
.save-row,
.quantity-row {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  padding: 16px;
  background: #f9fbfb;
  border: 1px solid var(--line);
  border-radius: 8px;
}

.price-row strong {
  font-size: 1.35rem;
}

.save-row {
  color: var(--teal);
  background: rgba(31, 157, 120, 0.08);
  border-color: rgba(31, 157, 120, 0.18);
}

.quantity-stepper {
  display: inline-flex;
  align-items: center;
  gap: 12px;
}

.quantity-stepper button,
.cart-close {
  display: grid;
  width: 36px;
  height: 36px;
  place-items: center;
  color: var(--ink);
  background: white;
  border: 1px solid var(--line);
  border-radius: 8px;
  cursor: pointer;
  font: inherit;
  font-weight: 950;
}

.quantity-stepper button:disabled {
  cursor: not-allowed;
  opacity: 0.45;
}

.checkout-card button.primary-button {
  cursor: pointer;
  font: inherit;
}

.full-width {
  width: 100%;
}

.fine-print {
  margin: 0;
  font-size: 0.86rem;
}

.paypal-header-cart {
  display: flex;
  min-width: 116px;
  min-height: 48px;
  align-items: center;
  justify-content: flex-end;
}

.paypal-purchase {
  display: grid;
  gap: 14px;
  min-height: 48px;
  align-items: center;
  padding: 16px;
  background: rgba(31, 157, 120, 0.07);
  border: 1px solid rgba(31, 157, 120, 0.2);
  border-radius: 8px;
}

.paypal-purchase-heading {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
}

.paypal-purchase-heading span {
  color: var(--muted);
  font-size: 0.8rem;
  font-weight: 850;
}

.paypal-purchase paypal-add-to-cart-button,
.paypal-header-cart paypal-cart-button {
  display: block;
  width: 100%;
}

.paypal-currency-note {
  color: var(--muted);
}

.sticky-cta {
  position: fixed;
  right: 18px;
  bottom: 18px;
  z-index: 30;
  display: none;
  min-height: 48px;
  align-items: center;
  justify-content: center;
  padding: 0 18px;
  color: white;
  background: var(--coral);
  border-radius: 8px;
  box-shadow: 0 14px 30px rgba(21, 32, 39, 0.22);
  font-weight: 950;
  opacity: 0;
  pointer-events: none;
  transform: translateY(90px);
  transition:
    opacity 180ms ease,
    transform 180ms ease;
}

.show-sticky .sticky-cta {
  opacity: 1;
  pointer-events: auto;
  transform: translateY(0);
}

.cart-overlay {
  position: fixed;
  inset: 0;
  z-index: 40;
  background: rgba(25, 33, 42, 0.36);
  backdrop-filter: blur(4px);
}

.cart-drawer {
  position: fixed;
  top: 0;
  right: 0;
  z-index: 41;
  display: grid;
  width: min(440px, 92vw);
  height: 100vh;
  grid-template-rows: auto 1fr auto;
  padding: 20px;
  background: var(--surface);
  border-left: 1px solid var(--line);
  box-shadow: -20px 0 60px rgba(23, 34, 44, 0.18);
  transform: translateX(105%);
  transition: transform 220ms ease;
}

.cart-drawer:focus {
  outline: none;
}

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

.cart-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  padding-bottom: 18px;
  border-bottom: 1px solid var(--line);
}

.cart-header h2 {
  font-size: 1.6rem;
}

.cart-empty {
  display: grid;
  place-items: center;
  color: var(--muted);
  text-align: center;
}

.cart-empty[hidden],
.cart-items[hidden] {
  display: none;
}

.cart-items {
  overflow: auto;
  padding-right: 4px;
}

.cart-item {
  display: grid;
  grid-template-columns: 92px 1fr auto;
  gap: 14px;
  align-items: center;
  padding: 18px 0;
  border-bottom: 1px solid var(--line);
}

.cart-item img {
  width: 92px;
  aspect-ratio: 3 / 4;
  object-fit: contain;
  background: #ffffff;
  border-radius: 8px;
}

.cart-item h3,
.cart-item p {
  margin: 0;
}

.cart-item p,
.cart-footer .fine-print {
  color: var(--muted);
}

.cart-remove {
  width: fit-content;
  padding: 0;
  margin-top: 8px;
  color: var(--coral);
  background: transparent;
  border: 0;
  cursor: pointer;
  font: inherit;
  font-size: 0.9rem;
  font-weight: 900;
}

.cart-line-total {
  justify-self: end;
  white-space: nowrap;
}

.cart-footer {
  display: grid;
  gap: 14px;
  padding-top: 18px;
  border-top: 1px solid var(--line);
}

.cart-total {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  font-size: 1.1rem;
}

.site-footer {
  display: grid;
  grid-template-columns: minmax(220px, 1fr) minmax(320px, auto) auto;
  align-items: center;
  gap: 24px;
  padding: 30px clamp(18px, 5vw, 72px);
  color: var(--muted);
  background: #ffffff;
  border-top: 1px solid var(--line);
  font-size: 0.9rem;
}

.footer-brand {
  display: grid;
  gap: 3px;
}

.footer-brand strong {
  color: var(--ink);
  font-size: 1rem;
}

.footer-links {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 10px 20px;
}

.footer-links a:hover {
  color: var(--teal);
}

.footer-copyright {
  white-space: nowrap;
}

.section-reveal {
  opacity: 1;
  transform: translateY(0);
}

.section-reveal.is-visible {
  animation: riseIn 520ms ease both;
}

@keyframes riseIn {
  from {
    opacity: 0.9;
    transform: translateY(14px);
  }

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

@media (min-width: 1680px) {
  body {
    font-size: 16px;
  }

  .showcase-section,
  .detail-section,
  .selfie-section,
  .smart-section,
  .stand-section,
  .version-section,
  .feature-section,
  .creator-section,
  .spec-section,
  .testimonial-section,
  .cta-band,
  .faq-section,
  .buy-section {
    padding-right: clamp(40px, 4vw, 108px);
    padding-left: clamp(40px, 4vw, 108px);
  }

  .section-heading.center {
    max-width: 1240px;
  }

  #screen-display {
    min-height: clamp(1040px, 112vh, 1320px);
    padding-top: clamp(118px, 9vw, 170px);
    padding-right: clamp(24px, 2.2vw, 60px);
    padding-bottom: clamp(132px, 10vw, 190px);
    padding-left: clamp(24px, 2.2vw, 60px);
  }

  #screen-display .editorial-heading h2 {
    max-width: 1500px;
    font-size: clamp(3.4rem, 3.6vw, 4.85rem);
  }

  #screen-display .editorial-heading p {
    max-width: 1120px;
    font-size: clamp(1.05rem, 0.9vw, 1.22rem);
  }

  .display-story {
    width: min(96vw, 2240px);
    max-width: 2240px;
    gap: clamp(28px, 1.7vw, 46px);
  }

  .live-demo-panel {
    width: min(96vw, 2100px);
  }

  .live-demo-copy h3 {
    font-size: clamp(2.55rem, 2.8vw, 4.25rem);
  }

  .display-copy {
    max-width: 650px;
  }

  .display-feature h3 {
    font-size: clamp(2.45rem, 2.55vw, 3.85rem);
  }

  .display-feature p {
    font-size: clamp(1.05rem, 0.95vw, 1.22rem);
  }

  .spec-grid {
    gap: 18px;
  }

  .spec-grid div {
    min-height: 170px;
    padding: 28px;
  }

  .spec-grid span {
    font-size: 1rem;
  }

  .spec-grid strong {
    font-size: 1.28rem;
  }

  .testimonial-grid {
    gap: 22px;
  }

  .testimonial-grid article {
    padding: 34px;
  }

  .testimonial-grid p {
    font-size: 1.02rem;
  }

  .testimonial-grid strong {
    font-size: 1rem;
  }

  .version-panel {
    width: min(78vw, 1500px);
  }

  .version-notes strong {
    font-size: clamp(1.08rem, 0.95vw, 1.28rem);
  }
}

@media (max-width: 1020px) {
  .hero,
  .creator-section,
  .buy-section,
  .showcase-card.large,
  .selfie-section,
  .magnetic-section {
    grid-template-columns: 1fr;
  }

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

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

  .smart-section .editorial-heading,
  .smart-grid {
    width: min(100%, 1180px);
  }

  .display-feature,
  .feature-large {
    grid-template-columns: 1fr;
    min-height: auto;
  }

  .display-feature:nth-child(even) {
    grid-template-columns: 1fr;
  }

  .display-feature:nth-child(even) .display-copy,
  .display-feature:nth-child(even) .display-media {
    order: initial;
  }

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

  .gallery-thumbs {
    grid-template-columns: repeat(5, 64px);
    order: 2;
    overflow-x: auto;
  }

  .gallery-thumb {
    width: 64px;
    height: 64px;
  }

  .product-info-card {
    position: static;
  }

  .live-demo-panel {
    grid-template-columns: 1fr;
  }

  .live-demo-media {
    width: min(100%, 640px);
    min-height: 0;
    aspect-ratio: 1 / 1;
  }

  .display-copy {
    padding-right: 0;
    padding-left: 0;
  }

  .magnetic-heading {
    justify-self: start;
  }

  .display-media img {
    max-width: 100%;
  }

  .smart-feature-large,
  .stand-grid article:first-child {
    grid-row: auto;
  }

  .stand-grid .portability-panel {
    grid-template-columns: 1fr;
  }

  .mount-panel {
    grid-template-columns: 1fr;
  }

  .mount-visuals {
    grid-template-columns: minmax(0, 0.82fr) minmax(0, 1.18fr);
  }

  .stand-grid .portability-copy h3 {
    max-width: 100%;
  }

  .feature-grid,
  .spec-grid,
  .testimonial-grid,
  .display-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

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

@media (max-width: 720px) {
  body {
    padding-bottom: 74px;
  }

  .site-header {
    align-items: center;
    padding: 14px 16px;
  }

  .nav-links {
    display: none;
  }

  .header-action,
  .cart-trigger {
    min-height: 36px;
    padding: 0 12px;
    font-size: 0.88rem;
  }

  .hero {
    min-height: calc(100vh - 65px);
    padding-top: 44px;
    padding-bottom: 44px;
  }

  h1 {
    max-width: 11ch;
    font-size: clamp(2.55rem, 11vw, 3.9rem);
  }

  h2 {
    font-size: clamp(2rem, 10vw, 3.2rem);
  }

  .hero-stage::before {
    background:
      linear-gradient(90deg, rgba(12, 32, 36, 0.78) 0%, rgba(12, 32, 36, 0.58) 62%, rgba(12, 32, 36, 0.18) 100%),
      linear-gradient(0deg, rgba(12, 32, 36, 0.38), rgba(12, 32, 36, 0.05) 44%);
  }

  .chip-top {
    top: auto;
    right: 12px;
    bottom: 68px;
  }

  .chip-bottom {
    bottom: 12px;
    right: 12px;
    left: auto;
  }

  .feature-grid,
  .spec-grid,
  .testimonial-grid,
  .display-grid,
  .display-story,
  .smart-grid,
  .stand-grid {
    grid-template-columns: 1fr;
  }

  .smart-feature div,
  .stand-grid article h3,
  .stand-grid article p {
    padding-right: 18px;
    padding-left: 18px;
  }

  .display-feature h3,
  .smart-feature h3,
  .split-copy h2,
  .stand-copy h2 {
    font-size: clamp(2rem, 10vw, 3.1rem);
  }

  .live-demo-panel {
    width: 100%;
    margin-top: 64px;
    padding: 18px;
  }

  .live-demo-copy h3 {
    font-size: clamp(2.25rem, 10vw, 3.4rem);
  }

  .live-demo-media {
    min-height: 0;
    width: 100%;
    aspect-ratio: 1 / 1;
  }

  #screen-display .editorial-heading h2 {
    font-size: clamp(2.55rem, 11vw, 4.1rem);
  }

  #screen-display {
    min-height: auto;
    padding-top: 72px;
    padding-bottom: 86px;
  }

  .selfie-section,
  .magnetic-section,
  .smart-section,
  .stand-section,
  .version-section {
    padding-right: 18px;
    padding-left: 18px;
  }

  .split-media img,
  .smart-feature img,
  .stand-grid img {
    aspect-ratio: 1 / 1;
  }

  .magnetic-composite {
    grid-template-columns: 1fr;
    min-height: auto;
    padding: 16px;
  }

  .magnetic-link-line {
    display: none;
  }

  .stand-hero-card img {
    aspect-ratio: 16 / 9;
  }

  .stand-grid .portability-panel {
    padding: 28px 18px 34px;
  }

  .portability-copy h3,
  .portability-copy p:not(.eyebrow) {
    padding-right: 0;
    padding-left: 0;
  }

  .stand-grid .portability-copy h3 {
    font-size: clamp(2.75rem, 13vw, 4rem);
  }

  .portability-copy h3 span {
    white-space: normal;
  }

  .portable-points {
    grid-template-columns: 1fr;
  }

  .portable-points span,
  .portable-points span:last-child {
    grid-column: auto;
    justify-self: stretch;
  }

  .portability-visuals {
    grid-template-columns: 1fr;
  }

  .cta-band .cta-keywords {
    flex-direction: column;
    gap: 12px;
    font-size: clamp(2.4rem, 12vw, 3.5rem);
  }

  .cta-keywords span + span::before {
    display: none;
  }

  .portable-setup {
    transform: none;
  }

  .portable-pocket img,
  .portable-setup img {
    aspect-ratio: 4 / 3;
  }

  .mount-panel {
    padding: 28px 18px 34px;
  }

  .mount-copy h3,
  .mount-copy p:not(.eyebrow) {
    padding-right: 0;
    padding-left: 0;
  }

  .mount-visuals {
    grid-template-columns: 1fr;
  }

  .mount-laptop img {
    aspect-ratio: 1 / 1;
  }

  .mount-guide img {
    aspect-ratio: 1402 / 1122;
  }

  .version-panel {
    padding: 12px;
  }

  .version-notes {
    grid-template-columns: 1fr;
  }

  .device-panel {
    min-height: 360px;
  }

  .screen-stack {
    min-height: 250px;
  }

  .price-row,
  .save-row,
  .quantity-row,
  .site-footer {
    align-items: flex-start;
    flex-direction: column;
  }

  .site-footer {
    display: grid;
    grid-template-columns: 1fr;
  }

  .footer-links {
    display: grid;
    justify-content: start;
  }

  .paypal-purchase-heading {
    align-items: flex-start;
    flex-direction: column;
    gap: 6px;
  }

  .cart-drawer {
    width: 100vw;
    padding: 18px;
  }

  .cart-item {
    grid-template-columns: 78px minmax(0, 1fr);
    align-items: start;
  }

  .cart-item img {
    width: 78px;
  }

  .cart-line-total {
    grid-column: 2;
    justify-self: start;
    white-space: normal;
  }

  .sticky-cta {
    right: 14px;
    bottom: 14px;
    left: 14px;
    display: flex;
  }
}

@media (prefers-reduced-motion: reduce) {
  *,
  *::before,
  *::after {
    scroll-behavior: auto !important;
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: 0.01ms !important;
  }
}
