@font-face {
  font-family: "Instrument Serif";
  src: url("./assets/fonts/InstrumentSerif-Regular.woff2") format("woff2");
  font-style: normal;
  font-weight: 400;
}

@font-face {
  font-family: "Instrument Serif";
  src: url("./assets/fonts/InstrumentSerif-Italic.woff2") format("woff2");
  font-style: italic;
  font-weight: 400;
}

@font-face {
  font-family: "Outfit";
  src: url("./assets/fonts/Outfit-Light.woff2") format("woff2");
  font-style: normal;
  font-weight: 300;
  font-display: swap;
}

@font-face {
  font-family: "Outfit";
  src: url("./assets/fonts/Outfit-Regular.woff2") format("woff2");
  font-style: normal;
  font-weight: 400;
  font-display: swap;
}

@font-face {
  font-family: "Outfit";
  src: url("./assets/fonts/Outfit-Medium.woff2") format("woff2");
  font-style: normal;
  font-weight: 500;
  font-display: swap;
}

@font-face {
  font-family: "Outfit";
  src: url("./assets/fonts/Outfit-SemiBold.woff2") format("woff2");
  font-style: normal;
  font-weight: 600;
  font-display: swap;
}

:root {
  --ink: #171413;
  --ink-mute: #6f6864;
  --paper: #fbfbfa;
  --paper-2: #eeece8;
  --dark: #f1efeb;
  --accent: #c9c0b3;
  --accent-2: #e6dfd7;
  --pink-strong: #9d8f84;
  --radius: 14px;
  --font-display: "Instrument Serif", Georgia, serif;
  --font-body: "Outfit", system-ui, sans-serif;
}

html {
  background: #ffffff;
}

body {
  font-family: "Outfit", system-ui, sans-serif;
  background:
    linear-gradient(180deg, #ffffff 0%, #ffffff 5rem, #fbfbfa 15rem, #eeece8 100%);
}

.serif {
  font-family: "Instrument Serif", Georgia, serif;
}

.oml * {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

.oml {
  font-family: var(--font-body);
  background: var(--paper);
  color: var(--ink);
}

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

.hero-copy h1 {
  font-family: var(--font-display);
  font-size: clamp(3.6rem, 4.6vw, 3.8rem);
  line-height: 1.02;
  letter-spacing: 0;
  font-weight: 400;
  margin-top: 0.5em;
  margin-bottom: 0.25em;
}

.hero-copy .eyebrow {
  font-family: var(--font-body);
  font-size: 0.86rem;
  font-weight: 600;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--accent);
  margin-top:2em;
}

.hero-copy .lede {
  font-family: var(--font-body);
  font-size: 1.05rem;
  line-height: 1.65;
  color: var(--ink-mute);
  max-width: 44ch;
}

.hero-points {
  list-style: none !important;
  padding: 0 !important;
  margin: 0 !important;
}

.hero-points li {
  font-size: 0.95rem;
  color: var(--ink-mute);
  padding: 0.3rem 0 0.3rem 1.4rem !important;
  margin: 0 !important;
  position: relative;
  line-height: 1.5;
}

.hero-points li::before {
  content: "" !important;
  position: absolute !important;
  left: 0 !important;
  top: 50% !important;
  transform: translateY(-50%) !important;
  width: 7px !important;
  height: 7px !important;
  border-radius: 50% !important;
  background: var(--accent) !important;
}

.hero-footnote {
  display: none;
}

.oml-section {
  padding: clamp(5rem, 10vw, 9rem) clamp(1.5rem, 6vw, 6rem);
}

.oml-label {
  display: inline-block;
  font-family: var(--font-body);
  font-size: 0.68rem;
  font-weight: 600;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--accent);
  margin-bottom: 1.2rem;
}

.oml-h2 {
  font-family: var(--font-display);
  font-size: clamp(2rem, 4.5vw, 3.4rem);
  font-weight: 400;
  line-height: 1.1;
  letter-spacing: 0;
}

