:root {
  color-scheme: dark;
  --paper: #070a0b;
  --paper-soft: #0d1112;
  --ink: #f5f7f4;
  --muted: #9aa3a0;
  --line: rgba(245, 247, 244, 0.12);
  --line-strong: rgba(245, 247, 244, 0.2);
  --card: rgba(255, 255, 255, 0.055);
  --card-strong: rgba(255, 255, 255, 0.085);
  --body-copy: rgba(245, 247, 244, 0.7);
  --body-copy-strong: rgba(245, 247, 244, 0.86);
  --header-bg: rgba(7, 10, 11, 0.62);
  --header-bg-scrolled: rgba(10, 14, 15, 0.86);
  --hero-scrim:
    linear-gradient(90deg, rgba(7, 10, 11, 0.98) 0%, rgba(7, 10, 11, 0.82) 34%, rgba(7, 10, 11, 0.3) 66%, rgba(7, 10, 11, 0.05) 100%),
    linear-gradient(180deg, rgba(7, 10, 11, 0.58) 0%, rgba(7, 10, 11, 0.1) 44%, rgba(7, 10, 11, 0.96) 100%);
  --blue: #77d3c0;
  --sage: #a7c9b1;
  --copper: #ffb24c;
  --dark: #050607;
  --dark-soft: #0d1112;
  --shadow: 0 28px 80px rgba(0, 0, 0, 0.38);
  --radius: 8px;
  --max: 1180px;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  min-width: 320px;
  background: var(--paper);
  color: var(--ink);
  font-family: -apple-system, BlinkMacSystemFont, "SF Pro Display", "Inter", "Segoe UI", Arial, sans-serif;
  font-size: 17px;
  line-height: 1.55;
  text-rendering: optimizeLegibility;
  -webkit-font-smoothing: antialiased;
  transition: background 220ms ease, color 220ms ease;
}

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

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

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

p + p {
  margin-top: 1rem;
}

.site-header {
  position: fixed;
  z-index: 20;
  top: 0;
  left: 0;
  right: 0;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  height: 56px;
  padding: 0 clamp(1.75rem, 5vw, 5rem);
  color: var(--ink);
  background: var(--header-bg);
  backdrop-filter: blur(22px) saturate(1.25);
  border-bottom: 1px solid transparent;
  transition: border-color 180ms ease, background 180ms ease;
}

.site-header.is-scrolled {
  background: var(--header-bg-scrolled);
  border-bottom-color: var(--line);
}

.brand-mark {
  display: inline-flex;
  align-items: center;
  flex: 0 0 auto;
  transform: translateX(clamp(0.25rem, 0.7vw, 0.75rem));
}

.brand-logo {
  width: 150px;
  height: auto;
  mix-blend-mode: screen;
}

.site-nav {
  display: flex;
  align-items: center;
}

.site-nav {
  gap: clamp(0.8rem, 2vw, 1.7rem);
  color: var(--muted);
  font-size: 0.82rem;
  font-weight: 520;
}

.site-nav a:hover {
  color: var(--ink);
}

.hero {
  position: relative;
  display: grid;
  min-height: 78svh;
  padding: 96px clamp(1.25rem, 5vw, 5rem) 9svh;
  overflow: hidden;
  isolation: isolate;
  align-items: center;
}

.hero-picture,
.hero-image {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
}

.hero-picture {
  z-index: -2;
}

.hero-image {
  object-fit: cover;
  object-position: center center;
  filter: saturate(0.98) contrast(1.02);
}

.product-page .hero-picture {
  display: grid;
  place-items: center end;
  padding: 7rem clamp(1.25rem, 5vw, 5rem) 4rem 38vw;
}

.product-page .product-hero-image {
  position: relative;
  inset: auto;
  width: min(980px, 62vw);
  height: auto;
  object-fit: contain;
  object-position: center;
  filter: drop-shadow(0 34px 90px rgba(0, 0, 0, 0.5));
}

.product-page .hero-scrim {
  background:
    linear-gradient(90deg, rgba(7, 10, 11, 0.98) 0%, rgba(7, 10, 11, 0.86) 36%, rgba(7, 10, 11, 0.34) 68%, rgba(7, 10, 11, 0.1) 100%),
    linear-gradient(180deg, rgba(7, 10, 11, 0.42) 0%, rgba(7, 10, 11, 0.08) 52%, rgba(7, 10, 11, 0.96) 100%);
}

.hero-scrim {
  position: absolute;
  z-index: -1;
  inset: 0;
  background: var(--hero-scrim);
}

.hero-copy {
  width: min(760px, 100%);
  padding-top: 2rem;
  text-align: left;
}

.product-page .hero-copy {
  width: min(820px, 100%);
}

.eyebrow {
  margin-bottom: 1rem;
  color: var(--blue);
  font-size: 0.78rem;
  font-weight: 700;
  line-height: 1.3;
  text-transform: uppercase;
}

.hero h1 {
  font-size: clamp(4.4rem, 14vw, 10.5rem);
  font-weight: 680;
  line-height: 0.95;
}

.hero-lede {
  max-width: 640px;
  margin: 1.3rem 0 0;
  color: var(--body-copy);
  font-size: clamp(1.35rem, 3vw, 2.15rem);
  line-height: 1.18;
}

.hero-actions,
.button-row {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 0.85rem;
  margin-top: 2rem;
}

.hero .hero-actions {
  justify-content: flex-start;
}

.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 44px;
  padding: 0.72rem 1.15rem;
  border: 1px solid var(--line-strong);
  border-radius: 999px;
  font-size: 0.92rem;
  font-weight: 650;
  line-height: 1;
  transition: transform 180ms ease, border-color 180ms ease, background 180ms ease;
}

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

.button.primary {
  border-color: var(--ink);
  background: var(--ink);
  color: var(--paper-soft);
}

.button.secondary {
  background: var(--card-strong);
}

.button.is-disabled {
  cursor: default;
  opacity: 0.78;
  transform: none;
}

.button.compact-link {
  width: fit-content;
  margin-top: 0.4rem;
}

