:root {
  --rf-bg-primary: #0d0d0d;
  --rf-bg-elevated: rgba(30, 30, 30, 0.6);
  --rf-bg-glass: rgba(30, 30, 30, 0.6);
  --rf-bg-glass-light: rgba(42, 42, 42, 0.5);
  --rf-bg-sheet: #1c1c1e;
  --rf-text-primary: #ffffff;
  --rf-text-secondary: #a0a0a0;
  --rf-text-tertiary: #666666;
  --rf-text-on-accent: #ffffff;
  --rf-accent: #e06a3c;
  --rf-accent-light: #f2a07e;
  --rf-accent-soft: rgba(224, 106, 60, 0.2);
  --rf-border: rgba(255, 255, 255, 0.1);
  --rf-border-glass: rgba(255, 255, 255, 0.08);
  --rf-danger: #ff4444;
  --rf-overlay-scrim: rgba(0, 0, 0, 0.34);
  --rf-max-width: 1120px;
  --rf-surface-solid: rgba(28, 28, 30, 0.94);
  --rf-surface-subtle: rgba(255, 255, 255, 0.035);
  --rf-hairline: rgba(255, 255, 255, 0.055);
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  min-width: 320px;
  background: var(--rf-bg-primary);
  color: var(--rf-text-primary);
  color-scheme: dark;
  font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  letter-spacing: 0;
}

body::before {
  position: fixed;
  inset: 0;
  z-index: -1;
  content: "";
  background:
    radial-gradient(circle at 50% 18%, rgba(255, 255, 255, 0.065), transparent 32%),
    linear-gradient(180deg, rgba(255, 255, 255, 0.018), transparent 360px),
    var(--rf-bg-primary);
}

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

a:hover {
  color: var(--rf-accent-light);
}

a:focus-visible,
button:focus-visible {
  outline: 2px solid var(--rf-accent-light);
  outline-offset: 4px;
}

p {
  margin: 0;
  color: var(--rf-text-secondary);
  line-height: 1.7;
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 10;
  border-bottom: 1px solid var(--rf-border-glass);
  background: rgba(13, 13, 13, 0.78);
  backdrop-filter: blur(22px) saturate(1.18);
}

.nav {
  display: grid;
  grid-template-columns: 1fr auto 1fr;
  align-items: center;
  width: min(100% - 32px, var(--rf-max-width));
  min-height: 68px;
  margin: 0 auto;
  gap: 20px;
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  font-weight: 700;
  letter-spacing: 0;
}

.brand img {
  width: 30px;
  height: 30px;
  border-radius: 8px;
}

.nav-links {
  display: flex;
  align-items: center;
  justify-self: center;
  gap: 24px;
  color: var(--rf-text-secondary);
  font-size: 14px;
  font-weight: 600;
}

.nav-actions {
  display: flex;
  align-items: center;
  justify-self: end;
  gap: 10px;
}

.language-menu {
  position: relative;
}

.language-trigger {
  display: inline-flex;
  align-items: center;
  justify-content: space-between;
  min-width: 76px;
  min-height: 38px;
  gap: 8px;
  padding: 0 10px 0 12px;
  border: 1px solid var(--rf-border);
  border-radius: 8px;
  color: var(--rf-text-primary);
  background: rgba(255, 255, 255, 0.025);
  cursor: pointer;
  font: inherit;
  font-size: 13px;
  font-weight: 700;
  transition: background-color 160ms ease, border-color 160ms ease, color 160ms ease;
}

.language-trigger::after {
  width: 6px;
  height: 6px;
  border-right: 1.5px solid currentColor;
  border-bottom: 1.5px solid currentColor;
  content: "";
  opacity: 0.72;
  transform: rotate(45deg) translateY(-2px);
  transition: transform 160ms ease;
}

.language-menu.is-open .language-trigger {
  border-color: rgba(242, 160, 126, 0.42);
  background: rgba(224, 106, 60, 0.12);
}

.language-menu.is-open .language-trigger::after {
  transform: rotate(225deg) translate(-1px, -1px);
}

.language-popover {
  position: absolute;
  top: calc(100% + 8px);
  right: 0;
  z-index: 30;
  display: grid;
  min-width: 168px;
  padding: 6px;
  border: 1px solid var(--rf-border);
  border-radius: 10px;
  background: rgba(18, 18, 18, 0.98);
  box-shadow: 0 8px 18px rgba(0, 0, 0, 0.32);
  opacity: 0;
  pointer-events: none;
  transform: translateY(-4px);
  transition: opacity 160ms ease, transform 160ms ease;
}

