@font-face {
  font-family: "Manrope";
  font-style: normal;
  font-weight: 400 800;
  font-display: swap;
  src: url("assets/fonts/manrope-latin-variable.woff2") format("woff2");
}

@font-face {
  font-family: "Fraunces";
  font-style: normal;
  font-weight: 600 700;
  font-display: swap;
  src: url("assets/fonts/fraunces-latin-variable.woff2") format("woff2");
}

:root {
  --bg: #f4f6f3;
  --surface: rgba(255, 255, 255, 0.94);
  --surface-strong: #ffffff;
  --surface-soft: #eef4f1;
  --surface-accent: #dff0ea;
  --ink: #172126;
  --muted: #5b6a70;
  --line: #d5dfdb;
  --line-strong: #b8c7c1;
  --accent: #1f786f;
  --accent-2: #45a29a;
  --accent-deep: #10363c;
  --warning-bg: #fdf4ea;
  --warning-line: #e8c79c;
  --shadow: 0 24px 60px rgba(17, 34, 38, 0.08);
  --shadow-strong: 0 36px 88px rgba(6, 22, 28, 0.18);
  --radius: 22px;
  --radius-lg: 32px;
  --max: 1180px;
  --narrow: 860px;
  --header-bar-width: 1040px;
  --offer-banner-height: 0px;
}

* { box-sizing: border-box; }

html {
  font-size: 16px;
  scroll-behavior: smooth;
}

body {
  margin: 0;
  color: var(--ink);
  font-family: Manrope, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  line-height: 1.65;
  overflow-x: hidden;
  background:
    radial-gradient(circle at top left, rgba(69, 162, 154, 0.10), transparent 26%),
    radial-gradient(circle at top right, rgba(31, 120, 111, 0.08), transparent 24%),
    linear-gradient(180deg, #f3f6f4 0%, #fbfcfb 100%);
}

body.founding-offer-banner-visible {
  padding-top: var(--offer-banner-height);
}

body:not(.founding-offer-current) .offer-active-only {
  display: none !important;
}

body:not(.founding-offer-expired) .offer-expired-only {
  display: none !important;
}

body.founding-offer-expired .offer-active-only {
  display: none !important;
}

#features,
#screens,
#premium,
#faq {
  scroll-margin-top: 116px;
}

a {
  color: var(--accent);
  text-decoration: none;
}

a:hover { text-decoration: underline; }

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

html.founding-offer-space {
  --offer-banner-height: 55px;
}

html.founding-offer-space body {
  padding-top: var(--offer-banner-height);
}

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

.narrow-shell {
  width: min(calc(100% - 40px), var(--narrow));
  margin: 0 auto;
}