.app-icon {
  width: clamp(76px, 10vw, 118px);
  height: clamp(76px, 10vw, 118px);
  margin-bottom: 1.4rem;
  border-radius: 24%;
  box-shadow: var(--shadow);
}

.intro-band,
.section {
  padding: clamp(4.5rem, 10vw, 9rem) clamp(1.25rem, 5vw, 5rem);
}

.intro-band {
  padding-top: clamp(3.25rem, 6vw, 5.5rem);
}

section[id] {
  scroll-margin-top: 96px;
}

.section-inner {
  width: min(var(--max), 100%);
  margin: 0 auto;
}

.section-inner.narrow {
  width: min(880px, 100%);
  text-align: center;
}

.split {
  display: grid;
  grid-template-columns: minmax(0, 0.9fr) minmax(0, 1.1fr);
  gap: clamp(2.5rem, 7vw, 6rem);
  align-items: start;
}

h2 {
  font-size: clamp(2.25rem, 6vw, 4.7rem);
  font-weight: 650;
  line-height: 1.04;
}

h3 {
  font-size: clamp(1.15rem, 2.2vw, 1.5rem);
  font-weight: 650;
  line-height: 1.18;
}

.large-statement {
  color: var(--body-copy-strong);
  font-size: clamp(2rem, 5.6vw, 4.25rem);
  font-weight: 610;
  line-height: 1.08;
}

.copy-stack {
  color: var(--body-copy);
  font-size: clamp(1.05rem, 2vw, 1.26rem);
}

.muted {
  background: var(--paper-soft);
  border-block: 1px solid var(--line);
}

.dark {
  background: var(--dark);
  color: var(--ink);
}

.dark h2,
.dark h3 {
  color: var(--ink);
}

.dark .eyebrow,
.dark .card-kicker {
  color: #9fc7d9;
}

.dark p,
.dark li {
  color: rgba(251, 251, 248, 0.72);
}

.three-up,
.product-grid,
.system-grid,
.tagline-grid {
  display: grid;
  gap: 1rem;
}

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

.text-card,
.product-card,
.tagline-grid p {
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: var(--card);
}

.text-card {
  min-height: 260px;
  padding: clamp(1.2rem, 3vw, 2rem);
}

.text-card p,
.product-card p,
.system-grid p,
.timeline p,
.description-pair p {
  margin-top: 0.8rem;
  color: var(--body-copy);
}

.card-kicker {
  display: block;
  margin-bottom: 0.9rem;
  color: var(--blue);
  font-size: 0.78rem;
  font-weight: 700;
  text-transform: uppercase;
}

.section-heading {
  max-width: 810px;
  margin-bottom: clamp(2rem, 5vw, 4rem);
}

.section-heading p:not(.eyebrow) {
  margin-top: 1rem;
  color: var(--body-copy);
  font-size: clamp(1.05rem, 2vw, 1.24rem);
}

.product-showcase {
  padding-top: clamp(2rem, 5vw, 5rem);
}

.device-showcase-grid {
  display: grid;
  gap: clamp(2rem, 5vw, 4.5rem);
}

.device-shot {
  margin: 0;
}

.device-shot img {
  width: 100%;
  border-radius: clamp(18px, 2.2vw, 28px);
  filter: drop-shadow(0 30px 72px rgba(0, 0, 0, 0.42));
}

.device-shot figcaption {
  display: grid;
  grid-template-columns: minmax(88px, 0.16fr) minmax(0, 1fr);
  gap: clamp(1rem, 3vw, 2.5rem);
  margin-top: 1rem;
  padding-top: 1rem;
  border-top: 1px solid var(--line);
}

.device-shot figcaption span {
  color: var(--ink);
  font-size: 0.92rem;
  font-weight: 720;
}

.device-shot figcaption p {
  max-width: 680px;
  color: var(--body-copy);
  font-size: clamp(1rem, 1.7vw, 1.18rem);
  line-height: 1.45;
}

.product-grid {
  grid-template-columns: repeat(4, minmax(0, 1fr));
}

.product-card {
  display: flex;
  min-height: 420px;
  padding: clamp(1.1rem, 2.4vw, 1.5rem);
  flex-direction: column;
  justify-content: space-between;
  color: inherit;
  overflow: hidden;
  transition: transform 180ms ease, box-shadow 180ms ease;
}

.product-card:hover {
  transform: translateY(-2px);
  box-shadow: var(--shadow);
}

.product-card.featured {
  grid-column: span 2;
  background: var(--card-strong);
}

.product-visual {
  position: relative;
  min-height: 210px;
  margin: -0.35rem -0.35rem 1.5rem;
  border-radius: var(--radius);
  background:
    linear-gradient(110deg, rgba(47, 111, 145, 0.1), rgba(141, 163, 148, 0.18)),
    var(--paper-soft);
  overflow: hidden;
}

.product-image-visual {
  display: grid;
  min-height: clamp(260px, 22vw, 330px);
  place-items: center;
  padding: 0.75rem;
}

.product-image-visual img {
  width: min(104%, 640px);
  max-width: none;
  filter: drop-shadow(0 20px 48px rgba(0, 0, 0, 0.34));
}

.product-icon {
  display: grid;
  width: 62px;
  height: 62px;
  margin-bottom: 2rem;
  place-items: center;
  border: 1px solid var(--line);
  border-radius: 50%;
  background: var(--paper-soft);
  color: var(--blue);
  font-size: 0.78rem;
  font-weight: 750;
}

.identity-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 1.5rem;
}

.clean-list {
  display: grid;
  gap: 0.65rem;
  margin: 1rem 0 0;
  padding: 0;
  list-style: none;
}

.clean-list li {
  padding-top: 0.65rem;
  border-top: 1px solid rgba(251, 251, 248, 0.14);
}

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

.timeline div {
  padding-top: 1.1rem;
  border-top: 1px solid var(--line-strong);
}

.timeline span {
  display: block;
  margin-bottom: 2.5rem;
  color: var(--blue);
  font-size: 0.82rem;
  font-weight: 750;
}

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

