:root {
  color-scheme: light;
  --bg: #f4eee6;
  --bg-strong: #ece2d5;
  --surface: rgba(255, 250, 243, 0.88);
  --surface-solid: #fffaf3;
  --surface-muted: #f3eadf;
  --ink: #1d1713;
  --muted: #675a4e;
  --line: rgba(92, 74, 50, 0.16);
  --line-strong: rgba(92, 74, 50, 0.28);
  --accent: #8a6a31;
  --accent-deep: #5f4924;
  --deep: #171311;
  --deep-soft: #241c18;
  --shadow: 0 28px 80px rgba(36, 27, 18, 0.12);
  --shadow-soft: 0 20px 50px rgba(36, 27, 18, 0.08);
  --max-shell: 1180px;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  min-height: 100vh;
  font-family: "Instrument Sans", ui-sans-serif, system-ui, sans-serif;
  background:
    radial-gradient(circle at top, rgba(202, 177, 118, 0.18), transparent 24rem),
    linear-gradient(180deg, #fbf8f2 0%, var(--bg) 42%, #f0e7dc 100%);
  color: var(--ink);
}

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

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

button,
input,
textarea {
  font: inherit;
}

:focus-visible {
  outline: 2px solid rgba(138, 106, 49, 0.9);
  outline-offset: 3px;
}

.site-body {
  position: relative;
}

.site-body::before {
  content: "";
  position: fixed;
  inset: 0;
  pointer-events: none;
  background:
    linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.35), transparent),
    linear-gradient(180deg, rgba(255, 255, 255, 0.12), transparent 18rem);
  opacity: 0.55;
}

.skip-link {
  position: absolute;
  left: -999px;
  top: 0;
  z-index: 100;
  padding: 0.85rem 1rem;
  border-radius: 999px;
  background: var(--deep);
  color: #fff;
}

.skip-link:focus {
  left: 1rem;
  top: 1rem;
}

.shell {
  width: min(calc(100% - 2rem), var(--max-shell));
  margin: 0 auto;
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 30;
  border-bottom: 1px solid rgba(92, 74, 50, 0.08);
  background: rgba(251, 248, 242, 0.82);
  backdrop-filter: blur(18px);
}

.site-header-inner,
.site-footer-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem 2rem;
  padding: 1rem 0;
}

.brand-lockup {
  display: inline-flex;
  align-items: center;
  gap: 0.85rem;
  min-width: 0;
}

.brand-mark {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 3.1rem;
  height: 3.1rem;
  flex-shrink: 0;
  border-radius: 50%;
  overflow: hidden;
  background: #101723;
  box-shadow: inset 0 0 0 1px rgba(255, 255, 255, 0.08);
}

.brand-lockup img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  clip-path: circle(50% at 50% 50%);
}

.brand-lockup-compact .brand-mark {
  width: 2.75rem;
  height: 2.75rem;
}

.brand-copy {
  display: grid;
  gap: 0.1rem;
}

.brand-copy strong {
  font-family: "Cormorant Garamond", Georgia, serif;
  font-size: 2rem;
  font-weight: 600;
  letter-spacing: 0.02em;
  line-height: 0.92;
}

.brand-copy span {
  color: var(--muted);
  font-size: 0.8rem;
  line-height: 1.35;
}

.top-nav,
.footer-links {
  display: flex;
  flex-wrap: wrap;
  justify-content: flex-end;
  gap: 0.85rem 1.35rem;
  font-size: 0.9rem;
  color: var(--muted);
}

.top-nav a,
.footer-links a {
  transition: color 160ms ease;
}

.top-nav a:hover,
.footer-links a:hover {
  color: var(--ink);
}

.hero-section,
.content-section {
  padding: 5.5rem 0;
}

.hero-section-minimal {
  padding: 4.35rem 0 3.8rem;
}

.hero-grid,
.audience-grid,
.legal-hero-grid {
  display: grid;
  grid-template-columns: minmax(0, 1.12fr) minmax(0, 0.88fr);
  gap: 2.75rem;
  align-items: center;
}

.hero-shell {
  width: min(100%, 42rem);
  margin: 0 auto;
}

.hero-grid-minimal {
  grid-template-columns: minmax(0, 0.9fr) minmax(20rem, 0.78fr);
  gap: 2rem;
  align-items: center;
}

