:root {
  --bg: #f7fafa;
  --bg-soft: #eef4f4;
  --surface: rgba(255, 255, 255, 0.9);
  --surface-strong: #ffffff;
  --surface-muted: #f4f8f8;
  --text: #1a3c40;
  --muted: #8e9a9a;
  --line: rgba(26, 60, 64, 0.1);
  --primary: #0d7377;
  --primary-strong: #094f53;
  --primary-soft: #e8f4f2;
  --accent: #f09a7e;
  --accent-start: #f4845f;
  --accent-end: #f6b09a;
  --success: #2ecc71;
  --warning: #f39c12;
  --danger: #e74c3c;
  --shadow-lg: 0 28px 70px rgba(16, 50, 54, 0.14);
  --shadow-md: 0 18px 44px rgba(16, 50, 54, 0.1);
  --radius-xl: 32px;
  --radius-lg: 24px;
  --radius-md: 18px;
  --radius-sm: 14px;
  --container: 1280px;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  min-height: 100vh;
  color: var(--text);
  font-family: "Manrope", system-ui, sans-serif;
  background:
    radial-gradient(circle at top left, rgba(13, 115, 119, 0.14), transparent 26%),
    radial-gradient(circle at 92% 8%, rgba(244, 132, 95, 0.14), transparent 22%),
    radial-gradient(circle at 50% 120%, rgba(240, 154, 126, 0.18), transparent 30%),
    linear-gradient(180deg, #fbfdfd 0%, #eef4f4 100%);
  position: relative;
}

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

button {
  font: inherit;
}

.ambient {
  position: fixed;
  pointer-events: none;
  filter: blur(96px);
  opacity: 0.45;
  z-index: 0;
}

.ambient-left {
  top: -140px;
  left: -180px;
  width: 420px;
  height: 420px;
  background: rgba(73, 214, 200, 0.34);
}

.ambient-right {
  top: 260px;
  right: -170px;
  width: 360px;
  height: 360px;
  background: rgba(240, 154, 126, 0.28);
}

.ambient-bottom {
  bottom: -180px;
  left: 28%;
  width: 440px;
  height: 440px;
  background: rgba(13, 115, 119, 0.14);
}

.site-header,
.site-footer,
.hero-grid,
.section-grid,
.section-split,
.pro-section,
.legal-section,
.legal-page {
  width: min(calc(100% - 32px), var(--container));
  margin-inline: auto;
  position: relative;
  z-index: 1;
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 10;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 18px;
  padding: 18px 0;
  backdrop-filter: blur(24px);
}

.compact-header {
  padding-bottom: 12px;
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 14px;
}

.brand-logo {
  width: 48px;
  height: 48px;
  display: block;
  flex: 0 0 auto;
}

.brand-name {
  display: block;
  font-family: "Sora", system-ui, sans-serif;
  font-size: 1.12rem;
  font-weight: 800;
  letter-spacing: -0.04em;
}

.brand-subtitle {
  display: block;
  margin-top: 2px;
  font-size: 0.86rem;
  color: var(--muted);
}

.site-nav {
  display: inline-flex;
  align-items: center;
  gap: 18px;
  padding: 8px 12px;
  border: 1px solid rgba(255, 255, 255, 0.6);
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.52);
  box-shadow: 0 10px 24px rgba(10, 39, 42, 0.05);
}

.site-nav a,
.footer-links a {
  color: var(--muted);
  transition: color 140ms ease;
}

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

.language-switcher {
  display: inline-flex;
  gap: 6px;
  padding: 6px;
  border-radius: 999px;
  border: 1px solid rgba(255, 255, 255, 0.64);
  background: rgba(255, 255, 255, 0.62);
  box-shadow: 0 10px 24px rgba(10, 39, 42, 0.05);
}

.language-switcher button {
  border: 0;
  border-radius: 999px;
  padding: 8px 12px;
  background: transparent;
  color: var(--muted);
  font-size: 0.85rem;
  font-weight: 800;
  cursor: pointer;
}

.language-switcher button.is-active {
  background: var(--primary);
  color: #fff;
}

.redirect-banner {
  position: sticky;
  top: 10px;
  z-index: 20;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  width: min(calc(100% - 32px), 980px);
  margin: 12px auto 0;
  padding: 14px 18px;
  border-radius: 22px;
  border: 1px solid rgba(255, 255, 255, 0.64);
  background: rgba(255, 255, 255, 0.86);
  box-shadow: var(--shadow-md);
  backdrop-filter: blur(24px);
}

