:root{
  --rw-bg:#f7f8fb;
  --rw-surface:#ffffff;
  --rw-text:#0f172a;
  --rw-muted:#64748b;
  --rw-line:#dbe3ec;
  --rw-navy:#0f2747;
  --rw-blue:#2f80ed;
  --rw-blue-light:#dfeeff;
  --rw-green:#16a34a;
  --rw-shadow:0 18px 50px rgba(15,39,71,.08);
  --rw-radius:20px;
  --rw-max:1180px;
}
*{box-sizing:border-box}
html{scroll-behavior:smooth}
body{
  margin:0;
  font-family:Inter,Arial,sans-serif;
  color:var(--rw-text);
  background:var(--rw-bg);
  line-height:1.55;
}
a{text-decoration:none;color:inherit}
.rw-container{
  width:min(var(--rw-max),calc(100% - 40px));
  margin:0 auto;
}
.rw-btn{
  display:inline-flex;
  align-items:center;
  justify-content:center;
  min-height:46px;
  padding:0 18px;
  border-radius:12px;
  font-size:14px;
  font-weight:700;
  border:1px solid transparent;
  transition:.18s ease;
}
.rw-btn:hover{transform:translateY(-1px)}
.rw-btn-primary{
  background:var(--rw-navy);
  color:#fff;
  box-shadow:0 10px 24px rgba(15,39,71,.18);
}
.rw-btn-secondary{
  background:#fff;
  border-color:var(--rw-line);
  color:var(--rw-navy);
}
.rw-header{
  position:sticky;
  top:0;
  z-index:1000;
  background:rgba(247,248,251,.92);
  backdrop-filter:blur(14px);
  border-bottom:1px solid rgba(219,227,236,.9);
}
.rw-footer-title{
  margin:0 0 12px;
  font-size:15px;
  font-weight:700;
  color:var(--rw-navy);
}
.rw-nav{
  min-height:72px;
  display:flex;
  align-items:center;
  justify-content:space-between;
  gap:24px;
}
.rw-brand{
  display:flex;
  align-items:center;
  gap:10px;
  font-size:20px;
  font-weight:800;
  color:var(--rw-navy);
}
.rw-brand-mark{
  width:34px;
  height:34px;
  border-radius:10px;
  display:grid;
  place-items:center;
  background:var(--rw-navy);
  position:relative;
  overflow:hidden;
}
.rw-brand-mark:before{
  content:"";
  width:18px;
  height:2px;
  background:#fff;
  border-radius:99px;
  transform:rotate(-22deg);
  box-shadow:0 6px 0 rgba(255,255,255,.65);
}
.rw-nav-links{
  display:flex;
  align-items:center;
  gap:26px;
  font-size:14px;
  font-weight:600;
  color:#334155;
}
.rw-nav-links a:hover{color:var(--rw-blue)}
.rw-nav-actions{
  display:flex;
  align-items:center;
  gap:10px;
}
.rw-mobile-toggle{
  display:none;
  border:0;
  background:none;
  color:var(--rw-navy);
  font-size:24px;
  cursor:pointer;
}
.rw-footer{
  background:#fff;
  border-top:1px solid var(--rw-line);
  padding:54px 0 28px;
}
.rw-footer-grid{
  display:grid;
  grid-template-columns:1.5fr repeat(3,1fr);
  gap:34px;
}
.rw-footer-brand-text{
  max-width:330px;
  margin:14px 0 0;
  color:var(--rw-muted);
  font-size:14px;
}
.rw-footer-col a{
  display:block;
  margin:8px 0;
  font-size:14px;
  color:var(--rw-muted);
}
.rw-footer-col a:hover{color:var(--rw-blue)}
.rw-footer-bottom{
  display:flex;
  justify-content:space-between;
  gap:18px;
  flex-wrap:wrap;
  margin-top:34px;
  padding-top:22px;
  border-top:1px solid var(--rw-line);
  color:var(--rw-muted);
  font-size:13px;
}
@media(max-width:980px){
  .rw-nav-links{
    display:none;
    position:absolute;
    top:72px;
    left:0;
    right:0;
    background:#fff;
    border-bottom:1px solid var(--rw-line);
    padding:20px;
    flex-direction:column;
    align-items:flex-start;
  }
  .rw-nav-links.rw-open{display:flex}
  .rw-mobile-toggle{display:block}
  .rw-footer-grid{grid-template-columns:repeat(2,1fr)}
}
@media(max-width:640px){
  .rw-container{width:min(var(--rw-max),calc(100% - 28px))}
  .rw-nav-actions .rw-btn-secondary{display:none}
  .rw-footer-grid{grid-template-columns:1fr}
}

