:root {
  --rw-bg: #050712;
  --rw-bg-alt: #070a1a;
  --rw-surface: rgba(15, 23, 42, 0.9);
  --rw-accent: #38bdf8;
  --rw-accent-soft: rgba(56, 189, 248, 0.15);
  --rw-accent-strong: #0ea5e9;
  --rw-text: #e5e7eb;
  --rw-text-muted: #9ca3af;
  --rw-border: rgba(148, 163, 184, 0.25);
  --rw-error: #f97373;
  --rw-radius-lg: 18px;
  --rw-radius-md: 999px;
  --rw-radius-sm: 8px;
  --rw-shadow-soft: 0 22px 60px rgba(15, 23, 42, 0.65);
}

.rw-why-grid {
  margin-top: 2rem;
  display: grid;
  grid-template-columns: minmax(0, 1.4fr) minmax(0, 1.6fr);
  gap: 1.3rem;
  text-align: left;
}

.rw-why-card {
  border-radius: 16px;
  padding: 1.2rem 1.1rem 1rem;
  background: radial-gradient(circle at top left, rgba(56, 189, 248, 0.18), rgba(15, 23, 42, 0.98));
  border: 1px solid rgba(148, 163, 184, 0.35);
}

.rw-why-card h3 {
  margin: 0 0 0.5rem;
  font-size: 1.05rem;
}

.rw-why-card h4 {
  margin: 0 0 0.35rem;
  font-size: 0.92rem;
}

.rw-why-card ul {
  margin: 0;
  padding-left: 1.1rem;
  font-size: 0.9rem;
  color: var(--rw-text-muted);
}

.rw-why-columns {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 1.1rem;
}

* {
  box-sizing: border-box;
}

html,
body {
  margin: 0;
  padding: 0;
  font-family: system-ui, -apple-system, BlinkMacSystemFont, "SF Pro Text", "Inter", sans-serif;
  background: radial-gradient(circle at top, #020617 0, #020617 40%, #000 100%);
  color: var(--rw-text);
}

.rw-body {
  position: relative;
  min-height: 100vh;
}

.rw-intro-overlay {
  position: fixed;
  inset: 0;
  z-index: 30;
  pointer-events: none;
  display: flex;
  align-items: center;
  justify-content: center;
}

.rw-rain-canvas {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
}

.rw-intro-text {
  position: relative;
  z-index: 1;
  font-weight: 800;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  font-size: clamp(2.4rem, 4vw, 3.4rem);
  color: #0090ff;
  opacity: 0;
  transform: translateY(8px);
  transition: opacity 900ms ease, transform 900ms ease;
  display: inline-block;
  overflow: hidden;
  text-align: center;
}

.rw-intro-text--visible {
  opacity: 1;
  transform: translateY(0);
}

.rw-intro-text--fade-out {
  opacity: 0;
  transform: translateY(-12px);
}

.rw-intro-line {
  display: block;
  transition: transform 900ms ease;
}

.rw-intro-line-secondary {
  transform: translateY(100%);
}

.rw-intro-text--swap .rw-intro-line-primary {
  transform: translateY(-100%);
}

.rw-intro-text--swap .rw-intro-line-secondary {
  transform: translateY(0);
}

body.rw-intro-active .rw-header,
body.rw-intro-active main,
body.rw-intro-active .rw-footer {
  opacity: 0;
  transform: translateY(8px);
}

body.rw-intro-transition main,
body.rw-intro-transition .rw-header,
body.rw-intro-transition .rw-footer {
  transition: opacity 900ms ease, transform 900ms ease;
}

body.rw-intro-complete .rw-header,
body.rw-intro-complete main,
body.rw-intro-complete .rw-footer {
  opacity: 1;
  transform: translateY(0);
}

.rw-noise {
  pointer-events: none;
  position: fixed;
  inset: 0;
  opacity: 0.07;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='160' height='160' viewBox='0 0 160 160'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.8' numOctaves='4' stitchTiles='noStitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23n)' opacity='0.4'/%3E%3C/svg%3E");
  z-index: -1;
}

.ts-overlay {
  position: fixed;
  inset: 0;
  z-index: 40;
}

#ts-canvas {
  display: block;
  width: 100%;
  height: 100%;
}