.redirect-banner span {
  display: block;
  margin-top: 4px;
  color: var(--muted);
}

.redirect-banner.is-hidden {
  display: none;
}

.redirect-actions {
  display: inline-flex;
  gap: 10px;
  flex-wrap: wrap;
}

.home-main {
  padding-bottom: 44px;
}

.hero-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 22px;
  align-items: start;
  padding: 34px 0 22px;
}

.card-shell {
  border-radius: var(--radius-xl);
  border: 1px solid rgba(255, 255, 255, 0.66);
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.94), rgba(251, 253, 253, 0.84));
  box-shadow: var(--shadow-lg);
  backdrop-filter: blur(24px);
}

.hero-copy {
  padding: 34px;
}

.hero-copy,
.showcase-panel,
.pro-card,
.legal-card {
  width: 100%;
}

.hero-pill,
.section-kicker,
.screen-label {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 10px 14px;
  border-radius: 999px;
  background: rgba(13, 115, 119, 0.08);
  color: var(--primary);
  font-size: 0.82rem;
  font-weight: 800;
  letter-spacing: 0.02em;
  text-transform: uppercase;
}

.hero-copy h1,
.showcase-header h2,
.section-grid h2,
.section-split h2,
.pro-card h2,
.legal-card h2,
.legal-hero-card h1,
.screen-copy h3 {
  font-family: "Sora", system-ui, sans-serif;
  letter-spacing: -0.05em;
  line-height: 1.04;
}

.hero-copy h1 {
  margin: 18px 0 16px;
  font-size: clamp(2.8rem, 4.8vw, 5rem);
}

.hero-text,
.section-copy,
.pro-card p,
.legal-card p,
.legal-intro,
.legal-copy p,
.screen-body {
  color: var(--muted);
  line-height: 1.72;
  font-size: 1.03rem;
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-top: 28px;
}

.solid-button,
.ghost-button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 54px;
  padding: 0 20px;
  border-radius: 18px;
  font-weight: 800;
  transition: transform 160ms ease, box-shadow 160ms ease, background 160ms ease;
}

.solid-button {
  background: linear-gradient(135deg, var(--primary) 0%, #1aa6a2 100%);
  color: #fff;
  box-shadow: 0 18px 32px rgba(13, 115, 119, 0.22);
}

.ghost-button {
  background: rgba(255, 255, 255, 0.76);
  border: 1px solid var(--line);
  color: var(--text);
}

.solid-button:hover,
.ghost-button:hover,
.store-link:hover,
.tab-button:hover,
.feature-card:hover,
.timeline-card:hover,
.pro-list-item:hover {
  transform: translateY(-2px);
}

.store-row {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 12px;
  margin-top: 22px;
}

.store-link {
  padding: 16px 18px;
  border-radius: 22px;
  border: 1px solid var(--line);
  background: rgba(255, 255, 255, 0.78);
  box-shadow: 0 14px 30px rgba(16, 50, 54, 0.08);
}

.store-label {
  display: block;
  margin-bottom: 6px;
  font-size: 0.84rem;
  color: var(--muted);
}

.hero-metrics,
.hero-trust,
.screen-bullets,
.screen-meta,
.feature-grid,
.timeline-list,
.pro-list,
.legal-content {
  display: grid;
  gap: 14px;
}

.hero-metrics {
  grid-template-columns: repeat(3, minmax(0, 1fr));
  margin-top: 24px;
}

.metric-chip {
  padding: 16px 16px 14px;
  border-radius: 20px;
  background: rgba(248, 251, 251, 0.92);
  border: 1px solid rgba(26, 60, 64, 0.08);
}

.metric-chip strong {
  display: block;
  font-family: "Sora", system-ui, sans-serif;
  font-size: 1.18rem;
  letter-spacing: -0.04em;
}

.metric-chip span {
  display: block;
  margin-top: 4px;
  color: var(--muted);
  font-size: 0.88rem;
}

.hero-trust {
  grid-template-columns: repeat(3, minmax(0, 1fr));
  margin-top: 14px;
}

.trust-chip {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 12px 14px;
  border-radius: 16px;
  background: rgba(13, 115, 119, 0.05);
  border: 1px solid rgba(13, 115, 119, 0.08);
  color: var(--text);
  font-weight: 700;
  font-size: 0.92rem;
}

.trust-chip::before {
  content: "";
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--accent-start), var(--accent-end));
}