.site-header {
  padding-top: 92px;
  background:
    radial-gradient(circle at top left, rgba(109, 214, 204, 0.18), transparent 30%),
    radial-gradient(circle at bottom right, rgba(160, 209, 198, 0.14), transparent 28%),
    linear-gradient(135deg, #0d1519 0%, #143039 55%, #18444a 100%);
  color: #eff8f6;
}

.marketing-header {
  position: relative;
  overflow: visible;
}

body.marketing-page .marketing-header > .shell {
  width: min(calc(100% - 56px), 1360px);
}

.topbar {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 16px;
  position: fixed;
  top: calc(14px + var(--offer-banner-height));
  left: 50%;
  transform: translateX(-50%);
  width: min(calc(100% - 48px), var(--header-bar-width));
  padding: 9px 16px;
  border-radius: 999px;
  border: 1px solid rgba(228, 244, 240, 0.12);
  background: rgba(13, 29, 34, 0.82);
  box-shadow: 0 18px 40px rgba(7, 20, 25, 0.24);
  backdrop-filter: blur(16px);
  -webkit-backdrop-filter: blur(16px);
  z-index: 1000;
}

.founding-offer-banner {
  position: fixed;
  inset: 0 0 auto;
  z-index: 1400;
  color: #eff8f6;
  background: linear-gradient(135deg, #0d2529, #17484d);
  border-bottom: 1px solid rgba(228, 244, 240, 0.16);
  box-shadow: 0 12px 30px rgba(7, 20, 25, 0.18);
}

.founding-offer-banner-inner {
  width: min(calc(100% - 32px), var(--max));
  min-height: 48px;
  margin: 0 auto;
  padding: 8px 0;
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto auto;
  align-items: center;
  gap: 12px;
}

html.founding-offer-space .founding-offer-banner-inner {
  min-height: var(--offer-banner-height);
}

.founding-offer-banner-text {
  margin: 0;
  font-size: 0.92rem;
  font-weight: 750;
  line-height: 1.35;
}

.founding-offer-banner-cta,
.offer-sticky-button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 38px;
  padding: 0 14px;
  border-radius: 999px;
  color: #10363c;
  background: #dff0ea;
  font-weight: 850;
  white-space: nowrap;
}

.founding-offer-banner-cta:hover,
.offer-sticky-button:hover {
  text-decoration: none;
}

.founding-offer-dismiss,
.offer-sticky-dismiss {
  min-height: 38px;
  padding: 0 12px;
  border: 1px solid rgba(239, 248, 246, 0.2);
  border-radius: 999px;
  color: rgba(239, 248, 246, 0.9);
  background: rgba(255, 255, 255, 0.08);
  font: inherit;
  font-size: 0.84rem;
  font-weight: 800;
  cursor: pointer;
}

.offer-sticky-cta {
  display: none;
}

.app-store-badge {
  display: inline-block;
  line-height: 0;
  flex: 0 0 auto;
}

.app-store-badge:hover {
  text-decoration: none;
}

.app-store-badge img {
  display: block;
  width: 180px;
  height: auto;
}

.header-store-cta img {
  width: 152px;
}

.footer-store-row {
  margin-top: 14px;
}

.footer-store-cta img {
  width: 150px;
}

.mobile-store-cta {
  display: none;
}

.brand-link,
.brand-link:hover {
  text-decoration: none;
}

div.brand {
  display: block;
}

div.brand::before {
  content: none;
}

.brand-lockup {
  display: block;
  width: 134px;
  aspect-ratio: 392 / 156;
  background: url("assets/oneglp/oneglp-logo-dark.svg") center / contain no-repeat;
  filter: drop-shadow(0 10px 22px rgba(8, 26, 31, 0.08));
}

.rebrand-notice {
  margin: 12px 0 0;
  color: inherit;
  font-size: 14px;
  line-height: 1.5;
  text-align: start;
  overflow-wrap: anywhere;
}

.rebrand-continuity {
  margin: 4px 0 12px;
  max-width: 70ch;
  font-size: 14px;
  line-height: 1.5;
  overflow-wrap: anywhere;
}

.rebrand-notice a {
  color: inherit;
  text-decoration: underline;
  text-underline-offset: 3px;
}

.rebrand-notice a:focus-visible {
  outline: 2px solid currentColor;
  outline-offset: 4px;
}

.brand-mark-pill,
.brand-name,
.brand-sub {
  display: none;
}

div.brand .brand-mark {
  display: none;
}

.topnav {
  display: flex;
  flex-wrap: wrap;
  gap: 10px 16px;
  justify-content: center;
  flex: 1 1 auto;
  min-width: 0;
}

.topnav a {
  color: rgba(239, 248, 246, 0.92);
  font-size: 0.92rem;
  white-space: nowrap;
}

body.marketing-page .hero {
  padding: 18px 0 28px;
}

body:not(.marketing-page) .site-header {
  padding-top: 112px;
}

body:not(.marketing-page) .hero {
  padding: 30px 0 44px;
}

body:not(.marketing-page) .hero-grid,
body:not(.marketing-page) .marketing-hero-grid {
  display: grid;
  grid-template-columns: minmax(360px, 1fr) minmax(280px, 0.82fr);
  gap: 32px;
  align-items: center;
}

body:not(.marketing-page) .hero-copy {
  max-width: 760px;
}

body:not(.marketing-page) .hero-copy h1 {
  margin: 0 0 14px;
  font-size: clamp(2.35rem, 3.8vw, 3.35rem);
  line-height: 0.98;
  letter-spacing: -0.04em;
  max-width: 15ch;
}

body:not(.marketing-page) .hero-copy p {
  margin: 0 0 20px;
  color: rgba(239, 248, 246, 0.86);
  font-size: 1rem;
  max-width: 60ch;
}

body:not(.marketing-page) .screen-panel-hero {
  max-width: 430px;
  margin-inline: auto;
  transform: translateY(4px);
  box-shadow: 0 28px 64px rgba(6, 22, 28, 0.18);
}

body:not(.marketing-page) .screen-panel-hero img {
  width: min(100%, 330px);
  margin: 22px auto 24px;
  aspect-ratio: auto;
  object-fit: contain;
  border-radius: 34px;
  border: 10px solid #ffffff;
  background: #ffffff;
  box-shadow: 0 22px 44px rgba(12, 44, 50, 0.14);
}

body.marketing-page .hero-grid,
body.marketing-page .marketing-hero-grid {
  display: grid;
  grid-template-columns: minmax(430px, 0.72fr) minmax(620px, 1.18fr);
  grid-template-areas:
    "copy visual"
    "support .";
  column-gap: 52px;
  row-gap: 10px;
  align-items: start;
}

body.marketing-page .hero-copy {
  grid-area: copy;
  max-width: 560px;
}

body.marketing-page .hero-visual {
  grid-area: visual;
  align-self: start !important;
  padding-top: 4px;
}

.hero-support {
  grid-area: support;
  max-width: 420px;
}

.hero-copy h1,
.page-title,
.section-head h2,
.cta-band h2,
.feature-card h3,
.screen-copy h3,
.stat-title,
.info-box h3,
.link-card h3,
.faq-item summary {
  font-family: Fraunces, Georgia, serif;
}

body.marketing-page .hero-copy h1 {
  margin: 0 0 12px;
  font-size: clamp(2.4rem, 2.95vw, 3.05rem);
  line-height: 0.98;
  letter-spacing: -0.025em;
  max-width: 13.4ch;
}

body.marketing-page .hero-copy p {
  margin: 0 0 12px;
  color: rgba(239, 248, 246, 0.86);
  font-size: 0.98rem;
  max-width: 34ch;
}

.hero-copy .hero-offer-line {
  display: block;
  max-width: 100%;
  padding: 0;
  border: 0;
  border-radius: 0;
  color: #b8fff1;
  background: transparent;
  box-shadow: none;
  font-weight: 850;
  margin-bottom: 6px;
  line-height: 1.25;
}

body.marketing-page .hero-copy .hero-detail-copy {
  color: rgba(239, 248, 246, 0.78);
  font-size: 0.88rem;
}

.eyebrow,
.kicker,
.feature-label,
.footer-brand,
.stat-title {
  text-transform: uppercase;
  font-size: 0.8rem;
  letter-spacing: 0.11em;
  font-weight: 800;
}

.eyebrow {
  color: #9fe5d7;
  margin-bottom: 10px;
}

.kicker {
  color: var(--accent);
  margin-bottom: 8px;
}

.hero-actions,
.cta-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-bottom: 6px;
}

.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 44px;
  padding: 0 16px;
  border-radius: 999px;
  border: 1px solid transparent;
  font-weight: 700;
  transition: transform 160ms ease, box-shadow 160ms ease, border-color 160ms ease, background-color 160ms ease;
}

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

