.mobile-landing-page {
  overflow-x: hidden;
}

.mobile-landing-page .nav-inner {
  justify-content: space-between;
}

.mobile-page-nav {
  display: flex;
  align-items: center;
  gap: 18px;
  margin-left: auto;
  font-size: 13px;
  font-weight: 650;
  color: var(--ink-2);
}

.mobile-page-nav a:hover,
.mobile-page-nav a:focus-visible {
  color: var(--accent);
}

.mobile-lang-switch {
  display: flex;
  gap: 4px;
  margin-left: 2px;
}

.mobile-lang-switch a {
  min-width: 30px;
  padding: 5px 6px;
  border-radius: 8px;
  text-align: center;
  font-size: 11px;
  letter-spacing: 0.04em;
}

.mobile-lang-switch a[aria-current="page"] {
  background: var(--ink);
  color: var(--bg);
}

.mobile-hero {
  position: relative;
  min-height: 760px;
  padding: 88px 0 64px;
  overflow: hidden;
  border-bottom: 1px solid var(--line);
  background:
    radial-gradient(circle at 78% 14%, color-mix(in oklab, var(--accent) 20%, transparent), transparent 34%),
    linear-gradient(180deg, var(--bg), color-mix(in oklab, var(--bg-2) 74%, var(--bg)));
}

.mobile-hero::after {
  content: "";
  position: absolute;
  inset: auto -12% -45% 36%;
  height: 680px;
  border-radius: 50%;
  background: color-mix(in oklab, var(--accent) 8%, transparent);
  filter: blur(30px);
  pointer-events: none;
}

.mobile-hero-grid {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: minmax(0, 0.9fr) minmax(480px, 1.1fr);
  align-items: center;
  gap: 42px;
}

.mobile-launch-pill,
.mobile-section-label {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  margin: 0 0 18px;
  color: var(--accent);
  font-size: 12px;
  font-weight: 800;
  letter-spacing: 0.13em;
  text-transform: uppercase;
}

.mobile-launch-pill {
  padding: 7px 11px;
  border: 1px solid color-mix(in oklab, var(--accent) 32%, var(--line));
  border-radius: 999px;
  background: color-mix(in oklab, var(--paper) 84%, transparent);
  box-shadow: 0 8px 30px rgba(82, 48, 30, 0.08);
}

.mobile-launch-pill::before {
  content: "";
  width: 7px;
  height: 7px;
  border-radius: 50%;
  background: #41a35d;
  box-shadow: 0 0 0 4px rgba(65, 163, 93, 0.13);
}

.mobile-hero h1 {
  max-width: 650px;
  margin: 0;
  font-size: clamp(48px, 6.3vw, 84px);
  line-height: 0.99;
  letter-spacing: -0.065em;
}

.mobile-hero h1 em,
.mobile-section-head h2 em {
  color: var(--accent);
  font-style: normal;
}

.mobile-hero-lede {
  max-width: 590px;
  margin: 28px 0 0;
  color: var(--ink-2);
  font-size: clamp(17px, 2vw, 21px);
  line-height: 1.68;
  letter-spacing: -0.02em;
}

.mobile-store-actions {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 10px;
  margin-top: 30px;
}

.mobile-store-button {
  display: inline-flex;
  align-items: center;
  gap: 11px;
  min-height: 54px;
  padding: 10px 18px;
  border: 1px solid var(--ink);
  border-radius: 15px;
  background: var(--ink);
  color: var(--bg);
  font-size: 14px;
  font-weight: 760;
  box-shadow: 0 14px 32px rgba(29, 26, 22, 0.18);
  transition: transform 160ms ease, box-shadow 160ms ease;
}

.mobile-store-button:hover,
.mobile-store-button:focus-visible {
  transform: translateY(-2px);
  box-shadow: 0 18px 40px rgba(29, 26, 22, 0.24);
}

.mobile-store-button svg {
  flex: 0 0 auto;
}

.mobile-store-button-copy {
  display: grid;
  line-height: 1.08;
}

.mobile-store-button-copy small {
  margin-bottom: 3px;
  font-size: 9px;
  font-weight: 650;
  letter-spacing: 0.08em;
  opacity: 0.76;
}