.section-label,
.feature-index,
.note-label {
  margin: 0;
  color: var(--accent-deep);
  font-size: 0.78rem;
  font-weight: 700;
  letter-spacing: 0.22em;
  text-transform: uppercase;
}

h1,
h2,
h3 {
  margin: 0;
  font-family: "Cormorant Garamond", Georgia, serif;
  font-weight: 600;
  letter-spacing: 0.01em;
  color: var(--ink);
}

h1 {
  margin-top: 0.95rem;
  font-size: clamp(3.2rem, 7vw, 5.6rem);
  line-height: 0.94;
}

.hero-copy h1 {
  max-width: 12ch;
  font-family: "Instrument Sans", ui-sans-serif, system-ui, sans-serif;
  font-size: clamp(2.35rem, 5vw, 3.55rem);
  font-weight: 700;
  line-height: 0.98;
  letter-spacing: -0.045em;
}

.hero-positioning {
  margin: 1.55rem 0 0;
  font-size: clamp(1.1rem, 2vw, 1.45rem);
  line-height: 1.7;
  color: var(--ink);
  max-width: 42rem;
}

.hero-positioning-compact {
  max-width: 28rem;
  font-size: 0.98rem;
  line-height: 1.68;
  color: var(--muted);
}

.hero-copy {
  position: relative;
}

.hero-copy > * {
  position: relative;
  z-index: 1;
}

.hero-supporting,
.section-intro,
.audience-copy p,
.feature-card p,
.gallery-card p,
.company-card p,
.legal-content p,
.legal-content li,
.utility-status,
.utility-hint {
  color: var(--muted);
  font-size: 1rem;
  line-height: 1.8;
}

.hero-supporting {
  margin: 1rem 0 0;
  max-width: 40rem;
}

.button-row {
  display: flex;
  flex-wrap: wrap;
  gap: 0.9rem;
  margin-top: 2rem;
}

.button-row-compact {
  margin-top: 1.35rem;
}

.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 3rem;
  padding: 0.84rem 1.25rem;
  border: 1px solid transparent;
  border-radius: 999px;
  font-size: 0.94rem;
  font-weight: 600;
  transition:
    transform 160ms ease,
    border-color 160ms ease,
    background-color 160ms ease,
    color 160ms ease,
    box-shadow 160ms ease;
}

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