.ts-text {
  position: fixed;
  inset: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.5rem;
  font-weight: 700;
  color: #e5e7eb;
  text-align: center;
  pointer-events: none;
  z-index: 41;
}

.rw-ts-loader {
  position: fixed;
  inset: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  background: radial-gradient(circle at top, rgba(15,23,42,0.96), rgba(15,23,42,0.98));
  z-index: 40;
  transition: opacity 0.4s ease;
}

.rw-ts-loader--hide {
  opacity: 0;
}

.rw-ts-loader-inner {
  padding: 1.2rem 1.6rem;
  border-radius: 999px;
  background: radial-gradient(circle at top left, rgba(56,189,248,0.28), rgba(15,23,42,0.98));
  border: 1px solid rgba(148,163,184,0.5);
  box-shadow: 0 24px 60px rgba(0,0,0,0.85);
  font-size: 1.05rem;
  position: relative;
  z-index: 2;
}

.rw-ts-layer {
  position: absolute;
  inset: 0;
  pointer-events: none;
  opacity: 0;
  transition: opacity 0.45s ease;
  z-index: 1;
}

.rw-ts-stars {
  background-color: rgba(15,23,42,0.85);
  background-image:
    radial-gradient(circle at 15% 15%, rgba(248,250,252,0.7) 0, transparent 45%),
    radial-gradient(circle at 80% 25%, rgba(191,219,254,0.7) 0, transparent 55%),
    radial-gradient(circle at 8% 70%, rgba(248,250,252,0.6) 0, transparent 55%),
    radial-gradient(circle at 92% 82%, rgba(191,219,254,0.6) 0, transparent 55%);
  background-repeat: no-repeat;
}

.rw-ts-waves {
  background: radial-gradient(circle at 50% 120%, rgba(56,189,248,0.8) 0, transparent 55%);
  background-repeat: no-repeat;
}

.rw-ts-smoke {
  background-image:
    radial-gradient(circle at 10% 40%, rgba(148,163,184,0.45) 0, transparent 55%),
    radial-gradient(circle at 60% 60%, rgba(148,163,184,0.4) 0, transparent 55%),
    radial-gradient(circle at 90% 30%, rgba(148,163,184,0.5) 0, transparent 60%);
}

.rw-ts-lightning {
  background-image:
    linear-gradient(120deg, transparent 0 40%, rgba(248,250,252,0.9) 45%, transparent 55%),
    linear-gradient(300deg, transparent 0 60%, rgba(248,250,252,0.7) 65%, transparent 75%);
  background-repeat: no-repeat;
}

.rw-ts-phrase {
  display: inline-block;
  font-weight: 600;
  color: #e5e7eb;
  opacity: 0;
  transition: opacity 0.35s ease;
}

.rw-ts-neutral {
  font-weight: 500;
  color: #e5e7eb;
}

.rw-ts-zenith {
  color: #f97373;
}

.rw-ts-wave {
  color: #60a5fa;
}

.rw-ts-potassium {
  color: #facc15;
}

.rw-ts-volt {
  color: #a855f7;
}

.rw-ts-cta {
  color: #f9fafb;
  text-shadow: 0 0 18px rgba(248,250,252,0.7);
  animation: rw-ts-pulse 1s ease-in-out infinite;
}

@keyframes rw-ts-pulse {
  0%, 100% { transform: scale(1); opacity: 1; }
  50% { transform: scale(1.06); opacity: 0.9; }
}

@keyframes rw-ts-stars-twinkle {
  0%, 100% { opacity: 0.7; }
  50% { opacity: 1; }
}

@keyframes rw-ts-waves-rise {
  0% { transform: translateY(20px); opacity: 0.5; }
  50% { transform: translateY(0); opacity: 0.8; }
  100% { transform: translateY(10px); opacity: 0.6; }
}

@keyframes rw-ts-smoke-drift {
  0% { transform: translate3d(-10px, 10px, 0); opacity: 0.5; }
  50% { transform: translate3d(10px, -10px, 0); opacity: 0.8; }
  100% { transform: translate3d(20px, 10px, 0); opacity: 0.4; }
}

@keyframes rw-ts-lightning-flash {
  0%, 100% { opacity: 0; }
  10% { opacity: 0.9; }
  20% { opacity: 0.1; }
  30% { opacity: 0.8; }
  40% { opacity: 0; }
}