.showcase-panel {
  padding: 30px;
  overflow: hidden;
}

.showcase-header {
  display: flex;
  flex-direction: column;
  gap: 18px;
  align-items: stretch;
}

.showcase-header h2 {
  margin: 16px 0 0;
  font-size: clamp(2rem, 3.8vw, 3rem);
}

.showcase-tabs {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(180px, 1fr));
  gap: 12px;
  width: 100%;
  max-width: none;
}

.tab-button {
  border: 0;
  cursor: pointer;
  min-height: 94px;
  padding: 16px 18px;
  border-radius: 24px;
  background: rgba(240, 244, 244, 0.8);
  color: var(--muted);
  text-align: left;
  transition: transform 150ms ease, background 150ms ease, color 150ms ease, box-shadow 150ms ease;
}

.tab-button strong {
  display: block;
  font-size: 1rem;
  color: inherit;
}

.tab-button span {
  display: block;
  margin-top: 6px;
  font-size: 0.82rem;
  opacity: 0.9;
}

.tab-button.is-active {
  background: linear-gradient(135deg, rgba(13, 115, 119, 0.96), rgba(26, 166, 162, 0.94));
  color: #fff;
  box-shadow: 0 12px 30px rgba(13, 115, 119, 0.18);
}

.showcase-grid {
  display: grid;
  grid-template-columns: minmax(0, 1.05fr) minmax(320px, 0.95fr);
  gap: 32px;
  align-items: center;
  margin-top: 28px;
}

.device-orbit {
  position: relative;
  min-height: 0;
  padding: 24px 10px 18px;
  display: flex;
  align-items: center;
  justify-content: center;
}

.floating-tag {
  position: absolute;
  z-index: 2;
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 12px 14px;
  border-radius: 18px;
  background: rgba(255, 255, 255, 0.82);
  border: 1px solid rgba(255, 255, 255, 0.72);
  box-shadow: 0 18px 32px rgba(13, 46, 50, 0.12);
  color: var(--text);
  font-weight: 700;
  backdrop-filter: blur(24px);
}

.floating-tag::before {
  content: "";
  width: 9px;
  height: 9px;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--primary), #1aa6a2);
}

.floating-tag-left {
  top: 70px;
  left: 10px;
}

.floating-tag-right {
  right: 6px;
  bottom: 90px;
}

.app-device {
  position: relative;
  width: min(100%, 390px);
  aspect-ratio: 1260 / 2736;
  border-radius: 42px;
  padding: 8px;
  background:
    linear-gradient(160deg, #0f2020 0%, #132a2b 55%, #183334 100%);
  box-shadow:
    0 48px 80px rgba(11, 36, 40, 0.28),
    inset 0 1px 0 rgba(255, 255, 255, 0.16);
}

.device-screen {
  position: relative;
  height: 100%;
  overflow: hidden;
  border-radius: 36px;
  background: #0d1516;
  border: 1px solid rgba(255, 255, 255, 0.06);
}

.showcase-shot {
  height: 100%;
  animation: screen-in 420ms cubic-bezier(0.2, 0.8, 0.2, 1);
}

.showcase-shot img {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: contain;
  object-position: top center;
}

.app-screen {
  height: 100%;
  animation: screen-in 420ms cubic-bezier(0.2, 0.8, 0.2, 1);
}

@keyframes screen-in {
  from {
    opacity: 0;
    transform: translateY(12px) scale(0.985);
  }
  to {
    opacity: 1;
    transform: translateY(0) scale(1);
  }
}

.screen-copy {
  padding: 12px 0;
}

.screen-copy h3 {
  margin: 18px 0 12px;
  font-size: clamp(1.8rem, 3vw, 2.6rem);
}

.screen-bullets {
  margin-top: 18px;
}

.screen-bullet,
.screen-meta-chip {
  border-radius: 18px;
  background: rgba(255, 255, 255, 0.82);
  border: 1px solid var(--line);
  box-shadow: 0 12px 28px rgba(16, 50, 54, 0.06);
}

.screen-bullet {
  padding: 14px 16px;
}

.screen-bullet strong {
  display: block;
  font-size: 0.98rem;
  margin-bottom: 6px;
}

.screen-bullet span {
  color: var(--muted);
  line-height: 1.6;
  font-size: 0.92rem;
}

.screen-meta {
  grid-template-columns: repeat(2, minmax(0, 1fr));
  margin-top: 16px;
}

.screen-meta-chip {
  padding: 14px 16px;
}

.screen-meta-chip strong {
  display: block;
  font-family: "Sora", system-ui, sans-serif;
  font-size: 1rem;
}

.screen-meta-chip span {
  display: block;
  margin-top: 4px;
  color: var(--muted);
  font-size: 0.82rem;
}

.section-grid,
.section-split,
.pro-section,
.legal-section {
  padding: 32px 0;
}

.section-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 22px;
  align-items: start;
}