.button-primary {
  color: #fff;
  background: linear-gradient(135deg, var(--accent), var(--accent-2));
  box-shadow: 0 14px 30px rgba(31, 120, 111, 0.28);
}

.button-primary:empty {
  display: none;
}

.button-secondary {
  color: #f4fcf9;
  background: rgba(255, 255, 255, 0.08);
  border-color: rgba(255, 255, 255, 0.2);
}

.hero-secondary-cta {
  background: rgba(255, 255, 255, 0.06);
  border-color: rgba(255, 255, 255, 0.14);
}

.hero-proof {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(0, 1fr);
  gap: 6px 18px;
  max-width: 390px;
  margin-top: 16px;
  padding-top: 12px;
  border-top: 1px solid rgba(239, 248, 246, 0.25);
  color: #eff8f6;
  letter-spacing: 0;
}

.hero-proof-item {
  display: flex;
  flex-direction: column;
  gap: 2px;
  min-width: 0;
}

.hero-proof-item strong {
  font-size: 1.55rem;
  line-height: 1.15;
  font-variant-numeric: tabular-nums;
}

.hero-proof-item > span {
  font-size: 0.8rem;
  line-height: 1.35;
}

.hero-proof-star {
  color: #f3ce78;
  font-size: 1.15rem;
}

.hero-proof small {
  grid-column: 1 / -1;
  color: #b8cdca;
  font-size: 0.7rem;
  line-height: 1.4;
}

.badge-row {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
}

.badge {
  padding: 8px 12px;
  border-radius: 999px;
  border: 1px solid var(--line-strong);
  background: var(--surface-strong);
  color: var(--ink);
  font-size: 0.9rem;
}

.marketing-badges .badge {
  background: rgba(255, 255, 255, 0.08);
  border-color: rgba(255, 255, 255, 0.18);
  color: #eff8f6;
  padding: 6px 10px;
  font-size: 0.77rem;
}

.hero-note {
  color: rgba(239, 248, 246, 0.76);
  font-size: 0.79rem;
  line-height: 1.42;
  margin-top: 8px;
  max-width: 44ch;
}

.hero-inline-link {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  margin-bottom: 6px;
  color: rgba(239, 248, 246, 0.9);
  font-weight: 700;
  font-size: 0.88rem;
}

.hero-inline-link::after {
  content: "→";
  font-size: 0.95em;
}

.hero-inline-link:hover {
  text-decoration: none;
  color: #ffffff;
}

.page-wrap {
  padding: 58px 0 74px;
}

.marketing-wrap.compact-top { padding-top: 20px; }
.marketing-wrap.compact-bottom { padding-bottom: 42px; }

.section-strip {
  padding: 42px 0;
}

.alt-strip {
  background: linear-gradient(180deg, rgba(223, 240, 234, 0.54), rgba(255, 255, 255, 0));
}

.card,
.page-card,
.stat-card,
.feature-card,
.screen-card,
.cta-band,
.info-box,
.link-card,
.screen-panel {
  background: var(--surface);
  border: 1px solid rgba(184, 199, 193, 0.55);
  box-shadow: var(--shadow);
  backdrop-filter: blur(10px);
}

.page-card,
.cta-band {
  border-radius: var(--radius-lg);
}

.page-card {
  padding: 34px;
}

.page-head {
  margin-bottom: 22px;
}

.page-title {
  margin: 0 0 8px;
  font-size: clamp(2rem, 4vw, 3rem);
  line-height: 1.02;
  letter-spacing: -0.03em;
}

.page-meta {
  color: var(--muted);
  font-size: 0.95rem;
}

.notice,
.warning {
  margin: 0 0 22px;
  padding: 18px 20px;
  border-radius: 20px;
}