.oml-body {
  font-family: var(--font-body);
  font-size: 1rem;
  line-height: 1.7;
  color: var(--ink-mute);
  max-width: 46ch;
}

.steps-section {
  background: linear-gradient(180deg, #fbfbfa 0%, #f1efeb 100%);
  color: var(--ink);
}

.steps-section .oml-label {
  color: var(--pink-strong);
}

.steps-section .oml-h2 {
  color: var(--ink);
}

.steps-section .oml-body {
  color: rgba(33, 29, 32, 0.56);
}

.steps-intro {
  max-width: 780px;
  margin: 0 auto 4rem;
  text-align: center;
}

.steps-intro .oml-h2 {
  margin-bottom: 1rem;
}

.steps-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 2px;
  max-width: 1100px;
  margin: 0 auto;
}

.step-stack {
  position: relative;
  width: 100%;
  max-width: 300px;
  height: 220px;
  margin: 0 auto 0.4rem;
}

.step-stack-card {
  position: absolute;
  width: 180px;
  border-radius: 16px;
  overflow: hidden;
  background: #2a2a26;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.35);
}

.step-stack-card img {
  width: 100%;
  height: auto;
  display: block;
}

.step-stack-card.share-sheet {
  left: 18px;
  transform: rotate(-8deg);
  z-index: 1;
}

.step-stack-card.add-button {
  right: 22px;
  top: 6px;
  transform: rotate(8deg);
  z-index: 2;
  background: #fff;
  box-shadow: 0 0 0 1px rgba(255, 255, 255, 0.08), 0 10px 30px rgba(0, 0, 0, 0.45);
}

.step-menu-wrap {
  border-radius: 16px;
  overflow: hidden;
  width: 100%;
  max-width: 260px;
  margin-inline: auto;
  background: #2a2a26;
  box-shadow: 0 8px 32px rgba(0, 0, 0, 0.35);
}

.step-menu-img {
  width: 100%;
  height: auto;
  display: block;
}

.step-card {
  background: rgba(255, 255, 255, 0.78);
  border: 1px solid rgba(23, 20, 19, 0.08);
  padding: 2.5rem 2rem;
  display: flex;
  flex-direction: column;
  gap: 1.2rem;
  border-radius: 0;
  transition: background 0.2s;
}

.step-card:hover {
  background: rgba(255, 255, 255, 0.92);
}

.step-num {
  font-family: var(--font-display);
  font-size: 3.5rem;
  color: var(--accent);
  line-height: 1;
}

.step-title {
  font-family: var(--font-display);
  font-size: 1.4rem;
  color: var(--ink);
  font-weight: 400;
}

.step-desc {
  font-family: var(--font-body);
  font-size: 0.9rem;
  color: rgba(33, 29, 32, 0.6);
  line-height: 1.65;
  flex: 1;
}

.step-screenshot-wrap {
  border-radius: 10px;
  overflow: hidden;
  background: #2a2a26;
  width: 100%;
  max-width: 260px;
  margin-inline: auto;
}

.step-screenshot {
  width: 100%;
  height: auto;
  display: block;
  border-radius: 10px;
}

.step-add-wrap {
  background: #fff;
  border-radius: 16px;
  overflow: hidden;
  width: 100%;
  max-width: 260px;
  margin-inline: auto;
  box-shadow: 0 0 0 1px rgba(255, 255, 255, 0.08), 0 8px 32px rgba(0, 0, 0, 0.4);
}

.step-add-img {
  width: 100%;
  height: auto;
  display: block;
}

.grid-section {
  background: var(--paper);
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: clamp(3rem, 6vw, 6rem);
  align-items: center;
}

.grid-section-copy {
  display: flex;
  flex-direction: column;
  gap: 1.2rem;
}