.section-grid h2,
.section-split h2,
.pro-card h2,
.legal-card h2,
.legal-hero-card h1 {
  margin: 16px 0 12px;
  font-size: clamp(2rem, 3.7vw, 3rem);
}

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

.feature-card,
.timeline-card,
.pro-list-item,
.legal-copy,
.legal-card,
.pro-card,
.legal-hero-card {
  border-radius: var(--radius-lg);
  border: 1px solid rgba(255, 255, 255, 0.72);
  background: rgba(255, 255, 255, 0.84);
  box-shadow: var(--shadow-md);
}

.feature-card,
.timeline-card {
  padding: 22px;
}

.feature-card h3,
.timeline-card h3,
.legal-copy h2 {
  margin: 0 0 10px;
  font-family: "Sora", system-ui, sans-serif;
  font-size: 1.1rem;
  letter-spacing: -0.04em;
}

.feature-card p,
.timeline-card p {
  margin: 0;
  color: var(--muted);
  line-height: 1.68;
}

.section-split {
  display: grid;
  grid-template-columns: 1fr;
  gap: 22px;
  align-items: start;
}

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

.timeline-card {
  position: relative;
  overflow: hidden;
}

.timeline-step {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 34px;
  height: 34px;
  border-radius: 12px;
  margin-bottom: 14px;
  background: linear-gradient(135deg, var(--accent-start), var(--accent-end));
  color: #fff;
  font-family: "Sora", system-ui, sans-serif;
  font-weight: 800;
}

.pro-card,
.legal-card,
.legal-hero-card {
  padding: 28px;
}

.pro-pill {
  background: rgba(240, 154, 126, 0.12);
  color: var(--accent-start);
}

.pro-list {
  margin-top: 20px;
}

.pro-list-item {
  padding: 16px 18px;
  color: var(--text);
}

.pro-list-item strong {
  display: block;
  margin-bottom: 6px;
  font-size: 0.98rem;
}

.pro-list-item span {
  color: var(--muted);
  line-height: 1.6;
  font-size: 0.92rem;
}

.legal-page {
  padding: 24px 0 56px;
}

.legal-hero {
  padding: 10px 0 14px;
}

.legal-intro,
.legal-updated {
  max-width: 760px;
}

.legal-updated {
  color: var(--muted);
  font-weight: 700;
  margin-bottom: 0;
}

.legal-content {
  margin-top: 14px;
}

.legal-copy {
  padding: 26px;
}

.legal-copy p {
  margin: 0 0 12px;
}

.site-footer {
  display: flex;
  justify-content: space-between;
  gap: 22px;
  padding: 26px 0 40px;
  color: var(--muted);
}

.site-footer strong {
  display: block;
  margin-bottom: 8px;
  color: var(--text);
}

.footer-links {
  display: flex;
  flex-wrap: wrap;
  gap: 16px;
  align-items: flex-start;
}

.mock-scroll {
  height: 100%;
  overflow: hidden;
  position: relative;
}

.mock-screen-body {
  padding: 20px 18px 0;
}

.mock-large-header {
  margin-bottom: 18px;
}

.mock-large-header h4 {
  margin: 0;
  font-family: "Sora", system-ui, sans-serif;
  font-size: 1.66rem;
  letter-spacing: -0.05em;
  color: var(--text);
}

.mock-large-header p {
  margin: 4px 0 0;
  color: var(--muted);
  font-size: 0.85rem;
}