.rw-section{
  padding:88px 0;
}
.rw-section-sm{
  padding:58px 0;
}
.rw-section-alt{
  background:#eef3f8;
}
.rw-eyebrow{
  display:inline-flex;
  align-items:center;
  gap:8px;
  padding:7px 11px;
  border-radius:999px;
  background:var(--rw-blue-light);
  color:var(--rw-navy);
  font-size:13px;
  font-weight:800;
  letter-spacing:.02em;
}
.rw-eyebrow-dot{
  width:8px;
  height:8px;
  border-radius:50%;
  background:var(--rw-blue);
}
.rw-title{
  margin:14px 0 0;
  color:var(--rw-navy);
  font-size:clamp(32px,4vw,48px);
  line-height:1.08;
  letter-spacing:-.035em;
}
.rw-lead{
  color:var(--rw-muted);
  font-size:18px;
  line-height:1.65;
}
.rw-section-head{
  display:flex;
  justify-content:space-between;
  align-items:flex-end;
  gap:30px;
  margin-bottom:34px;
}
.rw-section-head > div:first-child{
  max-width:620px;
}
.rw-section-head .rw-lead{
  max-width:560px;
  margin:0;
}
.rw-card{
  background:var(--rw-surface);
  border:1px solid var(--rw-line);
  border-radius:var(--rw-radius);
  box-shadow:var(--rw-shadow);
}
.rw-grid-3{
  display:grid;
  grid-template-columns:repeat(3,minmax(0,1fr));
  gap:22px;
}
.rw-hero{
  padding:82px 0 64px;
  overflow:hidden;
}
.rw-hero-grid{
  display:grid;
  grid-template-columns:1.04fr .96fr;
  gap:56px;
  align-items:center;
}
.rw-hero h1{
  margin:18px 0 0;
  color:var(--rw-navy);
  font-size:clamp(44px,6vw,72px);
  line-height:1.02;
  letter-spacing:-.045em;
}
.rw-hero-copy .rw-lead{
  max-width:690px;
  margin:24px 0 0;
  font-size:20px;
}
.rw-hero-actions{
  display:flex;
  flex-wrap:wrap;
  gap:12px;
  margin-top:30px;
}
.rw-hero-note{
  margin-top:16px;
  font-size:13px;
  color:var(--rw-muted);
}
.rw-hero-points{
  display:flex;
  flex-wrap:wrap;
  gap:20px;
  margin-top:22px;
  color:var(--rw-muted);
  font-size:13px;
}
.rw-hero-points span{
  display:flex;
  align-items:center;
  gap:7px;
}
.rw-check{
  color:var(--rw-green);
  font-weight:900;
}
.rw-route-card{
  position:relative;
  min-height:430px;
  padding:26px;
  overflow:hidden;
}
.rw-route-card:before{
  content:"";
  position:absolute;
  width:320px;
  height:320px;
  border-radius:50%;
  left:-120px;
  top:-130px;
  background:radial-gradient(circle,rgba(47,128,237,.18),rgba(47,128,237,0) 70%);
}
.rw-route-head{
  position:relative;
  display:flex;
  justify-content:space-between;
  align-items:center;
  gap:18px;
  margin-bottom:24px;
}
.rw-route-label{
  color:var(--rw-muted);
  font-size:12px;
  font-weight:800;
  text-transform:uppercase;
  letter-spacing:.06em;
}
.rw-route-title{
  margin-top:4px;
  color:var(--rw-navy);
  font-size:20px;
  font-weight:800;
}
.rw-status-badge{
  display:inline-flex;
  align-items:center;
  gap:7px;
  padding:6px 9px;
  border-radius:999px;
  background:#eaf8ef;
  color:#166534;
  font-size:12px;
  font-weight:800;
}
.rw-route-box{
  position:relative;
  padding:18px;
  border:1px solid var(--rw-line);
  border-radius:16px;
  background:#fbfdff;
}
.rw-route-domain{
  margin-top:4px;
  color:var(--rw-navy);
  font-size:18px;
  font-weight:800;
  word-break:break-word;
}
.rw-route-line{
  display:flex;
  align-items:center;
  gap:12px;
  margin:18px 4px;
}
.rw-route-line:before,
.rw-route-line:after{
  content:"";
  height:1px;
  background:var(--rw-line);
  flex:1;
}
.rw-route-pill{
  padding:8px 12px;
  border-radius:999px;
  background:var(--rw-navy);
  color:#fff;
  font-size:12px;
  font-weight:800;
}
.rw-route-statuses{
  display:grid;
  grid-template-columns:repeat(3,1fr);
  gap:10px;
  margin-top:20px;
}
.rw-route-status{
  padding:14px 12px;
  border:1px solid #e7edf4;
  border-radius:14px;
  background:#f2f5f8;
}
.rw-route-status strong{
  display:block;
  color:var(--rw-navy);
  font-size:13px;
}
.rw-route-status span{
  color:var(--rw-muted);
  font-size:12px;
}
.rw-step-card{
  padding:24px;
}
.rw-step-number{
  margin-bottom:14px;
  color:var(--rw-blue);
  font-size:13px;
  font-weight:800;
}
.rw-step-card h3,
.rw-feature-card h3,
.rw-audience-card h3{
  margin:0;
  color:var(--rw-navy);
  font-size:22px;
  line-height:1.2;
}
.rw-step-card p,
.rw-feature-card p,
.rw-audience-card p{
  margin:10px 0 0;
  color:var(--rw-muted);
}
.rw-feature-card{
  min-height:220px;
  padding:24px;
}
.rw-feature-icon,
.rw-audience-icon{
  width:44px;
  height:44px;
  display:grid;
  place-items:center;
  margin-bottom:18px;
  border-radius:12px;
  background:var(--rw-blue-light);
  color:var(--rw-blue);
  font-weight:900;
}
.rw-feature-icon{
  font-size:14px;
}
.rw-audience-card{
  min-height:210px;
  padding:24px;
}
.rw-audience-meta{
  display:inline-block;
  margin-top:16px;
  color:var(--rw-blue);
  font-size:13px;
  font-weight:700;
}
@media(max-width:980px){
  .rw-hero-grid{
    grid-template-columns:1fr;
  }
  .rw-grid-3{
    grid-template-columns:repeat(2,minmax(0,1fr));
  }
  .rw-section-head{
    align-items:flex-start;
    flex-direction:column;
  }
}
@media(max-width:640px){
  .rw-section{
    padding:64px 0;
  }
  .rw-section-sm{
    padding:48px 0;
  }
  .rw-hero{
    padding:58px 0 42px;
  }
  .rw-grid-3{
    grid-template-columns:1fr;
  }
  .rw-route-card{
    min-height:auto;
    padding:20px;
  }
  .rw-route-statuses{
    grid-template-columns:1fr;
  }
  .rw-hero-copy .rw-lead{
    font-size:18px;
  }
}