/* Mode-based effect activation */
.rw-ts-mode-zenith .rw-ts-stars {
  opacity: 1;
  animation: rw-ts-stars-twinkle 3s ease-in-out infinite;
}

.rw-ts-mode-wave .rw-ts-waves {
  opacity: 1;
  animation: rw-ts-waves-rise 3s ease-in-out infinite;
}

.rw-ts-mode-potassium .rw-ts-smoke {
  opacity: 1;
  animation: rw-ts-smoke-drift 5s ease-in-out infinite;
}

.rw-ts-mode-volt .rw-ts-lightning {
  opacity: 1;
  animation: rw-ts-lightning-flash 2s ease-in-out infinite;
}

.rw-ts-mode-neutral .rw-ts-layer,
.rw-ts-mode-cta .rw-ts-layer {
  opacity: 0;
  animation: none;
}

.rw-container {
  width: 100%;
  max-width: 1120px;
  margin: 0 auto;
  padding: 0 1.5rem;
}

.rw-header {
  position: sticky;
  top: 0;
  z-index: 10;
  backdrop-filter: blur(18px);
  background: linear-gradient(to bottom, rgba(15, 23, 42, 0.95), rgba(15, 23, 42, 0.4), transparent);
  border-bottom: 1px solid rgba(148, 163, 184, 0.18);
}

.rw-header-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 0.85rem 0;
}

.rw-brand {
  display: flex;
  align-items: center;
  gap: 0.85rem;
}

.rw-logo {
  width: 40px;
  height: 40px;
  border-radius: 12px;
  box-shadow: 0 12px 30px rgba(56, 189, 248, 0.4);
}