.mock-hero-card {
  padding: 18px;
  border-radius: 24px;
  background: linear-gradient(135deg, var(--accent-start), var(--accent-end));
  color: #fff;
  box-shadow: 0 24px 44px rgba(244, 132, 95, 0.26);
}

.mock-hero-card .eyebrow {
  font-size: 0.78rem;
  text-transform: uppercase;
  opacity: 0.92;
  letter-spacing: 0.04em;
}

.mock-hero-value {
  margin-top: 10px;
  font-family: "Sora", system-ui, sans-serif;
  font-size: 2.2rem;
  line-height: 1;
  letter-spacing: -0.06em;
}

.mock-hero-meta {
  display: flex;
  justify-content: space-between;
  gap: 10px;
  margin-top: 12px;
  font-size: 0.84rem;
  opacity: 0.92;
}

.mock-metric-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 12px;
  margin-top: 14px;
}

.mock-metric-card {
  padding: 14px;
  border-radius: 20px;
  background: var(--surface-strong);
  border: 1px solid rgba(26, 60, 64, 0.06);
  box-shadow: 0 10px 22px rgba(12, 37, 40, 0.06);
}

.mock-metric-card strong {
  display: block;
  font-family: "Sora", system-ui, sans-serif;
  font-size: 1.08rem;
  color: var(--text);
}

.mock-metric-card span {
  display: block;
  margin-top: 4px;
  color: var(--muted);
  font-size: 0.8rem;
}

.mock-list-card {
  margin-top: 14px;
  padding: 12px 14px;
  border-radius: 24px;
  background: var(--surface-strong);
  border: 1px solid rgba(26, 60, 64, 0.06);
  box-shadow: 0 10px 24px rgba(12, 37, 40, 0.06);
}

.mock-list-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 10px;
}

.mock-list-header strong {
  font-size: 0.92rem;
}

.mock-list-row {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 10px;
  padding: 10px 0;
}

.mock-list-row + .mock-list-row {
  border-top: 1px solid rgba(26, 60, 64, 0.06);
}

.mock-row-left {
  display: flex;
  align-items: center;
  gap: 10px;
  min-width: 0;
}

.mock-app-dot,
.mock-platform-badge {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  color: #fff;
  font-weight: 800;
  flex: 0 0 auto;
}

.mock-app-dot {
  width: 34px;
  height: 34px;
  border-radius: 10px;
  font-size: 0.88rem;
}