.mobile-android-state {
  display: inline-flex;
  align-items: center;
  gap: 9px;
  min-height: 54px;
  padding: 11px 16px;
  border: 1px solid var(--line);
  border-radius: 15px;
  background: color-mix(in oklab, var(--paper) 78%, transparent);
  color: var(--ink-2);
  font-size: 13px;
  font-weight: 700;
}

.mobile-android-state span {
  display: block;
  color: var(--ink-3);
  font-size: 10px;
  font-weight: 600;
}

.mobile-hero-note {
  margin: 15px 0 0;
  color: var(--ink-3);
  font-size: 12px;
}

.mobile-phone-stage {
  position: relative;
  min-height: 610px;
}

.mobile-phone-card {
  position: absolute;
  width: min(286px, 36vw);
  overflow: hidden;
  border: 8px solid #171411;
  border-radius: 42px;
  background: #171411;
  box-shadow: 0 42px 82px rgba(47, 31, 20, 0.27);
  transform-origin: 50% 100%;
}

.mobile-phone-card img {
  width: 100%;
  height: auto;
  border-radius: 34px;
}

.mobile-phone-card.is-primary {
  z-index: 3;
  right: 20%;
  bottom: -156px;
}

.mobile-phone-card.is-left {
  z-index: 1;
  left: 0;
  bottom: -205px;
  transform: rotate(-8deg) scale(0.88);
  opacity: 0.88;
}

.mobile-phone-card.is-right {
  z-index: 2;
  right: -2%;
  bottom: -188px;
  transform: rotate(8deg) scale(0.92);
  opacity: 0.94;
}

.mobile-status-strip {
  position: relative;
  z-index: 4;
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  margin: -1px auto 0;
  border-bottom: 1px solid var(--line);
  background: var(--paper);
}

.mobile-status-item {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 12px;
  min-height: 88px;
  padding: 18px;
  border-right: 1px solid var(--line);
}

.mobile-status-item:last-child {
  border-right: 0;
}

.mobile-status-item strong,
.mobile-status-item span {
  display: block;
}

.mobile-status-item strong {
  font-size: 14px;
}

.mobile-status-item span {
  color: var(--ink-3);
  font-size: 11px;
}

.mobile-status-icon {
  display: grid;
  place-items: center;
  width: 38px;
  height: 38px;
  border-radius: 12px;
  background: var(--bg-2);
  color: var(--accent);
  font-weight: 850;
}

.mobile-page-section {
  padding: 108px 0;
}

.mobile-page-section.is-tinted {
  border-block: 1px solid var(--line);
  background: color-mix(in oklab, var(--bg-2) 66%, var(--bg));
}

.mobile-section-head {
  max-width: 770px;
  margin-bottom: 44px;
}

.mobile-section-head h2 {
  margin: 0;
  font-size: clamp(38px, 5vw, 64px);
  line-height: 1.08;
  letter-spacing: -0.055em;
}

.mobile-section-head > p:last-child {
  margin: 18px 0 0;
  color: var(--ink-2);
  font-size: 17px;
  line-height: 1.7;
}

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

.mobile-feature-card {
  position: relative;
  min-height: 430px;
  padding: 30px;
  overflow: hidden;
  border: 1px solid var(--line);
  border-radius: 28px;
  background: var(--paper);
  box-shadow: 0 18px 55px rgba(80, 60, 40, 0.08);
}

.mobile-feature-card.is-wide {
  grid-column: 1 / -1;
  display: grid;
  grid-template-columns: minmax(0, 0.8fr) minmax(420px, 1.2fr);
  align-items: center;
  gap: 28px;
  min-height: 470px;
}

.mobile-feature-number {
  color: var(--accent);
  font-size: 11px;
  font-weight: 850;
  letter-spacing: 0.14em;
}

.mobile-feature-card h3 {
  margin: 8px 0 0;
  font-size: clamp(26px, 3vw, 38px);
  line-height: 1.15;
  letter-spacing: -0.045em;
}

.mobile-feature-card p {
  max-width: 520px;
  margin: 13px 0 0;
  color: var(--ink-2);
  font-size: 14px;
}

.mobile-mini-phone {
  position: absolute;
  right: 34px;
  bottom: -220px;
  width: 250px;
  padding: 7px;
  border-radius: 36px;
  background: #16130f;
  box-shadow: 0 30px 60px rgba(42, 31, 24, 0.24);
}

