/* Statische Website fuer show.bitbeans.de. */
:root {
  --bg: #f6f8fb;
  --surface: #ffffff;
  --ink: #17202b;
  --muted: #5e6c7f;
  --line: #dde5ed;
  --brand: #0f5e6e;
  --accent: #7a5a20;
  --radius: 8px;
  --shadow: 0 16px 38px -30px rgba(23, 32, 43, .45);
  --maxw: 1080px;
  --wrap-pad: 24px;
  --font: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, Arial, sans-serif;
}

* { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; }
body {
  background: var(--bg);
  color: var(--ink);
  font-family: var(--font);
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
}
a { color: inherit; }
a:focus-visible { outline: 3px solid rgba(15, 94, 110, .28); outline-offset: 3px; }
img { display: block; max-width: 100%; }
.wrap { margin: 0 auto; max-width: var(--maxw); padding: 0 24px; }

.site-header {
  background: rgba(255, 255, 255, .9);
  backdrop-filter: saturate(160%) blur(10px);
  border-bottom: 1px solid var(--line);
  position: sticky;
  top: 0;
  z-index: 20;
}
.site-header .wrap {
  align-items: center;
  display: flex;
  gap: 24px;
  justify-content: space-between;
  min-height: 68px;
}
.logo {
  color: var(--ink);
  font-size: 1rem;
  font-weight: 800;
  text-decoration: none;
}
.nav a {
  color: var(--muted);
  font-size: .95rem;
  font-weight: 700;
  margin-left: 22px;
  text-decoration: none;
}
.nav a:hover,
.site-footer a:hover { color: var(--ink); }
.nav a[aria-current="page"] { color: var(--ink); }
.logo.app-logo { align-items: center; display: inline-flex; gap: 10px; }
.logo.app-logo img { border-radius: 8px; display: block; }
@media (max-width: 640px) {
  .site-header:not(.product-header) .wrap { flex-wrap: wrap; gap: 8px 0; padding-bottom: 10px; padding-top: 10px; }
  .site-header:not(.product-header) .nav a { margin-left: 0; margin-right: 16px; }
  .site-header:not(.product-header) .nav a:last-child { margin-right: 0; }
}

.home { padding: 72px 24px 92px; }
.intro {
  max-width: 780px;
  padding: 10px 0 42px;
}
.eyebrow {
  color: var(--brand);
  font-size: .78rem;
  font-weight: 800;
  letter-spacing: .08em;
  text-transform: uppercase;
}
.intro h1 {
  font-size: 3rem;
  line-height: 1.12;
  margin-top: 14px;
}
.lead {
  color: var(--muted);
  font-size: 1.18rem;
  margin-top: 18px;
  max-width: 620px;
}
.quick-links {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-top: 28px;
}
.quick-links a {
  background: var(--surface);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  box-shadow: var(--shadow);
  color: var(--ink);
  font-weight: 700;
  padding: 10px 14px;
  text-decoration: none;
}
.quick-links a:first-child {
  background: var(--brand);
  border-color: var(--brand);
  color: #fff;
}
.app-directory {
  border-top: 1px solid var(--line);
  padding-top: 34px;
}
.section-title {
  align-items: end;
  display: flex;
  gap: 24px;
  justify-content: space-between;
  margin-bottom: 18px;
}
.section-title h2 {
  font-size: 1.6rem;
  line-height: 1.2;
}
.app-grid {
  display: grid;
  gap: 16px;
  grid-template-columns: repeat(3, minmax(0, 1fr));
}
.app-tile {
  background: var(--surface);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  border-top: 3px solid var(--brand);
  box-shadow: var(--shadow);
  color: var(--ink);
  display: block;
  min-height: 132px;
  padding: 20px;
  text-decoration: none;
}
.app-tile:nth-child(2) { border-top-color: var(--accent); }
.app-tile:nth-child(3) { border-top-color: #566579; }
.app-tile span {
  display: block;
  font-size: 1.05rem;
  font-weight: 800;
}
.app-tile small {
  color: var(--muted);
  display: block;
  font-size: .92rem;
  margin-top: 8px;
}

.doc {
  margin: 0 auto;
  max-width: 820px;
  padding: 58px 24px 84px;
}
.doc h1 {
  font-size: min(2.35rem, 8.8vw);
  line-height: 1.18;
  overflow-wrap: break-word;
}
.doc .updated {
  color: var(--muted);
  margin-top: 6px;
}
.doc h2 {
  border-top: 1px solid var(--line);
  font-size: 1.18rem;
  margin: 34px 0 10px;
  padding-top: 24px;
}
.doc p,
.doc li { color: #2b3744; }
.doc ul { margin: 10px 0 10px 22px; }
.doc a { color: var(--brand); }
.back {
  color: var(--brand);
  display: inline-block;
  font-weight: 700;
  margin-bottom: 24px;
  text-decoration: none;
}

.site-footer {
  background: #fff;
  border-top: 1px solid var(--line);
  color: var(--muted);
  font-size: .9rem;
  padding: 34px 0;
}
.site-footer .wrap {
  align-items: center;
  display: flex;
  flex-wrap: wrap;
  gap: 16px;
  justify-content: space-between;
}
.site-footer a {
  color: var(--muted);
  font-weight: 700;
  margin-right: 18px;
  text-decoration: none;
}

@media (max-width: 820px) {
  .home { padding-top: 48px; }
  .intro h1 { font-size: 2.35rem; }
  .app-grid { grid-template-columns: 1fr; }
}

@media (max-width: 480px) {
  :root { --wrap-pad: 18px; }
  .wrap { padding: 0 var(--wrap-pad); }
  .site-header .wrap {
    align-items: flex-start;
    flex-direction: column;
    gap: 8px;
    justify-content: center;
    padding-bottom: 14px;
    padding-top: 14px;
  }
  .nav a {
    margin-left: 0;
    margin-right: 16px;
  }
  .intro h1 { font-size: 2rem; }
  .lead { font-size: 1.05rem; }
}

/* Waylino Single-App Marketingseite. */
body.waylino-page {
  --wl-ink: #1d332b;
  --wl-muted: #64746c;
  --wl-paper: #edebe4;
  --wl-surface: #ffffff;
  --wl-accent: #3f7b5b;
  --wl-accent-strong: #2f6549;
  --wl-line: rgba(29, 51, 43, .15);
  --wl-warm: #b9774f;
  background: #f8f8f4;
  color: var(--wl-ink);
}

.waylino-page a:focus-visible {
  outline-color: rgba(63, 123, 91, .34);
}

.waylino-header {
  background: rgba(248, 248, 244, .94);
  border-bottom-color: var(--wl-line);
}

.waylino-header .wrap {
  min-height: 72px;
}

.waylino-logo {
  align-items: center;
  color: var(--wl-ink);
  display: flex;
  gap: 10px;
}

.waylino-logo img {
  border-radius: 8px;
  box-shadow: 0 10px 22px -18px rgba(29, 51, 43, .8);
}

.waylino-header-actions {
  align-items: center;
  display: flex;
  gap: 18px;
  justify-content: flex-end;
  min-width: 0;
}

.waylino-nav {
  align-items: center;
  display: flex;
  flex-wrap: wrap;
  gap: 18px;
  justify-content: flex-end;
}

.waylino-nav a {
  color: var(--wl-muted);
  margin-left: 0;
}

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

.waylino-language {
  border: 1px solid var(--wl-line);
  border-radius: 8px;
  display: inline-flex;
  flex: 0 0 auto;
  overflow: hidden;
}

.waylino-language a {
  color: var(--wl-muted);
  font-size: .78rem;
  font-weight: 850;
  line-height: 1;
  padding: 8px 9px;
  text-decoration: none;
}

.waylino-language a[aria-current="page"] {
  background: var(--wl-ink);
  color: #fff;
}

.wl-hero {
  background:
    linear-gradient(135deg, rgba(237, 235, 228, .88), rgba(255, 255, 255, .9) 52%, rgba(63, 123, 91, .14)),
    #f8f8f4;
  border-bottom: 1px solid var(--wl-line);
  overflow: hidden;
}

.wl-hero-grid {
  align-items: center;
  display: grid;
  gap: 54px;
  grid-template-columns: minmax(0, 1fr) minmax(290px, 420px);
  padding-bottom: 54px;
  padding-top: 58px;
}

.wl-hero-copy {
  max-width: 660px;
}

.wl-kicker {
  color: var(--wl-accent-strong);
  font-size: .78rem;
  font-weight: 850;
  letter-spacing: 0;
  line-height: 1.2;
  margin-bottom: 14px;
  text-transform: uppercase;
}

.wl-hero h1 {
  color: var(--wl-ink);
  font-size: 4.8rem;
  line-height: .98;
  margin: 0;
}

.wl-claim {
  color: var(--wl-accent);
  font-size: 1.65rem;
  font-weight: 850;
  line-height: 1.18;
  margin-top: 18px;
}

.wl-lead {
  color: #334a40;
  font-size: 1.16rem;
  line-height: 1.72;
  margin-top: 18px;
  max-width: 590px;
}

.wl-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-top: 30px;
}

.wl-button {
  align-items: center;
  border: 1px solid transparent;
  border-radius: 8px;
  display: inline-flex;
  font-weight: 850;
  justify-content: center;
  min-height: 46px;
  padding: 11px 17px;
  text-decoration: none;
}

.wl-button-primary {
  background: var(--wl-ink);
  color: #fff;
  box-shadow: 0 18px 34px -26px rgba(29, 51, 43, .9);
}

.wl-button-primary:hover {
  background: #14251f;
}

.wl-button-ghost {
  background: rgba(255, 255, 255, .62);
  border-color: var(--wl-line);
  color: var(--wl-ink);
}

.wl-button-ghost:hover {
  background: #fff;
}

.store-button-appstore,
.product-button-appstore {
  background: #111;
  border-color: #111;
  color: #fff;
}

.store-button-appstore:hover,
.product-button-appstore:hover {
  background: #000;
  color: #fff;
}

.store-button-play,
.product-button-play {
  background: rgba(255, 255, 255, .72);
  border-color: var(--wl-line);
  color: var(--wl-ink);
}

.wl-final-actions,
.product-final-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  justify-content: flex-end;
}