.system-grid > div {
  padding-top: 1rem;
  border-top: 1px solid var(--line-strong);
}

.swatches {
  display: flex;
  flex-wrap: wrap;
  gap: 0.55rem;
  margin-top: 1.2rem;
}

.swatches span {
  width: 42px;
  height: 42px;
  border: 1px solid var(--line);
  border-radius: 50%;
  background: var(--swatch);
}

.tagline-grid {
  grid-template-columns: repeat(4, minmax(0, 1fr));
}

.tagline-grid p {
  min-height: 132px;
  padding: 1.1rem;
  color: var(--body-copy-strong);
  font-size: 1.08rem;
  font-weight: 620;
  line-height: 1.25;
}

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

.description-pair > div {
  padding-top: 1rem;
  border-top: 1px solid var(--line-strong);
}

.final-cta {
  text-align: center;
  background: linear-gradient(180deg, var(--paper), var(--paper-soft));
}

.final-cta p {
  max-width: 620px;
  margin: 1rem auto 0;
  color: var(--body-copy);
}

.final-cta .button {
  margin-top: 2.1rem;
}

.site-footer {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: center;
  gap: 1.1rem;
  padding: 2rem 1.25rem;
  border-top: 1px solid var(--line);
  color: var(--muted);
  font-size: 0.88rem;
}

.site-footer span {
  color: var(--ink);
  font-weight: 700;
}

.foundation-page .hero,
.product-page .hero {
  min-height: 74svh;
}

.foundation-list {
  display: grid;
  gap: 2.5rem;
}

.foundation-item {
  display: grid;
  grid-template-columns: minmax(0, 0.35fr) minmax(0, 0.65fr);
  gap: clamp(1rem, 5vw, 4rem);
  padding-top: 2rem;
  border-top: 1px solid var(--line-strong);
}

.foundation-item h2 {
  font-size: clamp(1.6rem, 4vw, 2.75rem);
}

.foundation-item p,
.foundation-item li {
  color: var(--body-copy);
}

.product-hero-line {
  display: inline-flex;
  width: min(680px, 90vw);
  height: 9px;
  margin: 2.4rem auto 0;
  border-radius: 999px;
  background:
    linear-gradient(90deg, rgba(47, 111, 145, 0.12), rgba(47, 111, 145, 0.92), rgba(184, 121, 77, 0.72), rgba(141, 163, 148, 0.82), rgba(47, 111, 145, 0.12));
  box-shadow: 0 20px 70px rgba(47, 111, 145, 0.22);
}

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

.feature-strip div {
  min-height: 260px;
  padding: 1.35rem;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: var(--card);
}

.feature-strip p {
  margin-top: 0.8rem;
  color: var(--body-copy);
}

.feature-detail-grid,
.platform-grid,
.faq-grid {
  display: grid;
  gap: 1rem;
}

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

.feature-detail-grid article,
.platform-grid article,
.faq-grid article {
  padding: 1.2rem;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: var(--card);
}

.feature-detail-grid p,
.platform-grid p,
.faq-grid p {
  margin-top: 0.8rem;
  color: var(--body-copy);
}

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

.platform-section {
  padding-top: clamp(3rem, 7vw, 6rem);
}

.origin-story {
  padding-top: clamp(4rem, 8vw, 7rem);
  background: linear-gradient(180deg, var(--paper), var(--paper-soft));
  border-block: 1px solid var(--line);
}

.releases-preview {
  padding-block: clamp(3.5rem, 8vw, 6.5rem);
}

.privacy-section .button-row.compact {
  justify-content: flex-start;
  margin-top: 1.6rem;
}

.privacy-section .button-row.compact .button {
  width: auto;
}

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

.copy-page {
  background: var(--paper);
}

.copy-page .copy-main {
  width: min(900px, calc(100vw - 2.5rem));
  margin: 0 auto;
  padding: 112px 0 clamp(4rem, 8vw, 7rem);
}

.copy-page .copy-hero {
  padding-bottom: clamp(2.5rem, 6vw, 4.5rem);
  border-bottom: 1px solid var(--line);
}

.copy-page h1 {
  font-size: clamp(3rem, 9vw, 6.6rem);
  font-weight: 680;
  line-height: 0.95;
}

.copy-page .copy-lede {
  max-width: 720px;
  margin-top: 1.3rem;
  color: var(--body-copy);
  font-size: clamp(1.2rem, 2.4vw, 1.65rem);
  line-height: 1.28;
}

.copy-page .copy-stack {
  display: grid;
  gap: 1rem;
  margin-top: clamp(2rem, 5vw, 4rem);
}

.copy-page .copy-section {
  padding-top: 1.4rem;
  border-top: 1px solid var(--line);
}

.copy-page .copy-section h2 {
  font-size: clamp(1.4rem, 3vw, 2rem);
  line-height: 1.12;
}

.copy-page .copy-section p,
.copy-page .copy-section li {
  color: var(--body-copy);
}

.copy-page .copy-section p {
  margin-top: 0.65rem;
}

.copy-page .copy-section ul {
  margin: 0.75rem 0 0;
  padding-left: 1.1rem;
}

.release-list {
  gap: 1.5rem;
}

.release-heading {
  display: flex;
  flex-wrap: wrap;
  align-items: baseline;
  justify-content: space-between;
  gap: 0.7rem 1.2rem;
}

.release-heading span {
  color: var(--muted);
  font-size: 0.9rem;
  font-weight: 650;
}

.copy-page code {
  color: var(--body-copy-strong);
  font-family: "SF Mono", "SFMono-Regular", ui-monospace, Menlo, monospace;
  font-size: 0.95em;
}

.workflow-hero-shot,
.workflow-step figure {
  margin: 0;
}

.workflow-hero-shot {
  display: grid;
  place-items: center;
  margin-bottom: clamp(3rem, 7vw, 6rem);
  padding: clamp(1rem, 3vw, 2rem);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: var(--card);
}