.language-menu.is-open .language-popover {
  opacity: 1;
  pointer-events: auto;
  transform: translateY(0);
}

.language-popover button {
  display: flex;
  align-items: center;
  justify-content: space-between;
  min-height: 36px;
  padding: 0 10px;
  border: 0;
  border-radius: 7px;
  color: var(--rf-text-secondary);
  background: transparent;
  cursor: pointer;
  font: inherit;
  font-size: 13px;
  font-weight: 650;
  text-align: left;
}

.language-popover button:hover,
.language-popover button.is-active {
  color: var(--rf-text-primary);
  background: rgba(255, 255, 255, 0.06);
}

.language-popover button.is-active::after {
  color: var(--rf-accent-light);
  content: "✓";
  font-size: 12px;
}

.app-store-badge {
  display: inline-flex;
  align-items: center;
  width: fit-content;
  border-radius: 8px;
  line-height: 0;
  transition: opacity 160ms ease, transform 160ms ease;
}

.app-store-badge:hover {
  opacity: 0.88;
}

.app-store-badge:active {
  transform: translateY(1px);
}

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

.hero-store-badge img {
  width: 164px;
}

.section {
  width: min(100% - 32px, var(--rf-max-width));
  margin: 0 auto;
  padding: 88px 0;
}

.hero {
  display: grid;
  grid-template-columns: minmax(0, 0.96fr) minmax(320px, 0.9fr);
  align-items: center;
  min-height: min(760px, calc(100vh - 68px));
  gap: 64px;
  padding-top: 54px;
  padding-bottom: 54px;
}

.hero-content {
  padding-bottom: 22px;
}

.eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  width: fit-content;
  margin-bottom: 18px;
  padding: 7px 10px;
  border: 1px solid var(--rf-border);
  border-radius: 100px;
  color: var(--rf-accent-light);
  background: var(--rf-accent-soft);
  font-size: 13px;
  font-weight: 700;
}

.eyebrow::before {
  width: 8px;
  height: 8px;
  border-radius: 999px;
  background: var(--rf-accent);
  content: "";
}

h1,
h2,
h3 {
  margin: 0;
  color: var(--rf-text-primary);
  line-height: 1.08;
}

h1 {
  max-width: 740px;
  font-size: clamp(40px, 6vw, 60px);
  font-weight: 820;
  letter-spacing: 0;
}

h2 {
  max-width: 720px;
  font-size: 30px;
}

h3 {
  font-size: 17px;
}

.hero-statement {
  max-width: 620px;
  margin-top: 14px;
  color: var(--rf-text-primary);
  font-size: clamp(22px, 2.8vw, 30px);
  font-weight: 750;
  line-height: 1.18;
  text-wrap: balance;
}

.hero-copy {
  max-width: 600px;
  margin-top: 18px;
  font-size: 17px;
  text-wrap: pretty;
}

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

.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 46px;
  padding: 0 18px;
  border-radius: 8px;
  font-size: 15px;
  font-weight: 700;
  transition: background-color 160ms ease, border-color 160ms ease, color 160ms ease, transform 160ms ease;
}

.button-primary {
  background: var(--rf-accent);
  color: var(--rf-text-on-accent);
}

.button-primary:hover {
  color: var(--rf-text-on-accent);
  background: #ee7b4e;
}

.button-secondary {
  border: 1px solid var(--rf-border);
  background: rgba(255, 255, 255, 0.035);
  color: var(--rf-text-primary);
}

.button-secondary:hover {
  border-color: rgba(242, 160, 126, 0.42);
  color: var(--rf-text-primary);
  background: rgba(224, 106, 60, 0.12);
}

.nav-cta {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 38px;
  padding: 0 13px;
  border-radius: 8px;
  color: var(--rf-text-on-accent);
  background: var(--rf-accent);
  font-size: 13px;
  font-weight: 750;
}

.nav-cta:hover {
  color: var(--rf-text-on-accent);
  background: #ee7b4e;
}

.button:active {
  transform: translateY(1px);
}

.meta-row {
  display: flex;
  flex-wrap: wrap;
  gap: 16px;
  margin-top: 28px;
  color: var(--rf-text-tertiary);
  font-size: 13px;
  font-weight: 600;
}

.product-stage {
  position: relative;
  min-height: 610px;
  isolation: isolate;
}