.wl-facts {
  display: grid;
  gap: 10px;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  margin-top: 34px;
  max-width: 520px;
}

.wl-facts div {
  background: rgba(255, 255, 255, .72);
  border: 1px solid var(--wl-line);
  border-radius: 8px;
  padding: 14px 16px;
}

.wl-facts dt {
  color: var(--wl-muted);
  font-size: .78rem;
  font-weight: 800;
}

.wl-facts dd {
  color: var(--wl-ink);
  font-size: 1.05rem;
  font-weight: 850;
  margin-top: 2px;
}

.wl-hero-media {
  justify-self: end;
  position: relative;
  width: min(100%, 380px);
}

.wl-hero-media::before {
  background: rgba(63, 123, 91, .18);
  border-radius: 8px;
  content: "";
  inset: 18px -18px -18px 18px;
  position: absolute;
}

.wl-hero-media img {
  display: block;
  height: auto;
  position: relative;
  width: 100%;
}

.wl-proof {
  background: var(--wl-ink);
  color: #f9faf6;
}

.wl-proof ul {
  display: grid;
  gap: 1px;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  list-style: none;
}

.wl-proof li {
  border-left: 1px solid rgba(255, 255, 255, .12);
  font-weight: 850;
  min-height: 74px;
  padding: 24px 18px;
  text-align: center;
}

.wl-proof li:last-child {
  border-right: 1px solid rgba(255, 255, 255, .12);
}

.wl-section {
  padding: 82px 0;
}

.wl-section-light {
  background: #fff;
}

.wl-play-layout,
.wl-fair-layout,
.wl-faq-layout {
  display: grid;
  gap: 44px;
  grid-template-columns: minmax(260px, .8fr) minmax(0, 1.2fr);
}

.wl-section-copy,
.wl-section-head {
  max-width: 650px;
}

.wl-section h2,
.wl-final h2 {
  color: var(--wl-ink);
  font-size: 2.35rem;
  line-height: 1.12;
}

.wl-section p,
.wl-final p {
  color: #40564c;
  font-size: 1.02rem;
  line-height: 1.75;
  margin-top: 14px;
}

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

.wl-feature {
  background: #f8f8f4;
  border: 1px solid var(--wl-line);
  border-radius: 8px;
  min-height: 205px;
  padding: 22px;
}

.wl-feature span {
  color: var(--wl-warm);
  display: block;
  font-size: .9rem;
  font-weight: 900;
  margin-bottom: 18px;
}

.wl-feature h3 {
  color: var(--wl-ink);
  font-size: 1.13rem;
  line-height: 1.25;
}

.wl-feature p {
  color: var(--wl-muted);
  font-size: .96rem;
  line-height: 1.62;
  margin-top: 10px;
}

.wl-section-head {
  margin-bottom: 30px;
}

.wl-shot-grid {
  display: grid;
  gap: 26px 22px;
  grid-template-columns: repeat(4, minmax(0, 1fr));
}

.wl-shot {
  background: transparent;
  border: 0;
}

.wl-shot img {
  background: var(--wl-paper);
  display: block;
  height: auto;
  width: 100%;
}

.wl-shot figcaption {
  padding: 14px 6px 0;
}

.wl-shot strong,
.wl-shot span {
  display: block;
}

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