.grid-section-copy .oml-h2 {
  margin-bottom: 0.2rem;
}

.mock-grid-wrap {
  background: var(--paper-2);
  border-radius: var(--radius);
  padding: 1.2rem;
  box-shadow: 0 2px 40px rgba(0, 0, 0, 0.07);
}

.mock-grid-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 1rem;
  font-family: var(--font-body);
  font-size: 0.85rem;
}

.mock-grid-header strong {
  font-weight: 600;
  font-size: 1rem;
  color: var(--ink);
}

.mock-grid-header span {
  color: var(--ink-mute);
  font-size: 0.8rem;
}

.mock-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 6px;
}

.mock-grid-item {
  aspect-ratio: 1;
  border-radius: 8px;
  overflow: hidden;
  background: var(--paper);
}

.mock-grid-item img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

.mock-grid-item.mock-placeholder {
  background: linear-gradient(135deg, #e8e6df 0%, #d4d1c8 100%);
}

.share-section {
  background: linear-gradient(180deg, #fbfbfa 0%, #f1efeb 100%);
  color: var(--ink);
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: clamp(3rem, 6vw, 6rem);
  align-items: center;
}

.share-section .oml-label {
  color: var(--pink-strong);
}

.share-section .oml-h2 {
  color: var(--ink);
}

.share-section .oml-body {
  color: rgba(33, 29, 32, 0.6);
}

.share-section-copy {
  display: flex;
  flex-direction: column;
  gap: 1.2rem;
}

.share-pill-list {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 0.65rem;
  margin-top: 0.5rem;
}

.share-pill-list li {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  font-family: var(--font-body);
  font-size: 0.9rem;
  color: rgba(33, 29, 32, 0.68);
}

.share-pill-list li .dot {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: var(--pink-strong);
  flex-shrink: 0;
}

.mock-browser {
  background: #1e1e1b;
  border-radius: var(--radius);
  overflow: hidden;
  box-shadow: 0 8px 60px rgba(0, 0, 0, 0.4);
}

.mock-browser-bar {
  background: #2a2a26;
  padding: 0.7rem 1rem;
  display: flex;
  align-items: center;
  gap: 0.75rem;
}

.mock-browser-dots {
  display: flex;
  gap: 5px;
}

.mock-browser-dots span {
  width: 10px;
  height: 10px;
  border-radius: 50%;
  background: #444;
}

.mock-browser-url {
  flex: 1;
  background: #333;
  border-radius: 6px;
  padding: 0.3rem 0.8rem;
  font-family: var(--font-body);
  font-size: 0.72rem;
  color: rgba(255, 255, 255, 0.4);
}

.mock-browser-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 4px;
  padding: 0.75rem;
}

.mock-browser-grid article {
  aspect-ratio: 1;
  border-radius: 6px;
  overflow: hidden;
  background: #333;
}

.mock-browser-grid article img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

.feature-row {
  background: var(--paper-2);
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1px;
}

.feature-row-item {
  background: var(--paper-2);
  padding: 2.5rem 2rem;
}

.feature-row-icon {
  font-size: 1.6rem;
  margin-bottom: 1rem;
  display: block;
}

.feature-row-title {
  font-family: var(--font-display);
  font-size: 1.25rem;
  font-weight: 400;
  color: var(--ink);
  margin-bottom: 0.5rem;
}

.feature-row-desc {
  font-family: var(--font-body);
  font-size: 0.88rem;
  color: var(--ink-mute);
  line-height: 1.6;
}

.oml-finale {
  background: #f1efeb;
  color: var(--ink);
  text-align: center;
  padding: clamp(5rem, 10vw, 9rem) clamp(1.5rem, 6vw, 6rem);
}

.oml-finale .oml-label {
  color: var(--pink-strong);
}

.oml-finale .oml-h2 {
  color: var(--ink);
  max-width: 16ch;
  margin: 0 auto 1.2rem;
}

.oml-finale .oml-body {
  color: rgba(33, 29, 32, 0.6);
  max-width: 42ch;
  margin: 0 auto 2.5rem;
}

.oml-finale-actions {
  display: flex;
  justify-content: center;
  gap: 1rem;
  flex-wrap: wrap;
}

.btn-primary {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  background: var(--accent);
  color: var(--ink);
  font-family: var(--font-body);
  font-size: 0.9rem;
  font-weight: 600;
  padding: 0.85rem 1.8rem;
  border-radius: 100px;
  border: none;
  cursor: pointer;
  transition: transform 0.15s, box-shadow 0.15s;
  text-decoration: none;
  letter-spacing: 0.01em;
}

.btn-primary:hover {
  transform: translateY(-1px);
  box-shadow: 0 6px 20px rgba(201, 192, 179, 0.34);
}

.btn-ghost {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  background: transparent;
  color: rgba(33, 29, 32, 0.64);
  font-family: var(--font-body);
  font-size: 0.9rem;
  font-weight: 500;
  padding: 0.85rem 1.8rem;
  border-radius: 100px;
  border: 1px solid rgba(33, 29, 32, 0.14);
  cursor: pointer;
  transition: border-color 0.15s, color 0.15s;
  text-decoration: none;
}

.btn-ghost:hover {
  border-color: rgba(33, 29, 32, 0.32);
  color: var(--ink);
}

@keyframes oml-fadein {
  from {
    opacity: 0;
    transform: translateY(20px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

.oml-animate {
  opacity: 0;
  animation: oml-fadein 0.6s ease forwards;
}

.oml-animate[data-delay="1"] {
  animation-delay: 0.1s;
}

.oml-animate[data-delay="2"] {
  animation-delay: 0.2s;
}

.oml-animate[data-delay="3"] {
  animation-delay: 0.3s;
}

.oml-animate[data-delay="4"] {
  animation-delay: 0.4s;
}

.oml-animate[data-delay="5"] {
  animation-delay: 0.5s;
}

.oml-reveal,
.desktop-reveal {
  opacity: 0;
  transform: translateY(28px);
  transition: opacity 0.65s ease, transform 0.65s ease;
}

.oml-reveal.visible,
.desktop-reveal.visible {
  opacity: 1;
  transform: none;
}

.oml-legal-footer {
  background: var(--dark);
  border-top: 1px solid rgba(33, 29, 32, 0.08);
  padding: 1.2rem clamp(1.5rem, 6vw, 6rem) 2rem;
}

.oml-legal-footer-inner {
  max-width: 1100px;
  margin: 0 auto;
  display: flex;
  justify-content: space-between;
  gap: 1rem;
  flex-wrap: wrap;
  color: rgba(33, 29, 32, 0.58);
  font-family: var(--font-body);
  font-size: 0.88rem;
}

.oml-legal-footer a {
  color: rgba(33, 29, 32, 0.72);
}

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

.desktop-experience {
  display: none;
}

.desktop-floating-store-link {
  display: none;
}

.mobile-experience {
  display: block;
}

.button.is-disabled,
.btn-primary.is-disabled {
  opacity: 0.42;
  pointer-events: none;
}

.button-primary {
  background: var(--accent);
  color: var(--ink);
  box-shadow: 0 10px 28px rgba(201, 192, 179, 0.24);
}

.button-primary:hover,
.button-primary:focus-visible {
  box-shadow: 0 14px 34px rgba(201, 192, 179, 0.34);
}

.button-secondary {
  border-color: rgba(21, 25, 24, 0.16);
  background: rgba(255, 255, 255, 0.88);
  color: var(--ink);
}

@media (max-width: 800px) {
  .grid-section,
  .share-section {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 979px) {
  .hero-copy .eyebrow {
    font-size: clamp(0.98rem, 3.8vw, 1.08rem);
    line-height: 1.35;
  }

  .hero-copy .lede {
    font-size: clamp(1.14rem, 4.4vw, 1.28rem);
    line-height: 1.62;
    max-width: 34ch;
  }

  .hero-points {
    gap: 1rem;
    max-width: min(32rem, calc(100vw - 2.5rem));
    margin-top: 1.65rem !important;
  }

  .hero-points li {
    font-size: clamp(1.05rem, 4.1vw, 1.18rem);
    line-height: 1.55;
    padding-left: 1.55rem !important;
  }

  .oml-section {
    padding: clamp(4.75rem, 16vw, 6.25rem) clamp(1.25rem, 5vw, 2rem);
  }

  .oml-label {
    font-size: clamp(0.8rem, 3.3vw, 0.95rem);
    line-height: 1.35;
    margin-bottom: 1rem;
  }

  .oml-h2 {
    font-size: clamp(2.45rem, 11.2vw, 3.1rem);
    line-height: 1.05;
  }

  .oml-body {
    font-size: clamp(1.1rem, 4.3vw, 1.24rem);
    line-height: 1.65;
  }

  .steps-intro {
    margin-bottom: 2.75rem;
  }

  .step-card {
    padding: 2.15rem 1.35rem 2.25rem;
    gap: 1.1rem;
  }

  .step-num {
    font-size: clamp(4rem, 18vw, 5.25rem);
  }

  .step-title {
    font-size: clamp(1.75rem, 7vw, 2.25rem);
    line-height: 1.08;
  }

  .step-desc {
    font-size: clamp(1.06rem, 4.15vw, 1.2rem);
    line-height: 1.62;
  }

  .feature-row-item {
    padding: 2.25rem 1.5rem;
  }

  .feature-row-title {
    font-size: clamp(1.65rem, 6.6vw, 2rem);
    line-height: 1.1;
  }

  .feature-row-desc,
  .share-pill-list li {
    font-size: clamp(1.03rem, 4vw, 1.15rem);
    line-height: 1.6;
  }

  .mock-grid-header {
    font-size: 0.98rem;
  }

  .mock-grid-header strong {
    font-size: 1.12rem;
  }

  .mock-grid-header span {
    font-size: 0.94rem;
  }

  .btn-primary,
  .btn-ghost {
    min-height: 3.25rem;
    font-size: 1rem;
  }
}

@media (max-width: 700px) {
  .steps-grid,
  .feature-row {
    grid-template-columns: 1fr;
    gap: 1px;
  }

  .step-stack {
    max-width: 280px;
    height: 80px;
  }

  .step-stack-card {
    width: 168px;
  }

  .step-stack-card.share-sheet {
    left: 10px;
  }

  .step-stack-card.add-button {
    right: -20px;
  }
}

@media (min-width: 980px) {
  body {
    background: #ffffff;
  }

  .mobile-experience {
    display: none;
  }

  .desktop-experience {
    display: block;
    min-height: 100vh;
    color: var(--ink);
    background: #fff;
  }

  .mobile-floating-store-link {
    display: none;
  }

  .desktop-topbar {
    position: sticky;
    top: 0;
    z-index: 20;
    display: grid;
    grid-template-columns: minmax(10rem, 1fr) auto minmax(14rem, 1fr);
    align-items: center;
    gap: 1.5rem;
    width: 100%;
    margin: 0;
    padding: 1.35rem max(1.5rem, calc((100vw - 1500px) / 2)) 1rem;
    background: rgba(255, 255, 255, 0.92);
    border-bottom: 1px solid rgba(20, 20, 18, 0.14);
    backdrop-filter: blur(18px);
  }

  .desktop-brand {
    display: inline-flex;
    align-items: center;
    width: max-content;
  }

  .desktop-brand img {
    width: clamp(10rem, 13vw, 13.75rem);
  }

  .desktop-nav,
  .desktop-auth {
    display: flex;
    align-items: center;
    gap: clamp(1.25rem, 2.4vw, 2.75rem);
    color: rgba(20, 20, 18, 0.68);
    font-size: clamp(0.82rem, 0.95vw, 0.95rem);
    white-space: nowrap;
  }

  .desktop-nav {
    justify-content: center;
  }

  .desktop-auth {
    justify-content: flex-end;
  }

  .desktop-nav a,
  .desktop-auth a,
  .desktop-auth span {
    min-height: 2.35rem;
    display: inline-flex;
    align-items: center;
  }

  .desktop-register {
    padding: 0 0.9rem;
    border: 1px solid rgba(20, 20, 18, 0.22);
    border-radius: 999px;
    color: var(--ink);
  }

  .desktop-hero {
    width: min(1500px, calc(100vw - 3rem));
    min-height: min(760px, calc(100vh - 5rem));
    --desktop-phone-fit-width: min(20vw, calc((100svh - 14.5rem) / 2.18));
    margin: 0 auto;
    display: grid;
    grid-template-columns: minmax(17rem, 0.95fr) minmax(17rem, 0.8fr) minmax(17rem, 0.95fr);
    align-items: start;
    gap: clamp(1.4rem, 3vw, 4rem);
    padding: 0 0 clamp(3rem, 5vw, 5rem);
  }

  .desktop-copy {
    align-self: start;
    max-width: 30rem;
    padding-top: clamp(3.7rem, 8.6vh, 6.1rem);
  }

  .desktop-copy .eyebrow {
    color: var(--accent);
    font-family: var(--font-body);
    font-size: clamp(0.92rem, 1.05vw, 1.08rem);
    font-weight: 600;
    letter-spacing: 0.16em;
    line-height: 1.2;
    margin: 0 0 2.1rem;
  }

  .desktop-copy h1 {
    margin: 0;
    font-family: var(--font-display);
    font-size: clamp(2.85rem, 4.25vw, 4.95rem);
    font-style: italic;
    font-weight: 400;
    line-height: 0.99;
    letter-spacing: 0;
  }

  .desktop-copy .lede {
    max-width: 38rem;
    margin: 2.45rem 0 0;
    font-family: var(--font-body);
    font-size: clamp(1.02rem, 1.1vw, 1.2rem);
    line-height: 1.65;
    color: var(--ink-mute);
  }

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

  .desktop-points li {
    position: relative;
    padding-left: 1.35rem;
    color: var(--ink-mute);
    font-size: 0.95rem;
    line-height: 1.45;
  }

  .desktop-points li::before {
    content: "";
    position: absolute;
    left: 0;
    top: 0.55rem;
    width: 0.46rem;
    height: 0.46rem;
    border-radius: 50%;
    background: var(--accent);
  }

  .desktop-phone-column {
    display: grid;
    justify-items: center;
    align-self: start;
    transform: translateY(clamp(-4.4rem, -7vh, -2.6rem));
  }

  .desktop-phone-stage {
    width: clamp(13rem, var(--desktop-phone-fit-width), 18rem);
  }

  .desktop-phone-stage .device-shell {
    padding: 0.38rem;
    border-radius: 2.15rem;
    box-shadow: 0 18px 54px rgba(11, 11, 11, 0.13);
  }

  .desktop-phone-stage .device-screen {
    border-radius: 1.78rem;
  }

  .desktop-phone-stage .device-hardware {
    top: 0.58rem;
    width: 6.4rem;
    height: 0.72rem;
  }

  .desktop-phone-stage .device-speaker {
    width: 3.4rem;
    height: 0.28rem;
  }

  .desktop-phone-stage .device-camera {
    width: 0.28rem;
    height: 0.28rem;
  }

  .desktop-phone-stage .device-caption {
    margin-top: clamp(0.35rem, 0.8vh, 0.8rem);
    font-size: 0.86rem;
  }

  .desktop-rail {
    display: grid;
    gap: 1rem;
    align-self: start;
    padding-top: clamp(4.2rem, 9.2vh, 6.5rem);
  }

  .desktop-action-card {
    display: grid;
    gap: 1rem;
    padding: 1rem;
    border: 1px solid rgba(20, 20, 18, 0.12);
    border-radius: 8px;
    background: #fff;
    box-shadow: 0 18px 58px rgba(11, 11, 11, 0.07);
  }

  .desktop-action-card h2 {
    margin: 0;
    font-family: var(--font-display);
    font-size: clamp(1.5rem, 1.9vw, 2rem);
    font-weight: 400;
    line-height: 1.05;
    letter-spacing: 0;
  }

  .desktop-action-card p {
    margin: 0.45rem 0 0;
    color: var(--ink-mute);
    font-size: 0.92rem;
    line-height: 1.55;
  }

  .desktop-card-label {
    margin: 0 !important;
    color: var(--accent) !important;
    font-size: 0.68rem !important;
    font-weight: 700;
    letter-spacing: 0.13em;
    line-height: 1.2 !important;
    text-transform: uppercase;
  }

  .desktop-action-card .button {
    width: 100%;
    min-width: 0;
    max-width: 18rem;
    white-space: normal;
  }

  .desktop-web-card {
    grid-template-columns: 7.5rem minmax(0, 1fr);
    align-items: center;
  }

  .desktop-web-card img {
    grid-row: span 2;
    width: 100%;
    aspect-ratio: 0.82;
    object-fit: cover;
    border-radius: 6px;
    filter: brightness(0.93);
  }

  .desktop-web-card .button {
    grid-column: 2;
  }

  .desktop-how,
  .desktop-board-section,
  .desktop-share-section,
  .desktop-finale {
    padding: clamp(4rem, 6vw, 7rem) max(1.5rem, calc((100vw - 1300px) / 2));
  }

  .desktop-how {
    background: linear-gradient(180deg, #fbfbfa 0%, #f1efeb 100%);
    color: var(--ink);
  }

  .desktop-section-heading {
    max-width: 800px;
    margin: 0 auto 3.5rem;
    text-align: center;
  }

  .desktop-how .oml-label,
  .desktop-share-section .oml-label,
  .desktop-finale .oml-label {
    color: var(--pink-strong);
  }

  .desktop-how .oml-h2,
  .desktop-share-section .oml-h2,
  .desktop-finale .oml-h2 {
    color: var(--ink);
  }

  .desktop-step-grid {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 1px;
    max-width: 1180px;
    margin: 0 auto;
  }

  .desktop-step-card {
    background: rgba(255, 255, 255, 0.78);
    border: 1px solid rgba(23, 20, 19, 0.08);
    padding: clamp(1.5rem, 2.5vw, 2.5rem);
    display: flex;
    flex-direction: column;
    gap: 1.1rem;
    min-height: 33rem;
  }

  .desktop-step-card .step-desc strong {
    color: var(--ink);
  }

  .desktop-step-card .step-stack {
    
    height: 190px;
  }

  .desktop-step-card .step-stack-card {
    width: 158px;
  }

  .desktop-mini-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 0.5rem;
    max-width: 260px;
  }

  .desktop-mini-grid img {
    width: 100%;
    aspect-ratio: 1;
    object-fit: cover;
    border-radius: 10px;
  }

  .desktop-feature-row {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 1px;
    background: var(--paper-2);
  }

  .desktop-feature-row .feature-row-item {
    padding: clamp(2rem, 3vw, 3.4rem);
  }

  .desktop-board-section {
    display: grid;
    grid-template-columns: minmax(18rem, 0.78fr) minmax(28rem, 1.22fr);
    align-items: center;
    gap: clamp(2.5rem, 5vw, 5rem);
    background: var(--paper);
  }

  .desktop-board-copy {
    display: grid;
    gap: 1rem;
  }

  .desktop-board-media {
    padding: clamp(0.8rem, 1.4vw, 1.2rem);
    border-radius: 8px;
    background: var(--paper-2);
    box-shadow: 0 22px 70px rgba(11, 11, 11, 0.09);
  }

  .desktop-board-media img {
    width: 100%;
    max-height: 680px;
    object-fit: cover;
    object-position: top center;
    border-radius: 6px;
  }

  .desktop-share-section {
    display: grid;
    grid-template-columns: minmax(26rem, 1.15fr) minmax(18rem, 0.85fr);
    align-items: center;
    gap: clamp(2.5rem, 5vw, 5rem);
    background: linear-gradient(180deg, #fbfbfa 0%, #f1efeb 100%);
    color: var(--ink);
  }

  .desktop-share-section .mock-browser img {
    width: 100%;
    filter: brightness(0.9);
  }

  .desktop-share-section .oml-body {
    color: rgba(33, 29, 32, 0.6);
  }

  .desktop-finale {
    display: grid;
    grid-template-columns: minmax(0, 1fr) auto;
    align-items: end;
    gap: 2rem;
    background: #f1efeb;
    color: var(--ink);
    border-top: 1px solid rgba(33, 29, 32, 0.08);
  }

  .desktop-finale .oml-body {
    color: rgba(33, 29, 32, 0.6);
    margin-top: 1rem;
  }

  .desktop-finale .oml-finale-actions {
    justify-content: flex-end;
  }

  .floating-store-link.desktop-floating-store-link.floating-qr-card {
    display: grid;
    justify-items: center;
    gap: 0.55rem;
    right: 1.25rem;
    bottom: 1.25rem;
    min-width: 0;
    min-height: 0;
    width: 9.1rem;
    padding: 0.8rem 0.7rem 0.9rem;
    border: 1px solid rgba(20, 20, 18, 0.1);
    border-radius: 8px;
    background: rgba(255, 255, 255, 0.96);
    color: #141412;
    font-family: var(--font-body);
    font-size: 1rem;
    font-weight: 700;
    line-height: 1.12;
    text-align: center;
    box-shadow: 0 12px 34px rgba(20, 20, 18, 0.16);
    backdrop-filter: blur(12px);
  }

  .floating-store-link.desktop-floating-store-link.floating-qr-card.is-disabled {
    opacity: 1;
    pointer-events: none;
  }

  .floating-qr-code {
    width: 6.8rem;
    height: 6.8rem;
    border-radius: 4px;
  }

  .floating-store-link.desktop-floating-store-link.floating-qr-card:hover,
  .floating-store-link.desktop-floating-store-link.floating-qr-card:focus-visible {
    transform: translateY(-1px);
    box-shadow: 0 16px 40px rgba(20, 20, 18, 0.2);
  }
}

@media (min-width: 980px) and (max-width: 1120px) {
  .desktop-topbar {
    grid-template-columns: 1fr auto;
    gap: 1rem;
  }

  .desktop-nav {
    order: 3;
    grid-column: 1 / -1;
  }

  .desktop-hero {
    grid-template-columns: minmax(15rem, 0.92fr) minmax(15rem, 0.82fr) minmax(15rem, 0.9fr);
    gap: 1.25rem;
  }

  .desktop-copy {
    padding-top: clamp(3.2rem, 7.4vh, 5rem);
  }

  .desktop-rail {
    padding-top: clamp(3.6rem, 8vh, 5.4rem);
  }

  .desktop-copy h1 {
    font-size: clamp(2.55rem, 4vw, 3.8rem);
  }

  .desktop-phone-stage {
    width: clamp(12rem, min(19vw, calc((100svh - 14rem) / 2.18)), 15.5rem);
  }

}

@media (prefers-reduced-motion: reduce) {
  .desktop-reveal {
    transition-duration: 0.01ms !important;
  }
}