.notice {
  background: linear-gradient(180deg, #eef5f9, #f7fafc);
  border: 1px solid #d6e0ea;
}

.offer-pill {
  display: inline-flex;
  align-items: center;
  width: fit-content;
  margin: 0 0 16px;
  padding: 8px 12px;
  border-radius: 999px;
  color: #10363c;
  background: #dff0ea;
  font-weight: 850;
}

.offer-proof-list {
  display: grid;
  gap: 10px;
  margin: 18px 0 0;
  padding: 0;
  list-style: none;
}

.offer-proof-list li {
  padding: 12px 14px;
  border-radius: 16px;
  color: var(--ink);
  background: rgba(223, 240, 234, 0.72);
}

.warning {
  background: linear-gradient(180deg, var(--warning-bg), #fffaf4);
  border: 1px solid var(--warning-line);
}

.section-head {
  margin-bottom: 26px;
}

.section-head-center {
  text-align: center;
}

.section-head h2 {
  margin: 0 0 10px;
  font-size: clamp(2rem, 4vw, 3.1rem);
  line-height: 1.02;
  letter-spacing: -0.03em;
}

.section-head p {
  margin: 0 auto;
  max-width: 70ch;
  color: var(--muted);
}

.stats-row,
.feature-grid,
.screen-gallery,
.cta-grid,
.grid-two,
.footer-grid {
  display: grid;
  gap: 18px;
}

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

.stat-card {
  padding: 22px;
  border-radius: 24px;
}

.stat-title {
  color: var(--accent);
  margin-bottom: 10px;
}

.stat-card p {
  margin: 0;
}

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

.feature-card {
  padding: 24px;
  border-radius: 24px;
}

.feature-card-large {
  grid-column: span 2;
  display: grid;
  grid-template-columns: minmax(0, 1.08fr) minmax(220px, 0.92fr);
  gap: 18px;
  align-items: center;
}

.feature-label {
  color: var(--accent);
  margin-bottom: 8px;
}

.feature-card h3 {
  margin: 0 0 10px;
  font-size: 1.55rem;
  line-height: 1.08;
}

.feature-card p,
.feature-card li,
.info-box p,
.info-box li,
.link-card p,
.screen-copy p,
.page-card p,
.page-card li {
  color: var(--muted);
}

.feature-card ul,
.page-card ul,
.page-card ol {
  margin: 12px 0 0;
  padding-left: 20px;
}

.mini-proof {
  border-radius: 22px;
  overflow: hidden;
  border: 1px solid rgba(184, 199, 193, 0.6);
  background: var(--surface-soft);
}

.mini-proof img,
.screen-panel img,
.screen-card img {
  width: 100%;
  height: auto;
}

.screen-panel img {
  aspect-ratio: 4 / 3;
  object-fit: cover;
}

.responsive-picture {
  display: block;
  width: 100%;
}

.screen-panel {
  border-radius: 28px;
  overflow: hidden;
}

body.marketing-page .screen-panel-hero {
  position: relative;
  transform: rotate(-0.8deg);
  transform-origin: center center;
  box-shadow: 0 42px 92px rgba(6, 22, 28, 0.24);
  max-width: 900px;
  margin-inline: auto;
}

body.marketing-page .screen-panel-hero::after {
  content: "";
  position: absolute;
  inset: auto 4% -24px 10%;
  height: 34px;
  border-radius: 999px;
  background: radial-gradient(circle, rgba(8, 25, 30, 0.3) 0%, rgba(8, 25, 30, 0) 72%);
  filter: blur(10px);
  pointer-events: none;
}

body.marketing-page .screen-panel-hero::before {
  content: "";
  position: absolute;
  inset: 16% 10% 18% 10%;
  background: radial-gradient(circle, rgba(120, 203, 188, 0.18) 0%, rgba(120, 203, 188, 0) 72%);
  filter: blur(18px);
  pointer-events: none;
  z-index: 0;
}

body.marketing-page .screen-panel-hero > * {
  position: relative;
  z-index: 1;
}

.screen-panel-head {
  display: flex;
  justify-content: space-between;
  gap: 12px;
  padding: 12px 14px;
  font-size: 0.78rem;
  text-transform: uppercase;
  letter-spacing: 0.09em;
  font-weight: 800;
  color: var(--accent-deep);
  background: linear-gradient(135deg, #dbefe9, #f7fbfa);
  border-bottom: 1px solid rgba(184, 199, 193, 0.6);
}

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

.screen-card {
  border-radius: 26px;
  overflow: hidden;
}

.screen-copy {
  padding: 18px 20px 22px;
}

.screen-copy h3 {
  margin: 0 0 8px;
  font-size: 1.42rem;
  line-height: 1.08;
}


.real-screen-gallery {
  align-items: stretch;
}

.screen-shot-shell {
  display: flex;
  justify-content: center;
  align-items: flex-start;
  padding: 22px 18px 0;
  min-height: 430px;
  background: linear-gradient(180deg, #edf5f2 0%, #f9fbfa 100%);
}

.phone-shot {
  width: min(78%, 280px);
  border-radius: 34px;
  border: 10px solid #ffffff;
  box-shadow: 0 22px 44px rgba(12, 44, 50, 0.16);
}

.screen-card .screen-copy {
  height: 100%;
}

.table-wrap {
  overflow-x: auto;
  border-radius: 24px;
  border: 1px solid rgba(184, 199, 193, 0.6);
  background: var(--surface-strong);
  box-shadow: var(--shadow);
}

.mobile-comparison-cards {
  display: none;
}

.comparison-card {
  padding: 18px;
  border-radius: 20px;
  border: 1px solid rgba(184, 199, 193, 0.6);
  background: var(--surface-strong);
  box-shadow: var(--shadow);
}

.comparison-card h3 {
  margin: 0 0 12px;
  font-size: 1.18rem;
  line-height: 1.16;
}

.comparison-card-row {
  display: grid;
  gap: 6px;
  padding-top: 12px;
  margin-top: 12px;
  border-top: 1px solid var(--line);
}

.comparison-card-label {
  color: var(--accent);
  font-size: 0.78rem;
  font-weight: 850;
  letter-spacing: 0.09em;
  text-transform: uppercase;
}

.comparison-card-row p {
  margin: 0;
  color: var(--muted);
}

table {
  width: 100%;
  border-collapse: collapse;
  min-width: 640px;
}

.seo-facts-table {
  min-width: 0;
  table-layout: fixed;
  margin-top: 22px;
  border: 1px solid var(--line);
  border-radius: 18px;
  overflow: hidden;
  background: var(--surface-strong);
  box-shadow: var(--shadow);
}

.seo-facts-table th {
  width: 32%;
}

th,
td {
  padding: 16px 18px;
  text-align: left;
  border-bottom: 1px solid var(--line);
  vertical-align: top;
}

th {
  font-size: 0.9rem;
  text-transform: uppercase;
  letter-spacing: 0.09em;
  color: var(--accent);
  background: linear-gradient(180deg, #f4faf8, #eef5f2);
}

tbody tr:last-child td {
  border-bottom: 0;
}

.table-note,
.small {
  font-size: 0.94rem;
}

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

.faq-item {
  border-radius: 22px;
  border: 1px solid rgba(184, 199, 193, 0.55);
  background: rgba(255, 255, 255, 0.88);
  box-shadow: var(--shadow);
  padding: 0 20px;
}

.faq-item summary {
  list-style: none;
  cursor: pointer;
  padding: 18px 0;
  font-size: 1.18rem;
  color: var(--ink);
}

.faq-item summary::-webkit-details-marker { display: none; }

.faq-item p {
  margin: 0 0 18px;
  color: var(--muted);
}

.cta-band {
  padding: 28px;
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto;
  gap: 20px;
  align-items: center;
}

.cta-band h2 {
  margin: 0 0 10px;
  font-size: clamp(1.8rem, 3.2vw, 2.5rem);
  line-height: 1.05;
}

.cta-band p {
  margin: 0;
  color: var(--muted);
  max-width: 58ch;
}

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

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

.link-card,
.info-box {
  border-radius: 24px;
  padding: 22px;
}

.link-card h3,
.info-box h3 {
  margin: 0 0 10px;
  font-size: 1.34rem;
}

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

.footer {
  padding: 0 0 34px;
}

.footer-card {
  padding: 22px 24px;
  border-radius: 24px;
}

.footer-grid {
  grid-template-columns: minmax(0, 1fr) minmax(280px, 0.85fr);
}

.footer-brand {
  background: linear-gradient(90deg, #1c6d5a 0 63%, #b8c441 63% 100%);
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
  margin-bottom: 10px;
}

.screen-shot-shell,
.screen-panel-hero {
  position: relative;
}

.screen-shot-shell::before,
.screen-panel-hero::before {
  content: none;
}

.screen-shot-shell::after,
.screen-panel-hero::after {
  content: none;
}

.footer-card p {
  margin: 0 0 8px;
  color: var(--muted);
}

.footer-links a {
  color: var(--accent);
}

section + section {
  margin-top: 28px;
}

@media (max-width: 980px) {
  body:not(.marketing-page) .hero-grid,
  body:not(.marketing-page) .marketing-hero-grid {
    grid-template-columns: 1fr;
    gap: 18px;
  }

  body:not(.marketing-page) .hero-copy {
    max-width: none;
  }

  body:not(.marketing-page) .hero {
    padding: 22px 0 38px;
  }

  .topbar {
    flex-wrap: wrap;
    border-radius: 24px;
    width: min(calc(100% - 24px), var(--header-bar-width));
    justify-content: flex-start;
  }

  .topnav {
    order: 3;
    width: 100%;
    justify-content: flex-start;
    flex-wrap: nowrap;
    overflow-x: auto;
    padding-bottom: 2px;
    scrollbar-width: none;
  }

  .topnav::-webkit-scrollbar {
    display: none;
  }

  body.marketing-page .hero-grid,
  body.marketing-page .marketing-hero-grid,
  .feature-card-large,
  .screen-gallery,
  .stats-row,
  .feature-grid,
  .cta-grid,
  .grid-two,
  .footer-grid,
  .cta-band {
    grid-template-columns: 1fr;
  }

  body.marketing-page .hero-grid,
  body.marketing-page .marketing-hero-grid {
    grid-template-areas:
      "copy"
      "visual"
      "support";
    row-gap: 16px;
  }

  body.marketing-page .screen-panel-hero {
    transform: perspective(1200px) rotateY(-4deg) rotateZ(-0.6deg);
    max-width: 820px;
  }

  .screen-shot-shell {
    min-height: auto;
  }

  body.marketing-page .hero-copy {
    max-width: 620px;
  }

  body.marketing-page .hero-copy h1 {
    max-width: 10ch;
  }

  body.marketing-page .hero {
    padding: 14px 0 38px;
  }

  body.marketing-page .hero-copy p,
  .hero-note,
  .hero-support {
    max-width: none;
  }

  .section-head h2 {
    font-size: clamp(1.95rem, 5vw, 2.8rem);
  }

  .phone-shot {
    width: min(72%, 280px);
  }

  .cta-band {
    align-items: flex-start;
  }

  .stacked-actions {
    width: 100%;
  }
}

@media (max-width: 720px) {
  html.founding-offer-space {
    --offer-banner-height: 80px;
  }

  .shell,
  .narrow-shell {
    width: min(calc(100% - 24px), var(--max));
  }

  .topbar {
    top: calc(8px + var(--offer-banner-height));
    width: min(calc(100% - 16px), var(--header-bar-width));
    min-height: 58px;
    padding: 7px 10px;
    border-radius: 999px;
    gap: 10px;
    align-items: center;
  }

  .founding-offer-banner-inner {
    width: min(calc(100% - 20px), var(--max));
    grid-template-columns: minmax(0, 1fr) auto auto;
    gap: 6px;
    padding: 6px 0;
  }

  .founding-offer-banner-text {
    font-size: 0.76rem;
    line-height: 1.22;
  }

  .founding-offer-banner-cta,
  .founding-offer-dismiss {
    min-height: 32px;
    padding-inline: 10px;
    font-size: 0.78rem;
  }

  body.marketing-page .site-header {
    padding-top: 82px;
  }

  body:not(.marketing-page) .site-header {
    padding-top: 90px;
  }

  .header-store-cta {
    display: none;
  }

  .topnav {
    display: none;
  }

  .language-toggle {
    padding: 0.5rem 0.74rem;
    font-size: 0.91rem;
  }

  .mobile-store-cta {
    position: fixed;
    left: clamp(36px, 12vw, 76px);
    right: clamp(36px, 12vw, 76px);
    bottom: max(10px, env(safe-area-inset-bottom));
    z-index: 950;
    display: flex;
    justify-content: center;
    width: auto;
    padding: 6px 10px;
    border-radius: 999px;
    background: rgba(13, 29, 34, 0.9);
    box-shadow: 0 18px 42px rgba(7, 20, 25, 0.26);
    backdrop-filter: blur(16px);
    -webkit-backdrop-filter: blur(16px);
  }

  .mobile-store-cta img {
    width: 132px;
  }

  body:has([data-language-panel]:not([hidden])) .mobile-store-cta,
  body:has([data-language-panel]:not([hidden])) .offer-sticky-cta,
  body.mobile-cta-suppressed .mobile-store-cta,
  body.mobile-cta-suppressed .offer-sticky-cta,
  body.mobile-cta-hero-visible .mobile-store-cta,
  body.mobile-cta-hero-visible .offer-sticky-cta {
    display: none;
  }

  .offer-sticky-cta:not([hidden]) {
    position: fixed;
    left: 12px;
    right: 12px;
    bottom: max(10px, env(safe-area-inset-bottom));
    z-index: 950;
    display: grid;
    grid-template-columns: minmax(0, 1fr) auto auto;
    align-items: center;
    gap: 8px;
    min-height: 56px;
    padding: 8px;
    border-radius: 20px;
    color: #eff8f6;
    background: rgba(13, 29, 34, 0.93);
    box-shadow: 0 18px 42px rgba(7, 20, 25, 0.26);
    backdrop-filter: blur(16px);
    -webkit-backdrop-filter: blur(16px);
  }

  body:has(.offer-sticky-cta:not([hidden])) main {
    padding-bottom: 106px;
  }

  .offer-sticky-cta p {
    margin: 0;
    min-width: 0;
    min-height: 2.2em;
    max-height: 2.2em;
    font-size: 0.82rem;
    font-weight: 850;
    line-height: 1.18;
    display: -webkit-box;
    -webkit-box-orient: vertical;
    -webkit-line-clamp: 2;
    overflow: hidden;
  }

  .offer-sticky-button,
  .offer-sticky-dismiss {
    min-height: 36px;
    padding-inline: 10px;
    font-size: 0.8rem;
    white-space: nowrap;
  }

  .seo-facts-table,
  .seo-facts-table tbody,
  .seo-facts-table tr,
  .seo-facts-table th,
  .seo-facts-table td {
    display: block;
    width: 100%;
  }

  .seo-facts-table tr {
    border-bottom: 1px solid var(--line);
  }

  .seo-facts-table tr:last-child {
    border-bottom: 0;
  }

  .seo-facts-table th,
  .seo-facts-table td {
    border-bottom: 0;
    padding: 10px 14px;
  }

  .seo-facts-table th {
    padding-bottom: 2px;
    background: transparent;
  }

  .seo-facts-table td {
    padding-top: 2px;
    overflow-wrap: anywhere;
  }

  body.marketing-page .hero {
    padding: 8px 0 24px;
  }

  body:not(.marketing-page) .hero {
    padding: 12px 0 28px;
  }

  .page-wrap {
    padding: 34px 0 48px;
  }

  .section-strip {
    padding: 28px 0;
  }

  #features,
  #screens,
  #premium,
  #faq {
    scroll-margin-top: 88px;
  }

  .section-head {
    margin-bottom: 18px;
  }

  .section-head h2 {
    font-size: clamp(1.7rem, 9vw, 2.35rem);
    line-height: 1.06;
  }

  .section-head p {
    font-size: 0.96rem;
  }

  .page-card,
  .feature-card,
  .stat-card,
  .link-card,
  .info-box,
  .cta-band {
    padding: 18px;
    border-radius: 20px;
  }

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

  .feature-card,
  .feature-card * {
    min-width: 0;
  }

  .feature-card-large {
    grid-column: auto;
    grid-template-columns: minmax(0, 1fr);
  }

  .button {
    width: 100%;
    min-height: 44px;
  }

  .hero-actions,
  .cta-actions {
    align-items: stretch;
    gap: 8px;
    margin-bottom: 8px;
  }

  .brand-lockup {
    width: 126px;
    max-width: 100%;
  }

  body.marketing-page .hero-copy h1 {
    font-size: clamp(1.92rem, 7.8vw, 2.55rem);
    max-width: none;
    margin-bottom: 8px;
  }

  body:not(.marketing-page) .hero-copy h1 {
    font-size: clamp(2rem, 7.6vw, 2.55rem);
    max-width: none;
    margin-bottom: 10px;
  }

  body.marketing-page .hero-copy p {
    font-size: 0.9rem;
    max-width: none;
    margin-bottom: 12px;
  }

  body:not(.marketing-page) .hero-copy p {
    font-size: 0.94rem;
    max-width: none;
    margin-bottom: 16px;
  }

  .marketing-badges .badge {
    padding: 6px 10px;
    font-size: 0.79rem;
  }

  .badge-row {
    gap: 7px;
  }

  .hero-note,
  .site-cta-note {
    font-size: 0.78rem;
    line-height: 1.45;
  }

  .hero-inline-link {
    margin-bottom: 10px;
    font-size: 0.92rem;
  }

  .screen-panel-head {
    flex-wrap: wrap;
    justify-content: flex-start;
    gap: 6px 12px;
    font-size: 0.72rem;
    padding: 10px 12px;
  }

  .alt-strip .landing-grid {
    grid-template-columns: 1fr;
  }

  .screen-panel,
  .screen-card,
  .table-wrap {
    border-radius: 20px;
  }

  body.marketing-page .screen-panel-hero {
    max-width: 100%;
    transform: rotate(-0.8deg) translateY(4px);
  }

  body:not(.marketing-page) .screen-panel-hero {
    max-width: 360px;
    transform: none;
  }

  body:not(.marketing-page) .screen-panel-hero img {
    width: min(100%, 280px);
    margin: 18px auto 20px;
    border-width: 8px;
    border-radius: 28px;
  }

  .screen-copy {
    padding: 16px 16px 18px;
  }

  .screen-copy h3,
  .feature-card h3,
  .cta-band h2 {
    font-size: 1.28rem;
  }

  .screen-shot-shell {
    padding: 16px 14px 0;
  }

  .phone-shot {
    width: min(78%, 250px);
    border-width: 8px;
    border-radius: 28px;
  }

  .stats-row,
  .feature-grid,
  .screen-gallery,
  .cta-grid,
  .grid-two,
  .footer-grid,
  .landing-grid {
    gap: 14px;
  }

  .faq-item {
    padding: 0 16px;
  }

  .faq-item summary {
    font-size: 1.05rem;
    padding: 16px 0;
  }

  th,
  td {
    padding: 12px 14px;
  }

  .desktop-comparison {
    display: none;
  }

  .mobile-comparison-cards {
    display: grid;
    gap: 14px;
  }

  .footer-card {
    padding: 18px;
  }
}


.site-cta-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  align-items: center;
}

.site-cta-actions .button[hidden] {
  display: none;
}

.site-cta-note {
  margin-top: 12px;
  color: var(--muted);
  font-size: 0.95rem;
}

.cta-band-compact {
  padding: 28px;
}

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

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

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

.faq-mini details {
  background: var(--surface);
  border: 1px solid var(--line);
  border-radius: 18px;
  padding: 16px 18px;
  box-shadow: var(--shadow);
}

.trademark-note {
  margin-top: 16px;
  color: var(--muted);
  font-size: 0.92rem;
}

.meta-links {
  display: flex;
  flex-wrap: wrap;
  gap: 10px 16px;
  margin-top: 16px;
}

.meta-links a {
  font-weight: 700;
}

.hero-actions-secondary {
  margin-top: 14px;
}

@media (max-width: 860px) {
  .landing-grid {
    grid-template-columns: 1fr;
  }

  .alt-strip .landing-grid {
    grid-template-columns: 1fr;
  }
}

.screen-panel-hero img {
  aspect-ratio: auto;
  object-fit: contain;
  background: linear-gradient(180deg, #f4faf7 0%, #edf5f1 100%);
}

@media (max-width: 420px) {
  body.marketing-page .site-header {
    padding-top: 76px;
  }

  body:not(.marketing-page) .site-header {
    padding-top: 84px;
  }

  .topbar {
    width: min(calc(100% - 16px), var(--header-bar-width));
    padding: 6px 8px;
  }

  .founding-offer-banner-inner {
    grid-template-columns: minmax(0, 1fr) auto;
    gap: 5px;
  }

  .founding-offer-banner-text {
    grid-column: 1 / -1;
    font-size: 0.76rem;
  }

  .founding-offer-banner-cta,
  .founding-offer-dismiss {
    min-height: 32px;
    padding-inline: 10px;
    font-size: 0.76rem;
  }

  body.marketing-page .hero-copy h1 {
    font-size: clamp(1.68rem, 7.8vw, 2.05rem);
  }

  body:not(.marketing-page) .hero-copy h1 {
    font-size: clamp(1.7rem, 8.2vw, 2.1rem);
  }

  .brand-lockup {
    width: 112px;
  }

  .marketing-badges .badge {
    font-size: 0.74rem;
  }

  .hero-note {
    font-size: 0.8rem;
  }

  .offer-sticky-cta:not([hidden]) {
    grid-template-columns: minmax(0, 1fr) auto auto;
    min-height: 50px;
    gap: 5px;
    padding: 6px;
    border-radius: 16px;
  }

  .offer-sticky-cta p {
    font-size: 0.72rem;
    line-height: 1.1;
  }

  .offer-sticky-button,
  .offer-sticky-dismiss {
    min-height: 32px;
    padding-inline: 8px;
    font-size: 0.72rem;
  }

}


/* Multilingual SEO language selector */
.language-picker{position:relative;z-index:1000;margin-left:auto;flex:0 0 auto}.language-toggle{display:inline-flex;align-items:center;gap:.5rem;border:1px solid rgba(255,255,255,.2);border-radius:999px;padding:.62rem .9rem;background:rgba(11,32,35,.72);color:#fff;font:inherit;font-weight:800;cursor:pointer;box-shadow:0 18px 44px rgba(6,28,30,.18)}.language-toggle:focus-visible,.language-search:focus-visible,.language-option:focus-visible{outline:3px solid rgba(66,197,176,.55);outline-offset:2px}.language-panel{position:absolute;top:calc(100% + .65rem);right:0;width:min(21rem,calc(100vw - 2rem));max-height:min(28rem,calc(100vh - 8rem));padding:.75rem;border-radius:1.15rem;background:rgba(13,34,38,.96);border:1px solid rgba(255,255,255,.14);box-shadow:0 28px 60px rgba(0,0,0,.28);overflow:auto;backdrop-filter:blur(16px)}.language-search{width:100%;margin:0 0 .65rem;padding:.78rem .9rem;border-radius:.85rem;border:1px solid rgba(255,255,255,.18);background:rgba(255,255,255,.09);color:#fff;font:inherit;font-weight:700}.language-search::placeholder{color:rgba(255,255,255,.72)}.language-list{display:grid;gap:.55rem}.language-option{display:block;padding:.8rem .85rem;border-radius:.9rem;text-decoration:none;color:#fff;border:1px solid rgba(255,255,255,.12);background:rgba(255,255,255,.055)}.language-option:hover,.language-option[aria-current="true"]{background:rgba(77,209,190,.16);border-color:rgba(77,209,190,.42)}.language-option span{display:block;font-weight:850;line-height:1.25}.language-option small{display:block;margin-top:.18rem;color:rgba(255,255,255,.72);font-weight:700}.language-page-grid{display:grid;grid-template-columns:repeat(auto-fit,minmax(13rem,1fr));gap:.85rem;margin-top:1rem}.language-page-grid a{text-decoration:none}.sr-only{position:absolute!important;width:1px!important;height:1px!important;padding:0!important;margin:-1px!important;overflow:hidden!important;clip:rect(0,0,0,0)!important;white-space:nowrap!important;border:0!important}@media(max-width:900px){.language-picker{margin-left:0}.language-panel{right:auto;left:0}}

@media (max-width: 720px) {
  body {
    padding-bottom: 98px;
  }

  .language-picker {
    z-index: 1100;
  }

  .language-panel {
    position: fixed;
    top: calc(100% + 8px);
    left: 12px;
    right: 12px;
    width: auto;
    max-height: min(28rem, calc(100vh - var(--offer-banner-height) - 90px));
    z-index: 1101;
  }
}
/* Version 5 screenshots: separate responsive images with captions in page text. */
body.marketing-page .image-refresh-hero .marketing-hero-grid {
  grid-template-columns: minmax(0, 0.8fr) minmax(0, 1.4fr);
  grid-template-areas: "copy visual" "proof visual" "support support";
  grid-template-rows: min-content 1fr auto;
  gap: 12px 32px;
}

body.marketing-page .image-refresh-hero .hero-copy h1 {
  max-width: 18ch;
  font-size: 42px;
  line-height: 1.08;
  letter-spacing: 0;
}

body.marketing-page .image-refresh-hero .hero-copy p {
  margin-bottom: 12px;
}

.image-refresh-hero .hero-support {
  width: 100%;
  max-width: none;
}

.image-refresh-hero .marketing-hero-grid > .hero-proof {
  grid-area: proof;
  margin-top: 0;
  align-self: start;
}

.image-refresh-hero .hero-support > p {
  max-width: 85ch;
  font-size: 15px;
  line-height: 1.6;
}

.image-refresh-hero .hero-secondary-cta {
  padding: 6px 0;
  border: 0;
  border-radius: 0;
  background: none;
  box-shadow: none;
  text-decoration: underline;
  text-underline-offset: 4px;
}

body.marketing-page .image-refresh-hero .hero-screens {
  display: grid;
  width: 100%;
  max-width: 640px;
  justify-self: center;
  grid-template-columns: minmax(0, 1660fr) minmax(0, 2868fr) minmax(0, 1420fr);
  gap: 12px;
  padding: 16px;
  border: 1px solid #b8cfca;
  border-radius: 8px;
  background: #e6efeb;
  color: #21403e;
  box-shadow: 0 18px 40px rgba(5, 19, 20, 0.18);
  align-items: start;
  direction: ltr;
}

.hero-shot, .hero-single-shot, .website-shot {
  margin: 0;
  min-width: 0;
}

.hero-screens .shot-language-note { grid-column: 1 / -1; }
.hero-screens .hero-weight { padding-top: 24px; }

.shot-frame {
  overflow: hidden;
  border-radius: 8px;
  aspect-ratio: 1320 / 2868;
}

.shot-frame.shot-photo-crop { aspect-ratio: 1320 / 1660; }
.shot-photo-crop img { transform: translateY(-6.5%); }
.shot-frame img, .hero-single-shot img { display: block; width: 100%; height: auto; }

.hero-shot figcaption, .hero-single-shot figcaption {
  padding-top: 12px;
  font-size: 14px;
  line-height: 1.45;
  overflow-wrap: break-word;
  letter-spacing: 0;
}

html[dir="rtl"] .hero-shot figcaption,
html[dir="rtl"] .hero-screens .shot-language-note {
  direction: rtl;
}

.hero-single-shot {
  width: min(100%, 280px);
  margin-inline: auto;
}

.hero-single-shot img { border-radius: 8px; }
.shot-language-note { font-size: 13px; line-height: 1.5; margin: 12px 0 0; }

.website-shot-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 36px;
  align-items: start;
}

.website-shot { display: grid; gap: 12px; align-content: start; }
.website-shot picture { display: block; width: min(100%, 240px); margin-inline: auto; }
.website-shot img { width: 100%; height: auto; display: block; border-radius: 8px; }
.website-shot figcaption { font-size: 16px; line-height: 1.5; font-weight: 600; letter-spacing: 0; }
.website-shot .shot-safety { margin: 0; font-size: 13px; line-height: 1.5; }
.shot-enlarge { width: fit-content; font-size: 14px; text-decoration: underline; text-underline-offset: 3px; }
.website-shot-grid:empty { display: none; }

body.marketing-page .image-refresh-hero.hero-text-only .marketing-hero-grid {
  grid-template-columns: minmax(0, 1fr);
  grid-template-areas: "copy" "support";
}

body.marketing-page .image-refresh-hero.hero-text-only .hero-copy { max-width: 850px; }

@media (max-width: 980px) {
  body.marketing-page .image-refresh-hero .marketing-hero-grid {
    grid-template-columns: minmax(0, 1fr);
    grid-template-areas: "copy" "visual" "proof" "support";
    grid-template-rows: auto;
    gap: 20px;
  }
  body.marketing-page .image-refresh-hero .hero-screens { max-width: 680px; }
}

@media (max-width: 720px) {
  body.marketing-page .image-refresh-hero .hero-copy h1 {
    font-size: 28px;
    max-width: none;
    letter-spacing: 0;
    overflow-wrap: break-word;
  }
  body.marketing-page .image-refresh-hero .hero-screens {
    max-width: none;
    grid-template-columns: minmax(0, 1660fr) minmax(0, 2868fr);
    gap: 8px;
    padding: 10px;
  }
  .hero-shot figcaption { font-size: 12px; padding-top: 8px; }
  .hero-screens .hero-weight { display: none; }
  .hero-screens .shot-language-note { margin-top: 4px; }
  .website-shot-grid { grid-template-columns: minmax(0, 1fr); gap: 36px; }
  .website-shot { max-width: 340px; width: 100%; margin-inline: auto; }
  .website-shot picture { width: min(100%, 280px); }
  .image-refresh-hero .hero-proof { margin-top: 10px; padding-top: 10px; }
  .image-refresh-hero .hero-proof strong { font-size: 24px; }
}