.workflow-hero-shot img {
  width: min(980px, 100%);
  border-radius: 10px;
  filter: drop-shadow(0 24px 60px rgba(0, 0, 0, 0.35));
}

.workflow-list {
  display: grid;
  gap: clamp(4rem, 9vw, 8rem);
}

.workflow-step {
  display: grid;
  grid-template-columns: minmax(0, 0.38fr) minmax(0, 0.62fr);
  gap: clamp(2rem, 5vw, 4rem);
  align-items: start;
  padding-top: clamp(2rem, 4vw, 3rem);
  border-top: 1px solid var(--line-strong);
}

.workflow-copy {
  position: sticky;
  top: 92px;
}

.workflow-copy h3 {
  font-size: clamp(1.6rem, 3.4vw, 2.8rem);
  line-height: 1.05;
}

.workflow-copy p {
  margin-top: 1rem;
  color: var(--body-copy);
  font-size: clamp(1rem, 1.7vw, 1.16rem);
}

.workflow-points {
  display: grid;
  gap: 0.7rem;
  margin: 1.3rem 0 0;
  padding: 0;
  list-style: none;
}

.workflow-points li {
  padding-top: 0.7rem;
  border-top: 1px solid var(--line);
  color: var(--body-copy);
}

.workflow-points strong {
  color: var(--ink);
  font-weight: 720;
}

.workflow-media-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 1rem;
}

.workflow-media-grid .wide {
  grid-column: 1 / -1;
}

.workflow-wide-shot,
.workflow-media-grid figure,
.workflow-inspector-grid figure {
  display: flex;
  flex-direction: column;
  padding: clamp(0.55rem, 1.4vw, 0.9rem);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: var(--card);
}

.workflow-wide-shot img,
.workflow-media-grid img,
.workflow-inspector-grid img {
  width: 100%;
  border-radius: calc(var(--radius) - 2px);
  box-shadow: var(--shadow);
}

.workflow-media-grid figcaption,
.workflow-inspector-grid figcaption {
  order: -1;
  margin-bottom: 0.75rem;
  color: var(--muted);
  font-size: 0.86rem;
  font-weight: 650;
}

.workflow-inspector-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 1rem;
  align-items: start;
}

.workflow-inspector-grid figure {
  width: min(50%, 360px);
  justify-self: center;
}

.workflow-inspector-grid img {
  max-height: 720px;
  object-fit: contain;
  background: #1d1d1f;
}

.demo-output {
  text-align: center;
  background: linear-gradient(180deg, var(--paper), var(--paper-soft));
}

.demo-output .section-heading {
  margin-inline: auto;
}

.demo-panorama {
  margin: 0 auto;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: var(--card);
  overflow: hidden;
  box-shadow: var(--shadow);
}

.demo-panorama img {
  width: 100%;
}

.demo-output .button {
  margin-top: 2rem;
}

@media (max-width: 980px) {
  .three-up,
  .product-grid,
  .timeline,
  .tagline-grid,
  .feature-strip,
  .feature-detail-grid,
  .platform-grid,
  .faq-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .product-card.featured {
    grid-column: span 2;
  }

  .split,
  .foundation-item {
    grid-template-columns: 1fr;
  }

  .workflow-step,
  .workflow-inspector-grid {
    grid-template-columns: 1fr;
  }

  .workflow-copy {
    position: static;
  }

}

@media (max-width: 720px) {
  body {
    font-size: 16px;
  }

  .site-header {
    height: auto;
    min-height: 56px;
    align-items: flex-start;
    padding: 0.85rem clamp(1.25rem, 5vw, 1.75rem) 0.75rem;
    padding-bottom: 0.75rem;
    flex-direction: column;
  }

  .brand-mark {
    transform: none;
  }

  .site-nav {
    width: 100%;
    flex-wrap: wrap;
    justify-content: flex-start;
    gap: 0.4rem 0.9rem;
    overflow-x: visible;
    padding-bottom: 0.1rem;
  }

  .hero {
    min-height: 84svh;
    padding-top: 128px;
    align-items: end;
  }

  .product-page .hero {
    min-height: 96svh;
  }

  section[id] {
    scroll-margin-top: 128px;
  }

  .hero-image {
    object-position: 50% 42%;
  }

  .product-page .hero-picture {
    place-items: start center;
    padding: 104px 1rem 0;
  }

  .product-page .product-hero-image {
    width: min(760px, 110vw);
    opacity: 0.52;
  }

  .hero-copy {
    padding-top: 0;
  }

  .hero h1 {
    font-size: clamp(3rem, 12.8vw, 5.2rem);
  }

  .hero-actions,
  .button-row,
  .description-pair,
  .identity-grid,
  .system-grid {
    grid-template-columns: 1fr;
  }

  .hero-actions,
  .button-row {
    align-items: stretch;
    flex-direction: column;
  }

  .button {
    width: 100%;
  }

  .three-up,
  .product-grid,
  .timeline,
  .tagline-grid,
  .feature-strip,
  .feature-detail-grid,
  .platform-grid,
  .faq-grid {
    grid-template-columns: 1fr;
  }

  .privacy-section .button-row.compact .button {
    width: 100%;
  }

  .device-shot figcaption {
    grid-template-columns: 1fr;
    gap: 0.35rem;
  }

  .product-card,
  .text-card {
    min-height: auto;
  }

  .product-card.featured {
    grid-column: span 1;
  }

  .workflow-media-grid {
    grid-template-columns: 1fr;
  }

  .workflow-inspector-grid figure {
    width: 100%;
  }
}

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

/* PanoFuser product landing */