.wl-shot span {
  color: var(--wl-muted);
  font-size: .9rem;
  line-height: 1.45;
  margin-top: 3px;
}

.wl-section-dark {
  background: var(--wl-ink);
  color: #fff;
}

.wl-section-dark .wl-kicker {
  color: #b7ddc3;
}

.wl-section-dark h2,
.wl-section-dark p {
  color: #fff;
}

.wl-section-dark p {
  opacity: .86;
}

.wl-checklist {
  align-self: start;
  background: rgba(255, 255, 255, .08);
  border: 1px solid rgba(255, 255, 255, .14);
  border-radius: 8px;
  list-style: none;
  padding: 12px;
}

.wl-checklist li {
  border-bottom: 1px solid rgba(255, 255, 255, .12);
  color: rgba(255, 255, 255, .9);
  font-weight: 750;
  line-height: 1.5;
  padding: 14px 12px;
}

.wl-checklist li:last-child {
  border-bottom: 0;
}

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

.wl-faq-list {
  display: grid;
  gap: 12px;
}

.wl-faq-list details {
  background: rgba(255, 255, 255, .78);
  border: 1px solid var(--wl-line);
  border-radius: 8px;
  padding: 18px 20px;
}

.wl-faq-list summary {
  color: var(--wl-ink);
  cursor: pointer;
  font-weight: 850;
}

.wl-faq-list p {
  color: var(--wl-muted);
  margin-top: 10px;
}

.wl-faq-list a {
  color: var(--wl-accent-strong);
  font-weight: 800;
}

.wl-final {
  background: #fff;
  border-top: 1px solid var(--wl-line);
  padding: 34px 0;
}

.wl-final-inner {
  align-items: center;
  display: grid;
  gap: 22px;
  grid-template-columns: 64px minmax(0, 1fr) auto;
}

.wl-final img {
  border-radius: 8px;
}

.wl-final h2 {
  font-size: 1.55rem;
}

.wl-final p {
  margin-top: 4px;
}

.waylino-footer {
  background: #f8f8f4;
  border-top-color: var(--wl-line);
}

@media (max-width: 940px) {
  .wl-hero-grid,
  .wl-play-layout,
  .wl-fair-layout,
  .wl-faq-layout {
    grid-template-columns: 1fr;
  }

  .wl-hero-media {
    justify-self: start;
    max-width: 340px;
  }

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

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

  .wl-final-inner {
    grid-template-columns: 56px minmax(0, 1fr);
  }

  .wl-final .wl-button,
  .wl-final-actions {
    grid-column: 1 / -1;
    justify-self: start;
  }
}

@media (max-width: 640px) {
  .waylino-header .wrap {
    align-items: center;
    flex-direction: row;
    gap: 14px;
    min-height: 64px;
    padding-bottom: 10px;
    padding-top: 10px;
  }

  .waylino-header-actions {
    flex: 1 1 auto;
  }

  .waylino-nav {
    flex: 1;
    flex-wrap: nowrap;
    gap: 14px;
    justify-content: flex-start;
    overflow-x: auto;
    padding-bottom: 2px;
    white-space: nowrap;
  }

  .waylino-nav a {
    font-size: .88rem;
    margin-right: 0;
  }

  .wl-hero-grid {
    gap: 22px;
    grid-template-columns: 1fr;
    padding-bottom: 28px;
    padding-top: 28px;
  }

  .wl-hero h1 {
    font-size: 2.75rem;
  }

  .wl-claim {
    font-size: 1.2rem;
    margin-top: 10px;
  }

  .wl-lead {
    font-size: .98rem;
    line-height: 1.55;
    margin-top: 12px;
  }

  .wl-actions {
    gap: 9px;
    margin-top: 18px;
  }

  .wl-button {
    flex: 1 1 160px;
    font-size: .92rem;
    justify-content: center;
    min-height: 42px;
    padding: 9px 12px;
  }

  .wl-facts {
    display: none;
  }

  .wl-hero-media {
    justify-self: center;
    max-width: min(70vw, 280px);
    width: 100%;
  }

  .wl-hero-media::before {
    inset: 10px -8px -10px 8px;
  }

  .wl-section {
    padding: 58px 0;
  }

  .wl-section h2 {
    font-size: 1.9rem;
  }

  .wl-feature-grid,
  .wl-proof ul {
    grid-template-columns: 1fr;
  }

  .wl-shot-grid {
    display: flex;
    gap: 14px;
    margin-left: calc(var(--wrap-pad) * -1);
    margin-right: calc(var(--wrap-pad) * -1);
    overflow-x: auto;
    padding: 2px var(--wrap-pad) 14px;
    scroll-padding-left: var(--wrap-pad);
    scroll-snap-type: x mandatory;
  }

  .wl-shot {
    flex: 0 0 min(78vw, 300px);
    scroll-snap-align: start;
  }

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

  .wl-proof li {
    border-left: 0;
    border-top: 1px solid rgba(255, 255, 255, .12);
    min-height: 0;
    padding: 17px 12px;
  }

  .wl-proof li:first-child {
    border-top: 0;
  }

  .wl-proof li:last-child {
    border-right: 0;
  }

  .wl-final-inner {
    align-items: start;
    grid-template-columns: 48px minmax(0, 1fr);
  }

  .wl-final-actions {
    justify-content: flex-start;
    width: 100%;
  }

  .wl-final img {
    height: 48px;
    width: 48px;
  }
}

@media (max-width: 480px) {
  .waylino-header .wrap {
    align-items: flex-start;
    flex-direction: column;
    gap: 8px;
  }

  .waylino-header-actions {
    flex-wrap: wrap;
    gap: 8px 12px;
    width: 100%;
  }

  .waylino-nav {
    flex: 1 1 245px;
    gap: 8px;
    justify-content: flex-start;
    overflow-x: visible;
    white-space: normal;
  }

  .waylino-nav a {
    font-size: .78rem;
  }

  .waylino-language {
    margin-left: auto;
  }
}

@media (max-width: 380px) {
  .wl-hero-grid {
    grid-template-columns: 1fr;
  }

  .wl-hero-media {
    display: block;
    max-width: min(78vw, 240px);
  }
}

/* Generated single-app pages. Waylino keeps its dedicated wl-* layout above. */
body.product-page {
  --app-ink: #17202b;
  --app-muted: #5d6876;
  --app-paper: #f6f8fb;
  --app-primary: #0f5e6e;
  --app-secondary: #566579;
  --app-accent: #7a5a20;
  --app-line: rgba(23, 32, 43, .14);
  background: var(--app-paper);
  color: var(--app-ink);
}