.rw-title {
  margin: 0;
  font-size: 1.2rem;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.rw-subtitle {
  margin: 0;
  font-size: 0.85rem;
  color: var(--rw-text-muted);
}

.rw-nav {
  display: flex;
  gap: 1.2rem;
  align-items: center;
}

.rw-nav-link {
  color: var(--rw-text-muted);
  text-decoration: none;
  font-size: 0.9rem;
  position: relative;
}

.rw-nav-link::after {
  content: "";
  position: absolute;
  left: 0;
  bottom: -0.2rem;
  width: 0;
  height: 2px;
  border-radius: 999px;
  background: linear-gradient(to right, var(--rw-accent), var(--rw-accent-strong));
  transition: width 0.2s ease;
}

.rw-nav-link:hover {
  color: var(--rw-text);
}

.rw-nav-link:hover::after {
  width: 100%;
}

.rw-hero {
  padding: 4.5rem 0 3.5rem;
}

.rw-hero-grid {
  display: grid;
  grid-template-columns: minmax(0, 1.6fr) minmax(0, 1.1fr);
  gap: 3rem;
  align-items: center;
}

.rw-hero-title {
  font-size: clamp(2.4rem, 3vw, 3rem);
  margin: 0 0 1rem;
  line-height: 1.1;
}

.rw-hero-title span {
  background: linear-gradient(to right, var(--rw-accent), var(--rw-accent-strong));
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
}

.rw-hero-text {
  margin: 0 0 1.5rem;
  color: var(--rw-text-muted);
  max-width: 34rem;
}

.rw-hero-bullets {
  list-style: none;
  padding: 0;
  margin: 0 0 1.75rem;
  display: grid;
  gap: 0.35rem;
}

.rw-hero-bullets li::before {
  content: "";
  display: inline-block;
  width: 7px;
  height: 7px;
  border-radius: 999px;
  margin-right: 0.5rem;
  background: radial-gradient(circle at 30% 0, #f9fafb, var(--rw-accent));
}

.rw-hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 0.75rem;
  align-items: center;
}

.rw-btn {
  border-radius: var(--rw-radius-md);
  font-size: 0.95rem;
  padding: 0.7rem 1.3rem;
  border: 1px solid transparent;
  cursor: pointer;
  transition: transform 0.13s ease, box-shadow 0.13s ease, background 0.13s ease, border-color 0.13s ease;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.35rem;
  white-space: nowrap;
  text-decoration: none;
}

.rw-btn-primary {
  background: radial-gradient(circle at top left, #e0f2fe 0, #0284c7 35%, #0f172a 75%, #020617 100%);
  color: #f9fafb;
  box-shadow: 0 12px 28px rgba(56, 189, 248, 0.35);
  background-size: 120% 110%;
  background-position: center;
}

.rw-btn-primary:hover {
  transform: translateY(-1px);
  box-shadow: 0 18px 40px rgba(56, 189, 248, 0.45);
}

.rw-btn-ghost {
  background: radial-gradient(circle at top left, rgba(56, 189, 248, 0.12), rgba(15, 23, 42, 0.95));
  color: #e5f3ff;
  border-color: rgba(56, 189, 248, 0.7);
  box-shadow: 0 10px 22px rgba(15, 23, 42, 0.75);
}

.rw-btn-ghost:hover {
  background: radial-gradient(circle at top left, rgba(129, 230, 217, 0.35), rgba(15, 23, 42, 0.98));
  color: #f9fafb;
  border-color: rgba(56, 189, 248, 0.95);
  box-shadow: 0 16px 32px rgba(15, 23, 42, 0.9);
}

.rw-btn-full {
  width: 100%;
}

.rw-hero-card {
  position: relative;
}

.rw-glass-card {
  position: relative;
  background: linear-gradient(145deg, rgba(15, 23, 42, 0.9), rgba(15, 23, 42, 0.7));
  border-radius: var(--rw-radius-lg);
  padding: 1.6rem 1.5rem;
  border: 1px solid var(--rw-border);
  box-shadow: var(--rw-shadow-soft);
  overflow: hidden;
}

.rw-glass-card::before {
  content: "";
  position: absolute;
  inset: -30%;
  background: radial-gradient(circle at 0% 0%, rgba(56, 189, 248, 0.16), transparent 55%);
  opacity: 0.8;
}

.rw-glass-card > * {
  position: relative;
  z-index: 1;
}

.rw-feature-list {
  list-style: none;
  padding: 0;
  margin: 1rem 0 1.4rem;
  display: grid;
  gap: 0.4rem;
  color: var(--rw-text-muted);
}

.rw-feature-list li::before {
  content: "▹";
  margin-right: 0.4rem;
  color: var(--rw-accent);
}

.rw-price-row {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
}

.rw-price-main {
  font-size: 1.8rem;
  font-weight: 600;
}

.rw-price-note {
  display: block;
  font-size: 0.8rem;
  color: var(--rw-text-muted);
}

.rw-secure-note {
  margin-top: 0.9rem;
  font-size: 0.8rem;
  color: var(--rw-text-muted);
}

.rw-stock-note {
  margin-top: 0.25rem;
  font-size: 0.8rem;
}

.rw-stock-ok {
  color: #4ade80; /* green */
}

.rw-stock-empty {
  color: #f97373; /* same tone as error */
}

.rw-btn-disabled {
  opacity: 0.5;
  cursor: not-allowed;
  box-shadow: none;
}

.rw-status {
  margin-top: 0.7rem;
  font-size: 0.85rem;
  color: var(--rw-text-muted);
}

.rw-status--error {
  color: var(--rw-error);
}

.rw-section {
  padding: 2.8rem 0;
}

.rw-section-alt {
  background: radial-gradient(circle at top, rgba(15, 23, 42, 0.96) 0, rgba(15, 23, 42, 1) 35%, #020617 100%);
  border-block: 1px solid rgba(148, 163, 184, 0.18);
}

/* When one standard section directly follows another, tighten the gap slightly
   so groups like "How Rainware works" + "Built for Arcane Lineage" feel like
   a single visual block instead of two completely separate sections. */
.rw-section + .rw-section {
  padding-top: 1.6rem;
  border-top: 1px solid rgba(148, 163, 184, 0.16);
}

.rw-section-title {
  font-size: 1.7rem;
  margin: 0 0 0.6rem;
}

.rw-section-subtitle {
  margin: 0 0 1.5rem;
  color: var(--rw-text-muted);
}

.rw-section-subheading {
  margin: 1.4rem 0 0.5rem;
  font-size: 1.05rem;
}

/* Ensure anchored sections are not hidden behind the sticky header */
#key-features {
  scroll-margin-top: 5rem;
}

.rw-demo-gif {
  width: 100%;
  max-width: 640px;
  border-radius: var(--rw-radius-lg);
  display: block;
  margin: 0 auto;
}

.rw-how-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 1.5rem;
  margin-top: 1.5rem;
}

.rw-how-step {
  position: relative;
  z-index: 1;
  padding: 1.3rem 1.1rem 1.2rem;
  border-radius: 16px;
  background: radial-gradient(circle at top left, rgba(56, 189, 248, 0.16), rgba(15, 23, 42, 0.98));
  border: 1px solid rgba(148, 163, 184, 0.4);
  box-shadow: 0 14px 32px rgba(15, 23, 42, 0.7);
  transition: transform 0.18s ease, box-shadow 0.18s ease, border-color 0.18s ease, background 0.18s ease;
}

.rw-how-step-number {
  display: inline-block;
  margin-bottom: 0.35rem;
  font-weight: 600;
  font-size: 0.85rem;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--rw-text-muted);
}