.product-stage::before {
  position: absolute;
  inset: 42px 0 34px 24px;
  border: 1px solid var(--rf-hairline);
  border-radius: 24px;
  background:
    radial-gradient(circle at 50% 36%, rgba(255, 255, 255, 0.07), transparent 34%),
    linear-gradient(180deg, rgba(255, 255, 255, 0.035), transparent 48%),
    rgba(255, 255, 255, 0.018);
  content: "";
}

.launch-mark {
  position: absolute;
  top: 34px;
  left: -12px;
  z-index: 0;
  width: min(500px, 96%);
  aspect-ratio: 1;
  opacity: 0.22;
  filter: saturate(0.82) contrast(1.04);
  pointer-events: none;
}

.launch-mark::before,
.launch-mark::after {
  position: absolute;
  inset: 13%;
  border: 1px solid rgba(255, 255, 255, 0.13);
  border-radius: 999px;
  content: "";
}

.launch-mark::after {
  inset: 27%;
  border-color: rgba(255, 255, 255, 0.075);
}

.launch-mark img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: contain;
}

.phone-shell {
  position: absolute;
  top: 0;
  right: 18px;
  z-index: 2;
  width: min(350px, 100%);
  min-height: 610px;
  padding: 12px;
  border: 1px solid rgba(255, 255, 255, 0.14);
  border-radius: 30px;
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.08), transparent 9%),
    #050505;
}

.phone-screen {
  overflow: hidden;
  min-height: 582px;
  border: 1px solid var(--rf-border-glass);
  border-radius: 22px;
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.04), transparent 28%),
    #101010;
}

.preview-topbar {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 20px 18px 14px;
}

.preview-title {
  font-weight: 800;
}

.preview-action {
  padding: 7px 10px;
  border-radius: 8px;
  background: var(--rf-accent);
  color: var(--rf-text-on-accent);
  font-size: 12px;
  font-weight: 750;
}

.library-stack {
  display: grid;
  gap: 8px;
  padding: 0 14px 12px;
}

.library-row {
  display: grid;
  grid-template-columns: 46px 1fr;
  gap: 10px;
  align-items: center;
  padding: 8px;
  border: 1px solid var(--rf-border-glass);
  border-radius: 12px;
  background: var(--rf-surface-subtle);
}

.library-row.is-active {
  border-color: rgba(242, 160, 126, 0.34);
  background: rgba(255, 255, 255, 0.045);
}

.library-row > span {
  display: block;
  aspect-ratio: 1;
  border-radius: 8px;
  background:
    linear-gradient(135deg, rgba(255, 255, 255, 0.12), rgba(224, 106, 60, 0.12)),
    #191919;
}

.library-row strong,
.library-row small {
  display: block;
}

.library-row strong {
  color: var(--rf-text-primary);
  font-size: 12px;
}

.library-row small {
  margin-top: 3px;
  color: var(--rf-text-tertiary);
  font-size: 11px;
}

.video-panel {
  margin: 0 14px 10px;
  padding: 12px;
  border: 1px solid var(--rf-border-glass);
  border-radius: 16px;
  background: rgba(30, 30, 30, 0.72);
}

.video-frame {
  position: relative;
  height: 138px;
  border-radius: 10px;
  background:
    radial-gradient(circle at 72% 28%, rgba(255, 255, 255, 0.12), transparent 24%),
    linear-gradient(135deg, rgba(255, 255, 255, 0.08), rgba(224, 106, 60, 0.08)),
    #181818;
  color: var(--rf-text-secondary);
  font-size: 13px;
  font-weight: 700;
}

.frame-label {
  position: absolute;
  left: 12px;
  top: 12px;
  padding: 6px 8px;
  border-radius: 7px;
  background: rgba(0, 0, 0, 0.36);
  color: var(--rf-text-primary);
  font-size: 12px;
}

.frame-marker {
  position: absolute;
  bottom: 12px;
  display: grid;
  place-items: center;
  width: 26px;
  height: 26px;
  border-radius: 999px;
  background: var(--rf-accent);
  color: var(--rf-text-on-accent);
  font-size: 12px;
  font-weight: 800;
}

.marker-a {
  left: 42%;
}

.marker-b {
  left: 68%;
}

.comparison-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 8px;
  margin: 0 14px 14px;
}

.comparison-tile {
  display: flex;
  align-items: flex-end;
  min-height: 108px;
  padding: 10px;
  border-radius: 10px;
  background:
    linear-gradient(160deg, rgba(255, 255, 255, 0.08), transparent 48%),
    #151515;
  color: var(--rf-text-secondary);
  font-size: 12px;
  font-weight: 700;
}