.pano-product {
  color-scheme: light;
  --pf-bg: #f7f8fa;
  --pf-surface: #ffffff;
  --pf-surface-soft: #eef2f6;
  --pf-ink: #111318;
  --pf-muted: #616975;
  --pf-muted-strong: #3f4650;
  --pf-line: rgba(17, 19, 24, 0.1);
  --pf-line-strong: rgba(17, 19, 24, 0.18);
  --pf-blue: #007aff;
  --pf-green: #1f9d66;
  --pf-amber: #b86f00;
  --pf-dark: #111318;
  --pf-dark-soft: #1b1e24;
  --pf-dark-line: rgba(255, 255, 255, 0.16);
  --pf-dark-copy: rgba(255, 255, 255, 0.72);
  --pf-shadow: 0 28px 78px rgba(17, 19, 24, 0.14);
  --pf-max: 1180px;
  margin: 0;
  background:
    linear-gradient(180deg, #fbfcfd 0, var(--pf-bg) 720px),
    var(--pf-bg);
  color: var(--pf-ink);
  font-family: -apple-system, BlinkMacSystemFont, "SF Pro Display", "Inter", "Segoe UI", Arial, sans-serif;
}

.pano-product p,
.pano-product h1,
.pano-product h2,
.pano-product h3 {
  margin: 0;
}

.pf-header {
  position: fixed;
  z-index: 40;
  top: 0;
  left: 0;
  right: 0;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
  min-height: 64px;
  padding: 0 28px;
  color: var(--pf-ink);
  background: rgba(247, 248, 250, 0.78);
  border-bottom: 1px solid transparent;
  backdrop-filter: blur(24px) saturate(1.4);
  transition: background 180ms ease, border-color 180ms ease;
}

.pf-header.is-scrolled {
  background: rgba(247, 248, 250, 0.94);
  border-bottom-color: var(--pf-line);
}

.pf-header-brand {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  min-width: 0;
  font-size: 0.98rem;
  font-weight: 720;
}

.pf-header-brand img {
  width: 30px;
  height: 30px;
  border-radius: 7px;
  box-shadow: 0 8px 18px rgba(17, 19, 24, 0.18);
}

.pf-nav {
  display: flex;
  align-items: center;
  gap: 18px;
  color: var(--pf-muted-strong);
  font-size: 0.88rem;
  font-weight: 620;
  white-space: nowrap;
}

.pf-nav a {
  transition: color 160ms ease, background 160ms ease;
}

.pf-nav a:hover {
  color: var(--pf-ink);
}

.pf-nav-cta {
  padding: 8px 13px;
  border-radius: 999px;
  background: var(--pf-ink);
  color: #ffffff;
}

.pf-nav-cta:hover {
  color: #ffffff;
  background: #2a2e36;
}

.pf-hero {
  display: grid;
  align-content: center;
  min-height: 72svh;
  padding: 88px 24px 24px;
  overflow: hidden;
}

.pf-hero-copy {
  width: min(900px, 100%);
  margin: 0 auto;
  text-align: center;
}

.pf-app-icon {
  width: 72px;
  height: 72px;
  margin: 0 auto 16px;
  border-radius: 17px;
  box-shadow: 0 20px 48px rgba(17, 19, 24, 0.22);
}

.pf-kicker {
  color: var(--pf-blue);
  font-size: 0.78rem;
  font-weight: 760;
  line-height: 1.25;
  text-transform: uppercase;
}

.pf-hero h1 {
  margin-top: 12px;
  color: var(--pf-ink);
  font-size: 4.95rem;
  font-weight: 760;
  line-height: 0.95;
}

.pf-hero-lede {
  max-width: 880px;
  margin: 18px auto 0;
  color: var(--pf-muted-strong);
  font-size: 1.25rem;
  font-weight: 520;
  line-height: 1.32;
}

.pf-actions {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: center;
  gap: 12px;
  margin-top: 24px;
}

.pf-button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 46px;
  padding: 0 18px;
  border: 1px solid var(--pf-line-strong);
  border-radius: 999px;
  font-size: 0.96rem;
  font-weight: 720;
  line-height: 1;
  transition: transform 160ms ease, background 160ms ease, border-color 160ms ease;
}

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

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

.pf-button-secondary {
  background: #ffffff;
  color: var(--pf-ink);
}

.pf-button-light {
  border-color: #ffffff;
  background: #ffffff;
  color: var(--pf-ink);
}

.pf-button-ghost {
  border-color: var(--pf-dark-line);
  background: rgba(255, 255, 255, 0.08);
  color: #ffffff;
}

.pf-button-disabled {
  cursor: default;
  opacity: 0.82;
}

.pf-button-disabled:hover {
  transform: none;
}

.pf-hero-media {
  width: min(1160px, 100%);
  margin: 24px auto 0;
}

.pf-hero-media img {
  width: 100%;
  max-height: min(34svh, 330px);
  object-fit: contain;
  filter: drop-shadow(0 34px 58px rgba(17, 19, 24, 0.2));
}

.pf-proof {
  padding: 0 24px 82px;
}

.pf-proof-grid {
  display: grid;
  width: min(var(--pf-max), 100%);
  margin: 0 auto;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  border-block: 1px solid var(--pf-line);
}

.pf-proof-grid div {
  min-height: 138px;
  padding: 22px;
  border-right: 1px solid var(--pf-line);
}

.pf-proof-grid div:last-child {
  border-right: 0;
}

.pf-proof-grid strong,
.pf-privacy-grid strong {
  display: block;
  color: var(--pf-ink);
  font-size: 1.05rem;
  line-height: 1.2;
}

.pf-proof-grid span {
  display: block;
  margin-top: 10px;
  color: var(--pf-muted);
  font-size: 0.98rem;
  line-height: 1.45;
}

.pf-section {
  padding: 108px 24px;
}

.pf-section-soft {
  background: var(--pf-surface-soft);
}

.pf-section-intro {
  padding-top: 92px;
}

.pf-section-heading,
.pf-story-grid,
.pf-motivation-grid,
.pf-camera-grid,
.pf-feature-grid,
.pf-workflow,
.pf-output-grid,
.pf-device-stack,
.pf-privacy-grid,
.pf-faq-grid,
.pf-store-panel,
.pf-hdr-showcase,
.pf-wide-shot {
  width: min(var(--pf-max), 100%);
  margin-inline: auto;
}

.pf-section-heading {
  max-width: 880px;
  margin-bottom: 46px;
  text-align: center;
}