.mobile-mini-phone img {
  height: auto;
  border-radius: 29px;
}

.mobile-widget-board {
  display: grid;
  grid-template-columns: 1.2fr 0.8fr;
  gap: 12px;
  margin-top: 38px;
}

.mobile-widget-card {
  min-height: 178px;
  padding: 20px;
  border: 1px solid rgba(29, 26, 22, 0.08);
  border-radius: 24px;
  background: #f6f0e4;
  color: #211d18;
  box-shadow: 0 18px 35px rgba(44, 33, 22, 0.12);
}

.mobile-widget-card.is-small {
  display: grid;
  place-items: center;
  text-align: center;
}

.mobile-widget-card small,
.mobile-widget-card strong,
.mobile-widget-card span {
  display: block;
}

.mobile-widget-card small {
  color: #c96442;
  font-size: 10px;
  font-weight: 850;
  letter-spacing: 0.08em;
}

.mobile-widget-card strong {
  margin-top: 6px;
  font-size: 25px;
  line-height: 1;
}

.mobile-widget-provider {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-top: 19px;
  font-size: 12px;
  font-weight: 750;
}

.mobile-widget-meter {
  height: 6px;
  margin-top: 7px;
  overflow: hidden;
  border-radius: 999px;
  background: #e3d9c7;
}

.mobile-widget-meter span {
  width: 48%;
  height: 100%;
  border-radius: inherit;
  background: #e2a915;
}

.mobile-widget-mascot {
  width: 84px;
  height: 84px;
  object-fit: contain;
  image-rendering: pixelated;
}