.comparison-tile:first-child {
  background:
    linear-gradient(160deg, rgba(224, 106, 60, 0.2), transparent 54%),
    #151515;
}

.timeline {
  display: grid;
  grid-template-columns: 22% 46% 32%;
  gap: 4px;
  margin: 12px 0 2px;
}

.timeline span {
  height: 8px;
  border-radius: 99px;
  background: var(--rf-accent-soft);
}

.timeline span:nth-child(2) {
  background: var(--rf-accent);
}

.preview-controls {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 8px;
  padding: 0 14px 16px;
}

.preview-chip {
  padding: 9px 8px;
  border: 1px solid var(--rf-border-glass);
  border-radius: 999px;
  background: var(--rf-bg-glass);
  color: var(--rf-text-secondary);
  text-align: center;
  font-size: 12px;
  font-weight: 700;
}

.preview-chip.is-on {
  border-color: transparent;
  background: var(--rf-accent);
  color: var(--rf-text-on-accent);
}

.floating-card {
  position: absolute;
  left: 2px;
  bottom: 52px;
  max-width: 222px;
  padding: 16px;
  border: 1px solid var(--rf-border-glass);
  border-radius: 12px;
  background: var(--rf-surface-solid);
  backdrop-filter: blur(18px);
}

.floating-card strong {
  display: block;
  margin-bottom: 6px;
}

.floating-card p {
  font-size: 13px;
  line-height: 1.55;
}

.section-heading {
  display: grid;
  gap: 14px;
  max-width: 760px;
  margin-bottom: 34px;
}

#faq .section-heading {
  max-width: none;
  margin-right: auto;
  margin-left: auto;
  text-align: center;
}

#faq .section-heading h2,
#faq .section-heading p {
  margin-right: auto;
  margin-left: auto;
}

.section-heading p {
  font-size: 16px;
}

.workflow-grid,
.control-list {
  display: grid;
}

.workflow-grid {
  gap: 14px;
  grid-template-columns: repeat(3, 1fr);
}

.card {
  min-width: 0;
  padding: 22px;
  border: 1px solid var(--rf-border-glass);
  border-radius: 8px;
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.04), transparent 44%),
    var(--rf-bg-elevated);
}

.card-index {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 34px;
  height: 34px;
  margin-bottom: 16px;
  border-radius: 999px;
  background: var(--rf-accent-soft);
  color: var(--rf-accent-light);
  font-size: 13px;
  font-weight: 800;
}

.card p {
  margin-top: 10px;
  font-size: 15px;
}

.faq-list {
  display: grid;
  width: min(100%, 980px);
  margin: 0 auto;
}

.faq-item {
  border-bottom: 1px solid var(--rf-border);
}

.faq-item summary {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  min-height: 70px;
  padding: 0;
  color: var(--rf-text-primary);
  cursor: pointer;
  font-size: 17px;
  font-weight: 650;
  list-style: none;
}

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

.faq-item summary::after {
  display: grid;
  flex: 0 0 auto;
  place-items: center;
  width: 28px;
  height: 28px;
  color: var(--rf-text-primary);
  content: "+";
  font-size: 24px;
  font-weight: 450;
  line-height: 1;
}

.faq-item[open] summary::after {
  content: "-";
}

.faq-item p {
  max-width: 760px;
  margin: -4px 56px 12px 0;
  color: var(--rf-text-secondary);
  font-size: 15px;
}

.faq-item p:last-child {
  margin-bottom: 24px;
}

.control-list {
  border-top: 1px solid var(--rf-border);
}

.control-item {
  display: grid;
  grid-template-columns: 78px minmax(120px, 0.34fr) 1fr;
  gap: 20px;
  align-items: baseline;
  padding: 24px 0;
  border-bottom: 1px solid var(--rf-border);
}

.control-item > span {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 48px;
  min-height: 32px;
  border: 1px solid rgba(224, 106, 60, 0.38);
  border-radius: 8px;
  color: var(--rf-accent-light);
  background: var(--rf-accent-soft);
  font-size: 13px;
  font-weight: 800;
}

.control-item p {
  max-width: 620px;
  font-size: 15px;
}

.practice-note {
  display: grid;
  grid-template-columns: minmax(0, 0.9fr) minmax(280px, 0.55fr);
  gap: 24px;
  align-items: stretch;
  padding: 38px 0;
  border-top: 1px solid var(--rf-border);
  border-bottom: 1px solid var(--rf-border);
}

.trust-list {
  display: grid;
  gap: 12px;
  margin: 0;
  padding: 0;
  list-style: none;
}