.rw-how-step h3 {
  margin: 0 0 0.4rem;
  font-size: 1rem;
}

.rw-how-step p {
  margin: 0;
  color: var(--rw-text-muted);
  font-size: 0.9rem;
}

.rw-how-step:hover {
  transform: translateY(-3px);
  border-color: rgba(56, 189, 248, 0.7);
  box-shadow: 0 18px 40px rgba(15, 23, 42, 0.7);
  background: radial-gradient(circle at top left, rgba(56, 189, 248, 0.28), rgba(15, 23, 42, 0.98));
}

.rw-grid-3 {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 1.4rem;
}

.rw-feature-box {
  padding: 1.2rem 1.1rem;
  border-radius: 16px;
  background: radial-gradient(circle at top left, rgba(56, 189, 248, 0.2), rgba(15, 23, 42, 0.98));
  border: 1px solid rgba(148, 163, 184, 0.3);
  transition: transform 0.18s ease, box-shadow 0.18s ease, border-color 0.18s ease, background 0.18s ease;
}

.rw-feature-box p {
  margin-top: 0.4rem;
  color: var(--rw-text-muted);
}

.rw-feature-box:hover {
  transform: translateY(-3px);
  border-color: rgba(56, 189, 248, 0.7);
  box-shadow: 0 18px 40px rgba(15, 23, 42, 0.7);
  background: radial-gradient(circle at top left, rgba(56, 189, 248, 0.28), rgba(15, 23, 42, 0.98));
}

.rw-who-strip {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 1.4rem;
}

.rw-who-card {
  padding: 1rem 1rem 0.9rem;
  border-radius: 16px;
  background: radial-gradient(circle at top left, rgba(56, 189, 248, 0.16), rgba(15, 23, 42, 0.98));
  border: 1px solid rgba(148, 163, 184, 0.35);
}

.rw-who-card h3 {
  margin: 0 0 0.35rem;
  font-size: 1rem;
}

.rw-who-card p {
  margin: 0;
  font-size: 0.9rem;
  color: var(--rw-text-muted);
}

.rw-troubleshoot-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 1.4rem 1.8rem;
  margin-top: 1.6rem;
}

.rw-troubleshoot-card {
  border-radius: 16px;
  padding: 1.2rem 1.15rem 1.1rem;
  background: radial-gradient(circle at top left, rgba(56, 189, 248, 0.18), rgba(15, 23, 42, 0.98));
  border: 1px solid rgba(148, 163, 184, 0.35);
  box-shadow: 0 16px 36px rgba(15, 23, 42, 0.85);
}

.rw-troubleshoot-card h3 {
  margin-top: 0;
  margin-bottom: 0.45rem;
  font-size: 1rem;
}

.rw-troubleshoot-card ul {
  margin: 0;
  padding-left: 1.1rem;
  color: var(--rw-text-muted);
  font-size: 0.9rem;
}

.rw-troubleshoot-card ul ul {
  margin-top: 0.25rem;
}

.rw-center {
  text-align: center;
}

.rw-pricing-card {
  margin: 0 auto;
  max-width: 420px;
}

.rw-pricing-text {
  margin-top: 0.3rem;
  margin-bottom: 1.2rem;
  color: var(--rw-text-muted);
}

.rw-faq {
  max-width: 900px;
}

.rw-faq-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 1.5rem 2.2rem;
}

.rw-footer {
  border-top: 1px solid rgba(148, 163, 184, 0.25);
  padding: 1.1rem 0 1.3rem;
  background: radial-gradient(circle at bottom, #020617, #000);
}

.rw-footer-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 0.75rem;
  font-size: 0.8rem;
  color: var(--rw-text-muted);
}