.pf-section-heading h2,
.pf-store-panel h2 {
  margin-top: 12px;
  color: var(--pf-ink);
  font-size: 3.55rem;
  font-weight: 740;
  line-height: 1.03;
}

.pf-section-heading > p:not(.pf-kicker),
.pf-store-panel > p {
  margin-top: 18px;
  color: var(--pf-muted);
  font-size: 1.18rem;
  line-height: 1.55;
}

.pf-story-grid {
  display: grid;
  gap: 34px;
}

.pf-story-copy {
  max-width: 860px;
  margin-inline: auto;
  color: var(--pf-muted-strong);
  font-size: 1.18rem;
  line-height: 1.65;
}

.pf-story-copy p + p {
  margin-top: 18px;
}

.pf-panorama-strip {
  margin: 0;
}

.pf-panorama-strip img {
  width: 100%;
  max-height: 430px;
  border: 1px solid var(--pf-line);
  border-radius: 8px;
  box-shadow: var(--pf-shadow);
  object-fit: cover;
}

.pf-panorama-strip figcaption {
  margin-top: 12px;
  color: var(--pf-muted);
  font-size: 0.9rem;
  text-align: center;
}

.pf-motivation-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 14px;
  margin-top: 44px;
}

.pf-motivation-grid article {
  min-height: 246px;
  padding: 24px;
  border: 1px solid var(--pf-line);
  border-radius: 8px;
  background: #ffffff;
  box-shadow: 0 18px 42px rgba(17, 19, 24, 0.06);
}

.pf-motivation-grid h3 {
  color: var(--pf-ink);
  font-size: 1.26rem;
  font-weight: 720;
  line-height: 1.18;
}

.pf-motivation-grid p {
  margin-top: 14px;
  color: var(--pf-muted);
  font-size: 0.99rem;
  line-height: 1.56;
}

.pf-feature-grid,
.pf-privacy-grid,
.pf-faq-grid {
  display: grid;
  gap: 14px;
}

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

.pf-feature-card,
.pf-faq-grid article {
  min-height: 258px;
  padding: 24px;
  border: 1px solid var(--pf-line);
  border-radius: 8px;
  background: rgba(255, 255, 255, 0.78);
}

.pf-feature-card span,
.pf-step-copy span {
  display: block;
  margin-bottom: 36px;
  color: var(--pf-blue);
  font-size: 0.84rem;
  font-weight: 760;
}

.pf-feature-card h3,
.pf-step-copy h3,
.pf-faq-grid h3 {
  color: var(--pf-ink);
  font-size: 1.42rem;
  font-weight: 720;
  line-height: 1.16;
}

.pf-feature-card p,
.pf-step-copy p,
.pf-faq-grid p {
  margin-top: 14px;
  color: var(--pf-muted);
  font-size: 1rem;
  line-height: 1.55;
}

.pf-camera-section {
  background: #ffffff;
}

.pf-camera-grid {
  display: grid;
  grid-template-columns: minmax(0, 0.92fr) minmax(300px, 0.58fr);
  gap: clamp(34px, 7vw, 92px);
  align-items: center;
}

.pf-camera-copy h2 {
  margin-top: 12px;
  color: var(--pf-ink);
  font-size: 3.35rem;
  font-weight: 740;
  line-height: 1.03;
}

.pf-camera-copy p:not(.pf-kicker) {
  margin-top: 18px;
  color: var(--pf-muted);
  font-size: 1.14rem;
  line-height: 1.6;
}

.pf-phone-shot {
  margin: 0;
  justify-self: center;
}

.pf-phone-shot img {
  width: min(410px, 100%);
  max-height: 720px;
  object-fit: cover;
  object-position: center;
  border: 1px solid var(--pf-line);
  border-radius: 8px;
  box-shadow: var(--pf-shadow);
}

.pf-wide-shot {
  display: grid;
  place-items: center;
  margin-bottom: 52px;
}

.pf-wide-shot img {
  width: min(740px, 100%);
  border-radius: 8px;
  box-shadow: var(--pf-shadow);
}

.pf-workflow {
  display: grid;
  gap: 86px;
}

.pf-video-showcase {
  width: min(960px, 100%);
  margin: 74px auto 0;
  padding-top: 34px;
  border-top: 1px solid var(--pf-line-strong);
}

.pf-video-heading {
  max-width: 760px;
}

.pf-video-heading h3 {
  margin-top: 10px;
  color: var(--pf-ink);
  font-size: 2rem;
  font-weight: 730;
  line-height: 1.08;
}

.pf-video-heading p:not(.pf-kicker) {
  margin-top: 14px;
  color: var(--pf-muted);
  font-size: 1.04rem;
  line-height: 1.55;
}

.pf-video-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 12px;
  margin-top: 24px;
}

.pf-video-grid figure {
  margin: 0;
}

.pf-video-grid video {
  display: block;
  width: 100%;
  aspect-ratio: 16 / 9;
  border: 1px solid var(--pf-line);
  border-radius: 8px;
  background: var(--pf-dark);
  box-shadow: var(--pf-shadow);
  object-fit: cover;
}

.pf-video-grid figcaption {
  margin-top: 12px;
  color: var(--pf-muted);
  font-size: 0.92rem;
  line-height: 1.4;
}

.pf-workflow-step {
  display: grid;
  grid-template-columns: minmax(0, 0.34fr) minmax(0, 0.66fr);
  gap: 42px;
  align-items: start;
  padding-top: 34px;
  border-top: 1px solid var(--pf-line-strong);
}

.pf-step-copy {
  position: sticky;
  top: 92px;
}

.pf-step-copy h3 {
  font-size: 2.25rem;
  line-height: 1.08;
}

.pf-shot-grid,
.pf-workflow-media-stack,
.pf-inspector-grid {
  display: grid;
  gap: 14px;
}

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

.pf-inspector-grid {
  grid-template-columns: repeat(2, minmax(0, 1fr));
  align-items: start;
}