.mobile-lock-stage {
  position: relative;
  width: min(420px, 100%);
  height: 350px;
  margin: 26px auto 0;
  padding: 38px 20px 20px;
  overflow: hidden;
  border: 7px solid #171411;
  border-bottom: 0;
  border-radius: 46px 46px 0 0;
  background:
    radial-gradient(circle at 20% 20%, rgba(238, 160, 104, 0.55), transparent 32%),
    linear-gradient(145deg, #3b2f41, #181519 58%, #5b3727);
  color: white;
  box-shadow: 0 28px 55px rgba(42, 27, 18, 0.3);
}

.mobile-island {
  display: flex;
  align-items: center;
  justify-content: space-between;
  width: 208px;
  min-height: 48px;
  margin: 0 auto;
  padding: 0 15px;
  border-radius: 999px;
  background: #050505;
  font-size: 11px;
  font-weight: 750;
}

.mobile-island strong {
  color: #e99068;
  font-size: 14px;
}

.mobile-lock-time {
  margin-top: 24px;
  text-align: center;
  font-size: 44px;
  font-weight: 300;
  letter-spacing: -0.05em;
}

.mobile-live-activity {
  position: absolute;
  right: 18px;
  bottom: 24px;
  left: 18px;
  padding: 16px;
  border: 1px solid rgba(255, 255, 255, 0.16);
  border-radius: 23px;
  background: rgba(17, 14, 13, 0.82);
  backdrop-filter: blur(18px);
}

.mobile-live-row {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
}

.mobile-live-row strong {
  font-size: 14px;
}

.mobile-live-row span {
  color: #efb11d;
  font-size: 20px;
  font-weight: 850;
}

.mobile-live-activity p {
  margin: 5px 0 0;
  color: rgba(255, 255, 255, 0.7);
  font-size: 11px;
}

.mobile-watch-stage {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 18px;
  padding: 20px 0 0;
}

.mobile-watch {
  position: relative;
  width: 170px;
  padding: 12px;
  border: 8px solid #26221d;
  border-radius: 52px;
  background: #080706;
  box-shadow: 0 22px 46px rgba(39, 29, 20, 0.28);
}

.mobile-watch::after {
  content: "";
  position: absolute;
  top: 54px;
  right: -16px;
  width: 8px;
  height: 28px;
  border-radius: 0 6px 6px 0;
  background: #3e3830;
}

.mobile-watch img {
  width: 100%;
  height: auto;
  border-radius: 36px;
}

.mobile-notification-stage {
  display: grid;
  gap: 10px;
  margin-top: 38px;
}

.mobile-notification {
  display: grid;
  grid-template-columns: 42px minmax(0, 1fr) auto;
  align-items: start;
  gap: 12px;
  padding: 15px;
  border: 1px solid rgba(29, 26, 22, 0.09);
  border-radius: 19px;
  background: #f8f4eb;
  color: #211d18;
  box-shadow: 0 14px 30px rgba(48, 34, 23, 0.1);
}

.mobile-notification-icon {
  width: 42px;
  height: 42px;
  border-radius: 11px;
}

.mobile-notification strong,
.mobile-notification span {
  display: block;
}

.mobile-notification strong {
  font-size: 12px;
}

.mobile-notification span {
  margin-top: 3px;
  color: #655d53;
  font-size: 11px;
  line-height: 1.45;
}

.mobile-notification time {
  color: #8b8176;
  font-size: 9px;
}

.mobile-android-live {
  margin-top: 18px;
  padding: 16px 18px;
  border-radius: 20px;
  background: #27231e;
  color: #fffaf0;
  box-shadow: 0 20px 44px rgba(34, 25, 18, 0.25);
}

.mobile-android-live > div:first-child,
.mobile-android-live-row {
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.mobile-android-live small {
  color: rgba(255, 250, 240, 0.62);
}

.mobile-android-live-row {
  margin-top: 14px;
}

.mobile-android-live-row strong {
  font-size: 15px;
}

.mobile-android-live-row span {
  color: #efb11d;
  font-size: 19px;
  font-weight: 850;
}

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

.mobile-flow-card {
  position: relative;
  min-height: 210px;
  padding: 26px;
  border: 1px solid var(--line);
  border-radius: 24px;
  background: var(--paper);
}

.mobile-flow-card:not(:last-child)::after {
  content: "→";
  position: absolute;
  top: 50%;
  right: -25px;
  z-index: 2;
  display: grid;
  place-items: center;
  width: 34px;
  height: 34px;
  border: 1px solid var(--line);
  border-radius: 50%;
  background: var(--bg);
  color: var(--accent);
  font-weight: 850;
}

.mobile-flow-card b {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 34px;
  height: 34px;
  border-radius: 12px;
  background: color-mix(in oklab, var(--accent) 12%, var(--paper));
  color: var(--accent);
  font-size: 12px;
}

.mobile-flow-card h3 {
  margin: 20px 0 0;
  font-size: 22px;
}

.mobile-flow-card p {
  margin: 9px 0 0;
  color: var(--ink-2);
  font-size: 13px;
}

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

.mobile-screenshot-rail figure {
  margin: 0;
}

.mobile-screenshot-rail img {
  width: 100%;
  height: auto;
  border: 1px solid var(--line);
  border-radius: 25px;
  box-shadow: 0 18px 45px rgba(70, 50, 35, 0.12);
}

.mobile-screenshot-rail figcaption {
  padding: 12px 4px 0;
  color: var(--ink-3);
  font-size: 11px;
  text-align: center;
}

.mobile-privacy-panel {
  display: grid;
  grid-template-columns: 1fr 1fr;
  align-items: center;
  gap: 50px;
  padding: 48px;
  border: 1px solid var(--line);
  border-radius: 32px;
  background: var(--ink);
  color: var(--bg);
  box-shadow: var(--shadow);
}

.mobile-privacy-panel h2 {
  margin: 0;
  font-size: clamp(35px, 5vw, 58px);
  line-height: 1.08;
}

.mobile-privacy-panel p {
  margin: 17px 0 0;
  color: color-mix(in oklab, var(--bg) 72%, transparent);
}

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

.mobile-privacy-list li {
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 13px 15px;
  border: 1px solid rgba(255, 255, 255, 0.13);
  border-radius: 15px;
  background: rgba(255, 255, 255, 0.055);
  font-size: 13px;
}

.mobile-privacy-list li::before {
  content: "✓";
  color: #ef9a72;
  font-weight: 900;
}

.mobile-final-cta {
  padding: 116px 0;
  text-align: center;
}

.mobile-final-icon {
  width: 92px;
  height: 92px;
  margin: 0 auto 24px;
  border-radius: 24px;
  box-shadow: 0 18px 40px rgba(54, 36, 25, 0.23);
}

.mobile-final-cta h2 {
  max-width: 760px;
  margin: 0 auto;
  font-size: clamp(42px, 6vw, 72px);
  line-height: 1.05;
  letter-spacing: -0.06em;
}

.mobile-final-cta p {
  max-width: 580px;
  margin: 18px auto 0;
  color: var(--ink-2);
  font-size: 16px;
}

.mobile-final-cta .mobile-store-actions {
  justify-content: center;
}

.mobile-landing-page .footer {
  margin-top: 0;
}

@media (max-width: 960px) {
  .mobile-hero {
    min-height: auto;
    padding-top: 72px;
  }

  .mobile-hero-grid {
    grid-template-columns: 1fr;
  }

  .mobile-phone-stage {
    min-height: 520px;
  }

  .mobile-phone-card {
    width: 270px;
  }

  .mobile-phone-card.is-primary {
    right: calc(50% - 135px);
  }

  .mobile-phone-card.is-left {
    left: calc(50% - 330px);
  }

  .mobile-phone-card.is-right {
    right: calc(50% - 330px);
  }

  .mobile-feature-card.is-wide {
    grid-template-columns: 1fr;
  }

  .mobile-feature-card.is-wide .mobile-feature-copy {
    max-width: 600px;
  }
}

@media (max-width: 760px) {
  .wrap {
    width: min(100% - 32px, 680px);
  }

  .mobile-page-nav > a:not(.theme-toggle) {
    display: none;
  }

  .mobile-page-nav {
    gap: 8px;
  }

  .mobile-lang-switch a {
    min-width: 27px;
    padding-inline: 4px;
  }

  .mobile-hero {
    padding-top: 58px;
  }

  .mobile-hero h1 {
    font-size: clamp(46px, 14vw, 66px);
  }

  .mobile-hero-lede {
    font-size: 16px;
  }

  .mobile-phone-stage {
    min-height: 430px;
  }

  .mobile-phone-card {
    width: 220px;
    border-width: 6px;
    border-radius: 34px;
  }

  .mobile-phone-card img {
    border-radius: 28px;
  }

  .mobile-phone-card.is-primary {
    right: calc(50% - 110px);
    bottom: -130px;
  }

  .mobile-phone-card.is-left {
    left: calc(50% - 255px);
    bottom: -165px;
  }

  .mobile-phone-card.is-right {
    right: calc(50% - 255px);
    bottom: -155px;
  }

  .mobile-status-strip {
    grid-template-columns: 1fr;
  }

  .mobile-status-item {
    justify-content: flex-start;
    min-height: 72px;
    border-right: 0;
    border-bottom: 1px solid var(--line);
  }

  .mobile-status-item:last-child {
    border-bottom: 0;
  }

  .mobile-page-section {
    padding: 78px 0;
  }

  .mobile-section-head h2 {
    font-size: 40px;
  }

  .mobile-feature-grid,
  .mobile-flow,
  .mobile-privacy-panel {
    grid-template-columns: 1fr;
  }

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

  .mobile-feature-card.is-wide {
    grid-column: auto;
    min-height: auto;
  }

  .mobile-mini-phone {
    right: 24px;
    width: 220px;
  }

  .mobile-widget-board {
    grid-template-columns: 1fr;
  }

  .mobile-widget-card.is-small {
    min-height: 150px;
  }

  .mobile-flow-card:not(:last-child)::after {
    top: auto;
    right: calc(50% - 17px);
    bottom: -26px;
    content: "↓";
  }

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

  .mobile-privacy-panel {
    gap: 30px;
    padding: 30px;
  }
}

@media (max-width: 460px) {
  .mobile-launch-pill {
    font-size: 10px;
  }

  .mobile-store-actions {
    align-items: stretch;
  }

  .mobile-store-button,
  .mobile-android-state {
    width: 100%;
    justify-content: center;
  }

  .mobile-phone-stage {
    min-height: 360px;
  }

  .mobile-phone-card {
    width: 184px;
  }

  .mobile-phone-card.is-primary {
    right: calc(50% - 92px);
  }

  .mobile-phone-card.is-left {
    left: calc(50% - 214px);
  }

  .mobile-phone-card.is-right {
    right: calc(50% - 214px);
  }

  .mobile-watch-stage {
    gap: 8px;
  }

  .mobile-watch {
    width: 142px;
    border-radius: 44px;
  }

  .mobile-screenshot-rail {
    gap: 10px;
  }
}

@media (prefers-reduced-motion: reduce) {
  .mobile-store-button {
    transition: none;
  }
}