.mock-app-dot.is-teal {
  background: linear-gradient(135deg, var(--primary), #1aa6a2);
}

.mock-app-dot.is-green {
  background: linear-gradient(135deg, #43b02a, #67cb52);
}

.mock-app-dot.is-red {
  background: linear-gradient(135deg, #ff3008, #ff6b52);
}

.mock-app-dot.is-orange {
  background: linear-gradient(135deg, var(--accent-start), var(--accent-end));
}

.mock-app-dot.is-dark {
  background: linear-gradient(135deg, #1a3c40, #35595d);
}

.mock-row-label strong,
.mock-row-label span {
  display: block;
}

.mock-row-label strong {
  font-size: 0.9rem;
  color: var(--text);
}

.mock-row-label span {
  margin-top: 2px;
  color: var(--muted);
  font-size: 0.78rem;
}

.mock-row-value {
  font-size: 0.9rem;
  font-weight: 800;
  color: var(--text);
}

.mock-tab-bar {
  position: absolute;
  left: 16px;
  right: 16px;
  bottom: 14px;
  display: grid;
  grid-template-columns: repeat(5, minmax(0, 1fr));
  align-items: center;
  gap: 8px;
  padding: 10px 14px;
  border-radius: 24px;
  background: rgba(255, 255, 255, 0.94);
  border: 1px solid rgba(26, 60, 64, 0.08);
  box-shadow: 0 18px 44px rgba(12, 37, 40, 0.12);
}

.mock-tab {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 6px;
  color: #93a2a2;
  font-size: 0.7rem;
  font-weight: 700;
}

.mock-tab::before {
  content: "";
  width: 18px;
  height: 18px;
  border-radius: 6px;
  background: currentColor;
  opacity: 0.28;
}

.mock-tab.is-active {
  color: var(--primary);
}

.mock-tab.is-plus {
  position: relative;
}

.mock-tab.is-plus::before {
  width: 52px;
  height: 52px;
  border-radius: 18px;
  background: linear-gradient(135deg, var(--accent-start), var(--accent-end));
  opacity: 1;
  box-shadow: 0 18px 34px rgba(244, 132, 95, 0.28);
}

.mock-tab.is-plus::after {
  content: "+";
  position: absolute;
  top: -2px;
  font-size: 1.8rem;
  font-weight: 600;
  color: #fff;
}

.mock-tab.is-plus span {
  visibility: hidden;
}

.mock-session-screen {
  background:
    radial-gradient(circle at 20% 12%, rgba(73, 214, 200, 0.18), transparent 18%),
    radial-gradient(circle at 86% 10%, rgba(240, 154, 126, 0.18), transparent 20%),
    linear-gradient(180deg, #132a2b 0%, #172f30 100%);
  color: #edf7f6;
}

.mock-dark-map {
  position: relative;
  height: 236px;
  background:
    radial-gradient(circle at 20% 26%, rgba(73, 214, 200, 0.24), transparent 18%),
    radial-gradient(circle at 82% 18%, rgba(240, 154, 126, 0.22), transparent 18%),
    linear-gradient(135deg, rgba(8, 31, 34, 1), rgba(19, 61, 63, 0.96));
  overflow: hidden;
}

.mock-dark-map::before,
.mock-dark-map::after {
  content: "";
  position: absolute;
  inset: 20px;
  border-radius: 24px;
  opacity: 0.16;
}

.mock-dark-map::before {
  background:
    linear-gradient(45deg, transparent 0 46%, rgba(255, 255, 255, 0.75) 46% 48%, transparent 48% 100%),
    linear-gradient(135deg, transparent 0 58%, rgba(255, 255, 255, 0.68) 58% 60%, transparent 60% 100%);
}

.mock-route-svg {
  position: absolute;
  inset: 0;
}

.mock-route-svg svg {
  width: 100%;
  height: 100%;
}

.mock-session-top {
  position: absolute;
  top: 18px;
  left: 18px;
  right: 18px;
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
}

.glass-chip,
.glass-button,
.glass-summary {
  border: 1px solid rgba(255, 255, 255, 0.12);
  background: rgba(255, 255, 255, 0.08);
  backdrop-filter: blur(20px);
}

.glass-chip {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 10px 12px;
  border-radius: 999px;
  color: #fff;
  font-size: 0.8rem;
  font-weight: 800;
}

.glass-button {
  width: 40px;
  height: 40px;
  border-radius: 50%;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  color: #fff;
  font-size: 1.1rem;
  font-weight: 800;
}

.mock-session-body {
  padding: 18px 18px 110px;
}

.mock-session-title {
  font-family: "Sora", system-ui, sans-serif;
  font-size: 2.1rem;
  letter-spacing: -0.05em;
  color: #fff;
}

.mock-session-subtitle {
  margin-top: 4px;
  color: rgba(237, 247, 246, 0.72);
  font-size: 0.86rem;
}

.mock-session-stat-list {
  display: grid;
  gap: 12px;
  margin-top: 18px;
}

.mock-session-stat {
  padding: 14px 16px;
  border-radius: 22px;
  background: rgba(255, 255, 255, 0.06);
  border: 1px solid rgba(255, 255, 255, 0.06);
}

.mock-session-stat strong {
  display: block;
  font-family: "Sora", system-ui, sans-serif;
  font-size: 1.1rem;
  color: #fff;
}

.mock-session-stat span {
  display: block;
  margin-top: 5px;
  font-size: 0.8rem;
  color: rgba(237, 247, 246, 0.68);
}

.mock-platform-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 10px;
  margin-top: 14px;
}

.mock-platform-chip {
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 12px;
  border-radius: 18px;
  background: rgba(255, 255, 255, 0.07);
  border: 1px solid rgba(255, 255, 255, 0.06);
}

.mock-platform-badge {
  width: 32px;
  height: 32px;
  border-radius: 10px;
  font-size: 0.82rem;
}

.mock-platform-badge.is-green {
  background: #43b02a;
}

.mock-platform-badge.is-red {
  background: #ff3008;
}

.mock-platform-badge.is-orange {
  background: #ff5a00;
}

.mock-platform-chip strong {
  display: block;
  color: #fff;
  font-size: 0.86rem;
}

.mock-platform-chip span {
  display: block;
  margin-top: 2px;
  font-size: 0.74rem;
  color: rgba(237, 247, 246, 0.68);
}

.mock-session-actions {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 12px;
  margin-top: 14px;
}

.mock-dark-button,
.mock-accent-button {
  min-height: 48px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border-radius: 18px;
  font-weight: 800;
  font-size: 0.94rem;
}

.mock-dark-button {
  background: rgba(255, 255, 255, 0.08);
  color: #fff;
}

.mock-accent-button {
  background: linear-gradient(135deg, var(--accent-start), var(--accent-end));
  color: #fff;
  box-shadow: 0 18px 34px rgba(244, 132, 95, 0.28);
}

.mock-map-screen {
  position: relative;
  background:
    radial-gradient(circle at 18% 24%, rgba(73, 214, 200, 0.14), transparent 18%),
    radial-gradient(circle at 84% 12%, rgba(240, 154, 126, 0.16), transparent 18%),
    linear-gradient(135deg, #f2f7f7 0%, #ecf3f3 100%);
}

.mock-map-canvas {
  position: absolute;
  inset: 0;
  background:
    linear-gradient(45deg, transparent 0 48%, rgba(13, 115, 119, 0.08) 48% 49%, transparent 49% 100%),
    linear-gradient(130deg, transparent 0 58%, rgba(26, 60, 64, 0.08) 58% 59%, transparent 59% 100%),
    linear-gradient(180deg, #eff5f5 0%, #e5eded 100%);
}

.mock-map-route {
  position: absolute;
  inset: 0;
}

.mock-map-route svg {
  width: 100%;
  height: 100%;
}

.mock-map-toolbar {
  position: absolute;
  top: 18px;
  left: 18px;
  right: 18px;
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.mock-map-title {
  padding: 12px 14px;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.82);
  border: 1px solid rgba(255, 255, 255, 0.74);
  font-weight: 800;
  color: var(--text);
  box-shadow: 0 14px 30px rgba(16, 50, 54, 0.08);
}

.glass-summary {
  position: absolute;
  left: 18px;
  right: 18px;
  bottom: 22px;
  padding: 16px;
  border-radius: 24px;
  color: #fff;
}

.glass-summary strong {
  display: block;
  font-size: 1rem;
}

.glass-summary span {
  display: block;
  margin-top: 6px;
  font-size: 0.84rem;
  color: rgba(255, 255, 255, 0.82);
}

.glass-summary-row {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 10px;
  margin-top: 14px;
}

.glass-summary-chip {
  padding: 12px;
  border-radius: 18px;
  background: rgba(255, 255, 255, 0.08);
}

.glass-summary-chip b {
  display: block;
  font-size: 0.95rem;
}

.glass-summary-chip small {
  display: block;
  margin-top: 4px;
  font-size: 0.74rem;
  color: rgba(255, 255, 255, 0.74);
}

.mock-backup-screen {
  background: linear-gradient(180deg, #f7fafa 0%, #eef4f4 100%);
}

.mock-pro-card {
  margin-top: 14px;
  padding: 16px;
  border-radius: 24px;
  background: linear-gradient(180deg, rgba(255, 255, 255, 0.94), rgba(247, 250, 250, 0.88));
  border: 1px solid rgba(26, 60, 64, 0.06);
  box-shadow: 0 12px 26px rgba(16, 50, 54, 0.08);
}

.mock-pill {
  display: inline-flex;
  align-items: center;
  padding: 8px 10px;
  border-radius: 999px;
  background: rgba(240, 154, 126, 0.14);
  color: var(--accent-start);
  font-size: 0.74rem;
  font-weight: 800;
  text-transform: uppercase;
}

.mock-pro-card h5 {
  margin: 12px 0 8px;
  font-family: "Sora", system-ui, sans-serif;
  font-size: 1.12rem;
  letter-spacing: -0.04em;
}

.mock-pro-card p {
  margin: 0;
  color: var(--muted);
  line-height: 1.6;
  font-size: 0.82rem;
}

.mock-plan-stack {
  display: grid;
  gap: 10px;
  margin-top: 14px;
}

.mock-plan-card {
  position: relative;
  padding: 14px 16px;
  border-radius: 20px;
  border: 1px solid rgba(26, 60, 64, 0.08);
  background: rgba(255, 255, 255, 0.92);
}

.mock-plan-card.is-selected {
  border-color: rgba(13, 115, 119, 0.34);
  background: rgba(232, 244, 242, 0.88);
}

.mock-plan-card strong {
  display: block;
  font-size: 0.98rem;
}

.mock-plan-card span {
  display: block;
  margin-top: 4px;
  color: var(--muted);
  font-size: 0.78rem;
}

.mock-savings {
  position: absolute;
  top: 14px;
  right: 14px;
  padding: 6px 8px;
  border-radius: 999px;
  background: rgba(13, 115, 119, 0.1);
  color: var(--primary);
  font-size: 0.72rem;
  font-weight: 800;
}

.mock-check {
  position: absolute;
  bottom: 14px;
  right: 14px;
  width: 22px;
  height: 22px;
  border-radius: 50%;
  background: var(--primary);
  color: #fff;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-size: 0.74rem;
  font-weight: 900;
}

.mock-inline-actions {
  display: flex;
  gap: 10px;
  margin-top: 14px;
}

.mock-inline-button,
.mock-inline-button-secondary {
  min-height: 44px;
  padding: 0 14px;
  border-radius: 16px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-size: 0.84rem;
  font-weight: 800;
}

.mock-inline-button {
  background: linear-gradient(135deg, var(--primary), #1aa6a2);
  color: #fff;
}

.mock-inline-button-secondary {
  border: 1px solid rgba(26, 60, 64, 0.08);
  background: rgba(255, 255, 255, 0.92);
  color: var(--text);
}

@media (min-width: 1440px) {
  :root {
    --container: 1400px;
  }

  .hero-copy,
  .showcase-panel,
  .pro-card,
  .legal-card,
  .legal-hero-card {
    padding: 38px;
  }

  .hero-copy h1 {
    font-size: clamp(3.2rem, 4.5vw, 5.4rem);
  }

  .showcase-grid {
    grid-template-columns: minmax(720px, 1.1fr) minmax(380px, 0.9fr);
    gap: 40px;
  }

  .device-orbit {
    padding-top: 28px;
  }

  .app-device {
    width: min(100%, 410px);
  }

  .screen-copy h3 {
    font-size: clamp(2rem, 2.6vw, 3rem);
  }

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

@media (min-width: 1720px) {
  :root {
    --container: 1500px;
  }

  .showcase-grid {
    grid-template-columns: minmax(780px, 1.1fr) minmax(420px, 0.9fr);
    gap: 44px;
  }

  .device-orbit {
    padding-top: 30px;
  }

  .app-device {
    width: min(100%, 430px);
  }

  .feature-grid,
  .timeline-list {
    gap: 18px;
  }
}

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

  .device-orbit {
    padding-top: 8px;
  }

  .app-device {
    width: min(100%, 380px);
  }
}

@media (max-width: 820px) {
  .site-header {
    flex-wrap: wrap;
  }

  .site-nav {
    order: 3;
    width: 100%;
    justify-content: center;
  }

  .hero-copy,
  .showcase-panel,
  .pro-card,
  .legal-card,
  .legal-hero-card,
  .legal-copy {
    padding: 22px;
  }

  .hero-metrics,
  .hero-trust,
  .screen-meta,
  .store-row,
  .mock-metric-grid,
  .mock-platform-grid,
  .mock-session-actions,
  .glass-summary-row {
    grid-template-columns: 1fr;
  }

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

  .app-device {
    width: min(100%, 360px);
  }

  .floating-tag {
    display: none;
  }
}

@media (max-width: 560px) {
  .hero-copy h1 {
    font-size: 2.6rem;
  }

  .showcase-header h2,
  .section-grid h2,
  .section-split h2,
  .pro-card h2,
  .legal-card h2,
  .legal-hero-card h1,
  .screen-copy h3 {
    font-size: 2rem;
  }

  .solid-button,
  .ghost-button,
  .store-link,
  .tab-button {
    width: 100%;
  }

  .hero-actions,
  .redirect-actions,
  .mock-inline-actions {
    flex-direction: column;
  }

  .feature-grid,
  .timeline-list {
    grid-template-columns: 1fr;
  }

  .app-device {
    width: min(100%, 328px);
  }

  .site-footer {
    flex-direction: column;
  }
}