.trust-list li {
  padding: 0 0 14px;
  border-bottom: 1px solid var(--rf-border-glass);
  border-radius: 8px;
  color: var(--rf-text-secondary);
  line-height: 1.55;
}

.comparison-heading {
  margin-right: auto;
  margin-left: auto;
  text-align: center;
}

.comparison-heading h2,
.comparison-heading p {
  margin-right: auto;
  margin-left: auto;
}

.feature-comparison {
  overflow-x: auto;
  border-top: 1px solid var(--rf-border);
  border-bottom: 1px solid var(--rf-border);
  background: transparent;
}

.comparison-row {
  display: grid;
  grid-template-columns: minmax(280px, 1.35fr) minmax(150px, 0.62fr) minmax(170px, 0.72fr);
  min-width: 760px;
  border-bottom: 1px solid var(--rf-border-glass);
}

.comparison-row > div {
  display: grid;
  align-content: center;
  min-width: 0;
  padding: 22px 26px;
}

.comparison-row > div:first-child {
  padding-left: 0;
}

.comparison-row > div:nth-child(2),
.comparison-row > div:nth-child(3) {
  justify-items: center;
  text-align: center;
}

.comparison-row > div:nth-child(3) {
  background: rgba(255, 255, 255, 0.026);
}

.comparison-row:last-child {
  border-bottom: 0;
}

.comparison-head {
  border-bottom-color: var(--rf-border);
}

.comparison-head > div {
  min-height: 126px;
}

.comparison-head span,
.comparison-head small {
  color: var(--rf-text-secondary);
  font-size: 14px;
  font-weight: 700;
}

.comparison-head strong {
  margin-top: 8px;
  color: var(--rf-text-primary);
  font-size: 20px;
  line-height: 1.15;
}

.comparison-head small {
  margin-top: 10px;
  color: var(--rf-accent-light);
  font-size: 12px;
}

.pro-column {
  position: relative;
}

.pro-column em {
  position: absolute;
  top: 0;
  right: 0;
  padding: 7px 12px 8px;
  border-bottom-left-radius: 12px;
  background: var(--rf-accent);
  color: var(--rf-text-on-accent);
  font-size: 12px;
  font-style: normal;
  font-weight: 800;
}

.comparison-section {
  min-width: 760px;
  padding: 18px 26px 18px 0;
  border-bottom: 1px solid var(--rf-border-glass);
  color: var(--rf-text-secondary);
  background: transparent;
  font-size: 13px;
  font-weight: 800;
}

.comparison-row strong {
  color: var(--rf-text-primary);
  font-size: 17px;
}

.comparison-row p {
  max-width: 440px;
  margin-top: 8px;
  font-size: 14px;
  line-height: 1.55;
}

.comparison-row > div:nth-child(2),
.comparison-row > div:nth-child(3) {
  color: var(--rf-text-secondary);
  font-size: 15px;
  font-weight: 650;
}

.value-pill {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 34px;
  padding: 0 15px;
  border-radius: 999px;
  background: rgba(224, 106, 60, 0.18);
  color: var(--rf-text-on-accent);
  border: 1px solid rgba(224, 106, 60, 0.45);
  font-size: 14px;
  font-weight: 800;
}

.faq-item summary {
  transition: color 160ms ease;
}

.faq-item summary:hover {
  color: var(--rf-accent-light);
}

.faq-item summary::after {
  transition: transform 160ms ease, color 160ms ease;
}

.faq-item[open] summary::after {
  transform: rotate(180deg);
}

.final-cta {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  padding-top: 44px;
  border-top: 1px solid var(--rf-border);
}

.final-cta h2 {
  max-width: 720px;
}

.final-cta p {
  max-width: 680px;
  margin-top: 14px;
  font-size: 17px;
}

.page-hero {
  max-width: 780px;
  padding-top: 72px;
  padding-bottom: 42px;
}

.page-hero h1 {
  font-size: 38px;
}

.page-hero p {
  margin-top: 18px;
  font-size: 17px;
}

.content-page {
  width: min(100% - 32px, 820px);
  margin: 0 auto;
  padding-bottom: 88px;
}

.prose {
  display: grid;
  gap: 26px;
}

.prose section {
  padding-bottom: 24px;
  border-bottom: 1px solid var(--rf-border-glass);
}

.prose h2 {
  margin-bottom: 12px;
  font-size: 24px;
}

.prose ul {
  margin: 12px 0 0;
  padding-left: 20px;
  color: var(--rf-text-secondary);
  line-height: 1.7;
}