.product-header { border-bottom-color: var(--app-line); }
.product-header .wrap { gap: 18px; }
.product-logo { align-items: center; display: inline-flex; gap: 10px; }
.product-logo img { border-radius: 8px; box-shadow: 0 8px 24px -18px rgba(0, 0, 0, .5); }
.product-header-actions { align-items: center; display: flex; gap: 14px; }
.product-nav { align-items: center; display: flex; flex-wrap: wrap; gap: 18px; }
.product-nav a { color: var(--app-muted); font-size: .92rem; font-weight: 800; margin: 0; text-decoration: none; }
.product-nav a:hover { color: var(--app-ink); }
.product-language { border: 1px solid var(--app-line); border-radius: 999px; display: inline-flex; overflow: hidden; }
.product-language a { color: var(--app-muted); font-size: .78rem; font-weight: 850; line-height: 1; padding: 8px 10px; text-decoration: none; }
.product-language a[aria-current="page"] { background: var(--app-ink); color: #fff; }

.product-hero {
  background: linear-gradient(180deg, color-mix(in srgb, var(--app-primary) 14%, #fff) 0%, transparent 60%), var(--app-paper);
  border-bottom: 1px solid var(--app-line);
}
.product-hero-grid {
  align-items: center;
  display: grid;
  gap: 54px;
  grid-template-columns: minmax(0, 1fr) minmax(260px, 390px);
  min-height: min(790px, calc(100vh - 68px));
  padding-bottom: 54px;
  padding-top: 64px;
}
.product-kicker { color: var(--app-primary); font-size: .78rem; font-weight: 900; letter-spacing: .08em; text-transform: uppercase; }
.product-hero h1 { color: var(--app-ink); font-size: 4.7rem; letter-spacing: 0; line-height: .98; margin-top: 16px; }
.product-claim { color: color-mix(in srgb, var(--app-primary) 82%, #18202a); font-size: 1.45rem; font-weight: 850; line-height: 1.28; margin-top: 18px; }
.product-lead { color: var(--app-muted); font-size: 1.08rem; line-height: 1.65; margin-top: 18px; max-width: 650px; }
.product-actions { display: flex; flex-wrap: wrap; gap: 12px; margin-top: 26px; }
.product-button { align-items: center; border-radius: 8px; display: inline-flex; font-weight: 850; min-height: 46px; padding: 11px 16px; text-decoration: none; }
.product-button-primary { background: var(--app-ink); color: #fff; }
.product-button-secondary { background: rgba(255, 255, 255, .68); border: 1px solid var(--app-line); color: var(--app-ink); }
.product-button-play { border-color: var(--app-line); color: var(--app-ink); }
.product-facts { display: grid; gap: 10px; grid-template-columns: repeat(3, minmax(0, 1fr)); margin-top: 28px; max-width: 560px; }
.product-facts div { background: rgba(255, 255, 255, .7); border: 1px solid var(--app-line); border-radius: 8px; padding: 12px 14px; }
.product-facts dt { color: var(--app-muted); font-size: .72rem; font-weight: 850; text-transform: uppercase; }
.product-facts dd { color: var(--app-ink); font-size: 1rem; font-weight: 850; margin-top: 2px; }
.product-hero-media { justify-self: center; max-width: 380px; position: relative; }
.product-hero-media::before { background: color-mix(in srgb, var(--app-accent) 28%, #fff); border-radius: 18px; content: ""; inset: 26px -18px -26px 18px; opacity: .5; position: absolute; }
.product-hero-media img { display: block; height: auto; max-width: 100%; position: relative; width: 100%; }

/* Telefonrahmen um App-Screenshots (Hero + Screenshot-Grid) */
.device {
  background: linear-gradient(165deg, #2b2f37, #0a0c10 44%, #171a20);
  border-radius: 40px;
  box-shadow:
    inset 0 1px 1px rgba(255, 255, 255, .16),
    inset 0 -1px 1px rgba(0, 0, 0, .5),
    0 34px 64px -40px rgba(0, 0, 0, .55);
  padding: 10px;
  position: relative;
}
.device::before,
.device::after {
  background: #23262d;
  border-radius: 2px;
  content: "";
  position: absolute;
  width: 3px;
}
.device::before { height: 58px; right: -2.5px; top: 19%; }
.device::after { height: 34px; left: -2.5px; top: 16%; }
.device img { border-radius: 30px; display: block; height: auto; width: 100%; }

.product-proof { background: var(--app-ink); color: #fff; }
.product-proof ul { display: grid; grid-template-columns: repeat(4, minmax(0, 1fr)); list-style: none; }
.product-proof li { border-left: 1px solid rgba(255, 255, 255, .14); color: rgba(255, 255, 255, .9); font-weight: 850; min-height: 74px; padding: 22px 16px; text-align: center; }
.product-proof li:last-child { border-right: 1px solid rgba(255, 255, 255, .14); }
.product-section { padding: 78px 0; }
.product-section-light, .product-final { background: #fff; }
.product-section h2, .product-final h2 { color: var(--app-ink); font-size: 2.35rem; letter-spacing: 0; line-height: 1.12; }
.product-section p, .product-final p { color: var(--app-muted); }
.product-play-layout, .product-fair-layout, .product-faq-layout { display: grid; gap: 44px; grid-template-columns: .82fr 1.18fr; }
.product-section-copy p { font-size: 1.02rem; line-height: 1.7; margin-top: 16px; }
.product-feature-grid { display: grid; gap: 14px; grid-template-columns: repeat(2, minmax(0, 1fr)); }
.product-feature { background: color-mix(in srgb, var(--app-paper) 70%, #fff); border: 1px solid var(--app-line); border-radius: 8px; min-height: 178px; padding: 20px; }
.product-feature span { color: var(--app-accent); font-size: .78rem; font-weight: 900; }
.product-feature h3 { color: var(--app-ink); font-size: 1.03rem; line-height: 1.24; margin-top: 12px; }
.product-feature p { font-size: .94rem; line-height: 1.55; margin-top: 8px; }
.product-section-head { max-width: 720px; }
.product-section-head h2 { margin-top: 8px; }
.product-section-head p { margin-top: 12px; }
.product-shot-grid { display: grid; gap: 26px 22px; grid-template-columns: repeat(4, minmax(0, 1fr)); margin-top: 28px; }
.product-shot { background: transparent; border: 0; }
.product-shot img { display: block; height: auto; width: 100%; }
.product-shot figcaption { padding: 14px 6px 0; }
.product-shot strong, .product-shot span { display: block; }
.product-shot strong { color: var(--app-ink); font-size: .95rem; }
.product-shot span { color: var(--app-muted); font-size: .84rem; line-height: 1.42; margin-top: 4px; }
.product-section-dark { background: var(--app-ink); color: #fff; }
.product-section-dark .product-kicker, .product-section-dark h2 { color: #fff; }
.product-section-dark p { color: rgba(255, 255, 255, .76); margin-top: 14px; }
.product-checklist { background: rgba(255, 255, 255, .06); border: 1px solid rgba(255, 255, 255, .14); border-radius: 8px; list-style: none; overflow: hidden; }
.product-checklist li { border-bottom: 1px solid rgba(255, 255, 255, .12); color: rgba(255, 255, 255, .86); font-weight: 750; padding: 14px 16px; }
.product-checklist li:last-child { border-bottom: 0; }
.product-faq-list { display: grid; gap: 12px; }
.product-faq-list details { background: rgba(255, 255, 255, .76); border: 1px solid var(--app-line); border-radius: 8px; padding: 18px 20px; }
.product-faq-list summary { color: var(--app-ink); cursor: pointer; font-weight: 850; }
.product-faq-list p { margin-top: 10px; }
.product-final { border-top: 1px solid var(--app-line); padding: 34px 0; }
.product-final-inner { align-items: center; display: grid; gap: 20px; grid-template-columns: 64px minmax(0, 1fr) auto; }
.product-final img { border-radius: 8px; }
.product-final h2 { font-size: 1.55rem; }
.product-final p { margin-top: 4px; }

@media (max-width: 940px) {
  .product-hero-grid, .product-play-layout, .product-fair-layout, .product-faq-layout { grid-template-columns: 1fr; }
  .product-hero h1 { font-size: 3.7rem; }
  .product-shot-grid, .product-proof ul { grid-template-columns: repeat(2, minmax(0, 1fr)); }
  .product-final-inner { grid-template-columns: 56px minmax(0, 1fr); }
  .product-final .product-button,
  .product-final-actions { grid-column: 1 / -1; justify-self: start; }
}

@media (max-width: 640px) {
  .product-header .wrap { align-items: flex-start; flex-direction: column; gap: 10px; padding-bottom: 12px; padding-top: 12px; }
  .product-header-actions { flex-wrap: wrap; width: 100%; }
  .product-nav { gap: 12px; }
  .product-nav a { font-size: .82rem; }
  .product-language { margin-left: auto; }
  .product-hero-grid { gap: 22px; grid-template-columns: 1fr; min-height: 0; padding-bottom: 30px; padding-top: 32px; }
  .product-hero h1 { font-size: min(2.65rem, 10.4vw); overflow-wrap: break-word; }
  .product-claim { font-size: 1.16rem; margin-top: 12px; }
  .product-lead { font-size: .98rem; line-height: 1.55; }
  .product-facts { display: none; }
  .product-actions { width: 100%; }
  .product-button { flex: 1 1 160px; justify-content: center; }
  .product-hero-media { justify-self: center; max-width: min(70vw, 280px); width: 100%; }
  .product-section { padding: 58px 0; }
  .product-section h2 { font-size: 1.9rem; }
  .product-feature-grid, .product-proof ul { grid-template-columns: 1fr; }
  .product-shot-grid {
    display: flex;
    gap: 14px;
    margin-left: calc(var(--wrap-pad) * -1);
    margin-right: calc(var(--wrap-pad) * -1);
    overflow-x: auto;
    padding: 2px var(--wrap-pad) 14px;
    scroll-padding-left: var(--wrap-pad);
    scroll-snap-type: x mandatory;
  }
  .product-shot {
    flex: 0 0 min(78vw, 300px);
    scroll-snap-align: start;
  }
  .product-proof li { border-left: 0; border-top: 1px solid rgba(255, 255, 255, .12); min-height: 0; padding: 17px 12px; }
  .product-proof li:first-child { border-top: 0; }
  .product-final-inner { grid-template-columns: 48px minmax(0, 1fr); }
  .product-final-actions { justify-content: flex-start; width: 100%; }
  .product-final img { height: 48px; width: 48px; }
}

@media (max-width: 380px) {
  .product-hero-grid { grid-template-columns: 1fr; }
  .product-hero-media { display: block; max-width: min(78vw, 240px); }
}

/* OurRound standalone landing page */
.or-landing {
  --or-bg: #061b20;
  --or-bg-deep: #041217;
  --or-surface: #0b292f;
  --or-surface-soft: #10343a;
  --or-mint: #5ce6bc;
  --or-mint-soft: #a6f4cf;
  --or-orange: #ffad42;
  --or-cream: #f7ece4;
  --or-muted: #a9bab9;
  --or-line: rgba(208, 241, 231, .13);
  background: var(--or-bg-deep);
  color: var(--or-cream);
  font-family: Inter, ui-sans-serif, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  margin: 0;
  overflow-x: hidden;
}

.or-landing *,
.or-landing *::before,
.or-landing *::after { box-sizing: border-box; }
.or-landing a { color: inherit; }
.or-landing img { max-width: 100%; }
.or-wrap { margin: 0 auto; max-width: 1220px; padding-left: 28px; padding-right: 28px; width: 100%; }
.or-skip { background: var(--or-cream); color: var(--or-bg) !important; left: 16px; padding: 10px 14px; position: fixed; top: -100px; z-index: 100; }
.or-skip:focus { top: 16px; }

.or-header {
  backdrop-filter: blur(18px);
  background: rgba(4, 18, 23, .74);
  border-bottom: 1px solid var(--or-line);
  position: absolute;
  top: 0;
  width: 100%;
  z-index: 20;
}
.or-header-solid { padding-top: env(safe-area-inset-top, 0); }
.or-header-inner { align-items: center; display: flex; justify-content: space-between; min-height: 78px; }
.or-header-solid { background: rgba(4, 18, 23, .96); position: sticky; }
.or-brand { align-items: center; display: inline-flex; font-size: 1.22rem; font-weight: 800; gap: 12px; letter-spacing: -.02em; text-decoration: none; }
.or-brand img { border-radius: 13px; box-shadow: 0 12px 34px rgba(0, 0, 0, .25); }
.or-nav { align-items: center; display: flex; gap: 28px; }
.or-nav > a { color: var(--or-muted); font-size: .92rem; font-weight: 650; text-decoration: none; transition: color .2s ease; }
.or-nav > a:hover { color: var(--or-cream); }
.or-language { align-items: center; border: 1px solid var(--or-line); border-radius: 999px; display: flex; gap: 2px; padding: 3px; }
.or-language a { border-radius: 999px; color: var(--or-muted); font-size: .72rem; font-weight: 800; padding: 7px 9px; text-decoration: none; }
.or-language a[aria-current="page"] { background: rgba(255, 255, 255, .1); color: var(--or-cream); }
.or-menu-toggle { align-items: center; background: transparent; border: 1px solid var(--or-line); border-radius: 999px; color: var(--or-cream); cursor: pointer; display: none; font: inherit; font-size: .82rem; font-weight: 750; gap: 9px; min-height: 42px; padding: 8px 13px; }
.or-menu-icon,
.or-menu-icon::before,
.or-menu-icon::after { background: currentColor; border-radius: 99px; display: block; height: 2px; transition: transform .2s ease, opacity .2s ease; width: 16px; }
.or-menu-icon { position: relative; }
.or-menu-icon::before,
.or-menu-icon::after { content: ""; left: 0; position: absolute; }
.or-menu-icon::before { top: -5px; }
.or-menu-icon::after { top: 5px; }
.or-menu-toggle[aria-expanded="true"] .or-menu-icon { background: transparent; }
.or-menu-toggle[aria-expanded="true"] .or-menu-icon::before { top: 0; transform: rotate(45deg); }
.or-menu-toggle[aria-expanded="true"] .or-menu-icon::after { top: 0; transform: rotate(-45deg); }

.or-doc-page { background: #061b20; color: var(--or-cream); min-height: 100vh; }
.or-doc { min-height: calc(100vh - 300px); padding-bottom: 88px; padding-top: 68px; }
.or-doc-card { background: #f7eee7; border: 1px solid rgba(255, 255, 255, .1); border-radius: 30px; box-shadow: 0 30px 80px rgba(0, 0, 0, .28); color: #173137; margin: 0 auto; max-width: 860px; padding: clamp(30px, 6vw, 68px); }
.or-doc-card h1 { color: #09252b; font-size: clamp(2.35rem, 6vw, 4.4rem); hyphens: auto; letter-spacing: -.052em; line-height: 1.06; margin: 0 0 12px; overflow-wrap: anywhere; }
.or-doc-card h2 { color: #0c3439; font-size: clamp(1.25rem, 3vw, 1.65rem); hyphens: auto; letter-spacing: -.025em; line-height: 1.2; margin: 36px 0 10px; overflow-wrap: anywhere; scroll-margin-top: 104px; }
.or-doc-card p,
.or-doc-card li { color: #435b5e; font-size: 1rem; line-height: 1.72; }
.or-doc-card ul { padding-left: 22px; }
.or-doc-card a { color: #0b7567; font-weight: 680; text-decoration-thickness: .08em; text-underline-offset: .16em; }
.or-doc-card a:hover { color: #074e48; }
.or-doc-card .updated { color: #718183; font-size: .84rem; margin: 0 0 30px; }
.or-doc-note { background: rgba(11, 117, 103, .08); border-left: 3px solid #0b7567; border-radius: 0 12px 12px 0; margin-top: 34px; padding: 14px 16px; }

.or-hero {
  align-items: center;
  background:
    radial-gradient(circle at 76% 36%, rgba(61, 207, 176, .12), transparent 28%),
    linear-gradient(145deg, #061b20 0%, #041217 70%);
  display: flex;
  min-height: min(930px, 100svh);
  overflow: hidden;
  padding: 130px 0 80px;
  position: relative;
}
.or-glow { border-radius: 50%; filter: blur(1px); opacity: .4; pointer-events: none; position: absolute; }
.or-glow-mint { background: radial-gradient(circle, rgba(71, 239, 189, .18), transparent 68%); height: 660px; right: -260px; top: -240px; width: 660px; }
.or-glow-orange { background: radial-gradient(circle, rgba(255, 158, 36, .13), transparent 68%); bottom: -310px; height: 640px; left: -280px; width: 640px; }
.or-hero-grid { align-items: center; display: grid; gap: 70px; grid-template-columns: minmax(0, 1.02fr) minmax(360px, .78fr); position: relative; z-index: 2; }
.or-hero-copy { max-width: 690px; }
.or-eyebrow { align-items: center; color: var(--or-mint); display: flex; font-size: .74rem; font-weight: 800; gap: 10px; letter-spacing: .13em; margin: 0; text-transform: uppercase; }
.or-eyebrow > span:first-child { background: var(--or-mint); border-radius: 99px; box-shadow: 0 0 16px rgba(92, 230, 188, .65); flex: 0 0 6px; height: 6px; width: 6px; }
.or-hero h1 { color: var(--or-cream); font-size: clamp(3.7rem, 6.35vw, 6.8rem); font-weight: 770; letter-spacing: -.065em; line-height: .93; margin: 24px 0 0; }
.or-hero h1 em { color: var(--or-orange); font-style: normal; font-weight: 560; }
.or-lead { color: #c3ceca; font-size: clamp(1.05rem, 1.55vw, 1.28rem); line-height: 1.65; margin: 30px 0 0; max-width: 630px; }
.or-store-row { display: flex; flex-wrap: wrap; gap: 12px; }
.or-hero .or-store-row { margin-top: 34px; }
.or-store { align-items: center; border: 1px solid rgba(255, 255, 255, .16); border-radius: 14px; display: inline-flex; gap: 11px; min-height: 58px; padding: 9px 17px; text-decoration: none; transition: transform .2s ease, border-color .2s ease, background .2s ease; }
.or-store:hover { transform: translateY(-2px); }
.or-store[aria-disabled="true"] { cursor: default; opacity: .78; }
.or-store[aria-disabled="true"]:hover { transform: none; }
.or-store svg { fill: currentColor; height: 26px; width: 26px; }
.or-store span { font-size: 1.02rem; font-weight: 720; line-height: 1.05; }
.or-store small { display: block; font-size: .61rem; font-weight: 500; letter-spacing: .02em; margin-bottom: 3px; }
.or-store-apple { background: var(--or-cream); border-color: var(--or-cream); color: #07181c !important; }
.or-store-apple:hover { background: #fff; }
.or-store-play { background: rgba(255, 255, 255, .04); color: var(--or-cream) !important; }
.or-store-play:hover { background: rgba(255, 255, 255, .08); border-color: rgba(255, 255, 255, .28); }
.or-trust { display: flex; flex-wrap: wrap; gap: 10px 24px; list-style: none; margin: 27px 0 0; padding: 0; }
.or-trust li { align-items: center; color: var(--or-muted); display: flex; font-size: .82rem; gap: 8px; }
.or-trust li::before { border: 1.5px solid var(--or-mint); border-radius: 50%; color: var(--or-mint); content: "✓"; display: grid; font-size: .58rem; height: 16px; place-items: center; width: 16px; }

.or-visual { height: 660px; justify-self: center; max-width: 520px; position: relative; width: 100%; }
.or-phone { background: linear-gradient(145deg, #26363a, #05090b 40%); border: 1px solid rgba(255, 255, 255, .18); border-radius: 48px; box-shadow: 0 50px 90px -30px rgba(0, 0, 0, .75), 0 0 80px rgba(65, 231, 184, .08); left: 50%; overflow: hidden; padding: 10px; position: absolute; top: 50%; transform: translate(-50%, -50%) rotate(2.5deg); width: 302px; z-index: 5; }
.or-phone img { border-radius: 39px; display: block; height: auto; width: 100%; }
.or-phone-speaker { background: #05090b; border-radius: 0 0 14px 14px; height: 22px; left: 50%; position: absolute; top: 9px; transform: translateX(-50%); width: 104px; z-index: 2; }
.or-orbit { border: 1px solid rgba(92, 230, 188, .2); border-radius: 50%; left: 50%; position: absolute; top: 50%; transform: translate(-50%, -50%); }
.or-orbit-one { height: 470px; width: 470px; }
.or-orbit-two { border-color: rgba(255, 173, 66, .14); height: 590px; width: 590px; }
.or-app-icon { left: 5px; position: absolute; top: 84px; transform: rotate(-7deg); z-index: 7; }
.or-app-icon img { border-radius: 24px; box-shadow: 0 28px 50px rgba(0, 0, 0, .42); }
.or-float-card { align-items: center; backdrop-filter: blur(18px); background: rgba(14, 47, 52, .82); border: 1px solid rgba(173, 246, 219, .18); border-radius: 16px; box-shadow: 0 22px 50px rgba(0, 0, 0, .32); display: flex; gap: 11px; padding: 12px 15px; position: absolute; z-index: 8; }
.or-float-card span:last-child { font-size: .89rem; font-weight: 730; line-height: 1.08; }
.or-float-card small { color: var(--or-muted); display: block; font-size: .64rem; font-weight: 580; margin-bottom: 4px; }
.or-float-card-top { right: 0; top: 146px; transform: rotate(3deg); }
.or-float-card-bottom { bottom: 112px; left: -5px; transform: rotate(-2deg); }
.or-float-icon { background: var(--or-orange); border-radius: 10px; color: #321c04; display: grid; font-size: 1.4rem; font-weight: 400; height: 34px; place-items: center; width: 34px; }
.or-dot { background: var(--or-mint); border-radius: 50%; box-shadow: 0 0 18px rgba(92, 230, 188, .7); height: 12px; width: 12px; }
.or-scroll { align-items: center; bottom: 26px; color: var(--or-muted) !important; display: flex; flex-direction: column; font-size: .66rem; gap: 4px; left: 50%; letter-spacing: .12em; position: absolute; text-decoration: none; text-transform: uppercase; transform: translateX(-50%); z-index: 5; }
.or-scroll svg { fill: none; height: 20px; stroke: currentColor; stroke-linecap: round; stroke-linejoin: round; stroke-width: 1.4; width: 20px; }

.or-how { background: #f7eee7; color: #092229; padding: 112px 0 122px; }
.or-how .or-eyebrow { color: #137b68; }
.or-how .or-eyebrow > span:first-child { background: #137b68; box-shadow: none; }
.or-section-head { max-width: 720px; }
.or-section-head h2,
.or-glimpse h2,
.or-cta h2 { letter-spacing: -.045em; line-height: 1.05; }
.or-section-head h2 { color: #082128; font-size: clamp(2.7rem, 5vw, 4.8rem); margin: 18px 0 0; }
.or-section-head > p:last-child { color: #526668; font-size: 1.08rem; line-height: 1.7; margin: 22px 0 0; max-width: 620px; }
.or-steps { display: grid; gap: 18px; grid-template-columns: repeat(3, 1fr); margin-top: 60px; }
.or-steps article { background: rgba(255, 255, 255, .56); border: 1px solid rgba(5, 38, 44, .09); border-radius: 24px; min-height: 280px; padding: 28px; position: relative; }
.or-step-number { color: #8b9998; font-size: .7rem; font-weight: 800; letter-spacing: .12em; position: absolute; right: 26px; top: 26px; }
.or-step-icon { align-items: center; background: #0a2a30; border-radius: 16px; color: var(--or-mint); display: flex; height: 54px; justify-content: center; width: 54px; }
.or-step-icon svg { fill: none; height: 25px; stroke: currentColor; stroke-linecap: round; stroke-linejoin: round; stroke-width: 1.7; width: 25px; }
.or-steps h3 { color: #0a282e; font-size: 1.3rem; letter-spacing: -.025em; margin: 42px 0 0; }
.or-steps p { color: #647475; font-size: .96rem; line-height: 1.6; margin: 12px 0 0; }

.or-glimpse { background: #071c21; overflow: hidden; padding: 120px 0; }
.or-glimpse-grid { align-items: center; display: grid; gap: 80px; grid-template-columns: .88fr 1.12fr; }
.or-glimpse-copy h2 { color: var(--or-cream); font-size: clamp(2.5rem, 4.8vw, 4.5rem); margin: 20px 0 0; }
.or-glimpse-copy > p:not(.or-eyebrow) { color: var(--or-muted); font-size: 1.08rem; line-height: 1.72; margin: 24px 0 0; max-width: 550px; }
.or-glimpse-copy ul { display: grid; gap: 14px; list-style: none; margin: 30px 0 0; padding: 0; }
.or-glimpse-copy li { align-items: center; color: #d4dcda; display: flex; font-size: .94rem; gap: 12px; }
.or-glimpse-copy li > span:first-child { background: var(--or-orange); border-radius: 50%; flex: 0 0 7px; height: 7px; width: 7px; }
.or-screens { height: 650px; position: relative; }
.or-screen { margin: 0; position: absolute; top: 50%; width: 290px; }
.or-screen-back { left: 4%; transform: translateY(-50%) rotate(-8deg); }
.or-screen-front { right: 4%; transform: translateY(-50%) rotate(7deg); z-index: 2; }
.or-mini-phone { background: #05090b; border: 1px solid rgba(255, 255, 255, .18); border-radius: 38px; box-shadow: 0 40px 70px -28px rgba(0, 0, 0, .75); overflow: hidden; padding: 9px; }
.or-mini-phone img { border-radius: 30px; display: block; height: auto; width: 100%; }

.or-cta { background: linear-gradient(110deg, #14363b, #0a282e); border-bottom: 1px solid var(--or-line); border-top: 1px solid var(--or-line); padding: 54px 0; }
.or-cta-inner { align-items: center; display: grid; gap: 24px; grid-template-columns: 76px minmax(260px, 1fr) auto; }
.or-cta-inner > img { border-radius: 20px; box-shadow: 0 16px 36px rgba(0, 0, 0, .3); }
.or-cta h2 { color: var(--or-cream); font-size: clamp(1.5rem, 2.4vw, 2.2rem); margin: 0; }
.or-cta p { color: var(--or-muted); margin: 8px 0 0; }

.or-footer { background: #041217; color: var(--or-muted); padding: 52px 0 32px; }
.or-footer-top { align-items: center; display: flex; justify-content: space-between; }
.or-footer .or-brand { color: var(--or-cream); }
.or-contact { color: var(--or-mint) !important; font-size: .9rem; text-decoration: none; }
.or-footer-bottom { align-items: center; border-top: 1px solid var(--or-line); display: flex; gap: 28px; justify-content: space-between; margin-top: 34px; padding-top: 26px; }
.or-footer-bottom p { font-size: .76rem; margin: 0; }
.or-footer-bottom nav { display: flex; flex-wrap: wrap; gap: 12px 22px; justify-content: flex-end; }
.or-footer-bottom nav a { color: var(--or-muted); font-size: .76rem; text-decoration: none; }
.or-footer-bottom nav a:hover { color: var(--or-cream); }

@media (prefers-reduced-motion: reduce) {
  .or-landing { scroll-behavior: auto; }
  .or-store { transition: none; }
}

@media (max-width: 1040px) {
  .or-hero { min-height: 900px; }
  .or-hero-grid { gap: 24px; grid-template-columns: minmax(0, 1fr) minmax(320px, .72fr); }
  .or-visual { height: 590px; transform: scale(.9); transform-origin: center; }
  .or-orbit-two { height: 520px; width: 520px; }
  .or-cta-inner { grid-template-columns: 64px minmax(0, 1fr); }
  .or-cta-inner > img { height: 64px; width: 64px; }
  .or-cta .or-store-row { grid-column: 1 / -1; }
}

@media (max-width: 820px) {
  .or-header:not(.or-header-solid) { position: absolute; }
  .or-nav > a:first-child { display: none; }
  .or-hero { min-height: 0; padding: 134px 0 84px; }
  .or-hero-grid { grid-template-columns: 1fr; }
  .or-hero-copy { max-width: 650px; }
  .or-visual { height: 610px; justify-self: center; margin-top: 14px; max-width: 520px; transform: none; }
  .or-scroll { display: none; }
  .or-how { padding: 86px 0 92px; }
  .or-steps { grid-template-columns: 1fr; margin-top: 44px; }
  .or-steps article { min-height: 0; padding: 24px; }
  .or-steps h3 { margin-top: 28px; }
  .or-glimpse { padding: 90px 0; }
  .or-glimpse-grid { gap: 48px; grid-template-columns: 1fr; }
  .or-screens { height: 590px; margin: 0 auto; max-width: 590px; width: 100%; }
  .or-footer-bottom { align-items: flex-start; flex-direction: column; }
  .or-footer-bottom nav { justify-content: flex-start; }
  .or-menu-toggle { display: inline-flex; }
  .or-header .or-nav { align-items: stretch; background: rgba(4, 18, 23, .985); border: 1px solid var(--or-line); border-radius: 20px; box-shadow: 0 24px 60px rgba(0, 0, 0, .42); display: none; flex-direction: column; gap: 4px; left: 20px; padding: 12px; position: absolute; right: 20px; top: calc(100% + 10px); }
  .or-header .or-nav[data-open] { display: flex; }
  .or-header .or-nav > a,
  .or-header .or-nav > a:first-child { border-radius: 12px; display: block; font-size: .98rem; padding: 12px 13px; }
  .or-header .or-nav > a:hover,
  .or-header .or-nav > a[aria-current="page"] { background: rgba(255, 255, 255, .07); color: var(--or-cream); }
  .or-header .or-language { align-self: stretch; justify-content: space-between; margin-top: 6px; }
  .or-header .or-language a { flex: 1; text-align: center; }
}

@media (max-width: 560px) {
  .or-wrap { padding-left: 20px; padding-right: 20px; }
  .or-header-inner { min-height: 70px; }
  .or-brand { font-size: 1.08rem; gap: 9px; }
  .or-header .or-brand img { height: 38px; width: 38px; }
  .or-nav { gap: 14px; }
  .or-hero { padding-bottom: 58px; padding-top: 112px; }
  .or-hero h1 { font-size: clamp(3.12rem, 15.2vw, 4.7rem); line-height: .95; }
  .or-lead { font-size: 1rem; line-height: 1.58; margin-top: 24px; }
  .or-store-row { display: grid; grid-template-columns: 1fr 1fr; width: 100%; }
  .or-store { gap: 8px; justify-content: center; min-height: 56px; padding: 8px 10px; }
  .or-store svg { height: 23px; width: 23px; }
  .or-store span { font-size: .88rem; }
  .or-store small { font-size: .57rem; }
  .or-trust { gap: 10px 16px; }
  .or-trust li { font-size: .75rem; }
  .or-visual { height: 530px; margin-top: 4px; }
  .or-phone { border-radius: 41px; padding: 8px; width: 248px; }
  .or-phone img { border-radius: 33px; }
  .or-phone-speaker { top: 7px; }
  .or-orbit-one { height: 360px; width: 360px; }
  .or-orbit-two { height: 450px; width: 450px; }
  .or-app-icon { left: 1%; top: 76px; }
  .or-app-icon img { border-radius: 18px; height: 70px; width: 70px; }
  .or-float-card { padding: 10px 12px; }
  .or-float-card-top { right: -8px; top: 130px; }
  .or-float-card-bottom { bottom: 90px; left: -8px; }
  .or-section-head h2,
  .or-glimpse-copy h2 { font-size: clamp(2.45rem, 11vw, 3.4rem); }
  .or-how { padding: 74px 0 80px; }
  .or-glimpse { padding: 76px 0 58px; }
  .or-screens { height: 490px; }
  .or-screen { width: 220px; }
  .or-screen-back { left: -2%; }
  .or-screen-front { right: -2%; }
  .or-mini-phone { border-radius: 30px; padding: 7px; }
  .or-mini-phone img { border-radius: 24px; }
  .or-cta { padding: 44px 0; }
  .or-cta-inner { grid-template-columns: 54px 1fr; }
  .or-cta-inner > img { border-radius: 15px; height: 54px; width: 54px; }
  .or-cta .or-store-row { grid-column: 1 / -1; }
  .or-footer-top { align-items: flex-start; flex-direction: column; gap: 18px; }
  .or-footer-bottom nav { display: grid; grid-template-columns: 1fr 1fr; width: 100%; }
  .or-doc { padding-bottom: 56px; padding-top: 34px; }
  .or-doc-card { border-radius: 22px; padding: 28px 22px; }
  .or-doc-card h1 { font-size: clamp(2rem, 10.5vw, 2.8rem); letter-spacing: -.04em; line-height: 1.08; }
}

@media (max-width: 380px) {
  .or-wrap { padding-left: 16px; padding-right: 16px; }
  .or-store-row { grid-template-columns: 1fr; }
  .or-visual { height: 485px; }
  .or-phone { width: 224px; }
  .or-app-icon { display: none; }
  .or-float-card-top { right: -14px; }
  .or-float-card-bottom { left: -14px; }
  .or-screens { height: 430px; }
  .or-screen { width: 194px; }
}