.button-primary {
  background: linear-gradient(180deg, #a68443 0%, var(--accent) 100%);
  color: #fff9f0;
  box-shadow: 0 18px 30px rgba(138, 106, 49, 0.24);
}

.button-primary:hover {
  box-shadow: 0 24px 36px rgba(138, 106, 49, 0.28);
}

.store-badge {
  display: inline-flex;
  align-items: center;
  gap: 0.78rem;
  min-height: 3rem;
  padding: 0.72rem 1rem;
  border: 1px solid rgba(255, 255, 255, 0.14);
  border-radius: 1.05rem;
  background: #111111;
  color: #ffffff;
  box-shadow: 0 18px 40px rgba(17, 17, 17, 0.18);
}

.store-badge-icon {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 1.4rem;
  height: 1.4rem;
  flex-shrink: 0;
}

.store-badge-icon svg {
  width: 100%;
  height: 100%;
}

.store-badge-copy {
  display: grid;
  gap: 0.08rem;
  line-height: 1.1;
}

.store-badge-kicker {
  font-size: 0.66rem;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: rgba(255, 255, 255, 0.72);
}

.store-badge-title {
  font-size: 1rem;
  font-weight: 700;
  letter-spacing: -0.02em;
}

.button-secondary {
  border-color: var(--line-strong);
  background: rgba(255, 251, 247, 0.76);
  color: var(--ink);
}

.hero-facts div,
.summary-card,
.feature-card,
.gallery-card,
.company-card,
.audience-card,
.hero-panel,
.legal-meta-card,
.legal-toc,
.utility-card {
  border: 1px solid var(--line);
  border-radius: 1.75rem;
  background: var(--surface);
  box-shadow: var(--shadow-soft);
  backdrop-filter: blur(14px);
}

.hero-facts div {
  padding: 1rem 1.05rem;
}

.hero-facts dt,
.detail-list dt {
  font-size: 0.76rem;
  text-transform: uppercase;
  letter-spacing: 0.16em;
  color: var(--accent-deep);
  font-weight: 700;
}

.hero-facts dd,
.detail-list dd {
  margin: 0.45rem 0 0;
  line-height: 1.55;
  color: var(--ink);
}

.hero-panel {
  position: relative;
  padding: 1.4rem;
  background:
    radial-gradient(circle at top right, rgba(169, 132, 67, 0.18), transparent 16rem),
    linear-gradient(180deg, rgba(255, 251, 247, 0.96) 0%, rgba(246, 238, 228, 0.94) 100%);
  box-shadow: var(--shadow);
}

.hero-panel-screens {
  padding: 1.05rem;
}

.hero-panel-header {
  display: flex;
  justify-content: space-between;
  gap: 1rem;
  color: var(--muted);
  font-size: 0.9rem;
}

.hero-panel-screens .hero-panel-header {
  justify-content: flex-start;
  color: var(--accent-deep);
  font-size: 0.76rem;
  font-weight: 700;
  letter-spacing: 0.18em;
  text-transform: uppercase;
}

.device-stack {
  position: relative;
  min-height: 39rem;
  margin-top: 1.5rem;
}

.device-stack-screens {
  min-height: 38.5rem;
  margin-top: 1rem;
}

.device-frame {
  position: absolute;
  overflow: hidden;
  border: 1px solid rgba(36, 27, 18, 0.1);
  border-radius: 2.3rem;
  background: var(--surface-solid);
  box-shadow: 0 30px 70px rgba(22, 17, 11, 0.18);
}

.device-frame-shot img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.device-frame figcaption,
.gallery-card figcaption,
.placeholder-caption {
  padding: 0.95rem 1rem 1.05rem;
  font-size: 0.93rem;
  line-height: 1.65;
  color: var(--muted);
}

.device-placeholder {
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  padding: 1.2rem;
  background:
    radial-gradient(circle at top right, rgba(169, 132, 67, 0.24), transparent 12rem),
    linear-gradient(180deg, rgba(27, 22, 19, 0.96) 0%, rgba(45, 35, 28, 0.96) 100%);
}

.device-placeholder-body {
  display: grid;
  gap: 0.65rem;
}

.device-placeholder h3,
.gallery-card-placeholder h3 {
  color: #f8f2e8;
  font-size: 2rem;
}

.device-placeholder p,
.gallery-card-placeholder p {
  margin: 0;
  color: rgba(248, 242, 232, 0.78);
}

.placeholder-eyebrow {
  color: #d4b178;
  font-size: 0.74rem;
  font-weight: 700;
  letter-spacing: 0.18em;
  text-transform: uppercase;
}

.placeholder-rails {
  display: grid;
  gap: 0.7rem;
  margin-top: 1.2rem;
}

.placeholder-rails span {
  display: block;
  height: 0.7rem;
  border-radius: 999px;
  background: linear-gradient(90deg, rgba(212, 177, 120, 0.46), rgba(255, 255, 255, 0.08));
}

.placeholder-caption {
  padding: 1rem 0 0;
  color: rgba(248, 242, 232, 0.66);
}

.device-frame-main {
  left: 0;
  bottom: 0;
  width: min(15.6rem, 72%);
  height: 32rem;
}

.device-frame-offset {
  right: 0;
  top: 0;
  width: min(14.2rem, 66%);
  height: 29rem;
  transform: translateY(1rem) rotate(5deg);
}

.hero-grid-minimal .device-frame-main {
  width: min(16rem, 72%);
  height: 34.5rem;
}

.hero-grid-minimal .device-frame-offset {
  width: min(14rem, 64%);
  height: 30.4rem;
  transform: translateY(1.7rem) rotate(5deg);
}

.panel-footnote {
  margin: 1.2rem 0 0;
  font-size: 0.92rem;
  color: var(--muted);
}

.section-heading {
  max-width: 44rem;
  margin-bottom: 2.4rem;
}

.section-heading h2,
.audience-copy h2,
.legal-hero-copy h1 {
  margin-top: 0.7rem;
  font-size: clamp(2.3rem, 4.5vw, 3.8rem);
  line-height: 0.98;
}

.content-section-contrast {
  background:
    radial-gradient(circle at left top, rgba(169, 132, 67, 0.12), transparent 18rem),
    rgba(255, 251, 246, 0.7);
  border-top: 1px solid rgba(92, 74, 50, 0.06);
  border-bottom: 1px solid rgba(92, 74, 50, 0.06);
}

.feature-grid,
.summary-grid,
.gallery-grid,
.company-grid {
  display: grid;
  gap: 1.2rem;
}

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

.feature-card,
.summary-card,
.gallery-card,
.company-card {
  padding: 1.55rem;
}

.feature-card h3,
.summary-card h2,
.gallery-card h3,
.company-card h3,
.audience-card h3,
.legal-meta-card h2,
.legal-toc h2,
.utility-card h1 {
  margin-top: 0.75rem;
  font-size: 1.8rem;
  line-height: 1.02;
}

.feature-card p,
.summary-card p,
.gallery-card p,
.company-card p,
.company-card-footnote {
  margin: 0.75rem 0 0;
}

.audience-card {
  padding: 1.7rem;
  align-self: start;
}

.clean-list,
.legal-content ul {
  margin: 1rem 0 0;
  padding-left: 1.1rem;
  color: var(--muted);
}

.clean-list li,
.legal-content li {
  margin-top: 0.5rem;
}

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

.gallery-card-shot {
  display: flex;
  flex-direction: column;
  min-height: 100%;
  overflow: hidden;
  padding: 0;
}

.gallery-card-shot img {
  min-height: 24rem;
}

.gallery-card-note {
  background:
    linear-gradient(180deg, rgba(255, 251, 247, 0.95) 0%, rgba(245, 235, 222, 0.92) 100%);
}

.gallery-card-placeholder {
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  min-height: 24rem;
  background:
    radial-gradient(circle at top right, rgba(169, 132, 67, 0.22), transparent 12rem),
    linear-gradient(180deg, rgba(27, 22, 19, 0.96) 0%, rgba(45, 35, 28, 0.96) 100%);
  box-shadow: 0 26px 60px rgba(22, 17, 11, 0.16);
}

.gallery-card-placeholder .note-label {
  color: #d4b178;
}

.content-section-deep {
  background:
    radial-gradient(circle at top right, rgba(169, 132, 67, 0.18), transparent 18rem),
    linear-gradient(180deg, #1e1815 0%, var(--deep) 100%);
}

.section-heading-light h2,
.section-heading-light .section-intro,
.section-heading-light .section-label,
.content-section-deep .company-card,
.content-section-deep .company-card p,
.content-section-deep .company-card h3,
.content-section-deep .company-card a,
.content-section-deep .detail-list dd {
  color: #f7f1e7;
}

.content-section-deep .section-label {
  color: #caa76c;
}

.content-section-deep .section-intro {
  color: rgba(247, 241, 231, 0.74);
}

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

.company-card {
  background: rgba(255, 255, 255, 0.05);
  border-color: rgba(255, 255, 255, 0.12);
  box-shadow: none;
}

.detail-list {
  display: grid;
  gap: 1rem;
}

.content-section-deep .detail-list dt,
.content-section-deep .company-card-footnote,
.content-section-deep .company-card p {
  color: rgba(247, 241, 231, 0.74);
}

.contact-link {
  display: inline-block;
  margin-top: 1rem;
  color: #fff;
  font-size: 1.2rem;
  font-weight: 600;
}

.legal-link-list {
  display: grid;
  gap: 0.9rem;
  margin-top: 1rem;
}

.legal-link-list a {
  display: inline-flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  min-height: 3.2rem;
  padding: 0.9rem 1rem;
  border: 1px solid rgba(255, 255, 255, 0.16);
  border-radius: 1rem;
  background: rgba(255, 255, 255, 0.03);
}

.site-footer {
  border-top: 1px solid rgba(92, 74, 50, 0.08);
  background: rgba(251, 248, 242, 0.9);
}

.footer-brand {
  margin: 0;
  font-family: "Cormorant Garamond", Georgia, serif;
  font-size: 1.85rem;
}

.footer-meta {
  margin: 0.25rem 0 0;
  color: var(--muted);
  font-size: 0.84rem;
}

.legal-hero {
  padding: 4.8rem 0 3.2rem;
}

.legal-intro,
.legal-updated {
  margin: 1rem 0 0;
  color: var(--muted);
  font-size: 1rem;
  line-height: 1.8;
}

.legal-meta-card {
  padding: 1.55rem;
}

.legal-meta-card a,
.legal-content a,
.company-card a,
.footer-links a {
  text-decoration: underline;
  text-decoration-color: rgba(138, 106, 49, 0.3);
  text-underline-offset: 0.18rem;
}

.legal-content-section {
  padding-top: 1.2rem;
}

.legal-layout {
  display: grid;
  grid-template-columns: 17rem minmax(0, 1fr);
  gap: 1.5rem;
  align-items: start;
}

.legal-toc {
  position: sticky;
  top: 6.1rem;
  padding: 1.25rem;
}

.legal-toc nav {
  display: grid;
  gap: 0.75rem;
  margin-top: 1rem;
}

.legal-toc a {
  color: var(--muted);
  font-size: 0.95rem;
}

.legal-content {
  display: grid;
  gap: 1rem;
}

.legal-section {
  padding: 1.6rem;
  border: 1px solid var(--line);
  border-radius: 1.7rem;
  background: rgba(255, 250, 243, 0.86);
  box-shadow: var(--shadow-soft);
}

.legal-section h2 {
  font-size: 2rem;
}

.legal-section h3 {
  margin-top: 1.2rem;
  font-size: 1.45rem;
}

.legal-section p:first-of-type,
.legal-section ul:first-of-type {
  margin-top: 0.8rem;
}

.legal-notice {
  margin-top: 1rem;
  padding: 1rem 1.1rem;
  border: 1px solid rgba(138, 106, 49, 0.24);
  border-radius: 1.1rem;
  background: rgba(245, 232, 213, 0.58);
  color: var(--ink);
  line-height: 1.75;
}

.legal-address {
  display: inline-block;
  margin-top: 1rem;
  padding: 1rem 1.1rem;
  border-radius: 1.1rem;
  border: 1px solid var(--line);
  background: var(--surface-muted);
  color: var(--muted);
  font-style: normal;
  line-height: 1.75;
}

.utility-body {
  display: grid;
  place-items: center;
  min-height: 100vh;
}

.utility-shell {
  width: min(calc(100% - 2rem), 38rem);
  padding: 2rem 0;
}

.utility-card {
  padding: 1.7rem;
}

.utility-card .section-label {
  margin-top: 1.5rem;
}

.utility-card h1 {
  font-size: clamp(2.5rem, 8vw, 3.6rem);
}

.utility-actions {
  display: grid;
  gap: 0.8rem;
  margin-top: 1.7rem;
}

.utility-hint {
  margin-top: 1.2rem;
  font-size: 0.94rem;
}

.hidden {
  display: none;
}

.reveal,
[data-fade] {
  opacity: 0;
}

@media (prefers-reduced-motion: no-preference) {
  .reveal,
  [data-fade] {
    animation: fade-rise 720ms cubic-bezier(0.2, 0.7, 0.18, 1) forwards;
  }

  .delay-1 {
    animation-delay: 90ms;
  }

  .delay-2 {
    animation-delay: 180ms;
  }

  .delay-3 {
    animation-delay: 280ms;
  }

  .delay-4 {
    animation-delay: 380ms;
  }

  .store-badge {
    animation: badge-float 4.2s ease-in-out 1s infinite;
  }
}

@keyframes fade-rise {
  from {
    opacity: 0;
    transform: translateY(22px);
  }

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

@keyframes badge-float {
  0%,
  100% {
    transform: translateY(0);
  }

  50% {
    transform: translateY(-3px);
  }
}

@media (min-width: 821px) {
  .site-body::before {
    opacity: 0.24;
  }

  .site-header-inner {
    padding: 1.15rem 0;
  }

  .top-nav {
    gap: 1rem 1.75rem;
    font-size: 0.95rem;
  }

  .hero-section-minimal {
    padding: 5.6rem 0 4.9rem;
  }

  .hero-shell {
    width: min(calc(100% - 2rem), 1080px);
  }

  .hero-copy {
    max-width: 64rem;
    margin: 0 auto;
    padding: 4.6rem 4.8rem 4.15rem;
    border: 1px solid rgba(92, 74, 50, 0.12);
    border-radius: 2.3rem;
    background:
      radial-gradient(circle at top right, rgba(169, 132, 67, 0.16), transparent 23rem),
      linear-gradient(180deg, rgba(255, 252, 247, 0.9) 0%, rgba(249, 242, 233, 0.82) 100%);
    box-shadow: 0 34px 90px rgba(36, 27, 18, 0.08);
    overflow: hidden;
  }

  .hero-copy::after {
    content: "";
    position: absolute;
    inset: auto -8rem -8rem auto;
    width: 18rem;
    height: 18rem;
    border-radius: 50%;
    background: radial-gradient(circle, rgba(169, 132, 67, 0.18), rgba(169, 132, 67, 0));
    z-index: 0;
    pointer-events: none;
  }

  .hero-copy h1 {
    max-width: 10.5ch;
    font-size: clamp(4rem, 6vw, 5.55rem);
    line-height: 0.94;
    letter-spacing: -0.055em;
  }

  .hero-positioning-compact {
    max-width: 36rem;
    margin-top: 1.9rem;
    font-size: 1.24rem;
    line-height: 1.58;
  }

  .button-row-compact {
    margin-top: 2.2rem;
    gap: 1rem;
  }

  .button {
    width: auto;
    min-height: 3.3rem;
    padding: 0.98rem 1.65rem;
    font-size: 1rem;
  }

  .button-primary {
    min-width: 15rem;
  }

  .store-badge {
    width: auto;
    min-width: 15.5rem;
    justify-content: center;
    padding: 0.84rem 1.2rem;
    border-color: rgba(255, 255, 255, 0.18);
    box-shadow: 0 22px 52px rgba(17, 17, 17, 0.18);
  }

  .store-badge-copy {
    gap: 0.12rem;
  }

  .store-badge-kicker {
    font-size: 0.72rem;
  }

  .store-badge-title {
    font-size: 1.18rem;
  }

  .site-footer-inner {
    display: grid;
    grid-template-columns: minmax(16rem, 1fr) auto minmax(13rem, auto);
    align-items: start;
    gap: 1rem 2rem;
    padding: 1.45rem 0;
  }

  .footer-links {
    display: grid;
    grid-template-columns: repeat(2, max-content);
    justify-content: center;
    gap: 0.7rem 2rem;
    align-self: center;
  }

  .site-footer-inner > .footer-meta:last-child {
    margin-top: 0;
    max-width: 14rem;
    justify-self: end;
    text-align: right;
    line-height: 1.45;
  }
}

@media (max-width: 1120px) {
  .feature-grid,
  .gallery-grid,
  .company-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .hero-grid,
  .audience-grid,
  .legal-hero-grid,
  .legal-layout {
    grid-template-columns: 1fr;
  }

  .legal-toc {
    position: static;
  }
}

@media (max-width: 820px) {
  .site-header-inner,
  .site-footer-inner {
    align-items: flex-start;
    flex-direction: column;
  }

  .hero-section,
  .content-section,
  .legal-hero {
    padding: 4rem 0;
  }

  .hero-section-minimal {
    padding: 3.7rem 0 3.3rem;
  }

  .device-stack {
    min-height: 32rem;
  }

  .device-stack-screens {
    min-height: 34rem;
  }

  .device-frame-main {
    width: min(14rem, 72%);
    height: 28rem;
  }

  .device-frame-offset {
    width: min(12.6rem, 64%);
    height: 24.8rem;
  }
}

@media (max-width: 640px) {
  .shell {
    width: min(calc(100% - 1.25rem), var(--max-shell));
  }

  .feature-grid,
  .summary-grid,
  .gallery-grid,
  .company-grid {
    grid-template-columns: 1fr;
  }

  .button-row {
    flex-direction: column;
  }

  .button,
  .store-badge {
    width: 100%;
  }

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

  .brand-copy strong {
    font-size: 1.8rem;
  }

  .store-badge {
    justify-content: center;
  }

  .hero-copy h1 {
    max-width: none;
  }

  .device-stack {
    min-height: 28rem;
  }

  .device-frame-main {
    position: relative;
    width: 100%;
    height: auto;
    left: auto;
    bottom: auto;
  }

  .device-frame-main img {
    height: auto;
  }

  .device-frame-offset {
    display: none;
  }

  .gallery-card-shot img {
    min-height: auto;
  }

  .legal-section,
  .summary-card,
  .feature-card,
  .gallery-card,
  .company-card,
  .hero-panel,
  .audience-card,
  .utility-card {
    border-radius: 1.4rem;
  }
}