.support-grid {
  display: grid;
  grid-template-columns: minmax(0, 1.05fr) minmax(280px, 0.8fr);
  align-items: start;
  gap: 22px;
  margin-top: 28px;
}

.support-panel {
  display: grid;
  gap: 16px;
  min-height: 100%;
  padding: 26px;
  border: 1px solid var(--rf-border);
  border-radius: 8px;
  background: var(--rf-bg-elevated);
}

.support-panel h2 {
  margin: 0;
  font-size: 21px;
}

.support-email-link {
  width: fit-content;
  color: var(--rf-text-primary);
  font-size: clamp(19px, 2.6vw, 24px);
  font-weight: 700;
  overflow-wrap: anywhere;
}

.support-email-link:hover {
  color: var(--rf-accent-light);
}

.support-contact .button {
  width: fit-content;
}

.support-list {
  display: grid;
  gap: 14px;
  margin: 0;
  padding: 0;
  list-style: none;
}

.support-list li {
  position: relative;
  padding-left: 22px;
  color: var(--rf-text-secondary);
  line-height: 1.65;
}

.support-list li::before {
  position: absolute;
  top: 0.7em;
  left: 0;
  width: 7px;
  height: 7px;
  border-radius: 999px;
  background: var(--rf-text-tertiary);
  content: "";
  transform: translateY(-50%);
}

.site-footer {
  border-top: 1px solid var(--rf-border-glass);
}

.footer-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  width: min(100% - 32px, var(--rf-max-width));
  margin: 0 auto;
  gap: 24px;
  padding: 30px 0;
  color: var(--rf-text-tertiary);
  font-size: 13px;
}

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

@media (max-width: 900px) {
  .nav {
    align-items: flex-start;
    flex-direction: column;
    display: flex;
    padding: 16px 0;
  }

  .nav-links,
  .nav-actions {
    width: 100%;
    overflow-x: auto;
    padding-bottom: 2px;
    justify-self: auto;
  }

  .hero {
    grid-template-columns: 1fr;
    min-height: auto;
    padding-top: 56px;
  }

  h1 {
    font-size: 36px;
  }

  h2 {
    font-size: 28px;
  }

  .product-stage {
    min-height: 600px;
  }

  .phone-shell {
    left: 50%;
    right: auto;
    transform: translateX(-50%);
  }

  .floating-card {
    left: 12px;
  }

  .workflow-grid,
  .practice-note,
  .support-grid {
    grid-template-columns: 1fr;
  }

  .control-item {
    grid-template-columns: 64px 1fr;
    gap: 12px 16px;
  }

  .control-item p {
    grid-column: 2;
  }
}

@media (max-width: 560px) {
  .section {
    width: min(100% - 24px, var(--rf-max-width));
    padding: 64px 0;
  }

  .hero {
    padding-top: 40px;
  }

  h1 {
    font-size: 36px;
  }

  .hero-statement {
    font-size: 24px;
  }

  .hero-copy {
    font-size: 16px;
  }

  .hero-actions,
  .button {
    width: 100%;
  }

  .hero-store-badge,
  .hero-store-badge img {
    width: 100%;
    max-width: 190px;
  }

  .phone-shell {
    width: min(310px, 100%);
    min-height: 584px;
  }

  .phone-screen {
    min-height: 556px;
  }

  .floating-card {
    right: 12px;
    bottom: 12px;
    max-width: none;
  }

  .practice-note {
    padding: 28px 0;
  }

  .feature-comparison {
    overflow-x: auto;
    border-radius: 14px;
  }

  .comparison-row,
  .comparison-section {
    min-width: 720px;
  }

  .comparison-row {
    grid-template-columns: minmax(260px, 1.35fr) 130px 150px;
  }

  .comparison-row > div {
    padding: 18px;
  }

  .comparison-head > div {
    min-height: 132px;
  }

  .comparison-row strong {
    font-size: 17px;
  }

  .comparison-row p {
    font-size: 13px;
  }

  .final-cta {
    align-items: stretch;
    flex-direction: column;
  }

  .control-item {
    grid-template-columns: 1fr;
  }

  .control-item p {
    grid-column: auto;
  }

  .footer-inner {
    align-items: flex-start;
    flex-direction: column;
  }
}

@media (prefers-reduced-motion: reduce) {
  html {
    scroll-behavior: auto;
  }

  *,
  *::before,
  *::after {
    transition-duration: 0.01ms !important;
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
  }
}