.pf-shot-grid figure,
.pf-workflow-shot,
.pf-help-strip-shot,
.pf-inspector-grid figure,
.pf-device-stack figure {
  margin: 0;
}

.pf-shot-grid img,
.pf-workflow-shot img,
.pf-help-strip-shot img,
.pf-inspector-grid img,
.pf-device-stack img {
  width: 100%;
  border-radius: 8px;
  box-shadow: var(--pf-shadow);
}

.pf-shot-grid img {
  aspect-ratio: 16 / 10;
  object-fit: contain;
}

.pf-shot-grid figure:nth-child(-n + 3) img {
  background: rgb(30, 30, 30);
}

.pf-shot-grid figure:nth-child(4) img {
  background: #000000;
}

.pf-device-stack img {
  background: transparent;
  box-shadow: none;
  filter: drop-shadow(0 34px 58px rgba(17, 19, 24, 0.18));
}

.pf-shot-grid figcaption,
.pf-help-strip-shot figcaption,
.pf-inspector-grid figcaption,
.pf-device-stack figcaption {
  margin-top: 12px;
  color: var(--pf-muted);
  font-size: 0.92rem;
  line-height: 1.4;
}

.pf-help-strip-shot img {
  background: #1d1d1f;
}

.pf-inspector-grid img {
  max-height: 640px;
  object-fit: contain;
  background: #1d1d1f;
}

.pf-output-section {
  background: var(--pf-surface-soft);
}

.pf-hdr-showcase {
  margin-bottom: 34px;
}

.pf-hdr-showcase img {
  width: 100%;
  border: 1px solid var(--pf-line);
  border-radius: 8px;
  box-shadow: var(--pf-shadow);
}

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

.pf-output-grid article {
  padding: 18px;
  border: 1px solid var(--pf-line);
  border-radius: 8px;
  background: rgba(255, 255, 255, 0.82);
}

.pf-output-grid img {
  width: 100%;
  height: 190px;
  object-fit: contain;
  border-radius: 6px;
  background: #1d1d1f;
}

.pf-output-grid h3 {
  margin-top: 18px;
  color: var(--pf-ink);
  font-size: 1.24rem;
  font-weight: 720;
  line-height: 1.18;
}

.pf-output-grid p {
  margin-top: 12px;
  color: var(--pf-muted);
  font-size: 0.98rem;
  line-height: 1.52;
}

.pf-devices {
  background: linear-gradient(180deg, var(--pf-bg) 0, var(--pf-surface-soft) 100%);
}

.pf-device-stack {
  display: grid;
  gap: 62px;
}

.pf-device-stack figcaption {
  display: grid;
  grid-template-columns: 120px minmax(0, 1fr);
  gap: 20px;
  padding-top: 16px;
  border-top: 1px solid var(--pf-line);
}

.pf-device-stack strong {
  color: var(--pf-ink);
  font-size: 1rem;
}

.pf-device-stack span {
  color: var(--pf-muted);
}

.pf-section-dark {
  background:
    linear-gradient(180deg, var(--pf-dark) 0, var(--pf-dark-soft) 100%);
  color: #ffffff;
}

.pf-section-dark .pf-section-heading h2,
.pf-section-dark .pf-privacy-grid strong {
  color: #ffffff;
}

.pf-section-dark .pf-kicker {
  color: #7cc7ff;
}

.pf-section-dark .pf-section-heading > p:not(.pf-kicker) {
  color: var(--pf-dark-copy);
}

.pf-privacy-grid {
  grid-template-columns: repeat(4, minmax(0, 1fr));
}

.pf-privacy-grid div {
  min-height: 164px;
  padding: 22px;
  border: 1px solid var(--pf-dark-line);
  border-radius: 8px;
  background: rgba(255, 255, 255, 0.06);
}

.pf-privacy-grid p {
  margin-top: 12px;
  color: var(--pf-dark-copy);
  font-size: 0.98rem;
  line-height: 1.5;
}

.pano-product .pf-privacy-note {
  box-sizing: border-box;
  width: min(var(--pf-max), 100%);
  margin: 28px auto 0;
  padding: 18px 22px;
  border: 1px solid var(--pf-dark-line);
  border-radius: 8px;
  background: rgba(255, 255, 255, 0.06);
  color: var(--pf-dark-copy);
  font-size: 1rem;
  line-height: 1.55;
  text-align: left;
}

.pano-product .pf-privacy-note strong {
  color: #ffffff;
  font-weight: 730;
}

.pf-release {
  text-align: center;
}

.pf-text-link {
  display: inline-flex;
  align-items: center;
  color: var(--pf-blue);
  font-weight: 720;
}

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