.rw-modal-backdrop {
  position: fixed;
  inset: 0;
  background: rgba(15, 23, 42, 0.85);
  display: none;
  align-items: center;
  justify-content: center;
  z-index: 50;
}

.rw-modal-backdrop.rw-modal-open {
  display: flex;
}

.rw-modal {
  background: radial-gradient(circle at top left, rgba(56, 189, 248, 0.18), rgba(15, 23, 42, 0.98));
  border-radius: 18px;
  padding: 1.6rem 1.5rem 1.4rem;
  border: 1px solid rgba(148, 163, 184, 0.45);
  box-shadow: 0 26px 60px rgba(0, 0, 0, 0.8);
  max-width: 480px;
  width: calc(100% - 2.5rem);
}

.rw-modal h2 {
  margin-top: 0;
  margin-bottom: 0.6rem;
}

.rw-modal p {
  margin-top: 0;
  margin-bottom: 0.75rem;
  color: var(--rw-text-muted);
}

.rw-checklist-list {
  list-style: none;
  padding: 0;
  margin: 0 0 0.9rem;
}

.rw-checklist-list li {
  position: relative;
  padding-left: 1.3rem;
  margin-bottom: 0.4rem;
  font-size: 0.9rem;
  color: var(--rw-text-muted);
}

.rw-checklist-list li::before {
  content: "";
  position: absolute;
  left: 0;
  top: 0.32rem;
  width: 8px;
  height: 8px;
  border-radius: 999px;
  background: radial-gradient(circle at 30% 0, #f9fafb, var(--rw-accent));
}

.rw-checklist-confirm {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  font-size: 0.9rem;
  margin-bottom: 0.9rem;
  color: var(--rw-text-muted);
}

.rw-checklist-confirm input[type="checkbox"] {
  width: 16px;
  height: 16px;
}

.rw-checklist-actions {
  display: flex;
  justify-content: flex-end;
  gap: 0.5rem;
}

.rw-link-plain {
  color: var(--rw-accent);
  text-decoration: none;
}

.rw-link-plain:hover {
  text-decoration: none;
}

.rw-footer-meta {
  opacity: 0.9;
}

@media (max-width: 880px) {
  .rw-header-inner {
    flex-direction: column;
    align-items: flex-start;
    gap: 0.6rem;
  }

  .rw-nav {
    width: 100%;
    justify-content: flex-start;
  }

  .rw-hero-grid {
    grid-template-columns: minmax(0, 1fr);
  }
}

@media (max-width: 720px) {
  .rw-container {
    padding: 0 1.1rem;
  }

  .rw-hero {
    padding: 3rem 0 2.2rem;
  }

  .rw-hero-title {
    font-size: 2.1rem;
  }

  .rw-hero-text {
    font-size: 0.95rem;
  }

  .rw-section-title {
    font-size: 1.4rem;
  }

  .rw-section-subtitle {
    font-size: 0.9rem;
  }

  .rw-section {
    padding: 2.1rem 0;
  }

  .rw-section + .rw-section {
    padding-top: 1.1rem;
  }

  .rw-hero-bullets {
    font-size: 0.9rem;
  }

  .rw-hero-actions {
    flex-direction: column;
    align-items: stretch;
  }

  .rw-btn {
    width: 100%;
    justify-content: center;
  }

  .rw-price-row {
    flex-direction: column;
    align-items: flex-start;
  }

  .rw-grid-3 {
    grid-template-columns: minmax(0, 1fr);
  }

  .rw-how-grid {
    grid-template-columns: minmax(0, 1fr);
  }

  .rw-faq-grid {
    grid-template-columns: minmax(0, 1fr);
  }

  .rw-feature-list-long {
    font-size: 0.9rem;
  }

  .rw-footer-inner {
    flex-direction: column;
    align-items: flex-start;
  }
}

@media (max-width: 640px) {
  .rw-nav {
    display: none;
  }

  .rw-hero {
    padding-top: 3.2rem;
  }

  .rw-grid-3 {
    grid-template-columns: minmax(0, 1fr);
  }

  .rw-faq-grid {
    grid-template-columns: minmax(0, 1fr);
  }

  .rw-price-row {
    flex-direction: column;
    align-items: stretch;
  }

  .rw-footer-inner {
    flex-direction: column;
    align-items: flex-start;
  }
}