.rw-use-card{
  min-height:190px;
  padding:24px;
}
.rw-use-card h3{
  margin:0;
  color:var(--rw-navy);
  font-size:22px;
  line-height:1.2;
}
.rw-use-card p{
  margin:10px 0 0;
  color:var(--rw-muted);
}
.rw-use-icon{
  width:44px;
  height:44px;
  display:grid;
  place-items:center;
  margin-bottom:18px;
  border-radius:12px;
  background:var(--rw-blue-light);
  color:var(--rw-blue);
  font-size:16px;
  font-weight:900;
}
.rw-comparison{
  overflow:hidden;
}
.rw-comparison table{
  width:100%;
  border-collapse:collapse;
}
.rw-comparison th,
.rw-comparison td{
  padding:17px 20px;
  border-bottom:1px solid var(--rw-line);
  text-align:left;
  vertical-align:middle;
}
.rw-comparison th{
  background:#f8fafc;
  color:var(--rw-navy);
  font-size:13px;
  font-weight:800;
}
.rw-comparison td{
  color:#475569;
  font-size:14px;
}
.rw-comparison tr:last-child td{
  border-bottom:0;
}
.rw-comparison td:last-child{
  color:var(--rw-navy);
  font-weight:700;
}
.rw-comparison-check{
  color:var(--rw-green);
  font-weight:900;
}
.rw-pricing-grid{
  display:grid;
  grid-template-columns:repeat(4,minmax(0,1fr));
  gap:18px;
}
.rw-price-card{
  position:relative;
  padding:24px;
}
.rw-price-card.rw-featured{
  border-color:#9cc8ff;
  box-shadow:0 20px 55px rgba(47,128,237,.14);
}
.rw-price-badge{
  position:absolute;
  top:18px;
  right:18px;
  padding:5px 8px;
  border-radius:999px;
  background:#eaf8ef;
  color:#166534;
  font-size:11px;
  font-weight:800;
}
.rw-price-name{
  color:var(--rw-navy);
  font-size:18px;
  font-weight:800;
}
.rw-price{
  margin:14px 0 2px;
  color:var(--rw-navy);
  font-size:38px;
  font-weight:900;
  letter-spacing:-.04em;
}
.rw-price small{
  color:var(--rw-muted);
  font-size:14px;
  font-weight:600;
}
.rw-price-card ul{
  margin:20px 0 24px;
  padding:0;
  list-style:none;
}
.rw-price-card li{
  margin:10px 0;
  color:#475569;
  font-size:14px;
}
.rw-price-card li:before{
  content:"✓";
  margin-right:8px;
  color:var(--rw-green);
  font-weight:900;
}
.rw-price-card .rw-btn{
  width:100%;
}
.rw-price-note{
  margin-top:20px;
  padding:18px 20px;
  border:1px dashed #9cc8ff;
  border-radius:14px;
  background:#eef6ff;
  color:#24405f;
  font-size:14px;
}
.rw-content-wrap{
  max-width:860px;
}
.rw-content-wrap h2{
  margin:14px 0 0;
  color:var(--rw-navy);
  font-size:clamp(32px,4vw,48px);
  line-height:1.08;
  letter-spacing:-.035em;
}
.rw-content-wrap h3{
  margin:30px 0 0;
  color:var(--rw-navy);
  font-size:24px;
  line-height:1.2;
}
.rw-content-wrap p{
  margin:14px 0 0;
  color:var(--rw-muted);
  font-size:16px;
  line-height:1.75;
}
.rw-content-link{
  color:var(--rw-blue);
  font-weight:700;
}
.rw-content-link:hover{
  text-decoration:underline;
}
@media(max-width:980px){
  .rw-pricing-grid{
    grid-template-columns:repeat(2,minmax(0,1fr));
  }
}
@media(max-width:640px){
  .rw-pricing-grid{
    grid-template-columns:1fr;
  }
  .rw-comparison{
    overflow-x:auto;
  }
  .rw-comparison table{
    min-width:620px;
  }
}