.pf-app-store {
  padding-top: 0;
  background: linear-gradient(180deg, var(--pf-bg), #ffffff);
}

.pf-store-panel {
  padding: 58px 24px;
  border: 1px solid var(--pf-line);
  border-radius: 8px;
  background: #ffffff;
  box-shadow: var(--pf-shadow);
  text-align: center;
}

.pf-store-panel p {
  max-width: 720px;
  margin-inline: auto;
}

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

.pf-faq-grid article {
  min-height: 236px;
  background: #ffffff;
}

.pf-footer {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: center;
  gap: 16px;
  padding: 30px 24px;
  border-top: 1px solid var(--pf-line);
  background: #ffffff;
  color: var(--pf-muted);
  font-size: 0.92rem;
}

.pf-footer span {
  color: var(--pf-ink);
  font-weight: 760;
}

.pf-footer a:hover {
  color: var(--pf-ink);
}

.pf-copy-main {
  width: min(920px, calc(100% - 48px));
  margin: 0 auto;
  padding: 128px 0 86px;
}

.pf-copy-hero {
  padding-bottom: 48px;
  border-bottom: 1px solid var(--pf-line);
}

.pf-copy-hero h1 {
  max-width: 820px;
  margin-top: 12px;
  color: var(--pf-ink);
  font-size: 4.15rem;
  font-weight: 750;
  line-height: 1;
}

.pf-copy-lede {
  max-width: 760px;
  margin-top: 18px;
  color: var(--pf-muted);
  font-size: 1.14rem;
  line-height: 1.58;
}

.pf-copy-stack {
  display: grid;
  gap: 16px;
  margin-top: 44px;
}

.pf-copy-section {
  padding: 24px;
  border: 1px solid var(--pf-line);
  border-radius: 8px;
  background: rgba(255, 255, 255, 0.82);
  box-shadow: 0 18px 42px rgba(17, 19, 24, 0.05);
}

.pf-copy-section h2 {
  color: var(--pf-ink);
  font-size: 1.48rem;
  font-weight: 730;
  line-height: 1.16;
}

.pf-copy-section p,
.pf-copy-section li {
  color: var(--pf-muted);
  font-size: 1rem;
  line-height: 1.58;
}

.pf-copy-section p {
  margin-top: 12px;
}

.pf-copy-section ul {
  display: grid;
  gap: 9px;
  margin: 14px 0 0;
  padding-left: 1.2rem;
}

.pf-copy-section a,
.pf-copy-section code {
  color: var(--pf-ink);
}

.pf-release-heading {
  display: flex;
  align-items: baseline;
  justify-content: space-between;
  gap: 18px;
}

.pf-release-heading span {
  color: var(--pf-blue);
  font-size: 0.84rem;
  font-weight: 760;
  white-space: nowrap;
}

@media (max-width: 1040px) {
  .pf-proof-grid,
  .pf-motivation-grid,
  .pf-feature-grid,
  .pf-privacy-grid,
  .pf-faq-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .pf-proof-grid div:nth-child(2) {
    border-right: 0;
  }

  .pf-proof-grid div:nth-child(-n + 2) {
    border-bottom: 1px solid var(--pf-line);
  }

  .pf-story-grid,
  .pf-motivation-grid,
  .pf-camera-grid,
  .pf-workflow-step {
    grid-template-columns: 1fr;
  }

  .pf-camera-copy {
    text-align: center;
  }

  .pf-output-grid {
    grid-template-columns: 1fr;
  }

  .pf-output-grid img {
    height: auto;
    max-height: 360px;
  }

  .pf-step-copy {
    position: static;
  }

  .pf-video-showcase {
    width: min(760px, 100%);
  }

  .pf-video-grid {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 760px) {
  .pf-header {
    align-items: flex-start;
    padding: 12px 18px;
    flex-direction: column;
    gap: 10px;
  }

  .pf-nav {
    width: 100%;
    gap: 10px;
    overflow-x: auto;
    padding-bottom: 4px;
    font-size: 0.82rem;
  }

  .pf-nav-cta {
    padding: 7px 11px;
  }

  .pf-hero {
    min-height: 76svh;
    padding: 110px 18px 22px;
  }

  .pf-app-icon {
    width: 64px;
    height: 64px;
    border-radius: 15px;
  }

  .pf-hero h1 {
    font-size: 3.1rem;
  }

  .pf-hero-lede {
    font-size: 1.08rem;
  }

  .pf-hero-media {
    margin-top: 24px;
  }

  .pf-hero-media img {
    max-height: 24svh;
  }

  .pf-actions {
    align-items: stretch;
    flex-direction: column;
  }

  .pf-button {
    width: 100%;
  }

  .pf-proof {
    padding: 0 18px 58px;
  }

  .pf-proof-grid,
  .pf-motivation-grid,
  .pf-feature-grid,
  .pf-shot-grid,
  .pf-inspector-grid,
  .pf-output-grid,
  .pf-privacy-grid,
  .pf-faq-grid {
    grid-template-columns: 1fr;
  }

  .pf-proof-grid div {
    min-height: auto;
    border-right: 0;
    border-bottom: 1px solid var(--pf-line);
  }

  .pf-proof-grid div:last-child {
    border-bottom: 0;
  }

  .pf-section {
    padding: 70px 18px;
  }

  .pf-section-intro {
    padding-top: 64px;
  }

  .pf-section-heading {
    margin-bottom: 34px;
    text-align: left;
  }

  .pf-section-heading h2,
  .pf-camera-copy h2,
  .pf-store-panel h2 {
    font-size: 2.35rem;
  }

  .pf-section-heading > p:not(.pf-kicker),
  .pf-camera-copy p:not(.pf-kicker),
  .pf-store-panel > p {
    font-size: 1.04rem;
  }

  .pf-story-copy {
    font-size: 1.04rem;
  }

  .pf-feature-card,
  .pf-motivation-grid article,
  .pf-faq-grid article {
    min-height: auto;
    padding: 20px;
  }

  .pf-feature-card span,
  .pf-step-copy span {
    margin-bottom: 24px;
  }

  .pf-step-copy h3 {
    font-size: 1.8rem;
  }

  .pf-workflow {
    gap: 58px;
  }

  .pf-video-showcase {
    margin-top: 58px;
    padding-top: 28px;
  }

  .pf-video-heading h3 {
    font-size: 1.8rem;
  }

  .pf-video-grid {
    grid-template-columns: 1fr;
  }

  .pf-workflow-step {
    gap: 24px;
  }

  .pf-wide-shot {
    margin-bottom: 34px;
  }

  .pf-device-stack {
    gap: 42px;
  }

  .pf-device-stack figcaption {
    grid-template-columns: 1fr;
    gap: 6px;
  }

  .pf-camera-copy {
    text-align: left;
  }

  .pf-phone-shot img {
    width: min(100%, 330px);
    max-height: 560px;
  }

  .pf-store-panel {
    padding: 38px 18px;
  }

  .pf-copy-main {
    width: min(100% - 36px, 920px);
    padding: 142px 0 68px;
  }

  .pf-copy-hero {
    padding-bottom: 36px;
  }

  .pf-copy-hero h1 {
    font-size: 2.55rem;
  }

  .pf-copy-lede {
    font-size: 1.04rem;
  }

  .pf-copy-section {
    padding: 20px;
  }

  .pf-release-heading {
    align-items: flex-start;
    flex-direction: column;
    gap: 8px;
  }
}