.rw-faq{
  display:grid;
  gap:12px;
}
.rw-faq-item{
  border:1px solid var(--rw-line);
  border-radius:16px;
  background:#fff;
  overflow:hidden;
}
.rw-faq-question{
  width:100%;
  display:flex;
  align-items:center;
  justify-content:space-between;
  gap:20px;
  padding:20px 22px;
  border:0;
  background:#fff;
  color:var(--rw-navy);
  font:inherit;
  font-size:18px;
  font-weight:800;
  text-align:left;
  cursor:pointer;
}
.rw-faq-icon{
  flex:0 0 auto;
  width:28px;
  height:28px;
  display:grid;
  place-items:center;
  border-radius:50%;
  background:var(--rw-blue-light);
  color:var(--rw-blue);
  font-size:20px;
  font-weight:700;
  transition:.2s ease;
}
.rw-faq-answer{
  max-height:0;
  overflow:hidden;
  transition:max-height .28s ease;
}
.rw-faq-answer-inner{
  padding:0 22px 20px;
  color:var(--rw-muted);
  line-height:1.7;
}
.rw-faq-item.rw-open .rw-faq-icon{
  transform:rotate(45deg);
}
.rw-final-cta{
  padding:42px;
  display:flex;
  align-items:center;
  justify-content:space-between;
  gap:30px;
  border-radius:26px;
  background:linear-gradient(135deg,#0f2747,#183d6e);
  color:#fff;
}
.rw-final-cta h2{
  margin:0;
  color:#fff;
  font-size:clamp(30px,4vw,46px);
  line-height:1.08;
  letter-spacing:-.035em;
}
.rw-final-cta p{
  max-width:620px;
  margin:12px 0 0;
  color:#c7d5e5;
  font-size:17px;
}
.rw-final-cta-actions{
  flex:0 0 auto;
}
@media(max-width:780px){
  .rw-final-cta{
    align-items:flex-start;
    flex-direction:column;
    padding:30px;
  }
}

.rw-btn-blue{
  background:var(--rw-blue);
  color:#fff;
}